diff options
author | Andre Heider <a.heider@gmail.com> | 2017-12-02 10:46:35 +0100 |
---|---|---|
committer | Stefan Roese <sr@denx.de> | 2018-01-09 16:41:00 +0100 |
commit | e1489ba89d4df187aed7e176227f47412c583002 (patch) | |
tree | 02609507ffe23e22a199c2b5e7ac4ea84ea03ec9 /include | |
parent | d7da5707705dbec3c524b60a224d57ddda8b9618 (diff) |
arm64: a37xx: add distro compatible env vars
the values of dt_addr_r/kernel_addr_r/ramdisk_addr_r are taken from
the downstream 'u-boot-2017.03-armada-17.10' release.
the chosen values of scriptaddr and pxefile_addr_r are below fdt_addr_r,
in 1MB steps.
Signed-off-by: Andre Heider <a.heider@gmail.com>
Reviewed-by: Konstantin Porotchkin <kostap@marvell.com>
Signed-off-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/mvebu_armada-37xx.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/configs/mvebu_armada-37xx.h b/include/configs/mvebu_armada-37xx.h index 6aaf04edbe..c7ccc6ef5e 100644 --- a/include/configs/mvebu_armada-37xx.h +++ b/include/configs/mvebu_armada-37xx.h @@ -106,4 +106,11 @@ #include <config_distro_defaults.h> +#define CONFIG_EXTRA_ENV_SETTINGS \ + "scriptaddr=0x4d00000\0" \ + "pxefile_addr_r=0x4e00000\0" \ + "fdt_addr_r=0x4f00000\0" \ + "kernel_addr_r=0x5000000\0" \ + "ramdisk_addr_r=0x8000000" + #endif /* _CONFIG_MVEBU_ARMADA_37XX_H */ |