Kconfig 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158
  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, TMP75, TMP175, TMP275
  411. This driver supports driver model based binding through board
  412. specific I2C device tables.
  413. It also supports the "legacy" style of driver binding. To use
  414. that with some chips which don't replicate LM75 quirks exactly,
  415. you may need the "force" module parameter.
  416. This driver can also be built as a module. If so, the module
  417. will be called lm75.
  418. config SENSORS_LM77
  419. tristate "National Semiconductor LM77"
  420. depends on I2C
  421. help
  422. If you say yes here you get support for National Semiconductor LM77
  423. sensor chips.
  424. This driver can also be built as a module. If so, the module
  425. will be called lm77.
  426. config SENSORS_LM78
  427. tristate "National Semiconductor LM78 and compatibles"
  428. depends on I2C
  429. select HWMON_VID
  430. help
  431. If you say yes here you get support for National Semiconductor LM78,
  432. LM78-J and LM79.
  433. This driver can also be built as a module. If so, the module
  434. will be called lm78.
  435. config SENSORS_LM80
  436. tristate "National Semiconductor LM80"
  437. depends on I2C && EXPERIMENTAL
  438. help
  439. If you say yes here you get support for National Semiconductor
  440. LM80 sensor chips.
  441. This driver can also be built as a module. If so, the module
  442. will be called lm80.
  443. config SENSORS_LM83
  444. tristate "National Semiconductor LM83 and compatibles"
  445. depends on I2C
  446. help
  447. If you say yes here you get support for National Semiconductor
  448. LM82 and LM83 sensor chips.
  449. This driver can also be built as a module. If so, the module
  450. will be called lm83.
  451. config SENSORS_LM85
  452. tristate "National Semiconductor LM85 and compatibles"
  453. depends on I2C && EXPERIMENTAL
  454. select HWMON_VID
  455. help
  456. If you say yes here you get support for National Semiconductor LM85
  457. sensor chips and clones: ADT7463, EMC6D100, EMC6D102 and ADM1027.
  458. This driver can also be built as a module. If so, the module
  459. will be called lm85.
  460. config SENSORS_LM87
  461. tristate "National Semiconductor LM87 and compatibles"
  462. depends on I2C
  463. select HWMON_VID
  464. help
  465. If you say yes here you get support for National Semiconductor LM87
  466. and Analog Devices ADM1024 sensor chips.
  467. This driver can also be built as a module. If so, the module
  468. will be called lm87.
  469. config SENSORS_LM90
  470. tristate "National Semiconductor LM90 and compatibles"
  471. depends on I2C
  472. help
  473. If you say yes here you get support for National Semiconductor LM90,
  474. LM86, LM89 and LM99, Analog Devices ADM1032 and ADT7461, Maxim
  475. MAX6646, MAX6647, MAX6648, MAX6649, MAX6657, MAX6658, MAX6659,
  476. MAX6680, MAX6681 and MAX6692, and Winbond/Nuvoton W83L771AWG/ASG
  477. sensor chips.
  478. This driver can also be built as a module. If so, the module
  479. will be called lm90.
  480. config SENSORS_LM92
  481. tristate "National Semiconductor LM92 and compatibles"
  482. depends on I2C
  483. help
  484. If you say yes here you get support for National Semiconductor LM92
  485. and Maxim MAX6635 sensor chips.
  486. This driver can also be built as a module. If so, the module
  487. will be called lm92.
  488. config SENSORS_LM93
  489. tristate "National Semiconductor LM93 and compatibles"
  490. depends on I2C
  491. select HWMON_VID
  492. help
  493. If you say yes here you get support for National Semiconductor LM93
  494. sensor chips.
  495. This driver can also be built as a module. If so, the module
  496. will be called lm93.
  497. config SENSORS_LTC4215
  498. tristate "Linear Technology LTC4215"
  499. depends on I2C && EXPERIMENTAL
  500. default n
  501. help
  502. If you say yes here you get support for Linear Technology LTC4215
  503. Hot Swap Controller I2C interface.
  504. This driver can also be built as a module. If so, the module will
  505. be called ltc4215.
  506. config SENSORS_LTC4245
  507. tristate "Linear Technology LTC4245"
  508. depends on I2C && EXPERIMENTAL
  509. default n
  510. help
  511. If you say yes here you get support for Linear Technology LTC4245
  512. Multiple Supply Hot Swap Controller I2C interface.
  513. This driver can also be built as a module. If so, the module will
  514. be called ltc4245.
  515. config SENSORS_LM95241
  516. tristate "National Semiconductor LM95241 sensor chip"
  517. depends on I2C
  518. help
  519. If you say yes here you get support for LM95241 sensor chip.
  520. This driver can also be built as a module. If so, the module
  521. will be called lm95241.
  522. config SENSORS_MAX1111
  523. tristate "Maxim MAX1111 Multichannel, Serial 8-bit ADC chip"
  524. depends on SPI_MASTER
  525. help
  526. Say y here to support Maxim's MAX1111 ADC chips.
  527. This driver can also be built as a module. If so, the module
  528. will be called max1111.
  529. config SENSORS_MAX1619
  530. tristate "Maxim MAX1619 sensor chip"
  531. depends on I2C
  532. help
  533. If you say yes here you get support for MAX1619 sensor chip.
  534. This driver can also be built as a module. If so, the module
  535. will be called max1619.
  536. config SENSORS_MAX6650
  537. tristate "Maxim MAX6650 sensor chip"
  538. depends on I2C && EXPERIMENTAL
  539. help
  540. If you say yes here you get support for the MAX6650 / MAX6651
  541. sensor chips.
  542. This driver can also be built as a module. If so, the module
  543. will be called max6650.
  544. config SENSORS_PC87360
  545. tristate "National Semiconductor PC87360 family"
  546. select HWMON_VID
  547. help
  548. If you say yes here you get access to the hardware monitoring
  549. functions of the National Semiconductor PC8736x Super-I/O chips.
  550. The PC87360, PC87363 and PC87364 only have fan monitoring and
  551. control. The PC87365 and PC87366 additionally have voltage and
  552. temperature monitoring.
  553. This driver can also be built as a module. If so, the module
  554. will be called pc87360.
  555. config SENSORS_PC87427
  556. tristate "National Semiconductor PC87427"
  557. depends on EXPERIMENTAL
  558. help
  559. If you say yes here you get access to the hardware monitoring
  560. functions of the National Semiconductor PC87427 Super-I/O chip.
  561. The chip has two distinct logical devices, one for fan speed
  562. monitoring and control, and one for voltage and temperature
  563. monitoring. Only fan speed monitoring is supported right now.
  564. This driver can also be built as a module. If so, the module
  565. will be called pc87427.
  566. config SENSORS_PCF8591
  567. tristate "Philips PCF8591 ADC/DAC"
  568. depends on I2C
  569. default n
  570. help
  571. If you say yes here you get support for Philips PCF8591 4-channel
  572. ADC, 1-channel DAC chips.
  573. This driver can also be built as a module. If so, the module
  574. will be called pcf8591.
  575. These devices are hard to detect and rarely found on mainstream
  576. hardware. If unsure, say N.
  577. config SENSORS_SHT15
  578. tristate "Sensiron humidity and temperature sensors. SHT15 and compat."
  579. depends on GENERIC_GPIO
  580. help
  581. If you say yes here you get support for the Sensiron SHT10, SHT11,
  582. SHT15, SHT71, SHT75 humidity and temperature sensors.
  583. This driver can also be built as a module. If so, the module
  584. will be called sht15.
  585. config SENSORS_S3C
  586. tristate "S3C24XX/S3C64XX Inbuilt ADC"
  587. depends on ARCH_S3C2410
  588. help
  589. If you say yes here you get support for the on-board ADCs of
  590. the Samsung S3C24XX or S3C64XX series of SoC
  591. This driver can also be built as a module. If so, the module
  592. will be called s3c-hwmo.
  593. config SENSORS_S3C_RAW
  594. bool "Include raw channel attributes in sysfs"
  595. depends on SENSORS_S3C
  596. help
  597. Say Y here if you want to include raw copies of all the ADC
  598. channels in sysfs.
  599. config SENSORS_SIS5595
  600. tristate "Silicon Integrated Systems Corp. SiS5595"
  601. depends on PCI
  602. help
  603. If you say yes here you get support for the integrated sensors in
  604. SiS5595 South Bridges.
  605. This driver can also be built as a module. If so, the module
  606. will be called sis5595.
  607. config SENSORS_DME1737
  608. tristate "SMSC DME1737, SCH311x and compatibles"
  609. depends on I2C && EXPERIMENTAL
  610. select HWMON_VID
  611. help
  612. If you say yes here you get support for the hardware monitoring
  613. and fan control features of the SMSC DME1737, SCH311x, SCH5027, and
  614. Asus A8000 Super-I/O chips.
  615. This driver can also be built as a module. If so, the module
  616. will be called dme1737.
  617. config SENSORS_EMC1403
  618. tristate "SMSC EMC1403 thermal sensor"
  619. depends on I2C
  620. help
  621. If you say yes here you get support for the SMSC EMC1403
  622. temperature monitoring chip.
  623. Threshold values can be configured using sysfs.
  624. Data from the different diodes are accessible via sysfs.
  625. config SENSORS_SMSC47M1
  626. tristate "SMSC LPC47M10x and compatibles"
  627. help
  628. If you say yes here you get support for the integrated fan
  629. monitoring and control capabilities of the SMSC LPC47B27x,
  630. LPC47M10x, LPC47M112, LPC47M13x, LPC47M14x, LPC47M15x,
  631. LPC47M192, LPC47M292 and LPC47M997 chips.
  632. The temperature and voltage sensor features of the LPC47M15x,
  633. LPC47M192, LPC47M292 and LPC47M997 are supported by another
  634. driver, select also "SMSC LPC47M192 and compatibles" below for
  635. those.
  636. This driver can also be built as a module. If so, the module
  637. will be called smsc47m1.
  638. config SENSORS_SMSC47M192
  639. tristate "SMSC LPC47M192 and compatibles"
  640. depends on I2C && EXPERIMENTAL
  641. select HWMON_VID
  642. help
  643. If you say yes here you get support for the temperature and
  644. voltage sensors of the SMSC LPC47M192, LPC47M15x, LPC47M292
  645. and LPC47M997 chips.
  646. The fan monitoring and control capabilities of these chips
  647. are supported by another driver, select
  648. "SMSC LPC47M10x and compatibles" above. You need both drivers
  649. if you want fan control and voltage/temperature sensor support.
  650. This driver can also be built as a module. If so, the module
  651. will be called smsc47m192.
  652. config SENSORS_SMSC47B397
  653. tristate "SMSC LPC47B397-NC"
  654. depends on EXPERIMENTAL
  655. help
  656. If you say yes here you get support for the SMSC LPC47B397-NC
  657. sensor chip.
  658. This driver can also be built as a module. If so, the module
  659. will be called smsc47b397.
  660. config SENSORS_ADS7828
  661. tristate "Texas Instruments ADS7828"
  662. depends on I2C
  663. help
  664. If you say yes here you get support for Texas Instruments ADS7828
  665. 12-bit 8-channel ADC device.
  666. This driver can also be built as a module. If so, the module
  667. will be called ads7828.
  668. config SENSORS_ADS7871
  669. tristate "Texas Instruments ADS7871 A/D converter"
  670. depends on SPI
  671. help
  672. If you say yes here you get support for TI ADS7871 & ADS7870
  673. This driver can also be built as a module. If so, the module
  674. will be called ads7871.
  675. config SENSORS_AMC6821
  676. tristate "Texas Instruments AMC6821"
  677. depends on I2C && EXPERIMENTAL
  678. help
  679. If you say yes here you get support for the Texas Instruments
  680. AMC6821 hardware monitoring chips.
  681. This driver can also be build as a module. If so, the module
  682. will be called amc6821.
  683. config SENSORS_THMC50
  684. tristate "Texas Instruments THMC50 / Analog Devices ADM1022"
  685. depends on I2C && EXPERIMENTAL
  686. help
  687. If you say yes here you get support for Texas Instruments THMC50
  688. sensor chips and clones: the Analog Devices ADM1022.
  689. This driver can also be built as a module. If so, the module
  690. will be called thmc50.
  691. config SENSORS_TMP401
  692. tristate "Texas Instruments TMP401 and compatibles"
  693. depends on I2C && EXPERIMENTAL
  694. help
  695. If you say yes here you get support for Texas Instruments TMP401 and
  696. TMP411 temperature sensor chips.
  697. This driver can also be built as a module. If so, the module
  698. will be called tmp401.
  699. config SENSORS_TMP421
  700. tristate "Texas Instruments TMP421 and compatible"
  701. depends on I2C && EXPERIMENTAL
  702. help
  703. If you say yes here you get support for Texas Instruments TMP421,
  704. TMP422 and TMP423 temperature sensor chips.
  705. This driver can also be built as a module. If so, the module
  706. will be called tmp421.
  707. config SENSORS_VIA_CPUTEMP
  708. tristate "VIA CPU temperature sensor"
  709. depends on X86
  710. help
  711. If you say yes here you get support for the temperature
  712. sensor inside your CPU. Supported are all known variants of
  713. the VIA C7 and Nano.
  714. config SENSORS_VIA686A
  715. tristate "VIA686A"
  716. depends on PCI
  717. help
  718. If you say yes here you get support for the integrated sensors in
  719. Via 686A/B South Bridges.
  720. This driver can also be built as a module. If so, the module
  721. will be called via686a.
  722. config SENSORS_VT1211
  723. tristate "VIA VT1211"
  724. depends on EXPERIMENTAL
  725. select HWMON_VID
  726. help
  727. If you say yes here then you get support for hardware monitoring
  728. features of the VIA VT1211 Super-I/O chip.
  729. This driver can also be built as a module. If so, the module
  730. will be called vt1211.
  731. config SENSORS_VT8231
  732. tristate "VIA VT8231"
  733. depends on PCI
  734. select HWMON_VID
  735. help
  736. If you say yes here then you get support for the integrated sensors
  737. in the VIA VT8231 device.
  738. This driver can also be built as a module. If so, the module
  739. will be called vt8231.
  740. config SENSORS_W83781D
  741. tristate "Winbond W83781D, W83782D, W83783S, Asus AS99127F"
  742. depends on I2C
  743. select HWMON_VID
  744. help
  745. If you say yes here you get support for the Winbond W8378x series
  746. of sensor chips: the W83781D, W83782D and W83783S, and the similar
  747. Asus AS99127F.
  748. This driver can also be built as a module. If so, the module
  749. will be called w83781d.
  750. config SENSORS_W83791D
  751. tristate "Winbond W83791D"
  752. depends on I2C
  753. select HWMON_VID
  754. help
  755. If you say yes here you get support for the Winbond W83791D chip.
  756. This driver can also be built as a module. If so, the module
  757. will be called w83791d.
  758. config SENSORS_W83792D
  759. tristate "Winbond W83792D"
  760. depends on I2C && EXPERIMENTAL
  761. help
  762. If you say yes here you get support for the Winbond W83792D chip.
  763. This driver can also be built as a module. If so, the module
  764. will be called w83792d.
  765. config SENSORS_W83793
  766. tristate "Winbond W83793"
  767. depends on I2C && EXPERIMENTAL
  768. select HWMON_VID
  769. help
  770. If you say yes here you get support for the Winbond W83793
  771. hardware monitoring chip, including support for the integrated
  772. watchdog.
  773. This driver can also be built as a module. If so, the module
  774. will be called w83793.
  775. config SENSORS_W83L785TS
  776. tristate "Winbond W83L785TS-S"
  777. depends on I2C && EXPERIMENTAL
  778. help
  779. If you say yes here you get support for the Winbond W83L785TS-S
  780. sensor chip, which is used on the Asus A7N8X, among other
  781. motherboards.
  782. This driver can also be built as a module. If so, the module
  783. will be called w83l785ts.
  784. config SENSORS_W83L786NG
  785. tristate "Winbond W83L786NG, W83L786NR"
  786. depends on I2C && EXPERIMENTAL
  787. help
  788. If you say yes here you get support for the Winbond W83L786NG
  789. and W83L786NR sensor chips.
  790. This driver can also be built as a module. If so, the module
  791. will be called w83l786ng.
  792. config SENSORS_W83627HF
  793. tristate "Winbond W83627HF, W83627THF, W83637HF, W83687THF, W83697HF"
  794. select HWMON_VID
  795. help
  796. If you say yes here you get support for the Winbond W836X7 series
  797. of sensor chips: the W83627HF, W83627THF, W83637HF, W83687THF and
  798. W83697HF.
  799. This driver can also be built as a module. If so, the module
  800. will be called w83627hf.
  801. config SENSORS_W83627EHF
  802. tristate "Winbond W83627EHF/EHG/DHG, W83667HG"
  803. select HWMON_VID
  804. help
  805. If you say yes here you get support for the hardware
  806. monitoring functionality of the Winbond W83627EHF Super-I/O chip.
  807. This driver also supports the W83627EHG, which is the lead-free
  808. version of the W83627EHF, and the W83627DHG, which is a similar
  809. chip suited for specific Intel processors that use PECI such as
  810. the Core 2 Duo.
  811. This driver also supports the W83667HG chip.
  812. This driver can also be built as a module. If so, the module
  813. will be called w83627ehf.
  814. config SENSORS_WM831X
  815. tristate "WM831x PMICs"
  816. depends on MFD_WM831X
  817. help
  818. If you say yes here you get support for the hardware
  819. monitoring functionality of the Wolfson Microelectronics
  820. WM831x series of PMICs.
  821. This driver can also be built as a module. If so, the module
  822. will be called wm831x-hwmon.
  823. config SENSORS_WM8350
  824. tristate "Wolfson Microelectronics WM835x"
  825. depends on MFD_WM8350
  826. help
  827. If you say yes here you get support for the hardware
  828. monitoring features of the WM835x series of PMICs.
  829. This driver can also be built as a module. If so, the module
  830. will be called wm8350-hwmon.
  831. config SENSORS_ULTRA45
  832. tristate "Sun Ultra45 PIC16F747"
  833. depends on SPARC64
  834. help
  835. This driver provides support for the Ultra45 workstation environmental
  836. sensors.
  837. config SENSORS_HDAPS
  838. tristate "IBM Hard Drive Active Protection System (hdaps)"
  839. depends on INPUT && X86
  840. select INPUT_POLLDEV
  841. default n
  842. help
  843. This driver provides support for the IBM Hard Drive Active Protection
  844. System (hdaps), which provides an accelerometer and other misc. data.
  845. ThinkPads starting with the R50, T41, and X40 are supported. The
  846. accelerometer data is readable via sysfs.
  847. This driver also provides an absolute input class device, allowing
  848. the laptop to act as a pinball machine-esque joystick.
  849. If your ThinkPad is not recognized by the driver, please update to latest
  850. BIOS. This is especially the case for some R52 ThinkPads.
  851. Say Y here if you have an applicable laptop and want to experience
  852. the awesome power of hdaps.
  853. config SENSORS_LIS3_SPI
  854. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (SPI)"
  855. depends on !ACPI && SPI_MASTER && INPUT
  856. select INPUT_POLLDEV
  857. default n
  858. help
  859. This driver provides support for the LIS3LV02Dx accelerometer connected
  860. via SPI. The accelerometer data is readable via
  861. /sys/devices/platform/lis3lv02d.
  862. This driver also provides an absolute input class device, allowing
  863. the laptop to act as a pinball machine-esque joystick.
  864. This driver can also be built as modules. If so, the core module
  865. will be called lis3lv02d and a specific module for the SPI transport
  866. is called lis3lv02d_spi.
  867. config SENSORS_LIS3_I2C
  868. tristate "STMicroeletronics LIS3LV02Dx three-axis digital accelerometer (I2C)"
  869. depends on I2C && INPUT
  870. select INPUT_POLLDEV
  871. default n
  872. help
  873. This driver provides support for the LIS3LV02Dx accelerometer connected
  874. via I2C. The accelerometer data is readable via
  875. /sys/devices/platform/lis3lv02d.
  876. This driver also provides an absolute input class device, allowing
  877. the device to act as a pinball machine-esque joystick.
  878. This driver can also be built as modules. If so, the core module
  879. will be called lis3lv02d and a specific module for the I2C transport
  880. is called lis3lv02d_i2c.
  881. config SENSORS_APPLESMC
  882. tristate "Apple SMC (Motion sensor, light sensor, keyboard backlight)"
  883. depends on INPUT && X86
  884. select NEW_LEDS
  885. select LEDS_CLASS
  886. select INPUT_POLLDEV
  887. default n
  888. help
  889. This driver provides support for the Apple System Management
  890. Controller, which provides an accelerometer (Apple Sudden Motion
  891. Sensor), light sensors, temperature sensors, keyboard backlight
  892. control and fan control.
  893. Only Intel-based Apple's computers are supported (MacBook Pro,
  894. MacBook, MacMini).
  895. Data from the different sensors, keyboard backlight control and fan
  896. control are accessible via sysfs.
  897. This driver also provides an absolute input class device, allowing
  898. the laptop to act as a pinball machine-esque joystick.
  899. Say Y here if you have an applicable laptop and want to experience
  900. the awesome power of applesmc.
  901. config SENSORS_MC13783_ADC
  902. tristate "Freescale MC13783 ADC"
  903. depends on MFD_MC13783
  904. help
  905. Support for the A/D converter on MC13783 PMIC.
  906. if ACPI
  907. comment "ACPI drivers"
  908. config SENSORS_ATK0110
  909. tristate "ASUS ATK0110"
  910. depends on X86 && EXPERIMENTAL
  911. help
  912. If you say yes here you get support for the ACPI hardware
  913. monitoring interface found in many ASUS motherboards. This
  914. driver will provide readings of fans, voltages and temperatures
  915. through the system firmware.
  916. This driver can also be built as a module. If so, the module
  917. will be called asus_atk0110.
  918. config SENSORS_LIS3LV02D
  919. tristate "STMicroeletronics LIS3* three-axis digital accelerometer"
  920. depends on INPUT
  921. select INPUT_POLLDEV
  922. select NEW_LEDS
  923. select LEDS_CLASS
  924. default n
  925. help
  926. This driver provides support for the LIS3* accelerometers, such as the
  927. LIS3LV02DL or the LIS331DL. In particular, it can be found in a number
  928. of HP laptops, which have the "Mobile Data Protection System 3D" or
  929. "3D DriveGuard" feature. On such systems the driver should load
  930. automatically (via ACPI alias). The accelerometer might also be found
  931. in other systems, connected via SPI or I2C. The accelerometer data is
  932. readable via /sys/devices/platform/lis3lv02d.
  933. This driver also provides an absolute input class device, allowing
  934. a laptop to act as a pinball machine-esque joystick. It provides also
  935. a misc device which can be used to detect free-fall. On HP laptops,
  936. if the led infrastructure is activated, support for a led indicating
  937. disk protection will be provided as hp::hddprotect. For more
  938. information on the feature, refer to Documentation/hwmon/lis3lv02d.
  939. This driver can also be built as modules. If so, the core module
  940. will be called lis3lv02d and a specific module for HP laptops will be
  941. called hp_accel.
  942. Say Y here if you have an applicable laptop and want to experience
  943. the awesome power of lis3lv02d.
  944. endif # ACPI
  945. endif # HWMON