adt7473 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. Kernel driver adt7473
  2. ======================
  3. Supported chips:
  4. * Analog Devices ADT7473
  5. Prefix: 'adt7473'
  6. Addresses scanned: I2C 0x2C, 0x2D, 0x2E
  7. Datasheet: Publicly available at the Analog Devices website
  8. Author: Darrick J. Wong
  9. Description
  10. -----------
  11. This driver implements support for the Analog Devices ADT7473 chip family.
  12. The LM85 uses the 2-wire interface compatible with the SMBUS 2.0
  13. specification. Using an analog to digital converter it measures three (3)
  14. temperatures and two (2) voltages. It has three (3) 16-bit counters for
  15. measuring fan speed. There are three (3) PWM outputs that can be used
  16. to control fan speed.
  17. A sophisticated control system for the PWM outputs is designed into the
  18. LM85 that allows fan speed to be adjusted automatically based on any of the
  19. three temperature sensors. Each PWM output is individually adjustable and
  20. programmable. Once configured, the ADT7473 will adjust the PWM outputs in
  21. response to the measured temperatures without further host intervention.
  22. This feature can also be disabled for manual control of the PWM's.
  23. Each of the measured inputs (voltage, temperature, fan speed) has
  24. corresponding high/low limit values. The ADT7473 will signal an ALARM if
  25. any measured value exceeds either limit.
  26. The ADT7473 samples all inputs continuously. The driver will not read
  27. the registers more often than once every other second. Further,
  28. configuration data is only read once per minute.
  29. Special Features
  30. ----------------
  31. The ADT7473 have a 10-bit ADC and can therefore measure temperatures
  32. with 0.25 degC resolution. Temperature readings can be configured either
  33. for twos complement format or "Offset 64" format, wherein 63 is subtracted
  34. from the raw value to get the temperature value.
  35. The Analog Devices datasheet is very detailed and describes a procedure for
  36. determining an optimal configuration for the automatic PWM control.
  37. Hardware Configurations
  38. -----------------------
  39. The ADT7473 chips have an optional SMBALERT output that can be used to
  40. signal the chipset in case a limit is exceeded or the temperature sensors
  41. fail. Individual sensor interrupts can be masked so they won't trigger
  42. SMBALERT. The SMBALERT output if configured replaces the PWM2 function.
  43. Configuration Notes
  44. -------------------
  45. Besides standard interfaces driver adds the following:
  46. * PWM Control
  47. * pwm#_auto_point1_pwm and pwm#_auto_point1_temp and
  48. * pwm#_auto_point2_pwm and pwm#_auto_point2_temp -
  49. point1: Set the pwm speed at a lower temperature bound.
  50. point2: Set the pwm speed at a higher temperature bound.
  51. The ADT7473 will scale the pwm between the lower and higher pwm speed when
  52. the temperature is between the two temperature boundaries. PWM values range
  53. from 0 (off) to 255 (full speed). Fan speed will be set to maximum when the
  54. temperature sensor associated with the PWM control exceeds temp#_max.
  55. Notes
  56. -----
  57. The NVIDIA binary driver presents an ADT7473 chip via an on-card i2c bus.
  58. Unfortunately, they fail to set the i2c adapter class, so this driver may
  59. fail to find the chip until the nvidia driver is patched.