mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-02 14:56:44 +07:00
0eb5d5ab3e
This adds a regulator driver for the TI bq24022 Single-Chip Li-Ion Charger with its nCE and ISET2 pins connected to GPIOs. Signed-off-by: Philipp Zabel <philipp.zabel@gmail.com> Signed-off-by: Liam Girdwood <lg@opensource.wolfsonmicro.com>
22 lines
659 B
C
22 lines
659 B
C
/*
|
|
* Support for TI bq24022 (bqTINY-II) Dual Input (USB/AC Adpater)
|
|
* 1-Cell Li-Ion Charger connected via GPIOs.
|
|
*
|
|
* Copyright (c) 2008 Philipp Zabel
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* bq24022_mach_info - platform data for bq24022
|
|
* @gpio_nce: GPIO line connected to the nCE pin, used to enable / disable charging
|
|
* @gpio_iset2: GPIO line connected to the ISET2 pin, used to limit charging current to 100 mA / 500 mA
|
|
*/
|
|
struct bq24022_mach_info {
|
|
int gpio_nce;
|
|
int gpio_iset2;
|
|
};
|