jc42 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. Kernel driver jc42
  2. ==================
  3. Supported chips:
  4. * Analog Devices ADT7408
  5. Datasheets:
  6. http://www.analog.com/static/imported-files/data_sheets/ADT7408.pdf
  7. * Atmel AT30TS00
  8. Datasheets:
  9. http://www.atmel.com/Images/doc8585.pdf
  10. * IDT TSE2002B3, TSE2002GB2, TS3000B3, TS3000GB2
  11. Datasheets:
  12. http://www.idt.com/sites/default/files/documents/IDT_TSE2002B3C_DST_20100512_120303152056.pdf
  13. http://www.idt.com/sites/default/files/documents/IDT_TSE2002GB2A1_DST_20111107_120303145914.pdf
  14. http://www.idt.com/sites/default/files/documents/IDT_TS3000B3A_DST_20101129_120303152013.pdf
  15. http://www.idt.com/sites/default/files/documents/IDT_TS3000GB2A1_DST_20111104_120303151012.pdf
  16. * Maxim MAX6604
  17. Datasheets:
  18. http://datasheets.maxim-ic.com/en/ds/MAX6604.pdf
  19. * Microchip MCP9804, MCP9805, MCP98242, MCP98243, MCP98244, MCP9843
  20. Datasheets:
  21. http://ww1.microchip.com/downloads/en/DeviceDoc/22203C.pdf
  22. http://ww1.microchip.com/downloads/en/DeviceDoc/21977b.pdf
  23. http://ww1.microchip.com/downloads/en/DeviceDoc/21996a.pdf
  24. http://ww1.microchip.com/downloads/en/DeviceDoc/22153c.pdf
  25. http://ww1.microchip.com/downloads/en/DeviceDoc/22327A.pdf
  26. * NXP Semiconductors SE97, SE97B, SE98, SE98A
  27. Datasheets:
  28. http://www.nxp.com/documents/data_sheet/SE97.pdf
  29. http://www.nxp.com/documents/data_sheet/SE97B.pdf
  30. http://www.nxp.com/documents/data_sheet/SE98.pdf
  31. http://www.nxp.com/documents/data_sheet/SE98A.pdf
  32. * ON Semiconductor CAT34TS02, CAT6095
  33. Datasheet:
  34. http://www.onsemi.com/pub_link/Collateral/CAT34TS02-D.PDF
  35. http://www.onsemi.com/pub/Collateral/CAT6095-D.PDF
  36. * ST Microelectronics STTS424, STTS424E02, STTS2002, STTS3000
  37. Datasheets:
  38. http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00157556.pdf
  39. http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00157558.pdf
  40. http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATASHEET/CD00225278.pdf
  41. http://www.st.com/internet/com/TECHNICAL_RESOURCES/TECHNICAL_LITERATURE/DATA_BRIEF/CD00270920.pdf
  42. * JEDEC JC 42.4 compliant temperature sensor chips
  43. Datasheet:
  44. http://www.jedec.org/sites/default/files/docs/4_01_04R19.pdf
  45. Common for all chips:
  46. Prefix: 'jc42'
  47. Addresses scanned: I2C 0x18 - 0x1f
  48. Author:
  49. Guenter Roeck <linux@roeck-us.net>
  50. Description
  51. -----------
  52. This driver implements support for JEDEC JC 42.4 compliant temperature sensors,
  53. which are used on many DDR3 memory modules for mobile devices and servers. Some
  54. systems use the sensor to prevent memory overheating by automatically throttling
  55. the memory controller.
  56. The driver auto-detects the chips listed above, but can be manually instantiated
  57. to support other JC 42.4 compliant chips.
  58. Example: the following will load the driver for a generic JC 42.4 compliant
  59. temperature sensor at address 0x18 on I2C bus #1:
  60. # modprobe jc42
  61. # echo jc42 0x18 > /sys/bus/i2c/devices/i2c-1/new_device
  62. A JC 42.4 compliant chip supports a single temperature sensor. Minimum, maximum,
  63. and critical temperature can be configured. There are alarms for high, low,
  64. and critical thresholds.
  65. There is also an hysteresis to control the thresholds for resetting alarms.
  66. Per JC 42.4 specification, the hysteresis threshold can be configured to 0, 1.5,
  67. 3.0, and 6.0 degrees C. Configured hysteresis values will be rounded to those
  68. limits. The chip supports only a single register to configure the hysteresis,
  69. which applies to all limits. This register can be written by writing into
  70. temp1_crit_hyst. Other hysteresis attributes are read-only.
  71. If the BIOS has configured the sensor for automatic temperature management, it
  72. is likely that it has locked the registers, i.e., that the temperature limits
  73. cannot be changed.
  74. Sysfs entries
  75. -------------
  76. temp1_input Temperature (RO)
  77. temp1_min Minimum temperature (RO or RW)
  78. temp1_max Maximum temperature (RO or RW)
  79. temp1_crit Critical high temperature (RO or RW)
  80. temp1_crit_hyst Critical hysteresis temperature (RO or RW)
  81. temp1_max_hyst Maximum hysteresis temperature (RO)
  82. temp1_min_alarm Temperature low alarm
  83. temp1_max_alarm Temperature high alarm
  84. temp1_crit_alarm Temperature critical alarm