Kconfig 36 KB

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