Changeset 1782
- Timestamp:
- 06/10/03 05:01:31 (5 years ago)
- Files:
-
- lm-sensors/trunk/doc/chips/SUMMARY (modified) (1 diff)
- lm-sensors/trunk/doc/chips/w83781d (modified) (3 diffs)
- lm-sensors/trunk/kernel/chips/w83781d.c (modified) (2 diffs)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/doc/chips/SUMMARY
r1777 r1782 166 166 w83782d 3 9 3 2-4 pwm yes yes 167 167 w83783s 1-2 5-6 3 2 pwm yes no 168 w83791d 3 10 5 5 pwm yes no 168 169 w83627hf 3 9 3 2 pwm yes yes (LPC) 169 170 w83697hf 2 6 2 2 pwm no yes lm-sensors/trunk/doc/chips/w83781d
r1678 r1782 5 5 W83782D support is complete and well-tested. 6 6 W83783S support is complete but has not been well-tested. 7 W83791D support is BETA. 7 8 W83627HF support is complete but has not been well-tested. 8 9 W83697HF support is complete but has not been well-tested. … … 23 24 * Winbond W83783S 24 25 Prefix 'w83783s' 26 Addresses scanned: I2C 0x20 - 0x2f (inclusive) 27 Datasheet: Publicly available at the Winbond website 28 * Winbond W83791D 29 Prefix 'w83791d' 25 30 Addresses scanned: I2C 0x20 - 0x2f (inclusive) 26 31 Datasheet: Publicly available at the Winbond website … … 59 64 Ditto 60 65 * force_w83783s: 66 Ditto 67 * force_w83791d: 61 68 Ditto 62 69 * force_w83627hf: lm-sensors/trunk/kernel/chips/w83781d.c
r1772 r1782 2 2 w83781d.c - Part of lm_sensors, Linux kernel modules for hardware 3 3 monitoring 4 Copyright (c) 1998 - 200 1Frodo Looijaard <frodol@dds.nl>,4 Copyright (c) 1998 - 2003 Frodo Looijaard <frodol@dds.nl>, 5 5 Philip Edelbrock <phil@netroedge.com>, 6 6 and Mark Studebaker <mdsxyz123@yahoo.com> … … 27 27 as99127f 7 3 1? 3 0x30 0x12c3 yes no 28 28 asb100 "bach" (type_name = as99127f) 0x30 0x0694 yes no 29 w83627hf 9 3 2 3 0x20 0x5ca3 yes yes(LPC) 30 w83697hf 8 2 2 2 0x60 0x5ca3 no yes(LPC) 29 31 w83781d 7 3 0 3 0x10 0x5ca3 yes yes 30 w83627hf 9 3 2 3 0x20 0x5ca3 yes yes(LPC)31 32 w83782d 9 3 2-4 3 0x30 0x5ca3 yes yes 32 33 w83783s 5-6 3 2 1-2 0x40 0x5ca3 yes no 33 w83 697hf 8 2 2 2 0x60 0x5ca3 no yes(LPC)34 w83791d 10 5 5 3 0x70 0x5ca3 yes no 34 35 35 36 */ lm-sensors/trunk/prog/detect/sensors-detect
r1781 r1782 881 881 i2c_addrs => [0x20..0x2f], 882 882 i2c_detect => sub { w83781d_detect 2, @_}, 883 } , 884 { 885 name => "Winbond W83791D", 886 driver => "w83781d", 887 i2c_addrs => [0x20..0x2f], 888 i2c_detect => sub { w83781d_detect 7, @_}, 883 889 } , 884 890 { … … 2319 2325 # $_[0]: Chip to detect (0 = W83781D, 1 = W83782D, 2 = W83783S, 2320 2326 # 3 = W83627HF, 4 = AS99127F, 6 = W83L784R/AR 2327 # 7 = W83791D 2321 2328 # $_[1]: A reference to the file descriptor to access this chip. 2322 2329 # We may assume an i2c_set_slave_addr was already done. … … 2359 2366 return if $chip == 4 and $reg1 != 0x30; 2360 2367 return if $chip == 6 and $reg1 != 0x50; 2368 return if $chip == 7 and $reg1 != 0x70; 2361 2369 $reg1 = i2c_smbus_read_byte_data($file,0x4a); 2362 2370 @res = (8);
