Kconfig 48 KB

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