diff options
Diffstat (limited to 'Documentation/hwmon')
-rw-r--r-- | Documentation/hwmon/it87 | 40 |
1 files changed, 29 insertions, 11 deletions
diff --git a/Documentation/hwmon/it87 b/Documentation/hwmon/it87 index 9555be1ed999..aff680784222 100644 --- a/Documentation/hwmon/it87 +++ b/Documentation/hwmon/it87 | |||
@@ -13,6 +13,11 @@ Supported chips: | |||
13 | from Super I/O config space (8 I/O ports) | 13 | from Super I/O config space (8 I/O ports) |
14 | Datasheet: Publicly available at the ITE website | 14 | Datasheet: Publicly available at the ITE website |
15 | http://www.ite.com.tw/ | 15 | http://www.ite.com.tw/ |
16 | * IT8716F | ||
17 | Prefix: 'it8716' | ||
18 | Addresses scanned: from Super I/O config space (8 I/O ports) | ||
19 | Datasheet: Publicly available at the ITE website | ||
20 | http://www.ite.com.tw/product_info/file/pc/IT8716F_V0.3.ZIP | ||
16 | * SiS950 [clone of IT8705F] | 21 | * SiS950 [clone of IT8705F] |
17 | Prefix: 'it87' | 22 | Prefix: 'it87' |
18 | Addresses scanned: from Super I/O config space (8 I/O ports) | 23 | Addresses scanned: from Super I/O config space (8 I/O ports) |
@@ -43,26 +48,39 @@ Module Parameters | |||
43 | Description | 48 | Description |
44 | ----------- | 49 | ----------- |
45 | 50 | ||
46 | This driver implements support for the IT8705F, IT8712F and SiS950 chips. | 51 | This driver implements support for the IT8705F, IT8712F, IT8716F and |
47 | 52 | SiS950 chips. | |
48 | This driver also supports IT8712F, which adds SMBus access, and a VID | ||
49 | input, used to report the Vcore voltage of the Pentium processor. | ||
50 | The IT8712F additionally features VID inputs. | ||
51 | 53 | ||
52 | These chips are 'Super I/O chips', supporting floppy disks, infrared ports, | 54 | These chips are 'Super I/O chips', supporting floppy disks, infrared ports, |
53 | joysticks and other miscellaneous stuff. For hardware monitoring, they | 55 | joysticks and other miscellaneous stuff. For hardware monitoring, they |
54 | include an 'environment controller' with 3 temperature sensors, 3 fan | 56 | include an 'environment controller' with 3 temperature sensors, 3 fan |
55 | rotation speed sensors, 8 voltage sensors, and associated alarms. | 57 | rotation speed sensors, 8 voltage sensors, and associated alarms. |
56 | 58 | ||
59 | The IT8712F and IT8716F additionally feature VID inputs, used to report | ||
60 | the Vcore voltage of the processor. The early IT8712F have 5 VID pins, | ||
61 | the IT8716F and late IT8712F have 6. They are shared with other functions | ||
62 | though, so the functionality may not be available on a given system. | ||
63 | The driver dumbly assume it is there. | ||
64 | |||
65 | The IT8716F and later IT8712F revisions have support for 2 additional | ||
66 | fans. They are not yet supported by the driver. | ||
67 | |||
68 | The IT8716F and late IT8712F and IT8705F also have optional 16-bit | ||
69 | tachometer counters for fans 1 to 3. This is better (no more fan | ||
70 | clock divider mess) but not compatible with the older chips and | ||
71 | revisions. For now, the driver only uses the 16-bit mode on the | ||
72 | IT8716F. | ||
73 | |||
57 | Temperatures are measured in degrees Celsius. An alarm is triggered once | 74 | Temperatures are measured in degrees Celsius. An alarm is triggered once |
58 | when the Overtemperature Shutdown limit is crossed. | 75 | when the Overtemperature Shutdown limit is crossed. |
59 | 76 | ||
60 | Fan rotation speeds are reported in RPM (rotations per minute). An alarm is | 77 | Fan rotation speeds are reported in RPM (rotations per minute). An alarm is |
61 | triggered if the rotation speed has dropped below a programmable limit. Fan | 78 | triggered if the rotation speed has dropped below a programmable limit. When |
62 | readings can be divided by a programmable divider (1, 2, 4 or 8) to give the | 79 | 16-bit tachometer counters aren't used, fan readings can be divided by |
63 | readings more range or accuracy. Not all RPM values can accurately be | 80 | a programmable divider (1, 2, 4 or 8) to give the readings more range or |
64 | represented, so some rounding is done. With a divider of 2, the lowest | 81 | accuracy. With a divider of 2, the lowest representable value is around |
65 | representable value is around 2600 RPM. | 82 | 2600 RPM. Not all RPM values can accurately be represented, so some rounding |
83 | is done. | ||
66 | 84 | ||
67 | Voltage sensors (also known as IN sensors) report their values in volts. An | 85 | Voltage sensors (also known as IN sensors) report their values in volts. An |
68 | alarm is triggered if the voltage has crossed a programmable minimum or | 86 | alarm is triggered if the voltage has crossed a programmable minimum or |
@@ -71,7 +89,7 @@ zero'; this is important for negative voltage measurements. All voltage | |||
71 | inputs can measure voltages between 0 and 4.08 volts, with a resolution of | 89 | inputs can measure voltages between 0 and 4.08 volts, with a resolution of |
72 | 0.016 volt. The battery voltage in8 does not have limit registers. | 90 | 0.016 volt. The battery voltage in8 does not have limit registers. |
73 | 91 | ||
74 | The VID lines (IT8712F only) encode the core voltage value: the voltage | 92 | The VID lines (IT8712F/IT8716F) encode the core voltage value: the voltage |
75 | level your processor should work with. This is hardcoded by the mainboard | 93 | level your processor should work with. This is hardcoded by the mainboard |
76 | and/or processor itself. It is a value in volts. | 94 | and/or processor itself. It is a value in volts. |
77 | 95 | ||