global: Move remaining CONFIG_SYS_* to CFG_SYS_*
[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 CFG_SYS_SDRAM_BASE             0xffffffff80000000
26 #else
27 # define CFG_SYS_SDRAM_BASE             0x80000000
28 #endif
29 #define CFG_SYS_SDRAM_SIZE              0x10000000      /* 256 MiB */
30
31 #define CFG_SYS_INIT_SP_OFFSET  0x400000
32
33 /*
34  * Serial driver
35  */
36
37 /*
38  * Flash configuration
39  */
40 #ifdef CONFIG_64BIT
41 # define CFG_SYS_FLASH_BASE             0xffffffffbe000000
42 #else
43 # define CFG_SYS_FLASH_BASE             0xbe000000
44 #endif
45
46 /*
47  * Environment
48  */
49
50 /*
51  * IDE/ATA
52  */
53
54 /*
55  * Commands
56  */
57
58 #endif /* _MALTA_CONFIG_H */