Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 2 | /* |
3 | * Copyright (C) 2016 Imagination Technologies | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 4 | */ |
5 | |||||
6 | #ifndef __CONFIGS_BOSTON_H__ | ||||
7 | #define __CONFIGS_BOSTON_H__ | ||||
8 | |||||
9 | /* | ||||
Paul Burton | dc55db4 | 2017-04-30 21:22:43 +0200 | [diff] [blame] | 10 | * General board configuration |
11 | */ | ||||
Paul Burton | dc55db4 | 2017-04-30 21:22:43 +0200 | [diff] [blame] | 12 | |
13 | /* | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 14 | * CPU |
15 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 16 | |
17 | /* | ||||
18 | * PCI | ||||
19 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 20 | |
21 | /* | ||||
22 | * Memory map | ||||
23 | */ | ||||
24 | #ifdef CONFIG_64BIT | ||||
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 25 | # define CFG_SYS_SDRAM_BASE 0xffffffff80000000 |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 26 | #else |
Tom Rini | aa6e94d | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 27 | # define CFG_SYS_SDRAM_BASE 0x80000000 |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 28 | #endif |
29 | |||||
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 30 | #define CFG_SYS_INIT_SP_OFFSET 0x400000 |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 31 | |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 32 | /* |
33 | * Console | ||||
34 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 35 | |
36 | /* | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 37 | * Environment |
38 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 39 | |
40 | #endif /* __CONFIGS_BOSTON_H__ */ |