w83627hf 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. Kernel driver w83627hf
  2. ======================
  3. Supported chips:
  4. * Winbond W83627HF (ISA accesses ONLY)
  5. Prefix: 'w83627hf'
  6. Addresses scanned: ISA address retrieved from Super I/O registers
  7. Datasheet: http://www.winbond.com/PDF/sheet/w83627hf.pdf
  8. * Winbond W83627THF
  9. Prefix: 'w83627thf'
  10. Addresses scanned: ISA address retrieved from Super I/O registers
  11. Datasheet: http://www.winbond.com/PDF/sheet/w83627thf.pdf
  12. * Winbond W83697HF
  13. Prefix: 'w83697hf'
  14. Addresses scanned: ISA address retrieved from Super I/O registers
  15. Datasheet: http://www.winbond.com/PDF/sheet/697hf.pdf
  16. * Winbond W83637HF
  17. Prefix: 'w83637hf'
  18. Addresses scanned: ISA address retrieved from Super I/O registers
  19. Datasheet: http://www.winbond.com/PDF/sheet/w83637hf.pdf
  20. Authors:
  21. Frodo Looijaard <frodol@dds.nl>,
  22. Philip Edelbrock <phil@netroedge.com>,
  23. Mark Studebaker <mdsxyz123@yahoo.com>,
  24. Bernhard C. Schrenk <clemy@clemy.org>
  25. Module Parameters
  26. -----------------
  27. * force_addr: int
  28. Initialize the ISA address of the sensors
  29. * force_i2c: int
  30. Initialize the I2C address of the sensors
  31. * init: int
  32. (default is 1)
  33. Use 'init=0' to bypass initializing the chip.
  34. Try this if your computer crashes when you load the module.
  35. Description
  36. -----------
  37. This driver implements support for ISA accesses *only* for
  38. the Winbond W83627HF, W83627THF, W83697HF and W83637HF Super I/O chips.
  39. We will refer to them collectively as Winbond chips.
  40. This driver supports ISA accesses, which should be more reliable
  41. than i2c accesses. Also, for Tyan boards which contain both a
  42. Super I/O chip and a second i2c-only Winbond chip (often a W83782D),
  43. using this driver will avoid i2c address conflicts and complex
  44. initialization that were required in the w83781d driver.
  45. If you really want i2c accesses for these Super I/O chips,
  46. use the w83781d driver. However this is not the preferred method
  47. now that this ISA driver has been developed.
  48. Technically, the w83627thf does not support a VID reading. However, it's
  49. possible or even likely that your mainboard maker has routed these signals
  50. to a specific set of general purpose IO pins (the Asus P4C800-E is one such
  51. board). The w83627thf driver now interprets these as VID. If the VID on
  52. your board doesn't work, first see doc/vid in the lm_sensors package. If
  53. that still doesn't help, email us at lm-sensors@lm-sensors.org.
  54. For further information on this driver see the w83781d driver
  55. documentation.