f71882fg 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. Kernel driver f71882fg
  2. ======================
  3. Supported chips:
  4. * Fintek F71808E
  5. Prefix: 'f71808e'
  6. Addresses scanned: none, address read from Super I/O config space
  7. Datasheet: Not public
  8. * Fintek F71858FG
  9. Prefix: 'f71858fg'
  10. Addresses scanned: none, address read from Super I/O config space
  11. Datasheet: Available from the Fintek website
  12. * Fintek F71862FG and F71863FG
  13. Prefix: 'f71862fg'
  14. Addresses scanned: none, address read from Super I/O config space
  15. Datasheet: Available from the Fintek website
  16. * Fintek F71869F and F71869E
  17. Prefix: 'f71869'
  18. Addresses scanned: none, address read from Super I/O config space
  19. Datasheet: Available from the Fintek website
  20. * Fintek F71882FG and F71883FG
  21. Prefix: 'f71882fg'
  22. Addresses scanned: none, address read from Super I/O config space
  23. Datasheet: Available from the Fintek website
  24. * Fintek F71889FG
  25. Prefix: 'f71889fg'
  26. Addresses scanned: none, address read from Super I/O config space
  27. Datasheet: Available from the Fintek website
  28. * Fintek F71889ED
  29. Prefix: 'f71889ed'
  30. Addresses scanned: none, address read from Super I/O config space
  31. Datasheet: Should become available on the Fintek website soon
  32. * Fintek F71889A
  33. Prefix: 'f71889a'
  34. Addresses scanned: none, address read from Super I/O config space
  35. Datasheet: Should become available on the Fintek website soon
  36. * Fintek F8000
  37. Prefix: 'f8000'
  38. Addresses scanned: none, address read from Super I/O config space
  39. Datasheet: Not public
  40. * Fintek F81801U
  41. Prefix: 'f71889fg'
  42. Addresses scanned: none, address read from Super I/O config space
  43. Datasheet: Not public
  44. Note: This is the 64-pin variant of the F71889FG, they have the
  45. same device ID and are fully compatible as far as hardware
  46. monitoring is concerned.
  47. * Fintek F81865F
  48. Prefix: 'f81865f'
  49. Addresses scanned: none, address read from Super I/O config space
  50. Datasheet: Available from the Fintek website
  51. Author: Hans de Goede <hdegoede@redhat.com>
  52. Description
  53. -----------
  54. Fintek F718xx/F8000 Super I/O chips include complete hardware monitoring
  55. capabilities. They can monitor up to 9 voltages, 4 fans and 3 temperature
  56. sensors.
  57. These chips also have fan controlling features, using either DC or PWM, in
  58. three different modes (one manual, two automatic).
  59. The driver assumes that no more than one chip is present, which seems
  60. reasonable.
  61. Monitoring
  62. ----------
  63. The Voltage, Fan and Temperature Monitoring uses the standard sysfs
  64. interface as documented in sysfs-interface, without any exceptions.
  65. Fan Control
  66. -----------
  67. Both PWM (pulse-width modulation) and DC fan speed control methods are
  68. supported. The right one to use depends on external circuitry on the
  69. motherboard, so the driver assumes that the BIOS set the method
  70. properly.
  71. Note that the lowest numbered temperature zone trip point corresponds to
  72. to the border between the highest and one but highest temperature zones, and
  73. vica versa. So the temperature zone trip points 1-4 (or 1-2) go from high temp
  74. to low temp! This is how things are implemented in the IC, and the driver
  75. mimicks this.
  76. There are 2 modes to specify the speed of the fan, PWM duty cycle (or DC
  77. voltage) mode, where 0-100% duty cycle (0-100% of 12V) is specified. And RPM
  78. mode where the actual RPM of the fan (as measured) is controlled and the speed
  79. gets specified as 0-100% of the fan#_full_speed file.
  80. Since both modes work in a 0-100% (mapped to 0-255) scale, there isn't a
  81. whole lot of a difference when modifying fan control settings. The only
  82. important difference is that in RPM mode the 0-100% controls the fan speed
  83. between 0-100% of fan#_full_speed. It is assumed that if the BIOS programs
  84. RPM mode, it will also set fan#_full_speed properly, if it does not then
  85. fan control will not work properly, unless you set a sane fan#_full_speed
  86. value yourself.
  87. Switching between these modes requires re-initializing a whole bunch of
  88. registers, so the mode which the BIOS has set is kept. The mode is
  89. printed when loading the driver.
  90. Three different fan control modes are supported; the mode number is written
  91. to the pwm#_enable file. Note that not all modes are supported on all
  92. chips, and some modes may only be available in RPM / PWM mode.
  93. Writing an unsupported mode will result in an invalid parameter error.
  94. * 1: Manual mode
  95. You ask for a specific PWM duty cycle / DC voltage or a specific % of
  96. fan#_full_speed by writing to the pwm# file. This mode is only
  97. available on the F71858FG / F8000 if the fan channel is in RPM mode.
  98. * 2: Normal auto mode
  99. You can define a number of temperature/fan speed trip points, which % the
  100. fan should run at at this temp and which temp a fan should follow using the
  101. standard sysfs interface. The number and type of trip points is chip
  102. depended, see which files are available in sysfs.
  103. Fan/PWM channel 3 of the F8000 is always in this mode!
  104. * 3: Thermostat mode (Only available on the F8000 when in duty cycle mode)
  105. The fan speed is regulated to keep the temp the fan is mapped to between
  106. temp#_auto_point2_temp and temp#_auto_point3_temp.
  107. All of the automatic modes require that pwm1 corresponds to fan1, pwm2 to
  108. fan2 and pwm3 to fan3.