]>
Commit | Line | Data |
---|---|---|
5c4fa9b4 GB |
1 | /* |
2 | * (C) Copyright 2003-2004 | |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. | |
4 | * | |
5 | * (C) Copyright 2005-2007 | |
6 | * Modified for InterControl digsyMTC MPC5200 board by | |
7 | * Frank Bodammer, GCD Hard- & Software GmbH, | |
8 | * [email protected] | |
9 | * | |
10 | * (C) Copyright 2009 Semihalf | |
11 | * Optimized for digsyMTC by: Grzegorz Bernacki <[email protected]> | |
12 | * | |
1a459660 | 13 | * SPDX-License-Identifier: GPL-2.0+ |
5c4fa9b4 GB |
14 | */ |
15 | ||
16 | #ifndef __CONFIG_H | |
17 | #define __CONFIG_H | |
18 | ||
19 | /* | |
20 | * High Level Configuration Options | |
21 | */ | |
22 | ||
b2a6dfe4 | 23 | #define CONFIG_MPC5200 1 /* This is an MPC5200 CPU */ |
5c4fa9b4 | 24 | #define CONFIG_DIGSY_MTC 1 /* ... on InterControl digsyMTC board */ |
77d4357d AG |
25 | #define CONFIG_DISPLAY_BOARDINFO |
26 | #define CONFIG_SYS_GENERIC_BOARD | |
5c4fa9b4 | 27 | |
2ae18241 WD |
28 | /* |
29 | * Valid values for CONFIG_SYS_TEXT_BASE are: | |
30 | * 0xFFF00000 boot high (standard configuration) | |
31 | * 0xFE000000 boot low | |
32 | * 0x00100000 boot from RAM (for testing only) | |
33 | */ | |
34 | #ifndef CONFIG_SYS_TEXT_BASE | |
35 | #define CONFIG_SYS_TEXT_BASE 0xFFF00000 /* Standard: boot high */ | |
36 | #endif | |
37 | ||
5c4fa9b4 GB |
38 | #define CONFIG_SYS_MPC5XXX_CLKIN 33000000 |
39 | ||
5c4fa9b4 GB |
40 | #define CONFIG_SYS_CACHELINE_SIZE 32 |
41 | ||
42 | /* | |
43 | * Serial console configuration | |
44 | */ | |
45 | #define CONFIG_PSC_CONSOLE 4 /* console is on PSC4 */ | |
46 | #define CONFIG_BAUDRATE 115200 /* ... at 115200 bps */ | |
47 | #define CONFIG_SYS_BAUDRATE_TABLE \ | |
48 | { 9600, 19200, 38400, 57600, 115200, 230400 } | |
49 | ||
50 | /* | |
51 | * PCI Mapping: | |
52 | * 0x40000000 - 0x4fffffff - PCI Memory | |
53 | * 0x50000000 - 0x50ffffff - PCI IO Space | |
54 | */ | |
55 | #define CONFIG_PCI 1 | |
56 | #define CONFIG_PCI_PNP 1 | |
57 | #define CONFIG_PCI_SCAN_SHOW 1 | |
4fc823dd | 58 | #define CONFIG_PCI_BOOTDELAY 250 |
5c4fa9b4 GB |
59 | |
60 | #define CONFIG_PCI_MEM_BUS 0x40000000 | |
61 | #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS | |
62 | #define CONFIG_PCI_MEM_SIZE 0x10000000 | |
63 | ||
64 | #define CONFIG_PCI_IO_BUS 0x50000000 | |
65 | #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS | |
66 | #define CONFIG_PCI_IO_SIZE 0x01000000 | |
67 | ||
68 | /* | |
69 | * Partitions | |
70 | */ | |
71 | #define CONFIG_DOS_PARTITION | |
72 | #define CONFIG_BZIP2 | |
73 | ||
a59996e3 AG |
74 | /* |
75 | * Video | |
76 | */ | |
77 | #define CONFIG_VIDEO | |
78 | ||
79 | #ifdef CONFIG_VIDEO | |
80 | #define CONFIG_VIDEO_MB862xx | |
81 | #define CONFIG_VIDEO_MB862xx_ACCEL | |
82 | #define CONFIG_VIDEO_CORALP | |
83 | #define CONFIG_CFB_CONSOLE | |
84 | #define CONFIG_VIDEO_LOGO | |
348de314 | 85 | #define CONFIG_VIDEO_BMP_LOGO |
a59996e3 AG |
86 | #define CONFIG_VIDEO_SW_CURSOR |
87 | #define CONFIG_VGA_AS_SINGLE_DEVICE | |
88 | #define CONFIG_SYS_CONSOLE_IS_IN_ENV | |
89 | #define CONFIG_SPLASH_SCREEN | |
90 | #define CONFIG_VIDEO_BMP_GZIP | |
91 | #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (2 << 20) /* decompressed img */ | |
92 | ||
93 | /* Coral-PA clock frequency, geo and other both 133MHz */ | |
94 | #define CONFIG_SYS_MB862xx_CCF 0x00050000 | |
95 | /* Video SDRAM parameters */ | |
96 | #define CONFIG_SYS_MB862xx_MMR 0x11d7fa72 | |
97 | #endif | |
98 | ||
5c4fa9b4 GB |
99 | /* |
100 | * Command line configuration. | |
101 | */ | |
102 | #include <config_cmd_default.h> | |
103 | ||
a59996e3 AG |
104 | #ifdef CONFIG_VIDEO |
105 | #define CONFIG_CMD_BMP | |
106 | #endif | |
5c4fa9b4 GB |
107 | #define CONFIG_CMD_CACHE |
108 | #define CONFIG_CMD_DATE | |
109 | #define CONFIG_CMD_DHCP | |
110 | #define CONFIG_CMD_DIAG | |
111 | #define CONFIG_CMD_EEPROM | |
112 | #define CONFIG_CMD_ELF | |
113 | #define CONFIG_CMD_EXT2 | |
114 | #define CONFIG_CMD_FAT | |
115 | #define CONFIG_CMD_I2C | |
116 | #define CONFIG_CMD_IDE | |
117 | #define CONFIG_CMD_IRQ | |
118 | #define CONFIG_CMD_MII | |
119 | #define CONFIG_CMD_PCI | |
120 | #define CONFIG_CMD_PING | |
121 | #define CONFIG_CMD_REGINFO | |
122 | #define CONFIG_CMD_SAVES | |
f1f66edf | 123 | #define CONFIG_CMD_SPI |
5c4fa9b4 GB |
124 | #define CONFIG_CMD_USB |
125 | ||
14d0a02a | 126 | #if (CONFIG_SYS_TEXT_BASE == 0xFF000000) |
5c4fa9b4 GB |
127 | #define CONFIG_SYS_LOWBOOT 1 |
128 | #endif | |
129 | ||
130 | /* | |
131 | * Autobooting | |
132 | */ | |
133 | #define CONFIG_BOOTDELAY 1 | |
134 | ||
135 | #undef CONFIG_BOOTARGS | |
136 | ||
ff27650b DZ |
137 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
138 | "fw_image=digsyMPC.img\0" \ | |
139 | "mtcb_start=mtc led diag orange; run mtcb_1\0" \ | |
140 | "mtcb_clearled=for x in user1 user2 usbpwr usbbusy; " \ | |
141 | "do mtc led $x; done\0" \ | |
142 | "mtcb_1=if mtc key; then run mtcb_clearled mtcb_update; " \ | |
143 | "else run mtcb_fw; fi\0" \ | |
144 | "mtcb_fw=if bootm ff000000; then echo FIRMWARE OK!; " \ | |
145 | "else echo BAD FIRMWARE CRC!; mtc led diag red; fi\0" \ | |
146 | "mtcb_update=mtc led user1 orange;" \ | |
147 | "while mtc key; do ; done; run mtcb_2;\0" \ | |
148 | "mtcb_2=mtc led user1 green 2; usb reset; run mtcb_usb1;\0" \ | |
149 | "mtcb_usb1=if fatload usb 0 400000 script.img; " \ | |
150 | "then run mtcb_doscript; else run mtcb_usb2; fi\0" \ | |
151 | "mtcb_usb2=if fatload usb 0 400000 $fw_image; " \ | |
152 | "then run mtcb_dousb; else run mtcb_ide; fi\0" \ | |
153 | "mtcb_doscript=run mtcb_usbleds; mtc led user2 orange 2; " \ | |
154 | "run mtcb_wait_flickr mtcb_ds_1;\0" \ | |
155 | "mtcb_ds_1=if imi 400000; then mtc led usbbusy; " \ | |
156 | "source 400000; else run mtcb_error; fi\0" \ | |
157 | "mtcb_dousb=run mtcb_usbleds mtcb_wait_flickr mtcb_du_1;\0" \ | |
158 | "mtcb_du_1=if imi 400000; then run mtcb_du_2; " \ | |
159 | "else run mtcb_error; fi\0" \ | |
160 | "mtcb_du_2=run mtcb_clear mtcb_prog; mtc led usbbusy; " \ | |
161 | "run mtcb_checkfw\0" \ | |
162 | "mtcb_checkfw=if imi ff000000; then run mtcb_success; " \ | |
163 | "else run mtcb_error; fi\0" \ | |
164 | "mtcb_waitkey=mtc key; until test $? -eq 0; do mtc key; done\0" \ | |
165 | "mtcb_wait_flickr=run mtcb_waitkey mtcb_uledflckr\0" \ | |
166 | "mtcb_usbleds=mtc led usbpwr green; mtc led usbbusy orange 1;\0"\ | |
167 | "mtcb_uledflckr=mtc led user1 orange 11\0" \ | |
168 | "mtcb_error=mtc led user1 red\0" \ | |
169 | "mtcb_clear=erase ff000000 ff0fffff\0" \ | |
170 | "mtcb_prog=cp.b 400000 ff000000 ${filesize}\0" \ | |
171 | "mtcb_success=mtc led user1 green\0" \ | |
172 | "mtcb_ide=if fatload ide 0 400000 $fw_image;" \ | |
173 | "then run mtcb_doide; else run mtcb_error; fi\0" \ | |
174 | "mtcb_doide=mtc led user2 green 1;" \ | |
175 | "run mtcb_wait_flickr mtcb_di_1;\0" \ | |
176 | "mtcb_di_1=if imi 400000; then run mtcb_di_2;" \ | |
177 | "else run mtcb_error; fi\0" \ | |
178 | "mtcb_di_2=run mtcb_clear; run mtcb_prog mtcb_checkfw\0" \ | |
179 | "ramdisk_num_sector=16\0" \ | |
180 | "flash_base=ff000000\0" \ | |
181 | "flashdisk_size=e00000\0" \ | |
182 | "env_sector=fff60000\0" \ | |
183 | "flashdisk_start=ff100000\0" \ | |
184 | "load_cmd=tftp 400000 digsyMPC.img\0" \ | |
185 | "clear_cmd=erase ff000000 ff0fffff\0" \ | |
186 | "flash_cmd=cp.b 400000 ff000000 ${filesize}\0" \ | |
187 | "update_cmd=run load_cmd; " \ | |
188 | "iminfo 400000; " \ | |
189 | "run clear_cmd flash_cmd; " \ | |
190 | "iminfo ff000000\0" \ | |
191 | "spi_driver=yes\0" \ | |
192 | "spi_watchdog=no\0" \ | |
193 | "ftps_start=yes\0" \ | |
194 | "ftps_user1=admin\0" \ | |
195 | "ftps_pass1=admin\0" \ | |
196 | "ftps_base1=/\0" \ | |
197 | "ftps_home1=/\0" \ | |
198 | "plc_sio_srv=no\0" \ | |
199 | "plc_sio_baud=57600\0" \ | |
200 | "plc_sio_parity=no\0" \ | |
201 | "plc_sio_stop=1\0" \ | |
202 | "plc_sio_com=2\0" \ | |
203 | "plc_eth_srv=yes\0" \ | |
204 | "plc_eth_port=1200\0" \ | |
205 | "plc_root=/ide/\0" \ | |
206 | "diag_level=0\0" \ | |
207 | "webvisu=no\0" \ | |
208 | "plc_can1_routing=no\0" \ | |
209 | "plc_can1_baudrate=250\0" \ | |
210 | "plc_can2_routing=no\0" \ | |
211 | "plc_can2_baudrate=250\0" \ | |
212 | "plc_can3_routing=no\0" \ | |
213 | "plc_can3_baudrate=250\0" \ | |
214 | "plc_can4_routing=no\0" \ | |
215 | "plc_can4_baudrate=250\0" \ | |
216 | "netdev=eth0\0" \ | |
217 | "console=ttyPSC0\0" \ | |
218 | "kernel_addr_r=400000\0" \ | |
219 | "fdt_addr_r=600000\0" \ | |
220 | "nfsargs=setenv bootargs root=/dev/nfs rw " \ | |
221 | "nfsroot=${serverip}:${rootpath}\0" \ | |
222 | "addip=setenv bootargs ${bootargs} " \ | |
223 | "ip=${ipaddr}:${serverip}:${gatewayip}:" \ | |
224 | "${netmask}:${hostname}:${netdev}:off panic=1\0" \ | |
5c4fa9b4 | 225 | "addcons=setenv bootargs ${bootargs} console=${console},${baudrate}\0"\ |
ff27650b DZ |
226 | "rootpath=/opt/eldk/ppc_6xx\0" \ |
227 | "net_nfs=tftp ${kernel_addr_r} ${bootfile};" \ | |
228 | "tftp ${fdt_addr_r} ${fdt_file};" \ | |
229 | "run nfsargs addip addcons;" \ | |
230 | "bootm ${kernel_addr_r} - ${fdt_addr_r}\0" \ | |
231 | "load=tftp 200000 ${u-boot}\0" \ | |
232 | "update=protect off FFF00000 +${filesize};" \ | |
233 | "erase FFF00000 +${filesize};" \ | |
234 | "cp.b 200000 FFF00000 ${filesize};" \ | |
235 | "protect on FFF00000 +${filesize}\0" \ | |
5c4fa9b4 GB |
236 | "" |
237 | ||
ff27650b DZ |
238 | #define CONFIG_BOOTCOMMAND "run mtcb_start" |
239 | ||
f1f66edf GB |
240 | /* |
241 | * SPI configuration | |
242 | */ | |
243 | #define CONFIG_HARD_SPI 1 | |
244 | #define CONFIG_MPC52XX_SPI 1 | |
245 | ||
5c4fa9b4 GB |
246 | /* |
247 | * I2C configuration | |
248 | */ | |
249 | #define CONFIG_HARD_I2C 1 | |
250 | #define CONFIG_SYS_I2C_MODULE 1 | |
251 | #define CONFIG_SYS_I2C_SPEED 100000 | |
252 | #define CONFIG_SYS_I2C_SLAVE 0x7F | |
253 | ||
254 | /* | |
255 | * EEPROM configuration | |
256 | */ | |
257 | #define CONFIG_SYS_I2C_EEPROM_ADDR 0x50 /* 1010000x */ | |
258 | #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1 | |
259 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3 | |
260 | #define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 70 | |
261 | ||
262 | /* | |
263 | * RTC configuration | |
264 | */ | |
466f0137 HS |
265 | #if defined(CONFIG_DIGSY_REV5) |
266 | #define CONFIG_SYS_I2C_RTC_ADDR 0x56 | |
267 | #define CONFIG_RTC_RV3029 | |
a01ebd96 HS |
268 | /* Enable 5k Ohm trickle charge resistor */ |
269 | #define CONFIG_SYS_RV3029_TCR 0x20 | |
466f0137 | 270 | #else |
5c4fa9b4 GB |
271 | #define CONFIG_RTC_DS1337 |
272 | #define CONFIG_SYS_I2C_RTC_ADDR 0x68 | |
c569ad6e | 273 | #define CONFIG_SYS_DS1339_TCR_VAL 0xAB /* diode + 4k resistor */ |
466f0137 | 274 | #endif |
5c4fa9b4 GB |
275 | |
276 | /* | |
277 | * Flash configuration | |
278 | */ | |
279 | #define CONFIG_SYS_FLASH_CFI 1 | |
280 | #define CONFIG_FLASH_CFI_DRIVER 1 | |
281 | ||
466f0137 HS |
282 | #if defined(CONFIG_DIGSY_REV5) |
283 | #define CONFIG_SYS_FLASH_BASE 0xFE000000 | |
284 | #define CONFIG_SYS_FLASH_BASE_CS1 0xFC000000 | |
285 | #define CONFIG_SYS_MAX_FLASH_BANKS 2 | |
927d2cea HS |
286 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE, \ |
287 | CONFIG_SYS_FLASH_BASE_CS1} | |
466f0137 HS |
288 | #define CONFIG_SYS_UPDATE_FLASH_SIZE |
289 | #define CONFIG_FDT_FIXUP_NOR_FLASH_SIZE | |
290 | #else | |
5c4fa9b4 | 291 | #define CONFIG_SYS_FLASH_BASE 0xFF000000 |
5c4fa9b4 | 292 | #define CONFIG_SYS_MAX_FLASH_BANKS 1 |
466f0137 HS |
293 | #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE } |
294 | #endif | |
295 | ||
5c4fa9b4 GB |
296 | #define CONFIG_SYS_MAX_FLASH_SECT 256 |
297 | #define CONFIG_FLASH_16BIT | |
298 | #define CONFIG_SYS_FLASH_CFI_WIDTH FLASH_CFI_16BIT | |
466f0137 | 299 | #define CONFIG_SYS_FLASH_SIZE 0x01000000 |
5c4fa9b4 GB |
300 | #define CONFIG_SYS_FLASH_ERASE_TOUT 240000 |
301 | #define CONFIG_SYS_FLASH_WRITE_TOUT 500 | |
302 | ||
303 | #define CONFIG_OF_LIBFDT 1 | |
304 | #define CONFIG_OF_BOARD_SETUP 1 | |
305 | ||
306 | #define OF_CPU "PowerPC,5200@0" | |
307 | #define OF_SOC "soc5200@f0000000" | |
308 | #define OF_TBCLK (bd->bi_busfreq / 4) | |
309 | ||
310 | #define CONFIG_BOARD_EARLY_INIT_R | |
311 | #define CONFIG_MISC_INIT_R | |
312 | ||
313 | /* | |
314 | * Environment settings | |
315 | */ | |
316 | #define CONFIG_ENV_IS_IN_FLASH 1 | |
317 | #if defined(CONFIG_LOWBOOT) | |
318 | #define CONFIG_ENV_ADDR 0xFF060000 | |
319 | #else /* CONFIG_LOWBOOT */ | |
320 | #define CONFIG_ENV_ADDR 0xFFF60000 | |
321 | #endif /* CONFIG_LOWBOOT */ | |
322 | #define CONFIG_ENV_SIZE 0x10000 | |
323 | #define CONFIG_ENV_SECT_SIZE 0x20000 | |
324 | #define CONFIG_ENV_OVERWRITE 1 | |
325 | ||
326 | /* | |
327 | * Memory map | |
328 | */ | |
329 | #define CONFIG_SYS_MBAR 0xF0000000 | |
330 | #define CONFIG_SYS_SDRAM_BASE 0x00000000 | |
331 | #if !defined(CONFIG_SYS_LOWBOOT) | |
332 | #define CONFIG_SYS_DEFAULT_MBAR 0x80000000 | |
333 | #else | |
334 | #define CONFIG_SYS_DEFAULT_MBAR 0xF0000000 | |
335 | #endif | |
336 | ||
337 | /* | |
338 | * Use SRAM until RAM will be available | |
339 | */ | |
340 | #define CONFIG_SYS_INIT_RAM_ADDR MPC5XXX_SRAM | |
553f0982 | 341 | #define CONFIG_SYS_INIT_RAM_SIZE MPC5XXX_SRAM_SIZE |
5c4fa9b4 | 342 | |
5c4fa9b4 | 343 | #define CONFIG_SYS_GBL_DATA_OFFSET \ |
25ddd1fb | 344 | (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE) |
5c4fa9b4 GB |
345 | #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET |
346 | ||
14d0a02a | 347 | #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE |
5c4fa9b4 GB |
348 | #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) |
349 | #define CONFIG_SYS_RAMBOOT 1 | |
350 | #endif | |
351 | ||
352 | #define CONFIG_SYS_MONITOR_LEN (256 << 10) | |
353 | #define CONFIG_SYS_MALLOC_LEN (4096 << 10) | |
354 | #define CONFIG_SYS_BOOTMAPSZ (8 << 20) | |
355 | ||
356 | /* | |
357 | * Ethernet configuration | |
358 | */ | |
359 | #define CONFIG_MPC5xxx_FEC 1 | |
360 | #define CONFIG_MPC5xxx_FEC_MII100 | |
1b41493d HS |
361 | #if defined(CONFIG_DIGSY_REV5) |
362 | #define CONFIG_PHY_ADDR 0x01 | |
363 | #else | |
5c4fa9b4 | 364 | #define CONFIG_PHY_ADDR 0x00 |
1b41493d | 365 | #endif |
5c4fa9b4 GB |
366 | #define CONFIG_PHY_RESET_DELAY 1000 |
367 | ||
368 | #define CONFIG_NETCONSOLE /* include NetConsole support */ | |
369 | ||
370 | /* | |
371 | * GPIO configuration | |
12602339 GB |
372 | * use pin gpio_wkup_6 as second SDRAM chip select (mem_cs1) |
373 | * Bit 0 (mask 0x80000000) : 0x1 | |
374 | * SPI on Tmr2/3/4/5 pins | |
375 | * Bit 2:3 (mask 0x30000000) : 0x2 | |
376 | * ATA cs0/1 on csb_4/5 | |
377 | * Bit 6:7 (mask 0x03000000) : 0x2 | |
378 | * Ethernet 100Mbit with MD | |
379 | * Bits 12:15 (mask 0x000f0000): 0x5 | |
380 | * USB - Two UARTs | |
381 | * Bits 18:19 (mask 0x00003000) : 0x2 | |
382 | * PSC3 - USB2 on PSC3 | |
383 | * Bits 20:23 (mask 0x00000f00) : 0x1 | |
384 | * PSC2 - CAN1&2 on PSC2 pins | |
385 | * Bits 25:27 (mask 0x00000070) : 0x1 | |
386 | * PSC1 - AC97 functionality | |
387 | * Bits 29:31 (mask 0x00000007) : 0x2 | |
5c4fa9b4 GB |
388 | */ |
389 | #define CONFIG_SYS_GPS_PORT_CONFIG 0xA2552112 | |
390 | ||
391 | /* | |
392 | * Miscellaneous configurable options | |
393 | */ | |
394 | #define CONFIG_SYS_LONGHELP | |
395 | #define CONFIG_AUTO_COMPLETE 1 | |
a781de12 | 396 | #define CONFIG_CMDLINE_EDITING 1 |
5c4fa9b4 | 397 | #define CONFIG_SYS_HUSH_PARSER |
5c4fa9b4 | 398 | |
5c4fa9b4 GB |
399 | #define CONFIG_LOOPW 1 |
400 | #define CONFIG_MX_CYCLIC 1 | |
401 | #define CONFIG_ZERO_BOOTDELAY_CHECK | |
402 | ||
403 | #define CONFIG_SYS_CBSIZE 1024 | |
404 | #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) | |
405 | #define CONFIG_SYS_MAXARGS 32 | |
406 | #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE | |
407 | ||
408 | #define CONFIG_SYS_ALT_MEMTEST | |
409 | #define CONFIG_SYS_MEMTEST_SCRATCH 0x00001000 | |
410 | #define CONFIG_SYS_MEMTEST_START 0x00010000 | |
411 | #define CONFIG_SYS_MEMTEST_END 0x019fffff | |
412 | ||
413 | #define CONFIG_SYS_LOAD_ADDR 0x00100000 | |
414 | ||
5c4fa9b4 GB |
415 | /* |
416 | * Various low-level settings | |
417 | */ | |
418 | #define CONFIG_SYS_SDRAM_CS1 1 | |
419 | #define CONFIG_SYS_XLB_PIPELINING 1 | |
420 | ||
421 | #define CONFIG_SYS_HID0_INIT HID0_ICE | HID0_ICFI | |
422 | #define CONFIG_SYS_HID0_FINAL HID0_ICE | |
423 | ||
424 | #if defined(CONFIG_SYS_LOWBOOT) | |
425 | #define CONFIG_SYS_BOOTCS_START CONFIG_SYS_FLASH_BASE | |
426 | #define CONFIG_SYS_BOOTCS_SIZE CONFIG_SYS_FLASH_SIZE | |
427 | #define CONFIG_SYS_BOOTCS_CFG 0x0002DD00 | |
428 | #endif | |
429 | ||
430 | #define CONFIG_SYS_CS4_START 0x60000000 | |
431 | #define CONFIG_SYS_CS4_SIZE 0x1000 | |
432 | #define CONFIG_SYS_CS4_CFG 0x0008FC00 | |
433 | ||
434 | #define CONFIG_SYS_CS0_START CONFIG_SYS_FLASH_BASE | |
435 | #define CONFIG_SYS_CS0_SIZE CONFIG_SYS_FLASH_SIZE | |
436 | #define CONFIG_SYS_CS0_CFG 0x0002DD00 | |
437 | ||
466f0137 HS |
438 | #if defined(CONFIG_DIGSY_REV5) |
439 | #define CONFIG_SYS_CS1_START CONFIG_SYS_FLASH_BASE_CS1 | |
440 | #define CONFIG_SYS_CS1_SIZE CONFIG_SYS_FLASH_SIZE | |
441 | #define CONFIG_SYS_CS1_CFG 0x0002DD00 | |
442 | #endif | |
443 | ||
5c4fa9b4 GB |
444 | #define CONFIG_SYS_CS_BURST 0x00000000 |
445 | #define CONFIG_SYS_CS_DEADCYCLE 0x11111111 | |
446 | ||
447 | #if !defined(CONFIG_SYS_LOWBOOT) | |
448 | #define CONFIG_SYS_RESET_ADDRESS 0xfff00100 | |
449 | #else | |
450 | #define CONFIG_SYS_RESET_ADDRESS 0xff000100 | |
451 | #endif | |
452 | ||
453 | /* | |
454 | * USB | |
455 | */ | |
456 | #define CONFIG_USB_OHCI_NEW | |
457 | #define CONFIG_SYS_OHCI_BE_CONTROLLER | |
458 | #define CONFIG_USB_STORAGE | |
459 | ||
460 | #define CONFIG_USB_CLOCK 0x00013333 | |
461 | #define CONFIG_USB_CONFIG 0x00002000 | |
462 | ||
463 | #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15 | |
464 | #define CONFIG_SYS_USB_OHCI_REGS_BASE MPC5XXX_USB | |
465 | #define CONFIG_SYS_USB_OHCI_SLOT_NAME "mpc5200" | |
466 | #define CONFIG_SYS_USB_OHCI_CPU_INIT | |
467 | ||
468 | /* | |
469 | * IDE/ATA | |
470 | */ | |
471 | #define CONFIG_IDE_RESET | |
472 | #define CONFIG_IDE_PREINIT | |
473 | ||
474 | #define CONFIG_SYS_ATA_CS_ON_I2C2 | |
475 | #define CONFIG_SYS_IDE_MAXBUS 1 | |
476 | #define CONFIG_SYS_IDE_MAXDEVICE 1 | |
477 | ||
478 | #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000 | |
479 | #define CONFIG_SYS_ATA_BASE_ADDR MPC5XXX_ATA | |
480 | #define CONFIG_SYS_ATA_DATA_OFFSET (0x0060) | |
481 | #define CONFIG_SYS_ATA_REG_OFFSET (CONFIG_SYS_ATA_DATA_OFFSET) | |
482 | #define CONFIG_SYS_ATA_ALT_OFFSET (0x005C) | |
483 | #define CONFIG_SYS_ATA_STRIDE 4 | |
484 | ||
485 | #define CONFIG_ATAPI 1 | |
486 | #define CONFIG_LBA48 1 | |
487 | ||
488 | #endif /* __CONFIG_H */ |