aboutsummaryrefslogtreecommitdiff
path: root/README.dra_qspi_test
blob: 13e4012fe2d8a5d99a3185178a2d4e4cb6f329d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
-------------------------------------------------
   Simple steps used to test the QSPI at U-Boot 
-------------------------------------------------

For #1, build the patched U-Boot and load MLO/u-boot.img

----------------------------------
Boot from another medium like MMC
----------------------------------

DRA752 EVM # mmc dev 0
DRA752 EVM # fatload mmc 0 0x82000000 MLO
DRA752 EVM # fatload mmc 0 0x82000000 u-boot.img

--------------------------------------------------
Commands to erase/write u-boot/mlo to flash device
--------------------------------------------------

DRA752 EVM # sf probe 0
[should detect the S25FL256S serial flash device]

DRA752 EVM # sf erase 0 10000
DRA752 EVM # sf erase 10000 10000
DRA752 EVM # sf erase 20000 10000
DRA752 EVM # sf erase 30000 10000
DRA752 EVM # sf erase 40000 10000
DRA752 EVM # sf erase 50000 10000
DRA752 EVM # sf erase 60000 10000

DRA752 EVM # sf write 82000000 0 10000
DRA752 EVM # sf write 83000000 20000 60000

For #2, set sysboot to QSPI-1 boot mode(SYSBOOT[5:0] = 100110) and power
on. ROM should find the GP header at offset 0 and load/execute SPL. SPL
then detects that ROM was in QSPI-1 mode (boot code 10) and attempts to
find a U-Boot image header at offset 0x20000 (set in the config file)
and proceeds to load that image using the U-Boot image payload offset/size
from the header. It will then start U-Boot.
~