lm75 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. * National Semiconductor LM75A
  10. Prefix: 'lm75a'
  11. Addresses scanned: I2C 0x48 - 0x4f
  12. Datasheet: Publicly available at the National Semiconductor website
  13. http://www.national.com/
  14. * Dallas Semiconductor (now Maxim) DS75, DS1775, DS7505
  15. Prefixes: 'ds75', 'ds1775', 'ds7505'
  16. Addresses scanned: none
  17. Datasheet: Publicly available at the Maxim website
  18. http://www.maximintegrated.com/
  19. * Maxim MAX6625, MAX6626
  20. Prefixes: 'max6625', 'max6626'
  21. Addresses scanned: none
  22. Datasheet: Publicly available at the Maxim website
  23. http://www.maxim-ic.com/
  24. * Microchip (TelCom) TCN75
  25. Prefix: 'tcn75'
  26. Addresses scanned: none
  27. Datasheet: Publicly available at the Microchip website
  28. http://www.microchip.com/
  29. * Microchip MCP9800, MCP9801, MCP9802, MCP9803
  30. Prefix: 'mcp980x'
  31. Addresses scanned: none
  32. Datasheet: Publicly available at the Microchip website
  33. http://www.microchip.com/
  34. * Analog Devices ADT75
  35. Prefix: 'adt75'
  36. Addresses scanned: none
  37. Datasheet: Publicly available at the Analog Devices website
  38. http://www.analog.com/adt75
  39. * ST Microelectronics STDS75
  40. Prefix: 'stds75'
  41. Addresses scanned: none
  42. Datasheet: Publicly available at the ST website
  43. http://www.st.com/internet/analog/product/121769.jsp
  44. * Texas Instruments TMP100, TMP101, TMP105, TMP112, TMP75, TMP75C, TMP175, TMP275
  45. Prefixes: 'tmp100', 'tmp101', 'tmp105', 'tmp112', 'tmp175', 'tmp75', 'tmp75c', 'tmp275'
  46. Addresses scanned: none
  47. Datasheet: Publicly available at the Texas Instruments website
  48. http://www.ti.com/product/tmp100
  49. http://www.ti.com/product/tmp101
  50. http://www.ti.com/product/tmp105
  51. http://www.ti.com/product/tmp112
  52. http://www.ti.com/product/tmp75
  53. http://www.ti.com/product/tmp75c
  54. http://www.ti.com/product/tmp175
  55. http://www.ti.com/product/tmp275
  56. * NXP LM75B
  57. Prefix: 'lm75b'
  58. Addresses scanned: none
  59. Datasheet: Publicly available at the NXP website
  60. http://www.nxp.com/documents/data_sheet/LM75B.pdf
  61. Author: Frodo Looijaard <frodol@dds.nl>
  62. Description
  63. -----------
  64. The LM75 implements one temperature sensor. Limits can be set through the
  65. Overtemperature Shutdown register and Hysteresis register. Each value can be
  66. set and read to half-degree accuracy.
  67. An alarm is issued (usually to a connected LM78) when the temperature
  68. gets higher then the Overtemperature Shutdown value; it stays on until
  69. the temperature falls below the Hysteresis value.
  70. All temperatures are in degrees Celsius, and are guaranteed within a
  71. range of -55 to +125 degrees.
  72. The driver caches the values for a period varying between 1 second for the
  73. slowest chips and 125 ms for the fastest chips; reading it more often
  74. will do no harm, but will return 'old' values.
  75. The original LM75 was typically used in combination with LM78-like chips
  76. on PC motherboards, to measure the temperature of the processor(s). Clones
  77. are now used in various embedded designs.
  78. The LM75 is essentially an industry standard; there may be other
  79. LM75 clones not listed here, with or without various enhancements,
  80. that are supported. The clones are not detected by the driver, unless
  81. they reproduce the exact register tricks of the original LM75, and must
  82. therefore be instantiated explicitly. Higher resolution up to 12-bit
  83. is supported by this driver, other specific enhancements are not.
  84. The LM77 is not supported, contrary to what we pretended for a long time.
  85. Both chips are simply not compatible, value encoding differs.