Merge branch '2022-11-10-symbol-migrations'
[platform/kernel/u-boot.git] / include / configs / malta.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
4  */
5
6 #ifndef _MALTA_CONFIG_H
7 #define _MALTA_CONFIG_H
8
9 /*
10  * System configuration
11  */
12 #define CONFIG_MALTA
13
14 #define CONFIG_MEMSIZE_IN_BYTES
15
16 /*
17  * CPU Configuration
18  */
19
20 /*
21  * Memory map
22  */
23
24 #ifdef CONFIG_64BIT
25 # define CONFIG_SYS_SDRAM_BASE          0xffffffff80000000
26 #else
27 # define CONFIG_SYS_SDRAM_BASE          0x80000000
28 #endif
29 #define CONFIG_SYS_SDRAM_SIZE           0x10000000      /* 256 MiB */
30
31 #define CONFIG_SYS_INIT_SP_OFFSET       0x400000
32
33 /*
34  * Serial driver
35  */
36 #define CONFIG_SYS_NS16550_PORT_MAPPED
37
38 /*
39  * Flash configuration
40  */
41 #ifdef CONFIG_64BIT
42 # define CONFIG_SYS_FLASH_BASE          0xffffffffbe000000
43 #else
44 # define CONFIG_SYS_FLASH_BASE          0xbe000000
45 #endif
46
47 /*
48  * Environment
49  */
50
51 /*
52  * IDE/ATA
53  */
54
55 /*
56  * Commands
57  */
58
59 #endif /* _MALTA_CONFIG_H */