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 | */ | ||||
16 | #define CONFIG_SYS_MIPS_TIMER_FREQ 30000000 | ||||
17 | |||||
18 | /* | ||||
19 | * PCI | ||||
20 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 21 | |
22 | /* | ||||
23 | * Memory map | ||||
24 | */ | ||||
25 | #ifdef CONFIG_64BIT | ||||
26 | # define CONFIG_SYS_SDRAM_BASE 0xffffffff80000000 | ||||
27 | #else | ||||
28 | # define CONFIG_SYS_SDRAM_BASE 0x80000000 | ||||
29 | #endif | ||||
30 | |||||
31 | #define CONFIG_SYS_INIT_SP_OFFSET 0x400000 | ||||
32 | |||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 33 | /* |
34 | * Console | ||||
35 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 36 | |
37 | /* | ||||
38 | * Flash | ||||
39 | */ | ||||
Patrick Delaunay | 144fef8 | 2022-01-04 14:23:59 +0100 | [diff] [blame] | 40 | |
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 41 | #define CONFIG_SYS_MAX_FLASH_SECT 1024 |
42 | |||||
43 | /* | ||||
44 | * Environment | ||||
45 | */ | ||||
Paul Burton | ad8783c | 2016-09-08 07:47:39 +0100 | [diff] [blame] | 46 | |
47 | #endif /* __CONFIGS_BOSTON_H__ */ |