]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/malta.h
configs: Re-sync HUSH options
[people/ms/u-boot.git] / include / configs / malta.h
1 /*
2 * Copyright (C) 2013 Gabor Juhos <juhosg@openwrt.org>
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7 #ifndef _MALTA_CONFIG_H
8 #define _MALTA_CONFIG_H
9
10 /*
11 * System configuration
12 */
13 #define CONFIG_MALTA
14 #define CONFIG_BOARD_EARLY_INIT_F
15 #define CONFIG_DISPLAY_BOARDINFO
16
17 #define CONFIG_MEMSIZE_IN_BYTES
18
19 #define CONFIG_PCI
20 #define CONFIG_PCI_GT64120
21 #define CONFIG_PCI_MSC01
22 #define CONFIG_PCI_PNP
23 #define CONFIG_PCNET
24 #define CONFIG_PCNET_79C973
25 #define PCNET_HAS_PROM
26
27 #define CONFIG_MISC_INIT_R
28 #define CONFIG_RTC_MC146818
29 #define CONFIG_SYS_ISA_IO_BASE_ADDRESS 0
30
31 /*
32 * CPU Configuration
33 */
34 #define CONFIG_SYS_MHZ 250 /* arbitrary value */
35 #define CONFIG_SYS_MIPS_TIMER_FREQ (CONFIG_SYS_MHZ * 1000000)
36
37 /*
38 * Memory map
39 */
40 #define CONFIG_SYS_TEXT_BASE 0xbe000000 /* Rom version */
41 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
42
43 #define CONFIG_SYS_SDRAM_BASE 0x80000000 /* Cached addr */
44 #define CONFIG_SYS_MEM_SIZE (256 * 1024 * 1024)
45
46 #define CONFIG_SYS_INIT_SP_OFFSET 0x400000
47
48 #define CONFIG_SYS_LOAD_ADDR 0x81000000
49 #define CONFIG_SYS_MEMTEST_START 0x80100000
50 #define CONFIG_SYS_MEMTEST_END 0x80800000
51
52 #define CONFIG_SYS_MALLOC_LEN (128 * 1024)
53 #define CONFIG_SYS_BOOTPARAMS_LEN (128 * 1024)
54 #define CONFIG_SYS_BOOTM_LEN (64 * 1024 * 1024)
55
56 /*
57 * Console configuration
58 */
59 #undef CONFIG_SYS_PROMPT
60 #if defined(CONFIG_SYS_LITTLE_ENDIAN)
61 #define CONFIG_SYS_PROMPT "maltael # "
62 #else
63 #define CONFIG_SYS_PROMPT "malta # "
64 #endif
65
66 #define CONFIG_SYS_CBSIZE 256
67 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
68 sizeof(CONFIG_SYS_PROMPT) + 16)
69 #define CONFIG_SYS_MAXARGS 16
70
71 #define CONFIG_AUTO_COMPLETE
72 #define CONFIG_CMDLINE_EDITING
73
74 /*
75 * Serial driver
76 */
77 #define CONFIG_BAUDRATE 115200
78
79 #define CONFIG_SYS_NS16550_SERIAL
80 #define CONFIG_SYS_NS16550_REG_SIZE 1
81 #define CONFIG_SYS_NS16550_CLK (115200 * 16)
82 #define CONFIG_SYS_NS16550_COM1 0xb80003f8
83 #define CONFIG_SYS_NS16550_COM2 0xbb0003f8
84 #define CONFIG_CONS_INDEX 1
85
86 /*
87 * Flash configuration
88 */
89 #define CONFIG_SYS_FLASH_BASE 0xbe000000
90 #define CONFIG_SYS_MAX_FLASH_BANKS 1
91 #define CONFIG_SYS_MAX_FLASH_SECT 128
92 #define CONFIG_SYS_FLASH_CFI
93 #define CONFIG_FLASH_CFI_DRIVER
94 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE
95
96 /*
97 * Environment
98 */
99 #define CONFIG_ENV_IS_IN_FLASH
100 #define CONFIG_ENV_SECT_SIZE 0x20000
101 #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
102 #define CONFIG_ENV_ADDR \
103 (CONFIG_SYS_FLASH_BASE + (4 << 20) - CONFIG_ENV_SIZE)
104
105 /*
106 * IDE/ATA
107 */
108 #define CONFIG_SYS_IDE_MAXBUS 1
109 #define CONFIG_SYS_IDE_MAXDEVICE 2
110 #define CONFIG_SYS_ATA_BASE_ADDR CONFIG_SYS_ISA_IO_BASE_ADDRESS
111 #define CONFIG_SYS_ATA_IDE0_OFFSET 0x01f0
112 #define CONFIG_SYS_ATA_DATA_OFFSET 0
113 #define CONFIG_SYS_ATA_REG_OFFSET 0
114
115 /*
116 * Commands
117 */
118 #define CONFIG_CMD_DATE
119 #define CONFIG_CMD_DHCP
120 #define CONFIG_CMD_IDE
121 #define CONFIG_CMD_PCI
122 #define CONFIG_CMD_PING
123
124 #define CONFIG_SYS_LONGHELP /* verbose help, undef to save memory */
125
126 #endif /* _MALTA_CONFIG_H */