diff options
author | Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com> | 2015-03-13 11:10:26 +0530 |
---|---|---|
committer | Michal Simek <michal.simek@xilinx.com> | 2016-01-27 15:55:56 +0100 |
commit | 0a5bcc8c0d04d4dd277cfeb1edf1e7b298b0f484 (patch) | |
tree | 6d441126418c37e32e68f3671a1aadd223647931 /arch | |
parent | 0d90e9d851c98200a4fc496a3ea1320a5ed2ded8 (diff) | |
download | u-boot-imx-0a5bcc8c0d04d4dd277cfeb1edf1e7b298b0f484.zip u-boot-imx-0a5bcc8c0d04d4dd277cfeb1edf1e7b298b0f484.tar.gz u-boot-imx-0a5bcc8c0d04d4dd277cfeb1edf1e7b298b0f484.tar.bz2 |
ARM64: zynqmp: Modify the SD and QSPI bootmode values
Modify the SD bootmode value to 0x3 as per latest
spec. Also add new boot mode QSPI 32 bit boot mode
Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/include/asm/arch-zynqmp/hardware.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm/include/asm/arch-zynqmp/hardware.h b/arch/arm/include/asm/arch-zynqmp/hardware.h index 5f4cfe3..5eec999 100644 --- a/arch/arm/include/asm/arch-zynqmp/hardware.h +++ b/arch/arm/include/asm/arch-zynqmp/hardware.h @@ -64,7 +64,10 @@ struct iou_scntr_secure { /* Bootmode setting values */ #define BOOT_MODES_MASK 0x0000000F +#define QSPI_MODE_24BIT 0x00000001 +#define QSPI_MODE_32BIT 0x00000002 #define SD_MODE 0x00000003 +#define NAND_MODE 0x00000004 #define EMMC_MODE 0x00000006 #define JTAG_MODE 0x00000000 |