diff options
author | Przemyslaw Marczak <p.marczak@samsung.com> | 2015-04-20 20:07:43 +0200 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-05-14 18:49:37 -0600 |
commit | d89fdcf9cfdfc7ac5eaf57914dabddc0e4018979 (patch) | |
tree | d23a94d62f6ee549a5bbcbb92a6103eec0c1a859 /common/Makefile | |
parent | af41e8db26821ae65fa10c8c4689ccb39043878f (diff) | |
download | u-boot-imx-d89fdcf9cfdfc7ac5eaf57914dabddc0e4018979.zip u-boot-imx-d89fdcf9cfdfc7ac5eaf57914dabddc0e4018979.tar.gz u-boot-imx-d89fdcf9cfdfc7ac5eaf57914dabddc0e4018979.tar.bz2 |
dm: pmic: add pmic command
This is new command for the PMIC devices based on driver model PMIC API.
Command features are unchanged:
- list UCLASS pmic devices
- show or [set] operating pmic device (NEW)
- dump registers
- read byte of register at address
- write byte to register at address
The only one change for this command is 'dev' subcommand.
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 9084c73..425658c 100644 --- a/common/Makefile +++ b/common/Makefile @@ -211,6 +211,9 @@ obj-$(CONFIG_UPDATE_TFTP) += update.o obj-$(CONFIG_USB_KEYBOARD) += usb_kbd.o obj-$(CONFIG_CMD_DFU) += cmd_dfu.o obj-$(CONFIG_CMD_GPT) += cmd_gpt.o + +# Power +obj-$(CONFIG_CMD_PMIC) += cmd_pmic.o endif ifdef CONFIG_SPL_BUILD |