1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright (C) 2016 Imagination Technologies 4 */ 5 6 #ifndef __CONFIGS_BOSTON_H__ 7 #define __CONFIGS_BOSTON_H__ 8 9 /* 10 * General board configuration 11 */ 12 13 /* 14 * CPU 15 */ 16 17 /* 18 * PCI 19 */ 20 21 /* 22 * Memory map 23 */ 24 #ifdef CONFIG_64BIT 25 # define CFG_SYS_SDRAM_BASE 0xffffffff80000000 26 #else 27 # define CFG_SYS_SDRAM_BASE 0x80000000 28 #endif 29 30 #define CFG_SYS_INIT_SP_OFFSET 0x400000 31 32 /* 33 * Console 34 */ 35 36 /* 37 * Environment 38 */ 39 40 #endif /* __CONFIGS_BOSTON_H__ */ 41