Kconfig 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649
  1. menuconfig POWER_SUPPLY
  2. bool "Power supply class support"
  3. help
  4. Say Y here to enable power supply class support. This allows
  5. power supply (batteries, AC, USB) monitoring by userspace
  6. via sysfs and uevent (if available) and/or APM kernel interface
  7. (if selected below).
  8. if POWER_SUPPLY
  9. config POWER_SUPPLY_DEBUG
  10. bool "Power supply debug"
  11. help
  12. Say Y here to enable debugging messages for power supply class
  13. and drivers.
  14. config PDA_POWER
  15. tristate "Generic PDA/phone power driver"
  16. depends on !S390
  17. help
  18. Say Y here to enable generic power driver for PDAs and phones with
  19. one or two external power supplies (AC/USB) connected to main and
  20. backup batteries, and optional builtin charger.
  21. config APM_POWER
  22. tristate "APM emulation for class batteries"
  23. depends on APM_EMULATION
  24. help
  25. Say Y here to enable support APM status emulation using
  26. battery class devices.
  27. config GENERIC_ADC_BATTERY
  28. tristate "Generic battery support using IIO"
  29. depends on IIO
  30. help
  31. Say Y here to enable support for the generic battery driver
  32. which uses IIO framework to read adc.
  33. config MAX8925_POWER
  34. tristate "MAX8925 battery charger support"
  35. depends on MFD_MAX8925
  36. help
  37. Say Y here to enable support for the battery charger in the Maxim
  38. MAX8925 PMIC.
  39. config WM831X_BACKUP
  40. tristate "WM831X backup battery charger support"
  41. depends on MFD_WM831X
  42. help
  43. Say Y here to enable support for the backup battery charger
  44. in the Wolfson Microelectronics WM831x PMICs.
  45. config WM831X_POWER
  46. tristate "WM831X PMU support"
  47. depends on MFD_WM831X
  48. help
  49. Say Y here to enable support for the power management unit
  50. provided by Wolfson Microelectronics WM831x PMICs.
  51. config WM8350_POWER
  52. tristate "WM8350 PMU support"
  53. depends on MFD_WM8350
  54. help
  55. Say Y here to enable support for the power management unit
  56. provided by the Wolfson Microelectronics WM8350 PMIC.
  57. config TEST_POWER
  58. tristate "Test power driver"
  59. help
  60. This driver is used for testing. It's safe to say M here.
  61. config BATTERY_88PM860X
  62. tristate "Marvell 88PM860x battery driver"
  63. depends on MFD_88PM860X
  64. help
  65. Say Y here to enable battery monitor for Marvell 88PM860x chip.
  66. config CHARGER_ADP5061
  67. tristate "ADP5061 battery charger driver"
  68. depends on I2C
  69. select REGMAP_I2C
  70. help
  71. Say Y here to enable support for the ADP5061 standalone battery
  72. charger.
  73. This driver can be built as a module. If so, the module will be
  74. called adp5061.
  75. config BATTERY_ACT8945A
  76. tristate "Active-semi ACT8945A charger driver"
  77. depends on MFD_ACT8945A || COMPILE_TEST
  78. help
  79. Say Y here to enable support for power supply provided by
  80. Active-semi ActivePath ACT8945A charger.
  81. config BATTERY_CPCAP
  82. tristate "Motorola CPCAP PMIC battery driver"
  83. depends on MFD_CPCAP && IIO
  84. default MFD_CPCAP
  85. help
  86. Say Y here to enable support for battery on Motorola
  87. phones and tablets such as droid 4.
  88. config BATTERY_DS2760
  89. tristate "DS2760 battery driver (HP iPAQ & others)"
  90. depends on W1
  91. help
  92. Say Y here to enable support for batteries with ds2760 chip.
  93. config BATTERY_DS2780
  94. tristate "DS2780 battery driver"
  95. depends on HAS_IOMEM
  96. select W1
  97. select W1_SLAVE_DS2780
  98. help
  99. Say Y here to enable support for batteries with ds2780 chip.
  100. config BATTERY_DS2781
  101. tristate "DS2781 battery driver"
  102. depends on HAS_IOMEM
  103. select W1
  104. select W1_SLAVE_DS2781
  105. help
  106. If you enable this you will have the DS2781 battery driver support.
  107. The battery monitor chip is used in many batteries/devices
  108. as the one who is responsible for charging/discharging/monitoring
  109. Li+ batteries.
  110. If you are unsure, say N.
  111. config BATTERY_DS2782
  112. tristate "DS2782/DS2786 standalone gas-gauge"
  113. depends on I2C
  114. help
  115. Say Y here to enable support for the DS2782/DS2786 standalone battery
  116. gas-gauge.
  117. config BATTERY_LEGO_EV3
  118. tristate "LEGO MINDSTORMS EV3 battery"
  119. depends on OF && IIO && GPIOLIB
  120. help
  121. Say Y here to enable support for the LEGO MINDSTORMS EV3 battery.
  122. config BATTERY_PMU
  123. tristate "Apple PMU battery"
  124. depends on PPC32 && ADB_PMU
  125. help
  126. Say Y here to expose battery information on Apple machines
  127. through the generic battery class.
  128. config BATTERY_OLPC
  129. tristate "One Laptop Per Child battery"
  130. depends on X86_32 && OLPC
  131. help
  132. Say Y to enable support for the battery on the OLPC laptop.
  133. config BATTERY_TOSA
  134. tristate "Sharp SL-6000 (tosa) battery"
  135. depends on MACH_TOSA && MFD_TC6393XB && TOUCHSCREEN_WM97XX
  136. help
  137. Say Y to enable support for the battery on the Sharp Zaurus
  138. SL-6000 (tosa) models.
  139. config BATTERY_COLLIE
  140. tristate "Sharp SL-5500 (collie) battery"
  141. depends on SA1100_COLLIE && MCP_UCB1200
  142. help
  143. Say Y to enable support for the battery on the Sharp Zaurus
  144. SL-5500 (collie) models.
  145. config BATTERY_IPAQ_MICRO
  146. tristate "iPAQ Atmel Micro ASIC battery driver"
  147. depends on MFD_IPAQ_MICRO
  148. help
  149. Choose this option if you want to monitor battery status on
  150. Compaq/HP iPAQ h3100 and h3600.
  151. config BATTERY_WM97XX
  152. bool "WM97xx generic battery driver"
  153. depends on TOUCHSCREEN_WM97XX=y
  154. help
  155. Say Y to enable support for battery measured by WM97xx aux port.
  156. config BATTERY_SBS
  157. tristate "SBS Compliant gas gauge"
  158. depends on I2C
  159. help
  160. Say Y to include support for SBS battery driver for SBS-compliant
  161. gas gauges.
  162. config CHARGER_SBS
  163. tristate "SBS Compliant charger"
  164. depends on I2C
  165. help
  166. Say Y to include support for SBS compliant battery chargers.
  167. config MANAGER_SBS
  168. tristate "Smart Battery System Manager"
  169. depends on I2C && I2C_MUX && GPIOLIB
  170. select I2C_SMBUS
  171. help
  172. Say Y here to include support for Smart Battery System Manager
  173. ICs. The driver reports online and charging status via sysfs.
  174. It presents itself also as I2C mux which allows to bind
  175. smart battery driver to its ports.
  176. Supported is for example LTC1760.
  177. This driver can also be built as a module. If so, the module will be
  178. called sbs-manager.
  179. config BATTERY_BQ27XXX
  180. tristate "BQ27xxx battery driver"
  181. help
  182. Say Y here to enable support for batteries with BQ27xxx chips.
  183. config BATTERY_BQ27XXX_I2C
  184. tristate "BQ27xxx I2C support"
  185. depends on BATTERY_BQ27XXX
  186. depends on I2C
  187. default y
  188. help
  189. Say Y here to enable support for batteries with BQ27xxx chips
  190. connected over an I2C bus.
  191. config BATTERY_BQ27XXX_HDQ
  192. tristate "BQ27xxx HDQ support"
  193. depends on BATTERY_BQ27XXX
  194. depends on W1
  195. default y
  196. help
  197. Say Y here to enable support for batteries with BQ27xxx chips
  198. connected over an HDQ bus.
  199. config BATTERY_BQ27XXX_DT_UPDATES_NVM
  200. bool "BQ27xxx support for update of NVM/flash data memory"
  201. depends on BATTERY_BQ27XXX_I2C
  202. help
  203. Say Y here to enable devicetree monitored-battery config to update
  204. NVM/flash data memory. Only enable this option for devices with a
  205. fuel gauge mounted on the circuit board, and a battery that cannot
  206. easily be replaced with one of a different type. Not for
  207. general-purpose kernels, as this can cause misconfiguration of a
  208. smart battery with embedded NVM/flash.
  209. config BATTERY_DA9030
  210. tristate "DA9030 battery driver"
  211. depends on PMIC_DA903X
  212. help
  213. Say Y here to enable support for batteries charger integrated into
  214. DA9030 PMIC.
  215. config BATTERY_DA9052
  216. tristate "Dialog DA9052 Battery"
  217. depends on PMIC_DA9052
  218. help
  219. Say Y here to enable support for batteries charger integrated into
  220. DA9052 PMIC.
  221. config CHARGER_DA9150
  222. tristate "Dialog Semiconductor DA9150 Charger support"
  223. depends on MFD_DA9150
  224. depends on DA9150_GPADC
  225. depends on IIO
  226. help
  227. Say Y here to enable support for charger unit of the DA9150
  228. Integrated Charger & Fuel-Gauge IC.
  229. This driver can also be built as a module. If so, the module will be
  230. called da9150-charger.
  231. config BATTERY_DA9150
  232. tristate "Dialog Semiconductor DA9150 Fuel Gauge support"
  233. depends on MFD_DA9150
  234. help
  235. Say Y here to enable support for the Fuel-Gauge unit of the DA9150
  236. Integrated Charger & Fuel-Gauge IC
  237. This driver can also be built as a module. If so, the module will be
  238. called da9150-fg.
  239. config CHARGER_AXP20X
  240. tristate "X-Powers AXP20X and AXP22X AC power supply driver"
  241. depends on MFD_AXP20X
  242. depends on AXP20X_ADC
  243. depends on IIO
  244. help
  245. Say Y here to enable support for X-Powers AXP20X and AXP22X PMICs' AC
  246. power supply.
  247. This driver can also be built as a module. If so, the module will be
  248. called axp20x_ac_power.
  249. config BATTERY_AXP20X
  250. tristate "X-Powers AXP20X battery driver"
  251. depends on MFD_AXP20X
  252. depends on AXP20X_ADC
  253. depends on IIO
  254. help
  255. Say Y here to enable support for X-Powers AXP20X PMICs' battery power
  256. supply.
  257. This driver can also be built as a module. If so, the module will be
  258. called axp20x_battery.
  259. config AXP20X_POWER
  260. tristate "AXP20x power supply driver"
  261. depends on MFD_AXP20X
  262. depends on IIO
  263. help
  264. This driver provides support for the power supply features of
  265. AXP20x PMIC.
  266. config AXP288_CHARGER
  267. tristate "X-Powers AXP288 Charger"
  268. depends on MFD_AXP20X && EXTCON_AXP288
  269. help
  270. Say yes here to have support X-Power AXP288 power management IC (PMIC)
  271. integrated charger.
  272. config AXP288_FUEL_GAUGE
  273. tristate "X-Powers AXP288 Fuel Gauge"
  274. depends on MFD_AXP20X && IIO
  275. help
  276. Say yes here to have support for X-Power power management IC (PMIC)
  277. Fuel Gauge. The device provides battery statistics and status
  278. monitoring as well as alerts for battery over/under voltage and
  279. over/under temperature.
  280. config BATTERY_MAX17040
  281. tristate "Maxim MAX17040 Fuel Gauge"
  282. depends on I2C
  283. help
  284. MAX17040 is fuel-gauge systems for lithium-ion (Li+) batteries
  285. in handheld and portable equipment. The MAX17040 is configured
  286. to operate with a single lithium cell
  287. config BATTERY_MAX17042
  288. tristate "Maxim MAX17042/17047/17050/8997/8966 Fuel Gauge"
  289. depends on I2C
  290. select REGMAP_I2C
  291. help
  292. MAX17042 is fuel-gauge systems for lithium-ion (Li+) batteries
  293. in handheld and portable equipment. The MAX17042 is configured
  294. to operate with a single lithium cell. MAX8997 and MAX8966 are
  295. multi-function devices that include fuel gauages that are compatible
  296. with MAX17042. This driver also supports max17047/50 chips which are
  297. improved version of max17042.
  298. config BATTERY_MAX1721X
  299. tristate "MAX17211/MAX17215 standalone gas-gauge"
  300. depends on W1
  301. select REGMAP_W1
  302. help
  303. MAX1721x is fuel-gauge systems for lithium-ion (Li+) batteries
  304. in handheld and portable equipment. MAX17211 used with single cell
  305. battery. MAX17215 designed for muticell battery. Both them have
  306. OneWire (W1) host interface.
  307. Say Y here to enable support for the MAX17211/MAX17215 standalone
  308. battery gas-gauge.
  309. config BATTERY_Z2
  310. tristate "Z2 battery driver"
  311. depends on I2C && MACH_ZIPIT2
  312. help
  313. Say Y to include support for the battery on the Zipit Z2.
  314. config BATTERY_S3C_ADC
  315. tristate "Battery driver for Samsung ADC based monitoring"
  316. depends on S3C_ADC
  317. help
  318. Say Y here to enable support for iPAQ h1930/h1940/rx1950 battery
  319. config BATTERY_TWL4030_MADC
  320. tristate "TWL4030 MADC battery driver"
  321. depends on TWL4030_MADC
  322. help
  323. Say Y here to enable this dumb driver for batteries managed
  324. through the TWL4030 MADC.
  325. config CHARGER_88PM860X
  326. tristate "Marvell 88PM860x Charger driver"
  327. depends on MFD_88PM860X && BATTERY_88PM860X
  328. help
  329. Say Y here to enable charger for Marvell 88PM860x chip.
  330. config CHARGER_PCF50633
  331. tristate "NXP PCF50633 MBC"
  332. depends on MFD_PCF50633
  333. help
  334. Say Y to include support for NXP PCF50633 Main Battery Charger.
  335. config BATTERY_JZ4740
  336. tristate "Ingenic JZ4740 battery"
  337. depends on MACH_JZ4740
  338. depends on MFD_JZ4740_ADC
  339. help
  340. Say Y to enable support for the battery on Ingenic JZ4740 based
  341. boards.
  342. This driver can be build as a module. If so, the module will be
  343. called jz4740-battery.
  344. config BATTERY_RX51
  345. tristate "Nokia RX-51 (N900) battery driver"
  346. depends on TWL4030_MADC
  347. help
  348. Say Y here to enable support for battery information on Nokia
  349. RX-51, also known as N900 tablet.
  350. config CHARGER_CPCAP
  351. tristate "CPCAP PMIC Charger Driver"
  352. depends on MFD_CPCAP && IIO
  353. depends on OMAP_USB2 || (!OMAP_USB2 && COMPILE_TEST)
  354. default MFD_CPCAP
  355. help
  356. Say Y to enable support for CPCAP PMIC charger driver for Motorola
  357. mobile devices such as Droid 4.
  358. config CHARGER_ISP1704
  359. tristate "ISP1704 USB Charger Detection"
  360. depends on USB_PHY
  361. depends on USB_GADGET || !USB_GADGET # if USB_GADGET=m, this can't be 'y'
  362. help
  363. Say Y to enable support for USB Charger Detection with
  364. ISP1707/ISP1704 USB transceivers.
  365. config CHARGER_MAX8903
  366. tristate "MAX8903 Battery DC-DC Charger for USB and Adapter Power"
  367. help
  368. Say Y to enable support for the MAX8903 DC-DC charger and sysfs.
  369. The driver supports controlling charger-enable and current-limit
  370. pins based on the status of charger connections with interrupt
  371. handlers.
  372. config CHARGER_TWL4030
  373. tristate "OMAP TWL4030 BCI charger driver"
  374. depends on IIO && TWL4030_CORE
  375. help
  376. Say Y here to enable support for TWL4030 Battery Charge Interface.
  377. config CHARGER_LP8727
  378. tristate "TI/National Semiconductor LP8727 charger driver"
  379. depends on I2C
  380. help
  381. Say Y here to enable support for LP8727 Charger Driver.
  382. config CHARGER_LP8788
  383. tristate "TI LP8788 charger driver"
  384. depends on MFD_LP8788
  385. depends on LP8788_ADC
  386. depends on IIO
  387. help
  388. Say Y to enable support for the LP8788 linear charger.
  389. config CHARGER_GPIO
  390. tristate "GPIO charger"
  391. depends on GPIOLIB || COMPILE_TEST
  392. help
  393. Say Y to include support for chargers which report their online status
  394. through a GPIO pin.
  395. This driver can be build as a module. If so, the module will be
  396. called gpio-charger.
  397. config CHARGER_MANAGER
  398. bool "Battery charger manager for multiple chargers"
  399. depends on REGULATOR
  400. select EXTCON
  401. help
  402. Say Y to enable charger-manager support, which allows multiple
  403. chargers attached to a battery and multiple batteries attached to a
  404. system. The charger-manager also can monitor charging status in
  405. runtime and in suspend-to-RAM by waking up the system periodically
  406. with help of suspend_again support.
  407. config CHARGER_LTC3651
  408. tristate "LTC3651 charger"
  409. depends on GPIOLIB
  410. help
  411. Say Y to include support for the LTC3651 battery charger which reports
  412. its status via GPIO lines.
  413. config CHARGER_MAX14577
  414. tristate "Maxim MAX14577/77836 battery charger driver"
  415. depends on MFD_MAX14577
  416. help
  417. Say Y to enable support for the battery charger control sysfs and
  418. platform data of MAX14577/77836 MUICs.
  419. config CHARGER_DETECTOR_MAX14656
  420. tristate "Maxim MAX14656 USB charger detector"
  421. depends on I2C
  422. depends on OF
  423. help
  424. Say Y to enable support for the Maxim MAX14656 USB charger detector.
  425. The device is compliant with the USB Battery Charging Specification
  426. Revision 1.2 and can be found e.g. in Kindle 4/5th generation
  427. readers and certain LG devices.
  428. config CHARGER_MAX77693
  429. tristate "Maxim MAX77693 battery charger driver"
  430. depends on MFD_MAX77693
  431. help
  432. Say Y to enable support for the Maxim MAX77693 battery charger.
  433. config CHARGER_MAX8997
  434. tristate "Maxim MAX8997/MAX8966 PMIC battery charger driver"
  435. depends on MFD_MAX8997 && REGULATOR_MAX8997
  436. help
  437. Say Y to enable support for the battery charger control sysfs and
  438. platform data of MAX8997/LP3974 PMICs.
  439. config CHARGER_MAX8998
  440. tristate "Maxim MAX8998/LP3974 PMIC battery charger driver"
  441. depends on MFD_MAX8998 && REGULATOR_MAX8998
  442. help
  443. Say Y to enable support for the battery charger control sysfs and
  444. platform data of MAX8998/LP3974 PMICs.
  445. config CHARGER_QCOM_SMBB
  446. tristate "Qualcomm Switch-Mode Battery Charger and Boost"
  447. depends on MFD_SPMI_PMIC || COMPILE_TEST
  448. depends on OF
  449. depends on EXTCON
  450. depends on REGULATOR
  451. help
  452. Say Y to include support for the Switch-Mode Battery Charger and
  453. Boost (SMBB) hardware found in Qualcomm PM8941 PMICs. The charger
  454. is an integrated, single-cell lithium-ion battery charger. DT
  455. configuration is required for loading, see the devicetree
  456. documentation for more detail. The base name for this driver is
  457. 'pm8941_charger'.
  458. config CHARGER_BQ2415X
  459. tristate "TI BQ2415x battery charger driver"
  460. depends on I2C
  461. help
  462. Say Y to enable support for the TI BQ2415x battery charger
  463. PMICs.
  464. You'll need this driver to charge batteries on e.g. Nokia
  465. RX-51/N900.
  466. config CHARGER_BQ24190
  467. tristate "TI BQ24190 battery charger driver"
  468. depends on I2C
  469. depends on EXTCON
  470. depends on GPIOLIB || COMPILE_TEST
  471. help
  472. Say Y to enable support for the TI BQ24190 battery charger.
  473. config CHARGER_BQ24257
  474. tristate "TI BQ24250/24251/24257 battery charger driver"
  475. depends on I2C
  476. depends on GPIOLIB || COMPILE_TEST
  477. depends on REGMAP_I2C
  478. help
  479. Say Y to enable support for the TI BQ24250, BQ24251, and BQ24257 battery
  480. chargers.
  481. config CHARGER_BQ24735
  482. tristate "TI BQ24735 battery charger support"
  483. depends on I2C
  484. depends on GPIOLIB || COMPILE_TEST
  485. help
  486. Say Y to enable support for the TI BQ24735 battery charger.
  487. config CHARGER_BQ25890
  488. tristate "TI BQ25890 battery charger driver"
  489. depends on I2C
  490. depends on GPIOLIB || COMPILE_TEST
  491. select REGMAP_I2C
  492. help
  493. Say Y to enable support for the TI BQ25890 battery charger.
  494. config CHARGER_SMB347
  495. tristate "Summit Microelectronics SMB347 Battery Charger"
  496. depends on I2C
  497. select REGMAP_I2C
  498. help
  499. Say Y to include support for Summit Microelectronics SMB347
  500. Battery Charger.
  501. config CHARGER_TPS65090
  502. tristate "TPS65090 battery charger driver"
  503. depends on MFD_TPS65090
  504. help
  505. Say Y here to enable support for battery charging with TPS65090
  506. PMIC chips.
  507. config CHARGER_TPS65217
  508. tristate "TPS65217 battery charger driver"
  509. depends on MFD_TPS65217
  510. help
  511. Say Y here to enable support for battery charging with TPS65217
  512. PMIC chips.
  513. config BATTERY_GAUGE_LTC2941
  514. tristate "LTC2941/LTC2943 Battery Gauge Driver"
  515. depends on I2C
  516. help
  517. Say Y here to include support for LTC2941 and LTC2943 Battery
  518. Gauge IC. The driver reports the charge count continuously, and
  519. measures the voltage and temperature every 10 seconds.
  520. config AB8500_BM
  521. bool "AB8500 Battery Management Driver"
  522. depends on AB8500_CORE && AB8500_GPADC
  523. help
  524. Say Y to include support for AB8500 battery management.
  525. config BATTERY_GOLDFISH
  526. tristate "Goldfish battery driver"
  527. depends on GOLDFISH || COMPILE_TEST
  528. depends on HAS_IOMEM
  529. help
  530. Say Y to enable support for the battery and AC power in the
  531. Goldfish emulator.
  532. config BATTERY_RT5033
  533. tristate "RT5033 fuel gauge support"
  534. depends on MFD_RT5033
  535. help
  536. This adds support for battery fuel gauge in Richtek RT5033 PMIC.
  537. The fuelgauge calculates and determines the battery state of charge
  538. according to battery open circuit voltage.
  539. config CHARGER_RT9455
  540. tristate "Richtek RT9455 battery charger driver"
  541. depends on I2C
  542. depends on GPIOLIB || COMPILE_TEST
  543. select REGMAP_I2C
  544. help
  545. Say Y to enable support for Richtek RT9455 battery charger.
  546. config CHARGER_CROS_USBPD
  547. tristate "ChromeOS EC based USBPD charger"
  548. depends on MFD_CROS_EC
  549. default n
  550. help
  551. Say Y here to enable ChromeOS EC based USBPD charger
  552. driver. This driver gets various bits of information about
  553. what is connected to USB PD ports from the EC and converts
  554. that into power_supply properties.
  555. endif # POWER_SUPPLY