This patchset adds a core driver and regulators driver for Hi6421 PMIC SoC.
Hi6421 is a PMIC SoC designed and manufactured by HiSilicon Ltd. It includes multi-functions, such as regulators, codec, ADCs, Coulomb counter, etc. Hi6421 can be reused in various Hi3620 based boards. Memory-mapped I/O is the way used by application processor to communicate with Hi6421. Guodong Xu (3): mfd: Add hi6421 PMIC core driver regulator: add driver for hi6421 voltage regulator ARM: dts: add dedicated dtsi for hi6421 .../bindings/regulator/hi6421-regulator.txt | 82 +++ arch/arm/boot/dts/hi6421.dtsi | 489 +++++++++++++++++ drivers/mfd/Kconfig | 11 + drivers/mfd/Makefile | 1 + drivers/mfd/hi6421-pmic-core.c | 171 ++++++ drivers/regulator/Kconfig | 8 +- drivers/regulator/Makefile | 2 +- drivers/regulator/hi6421-regulator.c | 559 ++++++++++++++++++++ include/linux/mfd/hi6421-pmic.h | 55 ++ 9 files changed, 1376 insertions(+), 2 deletions(-) create mode 100644 Documentation/devicetree/bindings/regulator/hi6421-regulator.txt create mode 100644 arch/arm/boot/dts/hi6421.dtsi create mode 100644 drivers/mfd/hi6421-pmic-core.c create mode 100644 drivers/regulator/hi6421-regulator.c create mode 100644 include/linux/mfd/hi6421-pmic.h -- 1.7.4.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

