Kconfig 33 KB

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