diff options
author | Tom Rini <trini@konsulko.com> | 2019-07-25 15:02:36 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-07-25 15:02:36 -0400 |
commit | bfe28bc70fc8b192878d6e8b7f7db344091643cf (patch) | |
tree | c9900ada1f0246e3a2eb5105f059fb3848c7aa81 /include/configs/sifive-fu540.h | |
parent | bfe9abe7119ce7cde9eb654d17302ebe124c2c84 (diff) | |
parent | d53e52225527625c72c4dbff4fe8c0b68a553340 (diff) |
Merge https://gitlab.denx.de/u-boot/custodians/u-boot-net
- DaVinci emac DM work
- NXP driver work
- macb updates for RISC-V
Diffstat (limited to 'include/configs/sifive-fu540.h')
-rw-r--r-- | include/configs/sifive-fu540.h | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/include/configs/sifive-fu540.h b/include/configs/sifive-fu540.h index 7007b5f6af..858b7a7da1 100644 --- a/include/configs/sifive-fu540.h +++ b/include/configs/sifive-fu540.h @@ -18,12 +18,12 @@ #define CONFIG_SYS_MALLOC_LEN SZ_8M -#define CONFIG_SYS_BOOTM_LEN SZ_16M +#define CONFIG_SYS_BOOTM_LEN SZ_64M #define CONFIG_STANDALONE_LOAD_ADDR 0x80200000 /* Environment options */ -#define CONFIG_ENV_SIZE SZ_4K +#define CONFIG_ENV_SIZE SZ_128K #define BOOT_TARGET_DEVICES(func) \ func(DHCP, dhcp, na) @@ -33,11 +33,15 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "fdt_high=0xffffffffffffffff\0" \ "initrd_high=0xffffffffffffffff\0" \ - "kernel_addr_r=0x80600000\0" \ - "fdt_addr_r=0x82200000\0" \ - "scriptaddr=0x82300000\0" \ - "pxefile_addr_r=0x82400000\0" \ - "ramdisk_addr_r=0x82500000\0" \ + "kernel_addr_r=0x84000000\0" \ + "fdt_addr_r=0x88000000\0" \ + "scriptaddr=0x88100000\0" \ + "pxefile_addr_r=0x88200000\0" \ + "ramdisk_addr_r=0x88300000\0" \ BOOTENV +#define CONFIG_PREBOOT \ + "setenv fdt_addr ${fdtcontroladdr};" \ + "fdt addr ${fdtcontroladdr};" + #endif /* __CONFIG_H */ |