diff options
author | Terry Lv <r65388@freescale.com> | 2012-02-16 01:38:47 +0800 |
---|---|---|
committer | Terry Lv <r65388@freescale.com> | 2012-02-16 02:24:04 +0800 |
commit | c1ce2e692f4c9ac475504b4976b82de241e36b45 (patch) | |
tree | bf0f0969bac3c6f840128ed4cd557f47c823e843 /common/Makefile | |
parent | 69665152823a798b3560d42e6456ce3cc041ffec (diff) | |
download | u-boot-imx-c1ce2e692f4c9ac475504b4976b82de241e36b45.zip u-boot-imx-c1ce2e692f4c9ac475504b4976b82de241e36b45.tar.gz u-boot-imx-c1ce2e692f4c9ac475504b4976b82de241e36b45.tar.bz2 |
ENGR00139213: Add read and change voltage support for mx6
dd read and change voltage support for mx6.
For help, pls type "help regul"
Detail command info:
regul list - List all regulators' name
regul show all - Display all regulators' voltage
regul show core - Show core voltage in mV
regul show periph - Show peripheral voltage in mV
regul show <regulator name> - Show regulator's voltage in mV
regul set core <voltage value> - Set core voltage in mV
regul set periph <voltage value> - Set periph voltage in mV
regul set <regulator name> <voltage value> - Set regulator's voltage in
mV
Example:
MX6Q ARM2 U-Boot > regul list
Name Voltage
vddpu
vddcore
vddsoc
vdd2p5
vdd1p1
vdd3p0
MX6Q ARM2 U-Boot > regul show all
Name Voltage
vddpu 1100000
vddcore 1100000
vddsoc 1200000
vdd2p5 2400000
vdd1p1 1100000
vdd3p0 3000000
MX6Q ARM2 U-Boot > regul show periph
Name Voltage
periph: 1100000
MX6Q ARM2 U-Boot > regul show core
Name Voltage
core: 1100000
MX6Q ARM2 U-Boot > regul set core 1100000
Set voltage succeed!
Name Voltage
core: 1100000
Signed-off-by: Terry Lv <r65388@freescale.com>
Diffstat (limited to 'common/Makefile')
-rw-r--r-- | common/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/common/Makefile b/common/Makefile index 1f218e7..413b18c 100644 --- a/common/Makefile +++ b/common/Makefile @@ -136,6 +136,7 @@ endif COBJS-y += cmd_pcmcia.o COBJS-$(CONFIG_CMD_PORTIO) += cmd_portio.o COBJS-$(CONFIG_CMD_REGINFO) += cmd_reginfo.o +COBJS-$(CONFIG_CMD_REGUL) += cmd_regul.o COBJS-$(CONFIG_CMD_REISER) += cmd_reiser.o COBJS-$(CONFIG_CMD_SATA) += cmd_sata.o COBJS-$(CONFIG_CMD_SF) += cmd_sf.o |