Changeset 3304
- Timestamp:
- 05/23/06 13:23:53 (3 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/doc/busses/i2c-i801 (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-i801.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r3299 r3304 14 14 (2.6 backport) 15 15 Module i2c-i801: Disable PEC mode after every transaction (2.6 backport) 16 Add ICH8 support (2.6 backport) 16 17 Module i2c-piix4: Add ServerWorks HT-1000 support (2.6 backport) 17 18 Module w83781d: Use real-time alarm registers when possible (2.6 backport) lm-sensors/trunk/doc/busses/i2c-i801
r2793 r3304 13 13 * Intel 82801DB (ICH4) 14 14 * Intel 82801EB/ER (ICH5) 15 * Intel 6300ESB 15 * Intel 6300ESB/ESB2 16 16 * Intel 82801FB/FR/FW/FRW (ICH6) 17 * Intel ICH7 17 * Intel ICH7/ICH8 18 18 Datasheets: Publicly available at the Intel website 19 19 lm-sensors/trunk/kernel/busses/i2c-i801.c
r3290 r3304 33 33 ICH7 27DA ("") 34 34 ESB2 269B ("") 35 ICH8 283E ("") 36 35 37 This driver supports several versions of Intel's I/O Controller Hubs (ICH). 36 38 For SMBus support, they are similar to the PIIX4 and are part … … 90 92 #ifndef PCI_DEVICE_ID_INTEL_ICH7_17 91 93 #define PCI_DEVICE_ID_INTEL_ICH7_17 0x27da 94 #endif 95 96 /* ICH8 is undefined */ 97 #ifndef PCI_DEVICE_ID_INTEL_ICH8_5 98 #define PCI_DEVICE_ID_INTEL_ICH8_5 0x283e 92 99 #endif 93 100 … … 170 177 dev->device == PCI_DEVICE_ID_INTEL_ESB2_17 || 171 178 dev->device == PCI_DEVICE_ID_INTEL_ICH6_16 || 172 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17) 179 dev->device == PCI_DEVICE_ID_INTEL_ICH7_17 || 180 dev->device == PCI_DEVICE_ID_INTEL_ICH8_5) 173 181 isich4 = 1; 174 182 else … … 666 674 .subdevice = PCI_ANY_ID, 667 675 }, 676 { 677 .vendor = PCI_VENDOR_ID_INTEL, 678 .device = PCI_DEVICE_ID_INTEL_ICH8_5, 679 .subvendor = PCI_ANY_ID, 680 .subdevice = PCI_ANY_ID, 681 }, 668 682 { 0, } 669 683 };
