/kern_oII/Documentation/hwmon/lm75

http://omnia2droid.googlecode.com/ · #! · 65 lines · 55 code · 10 blank · 0 comment · 0 complexity · 488c6a41dab5697d2feee71e0eb43d66 MD5 · raw file

  1. Kernel driver lm75
  2. ==================
  3. Supported chips:
  4. * National Semiconductor LM75
  5. Prefix: 'lm75'
  6. Addresses scanned: I2C 0x48 - 0x4f
  7. Datasheet: Publicly available at the National Semiconductor website
  8. http://www.national.com/
  9. * Dallas Semiconductor DS75
  10. Prefix: 'lm75'
  11. Addresses scanned: I2C 0x48 - 0x4f
  12. Datasheet: Publicly available at the Dallas Semiconductor website
  13. http://www.maxim-ic.com/
  14. * Dallas Semiconductor DS1775
  15. Prefix: 'lm75'
  16. Addresses scanned: I2C 0x48 - 0x4f
  17. Datasheet: Publicly available at the Dallas Semiconductor website
  18. http://www.maxim-ic.com/
  19. * Maxim MAX6625, MAX6626
  20. Prefix: 'lm75'
  21. Addresses scanned: I2C 0x48 - 0x4b
  22. Datasheet: Publicly available at the Maxim website
  23. http://www.maxim-ic.com/
  24. * Microchip (TelCom) TCN75
  25. Prefix: 'lm75'
  26. Addresses scanned: I2C 0x48 - 0x4f
  27. Datasheet: Publicly available at the Microchip website
  28. http://www.microchip.com/
  29. Author: Frodo Looijaard <frodol@dds.nl>
  30. Description
  31. -----------
  32. The LM75 implements one temperature sensor. Limits can be set through the
  33. Overtemperature Shutdown register and Hysteresis register. Each value can be
  34. set and read to half-degree accuracy.
  35. An alarm is issued (usually to a connected LM78) when the temperature
  36. gets higher then the Overtemperature Shutdown value; it stays on until
  37. the temperature falls below the Hysteresis value.
  38. All temperatures are in degrees Celsius, and are guaranteed within a
  39. range of -55 to +125 degrees.
  40. The LM75 only updates its values each 1.5 seconds; reading it more often
  41. will do no harm, but will return 'old' values.
  42. The LM75 is usually used in combination with LM78-like chips, to measure
  43. the temperature of the processor(s).
  44. The DS75, DS1775, MAX6625, and MAX6626 are supported as well.
  45. They are not distinguished from an LM75. While most of these chips
  46. have three additional bits of accuracy (12 vs. 9 for the LM75),
  47. the additional bits are not supported. Not only that, but these chips will
  48. not be detected if not in 9-bit precision mode (use the force parameter if
  49. needed).
  50. The TCN75 is supported as well, and is not distinguished from an LM75.
  51. The LM75 is essentially an industry standard; there may be other
  52. LM75 clones not listed here, with or without various enhancements,
  53. that are supported.
  54. The LM77 is not supported, contrary to what we pretended for a long time.
  55. Both chips are simply not compatible, value encoding differs.