The following patch series adds initial support for the Dialog Semiconductor DA9052/53 PMICs.
The DA9052/53 PMICs support many functionalities like GPIOs, regulators, power-supply, touchscreen, rtc, backlight, etc. So these patches are applicable to different sub-systems of the kernel separately. This patch series adds support for MFD, Regulator, Battery and GPIO. Support for rest of the devices will be added later. All the other patches depend on the MFD module of the patch series. There is no other interdependance of patches. Ashish Jangam (6): [MFD]: Core module of DA9052/53 PMICs with I2C and regmap support. [MFD]: Incremental with ADC support. Battery patch also depends on this. [MFD]: Incremental with SPI support. GPIO: Incremental patch for DA9052/53 PMICs gpio driver. [REGULATOR]: Support for DA9052/53 PMICs regulators. [POWER]: Support for DA9052/53 battery. drivers/gpio/gpio-da9052.c | 26 +- drivers/mfd/Kconfig | 28 ++ drivers/mfd/Makefile | 5 + drivers/mfd/da9052-core.c | 553 ++++++++++++++++++++++++ drivers/mfd/da9052-i2c.c | 144 +++++++ drivers/mfd/da9052-spi.c | 121 ++++++ drivers/power/Kconfig | 7 + drivers/power/Makefile | 1 + drivers/power/da9052-battery.c | 615 +++++++++++++++++++++++++++ drivers/regulator/Kconfig | 7 + drivers/regulator/Makefile | 1 + drivers/regulator/da9052-regulator.c | 600 ++++++++++++++++++++++++++ include/linux/mfd/da9052/da9052.h | 173 ++++++++ include/linux/mfd/da9052/gpio.h | 46 ++ include/linux/mfd/da9052/pdata.h | 40 ++ include/linux/mfd/da9052/reg.h | 778 ++++++++++++++++++++++++++++++++++ 16 files changed, 3122 insertions(+), 23 deletions(-) create mode 100644 drivers/mfd/da9052-core.c create mode 100644 drivers/mfd/da9052-i2c.c create mode 100644 drivers/mfd/da9052-spi.c create mode 100644 drivers/power/da9052-battery.c create mode 100644 drivers/regulator/da9052-regulator.c create mode 100644 include/linux/mfd/da9052/da9052.h create mode 100644 include/linux/mfd/da9052/gpio.h create mode 100644 include/linux/mfd/da9052/pdata.h create mode 100644 include/linux/mfd/da9052/reg.h _______________________________________________ linaro-dev mailing list linaro-dev@lists.linaro.org http://lists.linaro.org/mailman/listinfo/linaro-dev