diff options
author | Yuan Yao <yao.yuan@nxp.com> | 2016-06-08 18:25:00 +0800 |
---|---|---|
committer | York Sun <york.sun@nxp.com> | 2016-06-10 13:45:01 -0700 |
commit | a646f6698173ef4ff34c414f91541b4b8f014de1 (patch) | |
tree | f99c0f91aff10444b7b8103bc9544e3f5a1a6973 /board/freescale/ls2080aqds | |
parent | 01de8304028275b2b7650b5f601e87ce63006e19 (diff) | |
download | u-boot-a646f6698173ef4ff34c414f91541b4b8f014de1.tar.gz u-boot-a646f6698173ef4ff34c414f91541b4b8f014de1.tar.bz2 u-boot-a646f6698173ef4ff34c414f91541b4b8f014de1.zip |
armv8: ls2080aqds: Enable QSPI boot support
This patch adds QSPI boot support for LS2080AQDS board.
The QSPI boot image need to be programmed into the QSPI flash
first. Then we can switch to booting from QSPI memory space.
Signed-off-by: Yuan Yao <yao.yuan@nxp.com>
Reviewed-by: York Sun <york.sun@nxp.com>
Diffstat (limited to 'board/freescale/ls2080aqds')
-rw-r--r-- | board/freescale/ls2080aqds/ls2080aqds.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/freescale/ls2080aqds/ls2080aqds.c b/board/freescale/ls2080aqds/ls2080aqds.c index 694b28b13c..477f55646f 100644 --- a/board/freescale/ls2080aqds/ls2080aqds.c +++ b/board/freescale/ls2080aqds/ls2080aqds.c @@ -81,6 +81,8 @@ int checkboard(void) puts("PromJet\n"); else if (sw == 0x9) puts("NAND\n"); + else if (sw == 0xf) + puts("QSPI\n"); else if (sw == 0x15) printf("IFCCard\n"); else |