jc42 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. Kernel driver jc42
  2. ==================
  3. Supported chips:
  4. * Analog Devices ADT7408
  5. Prefix: 'adt7408'
  6. Addresses scanned: I2C 0x18 - 0x1f
  7. Datasheets:
  8. http://www.analog.com/static/imported-files/data_sheets/ADT7408.pdf
  9. * IDT TSE2002B3, TS3000B3
  10. Prefix: 'tse2002b3', 'ts3000b3'
  11. Addresses scanned: I2C 0x18 - 0x1f
  12. Datasheets:
  13. http://www.idt.com/products/getdoc.cfm?docid=18715691
  14. http://www.idt.com/products/getdoc.cfm?docid=18715692
  15. * Maxim MAX6604
  16. Prefix: 'max6604'
  17. Addresses scanned: I2C 0x18 - 0x1f
  18. Datasheets:
  19. http://datasheets.maxim-ic.com/en/ds/MAX6604.pdf
  20. * Microchip MCP9805, MCP98242, MCP98243, MCP9843
  21. Prefixes: 'mcp9805', 'mcp98242', 'mcp98243', 'mcp9843'
  22. Addresses scanned: I2C 0x18 - 0x1f
  23. Datasheets:
  24. http://ww1.microchip.com/downloads/en/DeviceDoc/21977b.pdf
  25. http://ww1.microchip.com/downloads/en/DeviceDoc/21996a.pdf
  26. http://ww1.microchip.com/downloads/en/DeviceDoc/22153c.pdf
  27. * NXP Semiconductors SE97, SE97B
  28. Prefix: 'se97'
  29. Addresses scanned: I2C 0x18 - 0x1f
  30. Datasheets:
  31. http://www.nxp.com/documents/data_sheet/SE97.pdf
  32. http://www.nxp.com/documents/data_sheet/SE97B.pdf
  33. * NXP Semiconductors SE98
  34. Prefix: 'se98'
  35. Addresses scanned: I2C 0x18 - 0x1f
  36. Datasheets:
  37. http://www.nxp.com/documents/data_sheet/SE98.pdf
  38. * ON Semiconductor CAT34TS02, CAT6095
  39. Prefix: 'cat34ts02', 'cat6095'
  40. Addresses scanned: I2C 0x18 - 0x1f
  41. Datasheet:
  42. http://www.onsemi.com/pub_link/Collateral/CAT34TS02-D.PDF
  43. http://www.onsemi.com/pub/Collateral/CAT6095-D.PDF
  44. * ST Microelectronics STTS424, STTS424E02
  45. Prefix: 'stts424'
  46. Addresses scanned: I2C 0x18 - 0x1f
  47. Datasheets:
  48. http://www.st.com/stonline/products/literature/ds/13447/stts424.pdf
  49. http://www.st.com/stonline/products/literature/ds/13448/stts424e02.pdf
  50. * JEDEC JC 42.4 compliant temperature sensor chips
  51. Prefix: 'jc42'
  52. Addresses scanned: I2C 0x18 - 0x1f
  53. Datasheet: -
  54. Author:
  55. Guenter Roeck <guenter.roeck@ericsson.com>
  56. Description
  57. -----------
  58. This driver implements support for JEDEC JC 42.4 compliant temperature sensors.
  59. The driver auto-detects the chips listed above, but can be manually instantiated
  60. to support other JC 42.4 compliant chips.
  61. Example: the following will load the driver for a generic JC 42.4 compliant
  62. temperature sensor at address 0x18 on I2C bus #1:
  63. # modprobe jc42
  64. # echo jc42 0x18 > /sys/bus/i2c/devices/i2c-1/new_device
  65. A JC 42.4 compliant chip supports a single temperature sensor. Minimum, maximum,
  66. and critical temperature can be configured. There are alarms for high, low,
  67. and critical thresholds.
  68. There is also an hysteresis to control the thresholds for resetting alarms.
  69. Per JC 42.4 specification, the hysteresis threshold can be configured to 0, 1.5,
  70. 3.0, and 6.0 degrees C. Configured hysteresis values will be rounded to those
  71. limits. The chip supports only a single register to configure the hysteresis,
  72. which applies to all limits. This register can be written by writing into
  73. temp1_crit_hyst. Other hysteresis attributes are read-only.
  74. Sysfs entries
  75. -------------
  76. temp1_input Temperature (RO)
  77. temp1_min Minimum temperature (RW)
  78. temp1_max Maximum temperature (RW)
  79. temp1_crit Critical high temperature (RW)
  80. temp1_crit_hyst Critical hysteresis temperature (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