diff options
author | Alexander Graf <agraf@suse.de> | 2016-03-04 01:09:48 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2016-03-15 15:13:02 -0400 |
commit | d473f0c621513d3f1c42888c113b68f65b7e81cf (patch) | |
tree | 72566868778f606d2a3bcaa07895bf68f39bffad /include/configs | |
parent | 5e2ec773bb6c5acf22d8652112856e87cff86ea4 (diff) | |
download | u-boot-d473f0c621513d3f1c42888c113b68f65b7e81cf.tar.gz |
thunderx: Move mmu table into board file
The MMU range table can vary depending on things we may only find
out at runtime. While the very simple ThunderX variant does not
change, other boards will, so move the definition from a static
entry in a header file to the board file.
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/thunderx_88xx.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/include/configs/thunderx_88xx.h b/include/configs/thunderx_88xx.h index 36b6ce8df2..01cd2e40f5 100644 --- a/include/configs/thunderx_88xx.h +++ b/include/configs/thunderx_88xx.h @@ -26,17 +26,6 @@ #define CONFIG_SYS_LOWMEM_BASE MEM_BASE -#define CONFIG_SYS_MEM_MAP {{0x000000000000UL, 0x40000000000UL, \ - PTE_BLOCK_MEMTYPE(MT_NORMAL) | \ - PTE_BLOCK_NON_SHARE}, \ - {0x800000000000UL, 0x40000000000UL, \ - PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | \ - PTE_BLOCK_NON_SHARE}, \ - {0x840000000000UL, 0x40000000000UL, \ - PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | \ - PTE_BLOCK_NON_SHARE}, \ - } - #define CONFIG_SYS_MEM_MAP_SIZE 3 #define CONFIG_SYS_VA_BITS 48 |