Kconfig 44 KB

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