[U-Boot] [PATCH v4 00/16] Power(full) framework based on Driver Model
Przemyslaw Marczak
p.marczak at samsung.com
Mon Apr 20 20:07:37 CEST 2015
Hello,
Again the next version. The changes are described below each commit message.
This is rebased on last u-boot-dm/master after apply this patchset:
https://patchwork.ozlabs.org/patch/462775/
https://patchwork.ozlabs.org/patch/462777/
https://patchwork.ozlabs.org/patch/462776/
This all can be found in here:
https://github.com/bobenstein/u-boot/tree/dm-pmic-v4
Best regards,
Przemyslaw Marczak (16):
exynos5: fix build break by adding CONFIG_POWER
exynos4-common: remove the unsued CONFIG_CMD_PMIC
lib: Kconfig: add entry for errno_str() function
dm: pmic: add implementation of driver model pmic uclass
dm: regulator: add implementation of driver model regulator uclass
dm: pmic: add pmic command
dm: regulator: add regulator command
pmic: max77686 set the same compatible as in the kernel
dm: pmic: add max77686 pmic driver
dm: regulator: add max77686 regulator driver
dm: regulator: add fixed voltage regulator driver
doc: driver-model: pmic and regulator uclass documentation
dm: board:samsung: power_init_board: add requirement of CONFIG_DM_PMIC
odroid: board: add support to dm pmic api
odroid: dts: add 'voltage-regulators' description to max77686 node
odroid: config: enable dm pmic, dm regulator and max77686 driver
Makefile | 3 +-
arch/arm/dts/exynos4412-odroid.dts | 255 ++++++-
arch/arm/dts/exynos4412-trats2.dts | 2 +-
arch/arm/dts/exynos5250-smdk5250.dts | 2 +-
arch/arm/dts/exynos5250-snow.dts | 2 +-
board/samsung/common/board.c | 4 +-
board/samsung/common/misc.c | 1 +
board/samsung/odroid/odroid.c | 77 ++-
common/Kconfig | 36 +
common/Makefile | 4 +
common/cmd_pmic.c | 231 +++++++
common/cmd_regulator.c | 403 +++++++++++
configs/odroid_defconfig | 8 +-
doc/device-tree-bindings/pmic/max77686.txt | 36 +
doc/device-tree-bindings/regulator/fixed.txt | 38 ++
doc/device-tree-bindings/regulator/max77686.txt | 70 ++
doc/device-tree-bindings/regulator/regulator.txt | 55 ++
doc/driver-model/pmic-framework.txt | 142 ++++
drivers/power/Kconfig | 8 +
drivers/power/Makefile | 1 -
drivers/power/pmic/Kconfig | 18 +
drivers/power/pmic/Makefile | 2 +
drivers/power/pmic/max77686.c | 87 +++
drivers/power/pmic/pmic-uclass.c | 158 +++++
drivers/power/pmic/pmic_max77686.c | 2 +-
drivers/power/regulator/Kconfig | 33 +
drivers/power/regulator/Makefile | 10 +
drivers/power/regulator/fixed.c | 126 ++++
drivers/power/regulator/max77686.c | 825 +++++++++++++++++++++++
drivers/power/regulator/regulator-uclass.c | 300 +++++++++
include/configs/exynos4-common.h | 1 -
include/configs/exynos5-common.h | 4 +
include/configs/odroid.h | 5 -
include/dm/uclass-id.h | 4 +
include/power/max77686_pmic.h | 29 +-
include/power/pmic.h | 189 ++++++
include/power/regulator.h | 384 +++++++++++
lib/Kconfig | 8 +
lib/fdtdec.c | 2 +-
39 files changed, 3512 insertions(+), 53 deletions(-)
create mode 100644 common/cmd_pmic.c
create mode 100644 common/cmd_regulator.c
create mode 100644 doc/device-tree-bindings/pmic/max77686.txt
create mode 100644 doc/device-tree-bindings/regulator/fixed.txt
create mode 100644 doc/device-tree-bindings/regulator/max77686.txt
create mode 100644 doc/device-tree-bindings/regulator/regulator.txt
create mode 100644 doc/driver-model/pmic-framework.txt
create mode 100644 drivers/power/pmic/Kconfig
create mode 100644 drivers/power/pmic/max77686.c
create mode 100644 drivers/power/pmic/pmic-uclass.c
create mode 100644 drivers/power/regulator/Kconfig
create mode 100644 drivers/power/regulator/Makefile
create mode 100644 drivers/power/regulator/fixed.c
create mode 100644 drivers/power/regulator/max77686.c
create mode 100644 drivers/power/regulator/regulator-uclass.c
create mode 100644 include/power/regulator.h
--
1.9.1
More information about the U-Boot
mailing list