adt7473 2.8 KB

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