diff options
| author | Jerome Brunet <[email protected]> | 2018-10-24 16:27:51 +0200 |
|---|---|---|
| committer | Neil Armstrong <[email protected]> | 2018-11-26 14:40:52 +0100 |
| commit | f58d633e538858bf1ccdb93d5b5dc8edc368e30e (patch) | |
| tree | 82b3873b43b9a7412bc9efed175a7e442f548722 /include | |
| parent | 96a739b4608dfa6e575b17290d25d7b7c525d517 (diff) | |
configs: meson: change default load addresses
The original chosen addresses conflict with the BL2 initialisation.
So far there was no issue with them but if we preload binaries in
RAM (ROMUSB boot) before running the BL2 they get corrupted by the
execution of BL2 init.
If we load them around 0x08000000, there is no such issue.
Signed-off-by: Jerome Brunet <[email protected]>
Signed-off-by: Neil Armstrong <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/meson64.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/configs/meson64.h b/include/configs/meson64.h index 1929a3e4060..80c883e3f4d 100644 --- a/include/configs/meson64.h +++ b/include/configs/meson64.h @@ -41,9 +41,9 @@ #ifndef CONFIG_EXTRA_ENV_SETTINGS #define CONFIG_EXTRA_ENV_SETTINGS \ - "fdt_addr_r=0x01000000\0" \ - "scriptaddr=0x1f000000\0" \ - "kernel_addr_r=0x01080000\0" \ + "fdt_addr_r=0x08008000\0" \ + "scriptaddr=0x08000000\0" \ + "kernel_addr_r=0x08080000\0" \ "pxefile_addr_r=0x01080000\0" \ "ramdisk_addr_r=0x13000000\0" \ "fdtfile=amlogic/" CONFIG_DEFAULT_DEVICE_TREE ".dtb\0" \ |
