via686a 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. Kernel driver via686a
  2. =====================
  3. Supported chips:
  4. * Via VT82C686A, VT82C686B Southbridge Integrated Hardware Monitor
  5. Prefix: 'via686a'
  6. Addresses scanned: ISA in PCI-space encoded address
  7. Datasheet: On request through web form (http://www.via.com.tw/en/support/datasheets/)
  8. Authors:
  9. Kyösti Mälkki <kmalkki@cc.hut.fi>,
  10. Mark D. Studebaker <mdsxyz123@yahoo.com>
  11. Bob Dougherty <bobd@stanford.edu>
  12. (Some conversion-factor data were contributed by
  13. Jonathan Teh Soon Yew <j.teh@iname.com>
  14. and Alex van Kaam <darkside@chello.nl>.)
  15. Module Parameters
  16. -----------------
  17. force_addr=0xaddr Set the I/O base address. Useful for boards that
  18. don't set the address in the BIOS. Look for a BIOS
  19. upgrade before resorting to this. Does not do a
  20. PCI force; the via686a must still be present in lspci.
  21. Don't use this unless the driver complains that the
  22. base address is not set.
  23. Example: 'modprobe via686a force_addr=0x6000'
  24. Description
  25. -----------
  26. The driver does not distinguish between the chips and reports
  27. all as a 686A.
  28. The Via 686a southbridge has integrated hardware monitor functionality.
  29. It also has an I2C bus, but this driver only supports the hardware monitor.
  30. For the I2C bus driver, see <file:Documentation/i2c/busses/i2c-viapro>
  31. The Via 686a implements three temperature sensors, two fan rotation speed
  32. sensors, five voltage sensors and alarms.
  33. Temperatures are measured in degrees Celsius. An alarm is triggered once
  34. when the Overtemperature Shutdown limit is crossed; it is triggered again
  35. as soon as it drops below the hysteresis value.
  36. Fan rotation speeds are reported in RPM (rotations per minute). An alarm is
  37. triggered if the rotation speed has dropped below a programmable limit. Fan
  38. readings can be divided by a programmable divider (1, 2, 4 or 8) to give
  39. the readings more range or accuracy. Not all RPM values can accurately be
  40. represented, so some rounding is done. With a divider of 2, the lowest
  41. representable value is around 2600 RPM.
  42. Voltage sensors (also known as IN sensors) report their values in volts.
  43. An alarm is triggered if the voltage has crossed a programmable minimum
  44. or maximum limit. Voltages are internally scalled, so each voltage channel
  45. has a different resolution and range.
  46. If an alarm triggers, it will remain triggered until the hardware register
  47. is read at least once. This means that the cause for the alarm may
  48. already have disappeared! Note that in the current implementation, all
  49. hardware registers are read whenever any data is read (unless it is less
  50. than 1.5 seconds since the last update). This means that you can easily
  51. miss once-only alarms.
  52. The driver only updates its values each 1.5 seconds; reading it more often
  53. will do no harm, but will return 'old' values.
  54. Known Issues
  55. ------------
  56. This driver handles sensors integrated in some VIA south bridges. It is
  57. possible that a motherboard maker used a VT82C686A/B chip as part of a
  58. product design but was not interested in its hardware monitoring features,
  59. in which case the sensor inputs will not be wired. This is the case of
  60. the Asus K7V, A7V and A7V133 motherboards, to name only a few of them.
  61. So, if you need the force_addr parameter, and end up with values which
  62. don't seem to make any sense, don't look any further: your chip is simply
  63. not wired for hardware monitoring.