Kconfig 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. #
  2. # Hardware monitoring chip drivers configuration
  3. #
  4. menu "Hardware Monitoring support"
  5. config HWMON
  6. tristate "Hardware Monitoring support"
  7. default y
  8. help
  9. Hardware monitoring devices let you monitor the hardware health
  10. of a system. Most modern motherboards include such a device. It
  11. can include temperature sensors, voltage sensors, fan speed
  12. sensors and various additional features such as the ability to
  13. control the speed of the fans. If you want this support you
  14. should say Y here and also to the specific driver(s) for your
  15. sensors chip(s) below.
  16. To find out which specific driver(s) you need, use the
  17. sensors-detect script from the lm_sensors package. Read
  18. <file:Documentation/hwmon/userspace-tools> for details.
  19. This support can also be built as a module. If so, the module
  20. will be called hwmon.
  21. config HWMON_VID
  22. tristate
  23. default n
  24. config SENSORS_ABITUGURU
  25. tristate "Abit uGuru"
  26. depends on HWMON && EXPERIMENTAL
  27. help
  28. If you say yes here you get support for the Abit uGuru chips
  29. sensor part. The voltage and frequency control parts of the Abit
  30. uGuru are not supported. The Abit uGuru chip can be found on Abit
  31. uGuru featuring motherboards (most modern Abit motherboards).
  32. This driver can also be built as a module. If so, the module
  33. will be called abituguru.
  34. config SENSORS_ADM1021
  35. tristate "Analog Devices ADM1021 and compatibles"
  36. depends on HWMON && I2C
  37. help
  38. If you say yes here you get support for Analog Devices ADM1021
  39. and ADM1023 sensor chips and clones: Maxim MAX1617 and MAX1617A,
  40. Genesys Logic GL523SM, National Semiconductor LM84, TI THMC10,
  41. and the XEON processor built-in sensor.
  42. This driver can also be built as a module. If so, the module
  43. will be called adm1021.
  44. config SENSORS_ADM1025
  45. tristate "Analog Devices ADM1025 and compatibles"
  46. depends on HWMON && I2C
  47. select HWMON_VID
  48. help
  49. If you say yes here you get support for Analog Devices ADM1025
  50. and Philips NE1619 sensor chips.
  51. This driver can also be built as a module. If so, the module
  52. will be called adm1025.
  53. config SENSORS_ADM1026
  54. tristate "Analog Devices ADM1026 and compatibles"
  55. depends on HWMON && I2C && EXPERIMENTAL
  56. select HWMON_VID
  57. help
  58. If you say yes here you get support for Analog Devices ADM1026
  59. sensor chip.
  60. This driver can also be built as a module. If so, the module
  61. will be called adm1026.
  62. config SENSORS_ADM1031
  63. tristate "Analog Devices ADM1031 and compatibles"
  64. depends on HWMON && I2C && EXPERIMENTAL
  65. help
  66. If you say yes here you get support for Analog Devices ADM1031
  67. and ADM1030 sensor chips.
  68. This driver can also be built as a module. If so, the module
  69. will be called adm1031.
  70. config SENSORS_ADM9240
  71. tristate "Analog Devices ADM9240 and compatibles"
  72. depends on HWMON && I2C && EXPERIMENTAL
  73. select HWMON_VID
  74. help
  75. If you say yes here you get support for Analog Devices ADM9240,
  76. Dallas DS1780, National Semiconductor LM81 sensor chips.
  77. This driver can also be built as a module. If so, the module
  78. will be called adm9240.
  79. config SENSORS_K8TEMP
  80. tristate "AMD Athlon64/FX or Opteron temperature sensor"
  81. depends on HWMON && X86 && PCI && EXPERIMENTAL
  82. help
  83. If you say yes here you get support for the temperature
  84. sensor(s) inside your CPU. Supported is whole AMD K8
  85. microarchitecture. Please note that you will need at least
  86. lm-sensors 2.10.1 for proper userspace support.
  87. This driver can also be built as a module. If so, the module
  88. will be called k8temp.
  89. config SENSORS_AMS
  90. tristate "Apple Motion Sensor driver"
  91. depends on HWMON && PPC_PMAC && !PPC64 && INPUT && ((ADB_PMU && I2C = y) || (ADB_PMU && !I2C) || I2C) && EXPERIMENTAL
  92. help
  93. Support for the motion sensor included in PowerBooks. Includes
  94. implementations for PMU and I2C.
  95. This driver can also be built as a module. If so, the module
  96. will be called ams.
  97. config SENSORS_AMS_PMU
  98. bool "PMU variant"
  99. depends on SENSORS_AMS && ADB_PMU
  100. default y
  101. help
  102. PMU variant of motion sensor, found in late 2005 PowerBooks.
  103. config SENSORS_AMS_I2C
  104. bool "I2C variant"
  105. depends on SENSORS_AMS && I2C
  106. default y
  107. help
  108. I2C variant of motion sensor, found in early 2005 PowerBooks and
  109. iBooks.
  110. config SENSORS_ASB100
  111. tristate "Asus ASB100 Bach"
  112. depends on HWMON && I2C && EXPERIMENTAL
  113. select HWMON_VID
  114. help
  115. If you say yes here you get support for the ASB100 Bach sensor
  116. chip found on some Asus mainboards.
  117. This driver can also be built as a module. If so, the module
  118. will be called asb100.
  119. config SENSORS_ATXP1
  120. tristate "Attansic ATXP1 VID controller"
  121. depends on HWMON && I2C && EXPERIMENTAL
  122. select HWMON_VID
  123. help
  124. If you say yes here you get support for the Attansic ATXP1 VID
  125. controller.
  126. If your board have such a chip, you are able to control your CPU
  127. core and other voltages.
  128. This driver can also be built as a module. If so, the module
  129. will be called atxp1.
  130. config SENSORS_DS1621
  131. tristate "Dallas Semiconductor DS1621 and DS1625"
  132. depends on HWMON && I2C
  133. help
  134. If you say yes here you get support for Dallas Semiconductor
  135. DS1621 and DS1625 sensor chips.
  136. This driver can also be built as a module. If so, the module
  137. will be called ds1621.
  138. config SENSORS_F71805F
  139. tristate "Fintek F71805F/FG and F71872F/FG"
  140. depends on HWMON && EXPERIMENTAL
  141. help
  142. If you say yes here you get support for hardware monitoring
  143. features of the Fintek F71805F/FG and F71872F/FG Super-I/O
  144. chips.
  145. This driver can also be built as a module. If so, the module
  146. will be called f71805f.
  147. config SENSORS_FSCHER
  148. tristate "FSC Hermes"
  149. depends on HWMON && I2C
  150. help
  151. If you say yes here you get support for Fujitsu Siemens
  152. Computers Hermes sensor chips.
  153. This driver can also be built as a module. If so, the module
  154. will be called fscher.
  155. config SENSORS_FSCPOS
  156. tristate "FSC Poseidon"
  157. depends on HWMON && I2C
  158. help
  159. If you say yes here you get support for Fujitsu Siemens
  160. Computers Poseidon sensor chips.
  161. This driver can also be built as a module. If so, the module
  162. will be called fscpos.
  163. config SENSORS_GL518SM
  164. tristate "Genesys Logic GL518SM"
  165. depends on HWMON && I2C
  166. help
  167. If you say yes here you get support for Genesys Logic GL518SM
  168. sensor chips.
  169. This driver can also be built as a module. If so, the module
  170. will be called gl518sm.
  171. config SENSORS_GL520SM
  172. tristate "Genesys Logic GL520SM"
  173. depends on HWMON && I2C
  174. select HWMON_VID
  175. help
  176. If you say yes here you get support for Genesys Logic GL520SM
  177. sensor chips.
  178. This driver can also be built as a module. If so, the module
  179. will be called gl520sm.
  180. config SENSORS_IT87
  181. tristate "ITE IT87xx and compatibles"
  182. depends on HWMON && I2C
  183. select I2C_ISA
  184. select HWMON_VID
  185. help
  186. If you say yes here you get support for ITE IT8705F, IT8712F,
  187. IT8716F and IT8718F sensor chips, and the SiS960 clone.
  188. This driver can also be built as a module. If so, the module
  189. will be called it87.
  190. config SENSORS_LM63
  191. tristate "National Semiconductor LM63"
  192. depends on HWMON && I2C
  193. help
  194. If you say yes here you get support for the National Semiconductor
  195. LM63 remote diode digital temperature sensor with integrated fan
  196. control. Such chips are found on the Tyan S4882 (Thunder K8QS Pro)
  197. motherboard, among others.
  198. This driver can also be built as a module. If so, the module
  199. will be called lm63.
  200. config SENSORS_LM70
  201. tristate "National Semiconductor LM70"
  202. depends on HWMON && SPI_MASTER && EXPERIMENTAL
  203. help
  204. If you say yes here you get support for the National Semiconductor
  205. LM70 digital temperature sensor chip.
  206. This driver can also be built as a module. If so, the module
  207. will be called lm70.
  208. config SENSORS_LM75
  209. tristate "National Semiconductor LM75 and compatibles"
  210. depends on HWMON && I2C
  211. help
  212. If you say yes here you get support for National Semiconductor LM75
  213. sensor chips and clones: Dallas Semiconductor DS75 and DS1775 (in
  214. 9-bit precision mode), and TelCom (now Microchip) TCN75.
  215. The DS75 and DS1775 in 10- to 12-bit precision modes will require
  216. a force module parameter. The driver will not handle the extra
  217. precision anyhow.
  218. This driver can also be built as a module. If so, the module
  219. will be called lm75.
  220. config SENSORS_LM77
  221. tristate "National Semiconductor LM77"
  222. depends on HWMON && I2C
  223. help
  224. If you say yes here you get support for National Semiconductor LM77
  225. sensor chips.
  226. This driver can also be built as a module. If so, the module
  227. will be called lm77.
  228. config SENSORS_LM78
  229. tristate "National Semiconductor LM78 and compatibles"
  230. depends on HWMON && I2C
  231. select I2C_ISA
  232. select HWMON_VID
  233. help
  234. If you say yes here you get support for National Semiconductor LM78,
  235. LM78-J and LM79.
  236. This driver can also be built as a module. If so, the module
  237. will be called lm78.
  238. config SENSORS_LM80
  239. tristate "National Semiconductor LM80"
  240. depends on HWMON && I2C && EXPERIMENTAL
  241. help
  242. If you say yes here you get support for National Semiconductor
  243. LM80 sensor chips.
  244. This driver can also be built as a module. If so, the module
  245. will be called lm80.
  246. config SENSORS_LM83
  247. tristate "National Semiconductor LM83 and compatibles"
  248. depends on HWMON && I2C
  249. help
  250. If you say yes here you get support for National Semiconductor
  251. LM82 and LM83 sensor chips.
  252. This driver can also be built as a module. If so, the module
  253. will be called lm83.
  254. config SENSORS_LM85
  255. tristate "National Semiconductor LM85 and compatibles"
  256. depends on HWMON && I2C && EXPERIMENTAL
  257. select HWMON_VID
  258. help
  259. If you say yes here you get support for National Semiconductor LM85
  260. sensor chips and clones: ADT7463, EMC6D100, EMC6D102 and ADM1027.
  261. This driver can also be built as a module. If so, the module
  262. will be called lm85.
  263. config SENSORS_LM87
  264. tristate "National Semiconductor LM87"
  265. depends on HWMON && I2C
  266. select HWMON_VID
  267. help
  268. If you say yes here you get support for National Semiconductor LM87
  269. sensor chips.
  270. This driver can also be built as a module. If so, the module
  271. will be called lm87.
  272. config SENSORS_LM90
  273. tristate "National Semiconductor LM90 and compatibles"
  274. depends on HWMON && I2C
  275. help
  276. If you say yes here you get support for National Semiconductor LM90,
  277. LM86, LM89 and LM99, Analog Devices ADM1032 and Maxim MAX6657 and
  278. MAX6658 sensor chips.
  279. The Analog Devices ADT7461 sensor chip is also supported, but only
  280. if found in ADM1032 compatibility mode.
  281. This driver can also be built as a module. If so, the module
  282. will be called lm90.
  283. config SENSORS_LM92
  284. tristate "National Semiconductor LM92 and compatibles"
  285. depends on HWMON && I2C
  286. help
  287. If you say yes here you get support for National Semiconductor LM92
  288. and Maxim MAX6635 sensor chips.
  289. This driver can also be built as a module. If so, the module
  290. will be called lm92.
  291. config SENSORS_MAX1619
  292. tristate "Maxim MAX1619 sensor chip"
  293. depends on HWMON && I2C
  294. help
  295. If you say yes here you get support for MAX1619 sensor chip.
  296. This driver can also be built as a module. If so, the module
  297. will be called max1619.
  298. config SENSORS_PC87360
  299. tristate "National Semiconductor PC87360 family"
  300. depends on HWMON && I2C && EXPERIMENTAL
  301. select I2C_ISA
  302. select HWMON_VID
  303. help
  304. If you say yes here you get access to the hardware monitoring
  305. functions of the National Semiconductor PC8736x Super-I/O chips.
  306. The PC87360, PC87363 and PC87364 only have fan monitoring and
  307. control. The PC87365 and PC87366 additionally have voltage and
  308. temperature monitoring.
  309. This driver can also be built as a module. If so, the module
  310. will be called pc87360.
  311. config SENSORS_PC87427
  312. tristate "National Semiconductor PC87427"
  313. depends on HWMON && EXPERIMENTAL
  314. help
  315. If you say yes here you get access to the hardware monitoring
  316. functions of the National Semiconductor PC87427 Super-I/O chip.
  317. The chip has two distinct logical devices, one for fan speed
  318. monitoring and control, and one for voltage and temperature
  319. monitoring. Only fan speed monitoring is supported right now.
  320. This driver can also be built as a module. If so, the module
  321. will be called pc87427.
  322. config SENSORS_SIS5595
  323. tristate "Silicon Integrated Systems Corp. SiS5595"
  324. depends on HWMON && I2C && PCI && EXPERIMENTAL
  325. select I2C_ISA
  326. help
  327. If you say yes here you get support for the integrated sensors in
  328. SiS5595 South Bridges.
  329. This driver can also be built as a module. If so, the module
  330. will be called sis5595.
  331. config SENSORS_SMSC47M1
  332. tristate "SMSC LPC47M10x and compatibles"
  333. depends on HWMON && I2C
  334. select I2C_ISA
  335. help
  336. If you say yes here you get support for the integrated fan
  337. monitoring and control capabilities of the SMSC LPC47B27x,
  338. LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
  339. LPC47M192 and LPC47M997 chips.
  340. The temperature and voltage sensor features of the LPC47M192
  341. and LPC47M997 are supported by another driver, select also
  342. "SMSC LPC47M192 and compatibles" below for those.
  343. This driver can also be built as a module. If so, the module
  344. will be called smsc47m1.
  345. config SENSORS_SMSC47M192
  346. tristate "SMSC LPC47M192 and compatibles"
  347. depends on HWMON && I2C && EXPERIMENTAL
  348. select HWMON_VID
  349. help
  350. If you say yes here you get support for the temperature and
  351. voltage sensors of the SMSC LPC47M192 and LPC47M997 chips.
  352. The fan monitoring and control capabilities of these chips
  353. are supported by another driver, select
  354. "SMSC LPC47M10x and compatibles" above. You need both drivers
  355. if you want fan control and voltage/temperature sensor support.
  356. This driver can also be built as a module. If so, the module
  357. will be called smsc47m192.
  358. config SENSORS_SMSC47B397
  359. tristate "SMSC LPC47B397-NC"
  360. depends on HWMON && I2C && EXPERIMENTAL
  361. select I2C_ISA
  362. help
  363. If you say yes here you get support for the SMSC LPC47B397-NC
  364. sensor chip.
  365. This driver can also be built as a module. If so, the module
  366. will be called smsc47b397.
  367. config SENSORS_VIA686A
  368. tristate "VIA686A"
  369. depends on HWMON && I2C && PCI
  370. select I2C_ISA
  371. help
  372. If you say yes here you get support for the integrated sensors in
  373. Via 686A/B South Bridges.
  374. This driver can also be built as a module. If so, the module
  375. will be called via686a.
  376. config SENSORS_VT1211
  377. tristate "VIA VT1211"
  378. depends on HWMON && EXPERIMENTAL
  379. select HWMON_VID
  380. help
  381. If you say yes here then you get support for hardware monitoring
  382. features of the VIA VT1211 Super-I/O chip.
  383. This driver can also be built as a module. If so, the module
  384. will be called vt1211.
  385. config SENSORS_VT8231
  386. tristate "VIA VT8231"
  387. depends on HWMON && I2C && PCI && EXPERIMENTAL
  388. select HWMON_VID
  389. select I2C_ISA
  390. help
  391. If you say yes here then you get support for the integrated sensors
  392. in the VIA VT8231 device.
  393. This driver can also be built as a module. If so, the module
  394. will be called vt8231.
  395. config SENSORS_W83781D
  396. tristate "Winbond W83781D, W83782D, W83783S, W83627HF, Asus AS99127F"
  397. depends on HWMON && I2C
  398. select I2C_ISA
  399. select HWMON_VID
  400. help
  401. If you say yes here you get support for the Winbond W8378x series
  402. of sensor chips: the W83781D, W83782D, W83783S and W83627HF,
  403. and the similar Asus AS99127F.
  404. This driver can also be built as a module. If so, the module
  405. will be called w83781d.
  406. config SENSORS_W83791D
  407. tristate "Winbond W83791D"
  408. depends on HWMON && I2C && EXPERIMENTAL
  409. select HWMON_VID
  410. help
  411. If you say yes here you get support for the Winbond W83791D chip.
  412. This driver can also be built as a module. If so, the module
  413. will be called w83791d.
  414. config SENSORS_W83792D
  415. tristate "Winbond W83792D"
  416. depends on HWMON && I2C && EXPERIMENTAL
  417. help
  418. If you say yes here you get support for the Winbond W83792D chip.
  419. This driver can also be built as a module. If so, the module
  420. will be called w83792d.
  421. config SENSORS_W83793
  422. tristate "Winbond W83793"
  423. depends on HWMON && I2C && EXPERIMENTAL
  424. help
  425. If you say yes here you get support for the Winbond W83793
  426. hardware monitoring chip.
  427. This driver can also be built as a module. If so, the module
  428. will be called w83793.
  429. config SENSORS_W83L785TS
  430. tristate "Winbond W83L785TS-S"
  431. depends on HWMON && I2C && EXPERIMENTAL
  432. help
  433. If you say yes here you get support for the Winbond W83L785TS-S
  434. sensor chip, which is used on the Asus A7N8X, among other
  435. motherboards.
  436. This driver can also be built as a module. If so, the module
  437. will be called w83l785ts.
  438. config SENSORS_W83627HF
  439. tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
  440. depends on HWMON && I2C
  441. select I2C_ISA
  442. select HWMON_VID
  443. help
  444. If you say yes here you get support for the Winbond W836X7 series
  445. of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
  446. W83697HF.
  447. This driver can also be built as a module. If so, the module
  448. will be called w83627hf.
  449. config SENSORS_W83627EHF
  450. tristate "Winbond W83627EHF"
  451. depends on HWMON && I2C && EXPERIMENTAL
  452. select I2C_ISA
  453. help
  454. If you say yes here you get preliminary support for the hardware
  455. monitoring functionality of the Winbond W83627EHF Super-I/O chip.
  456. Only fan and temperature inputs are supported at the moment, while
  457. the chip does much more than that.
  458. This driver also supports the W83627EHG, which is the lead-free
  459. version of the W83627EHF.
  460. This driver can also be built as a module. If so, the module
  461. will be called w83627ehf.
  462. config SENSORS_HDAPS
  463. tristate "IBM Hard Drive Active Protection System (hdaps)"
  464. depends on HWMON && INPUT && X86
  465. default n
  466. help
  467. This driver provides support for the IBM Hard Drive Active Protection
  468. System (hdaps), which provides an accelerometer and other misc. data.
  469. ThinkPads starting with the R50, T41, and X40 are supported. The
  470. accelerometer data is readable via sysfs.
  471. This driver also provides an absolute input class device, allowing
  472. the laptop to act as a pinball machine-esque joystick.
  473. If your ThinkPad is not recognized by the driver, please update to latest
  474. BIOS. This is especially the case for some R52 ThinkPads.
  475. Say Y here if you have an applicable laptop and want to experience
  476. the awesome power of hdaps.
  477. config HWMON_DEBUG_CHIP
  478. bool "Hardware Monitoring Chip debugging messages"
  479. depends on HWMON
  480. default n
  481. help
  482. Say Y here if you want the I2C chip drivers to produce a bunch of
  483. debug messages to the system log. Select this if you are having
  484. a problem with I2C support and want to see more of what is going
  485. on.
  486. endmenu