Changeset 1397
- Timestamp:
- 06/16/02 20:27:35 (6 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/doc/chips/SUMMARY (modified) (3 diffs)
- lm-sensors/trunk/doc/chips/smsc74m1 (added)
- lm-sensors/trunk/kernel/chips/Module.mk (modified) (1 diff)
- lm-sensors/trunk/kernel/chips/smsc47m1.c (added)
- lm-sensors/trunk/kernel/include/sensors.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r1383 r1397 22 22 File doc/vid: New 23 23 File include/sensors_vid.h: New 24 Library: Add multiple VRM version support for adm1025, w83781d 24 Library: Add multiple VRM version support for adm1025, w83781d; 25 fix 'flex scanner jammed' on some systems 25 26 Makefiles: For 2.4+ kernels, modules now install in 26 27 kernel/drivers/[i2c,sensors] , not misc/ , and 27 removes old versions in misc/ .28 'make install' removes old versions in misc/ . 28 29 Use $CFLAGS and $CPPFLAGS if defined. 29 30 Module adm1025: Add multiple VID version support … … 33 34 Module i2c-savage4: new 34 35 Module i2c-viapro: Add support for VT8231 (0x8235), VT8233A (0x3147) 36 Module smbus-arp: new 37 Module smsc47m1: new 35 38 Module via686a: Add support for VT8231 sensors 36 39 Module w83781d: Add multiple VID version support 37 40 Program eeprom: new 41 Program i2cdump: Add smbus block command specification 38 42 Program mkpatch: Install new sensors_vid.h 39 43 Program rrd: Fix swapped CPU and MB temps in summ_week.cgi lm-sensors/trunk/README
r1366 r1397 48 48 ServerWorks OSB4, CSB5 49 49 SiS 5595 50 SMSC Victory66 50 SMSC Victory66, 74M1xx 51 51 3Dfx Voodoo 3 and Banshee 52 VIA Technologies VT82C586B, VT82C596A/B, VT82C686A/B, and VT8233 52 VIA Technologies VT82C586B, VT82C596A/B, VT82C686A/B, VT8231, 53 VT8233, and VT8233A. 53 54 54 55 lm-sensors/trunk/doc/chips/SUMMARY
r1318 r1397 2 2 ========================== 3 3 This is a summary of the sensor and non-sensor chips supported 4 by this package. It summarizes the features of each supported chip.4 by this package. It lists the features of each supported chip. 5 5 6 6 For further information on a particular chip, see the documentation … … 120 120 sis5595 0-1 4-5 2 - no yes 121 121 122 smsc74m1 123 smsc74m1 - - 2 2 no yes (LPC) 124 122 125 thmc50 123 126 adm1022 3 2 - 1 dac yes no … … 168 171 pcf8591 169 172 Quad A/D + one D/A 173 174 smbus-arp 175 An SMBus 2.0 ARP client 170 176 171 177 lm-sensors/trunk/kernel/chips/Module.mk
r1393 r1397 27 27 KERNELCHIPSTARGETS := $(MODULE_DIR)/pcf8591.o 28 28 KERNELCHIPSTARGETS += $(MODULE_DIR)/smbus-arp.o 29 KERNELCHIPSTARGETS += $(MODULE_DIR)/smsc47m1.o 29 30 30 31 # These targets ARE included in 'mkpatch', except for LTC1710, which we lm-sensors/trunk/kernel/include/sensors.h
r1396 r1397 568 568 #define ARP_SYSCTL8 1007 569 569 570 #define SMSC47M1_SYSCTL_FAN1 1101 /* Rotations/min */ 571 #define SMSC47M1_SYSCTL_FAN2 1102 572 #define SMSC47M1_SYSCTL_PWM1 1401 573 #define SMSC47M1_SYSCTL_PWM2 1402 574 #define SMSC47M1_SYSCTL_FAN_DIV 2000 /* 1, 2, 4 or 8 */ 575 #define SMSC47M1_SYSCTL_ALARMS 2004 /* bitvector */ 576 577 #define SMSC47M1_ALARM_FAN1 0x0001 578 #define SMSC47M1_ALARM_FAN2 0x0002 579 570 580 #endif /* def SENSORS_SENSORS_H */
