Code: Select all
sf read 0x0 0x100000 0x700000Workaround 1: change app execution address from 0x0 to 0x8000.
Code: Select all
sf read 0x8000 0x100000 0x700000Workaround 2: utilize uboot CPU memory command.
Code: Select all
First read 0x1000 to DRAMCode: Select all
Next read (0x700000 - 0x1000) to DRAMCode: Select all
sf read 0x800000 0x100000 0x1000Code: Select all
cp.b 0x800000 0x0 0x1000Code: Select all
sf read 0x1000 0x101000 0x700000