History log of /src/sys/arch/x86/pci/tco.c |
Revision | | Date | Author | Comments |
1.10 |
| 12-Apr-2023 |
riastradh | ichsmb(4), tco(4): Add support for TCO on newer Intel chipsets.
TCO (`Total Cost of Ownership', Intel's bizarre name for a watchdog timer) used to hang off the Intel I/O platform controller hub's (ICH) low-pin-count interface bridge (LPC IB), or ichlpcib(4). On newer devices, it hangs off the ICH SMBus instead.
Tested on INTEL 100SERIES_SMB (works) and INTEL 100SERIES_LP_SMB (doesn't work, still not sure why).
XXX kernel revbump: This breaks the module ABI -- tco(4) modules older than the change to make ta_has_rcba into ta_version will incorrectly attach at buses they do not understand. (However, the tco(4) driver is statically built into GENERIC, so maybe it's safe for pullup since the module wouldn't have worked anyway.)
|
1.9 |
| 22-Sep-2022 |
riastradh | branches: 1.9.4; tco(4): Nix PMC_TCO_BASE offset in TCO register definitions.
This just uses a subregion with PMC_TCO_BASE automatically applied.
No functional change intended.
|
1.8 |
| 22-Sep-2022 |
riastradh | tco(4): Use a subregion of the PMC registers for TCO registers.
This is an intermediate step that will let us decouple it from access via PMBASE.
|
1.7 |
| 22-Sep-2022 |
riastradh | ichlpcib(4), tco(4): Rename iot -> pmt, ioh -> pmh.
Makes it clearer that this is specifically about the power management controller (PMC) registers relative to PMBASE.
|
1.6 |
| 22-Sep-2022 |
riastradh | ichlpcib(4), tco(4): Take `lpcib_' off various names.
For PMC-specific ones, change `lpcib_' to `pmc_'. These are in a separate PCI device in newer chipsets.
For TCO-specific ones, which may live in different places, whether at their own base address or as an offset from PMBASE, just leave it as `tco_' or `tcotimer'.
No functional change intended.
|
1.5 |
| 22-Sep-2022 |
riastradh | tco(4): Rename lpcib_tco_attach_args -> tco_attach_args.
No longer hangs off LPC bus, newer devices hang it off SMBus.
|
1.4 |
| 22-Sep-2022 |
riastradh | tco(4): Change has_rcba bit into version number.
Will be useful for newer Intel platform controller hubs.
No functional change intended. Module ABI is unchanged, although older modules will do something nonseneical when confronted with versions above 1 -- that will require a revbump (but with any luck, it will make life easier for versions above 2 easier once we do that).
|
1.3 |
| 21-Sep-2022 |
riastradh | tco(4): Fix whitespace. No functional change intended.
|
1.2 |
| 30-Aug-2015 |
christos | branches: 1.2.16; print the configuration information early so that it does not get intermingled with possible error prints.
|
1.1 |
| 03-May-2015 |
pgoyette | branches: 1.1.2; Separate the watchdog code from the pcib code, and make the watchdog a loadable module.
|
1.1.2.3 |
| 22-Sep-2015 |
skrll | Sync with HEAD
|
1.1.2.2 |
| 06-Jun-2015 |
skrll | Sync with HEAD
|
1.1.2.1 |
| 03-May-2015 |
skrll | file tco.c was added on branch nick-nhusb on 2015-06-06 14:40:04 +0000
|
1.2.16.2 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.2.16.1 |
| 30-Aug-2015 |
jdolecek | file tco.c was added on branch tls-maxphys on 2017-12-03 11:36:50 +0000
|
1.9.4.1 |
| 01-Aug-2023 |
martin | Pull up following revision(s) (requested by riastradh in ticket #282):
sys/dev/pci/ichsmb.c: revision 1.82 sys/arch/amd64/conf/GENERIC: revision 1.602 sys/arch/x86/pci/tco.c: revision 1.10 sys/arch/x86/pci/tco.h: revision 1.5 sys/arch/x86/pci/ichlpcib.c: revision 1.59 sys/dev/ic/i82801lpcreg.h: revision 1.17 sys/arch/x86/pci/files.pci: revision 1.27 sys/dev/pci/files.pci: revision 1.446
ichsmb(4), tco(4): Add support for TCO on newer Intel chipsets.
TCO (`Total Cost of Ownership', Intel's bizarre name for a watchdog timer) used to hang off the Intel I/O platform controller hub's (ICH) low-pin-count interface bridge (LPC IB), or ichlpcib(4). On newer devices, it hangs off the ICH SMBus instead. Tested on INTEL 100SERIES_SMB (works) and INTEL 100SERIES_LP_SMB (doesn't work, still not sure why).
XXX kernel revbump: This breaks the module ABI -- tco(4) modules older than the change to make ta_has_rcba into ta_version will incorrectly attach at buses they do not understand. (However, the tco(4) driver is statically built into GENERIC, so maybe it's safe for pullup since the module wouldn't have worked anyway.)
|