pc87427 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. Kernel driver pc87427
  2. =====================
  3. Supported chips:
  4. * National Semiconductor PC87427
  5. Prefix: 'pc87427'
  6. Addresses scanned: none, address read from Super I/O config space
  7. Datasheet: No longer available
  8. Author: Jean Delvare <jdelvare@suse.de>
  9. Thanks to Amir Habibi at Candelis for setting up a test system, and to
  10. Michael Kress for testing several iterations of this driver.
  11. Description
  12. -----------
  13. The National Semiconductor Super I/O chip includes complete hardware
  14. monitoring capabilities. It can monitor up to 18 voltages, 8 fans and
  15. 6 temperature sensors. Only the fans and temperatures are supported at
  16. the moment, voltages aren't.
  17. This chip also has fan controlling features (up to 4 PWM outputs),
  18. which are partly supported by this driver.
  19. The driver assumes that no more than one chip is present, which seems
  20. reasonable.
  21. Fan Monitoring
  22. --------------
  23. Fan rotation speeds are reported as 14-bit values from a gated clock
  24. signal. Speeds down to 83 RPM can be measured.
  25. An alarm is triggered if the rotation speed drops below a programmable
  26. limit. Another alarm is triggered if the speed is too low to be measured
  27. (including stalled or missing fan).
  28. Fan Speed Control
  29. -----------------
  30. Fan speed can be controlled by PWM outputs. There are 4 possible modes:
  31. always off, always on, manual and automatic. The latter isn't supported
  32. by the driver: you can only return to that mode if it was the original
  33. setting, and the configuration interface is missing.
  34. Temperature Monitoring
  35. ----------------------
  36. The PC87427 relies on external sensors (following the SensorPath
  37. standard), so the resolution and range depend on the type of sensor
  38. connected. The integer part can be 8-bit or 9-bit, and can be signed or
  39. not. I couldn't find a way to figure out the external sensor data
  40. temperature format, so user-space adjustment (typically by a factor 2)
  41. may be required.