smsc47m192 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. Kernel driver smsc47m192
  2. ========================
  3. Supported chips:
  4. * SMSC LPC47M192 and LPC47M997
  5. Prefix: 'smsc47m192'
  6. Addresses scanned: I2C 0x2c - 0x2d
  7. Datasheet: The datasheet for LPC47M192 is publicly available from
  8. http://www.smsc.com/
  9. The LPC47M997 is compatible for hardware monitoring.
  10. Author: Hartmut Rick <linux@rick.claranet.de>
  11. Special thanks to Jean Delvare for careful checking
  12. of the code and many helpful comments and suggestions.
  13. Description
  14. -----------
  15. This driver implements support for the hardware sensor capabilities
  16. of the SMSC LPC47M192 and LPC47M997 Super-I/O chips.
  17. These chips support 3 temperature channels and 8 voltage inputs
  18. as well as CPU voltage VID input.
  19. They do also have fan monitoring and control capabilities, but the
  20. these features are accessed via ISA bus and are not supported by this
  21. driver. Use the 'smsc47m1' driver for fan monitoring and control.
  22. Voltages and temperatures are measured by an 8-bit ADC, the resolution
  23. of the temperatures is 1 bit per degree C.
  24. Voltages are scaled such that the nominal voltage corresponds to
  25. 192 counts, i.e. 3/4 of the full range. Thus the available range for
  26. each voltage channel is 0V ... 255/192*(nominal voltage), the resolution
  27. is 1 bit per (nominal voltage)/192.
  28. Both voltage and temperature values are scaled by 1000, the sys files
  29. show voltages in mV and temperatures in units of 0.001 degC.
  30. The +12V analog voltage input channel (in4_input) is multiplexed with
  31. bit 4 of the encoded CPU voltage. This means that you either get
  32. a +12V voltage measurement or a 5 bit CPU VID, but not both.
  33. The default setting is to use the pin as 12V input, and use only 4 bit VID.
  34. This driver assumes that the information in the configuration register
  35. is correct, i.e. that the BIOS has updated the configuration if
  36. the motherboard has this input wired to VID4.
  37. The temperature and voltage readings are updated once every 1.5 seconds.
  38. Reading them more often repeats the same values.
  39. sysfs interface
  40. ---------------
  41. in0_input - +2.5V voltage input
  42. in1_input - CPU voltage input (nominal 2.25V)
  43. in2_input - +3.3V voltage input
  44. in3_input - +5V voltage input
  45. in4_input - +12V voltage input (may be missing if used as VID4)
  46. in5_input - Vcc voltage input (nominal 3.3V)
  47. This is the supply voltage of the sensor chip itself.
  48. in6_input - +1.5V voltage input
  49. in7_input - +1.8V voltage input
  50. in[0-7]_min,
  51. in[0-7]_max - lower and upper alarm thresholds for in[0-7]_input reading
  52. All voltages are read and written in mV.
  53. in[0-7]_alarm - alarm flags for voltage inputs
  54. These files read '1' in case of alarm, '0' otherwise.
  55. temp1_input - chip temperature measured by on-chip diode
  56. temp[2-3]_input - temperature measured by external diodes (one of these would
  57. typically be wired to the diode inside the CPU)
  58. temp[1-3]_min,
  59. temp[1-3]_max - lower and upper alarm thresholds for temperatures
  60. temp[1-3]_offset - temperature offset registers
  61. The chip adds the offsets stored in these registers to
  62. the corresponding temperature readings.
  63. Note that temp1 and temp2 offsets share the same register,
  64. they cannot both be different from zero at the same time.
  65. Writing a non-zero number to one of them will reset the other
  66. offset to zero.
  67. All temperatures and offsets are read and written in
  68. units of 0.001 degC.
  69. temp[1-3]_alarm - alarm flags for temperature inputs, '1' in case of alarm,
  70. '0' otherwise.
  71. temp[2-3]_input_fault - diode fault flags for temperature inputs 2 and 3.
  72. A fault is detected if the two pins for the corresponding
  73. sensor are open or shorted, or any of the two is shorted
  74. to ground or Vcc. '1' indicates a diode fault.
  75. cpu0_vid - CPU voltage as received from the CPU
  76. vrm - CPU VID standard used for decoding CPU voltage
  77. The *_min, *_max, *_offset and vrm files can be read and
  78. written, all others are read-only.