Kconfig 33 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. #
  2. # Hardware monitoring chip drivers configuration
  3. #
  4. menuconfig HWMON
  5. tristate "Hardware Monitoring support"
  6. depends on HAS_IOMEM
  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. if HWMON
  22. config HWMON_VID
  23. tristate
  24. default n
  25. config HWMON_DEBUG_CHIP
  26. bool "Hardware Monitoring Chip debugging messages"
  27. default n
  28. help
  29. Say Y here if you want the I2C chip drivers to produce a bunch of
  30. debug messages to the system log. Select this if you are having
  31. a problem with I2C support and want to see more of what is going
  32. on.
  33. comment "Native drivers"
  34. config SENSORS_ABITUGURU
  35. tristate "Abit uGuru (rev 1 & 2)"
  36. depends on X86 && EXPERIMENTAL
  37. help
  38. If you say yes here you get support for the sensor part of the first
  39. and second revision of the Abit uGuru chip. The voltage and frequency
  40. control parts of the Abit uGuru are not supported. The Abit uGuru
  41. chip can be found on Abit uGuru featuring motherboards (most modern
  42. Abit motherboards from before end 2005). For more info and a list
  43. of which motherboards have which revision see
  44. Documentation/hwmon/abituguru
  45. This driver can also be built as a module. If so, the module
  46. will be called abituguru.
  47. config SENSORS_ABITUGURU3
  48. tristate "Abit uGuru (rev 3)"
  49. depends on X86 && EXPERIMENTAL
  50. help
  51. If you say yes here you get support for the sensor part of the
  52. third revision of the Abit uGuru chip. Only reading the sensors
  53. and their settings is supported. The third revision of the Abit
  54. uGuru chip can be found on recent Abit motherboards (since end
  55. 2005). For more info and a list of which motherboards have which
  56. revision see Documentation/hwmon/abituguru3
  57. This driver can also be built as a module. If so, the module
  58. will be called abituguru3.
  59. config SENSORS_AD7414
  60. tristate "Analog Devices AD7414"
  61. depends on I2C && EXPERIMENTAL
  62. help
  63. If you say yes here you get support for the Analog Devices
  64. AD7414 temperature monitoring chip.
  65. This driver can also be built as a module. If so, the module
  66. will be called ad7414.
  67. config SENSORS_AD7418
  68. tristate "Analog Devices AD7416, AD7417 and AD7418"
  69. depends on I2C && EXPERIMENTAL
  70. help
  71. If you say yes here you get support for the Analog Devices
  72. AD7416, AD7417 and AD7418 temperature monitoring chips.
  73. This driver can also be built as a module. If so, the module
  74. will be called ad7418.
  75. config SENSORS_ADCXX
  76. tristate "National Semiconductor ADCxxxSxxx"
  77. depends on SPI_MASTER && EXPERIMENTAL
  78. help
  79. If you say yes here you get support for the National Semiconductor
  80. ADC<bb><c>S<sss> chip family, where
  81. * bb is the resolution in number of bits (8, 10, 12)
  82. * c is the number of channels (1, 2, 4, 8)
  83. * sss is the maximum conversion speed (021 for 200 kSPS, 051 for 500
  84. kSPS and 101 for 1 MSPS)
  85. Examples : ADC081S101, ADC124S501, ...
  86. This driver can also be built as a module. If so, the module
  87. will be called adcxx.
  88. config SENSORS_ADM1021
  89. tristate "Analog Devices ADM1021 and compatibles"
  90. depends on I2C
  91. help
  92. If you say yes here you get support for Analog Devices ADM1021
  93. and ADM1023 sensor chips and clones: Maxim MAX1617 and MAX1617A,
  94. Genesys Logic GL523SM, National Semiconductor LM84, TI THMC10,
  95. and the XEON processor built-in sensor.
  96. This driver can also be built as a module. If so, the module
  97. will be called adm1021.
  98. config SENSORS_ADM1025
  99. tristate "Analog Devices ADM1025 and compatibles"
  100. depends on I2C
  101. select HWMON_VID
  102. help
  103. If you say yes here you get support for Analog Devices ADM1025
  104. and Philips NE1619 sensor chips.
  105. This driver can also be built as a module. If so, the module
  106. will be called adm1025.
  107. config SENSORS_ADM1026
  108. tristate "Analog Devices ADM1026 and compatibles"
  109. depends on I2C && EXPERIMENTAL
  110. select HWMON_VID
  111. help
  112. If you say yes here you get support for Analog Devices ADM1026
  113. sensor chip.
  114. This driver can also be built as a module. If so, the module
  115. will be called adm1026.
  116. config SENSORS_ADM1029
  117. tristate "Analog Devices ADM1029"
  118. depends on I2C && EXPERIMENTAL
  119. help
  120. If you say yes here you get support for Analog Devices ADM1029
  121. sensor chip.
  122. Very rare chip, please let us know you use it.
  123. This driver can also be built as a module. If so, the module
  124. will be called adm1029.
  125. config SENSORS_ADM1031
  126. tristate "Analog Devices ADM1031 and compatibles"
  127. depends on I2C && EXPERIMENTAL
  128. help
  129. If you say yes here you get support for Analog Devices ADM1031
  130. and ADM1030 sensor chips.
  131. This driver can also be built as a module. If so, the module
  132. will be called adm1031.
  133. config SENSORS_ADM9240
  134. tristate "Analog Devices ADM9240 and compatibles"
  135. depends on I2C
  136. select HWMON_VID
  137. help
  138. If you say yes here you get support for Analog Devices ADM9240,
  139. Dallas DS1780, National Semiconductor LM81 sensor chips.
  140. This driver can also be built as a module. If so, the module
  141. will be called adm9240.
  142. config SENSORS_ADT7462
  143. tristate "Analog Devices ADT7462"
  144. depends on I2C && EXPERIMENTAL
  145. help
  146. If you say yes here you get support for the Analog Devices
  147. ADT7462 temperature monitoring chips.
  148. This driver can also be built as a module. If so, the module
  149. will be called adt7462.
  150. config SENSORS_ADT7470
  151. tristate "Analog Devices ADT7470"
  152. depends on I2C && EXPERIMENTAL
  153. help
  154. If you say yes here you get support for the Analog Devices
  155. ADT7470 temperature monitoring chips.
  156. This driver can also be built as a module. If so, the module
  157. will be called adt7470.
  158. config SENSORS_ADT7473
  159. tristate "Analog Devices ADT7473 (DEPRECATED)"
  160. depends on I2C && EXPERIMENTAL
  161. select SENSORS_ADT7475
  162. help
  163. If you say yes here you get support for the Analog Devices
  164. ADT7473 temperature monitoring chips.
  165. This driver is deprecated, you should use the adt7475 driver
  166. instead.
  167. This driver can also be built as a module. If so, the module
  168. will be called adt7473.
  169. config SENSORS_ADT7475
  170. tristate "Analog Devices ADT7473, ADT7475, ADT7476 and ADT7490"
  171. depends on I2C && EXPERIMENTAL
  172. select HWMON_VID
  173. help
  174. If you say yes here you get support for the Analog Devices
  175. ADT7473, ADT7475, ADT7476 and ADT7490 hardware monitoring
  176. chips.
  177. This driver can also be build as a module. If so, the module
  178. will be called adt7475.
  179. config SENSORS_K8TEMP
  180. tristate "AMD Athlon64/FX or Opteron temperature sensor"
  181. depends on X86 && PCI && EXPERIMENTAL
  182. help
  183. If you say yes here you get support for the temperature
  184. sensor(s) inside your CPU. Supported is whole AMD K8
  185. microarchitecture. Please note that you will need at least
  186. lm-sensors 2.10.1 for proper userspace support.
  187. This driver can also be built as a module. If so, the module
  188. will be called k8temp.
  189. config SENSORS_AMS
  190. tristate "Apple Motion Sensor driver"
  191. depends on PPC_PMAC && !PPC64 && INPUT && ((ADB_PMU && I2C = y) || (ADB_PMU && !I2C) || I2C) && EXPERIMENTAL
  192. select INPUT_POLLDEV
  193. help
  194. Support for the motion sensor included in PowerBooks. Includes
  195. implementations for PMU and I2C.
  196. This driver can also be built as a module. If so, the module
  197. will be called ams.
  198. config SENSORS_AMS_PMU
  199. bool "PMU variant"
  200. depends on SENSORS_AMS && ADB_PMU
  201. default y
  202. help
  203. PMU variant of motion sensor, found in late 2005 PowerBooks.
  204. config SENSORS_AMS_I2C
  205. bool "I2C variant"
  206. depends on SENSORS_AMS && I2C
  207. default y
  208. help
  209. I2C variant of motion sensor, found in early 2005 PowerBooks and
  210. iBooks.
  211. config SENSORS_ASB100
  212. tristate "Asus ASB100 Bach"
  213. depends on X86 && I2C && EXPERIMENTAL
  214. select HWMON_VID
  215. help
  216. If you say yes here you get support for the ASB100 Bach sensor
  217. chip found on some Asus mainboards.
  218. This driver can also be built as a module. If so, the module
  219. will be called asb100.
  220. config SENSORS_ATXP1
  221. tristate "Attansic ATXP1 VID controller"
  222. depends on I2C && EXPERIMENTAL
  223. select HWMON_VID
  224. help
  225. If you say yes here you get support for the Attansic ATXP1 VID
  226. controller.
  227. If your board have such a chip, you are able to control your CPU
  228. core and other voltages.
  229. This driver can also be built as a module. If so, the module
  230. will be called atxp1.
  231. config SENSORS_DS1621
  232. tristate "Dallas Semiconductor DS1621 and DS1625"
  233. depends on I2C
  234. help
  235. If you say yes here you get support for Dallas Semiconductor
  236. DS1621 and DS1625 sensor chips.
  237. This driver can also be built as a module. If so, the module
  238. will be called ds1621.
  239. config SENSORS_I5K_AMB
  240. tristate "FB-DIMM AMB temperature sensor on Intel 5000 series chipsets"
  241. depends on PCI && EXPERIMENTAL
  242. help
  243. If you say yes here you get support for FB-DIMM AMB temperature
  244. monitoring chips on systems with the Intel 5000 series chipset.
  245. This driver can also be built as a module. If so, the module
  246. will be called i5k_amb.
  247. config SENSORS_F71805F
  248. tristate "Fintek F71805F/FG, F71806F/FG and F71872F/FG"
  249. depends on EXPERIMENTAL
  250. help
  251. If you say yes here you get support for hardware monitoring
  252. features of the Fintek F71805F/FG, F71806F/FG and F71872F/FG
  253. Super-I/O chips.
  254. This driver can also be built as a module. If so, the module
  255. will be called f71805f.
  256. config SENSORS_F71882FG
  257. tristate "Fintek F71858FG, F71862FG, F71882FG, F71889FG and F8000"
  258. depends on EXPERIMENTAL
  259. help
  260. If you say yes here you get support for hardware monitoring
  261. features of the Fintek F71858FG, F71862FG/71863FG, F71882FG/F71883FG,
  262. F71889FG and F8000 Super-I/O chips.
  263. This driver can also be built as a module. If so, the module
  264. will be called f71882fg.
  265. config SENSORS_F75375S
  266. tristate "Fintek F75375S/SP and F75373";
  267. depends on I2C && EXPERIMENTAL
  268. help
  269. If you say yes here you get support for hardware monitoring
  270. features of the Fintek F75375S/SP and F75373
  271. This driver can also be built as a module. If so, the module
  272. will be called f75375s.
  273. config SENSORS_FSCHMD
  274. tristate "Fujitsu Siemens Computers sensor chips"
  275. depends on X86 && I2C
  276. help
  277. If you say yes here you get support for the following Fujitsu
  278. Siemens Computers (FSC) sensor chips: Poseidon, Scylla, Hermes,
  279. Heimdall, Heracles, Hades and Syleus including support for the
  280. integrated watchdog.
  281. This is a merged driver for FSC sensor chips replacing the fscpos,
  282. fscscy and fscher drivers and adding support for several other FSC
  283. sensor chips.
  284. This driver can also be built as a module. If so, the module
  285. will be called fschmd.
  286. config SENSORS_G760A
  287. tristate "GMT G760A"
  288. depends on I2C
  289. help
  290. If you say yes here you get support for Global Mixed-mode
  291. Technology Inc G760A fan speed PWM controller chips.
  292. This driver can also be built as a module. If so, the module
  293. will be called g760a.
  294. config SENSORS_GL518SM
  295. tristate "Genesys Logic GL518SM"
  296. depends on I2C
  297. help
  298. If you say yes here you get support for Genesys Logic GL518SM
  299. sensor chips.
  300. This driver can also be built as a module. If so, the module
  301. will be called gl518sm.
  302. config SENSORS_GL520SM
  303. tristate "Genesys Logic GL520SM"
  304. depends on I2C
  305. select HWMON_VID
  306. help
  307. If you say yes here you get support for Genesys Logic GL520SM
  308. sensor chips.
  309. This driver can also be built as a module. If so, the module
  310. will be called gl520sm.
  311. config SENSORS_CORETEMP
  312. tristate "Intel Core/Core2/Atom temperature sensor"
  313. depends on X86 && EXPERIMENTAL
  314. help
  315. If you say yes here you get support for the temperature
  316. sensor inside your CPU. Most of the family 6 CPUs
  317. are supported. Check documentation/driver for details.
  318. config SENSORS_IBMAEM
  319. tristate "IBM Active Energy Manager temperature/power sensors and control"
  320. select IPMI_SI
  321. depends on IPMI_HANDLER
  322. help
  323. If you say yes here you get support for the temperature and
  324. power sensors and capping hardware in various IBM System X
  325. servers that support Active Energy Manager. This includes
  326. the x3350, x3550, x3650, x3655, x3755, x3850 M2, x3950 M2,
  327. and certain HC10/HS2x/LS2x/QS2x blades.
  328. This driver can also be built as a module. If so, the module
  329. will be called ibmaem.
  330. config SENSORS_IBMPEX
  331. tristate "IBM PowerExecutive temperature/power sensors"
  332. select IPMI_SI
  333. depends on IPMI_HANDLER
  334. help
  335. If you say yes here you get support for the temperature and
  336. power sensors in various IBM System X servers that support
  337. PowerExecutive. So far this includes the x3350, x3550, x3650,
  338. x3655, and x3755; the x3800, x3850, and x3950 models that have
  339. PCI Express; and some of the HS2x, LS2x, and QS2x blades.
  340. This driver can also be built as a module. If so, the module
  341. will be called ibmpex.
  342. config SENSORS_IT87
  343. tristate "ITE IT87xx and compatibles"
  344. select HWMON_VID
  345. help
  346. If you say yes here you get support for ITE IT8705F, IT8712F,
  347. IT8716F, IT8718F, IT8720F and IT8726F sensor chips, and the
  348. SiS960 clone.
  349. This driver can also be built as a module. If so, the module
  350. will be called it87.
  351. config SENSORS_LM63
  352. tristate "National Semiconductor LM63"
  353. depends on I2C
  354. help
  355. If you say yes here you get support for the National Semiconductor
  356. LM63 remote diode digital temperature sensor with integrated fan
  357. control. Such chips are found on the Tyan S4882 (Thunder K8QS Pro)
  358. motherboard, among others.
  359. This driver can also be built as a module. If so, the module
  360. will be called lm63.
  361. config SENSORS_LM70
  362. tristate "National Semiconductor LM70 / Texas Instruments TMP121"
  363. depends on SPI_MASTER && EXPERIMENTAL
  364. help
  365. If you say yes here you get support for the National Semiconductor
  366. LM70 and Texas Instruments TMP121/TMP123 digital temperature
  367. sensor chips.
  368. This driver can also be built as a module. If so, the module
  369. will be called lm70.
  370. config SENSORS_LM73
  371. tristate "National Semiconductor LM73"
  372. depends on I2C
  373. help
  374. If you say yes here you get support for National Semiconductor LM73
  375. sensor chips.
  376. This driver can also be built as a module. If so, the module
  377. will be called lm73.
  378. config SENSORS_LM75
  379. tristate "National Semiconductor LM75 and compatibles"
  380. depends on I2C
  381. help
  382. If you say yes here you get support for one common type of
  383. temperature sensor chip, with models including:
  384. - Dallas Semiconductor DS75 and DS1775
  385. - Maxim MAX6625 and MAX6626
  386. - Microchip MCP980x
  387. - National Semiconductor LM75
  388. - NXP's LM75A
  389. - ST Microelectronics STDS75
  390. - TelCom (now Microchip) TCN75
  391. - Texas Instruments TMP100, TMP101, TMP75, TMP175, TMP275
  392. This driver supports driver model based binding through board
  393. specific I2C device tables.
  394. It also supports the "legacy" style of driver binding. To use
  395. that with some chips which don't replicate LM75 quirks exactly,
  396. you may need the "force" module parameter.
  397. This driver can also be built as a module. If so, the module
  398. will be called lm75.
  399. config SENSORS_LM77
  400. tristate "National Semiconductor LM77"
  401. depends on I2C
  402. help
  403. If you say yes here you get support for National Semiconductor LM77
  404. sensor chips.
  405. This driver can also be built as a module. If so, the module
  406. will be called lm77.
  407. config SENSORS_LM78
  408. tristate "National Semiconductor LM78 and compatibles"
  409. depends on I2C
  410. select HWMON_VID
  411. help
  412. If you say yes here you get support for National Semiconductor LM78,
  413. LM78-J and LM79.
  414. This driver can also be built as a module. If so, the module
  415. will be called lm78.
  416. config SENSORS_LM80
  417. tristate "National Semiconductor LM80"
  418. depends on I2C && EXPERIMENTAL
  419. help
  420. If you say yes here you get support for National Semiconductor
  421. LM80 sensor chips.
  422. This driver can also be built as a module. If so, the module
  423. will be called lm80.
  424. config SENSORS_LM83
  425. tristate "National Semiconductor LM83 and compatibles"
  426. depends on I2C
  427. help
  428. If you say yes here you get support for National Semiconductor
  429. LM82 and LM83 sensor chips.
  430. This driver can also be built as a module. If so, the module
  431. will be called lm83.
  432. config SENSORS_LM85
  433. tristate "National Semiconductor LM85 and compatibles"
  434. depends on I2C && EXPERIMENTAL
  435. select HWMON_VID
  436. help
  437. If you say yes here you get support for National Semiconductor LM85
  438. sensor chips and clones: ADT7463, EMC6D100, EMC6D102 and ADM1027.
  439. This driver can also be built as a module. If so, the module
  440. will be called lm85.
  441. config SENSORS_LM87
  442. tristate "National Semiconductor LM87 and compatibles"
  443. depends on I2C
  444. select HWMON_VID
  445. help
  446. If you say yes here you get support for National Semiconductor LM87
  447. and Analog Devices ADM1024 sensor chips.
  448. This driver can also be built as a module. If so, the module
  449. will be called lm87.
  450. config SENSORS_LM90
  451. tristate "National Semiconductor LM90 and compatibles"
  452. depends on I2C
  453. help
  454. If you say yes here you get support for National Semiconductor LM90,
  455. LM86, LM89 and LM99, Analog Devices ADM1032 and ADT7461, and Maxim
  456. MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659,
  457. MAX6680, MAX6681 and MAX6692 sensor chips.
  458. This driver can also be built as a module. If so, the module
  459. will be called lm90.
  460. config SENSORS_LM92
  461. tristate "National Semiconductor LM92 and compatibles"
  462. depends on I2C
  463. help
  464. If you say yes here you get support for National Semiconductor LM92
  465. and Maxim MAX6635 sensor chips.
  466. This driver can also be built as a module. If so, the module
  467. will be called lm92.
  468. config SENSORS_LM93
  469. tristate "National Semiconductor LM93 and compatibles"
  470. depends on I2C
  471. select HWMON_VID
  472. help
  473. If you say yes here you get support for National Semiconductor LM93
  474. sensor chips.
  475. This driver can also be built as a module. If so, the module
  476. will be called lm93.
  477. config SENSORS_LTC4215
  478. tristate "Linear Technology LTC4215"
  479. depends on I2C && EXPERIMENTAL
  480. default n
  481. help
  482. If you say yes here you get support for Linear Technology LTC4215
  483. Hot Swap Controller I2C interface.
  484. This driver can also be built as a module. If so, the module will
  485. be called ltc4215.
  486. config SENSORS_LTC4245
  487. tristate "Linear Technology LTC4245"
  488. depends on I2C && EXPERIMENTAL
  489. default n
  490. help
  491. If you say yes here you get support for Linear Technology LTC4245
  492. Multiple Supply Hot Swap Controller I2C interface.
  493. This driver can also be built as a module. If so, the module will
  494. be called ltc4245.
  495. config SENSORS_LM95241
  496. tristate "National Semiconductor LM95241 sensor chip"
  497. depends on I2C
  498. help
  499. If you say yes here you get support for LM95241 sensor chip.
  500. This driver can also be built as a module. If so, the module
  501. will be called lm95241.
  502. config SENSORS_MAX1111
  503. tristate "Maxim MAX1111 Multichannel, Serial 8-bit ADC chip"
  504. depends on SPI_MASTER
  505. help
  506. Say y here to support Maxim's MAX1111 ADC chips.
  507. This driver can also be built as a module. If so, the module
  508. will be called max1111.
  509. config SENSORS_MAX1619
  510. tristate "Maxim MAX1619 sensor chip"
  511. depends on I2C
  512. help
  513. If you say yes here you get support for MAX1619 sensor chip.
  514. This driver can also be built as a module. If so, the module
  515. will be called max1619.
  516. config SENSORS_MAX6650
  517. tristate "Maxim MAX6650 sensor chip"
  518. depends on I2C && EXPERIMENTAL
  519. help
  520. If you say yes here you get support for the MAX6650 / MAX6651
  521. sensor chips.
  522. This driver can also be built as a module. If so, the module
  523. will be called max6650.
  524. config SENSORS_PC87360
  525. tristate "National Semiconductor PC87360 family"
  526. select HWMON_VID
  527. help
  528. If you say yes here you get access to the hardware monitoring
  529. functions of the National Semiconductor PC8736x Super-I/O chips.
  530. The PC87360, PC87363 and PC87364 only have fan monitoring and
  531. control. The PC87365 and PC87366 additionally have voltage and
  532. temperature monitoring.
  533. This driver can also be built as a module. If so, the module
  534. will be called pc87360.
  535. config SENSORS_PC87427
  536. tristate "National Semiconductor PC87427"
  537. depends on EXPERIMENTAL
  538. help
  539. If you say yes here you get access to the hardware monitoring
  540. functions of the National Semiconductor PC87427 Super-I/O chip.
  541. The chip has two distinct logical devices, one for fan speed
  542. monitoring and control, and one for voltage and temperature
  543. monitoring. Only fan speed monitoring is supported right now.
  544. This driver can also be built as a module. If so, the module
  545. will be called pc87427.
  546. config SENSORS_PCF8591
  547. tristate "Philips PCF8591 ADC/DAC"
  548. depends on I2C
  549. default n
  550. help
  551. If you say yes here you get support for Philips PCF8591 4-channel
  552. ADC, 1-channel DAC chips.
  553. This driver can also be built as a module. If so, the module
  554. will be called pcf8591.
  555. These devices are hard to detect and rarely found on mainstream
  556. hardware. If unsure, say N.
  557. config SENSORS_SHT15
  558. tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
  559. depends on GENERIC_GPIO
  560. help
  561. If you say yes here you get support for the Sensiron SHT10, SHT11,
  562. SHT15, SHT71, SHT75 humidity and temperature sensors.
  563. This driver can also be built as a module. If so, the module
  564. will be called sht15.
  565. config SENSORS_S3C
  566. tristate "S3C24XX/S3C64XX Inbuilt ADC"
  567. depends on ARCH_S3C2410
  568. help
  569. If you say yes here you get support for the on-board ADCs of
  570. the Samsung S3C24XX or S3C64XX series of SoC
  571. This driver can also be built as a module. If so, the module
  572. will be called s3c-hwmo.
  573. config SENSORS_S3C_RAW
  574. bool "Include raw channel attributes in sysfs"
  575. depends on SENSORS_S3C
  576. help
  577. Say Y here if you want to include raw copies of all the ADC
  578. channels in sysfs.
  579. config SENSORS_SIS5595
  580. tristate "Silicon Integrated Systems Corp. SiS5595"
  581. depends on PCI
  582. help
  583. If you say yes here you get support for the integrated sensors in
  584. SiS5595 South Bridges.
  585. This driver can also be built as a module. If so, the module
  586. will be called sis5595.
  587. config SENSORS_DME1737
  588. tristate "SMSC DME1737, SCH311x and compatibles"
  589. depends on I2C && EXPERIMENTAL
  590. select HWMON_VID
  591. help
  592. If you say yes here you get support for the hardware monitoring
  593. and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
  594. Asus A8000 Super-I/O chips.
  595. This driver can also be built as a module. If so, the module
  596. will be called dme1737.
  597. config SENSORS_SMSC47M1
  598. tristate "SMSC LPC47M10x and compatibles"
  599. help
  600. If you say yes here you get support for the integrated fan
  601. monitoring and control capabilities of the SMSC LPC47B27x,
  602. LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
  603. LPC47M192, LPC47M292 and LPC47M997 chips.
  604. The temperature and voltage sensor features of the LPC47M15x,
  605. LPC47M192, LPC47M292 and LPC47M997 are supported by another
  606. driver, select also "SMSC LPC47M192 and compatibles" below for
  607. those.
  608. This driver can also be built as a module. If so, the module
  609. will be called smsc47m1.
  610. config SENSORS_SMSC47M192
  611. tristate "SMSC LPC47M192 and compatibles"
  612. depends on I2C && EXPERIMENTAL
  613. select HWMON_VID
  614. help
  615. If you say yes here you get support for the temperature and
  616. voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
  617. and LPC47M997 chips.
  618. The fan monitoring and control capabilities of these chips
  619. are supported by another driver, select
  620. "SMSC LPC47M10x and compatibles" above. You need both drivers
  621. if you want fan control and voltage/temperature sensor support.
  622. This driver can also be built as a module. If so, the module
  623. will be called smsc47m192.
  624. config SENSORS_SMSC47B397
  625. tristate "SMSC LPC47B397-NC"
  626. depends on EXPERIMENTAL
  627. help
  628. If you say yes here you get support for the SMSC LPC47B397-NC
  629. sensor chip.
  630. This driver can also be built as a module. If so, the module
  631. will be called smsc47b397.
  632. config SENSORS_ADS7828
  633. tristate "Texas Instruments ADS7828"
  634. depends on I2C
  635. help
  636. If you say yes here you get support for Texas Instruments ADS7828
  637. 12-bit 8-channel ADC device.
  638. This driver can also be built as a module. If so, the module
  639. will be called ads7828.
  640. config SENSORS_THMC50
  641. tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
  642. depends on I2C && EXPERIMENTAL
  643. help
  644. If you say yes here you get support for Texas Instruments THMC50
  645. sensor chips and clones: the Analog Devices ADM1022.
  646. This driver can also be built as a module. If so, the module
  647. will be called thmc50.
  648. config SENSORS_TMP401
  649. tristate "Texas Instruments TMP401 and compatibles"
  650. depends on I2C && EXPERIMENTAL
  651. help
  652. If you say yes here you get support for Texas Instruments TMP401 and
  653. TMP411 temperature sensor chips.
  654. This driver can also be built as a module. If so, the module
  655. will be called tmp401.
  656. config SENSORS_TMP421
  657. tristate "Texas Instruments TMP421 and compatible"
  658. depends on I2C && EXPERIMENTAL
  659. help
  660. If you say yes here you get support for Texas Instruments TMP421,
  661. TMP422 and TMP423 temperature sensor chips.
  662. This driver can also be built as a module. If so, the module
  663. will be called tmp421.
  664. config SENSORS_VIA686A
  665. tristate "VIA686A"
  666. depends on PCI
  667. help
  668. If you say yes here you get support for the integrated sensors in
  669. Via 686A/B South Bridges.
  670. This driver can also be built as a module. If so, the module
  671. will be called via686a.
  672. config SENSORS_VT1211
  673. tristate "VIA VT1211"
  674. depends on EXPERIMENTAL
  675. select HWMON_VID
  676. help
  677. If you say yes here then you get support for hardware monitoring
  678. features of the VIA VT1211 Super-I/O chip.
  679. This driver can also be built as a module. If so, the module
  680. will be called vt1211.
  681. config SENSORS_VT8231
  682. tristate "VIA VT8231"
  683. depends on PCI
  684. select HWMON_VID
  685. help
  686. If you say yes here then you get support for the integrated sensors
  687. in the VIA VT8231 device.
  688. This driver can also be built as a module. If so, the module
  689. will be called vt8231.
  690. config SENSORS_W83781D
  691. tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
  692. depends on I2C
  693. select HWMON_VID
  694. help
  695. If you say yes here you get support for the Winbond W8378x series
  696. of sensor chips: the W83781D, W83782D and W83783S, and the similar
  697. Asus AS99127F.
  698. This driver can also be built as a module. If so, the module
  699. will be called w83781d.
  700. config SENSORS_W83791D
  701. tristate "Winbond W83791D"
  702. depends on I2C
  703. select HWMON_VID
  704. help
  705. If you say yes here you get support for the Winbond W83791D chip.
  706. This driver can also be built as a module. If so, the module
  707. will be called w83791d.
  708. config SENSORS_W83792D
  709. tristate "Winbond W83792D"
  710. depends on I2C && EXPERIMENTAL
  711. help
  712. If you say yes here you get support for the Winbond W83792D chip.
  713. This driver can also be built as a module. If so, the module
  714. will be called w83792d.
  715. config SENSORS_W83793
  716. tristate "Winbond W83793"
  717. depends on I2C && EXPERIMENTAL
  718. select HWMON_VID
  719. help
  720. If you say yes here you get support for the Winbond W83793
  721. hardware monitoring chip.
  722. This driver can also be built as a module. If so, the module
  723. will be called w83793.
  724. config SENSORS_W83L785TS
  725. tristate "Winbond W83L785TS-S"
  726. depends on I2C && EXPERIMENTAL
  727. help
  728. If you say yes here you get support for the Winbond W83L785TS-S
  729. sensor chip, which is used on the Asus A7N8X, among other
  730. motherboards.
  731. This driver can also be built as a module. If so, the module
  732. will be called w83l785ts.
  733. config SENSORS_W83L786NG
  734. tristate "Winbond W83L786NG, W83L786NR"
  735. depends on I2C && EXPERIMENTAL
  736. help
  737. If you say yes here you get support for the Winbond W83L786NG
  738. and W83L786NR sensor chips.
  739. This driver can also be built as a module. If so, the module
  740. will be called w83l786ng.
  741. config SENSORS_W83627HF
  742. tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
  743. select HWMON_VID
  744. help
  745. If you say yes here you get support for the Winbond W836X7 series
  746. of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
  747. W83697HF.
  748. This driver can also be built as a module. If so, the module
  749. will be called w83627hf.
  750. config SENSORS_W83627EHF
  751. tristate "Winbond W83627EHF/EHG/DHG, W83667HG"
  752. select HWMON_VID
  753. help
  754. If you say yes here you get support for the hardware
  755. monitoring functionality of the Winbond W83627EHF Super-I/O chip.
  756. This driver also supports the W83627EHG, which is the lead-free
  757. version of the W83627EHF, and the W83627DHG, which is a similar
  758. chip suited for specific Intel processors that use PECI such as
  759. the Core 2 Duo.
  760. This driver also supports the W83667HG chip.
  761. This driver can also be built as a module. If so, the module
  762. will be called w83627ehf.
  763. config SENSORS_WM831X
  764. tristate "WM831x PMICs"
  765. depends on MFD_WM831X
  766. help
  767. If you say yes here you get support for the hardware
  768. monitoring functionality of the Wolfson Microelectronics
  769. WM831x series of PMICs.
  770. This driver can also be built as a module. If so, the module
  771. will be called wm831x-hwmon.
  772. config SENSORS_WM8350
  773. tristate "Wolfson Microelectronics WM835x"
  774. depends on MFD_WM8350
  775. help
  776. If you say yes here you get support for the hardware
  777. monitoring features of the WM835x series of PMICs.
  778. This driver can also be built as a module. If so, the module
  779. will be called wm8350-hwmon.
  780. config SENSORS_ULTRA45
  781. tristate "Sun Ultra45 PIC16F747"
  782. depends on SPARC64
  783. help
  784. This driver provides support for the Ultra45 workstation environmental
  785. sensors.
  786. config SENSORS_HDAPS
  787. tristate "IBM Hard Drive Active Protection System (hdaps)"
  788. depends on INPUT && X86
  789. select INPUT_POLLDEV
  790. default n
  791. help
  792. This driver provides support for the IBM Hard Drive Active Protection
  793. System (hdaps), which provides an accelerometer and other misc. data.
  794. ThinkPads starting with the R50, T41, and X40 are supported. The
  795. accelerometer data is readable via sysfs.
  796. This driver also provides an absolute input class device, allowing
  797. the laptop to act as a pinball machine-esque joystick.
  798. If your ThinkPad is not recognized by the driver, please update to latest
  799. BIOS. This is especially the case for some R52 ThinkPads.
  800. Say Y here if you have an applicable laptop and want to experience
  801. the awesome power of hdaps.
  802. config SENSORS_LIS3_SPI
  803. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (SPI)"
  804. depends on !ACPI && SPI_MASTER && INPUT
  805. select INPUT_POLLDEV
  806. default n
  807. help
  808. This driver provides support for the LIS3LV02Dx accelerometer connected
  809. via SPI. The accelerometer data is readable via
  810. /sys/devices/platform/lis3lv02d.
  811. This driver also provides an absolute input class device, allowing
  812. the laptop to act as a pinball machine-esque joystick.
  813. This driver can also be built as modules. If so, the core module
  814. will be called lis3lv02d and a specific module for the SPI transport
  815. is called lis3lv02d_spi.
  816. config SENSORS_APPLESMC
  817. tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
  818. depends on INPUT && X86
  819. select NEW_LEDS
  820. select LEDS_CLASS
  821. select INPUT_POLLDEV
  822. default n
  823. help
  824. This driver provides support for the Apple System Management
  825. Controller, which provides an accelerometer (Apple Sudden Motion
  826. Sensor), light sensors, temperature sensors, keyboard backlight
  827. control and fan control.
  828. Only Intel-based Apple's computers are supported (MacBook Pro,
  829. MacBook, MacMini).
  830. Data from the different sensors, keyboard backlight control and fan
  831. control are accessible via sysfs.
  832. This driver also provides an absolute input class device, allowing
  833. the laptop to act as a pinball machine-esque joystick.
  834. Say Y here if you have an applicable laptop and want to experience
  835. the awesome power of applesmc.
  836. config SENSORS_MC13783_ADC
  837. tristate "Freescale MC13783 ADC"
  838. depends on MFD_MC13783
  839. help
  840. Support for the A/D converter on MC13783 PMIC.
  841. if ACPI
  842. comment "ACPI drivers"
  843. config SENSORS_ATK0110
  844. tristate "ASUS ATK0110"
  845. depends on X86 && EXPERIMENTAL
  846. help
  847. If you say yes here you get support for the ACPI hardware
  848. monitoring interface found in many ASUS motherboards. This
  849. driver will provide readings of fans, voltages and temperatures
  850. through the system firmware.
  851. This driver can also be built as a module. If so, the module
  852. will be called asus_atk0110.
  853. config SENSORS_LIS3LV02D
  854. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer"
  855. depends on INPUT
  856. select INPUT_POLLDEV
  857. select NEW_LEDS
  858. select LEDS_CLASS
  859. default n
  860. help
  861. This driver provides support for the LIS3LV02Dx accelerometer. In
  862. particular, it can be found in a number of HP laptops, which have the
  863. "Mobile Data Protection System 3D" or "3D DriveGuard" feature. On such
  864. systems the driver should load automatically (via ACPI). The
  865. accelerometer might also be found in other systems, connected via SPI
  866. or I2C. The accelerometer data is readable via
  867. /sys/devices/platform/lis3lv02d.
  868. This driver also provides an absolute input class device, allowing
  869. the laptop to act as a pinball machine-esque joystick. On HP laptops,
  870. if the led infrastructure is activated, support for a led indicating
  871. disk protection will be provided as hp:red:hddprotection.
  872. This driver can also be built as modules. If so, the core module
  873. will be called lis3lv02d and a specific module for HP laptops will be
  874. called hp_accel.
  875. Say Y here if you have an applicable laptop and want to experience
  876. the awesome power of lis3lv02d.
  877. endif # ACPI
  878. endif # HWMON