Kconfig 35 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129
  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_K10TEMP
  190. tristate "AMD Phenom/Sempron/Turion/Opteron temperature sensor"
  191. depends on X86 && PCI
  192. help
  193. If you say yes here you get support for the temperature
  194. sensor(s) inside your CPU. Supported are later revisions of
  195. the AMD Family 10h and all revisions of the AMD Family 11h
  196. microarchitectures.
  197. This driver can also be built as a module. If so, the module
  198. will be called k10temp.
  199. config SENSORS_AMS
  200. tristate "Apple Motion Sensor driver"
  201. depends on PPC_PMAC && !PPC64 && INPUT && ((ADB_PMU && I2C = y) || (ADB_PMU && !I2C) || I2C) && EXPERIMENTAL
  202. select INPUT_POLLDEV
  203. help
  204. Support for the motion sensor included in PowerBooks. Includes
  205. implementations for PMU and I2C.
  206. This driver can also be built as a module. If so, the module
  207. will be called ams.
  208. config SENSORS_AMS_PMU
  209. bool "PMU variant"
  210. depends on SENSORS_AMS && ADB_PMU
  211. default y
  212. help
  213. PMU variant of motion sensor, found in late 2005 PowerBooks.
  214. config SENSORS_AMS_I2C
  215. bool "I2C variant"
  216. depends on SENSORS_AMS && I2C
  217. default y
  218. help
  219. I2C variant of motion sensor, found in early 2005 PowerBooks and
  220. iBooks.
  221. config SENSORS_ASB100
  222. tristate "Asus ASB100 Bach"
  223. depends on X86 && I2C && EXPERIMENTAL
  224. select HWMON_VID
  225. help
  226. If you say yes here you get support for the ASB100 Bach sensor
  227. chip found on some Asus mainboards.
  228. This driver can also be built as a module. If so, the module
  229. will be called asb100.
  230. config SENSORS_ATXP1
  231. tristate "Attansic ATXP1 VID controller"
  232. depends on I2C && EXPERIMENTAL
  233. select HWMON_VID
  234. help
  235. If you say yes here you get support for the Attansic ATXP1 VID
  236. controller.
  237. If your board have such a chip, you are able to control your CPU
  238. core and other voltages.
  239. This driver can also be built as a module. If so, the module
  240. will be called atxp1.
  241. config SENSORS_DS1621
  242. tristate "Dallas Semiconductor DS1621 and DS1625"
  243. depends on I2C
  244. help
  245. If you say yes here you get support for Dallas Semiconductor
  246. DS1621 and DS1625 sensor chips.
  247. This driver can also be built as a module. If so, the module
  248. will be called ds1621.
  249. config SENSORS_I5K_AMB
  250. tristate "FB-DIMM AMB temperature sensor on Intel 5000 series chipsets"
  251. depends on PCI && EXPERIMENTAL
  252. help
  253. If you say yes here you get support for FB-DIMM AMB temperature
  254. monitoring chips on systems with the Intel 5000 series chipset.
  255. This driver can also be built as a module. If so, the module
  256. will be called i5k_amb.
  257. config SENSORS_F71805F
  258. tristate "Fintek F71805F/FG, F71806F/FG and F71872F/FG"
  259. depends on EXPERIMENTAL
  260. help
  261. If you say yes here you get support for hardware monitoring
  262. features of the Fintek F71805F/FG, F71806F/FG and F71872F/FG
  263. Super-I/O chips.
  264. This driver can also be built as a module. If so, the module
  265. will be called f71805f.
  266. config SENSORS_F71882FG
  267. tristate "Fintek F71858FG, F71862FG, F71882FG, F71889FG and F8000"
  268. depends on EXPERIMENTAL
  269. help
  270. If you say yes here you get support for hardware monitoring
  271. features of the Fintek F71858FG, F71862FG/71863FG, F71882FG/F71883FG,
  272. F71889FG and F8000 Super-I/O chips.
  273. This driver can also be built as a module. If so, the module
  274. will be called f71882fg.
  275. config SENSORS_F75375S
  276. tristate "Fintek F75375S/SP and F75373";
  277. depends on I2C && EXPERIMENTAL
  278. help
  279. If you say yes here you get support for hardware monitoring
  280. features of the Fintek F75375S/SP and F75373
  281. This driver can also be built as a module. If so, the module
  282. will be called f75375s.
  283. config SENSORS_FSCHMD
  284. tristate "Fujitsu Siemens Computers sensor chips"
  285. depends on X86 && I2C
  286. help
  287. If you say yes here you get support for the following Fujitsu
  288. Siemens Computers (FSC) sensor chips: Poseidon, Scylla, Hermes,
  289. Heimdall, Heracles, Hades and Syleus including support for the
  290. integrated watchdog.
  291. This is a merged driver for FSC sensor chips replacing the fscpos,
  292. fscscy and fscher drivers and adding support for several other FSC
  293. sensor chips.
  294. This driver can also be built as a module. If so, the module
  295. will be called fschmd.
  296. config SENSORS_G760A
  297. tristate "GMT G760A"
  298. depends on I2C
  299. help
  300. If you say yes here you get support for Global Mixed-mode
  301. Technology Inc G760A fan speed PWM controller chips.
  302. This driver can also be built as a module. If so, the module
  303. will be called g760a.
  304. config SENSORS_GL518SM
  305. tristate "Genesys Logic GL518SM"
  306. depends on I2C
  307. help
  308. If you say yes here you get support for Genesys Logic GL518SM
  309. sensor chips.
  310. This driver can also be built as a module. If so, the module
  311. will be called gl518sm.
  312. config SENSORS_GL520SM
  313. tristate "Genesys Logic GL520SM"
  314. depends on I2C
  315. select HWMON_VID
  316. help
  317. If you say yes here you get support for Genesys Logic GL520SM
  318. sensor chips.
  319. This driver can also be built as a module. If so, the module
  320. will be called gl520sm.
  321. config SENSORS_CORETEMP
  322. tristate "Intel Core/Core2/Atom temperature sensor"
  323. depends on X86 && PCI && EXPERIMENTAL
  324. help
  325. If you say yes here you get support for the temperature
  326. sensor inside your CPU. Most of the family 6 CPUs
  327. are supported. Check documentation/driver for details.
  328. config SENSORS_IBMAEM
  329. tristate "IBM Active Energy Manager temperature/power sensors and control"
  330. select IPMI_SI
  331. depends on IPMI_HANDLER
  332. help
  333. If you say yes here you get support for the temperature and
  334. power sensors and capping hardware in various IBM System X
  335. servers that support Active Energy Manager. This includes
  336. the x3350, x3550, x3650, x3655, x3755, x3850 M2, x3950 M2,
  337. and certain HC10/HS2x/LS2x/QS2x blades.
  338. This driver can also be built as a module. If so, the module
  339. will be called ibmaem.
  340. config SENSORS_IBMPEX
  341. tristate "IBM PowerExecutive temperature/power sensors"
  342. select IPMI_SI
  343. depends on IPMI_HANDLER
  344. help
  345. If you say yes here you get support for the temperature and
  346. power sensors in various IBM System X servers that support
  347. PowerExecutive. So far this includes the x3350, x3550, x3650,
  348. x3655, and x3755; the x3800, x3850, and x3950 models that have
  349. PCI Express; and some of the HS2x, LS2x, and QS2x blades.
  350. This driver can also be built as a module. If so, the module
  351. will be called ibmpex.
  352. config SENSORS_IT87
  353. tristate "ITE IT87xx and compatibles"
  354. select HWMON_VID
  355. help
  356. If you say yes here you get support for ITE IT8705F, IT8712F,
  357. IT8716F, IT8718F, IT8720F and IT8726F sensor chips, and the
  358. SiS960 clone.
  359. This driver can also be built as a module. If so, the module
  360. will be called it87.
  361. config SENSORS_LM63
  362. tristate "National Semiconductor LM63"
  363. depends on I2C
  364. help
  365. If you say yes here you get support for the National Semiconductor
  366. LM63 remote diode digital temperature sensor with integrated fan
  367. control. Such chips are found on the Tyan S4882 (Thunder K8QS Pro)
  368. motherboard, among others.
  369. This driver can also be built as a module. If so, the module
  370. will be called lm63.
  371. config SENSORS_LM70
  372. tristate "National Semiconductor LM70 / Texas Instruments TMP121"
  373. depends on SPI_MASTER && EXPERIMENTAL
  374. help
  375. If you say yes here you get support for the National Semiconductor
  376. LM70 and Texas Instruments TMP121/TMP123 digital temperature
  377. sensor chips.
  378. This driver can also be built as a module. If so, the module
  379. will be called lm70.
  380. config SENSORS_LM73
  381. tristate "National Semiconductor LM73"
  382. depends on I2C
  383. help
  384. If you say yes here you get support for National Semiconductor LM73
  385. sensor chips.
  386. This driver can also be built as a module. If so, the module
  387. will be called lm73.
  388. config SENSORS_LM75
  389. tristate "National Semiconductor LM75 and compatibles"
  390. depends on I2C
  391. help
  392. If you say yes here you get support for one common type of
  393. temperature sensor chip, with models including:
  394. - Dallas Semiconductor DS75 and DS1775
  395. - Maxim MAX6625 and MAX6626
  396. - Microchip MCP980x
  397. - National Semiconductor LM75
  398. - NXP's LM75A
  399. - ST Microelectronics STDS75
  400. - TelCom (now Microchip) TCN75
  401. - Texas Instruments TMP100, TMP101, TMP75, TMP175, TMP275
  402. This driver supports driver model based binding through board
  403. specific I2C device tables.
  404. It also supports the "legacy" style of driver binding. To use
  405. that with some chips which don't replicate LM75 quirks exactly,
  406. you may need the "force" module parameter.
  407. This driver can also be built as a module. If so, the module
  408. will be called lm75.
  409. config SENSORS_LM77
  410. tristate "National Semiconductor LM77"
  411. depends on I2C
  412. help
  413. If you say yes here you get support for National Semiconductor LM77
  414. sensor chips.
  415. This driver can also be built as a module. If so, the module
  416. will be called lm77.
  417. config SENSORS_LM78
  418. tristate "National Semiconductor LM78 and compatibles"
  419. depends on I2C
  420. select HWMON_VID
  421. help
  422. If you say yes here you get support for National Semiconductor LM78,
  423. LM78-J and LM79.
  424. This driver can also be built as a module. If so, the module
  425. will be called lm78.
  426. config SENSORS_LM80
  427. tristate "National Semiconductor LM80"
  428. depends on I2C && EXPERIMENTAL
  429. help
  430. If you say yes here you get support for National Semiconductor
  431. LM80 sensor chips.
  432. This driver can also be built as a module. If so, the module
  433. will be called lm80.
  434. config SENSORS_LM83
  435. tristate "National Semiconductor LM83 and compatibles"
  436. depends on I2C
  437. help
  438. If you say yes here you get support for National Semiconductor
  439. LM82 and LM83 sensor chips.
  440. This driver can also be built as a module. If so, the module
  441. will be called lm83.
  442. config SENSORS_LM85
  443. tristate "National Semiconductor LM85 and compatibles"
  444. depends on I2C && EXPERIMENTAL
  445. select HWMON_VID
  446. help
  447. If you say yes here you get support for National Semiconductor LM85
  448. sensor chips and clones: ADT7463, EMC6D100, EMC6D102 and ADM1027.
  449. This driver can also be built as a module. If so, the module
  450. will be called lm85.
  451. config SENSORS_LM87
  452. tristate "National Semiconductor LM87 and compatibles"
  453. depends on I2C
  454. select HWMON_VID
  455. help
  456. If you say yes here you get support for National Semiconductor LM87
  457. and Analog Devices ADM1024 sensor chips.
  458. This driver can also be built as a module. If so, the module
  459. will be called lm87.
  460. config SENSORS_LM90
  461. tristate "National Semiconductor LM90 and compatibles"
  462. depends on I2C
  463. help
  464. If you say yes here you get support for National Semiconductor LM90,
  465. LM86, LM89 and LM99, Analog Devices ADM1032 and ADT7461, Maxim
  466. MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659,
  467. MAX6680, MAX6681 and MAX6692, and Winbond/Nuvoton W83L771AWG/ASG
  468. sensor chips.
  469. This driver can also be built as a module. If so, the module
  470. will be called lm90.
  471. config SENSORS_LM92
  472. tristate "National Semiconductor LM92 and compatibles"
  473. depends on I2C
  474. help
  475. If you say yes here you get support for National Semiconductor LM92
  476. and Maxim MAX6635 sensor chips.
  477. This driver can also be built as a module. If so, the module
  478. will be called lm92.
  479. config SENSORS_LM93
  480. tristate "National Semiconductor LM93 and compatibles"
  481. depends on I2C
  482. select HWMON_VID
  483. help
  484. If you say yes here you get support for National Semiconductor LM93
  485. sensor chips.
  486. This driver can also be built as a module. If so, the module
  487. will be called lm93.
  488. config SENSORS_LTC4215
  489. tristate "Linear Technology LTC4215"
  490. depends on I2C && EXPERIMENTAL
  491. default n
  492. help
  493. If you say yes here you get support for Linear Technology LTC4215
  494. Hot Swap Controller I2C interface.
  495. This driver can also be built as a module. If so, the module will
  496. be called ltc4215.
  497. config SENSORS_LTC4245
  498. tristate "Linear Technology LTC4245"
  499. depends on I2C && EXPERIMENTAL
  500. default n
  501. help
  502. If you say yes here you get support for Linear Technology LTC4245
  503. Multiple Supply Hot Swap Controller I2C interface.
  504. This driver can also be built as a module. If so, the module will
  505. be called ltc4245.
  506. config SENSORS_LM95241
  507. tristate "National Semiconductor LM95241 sensor chip"
  508. depends on I2C
  509. help
  510. If you say yes here you get support for LM95241 sensor chip.
  511. This driver can also be built as a module. If so, the module
  512. will be called lm95241.
  513. config SENSORS_MAX1111
  514. tristate "Maxim MAX1111 Multichannel, Serial 8-bit ADC chip"
  515. depends on SPI_MASTER
  516. help
  517. Say y here to support Maxim's MAX1111 ADC chips.
  518. This driver can also be built as a module. If so, the module
  519. will be called max1111.
  520. config SENSORS_MAX1619
  521. tristate "Maxim MAX1619 sensor chip"
  522. depends on I2C
  523. help
  524. If you say yes here you get support for MAX1619 sensor chip.
  525. This driver can also be built as a module. If so, the module
  526. will be called max1619.
  527. config SENSORS_MAX6650
  528. tristate "Maxim MAX6650 sensor chip"
  529. depends on I2C && EXPERIMENTAL
  530. help
  531. If you say yes here you get support for the MAX6650 / MAX6651
  532. sensor chips.
  533. This driver can also be built as a module. If so, the module
  534. will be called max6650.
  535. config SENSORS_PC87360
  536. tristate "National Semiconductor PC87360 family"
  537. select HWMON_VID
  538. help
  539. If you say yes here you get access to the hardware monitoring
  540. functions of the National Semiconductor PC8736x Super-I/O chips.
  541. The PC87360, PC87363 and PC87364 only have fan monitoring and
  542. control. The PC87365 and PC87366 additionally have voltage and
  543. temperature monitoring.
  544. This driver can also be built as a module. If so, the module
  545. will be called pc87360.
  546. config SENSORS_PC87427
  547. tristate "National Semiconductor PC87427"
  548. depends on EXPERIMENTAL
  549. help
  550. If you say yes here you get access to the hardware monitoring
  551. functions of the National Semiconductor PC87427 Super-I/O chip.
  552. The chip has two distinct logical devices, one for fan speed
  553. monitoring and control, and one for voltage and temperature
  554. monitoring. Only fan speed monitoring is supported right now.
  555. This driver can also be built as a module. If so, the module
  556. will be called pc87427.
  557. config SENSORS_PCF8591
  558. tristate "Philips PCF8591 ADC/DAC"
  559. depends on I2C
  560. default n
  561. help
  562. If you say yes here you get support for Philips PCF8591 4-channel
  563. ADC, 1-channel DAC chips.
  564. This driver can also be built as a module. If so, the module
  565. will be called pcf8591.
  566. These devices are hard to detect and rarely found on mainstream
  567. hardware. If unsure, say N.
  568. config SENSORS_SHT15
  569. tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
  570. depends on GENERIC_GPIO
  571. help
  572. If you say yes here you get support for the Sensiron SHT10, SHT11,
  573. SHT15, SHT71, SHT75 humidity and temperature sensors.
  574. This driver can also be built as a module. If so, the module
  575. will be called sht15.
  576. config SENSORS_S3C
  577. tristate "S3C24XX/S3C64XX Inbuilt ADC"
  578. depends on ARCH_S3C2410
  579. help
  580. If you say yes here you get support for the on-board ADCs of
  581. the Samsung S3C24XX or S3C64XX series of SoC
  582. This driver can also be built as a module. If so, the module
  583. will be called s3c-hwmo.
  584. config SENSORS_S3C_RAW
  585. bool "Include raw channel attributes in sysfs"
  586. depends on SENSORS_S3C
  587. help
  588. Say Y here if you want to include raw copies of all the ADC
  589. channels in sysfs.
  590. config SENSORS_SIS5595
  591. tristate "Silicon Integrated Systems Corp. SiS5595"
  592. depends on PCI
  593. help
  594. If you say yes here you get support for the integrated sensors in
  595. SiS5595 South Bridges.
  596. This driver can also be built as a module. If so, the module
  597. will be called sis5595.
  598. config SENSORS_DME1737
  599. tristate "SMSC DME1737, SCH311x and compatibles"
  600. depends on I2C && EXPERIMENTAL
  601. select HWMON_VID
  602. help
  603. If you say yes here you get support for the hardware monitoring
  604. and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
  605. Asus A8000 Super-I/O chips.
  606. This driver can also be built as a module. If so, the module
  607. will be called dme1737.
  608. config SENSORS_SMSC47M1
  609. tristate "SMSC LPC47M10x and compatibles"
  610. help
  611. If you say yes here you get support for the integrated fan
  612. monitoring and control capabilities of the SMSC LPC47B27x,
  613. LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
  614. LPC47M192, LPC47M292 and LPC47M997 chips.
  615. The temperature and voltage sensor features of the LPC47M15x,
  616. LPC47M192, LPC47M292 and LPC47M997 are supported by another
  617. driver, select also "SMSC LPC47M192 and compatibles" below for
  618. those.
  619. This driver can also be built as a module. If so, the module
  620. will be called smsc47m1.
  621. config SENSORS_SMSC47M192
  622. tristate "SMSC LPC47M192 and compatibles"
  623. depends on I2C && EXPERIMENTAL
  624. select HWMON_VID
  625. help
  626. If you say yes here you get support for the temperature and
  627. voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
  628. and LPC47M997 chips.
  629. The fan monitoring and control capabilities of these chips
  630. are supported by another driver, select
  631. "SMSC LPC47M10x and compatibles" above. You need both drivers
  632. if you want fan control and voltage/temperature sensor support.
  633. This driver can also be built as a module. If so, the module
  634. will be called smsc47m192.
  635. config SENSORS_SMSC47B397
  636. tristate "SMSC LPC47B397-NC"
  637. depends on EXPERIMENTAL
  638. help
  639. If you say yes here you get support for the SMSC LPC47B397-NC
  640. sensor chip.
  641. This driver can also be built as a module. If so, the module
  642. will be called smsc47b397.
  643. config SENSORS_ADS7828
  644. tristate "Texas Instruments ADS7828"
  645. depends on I2C
  646. help
  647. If you say yes here you get support for Texas Instruments ADS7828
  648. 12-bit 8-channel ADC device.
  649. This driver can also be built as a module. If so, the module
  650. will be called ads7828.
  651. config SENSORS_AMC6821
  652. tristate "Texas Instruments AMC6821"
  653. depends on I2C && EXPERIMENTAL
  654. help
  655. If you say yes here you get support for the Texas Instruments
  656. AMC6821 hardware monitoring chips.
  657. This driver can also be build as a module. If so, the module
  658. will be called amc6821.
  659. config SENSORS_THMC50
  660. tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
  661. depends on I2C && EXPERIMENTAL
  662. help
  663. If you say yes here you get support for Texas Instruments THMC50
  664. sensor chips and clones: the Analog Devices ADM1022.
  665. This driver can also be built as a module. If so, the module
  666. will be called thmc50.
  667. config SENSORS_TMP401
  668. tristate "Texas Instruments TMP401 and compatibles"
  669. depends on I2C && EXPERIMENTAL
  670. help
  671. If you say yes here you get support for Texas Instruments TMP401 and
  672. TMP411 temperature sensor chips.
  673. This driver can also be built as a module. If so, the module
  674. will be called tmp401.
  675. config SENSORS_TMP421
  676. tristate "Texas Instruments TMP421 and compatible"
  677. depends on I2C && EXPERIMENTAL
  678. help
  679. If you say yes here you get support for Texas Instruments TMP421,
  680. TMP422 and TMP423 temperature sensor chips.
  681. This driver can also be built as a module. If so, the module
  682. will be called tmp421.
  683. config SENSORS_VIA_CPUTEMP
  684. tristate "VIA CPU temperature sensor"
  685. depends on X86
  686. help
  687. If you say yes here you get support for the temperature
  688. sensor inside your CPU. Supported are all known variants of
  689. the VIA C7 and Nano.
  690. config SENSORS_VIA686A
  691. tristate "VIA686A"
  692. depends on PCI
  693. help
  694. If you say yes here you get support for the integrated sensors in
  695. Via 686A/B South Bridges.
  696. This driver can also be built as a module. If so, the module
  697. will be called via686a.
  698. config SENSORS_VT1211
  699. tristate "VIA VT1211"
  700. depends on EXPERIMENTAL
  701. select HWMON_VID
  702. help
  703. If you say yes here then you get support for hardware monitoring
  704. features of the VIA VT1211 Super-I/O chip.
  705. This driver can also be built as a module. If so, the module
  706. will be called vt1211.
  707. config SENSORS_VT8231
  708. tristate "VIA VT8231"
  709. depends on PCI
  710. select HWMON_VID
  711. help
  712. If you say yes here then you get support for the integrated sensors
  713. in the VIA VT8231 device.
  714. This driver can also be built as a module. If so, the module
  715. will be called vt8231.
  716. config SENSORS_W83781D
  717. tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
  718. depends on I2C
  719. select HWMON_VID
  720. help
  721. If you say yes here you get support for the Winbond W8378x series
  722. of sensor chips: the W83781D, W83782D and W83783S, and the similar
  723. Asus AS99127F.
  724. This driver can also be built as a module. If so, the module
  725. will be called w83781d.
  726. config SENSORS_W83791D
  727. tristate "Winbond W83791D"
  728. depends on I2C
  729. select HWMON_VID
  730. help
  731. If you say yes here you get support for the Winbond W83791D chip.
  732. This driver can also be built as a module. If so, the module
  733. will be called w83791d.
  734. config SENSORS_W83792D
  735. tristate "Winbond W83792D"
  736. depends on I2C && EXPERIMENTAL
  737. help
  738. If you say yes here you get support for the Winbond W83792D chip.
  739. This driver can also be built as a module. If so, the module
  740. will be called w83792d.
  741. config SENSORS_W83793
  742. tristate "Winbond W83793"
  743. depends on I2C && EXPERIMENTAL
  744. select HWMON_VID
  745. help
  746. If you say yes here you get support for the Winbond W83793
  747. hardware monitoring chip, including support for the integrated
  748. watchdog.
  749. This driver can also be built as a module. If so, the module
  750. will be called w83793.
  751. config SENSORS_W83L785TS
  752. tristate "Winbond W83L785TS-S"
  753. depends on I2C && EXPERIMENTAL
  754. help
  755. If you say yes here you get support for the Winbond W83L785TS-S
  756. sensor chip, which is used on the Asus A7N8X, among other
  757. motherboards.
  758. This driver can also be built as a module. If so, the module
  759. will be called w83l785ts.
  760. config SENSORS_W83L786NG
  761. tristate "Winbond W83L786NG, W83L786NR"
  762. depends on I2C && EXPERIMENTAL
  763. help
  764. If you say yes here you get support for the Winbond W83L786NG
  765. and W83L786NR sensor chips.
  766. This driver can also be built as a module. If so, the module
  767. will be called w83l786ng.
  768. config SENSORS_W83627HF
  769. tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
  770. select HWMON_VID
  771. help
  772. If you say yes here you get support for the Winbond W836X7 series
  773. of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
  774. W83697HF.
  775. This driver can also be built as a module. If so, the module
  776. will be called w83627hf.
  777. config SENSORS_W83627EHF
  778. tristate "Winbond W83627EHF/EHG/DHG, W83667HG"
  779. select HWMON_VID
  780. help
  781. If you say yes here you get support for the hardware
  782. monitoring functionality of the Winbond W83627EHF Super-I/O chip.
  783. This driver also supports the W83627EHG, which is the lead-free
  784. version of the W83627EHF, and the W83627DHG, which is a similar
  785. chip suited for specific Intel processors that use PECI such as
  786. the Core 2 Duo.
  787. This driver also supports the W83667HG chip.
  788. This driver can also be built as a module. If so, the module
  789. will be called w83627ehf.
  790. config SENSORS_WM831X
  791. tristate "WM831x PMICs"
  792. depends on MFD_WM831X
  793. help
  794. If you say yes here you get support for the hardware
  795. monitoring functionality of the Wolfson Microelectronics
  796. WM831x series of PMICs.
  797. This driver can also be built as a module. If so, the module
  798. will be called wm831x-hwmon.
  799. config SENSORS_WM8350
  800. tristate "Wolfson Microelectronics WM835x"
  801. depends on MFD_WM8350
  802. help
  803. If you say yes here you get support for the hardware
  804. monitoring features of the WM835x series of PMICs.
  805. This driver can also be built as a module. If so, the module
  806. will be called wm8350-hwmon.
  807. config SENSORS_ULTRA45
  808. tristate "Sun Ultra45 PIC16F747"
  809. depends on SPARC64
  810. help
  811. This driver provides support for the Ultra45 workstation environmental
  812. sensors.
  813. config SENSORS_HDAPS
  814. tristate "IBM Hard Drive Active Protection System (hdaps)"
  815. depends on INPUT && X86
  816. select INPUT_POLLDEV
  817. default n
  818. help
  819. This driver provides support for the IBM Hard Drive Active Protection
  820. System (hdaps), which provides an accelerometer and other misc. data.
  821. ThinkPads starting with the R50, T41, and X40 are supported. The
  822. accelerometer data is readable via sysfs.
  823. This driver also provides an absolute input class device, allowing
  824. the laptop to act as a pinball machine-esque joystick.
  825. If your ThinkPad is not recognized by the driver, please update to latest
  826. BIOS. This is especially the case for some R52 ThinkPads.
  827. Say Y here if you have an applicable laptop and want to experience
  828. the awesome power of hdaps.
  829. config SENSORS_LIS3_SPI
  830. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (SPI)"
  831. depends on !ACPI && SPI_MASTER && INPUT
  832. select INPUT_POLLDEV
  833. default n
  834. help
  835. This driver provides support for the LIS3LV02Dx accelerometer connected
  836. via SPI. The accelerometer data is readable via
  837. /sys/devices/platform/lis3lv02d.
  838. This driver also provides an absolute input class device, allowing
  839. the laptop to act as a pinball machine-esque joystick.
  840. This driver can also be built as modules. If so, the core module
  841. will be called lis3lv02d and a specific module for the SPI transport
  842. is called lis3lv02d_spi.
  843. config SENSORS_LIS3_I2C
  844. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (I2C)"
  845. depends on I2C && INPUT
  846. select INPUT_POLLDEV
  847. default n
  848. help
  849. This driver provides support for the LIS3LV02Dx accelerometer connected
  850. via I2C. The accelerometer data is readable via
  851. /sys/devices/platform/lis3lv02d.
  852. This driver also provides an absolute input class device, allowing
  853. the device to act as a pinball machine-esque joystick.
  854. This driver can also be built as modules. If so, the core module
  855. will be called lis3lv02d and a specific module for the I2C transport
  856. is called lis3lv02d_i2c.
  857. config SENSORS_APPLESMC
  858. tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
  859. depends on INPUT && X86
  860. select NEW_LEDS
  861. select LEDS_CLASS
  862. select INPUT_POLLDEV
  863. default n
  864. help
  865. This driver provides support for the Apple System Management
  866. Controller, which provides an accelerometer (Apple Sudden Motion
  867. Sensor), light sensors, temperature sensors, keyboard backlight
  868. control and fan control.
  869. Only Intel-based Apple's computers are supported (MacBook Pro,
  870. MacBook, MacMini).
  871. Data from the different sensors, keyboard backlight control and fan
  872. control are accessible via sysfs.
  873. This driver also provides an absolute input class device, allowing
  874. the laptop to act as a pinball machine-esque joystick.
  875. Say Y here if you have an applicable laptop and want to experience
  876. the awesome power of applesmc.
  877. config SENSORS_MC13783_ADC
  878. tristate "Freescale MC13783 ADC"
  879. depends on MFD_MC13783
  880. help
  881. Support for the A/D converter on MC13783 PMIC.
  882. if ACPI
  883. comment "ACPI drivers"
  884. config SENSORS_ATK0110
  885. tristate "ASUS ATK0110"
  886. depends on X86 && EXPERIMENTAL
  887. help
  888. If you say yes here you get support for the ACPI hardware
  889. monitoring interface found in many ASUS motherboards. This
  890. driver will provide readings of fans, voltages and temperatures
  891. through the system firmware.
  892. This driver can also be built as a module. If so, the module
  893. will be called asus_atk0110.
  894. config SENSORS_LIS3LV02D
  895. tristate "STMicroeletronics LIS3* three-axis digital accelerometer"
  896. depends on INPUT
  897. select INPUT_POLLDEV
  898. select NEW_LEDS
  899. select LEDS_CLASS
  900. default n
  901. help
  902. This driver provides support for the LIS3* accelerometers, such as the
  903. LIS3LV02DL or the LIS331DL. In particular, it can be found in a number
  904. of HP laptops, which have the "Mobile Data Protection System 3D" or
  905. "3D DriveGuard" feature. On such systems the driver should load
  906. automatically (via ACPI alias). The accelerometer might also be found
  907. in other systems, connected via SPI or I2C. The accelerometer data is
  908. readable via /sys/devices/platform/lis3lv02d.
  909. This driver also provides an absolute input class device, allowing
  910. a laptop to act as a pinball machine-esque joystick. It provides also
  911. a misc device which can be used to detect free-fall. On HP laptops,
  912. if the led infrastructure is activated, support for a led indicating
  913. disk protection will be provided as hp::hddprotect. For more
  914. information on the feature, refer to Documentation/hwmon/lis3lv02d.
  915. This driver can also be built as modules. If so, the core module
  916. will be called lis3lv02d and a specific module for HP laptops will be
  917. called hp_accel.
  918. Say Y here if you have an applicable laptop and want to experience
  919. the awesome power of lis3lv02d.
  920. endif # ACPI
  921. endif # HWMON