smsc47m1 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. Kernel driver smsc47m1
  2. ======================
  3. Supported chips:
  4. * SMSC LPC47B27x, LPC47M10x, LPC47M13x, LPC47M14x, LPC47M15x and LPC47M192
  5. Addresses scanned: none, address read from Super I/O config space
  6. Prefix: 'smsc47m1'
  7. Datasheets:
  8. http://www.smsc.com/main/datasheets/47b27x.pdf
  9. http://www.smsc.com/main/datasheets/47m10x.pdf
  10. http://www.smsc.com/main/tools/discontinued/47m13x.pdf
  11. http://www.smsc.com/main/datasheets/47m14x.pdf
  12. http://www.smsc.com/main/tools/discontinued/47m15x.pdf
  13. http://www.smsc.com/main/datasheets/47m192.pdf
  14. * SMSC LPC47M997
  15. Addresses scanned: none, address read from Super I/O config space
  16. Prefix: 'smsc47m1'
  17. Datasheet: none
  18. Authors:
  19. Mark D. Studebaker <mdsxyz123@yahoo.com>,
  20. With assistance from Bruce Allen <ballen@uwm.edu>, and his
  21. fan.c program: http://www.lsc-group.phys.uwm.edu/%7Eballen/driver/
  22. Gabriele Gorla <gorlik@yahoo.com>,
  23. Jean Delvare <khali@linux-fr.org>
  24. Description
  25. -----------
  26. The Standard Microsystems Corporation (SMSC) 47M1xx Super I/O chips
  27. contain monitoring and PWM control circuitry for two fans.
  28. The 47M15x and 47M192 chips contain a full 'hardware monitoring block'
  29. in addition to the fan monitoring and control. The hardware monitoring
  30. block is not supported by the driver.
  31. No documentation is available for the 47M997, but it has the same device
  32. ID as the 47M15x and 47M192 chips and seems to be compatible.
  33. Fan rotation speeds are reported in RPM (rotations per minute). An alarm is
  34. triggered if the rotation speed has dropped below a programmable limit. Fan
  35. readings can be divided by a programmable divider (1, 2, 4 or 8) to give
  36. the readings more range or accuracy. Not all RPM values can accurately be
  37. represented, so some rounding is done. With a divider of 2, the lowest
  38. representable value is around 2600 RPM.
  39. PWM values are from 0 to 255.
  40. If an alarm triggers, it will remain triggered until the hardware register
  41. is read at least once. This means that the cause for the alarm may
  42. already have disappeared! Note that in the current implementation, all
  43. hardware registers are read whenever any data is read (unless it is less
  44. than 1.5 seconds since the last update). This means that you can easily
  45. miss once-only alarms.
  46. **********************
  47. The lm_sensors project gratefully acknowledges the support of
  48. Intel in the development of this driver.