global: Remove unused CONFIG symbols
[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 /*
15  * CPU Configuration
16  */
17
18 /*
19  * Memory map
20  */
21
22 #ifdef CONFIG_64BIT
23 # define CFG_SYS_SDRAM_BASE             0xffffffff80000000
24 #else
25 # define CFG_SYS_SDRAM_BASE             0x80000000
26 #endif
27 #define CFG_SYS_SDRAM_SIZE              0x10000000      /* 256 MiB */
28
29 #define CFG_SYS_INIT_SP_OFFSET  0x400000
30
31 /*
32  * Serial driver
33  */
34
35 /*
36  * Flash configuration
37  */
38 #ifdef CONFIG_64BIT
39 # define CFG_SYS_FLASH_BASE             0xffffffffbe000000
40 #else
41 # define CFG_SYS_FLASH_BASE             0xbe000000
42 #endif
43
44 /*
45  * Environment
46  */
47
48 /*
49  * IDE/ATA
50  */
51
52 /*
53  * Commands
54  */
55
56 #endif /* _MALTA_CONFIG_H */