Changeset 4389
- Timestamp:
- 05/05/07 17:41:38 (2 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/doc/busses/i2c-nforce2 (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-nforce2.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r4380 r4389 8 8 Add dme1737 support 9 9 Man page sensors.conf.5: Update the chip statement section 10 Module i2c-nforce2: Add nForce MCP61, MCP65 support (2.6 backport) 10 11 Program isadump: Detect when address bit 7 is a busy flag 11 12 Program pwmconfig: Use smaller steps for low PWM values lm-sensors/trunk/doc/busses/i2c-nforce2
r4200 r4389 21 21 (10de:0264, included in nForce4 MCP51) 22 22 (10de:0368, included in nForce4 MCP55) 23 (10de:03eb, included in nForce MCP61) 24 (10de:0446, included in nForce MCP65) 23 25 Datasheet: same as for nForce2 SMBus PCI interface 24 26 lm-sensors/trunk/kernel/busses/i2c-nforce2.c
r4321 r4389 32 32 nForce4 MCP51 0264 33 33 nForce4 MCP55 0368 34 nForce MCP61 03EB 35 nForce MCP65 0446 34 36 35 37 This driver supports the 2 SMBuses that are included in the MCP of the … … 80 82 #define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SMBUS 0x0264 81 83 #define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SMBUS 0x0368 84 #define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SMBUS 0x03EB 85 #define PCI_DEVICE_ID_NVIDIA_NFORCE_MCP65_SMBUS 0x0446 82 86 83 87 … … 310 314 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SMBUS, 311 315 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 316 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP61_SMBUS, 317 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 318 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP65_SMBUS, 319 PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, 312 320 { 0 } 313 321 };
