]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/M52277EVB.h
cmd: add Kconfig option for 'date' command
[people/ms/u-boot.git] / include / configs / M52277EVB.h
1 /*
2 * Configuation settings for the Freescale MCF52277 EVB board.
3 *
4 * Copyright (C) 2004-2007 Freescale Semiconductor, Inc.
5 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10 /*
11 * board/config.h - configuration options, board specific
12 */
13
14 #ifndef _M52277EVB_H
15 #define _M52277EVB_H
16
17 /*
18 * High Level Configuration Options
19 * (easy to change)
20 */
21 #define CONFIG_M52277EVB /* M52277EVB board */
22
23 #define CONFIG_MCFUART
24 #define CONFIG_SYS_UART_PORT (0)
25
26 #undef CONFIG_WATCHDOG
27
28 #define CONFIG_TIMESTAMP /* Print image info with timestamp */
29
30 /*
31 * BOOTP options
32 */
33 #define CONFIG_BOOTP_BOOTFILESIZE
34 #define CONFIG_BOOTP_BOOTPATH
35 #define CONFIG_BOOTP_GATEWAY
36 #define CONFIG_BOOTP_HOSTNAME
37
38 /* Command line configuration */
39 #define CONFIG_CMD_JFFS2
40 #define CONFIG_CMD_REGINFO
41
42 #define CONFIG_HOSTNAME M52277EVB
43 #define CONFIG_SYS_UBOOT_END 0x3FFFF
44 #define CONFIG_SYS_LOAD_ADDR2 0x40010007
45 #ifdef CONFIG_SYS_STMICRO_BOOT
46 /* ST Micro serial flash */
47 #define CONFIG_EXTRA_ENV_SETTINGS \
48 "inpclk=" __stringify(CONFIG_SYS_INPUT_CLKSRC) "\0" \
49 "loadaddr=0x40010000\0" \
50 "uboot=u-boot.bin\0" \
51 "load=loadb ${loadaddr} ${baudrate};" \
52 "loadb " __stringify(CONFIG_SYS_LOAD_ADDR2) " ${baudrate} \0" \
53 "upd=run load; run prog\0" \
54 "prog=sf probe 0:2 10000 1;" \
55 "sf erase 0 30000;" \
56 "sf write ${loadaddr} 0 30000;" \
57 "save\0" \
58 ""
59 #endif
60 #ifdef CONFIG_SYS_SPANSION_BOOT
61 #define CONFIG_EXTRA_ENV_SETTINGS \
62 "inpclk=" __stringify(CONFIG_SYS_INPUT_CLKSRC) "\0" \
63 "loadaddr=0x40010000\0" \
64 "uboot=u-boot.bin\0" \
65 "load=loadb ${loadaddr} ${baudrate}\0" \
66 "upd=run load; run prog\0" \
67 "prog=prot off " __stringify(CONFIG_SYS_FLASH_BASE) \
68 " " __stringify(CONFIG_SYS_UBOOT_END) ";" \
69 "era " __stringify(CONFIG_SYS_FLASH_BASE) " " \
70 __stringify(CONFIG_SYS_UBOOT_END) ";" \
71 "cp.b ${loadaddr} " __stringify(CONFIG_SYS_FLASH_BASE) \
72 " ${filesize}; save\0" \
73 "updsbf=run loadsbf; run progsbf\0" \
74 "loadsbf=loadb ${loadaddr} ${baudrate};" \
75 "loadb " __stringify(CONFIG_SYS_LOAD_ADDR2) " ${baudrate} \0" \
76 "progsbf=sf probe 0:2 10000 1;" \
77 "sf erase 0 30000;" \
78 "sf write ${loadaddr} 0 30000;" \
79 ""
80 #endif
81
82 /* LCD */
83 #ifdef CONFIG_CMD_BMP
84 #define CONFIG_SPLASH_SCREEN
85 #define CONFIG_LCD_LOGO
86 #define CONFIG_SHARP_LQ035Q7DH06
87 #endif
88
89 /* USB */
90 #ifdef CONFIG_CMD_USB
91 #define CONFIG_USB_EHCI
92 #define CONFIG_SYS_USB_EHCI_REGS_BASE 0xFC0B0000
93 #define CONFIG_SYS_USB_EHCI_CPU_INIT
94 #endif
95
96 /* Realtime clock */
97 #define CONFIG_MCFRTC
98 #undef RTC_DEBUG
99 #define CONFIG_SYS_RTC_OSCILLATOR (32 * CONFIG_SYS_HZ)
100
101 /* Timer */
102 #define CONFIG_MCFTMR
103 #undef CONFIG_MCFPIT
104
105 /* I2c */
106 #define CONFIG_SYS_I2C
107 #define CONFIG_SYS_I2C_FSL
108 #define CONFIG_SYS_FSL_I2C_SPEED 80000
109 #define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
110 #define CONFIG_SYS_FSL_I2C_OFFSET 0x58000
111 #define CONFIG_SYS_IMMR CONFIG_SYS_MBAR
112
113 /* DSPI and Serial Flash */
114 #define CONFIG_CF_SPI
115 #define CONFIG_CF_DSPI
116 #define CONFIG_HARD_SPI
117 #define CONFIG_SYS_SBFHDR_SIZE 0x7
118 #ifdef CONFIG_CMD_SPI
119 # define CONFIG_SYS_DSPI_CS2
120
121 # define CONFIG_SYS_DSPI_CTAR0 (DSPI_CTAR_TRSZ(7) | \
122 DSPI_CTAR_PCSSCK_1CLK | \
123 DSPI_CTAR_PASC(0) | \
124 DSPI_CTAR_PDT(0) | \
125 DSPI_CTAR_CSSCK(0) | \
126 DSPI_CTAR_ASC(0) | \
127 DSPI_CTAR_DT(1))
128 #endif
129
130 /* Input, PCI, Flexbus, and VCO */
131 #define CONFIG_EXTRA_CLOCK
132
133 #define CONFIG_SYS_INPUT_CLKSRC 16000000
134
135 #define CONFIG_PRAM 2048 /* 2048 KB */
136
137 #define CONFIG_SYS_LONGHELP /* undef to save memory */
138
139 #if defined(CONFIG_CMD_KGDB)
140 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
141 #else
142 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
143 #endif
144 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
145 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
146 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
147
148 #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 0x10000)
149
150 #define CONFIG_SYS_MBAR 0xFC000000
151
152 /*
153 * Low Level Configuration Settings
154 * (address mappings, register initial values, etc.)
155 * You should know what you are doing if you make changes here.
156 */
157
158 /*
159 * Definitions for initial stack pointer and data area (in DPRAM)
160 */
161 #define CONFIG_SYS_INIT_RAM_ADDR 0x80000000
162 #define CONFIG_SYS_INIT_RAM_SIZE 0x8000 /* Size of used area in internal SRAM */
163 #define CONFIG_SYS_INIT_RAM_CTRL 0x221
164 #define CONFIG_SYS_GBL_DATA_OFFSET ((CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) - 32)
165 #define CONFIG_SYS_INIT_SP_OFFSET (CONFIG_SYS_GBL_DATA_OFFSET - 32)
166 #define CONFIG_SYS_SBFHDR_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - 32)
167
168 /*
169 * Start addresses for the final memory configuration
170 * (Set up by the startup code)
171 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
172 */
173 #define CONFIG_SYS_SDRAM_BASE 0x40000000
174 #define CONFIG_SYS_SDRAM_SIZE 64 /* SDRAM size in MB */
175 #define CONFIG_SYS_SDRAM_CFG1 0x43711630
176 #define CONFIG_SYS_SDRAM_CFG2 0x56670000
177 #define CONFIG_SYS_SDRAM_CTRL 0xE1092000
178 #define CONFIG_SYS_SDRAM_EMOD 0x81810000
179 #define CONFIG_SYS_SDRAM_MODE 0x00CD0000
180 #define CONFIG_SYS_SDRAM_DRV_STRENGTH 0x00
181
182 #define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE + 0x400
183 #define CONFIG_SYS_MEMTEST_END ((CONFIG_SYS_SDRAM_SIZE - 3) << 20)
184
185 #ifdef CONFIG_CF_SBF
186 # define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_TEXT_BASE + 0x400)
187 #else
188 # define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE + 0x400)
189 #endif
190 #define CONFIG_SYS_BOOTPARAMS_LEN 64*1024
191 #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
192 #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
193
194 /* Initial Memory map for Linux */
195 #define CONFIG_SYS_BOOTMAPSZ (CONFIG_SYS_SDRAM_BASE + (CONFIG_SYS_SDRAM_SIZE << 20))
196 #define CONFIG_SYS_BOOTM_LEN (CONFIG_SYS_SDRAM_SIZE << 20)
197
198 /*
199 * Configuration for environment
200 * Environment is not embedded in u-boot. First time runing may have env
201 * crc error warning if there is no correct environment on the flash.
202 */
203 #ifdef CONFIG_CF_SBF
204 # define CONFIG_ENV_IS_IN_SPI_FLASH
205 # define CONFIG_ENV_SPI_CS 2
206 #else
207 # define CONFIG_ENV_IS_IN_FLASH 1
208 #endif
209 #define CONFIG_ENV_OVERWRITE 1
210
211 /*-----------------------------------------------------------------------
212 * FLASH organization
213 */
214 #ifdef CONFIG_SYS_STMICRO_BOOT
215 # define CONFIG_SYS_FLASH_BASE CONFIG_SYS_CS0_BASE
216 # define CONFIG_SYS_FLASH0_BASE CONFIG_SYS_CS0_BASE
217 # define CONFIG_ENV_OFFSET 0x30000
218 # define CONFIG_ENV_SIZE 0x1000
219 # define CONFIG_ENV_SECT_SIZE 0x10000
220 #endif
221 #ifdef CONFIG_SYS_SPANSION_BOOT
222 # define CONFIG_SYS_FLASH_BASE CONFIG_SYS_CS0_BASE
223 # define CONFIG_SYS_FLASH0_BASE CONFIG_SYS_CS0_BASE
224 # define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + 0x40000)
225 # define CONFIG_ENV_SIZE 0x1000
226 # define CONFIG_ENV_SECT_SIZE 0x8000
227 #endif
228
229 #define CONFIG_SYS_FLASH_CFI
230 #ifdef CONFIG_SYS_FLASH_CFI
231 # define CONFIG_FLASH_CFI_DRIVER 1
232 # define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
233 # define CONFIG_FLASH_SPANSION_S29WS_N 1
234 # define CONFIG_SYS_FLASH_SIZE 0x1000000 /* Max size that the board might have */
235 # define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT
236 # define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
237 # define CONFIG_SYS_MAX_FLASH_SECT 137 /* max number of sectors on one chip */
238 # define CONFIG_SYS_FLASH_PROTECTION /* "Real" (hardware) sectors protection */
239 # define CONFIG_SYS_FLASH_CHECKSUM
240 # define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_CS0_BASE }
241 #endif
242
243 #define LDS_BOARD_TEXT \
244 arch/m68k/cpu/mcf5227x/built-in.o (.text*) \
245 arch/m68k/lib/built-in.o (.text*)
246
247 /*
248 * This is setting for JFFS2 support in u-boot.
249 * NOTE: Enable CONFIG_CMD_JFFS2 for JFFS2 support.
250 */
251 #ifdef CONFIG_CMD_JFFS2
252 # define CONFIG_JFFS2_DEV "nor0"
253 # define CONFIG_JFFS2_PART_SIZE (0x01000000 - 0x40000)
254 # define CONFIG_JFFS2_PART_OFFSET (CONFIG_SYS_FLASH0_BASE + 0x40000)
255 #endif
256
257 /*-----------------------------------------------------------------------
258 * Cache Configuration
259 */
260 #define CONFIG_SYS_CACHELINE_SIZE 16
261
262 #define ICACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
263 CONFIG_SYS_INIT_RAM_SIZE - 8)
264 #define DCACHE_STATUS (CONFIG_SYS_INIT_RAM_ADDR + \
265 CONFIG_SYS_INIT_RAM_SIZE - 4)
266 #define CONFIG_SYS_ICACHE_INV (CF_CACR_CINV | CF_CACR_INVI)
267 #define CONFIG_SYS_CACHE_ACR0 (CONFIG_SYS_SDRAM_BASE | \
268 CF_ADDRMASK(CONFIG_SYS_SDRAM_SIZE) | \
269 CF_ACR_EN | CF_ACR_SM_ALL)
270 #define CONFIG_SYS_CACHE_ICACR (CF_CACR_CENB | CF_CACR_CINV | \
271 CF_CACR_DISD | CF_CACR_INVI | \
272 CF_CACR_CEIB | CF_CACR_DCM | \
273 CF_CACR_EUSP)
274
275 /*-----------------------------------------------------------------------
276 * Memory bank definitions
277 */
278 /*
279 * CS0 - NOR Flash
280 * CS1 - Available
281 * CS2 - Available
282 * CS3 - Available
283 * CS4 - Available
284 * CS5 - Available
285 */
286
287 #ifdef CONFIG_CF_SBF
288 #define CONFIG_SYS_CS0_BASE 0x04000000
289 #define CONFIG_SYS_CS0_MASK 0x00FF0001
290 #define CONFIG_SYS_CS0_CTRL 0x00001FA0
291 #else
292 #define CONFIG_SYS_CS0_BASE 0x00000000
293 #define CONFIG_SYS_CS0_MASK 0x00FF0001
294 #define CONFIG_SYS_CS0_CTRL 0x00001FA0
295 #endif
296
297 #endif /* _M52277EVB_H */