Kconfig 40 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333
  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 and TI THMC10.
  95. This driver can also be built as a module. If so, the module
  96. will be called adm1021.
  97. config SENSORS_ADM1025
  98. tristate "Analog Devices ADM1025 and compatibles"
  99. depends on I2C
  100. select HWMON_VID
  101. help
  102. If you say yes here you get support for Analog Devices ADM1025
  103. and Philips NE1619 sensor chips.
  104. This driver can also be built as a module. If so, the module
  105. will be called adm1025.
  106. config SENSORS_ADM1026
  107. tristate "Analog Devices ADM1026 and compatibles"
  108. depends on I2C
  109. select HWMON_VID
  110. help
  111. If you say yes here you get support for Analog Devices ADM1026
  112. sensor chip.
  113. This driver can also be built as a module. If so, the module
  114. will be called adm1026.
  115. config SENSORS_ADM1029
  116. tristate "Analog Devices ADM1029"
  117. depends on I2C
  118. help
  119. If you say yes here you get support for Analog Devices ADM1029
  120. sensor chip.
  121. Very rare chip, please let us know you use it.
  122. This driver can also be built as a module. If so, the module
  123. will be called adm1029.
  124. config SENSORS_ADM1031
  125. tristate "Analog Devices ADM1031 and compatibles"
  126. depends on I2C
  127. help
  128. If you say yes here you get support for Analog Devices ADM1031
  129. and ADM1030 sensor chips.
  130. This driver can also be built as a module. If so, the module
  131. will be called adm1031.
  132. config SENSORS_ADM9240
  133. tristate "Analog Devices ADM9240 and compatibles"
  134. depends on I2C
  135. select HWMON_VID
  136. help
  137. If you say yes here you get support for Analog Devices ADM9240,
  138. Dallas DS1780, National Semiconductor LM81 sensor chips.
  139. This driver can also be built as a module. If so, the module
  140. will be called adm9240.
  141. config SENSORS_ADT7411
  142. tristate "Analog Devices ADT7411"
  143. depends on I2C && EXPERIMENTAL
  144. help
  145. If you say yes here you get support for the Analog Devices
  146. ADT7411 voltage and temperature monitoring chip.
  147. This driver can also be built as a module. If so, the module
  148. will be called adt7411.
  149. config SENSORS_ADT7462
  150. tristate "Analog Devices ADT7462"
  151. depends on I2C && EXPERIMENTAL
  152. help
  153. If you say yes here you get support for the Analog Devices
  154. ADT7462 temperature monitoring chips.
  155. This driver can also be built as a module. If so, the module
  156. will be called adt7462.
  157. config SENSORS_ADT7470
  158. tristate "Analog Devices ADT7470"
  159. depends on I2C && EXPERIMENTAL
  160. help
  161. If you say yes here you get support for the Analog Devices
  162. ADT7470 temperature monitoring chips.
  163. This driver can also be built as a module. If so, the module
  164. will be called adt7470.
  165. config SENSORS_ADT7475
  166. tristate "Analog Devices ADT7473, ADT7475, ADT7476 and ADT7490"
  167. depends on I2C
  168. select HWMON_VID
  169. help
  170. If you say yes here you get support for the Analog Devices
  171. ADT7473, ADT7475, ADT7476 and ADT7490 hardware monitoring
  172. chips.
  173. This driver can also be build as a module. If so, the module
  174. will be called adt7475.
  175. config SENSORS_ASC7621
  176. tristate "Andigilog aSC7621"
  177. depends on HWMON && I2C
  178. help
  179. If you say yes here you get support for the aSC7621
  180. family of SMBus sensors chip found on most Intel X38, X48, X58,
  181. 945, 965 and 975 desktop boards. Currently supported chips:
  182. aSC7621
  183. aSC7621a
  184. This driver can also be built as a module. If so, the module
  185. will be called asc7621.
  186. config SENSORS_K8TEMP
  187. tristate "AMD Athlon64/FX or Opteron temperature sensor"
  188. depends on X86 && PCI && EXPERIMENTAL
  189. help
  190. If you say yes here you get support for the temperature
  191. sensor(s) inside your CPU. Supported is whole AMD K8
  192. microarchitecture. Please note that you will need at least
  193. lm-sensors 2.10.1 for proper userspace support.
  194. This driver can also be built as a module. If so, the module
  195. will be called k8temp.
  196. config SENSORS_K10TEMP
  197. tristate "AMD Family 10h/11h/12h/14h temperature sensor"
  198. depends on X86 && PCI
  199. help
  200. If you say yes here you get support for the temperature
  201. sensor(s) inside your CPU. Supported are later revisions of
  202. the AMD Family 10h and all revisions of the AMD Family 11h,
  203. 12h (Llano), and 14h (Brazos) microarchitectures.
  204. This driver can also be built as a module. If so, the module
  205. will be called k10temp.
  206. config SENSORS_ASB100
  207. tristate "Asus ASB100 Bach"
  208. depends on X86 && I2C && EXPERIMENTAL
  209. select HWMON_VID
  210. help
  211. If you say yes here you get support for the ASB100 Bach sensor
  212. chip found on some Asus mainboards.
  213. This driver can also be built as a module. If so, the module
  214. will be called asb100.
  215. config SENSORS_ATXP1
  216. tristate "Attansic ATXP1 VID controller"
  217. depends on I2C && EXPERIMENTAL
  218. select HWMON_VID
  219. help
  220. If you say yes here you get support for the Attansic ATXP1 VID
  221. controller.
  222. If your board have such a chip, you are able to control your CPU
  223. core and other voltages.
  224. This driver can also be built as a module. If so, the module
  225. will be called atxp1.
  226. config SENSORS_DS620
  227. tristate "Dallas Semiconductor DS620"
  228. depends on I2C
  229. help
  230. If you say yes here you get support for Dallas Semiconductor
  231. DS620 sensor chip.
  232. This driver can also be built as a module. If so, the module
  233. will be called ds620.
  234. config SENSORS_DS1621
  235. tristate "Dallas Semiconductor DS1621 and DS1625"
  236. depends on I2C
  237. help
  238. If you say yes here you get support for Dallas Semiconductor
  239. DS1621 and DS1625 sensor chips.
  240. This driver can also be built as a module. If so, the module
  241. will be called ds1621.
  242. config SENSORS_I5K_AMB
  243. tristate "FB-DIMM AMB temperature sensor on Intel 5000 series chipsets"
  244. depends on PCI && EXPERIMENTAL
  245. help
  246. If you say yes here you get support for FB-DIMM AMB temperature
  247. monitoring chips on systems with the Intel 5000 series chipset.
  248. This driver can also be built as a module. If so, the module
  249. will be called i5k_amb.
  250. config SENSORS_F71805F
  251. tristate "Fintek F71805F/FG, F71806F/FG and F71872F/FG"
  252. help
  253. If you say yes here you get support for hardware monitoring
  254. features of the Fintek F71805F/FG, F71806F/FG and F71872F/FG
  255. Super-I/O chips.
  256. This driver can also be built as a module. If so, the module
  257. will be called f71805f.
  258. config SENSORS_F71882FG
  259. tristate "Fintek F71882FG and compatibles"
  260. help
  261. If you say yes here you get support for hardware monitoring
  262. features of many Fintek Super-I/O (LPC) chips. The currently
  263. supported chips are:
  264. F71808E
  265. F71858FG
  266. F71862FG
  267. F71863FG
  268. F71869F/E
  269. F71882FG
  270. F71883FG
  271. F71889FG/ED/A
  272. F8000
  273. F81801U
  274. F81865F
  275. This driver can also be built as a module. If so, the module
  276. will be called f71882fg.
  277. config SENSORS_F75375S
  278. tristate "Fintek F75375S/SP and F75373"
  279. depends on I2C
  280. help
  281. If you say yes here you get support for hardware monitoring
  282. features of the Fintek F75375S/SP and F75373
  283. This driver can also be built as a module. If so, the module
  284. will be called f75375s.
  285. config SENSORS_FSCHMD
  286. tristate "Fujitsu Siemens Computers sensor chips"
  287. depends on X86 && I2C
  288. help
  289. If you say yes here you get support for the following Fujitsu
  290. Siemens Computers (FSC) sensor chips: Poseidon, Scylla, Hermes,
  291. Heimdall, Heracles, Hades and Syleus including support for the
  292. integrated watchdog.
  293. This is a merged driver for FSC sensor chips replacing the fscpos,
  294. fscscy and fscher drivers and adding support for several other FSC
  295. sensor chips.
  296. This driver can also be built as a module. If so, the module
  297. will be called fschmd.
  298. config SENSORS_G760A
  299. tristate "GMT G760A"
  300. depends on I2C
  301. help
  302. If you say yes here you get support for Global Mixed-mode
  303. Technology Inc G760A fan speed PWM controller chips.
  304. This driver can also be built as a module. If so, the module
  305. will be called g760a.
  306. config SENSORS_GL518SM
  307. tristate "Genesys Logic GL518SM"
  308. depends on I2C
  309. help
  310. If you say yes here you get support for Genesys Logic GL518SM
  311. sensor chips.
  312. This driver can also be built as a module. If so, the module
  313. will be called gl518sm.
  314. config SENSORS_GL520SM
  315. tristate "Genesys Logic GL520SM"
  316. depends on I2C
  317. select HWMON_VID
  318. help
  319. If you say yes here you get support for Genesys Logic GL520SM
  320. sensor chips.
  321. This driver can also be built as a module. If so, the module
  322. will be called gl520sm.
  323. config SENSORS_GPIO_FAN
  324. tristate "GPIO fan"
  325. depends on GENERIC_GPIO
  326. help
  327. If you say yes here you get support for fans connected to GPIO lines.
  328. This driver can also be built as a module. If so, the module
  329. will be called gpio-fan.
  330. config SENSORS_CORETEMP
  331. tristate "Intel Core/Core2/Atom temperature sensor"
  332. depends on X86 && PCI && EXPERIMENTAL
  333. help
  334. If you say yes here you get support for the temperature
  335. sensor inside your CPU. Most of the family 6 CPUs
  336. are supported. Check Documentation/hwmon/coretemp for details.
  337. config SENSORS_PKGTEMP
  338. tristate "Intel processor package temperature sensor"
  339. depends on X86 && EXPERIMENTAL
  340. help
  341. If you say yes here you get support for the package level temperature
  342. sensor inside your CPU. Check documentation/driver for details.
  343. config SENSORS_IBMAEM
  344. tristate "IBM Active Energy Manager temperature/power sensors and control"
  345. select IPMI_SI
  346. depends on IPMI_HANDLER
  347. help
  348. If you say yes here you get support for the temperature and
  349. power sensors and capping hardware in various IBM System X
  350. servers that support Active Energy Manager. This includes
  351. the x3350, x3550, x3650, x3655, x3755, x3850 M2, x3950 M2,
  352. and certain HC10/HS2x/LS2x/QS2x blades.
  353. This driver can also be built as a module. If so, the module
  354. will be called ibmaem.
  355. config SENSORS_IBMPEX
  356. tristate "IBM PowerExecutive temperature/power sensors"
  357. select IPMI_SI
  358. depends on IPMI_HANDLER
  359. help
  360. If you say yes here you get support for the temperature and
  361. power sensors in various IBM System X servers that support
  362. PowerExecutive. So far this includes the x3350, x3550, x3650,
  363. x3655, and x3755; the x3800, x3850, and x3950 models that have
  364. PCI Express; and some of the HS2x, LS2x, and QS2x blades.
  365. This driver can also be built as a module. If so, the module
  366. will be called ibmpex.
  367. config SENSORS_IT87
  368. tristate "ITE IT87xx and compatibles"
  369. select HWMON_VID
  370. help
  371. If you say yes here you get support for ITE IT8705F, IT8712F,
  372. IT8716F, IT8718F, IT8720F, IT8721F, IT8726F and IT8758E sensor
  373. chips, and the SiS960 clone.
  374. This driver can also be built as a module. If so, the module
  375. will be called it87.
  376. config SENSORS_JZ4740
  377. tristate "Ingenic JZ4740 SoC ADC driver"
  378. depends on MACH_JZ4740 && MFD_JZ4740_ADC
  379. help
  380. If you say yes here you get support for reading adc values from the ADCIN
  381. pin on Ingenic JZ4740 SoC based boards.
  382. This driver can also be build as a module. If so, the module will be
  383. called jz4740-hwmon.
  384. config SENSORS_JC42
  385. tristate "JEDEC JC42.4 compliant memory module temperature sensors"
  386. depends on I2C
  387. help
  388. If you say yes here, you get support for JEDEC JC42.4 compliant
  389. temperature sensors, which are used on many DDR3 memory modules for
  390. mobile devices and servers. Support will include, but not be limited
  391. to, ADT7408, CAT34TS02, CAT6095, MAX6604, MCP9805, MCP98242, MCP98243,
  392. MCP9843, SE97, SE98, STTS424(E), TSE2002B3, and TS3000B3.
  393. This driver can also be built as a module. If so, the module
  394. will be called jc42.
  395. config SENSORS_LINEAGE
  396. tristate "Lineage Compact Power Line Power Entry Module"
  397. depends on I2C && EXPERIMENTAL
  398. help
  399. If you say yes here you get support for the Lineage Compact Power Line
  400. series of DC/DC and AC/DC converters such as CP1800, CP2000AC,
  401. CP2000DC, CP2725, and others.
  402. This driver can also be built as a module. If so, the module
  403. will be called lineage-pem.
  404. config SENSORS_LM63
  405. tristate "National Semiconductor LM63 and LM64"
  406. depends on I2C
  407. help
  408. If you say yes here you get support for the National
  409. Semiconductor LM63 and LM64 remote diode digital temperature
  410. sensors with integrated fan control. Such chips are found
  411. on the Tyan S4882 (Thunder K8QS Pro) motherboard, among
  412. others.
  413. This driver can also be built as a module. If so, the module
  414. will be called lm63.
  415. config SENSORS_LM70
  416. tristate "National Semiconductor LM70 / Texas Instruments TMP121"
  417. depends on SPI_MASTER
  418. help
  419. If you say yes here you get support for the National Semiconductor
  420. LM70 and Texas Instruments TMP121/TMP123 digital temperature
  421. sensor chips.
  422. This driver can also be built as a module. If so, the module
  423. will be called lm70.
  424. config SENSORS_LM73
  425. tristate "National Semiconductor LM73"
  426. depends on I2C
  427. help
  428. If you say yes here you get support for National Semiconductor LM73
  429. sensor chips.
  430. This driver can also be built as a module. If so, the module
  431. will be called lm73.
  432. config SENSORS_LM75
  433. tristate "National Semiconductor LM75 and compatibles"
  434. depends on I2C
  435. help
  436. If you say yes here you get support for one common type of
  437. temperature sensor chip, with models including:
  438. - Dallas Semiconductor DS75 and DS1775
  439. - Maxim MAX6625 and MAX6626
  440. - Microchip MCP980x
  441. - National Semiconductor LM75, LM75A
  442. - NXP's LM75A
  443. - ST Microelectronics STDS75
  444. - TelCom (now Microchip) TCN75
  445. - Texas Instruments TMP100, TMP101, TMP105, TMP75, TMP175,
  446. TMP275
  447. This driver supports driver model based binding through board
  448. specific I2C device tables.
  449. It also supports the "legacy" style of driver binding. To use
  450. that with some chips which don't replicate LM75 quirks exactly,
  451. you may need the "force" module parameter.
  452. This driver can also be built as a module. If so, the module
  453. will be called lm75.
  454. config SENSORS_LM77
  455. tristate "National Semiconductor LM77"
  456. depends on I2C
  457. help
  458. If you say yes here you get support for National Semiconductor LM77
  459. sensor chips.
  460. This driver can also be built as a module. If so, the module
  461. will be called lm77.
  462. config SENSORS_LM78
  463. tristate "National Semiconductor LM78 and compatibles"
  464. depends on I2C
  465. select HWMON_VID
  466. help
  467. If you say yes here you get support for National Semiconductor LM78,
  468. LM78-J and LM79.
  469. This driver can also be built as a module. If so, the module
  470. will be called lm78.
  471. config SENSORS_LM80
  472. tristate "National Semiconductor LM80"
  473. depends on I2C
  474. help
  475. If you say yes here you get support for National Semiconductor
  476. LM80 sensor chips.
  477. This driver can also be built as a module. If so, the module
  478. will be called lm80.
  479. config SENSORS_LM83
  480. tristate "National Semiconductor LM83 and compatibles"
  481. depends on I2C
  482. help
  483. If you say yes here you get support for National Semiconductor
  484. LM82 and LM83 sensor chips.
  485. This driver can also be built as a module. If so, the module
  486. will be called lm83.
  487. config SENSORS_LM85
  488. tristate "National Semiconductor LM85 and compatibles"
  489. depends on I2C
  490. select HWMON_VID
  491. help
  492. If you say yes here you get support for National Semiconductor LM85
  493. sensor chips and clones: ADM1027, ADT7463, ADT7468, EMC6D100,
  494. EMC6D101, EMC6D102, and EMC6D103.
  495. This driver can also be built as a module. If so, the module
  496. will be called lm85.
  497. config SENSORS_LM87
  498. tristate "National Semiconductor LM87 and compatibles"
  499. depends on I2C
  500. select HWMON_VID
  501. help
  502. If you say yes here you get support for National Semiconductor LM87
  503. and Analog Devices ADM1024 sensor chips.
  504. This driver can also be built as a module. If so, the module
  505. will be called lm87.
  506. config SENSORS_LM90
  507. tristate "National Semiconductor LM90 and compatibles"
  508. depends on I2C
  509. help
  510. If you say yes here you get support for National Semiconductor LM90,
  511. LM86, LM89 and LM99, Analog Devices ADM1032, ADT7461, and ADT7461A,
  512. Maxim MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659,
  513. MAX6680, MAX6681, MAX6692, MAX6695, MAX6696, ON Semiconductor NCT1008,
  514. and Winbond/Nuvoton W83L771W/G/AWG/ASG sensor chips.
  515. This driver can also be built as a module. If so, the module
  516. will be called lm90.
  517. config SENSORS_LM92
  518. tristate "National Semiconductor LM92 and compatibles"
  519. depends on I2C
  520. help
  521. If you say yes here you get support for National Semiconductor LM92
  522. and Maxim MAX6635 sensor chips.
  523. This driver can also be built as a module. If so, the module
  524. will be called lm92.
  525. config SENSORS_LM93
  526. tristate "National Semiconductor LM93 and compatibles"
  527. depends on I2C
  528. select HWMON_VID
  529. help
  530. If you say yes here you get support for National Semiconductor LM93,
  531. LM94, and compatible sensor chips.
  532. This driver can also be built as a module. If so, the module
  533. will be called lm93.
  534. config SENSORS_LTC4151
  535. tristate "Linear Technology LTC4151"
  536. depends on I2C
  537. default n
  538. help
  539. If you say yes here you get support for Linear Technology LTC4151
  540. High Voltage I2C Current and Voltage Monitor interface.
  541. This driver can also be built as a module. If so, the module will
  542. be called ltc4151.
  543. config SENSORS_LTC4215
  544. tristate "Linear Technology LTC4215"
  545. depends on I2C && EXPERIMENTAL
  546. default n
  547. help
  548. If you say yes here you get support for Linear Technology LTC4215
  549. Hot Swap Controller I2C interface.
  550. This driver can also be built as a module. If so, the module will
  551. be called ltc4215.
  552. config SENSORS_LTC4245
  553. tristate "Linear Technology LTC4245"
  554. depends on I2C && EXPERIMENTAL
  555. default n
  556. help
  557. If you say yes here you get support for Linear Technology LTC4245
  558. Multiple Supply Hot Swap Controller I2C interface.
  559. This driver can also be built as a module. If so, the module will
  560. be called ltc4245.
  561. config SENSORS_LTC4261
  562. tristate "Linear Technology LTC4261"
  563. depends on I2C && EXPERIMENTAL
  564. default n
  565. help
  566. If you say yes here you get support for Linear Technology LTC4261
  567. Negative Voltage Hot Swap Controller I2C interface.
  568. This driver can also be built as a module. If so, the module will
  569. be called ltc4261.
  570. config SENSORS_LM95241
  571. tristate "National Semiconductor LM95241 sensor chip"
  572. depends on I2C
  573. help
  574. If you say yes here you get support for LM95241 sensor chip.
  575. This driver can also be built as a module. If so, the module
  576. will be called lm95241.
  577. config SENSORS_MAX1111
  578. tristate "Maxim MAX1111 Multichannel, Serial 8-bit ADC chip"
  579. depends on SPI_MASTER
  580. help
  581. Say y here to support Maxim's MAX1111 ADC chips.
  582. This driver can also be built as a module. If so, the module
  583. will be called max1111.
  584. config SENSORS_MAX16065
  585. tristate "Maxim MAX16065 System Manager and compatibles"
  586. depends on I2C
  587. help
  588. If you say yes here you get support for hardware monitoring
  589. capabilities of the following Maxim System Manager chips.
  590. MAX16065
  591. MAX16066
  592. MAX16067
  593. MAX16068
  594. MAX16070
  595. MAX16071
  596. This driver can also be built as a module. If so, the module
  597. will be called max16065.
  598. config SENSORS_MAX1619
  599. tristate "Maxim MAX1619 sensor chip"
  600. depends on I2C
  601. help
  602. If you say yes here you get support for MAX1619 sensor chip.
  603. This driver can also be built as a module. If so, the module
  604. will be called max1619.
  605. config SENSORS_MAX6639
  606. tristate "Maxim MAX6639 sensor chip"
  607. depends on I2C && EXPERIMENTAL
  608. help
  609. If you say yes here you get support for the MAX6639
  610. sensor chips.
  611. This driver can also be built as a module. If so, the module
  612. will be called max6639.
  613. config SENSORS_MAX6642
  614. tristate "Maxim MAX6642 sensor chip"
  615. depends on I2C && EXPERIMENTAL
  616. help
  617. If you say yes here you get support for MAX6642 sensor chip.
  618. MAX6642 is a SMBus-Compatible Remote/Local Temperature Sensor
  619. with Overtemperature Alarm from Maxim.
  620. This driver can also be built as a module. If so, the module
  621. will be called max6642.
  622. config SENSORS_MAX6650
  623. tristate "Maxim MAX6650 sensor chip"
  624. depends on I2C && EXPERIMENTAL
  625. help
  626. If you say yes here you get support for the MAX6650 / MAX6651
  627. sensor chips.
  628. This driver can also be built as a module. If so, the module
  629. will be called max6650.
  630. config SENSORS_PC87360
  631. tristate "National Semiconductor PC87360 family"
  632. select HWMON_VID
  633. help
  634. If you say yes here you get access to the hardware monitoring
  635. functions of the National Semiconductor PC8736x Super-I/O chips.
  636. The PC87360, PC87363 and PC87364 only have fan monitoring and
  637. control. The PC87365 and PC87366 additionally have voltage and
  638. temperature monitoring.
  639. This driver can also be built as a module. If so, the module
  640. will be called pc87360.
  641. config SENSORS_PC87427
  642. tristate "National Semiconductor PC87427"
  643. help
  644. If you say yes here you get access to the hardware monitoring
  645. functions of the National Semiconductor PC87427 Super-I/O chip.
  646. The chip has two distinct logical devices, one for fan speed
  647. monitoring and control, and one for voltage and temperature
  648. monitoring. Fan speed monitoring and control are supported, as
  649. well as temperature monitoring. Voltages aren't supported yet.
  650. This driver can also be built as a module. If so, the module
  651. will be called pc87427.
  652. config SENSORS_PCF8591
  653. tristate "Philips PCF8591 ADC/DAC"
  654. depends on I2C
  655. default n
  656. help
  657. If you say yes here you get support for Philips PCF8591 4-channel
  658. ADC, 1-channel DAC chips.
  659. This driver can also be built as a module. If so, the module
  660. will be called pcf8591.
  661. These devices are hard to detect and rarely found on mainstream
  662. hardware. If unsure, say N.
  663. config PMBUS
  664. tristate "PMBus support"
  665. depends on I2C && EXPERIMENTAL
  666. default n
  667. help
  668. Say yes here if you want to enable PMBus support.
  669. This driver can also be built as a module. If so, the module will
  670. be called pmbus_core.
  671. if PMBUS
  672. config SENSORS_PMBUS
  673. tristate "Generic PMBus devices"
  674. default n
  675. help
  676. If you say yes here you get hardware monitoring support for generic
  677. PMBus devices, including but not limited to BMR450, BMR451, BMR453,
  678. BMR454, and LTC2978.
  679. This driver can also be built as a module. If so, the module will
  680. be called pmbus.
  681. config SENSORS_MAX16064
  682. tristate "Maxim MAX16064"
  683. default n
  684. help
  685. If you say yes here you get hardware monitoring support for Maxim
  686. MAX16064.
  687. This driver can also be built as a module. If so, the module will
  688. be called max16064.
  689. config SENSORS_MAX34440
  690. tristate "Maxim MAX34440/MAX34441"
  691. default n
  692. help
  693. If you say yes here you get hardware monitoring support for Maxim
  694. MAX34440 and MAX34441.
  695. This driver can also be built as a module. If so, the module will
  696. be called max34440.
  697. config SENSORS_MAX8688
  698. tristate "Maxim MAX8688"
  699. default n
  700. help
  701. If you say yes here you get hardware monitoring support for Maxim
  702. MAX8688.
  703. This driver can also be built as a module. If so, the module will
  704. be called max8688.
  705. endif # PMBUS
  706. config SENSORS_SHT15
  707. tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
  708. depends on GENERIC_GPIO
  709. help
  710. If you say yes here you get support for the Sensiron SHT10, SHT11,
  711. SHT15, SHT71, SHT75 humidity and temperature sensors.
  712. This driver can also be built as a module. If so, the module
  713. will be called sht15.
  714. config SENSORS_SHT21
  715. tristate "Sensiron humidity and temperature sensors. SHT21 and compat."
  716. depends on I2C
  717. help
  718. If you say yes here you get support for the Sensiron SHT21, SHT25
  719. humidity and temperature sensors.
  720. This driver can also be built as a module. If so, the module
  721. will be called sht21.
  722. config SENSORS_S3C
  723. tristate "Samsung built-in ADC"
  724. depends on S3C_ADC
  725. help
  726. If you say yes here you get support for the on-board ADCs of
  727. the Samsung S3C24XX, S3C64XX and other series of SoC
  728. This driver can also be built as a module. If so, the module
  729. will be called s3c-hwmon.
  730. config SENSORS_S3C_RAW
  731. bool "Include raw channel attributes in sysfs"
  732. depends on SENSORS_S3C
  733. help
  734. Say Y here if you want to include raw copies of all the ADC
  735. channels in sysfs.
  736. config SENSORS_SIS5595
  737. tristate "Silicon Integrated Systems Corp. SiS5595"
  738. depends on PCI
  739. help
  740. If you say yes here you get support for the integrated sensors in
  741. SiS5595 South Bridges.
  742. This driver can also be built as a module. If so, the module
  743. will be called sis5595.
  744. config SENSORS_SMM665
  745. tristate "Summit Microelectronics SMM665"
  746. depends on I2C && EXPERIMENTAL
  747. default n
  748. help
  749. If you say yes here you get support for the hardware monitoring
  750. features of the Summit Microelectronics SMM665/SMM665B Six-Channel
  751. Active DC Output Controller / Monitor.
  752. Other supported chips are SMM465, SMM665C, SMM764, and SMM766.
  753. Support for those chips is untested.
  754. This driver can also be built as a module. If so, the module will
  755. be called smm665.
  756. config SENSORS_DME1737
  757. tristate "SMSC DME1737, SCH311x and compatibles"
  758. depends on I2C && EXPERIMENTAL
  759. select HWMON_VID
  760. help
  761. If you say yes here you get support for the hardware monitoring
  762. and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
  763. Asus A8000 Super-I/O chips.
  764. This driver can also be built as a module. If so, the module
  765. will be called dme1737.
  766. config SENSORS_EMC1403
  767. tristate "SMSC EMC1403/23 thermal sensor"
  768. depends on I2C
  769. help
  770. If you say yes here you get support for the SMSC EMC1403/23
  771. temperature monitoring chip.
  772. Threshold values can be configured using sysfs.
  773. Data from the different diodes are accessible via sysfs.
  774. config SENSORS_EMC2103
  775. tristate "SMSC EMC2103"
  776. depends on I2C
  777. help
  778. If you say yes here you get support for the temperature
  779. and fan sensors of the SMSC EMC2103 chips.
  780. This driver can also be built as a module. If so, the module
  781. will be called emc2103.
  782. config SENSORS_SMSC47M1
  783. tristate "SMSC LPC47M10x and compatibles"
  784. help
  785. If you say yes here you get support for the integrated fan
  786. monitoring and control capabilities of the SMSC LPC47B27x,
  787. LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
  788. LPC47M192, LPC47M292 and LPC47M997 chips.
  789. The temperature and voltage sensor features of the LPC47M15x,
  790. LPC47M192, LPC47M292 and LPC47M997 are supported by another
  791. driver, select also "SMSC LPC47M192 and compatibles" below for
  792. those.
  793. This driver can also be built as a module. If so, the module
  794. will be called smsc47m1.
  795. config SENSORS_SMSC47M192
  796. tristate "SMSC LPC47M192 and compatibles"
  797. depends on I2C
  798. select HWMON_VID
  799. help
  800. If you say yes here you get support for the temperature and
  801. voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
  802. and LPC47M997 chips.
  803. The fan monitoring and control capabilities of these chips
  804. are supported by another driver, select
  805. "SMSC LPC47M10x and compatibles" above. You need both drivers
  806. if you want fan control and voltage/temperature sensor support.
  807. This driver can also be built as a module. If so, the module
  808. will be called smsc47m192.
  809. config SENSORS_SMSC47B397
  810. tristate "SMSC LPC47B397-NC"
  811. depends on EXPERIMENTAL
  812. help
  813. If you say yes here you get support for the SMSC LPC47B397-NC
  814. sensor chip.
  815. This driver can also be built as a module. If so, the module
  816. will be called smsc47b397.
  817. config SENSORS_SCH5627
  818. tristate "SMSC SCH5627"
  819. help
  820. If you say yes here you get support for the hardware monitoring
  821. features of the SMSC SCH5627 Super-I/O chip.
  822. This driver can also be built as a module. If so, the module
  823. will be called sch5627.
  824. config SENSORS_ADS1015
  825. tristate "Texas Instruments ADS1015"
  826. depends on I2C
  827. help
  828. If you say yes here you get support for Texas Instruments ADS1015
  829. 12-bit 4-input ADC device.
  830. This driver can also be built as a module. If so, the module
  831. will be called ads1015.
  832. config SENSORS_ADS7828
  833. tristate "Texas Instruments ADS7828"
  834. depends on I2C
  835. help
  836. If you say yes here you get support for Texas Instruments ADS7828
  837. 12-bit 8-channel ADC device.
  838. This driver can also be built as a module. If so, the module
  839. will be called ads7828.
  840. config SENSORS_ADS7871
  841. tristate "Texas Instruments ADS7871 A/D converter"
  842. depends on SPI
  843. help
  844. If you say yes here you get support for TI ADS7871 & ADS7870
  845. This driver can also be built as a module. If so, the module
  846. will be called ads7871.
  847. config SENSORS_AMC6821
  848. tristate "Texas Instruments AMC6821"
  849. depends on I2C && EXPERIMENTAL
  850. help
  851. If you say yes here you get support for the Texas Instruments
  852. AMC6821 hardware monitoring chips.
  853. This driver can also be build as a module. If so, the module
  854. will be called amc6821.
  855. config SENSORS_THMC50
  856. tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
  857. depends on I2C
  858. help
  859. If you say yes here you get support for Texas Instruments THMC50
  860. sensor chips and clones: the Analog Devices ADM1022.
  861. This driver can also be built as a module. If so, the module
  862. will be called thmc50.
  863. config SENSORS_TMP102
  864. tristate "Texas Instruments TMP102"
  865. depends on I2C && EXPERIMENTAL
  866. help
  867. If you say yes here you get support for Texas Instruments TMP102
  868. sensor chips.
  869. This driver can also be built as a module. If so, the module
  870. will be called tmp102.
  871. config SENSORS_TMP401
  872. tristate "Texas Instruments TMP401 and compatibles"
  873. depends on I2C && EXPERIMENTAL
  874. help
  875. If you say yes here you get support for Texas Instruments TMP401 and
  876. TMP411 temperature sensor chips.
  877. This driver can also be built as a module. If so, the module
  878. will be called tmp401.
  879. config SENSORS_TMP421
  880. tristate "Texas Instruments TMP421 and compatible"
  881. depends on I2C && EXPERIMENTAL
  882. help
  883. If you say yes here you get support for Texas Instruments TMP421,
  884. TMP422 and TMP423 temperature sensor chips.
  885. This driver can also be built as a module. If so, the module
  886. will be called tmp421.
  887. config SENSORS_TWL4030_MADC
  888. tristate "Texas Instruments TWL4030 MADC Hwmon"
  889. depends on TWL4030_MADC
  890. help
  891. If you say yes here you get hwmon support for triton
  892. TWL4030-MADC.
  893. This driver can also be built as a module. If so it will be called
  894. twl4030-madc-hwmon.
  895. config SENSORS_VIA_CPUTEMP
  896. tristate "VIA CPU temperature sensor"
  897. depends on X86
  898. help
  899. If you say yes here you get support for the temperature
  900. sensor inside your CPU. Supported are all known variants of
  901. the VIA C7 and Nano.
  902. config SENSORS_VIA686A
  903. tristate "VIA686A"
  904. depends on PCI
  905. help
  906. If you say yes here you get support for the integrated sensors in
  907. Via 686A/B South Bridges.
  908. This driver can also be built as a module. If so, the module
  909. will be called via686a.
  910. config SENSORS_VT1211
  911. tristate "VIA VT1211"
  912. select HWMON_VID
  913. help
  914. If you say yes here then you get support for hardware monitoring
  915. features of the VIA VT1211 Super-I/O chip.
  916. This driver can also be built as a module. If so, the module
  917. will be called vt1211.
  918. config SENSORS_VT8231
  919. tristate "VIA VT8231"
  920. depends on PCI
  921. select HWMON_VID
  922. help
  923. If you say yes here then you get support for the integrated sensors
  924. in the VIA VT8231 device.
  925. This driver can also be built as a module. If so, the module
  926. will be called vt8231.
  927. config SENSORS_W83781D
  928. tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
  929. depends on I2C
  930. select HWMON_VID
  931. help
  932. If you say yes here you get support for the Winbond W8378x series
  933. of sensor chips: the W83781D, W83782D and W83783S, and the similar
  934. Asus AS99127F.
  935. This driver can also be built as a module. If so, the module
  936. will be called w83781d.
  937. config SENSORS_W83791D
  938. tristate "Winbond W83791D"
  939. depends on I2C
  940. select HWMON_VID
  941. help
  942. If you say yes here you get support for the Winbond W83791D chip.
  943. This driver can also be built as a module. If so, the module
  944. will be called w83791d.
  945. config SENSORS_W83792D
  946. tristate "Winbond W83792D"
  947. depends on I2C
  948. help
  949. If you say yes here you get support for the Winbond W83792D chip.
  950. This driver can also be built as a module. If so, the module
  951. will be called w83792d.
  952. config SENSORS_W83793
  953. tristate "Winbond W83793"
  954. depends on I2C && EXPERIMENTAL
  955. select HWMON_VID
  956. help
  957. If you say yes here you get support for the Winbond W83793
  958. hardware monitoring chip, including support for the integrated
  959. watchdog.
  960. This driver can also be built as a module. If so, the module
  961. will be called w83793.
  962. config SENSORS_W83795
  963. tristate "Winbond/Nuvoton W83795G/ADG"
  964. depends on I2C && EXPERIMENTAL
  965. help
  966. If you say yes here you get support for the Winbond W83795G and
  967. W83795ADG hardware monitoring chip.
  968. This driver can also be built as a module. If so, the module
  969. will be called w83795.
  970. config SENSORS_W83795_FANCTRL
  971. boolean "Include fan control support (DANGEROUS)"
  972. depends on SENSORS_W83795 && EXPERIMENTAL
  973. default n
  974. help
  975. If you say yes here, support for the both manual and automatic
  976. fan control features will be included in the driver.
  977. This part of the code wasn't carefully reviewed and tested yet,
  978. so enabling this option is strongly discouraged on production
  979. servers. Only developers and testers should enable it for the
  980. time being.
  981. Please also note that this option will create sysfs attribute
  982. files which may change in the future, so you shouldn't rely
  983. on them being stable.
  984. config SENSORS_W83L785TS
  985. tristate "Winbond W83L785TS-S"
  986. depends on I2C && EXPERIMENTAL
  987. help
  988. If you say yes here you get support for the Winbond W83L785TS-S
  989. sensor chip, which is used on the Asus A7N8X, among other
  990. motherboards.
  991. This driver can also be built as a module. If so, the module
  992. will be called w83l785ts.
  993. config SENSORS_W83L786NG
  994. tristate "Winbond W83L786NG, W83L786NR"
  995. depends on I2C && EXPERIMENTAL
  996. help
  997. If you say yes here you get support for the Winbond W83L786NG
  998. and W83L786NR sensor chips.
  999. This driver can also be built as a module. If so, the module
  1000. will be called w83l786ng.
  1001. config SENSORS_W83627HF
  1002. tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
  1003. select HWMON_VID
  1004. help
  1005. If you say yes here you get support for the Winbond W836X7 series
  1006. of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
  1007. W83697HF.
  1008. This driver can also be built as a module. If so, the module
  1009. will be called w83627hf.
  1010. config SENSORS_W83627EHF
  1011. tristate "Winbond W83627EHF/EHG/DHG, W83667HG, NCT6775F, NCT6776F"
  1012. select HWMON_VID
  1013. help
  1014. If you say yes here you get support for the hardware
  1015. monitoring functionality of the Winbond W83627EHF Super-I/O chip.
  1016. This driver also supports the W83627EHG, which is the lead-free
  1017. version of the W83627EHF, and the W83627DHG, which is a similar
  1018. chip suited for specific Intel processors that use PECI such as
  1019. the Core 2 Duo.
  1020. This driver also supports Nuvoton W83667HG, W83667HG-B, NCT6775F
  1021. (also known as W83667HG-I), and NCT6776F.
  1022. This driver can also be built as a module. If so, the module
  1023. will be called w83627ehf.
  1024. config SENSORS_WM831X
  1025. tristate "WM831x PMICs"
  1026. depends on MFD_WM831X
  1027. help
  1028. If you say yes here you get support for the hardware
  1029. monitoring functionality of the Wolfson Microelectronics
  1030. WM831x series of PMICs.
  1031. This driver can also be built as a module. If so, the module
  1032. will be called wm831x-hwmon.
  1033. config SENSORS_WM8350
  1034. tristate "Wolfson Microelectronics WM835x"
  1035. depends on MFD_WM8350
  1036. help
  1037. If you say yes here you get support for the hardware
  1038. monitoring features of the WM835x series of PMICs.
  1039. This driver can also be built as a module. If so, the module
  1040. will be called wm8350-hwmon.
  1041. config SENSORS_ULTRA45
  1042. tristate "Sun Ultra45 PIC16F747"
  1043. depends on SPARC64
  1044. help
  1045. This driver provides support for the Ultra45 workstation environmental
  1046. sensors.
  1047. config SENSORS_APPLESMC
  1048. tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
  1049. depends on INPUT && X86
  1050. select NEW_LEDS
  1051. select LEDS_CLASS
  1052. select INPUT_POLLDEV
  1053. default n
  1054. help
  1055. This driver provides support for the Apple System Management
  1056. Controller, which provides an accelerometer (Apple Sudden Motion
  1057. Sensor), light sensors, temperature sensors, keyboard backlight
  1058. control and fan control.
  1059. Only Intel-based Apple's computers are supported (MacBook Pro,
  1060. MacBook, MacMini).
  1061. Data from the different sensors, keyboard backlight control and fan
  1062. control are accessible via sysfs.
  1063. This driver also provides an absolute input class device, allowing
  1064. the laptop to act as a pinball machine-esque joystick.
  1065. Say Y here if you have an applicable laptop and want to experience
  1066. the awesome power of applesmc.
  1067. config SENSORS_MC13783_ADC
  1068. tristate "Freescale MC13783 ADC"
  1069. depends on MFD_MC13783
  1070. help
  1071. Support for the A/D converter on MC13783 PMIC.
  1072. if ACPI
  1073. comment "ACPI drivers"
  1074. config SENSORS_ATK0110
  1075. tristate "ASUS ATK0110"
  1076. depends on X86 && EXPERIMENTAL
  1077. help
  1078. If you say yes here you get support for the ACPI hardware
  1079. monitoring interface found in many ASUS motherboards. This
  1080. driver will provide readings of fans, voltages and temperatures
  1081. through the system firmware.
  1082. This driver can also be built as a module. If so, the module
  1083. will be called asus_atk0110.
  1084. endif # ACPI
  1085. endif # HWMON