diff options
author | Eric Sun <jian.sun@freescale.com> | 2011-11-30 13:41:04 +0800 |
---|---|---|
committer | Eric Sun <jian.sun@freescale.com> | 2011-11-30 13:54:57 +0800 |
commit | e696f7dac56591a5616b397bc32a1d9bb57147ee (patch) | |
tree | b558bae2008bb2b48dea28624cc54927637772f8 /include | |
parent | 127f1cf74be5bdb9eaf18b097aa8605d72ce71f7 (diff) | |
download | u-boot-imx-e696f7dac56591a5616b397bc32a1d9bb57147ee.zip u-boot-imx-e696f7dac56591a5616b397bc32a1d9bb57147ee.tar.gz u-boot-imx-e696f7dac56591a5616b397bc32a1d9bb57147ee.tar.bz2 |
ENGR00163513 MX6Q-UBOOT : Add download_mode cmd
Add "download_mode" command to U-Boot. It will force a system reset and let
boot running in "boot from serial rom" mode, which can be used by manufacturing
tool.
The command will triggle a write to SRC_GPR9 and SRC_GPR10, then triggle a
watchdog reset. GPR9 and GPR10 can maintain their value during the reset, the
value in it make ROM to start in "boot from serial rom" mode. After that GPR9
and GPR10 are written by their original value for normal boot.
Signed-off-by: Eric Sun <jian.sun@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/asm-arm/arch-mx6/mx6.h | 3 | ||||
-rw-r--r-- | include/configs/mx6q_arm2.h | 2 | ||||
-rw-r--r-- | include/configs/mx6q_sabreauto.h | 2 | ||||
-rw-r--r-- | include/configs/mx6q_sabrelite.h | 2 |
4 files changed, 9 insertions, 0 deletions
diff --git a/include/asm-arm/arch-mx6/mx6.h b/include/asm-arm/arch-mx6/mx6.h index ae52fa2..e7f06fc 100644 --- a/include/asm-arm/arch-mx6/mx6.h +++ b/include/asm-arm/arch-mx6/mx6.h @@ -622,6 +622,9 @@ #define PLATFORM_ICGC 0x14 +#define SRC_GPR9 0x40 +#define SRC_GPR10 0x44 + #ifndef __ASSEMBLER__ enum boot_device { diff --git a/include/configs/mx6q_arm2.h b/include/configs/mx6q_arm2.h index 0a9ff07..1d08bb0 100644 --- a/include/configs/mx6q_arm2.h +++ b/include/configs/mx6q_arm2.h @@ -103,6 +103,8 @@ #define CONFIG_CMD_SATA #undef CONFIG_CMD_IMLS +#define CONFIG_CMD_IMX_DOWNLOAD_MODE + #define CONFIG_BOOTDELAY 3 #define CONFIG_PRIME "FEC0" diff --git a/include/configs/mx6q_sabreauto.h b/include/configs/mx6q_sabreauto.h index 4c51864..38744a6 100644 --- a/include/configs/mx6q_sabreauto.h +++ b/include/configs/mx6q_sabreauto.h @@ -103,6 +103,8 @@ #define CONFIG_CMD_SATA #undef CONFIG_CMD_IMLS +#define CONFIG_CMD_IMX_DOWNLOAD_MODE + #define CONFIG_BOOTDELAY 3 #define CONFIG_PRIME "FEC0" diff --git a/include/configs/mx6q_sabrelite.h b/include/configs/mx6q_sabrelite.h index b346d3c..c94cd6a 100644 --- a/include/configs/mx6q_sabrelite.h +++ b/include/configs/mx6q_sabrelite.h @@ -104,6 +104,8 @@ #define CONFIG_CMD_SATA #undef CONFIG_CMD_IMLS +#define CONFIG_CMD_IMX_DOWNLOAD_MODE + #define CONFIG_BOOTDELAY 3 #define CONFIG_PRIME "FEC0" |