it87 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. Kernel driver it87
  2. ==================
  3. Supported chips:
  4. * IT8705F
  5. Prefix: 'it87'
  6. Addresses scanned: from Super I/O config space (8 I/O ports)
  7. Datasheet: Publicly available at the ITE website
  8. http://www.ite.com.tw/
  9. * IT8712F
  10. Prefix: 'it8712'
  11. Addresses scanned: I2C 0x28 - 0x2f
  12. from Super I/O config space (8 I/O ports)
  13. Datasheet: Publicly available at the ITE website
  14. http://www.ite.com.tw/
  15. * SiS950 [clone of IT8705F]
  16. Prefix: 'it87'
  17. Addresses scanned: from Super I/O config space (8 I/O ports)
  18. Datasheet: No longer be available
  19. Author: Christophe Gauthron <chrisg@0-in.com>
  20. Module Parameters
  21. -----------------
  22. * update_vbat: int
  23. 0 if vbat should report power on value, 1 if vbat should be updated after
  24. each read. Default is 0. On some boards the battery voltage is provided
  25. by either the battery or the onboard power supply. Only the first reading
  26. at power on will be the actual battery voltage (which the chip does
  27. automatically). On other boards the battery voltage is always fed to
  28. the chip so can be read at any time. Excessive reading may decrease
  29. battery life but no information is given in the datasheet.
  30. * fix_pwm_polarity int
  31. Force PWM polarity to active high (DANGEROUS). Some chips are
  32. misconfigured by BIOS - PWM values would be inverted. This option tries
  33. to fix this. Please contact your BIOS manufacturer and ask him for fix.
  34. Description
  35. -----------
  36. This driver implements support for the IT8705F, IT8712F and SiS950 chips.
  37. This driver also supports IT8712F, which adds SMBus access, and a VID
  38. input, used to report the Vcore voltage of the Pentium processor.
  39. The IT8712F additionally features VID inputs.
  40. These chips are 'Super I/O chips', supporting floppy disks, infrared ports,
  41. joysticks and other miscellaneous stuff. For hardware monitoring, they
  42. include an 'environment controller' with 3 temperature sensors, 3 fan
  43. rotation speed sensors, 8 voltage sensors, and associated alarms.
  44. Temperatures are measured in degrees Celsius. An alarm is triggered once
  45. when the Overtemperature Shutdown limit is crossed.
  46. Fan rotation speeds are reported in RPM (rotations per minute). An alarm is
  47. triggered if the rotation speed has dropped below a programmable limit. Fan
  48. readings can be divided by a programmable divider (1, 2, 4 or 8) to give the
  49. readings more range or accuracy. Not all RPM values can accurately be
  50. represented, so some rounding is done. With a divider of 2, the lowest
  51. representable value is around 2600 RPM.
  52. Voltage sensors (also known as IN sensors) report their values in volts. An
  53. alarm is triggered if the voltage has crossed a programmable minimum or
  54. maximum limit. Note that minimum in this case always means 'closest to
  55. zero'; this is important for negative voltage measurements. All voltage
  56. inputs can measure voltages between 0 and 4.08 volts, with a resolution of
  57. 0.016 volt. The battery voltage in8 does not have limit registers.
  58. The VID lines (IT8712F only) encode the core voltage value: the voltage
  59. level your processor should work with. This is hardcoded by the mainboard
  60. and/or processor itself. It is a value in volts.
  61. If an alarm triggers, it will remain triggered until the hardware register
  62. is read at least once. This means that the cause for the alarm may already
  63. have disappeared! Note that in the current implementation, all hardware
  64. registers are read whenever any data is read (unless it is less than 1.5
  65. seconds since the last update). This means that you can easily miss
  66. once-only alarms.
  67. The IT87xx only updates its values each 1.5 seconds; reading it more often
  68. will do no harm, but will return 'old' values.
  69. To change sensor N to a thermistor, 'echo 2 > tempN_type' where N is 1, 2,
  70. or 3. To change sensor N to a thermal diode, 'echo 3 > tempN_type'.
  71. Give 0 for unused sensor. Any other value is invalid. To configure this at
  72. startup, consult lm_sensors's /etc/sensors.conf. (2 = thermistor;
  73. 3 = thermal diode)
  74. The fan speed control features are limited to manual PWM mode. Automatic
  75. "Smart Guardian" mode control handling is not implemented. However
  76. if you want to go for "manual mode" just write 1 to pwmN_enable.