Merge tag 'u-boot-at91-2022.07-a' of https://source.denx.de/u-boot/custodians/u-boot...
[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 #define CONFIG_PCI_GT64120
17 #define CONFIG_PCI_MSC01
18
19 #define CONFIG_SYS_ISA_IO_BASE_ADDRESS  0
20
21 /*
22  * CPU Configuration
23  */
24 #define CONFIG_SYS_MHZ                  250     /* arbitrary value */
25 #define CONFIG_SYS_MIPS_TIMER_FREQ      (CONFIG_SYS_MHZ * 1000000)
26
27 /*
28  * Memory map
29  */
30
31 #ifdef CONFIG_64BIT
32 # define CONFIG_SYS_SDRAM_BASE          0xffffffff80000000
33 #else
34 # define CONFIG_SYS_SDRAM_BASE          0x80000000
35 #endif
36 #define CONFIG_SYS_MEM_SIZE             (256 * 1024 * 1024)
37
38 #define CONFIG_SYS_INIT_SP_OFFSET       0x400000
39
40 #define CONFIG_SYS_BOOTPARAMS_LEN       (128 * 1024)
41 #define CONFIG_SYS_BOOTM_LEN            (64 * 1024 * 1024)
42
43 /*
44  * Serial driver
45  */
46 #define CONFIG_SYS_NS16550_PORT_MAPPED
47
48 /*
49  * Flash configuration
50  */
51 #ifdef CONFIG_64BIT
52 # define CONFIG_SYS_FLASH_BASE          0xffffffffbe000000
53 #else
54 # define CONFIG_SYS_FLASH_BASE          0xbe000000
55 #endif
56 #define CONFIG_SYS_MAX_FLASH_SECT       128
57
58 /*
59  * Environment
60  */
61
62 /*
63  * IDE/ATA
64  */
65
66 /*
67  * Commands
68  */
69
70 #endif /* _MALTA_CONFIG_H */