]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/QS823.h
Merge branch 'u-boot/master' into u-boot-arm/master
[people/ms/u-boot.git] / include / configs / QS823.h
CommitLineData
3bbc899f
WD
1/*
2 * (C) Copyright 2003
3 * MuLogic B.V.
4 *
5 * (C) Copyright 2002
6 * Simple Network Magic Corporation
7 *
8 * (C) Copyright 2000
9 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
10 *
1a459660 11 * SPDX-License-Identifier: GPL-2.0+
3bbc899f
WD
12 */
13
14/*
15 * board/config.h - configuration options, board specific
16 */
17
18#ifndef __CONFIG_H
19#define __CONFIG_H
20
21/* various debug settings */
6d0f6bcf 22#undef CONFIG_SYS_DEVICE_NULLDEV /* null device */
3bbc899f 23#undef CONFIG_SILENT_CONSOLE /* silent console */
6d0f6bcf 24#undef CONFIG_SYS_CONSOLE_INFO_QUIET /* silent console ? */
3bbc899f
WD
25#undef DEBUG_FLASH /* debug flash code */
26#undef FLASH_DEBUG /* debug fash code */
27#undef DEBUG_ENV /* debug environment code */
28
6d0f6bcf 29#define CONFIG_SYS_DIRECT_FLASH_TFTP 1 /* allow direct tftp to flash */
3bbc899f
WD
30#define CONFIG_ENV_OVERWRITE 1 /* allow overwrite MAC address */
31
32/*
33 * High Level Configuration Options
34 * (easy to change)
35 */
36#define CONFIG_MPC823 1 /* This is a MPC823 CPU */
37#define CONFIG_QS823 1 /* ...on a QS823 module */
38#define CONFIG_SCC2_ENET 1 /* SCC2 10BaseT ethernet */
39
2ae18241
WD
40#define CONFIG_SYS_TEXT_BASE 0xFFF00000
41
3bbc899f
WD
42/* Select the target clock speed */
43#undef CONFIG_CLOCK_16MHZ /* cpu=16,777,216 Hz, mem=16Mhz */
44#undef CONFIG_CLOCK_33MHZ /* cpu=33,554,432 Hz, mem=33Mhz */
45#undef CONFIG_CLOCK_50MHZ /* cpu=49,971,200 Hz, mem=33Mhz */
46#define CONFIG_CLOCK_66MHZ 1 /* cpu=67,108,864 Hz, mem=66Mhz */
47#undef CONFIG_CLOCK_80MHZ /* cpu=79,986,688 Hz, mem=33Mhz */
48
49#ifdef CONFIG_CLOCK_16MHZ
50#define CONFIG_CLOCK_MULT 512
51#endif
52
53#ifdef CONFIG_CLOCK_33MHZ
54#define CONFIG_CLOCK_MULT 1024
55#endif
56
57#ifdef CONFIG_CLOCK_50MHZ
58#define CONFIG_CLOCK_MULT 1525
59#endif
60
61#ifdef CONFIG_CLOCK_66MHZ
62#define CONFIG_CLOCK_MULT 2048
63#endif
64
65#ifdef CONFIG_CLOCK_80MHZ
66#define CONFIG_CLOCK_MULT 2441
67#endif
68
69/* choose flash size, 4Mb or 8Mb */
70#define CONFIG_FLASH_4MB 1 /* board has 4Mb flash */
71#undef CONFIG_FLASH_8MB /* board has 8Mb flash */
72
73#define CONFIG_CLOCK_BASE 32768 /* Base clock input freq */
74
75#undef CONFIG_8xx_CONS_SMC1
76#define CONFIG_8xx_CONS_SMC2 1 /* Console is on SMC2 */
77#undef CONFIG_8xx_CONS_NONE
78
79#define CONFIG_BAUDRATE 38400 /* console baudrate = 38.4kbps */
80
81#undef CONFIG_CLOCKS_IN_MHZ /* clocks passsed to Linux in MHz */
82
83/* Define default IP addresses */
84#define CONFIG_IPADDR 192.168.1.99 /* own ip address */
85#define CONFIG_SERVERIP 192.168.1.19 /* used for tftp (not nfs?) */
86
87/* message to say directly after booting */
88#define CONFIG_PREBOOT "echo '';" \
89 "echo 'type:';" \
90 "echo 'run boot_nfs to boot to NFS';" \
91 "echo 'run boot_flash to boot to flash';" \
92 "echo '';" \
93 "echo 'run flash_rootfs to install a new rootfs';" \
94 "echo 'run flash_env to clear the env sector';" \
95 "echo 'run flash_rw to clear the rw fs';" \
96 "echo 'run flash_uboot to install a new u-boot';" \
97 "echo 'run flash_kernel to install a new kernel';"
98
99/* wait 5 seconds before executing CONFIG_BOOTCOMMAND */
100#define CONFIG_BOOTDELAY 5
101#define CONFIG_BOOTCOMMAND "run boot_nfs"
102
103#undef CONFIG_BOOTARGS /* made by set_nfs of set_flash */
104
105/* Our flash filesystem looks like this
106 *
107 * 4Mb board:
108 * ffc0 0000 - ffeb ffff root filesystem (jffs2) (~3Mb)
109 * ffec 0000 - ffed ffff read-write filesystem (ext2)
110 * ffee 0000 - ffef ffff environment
111 * fff0 0000 - fff1 ffff u-boot
112 * fff2 0000 - ffff ffff linux kernel
113 *
114 * 8Mb board:
115 * ff80 0000 - ffeb ffff root filesystem (jffs2) (~7Mb)
116 * ffec 0000 - ffed ffff read-write filesystem (ext2)
117 * ffee 0000 - ffef ffff environment
118 * fff0 0000 - fff1 ffff u-boot
119 * fff2 0000 - ffff ffff linux kernel
120 *
121 */
122
123/* environment for 4Mb board */
124#ifdef CONFIG_FLASH_4MB
125#define CONFIG_EXTRA_ENV_SETTINGS \
126 "serial#=QS823\0" \
127 "hostname=qs823\0" \
128 "netdev=eth0\0" \
129 "ethaddr=00:01:02:B4:36:56\0" \
130 "rootpath=/exports/rootfs\0" \
131 "mtdparts=mtdparts=phys:2816k(root),128k(rw),128k(env),128k(u-boot),-(kernel)\0" \
132 /* fill in variables */ \
133 "set_ip=setenv ip ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off\0" \
134 "set_nfs=setenv bootargs root=/dev/nfs rw nfsroot=$serverip:$rootpath $ip init=/sbin/init $mtdparts\0" \
135 "set_flash=setenv bootargs root=/dev/mtdblock1 ro $ip init=/sbin/init $mtdparts\0" \
136 /* commands */ \
137 "boot_nfs=run set_ip; run set_nfs; tftp 0x400000 /tftpboot/vmlinux.UBoot; bootm 0x400000\0" \
138 "boot_flash=run set_ip; run set_flash; bootm fff20000\0" \
139 /* reinstall flash parts */ \
140 "flash_rootfs=protect off ffc00000 ffebffff; era ffc00000 ffebffff; tftp ffc00000 /tftpboot/rootfs.jffs2\0" \
141 "flash_rw=protect off ffec0000 ffedffff; era ffec0000 ffedffff\0" \
142 "flash_env=protect off ffee0000 ffefffff; era ffee0000 ffefffff\0" \
143 "flash_uboot=protect off fff00000 fff1ffff; era fff00000 fff1ffff; tftp fff00000 /tftpboot/u-boot.4mb.bin\0" \
144 "flash_kernel=protect off fff20000 ffffffff; era fff20000 ffffffff; tftp fff20000 /tftpboot/vmlinux.UBoot\0"
145#endif /* CONFIG_FLASH_4MB */
146
147/* environment for 8Mb board */
148#ifdef CONFIG_FLASH_8MB
149#define CONFIG_EXTRA_ENV_SETTINGS \
150 "serial#=QS823\0" \
151 "hostname=qs823\0" \
152 "netdev=eth0\0" \
153 "ethaddr=00:01:02:B4:36:56\0" \
154 "rootpath=/exports/rootfs\0" \
155 "mtdparts=mtdparts=phys:6912k(root),128k(rw),128k(env),128k(u-boot),-(kernel)\0" \
156 /* fill in variables */ \
157 "set_ip=setenv ip ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:$netdev:off\0" \
158 "set_nfs=setenv bootargs root=/dev/nfs rw nfsroot=$serverip:$rootpath $ip init=/sbin/init $mtdparts\0" \
159 "set_flash=setenv bootargs root=/dev/mtdblock1 ro $ip init=/sbin/init $mtdparts\0" \
160 /* commands */ \
161 "boot_nfs=run set_ip; run set_nfs; tftp 0x400000 /tftpboot/vmlinux.UBoot; bootm 0x400000\0" \
162 "boot_flash=run set_ip; run set_flash; bootm fff20000\0" \
163 /* reinstall flash parts */ \
164 "flash_rootfs=protect off ff800000 ffebffff; era ff800000 ffebffff; tftp ff800000 /tftpboot/rootfs.jffs2\0" \
165 "flash_rw=protect off ffec0000 ffedffff; era ffec0000 ffedffff\0" \
166 "flash_env=protect off ffee0000 ffefffff; era ffee0000 ffefffff\0" \
167 "flash_uboot=protect off fff00000 fff1ffff; era fff00000 fff1ffff; tftp fff00000 /tftpboot/u-boot.8mb.bin\0" \
168 "flash_kernel=protect off fff20000 ffffffff; era fff20000 ffffffff; tftp fff20000 /tftpboot/vmlinux.UBoot\0"
169#endif /* CONFIG_FLASH_8MB */
170
171#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
6d0f6bcf 172#undef CONFIG_SYS_LOADS_BAUD_CHANGE /* don't allow baudrate change */
3bbc899f
WD
173#undef CONFIG_WATCHDOG /* watchdog disabled */
174#undef CONFIG_STATUS_LED /* Status LED disabled */
175#undef CONFIG_CAN_DRIVER /* CAN Driver support disabled */
176
18225e8d
JL
177/*
178 * BOOTP options
179 */
180#define CONFIG_BOOTP_SUBNETMASK
181#define CONFIG_BOOTP_GATEWAY
182#define CONFIG_BOOTP_HOSTNAME
183#define CONFIG_BOOTP_BOOTPATH
184#define CONFIG_BOOTP_BOOTFILESIZE
185
3bbc899f
WD
186
187#undef CONFIG_MAC_PARTITION
188#undef CONFIG_DOS_PARTITION
189
190#define CONFIG_RTC_MPC8xx /* use internal RTC of MPC8xx */
191
12aa9fd2
JL
192
193/*
194 * Command line configuration.
195 */
196#define CONFIG_CMD_BDI
197#define CONFIG_CMD_BOOTD
198#define CONFIG_CMD_CONSOLE
199#define CONFIG_CMD_DATE
bdab39d3 200#define CONFIG_CMD_SAVEENV
12aa9fd2
JL
201#define CONFIG_CMD_FLASH
202#define CONFIG_CMD_IMI
203#define CONFIG_CMD_IMMAP
204#define CONFIG_CMD_MEMORY
205#define CONFIG_CMD_NET
206#define CONFIG_CMD_RUN
207
3bbc899f
WD
208
209/*-----------------------------------------------------------------------
210 * Environment variable storage is in FLASH, one sector before U-boot
211 */
5a1aceb0 212#define CONFIG_ENV_IS_IN_FLASH 1
0e8d1586
JCPV
213#define CONFIG_ENV_SECT_SIZE 0x20000 /* 128Kb, one whole sector */
214#define CONFIG_ENV_SIZE 0x2000 /* 8kb */
215#define CONFIG_ENV_ADDR 0xffee0000 /* address of env sector */
3bbc899f
WD
216
217/*-----------------------------------------------------------------------
218 * Miscellaneous configurable options
219 */
6d0f6bcf
JCPV
220#define CONFIG_SYS_LONGHELP /* undef to save memory */
221#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
3bbc899f 222
6d0f6bcf 223#define CONFIG_SYS_HUSH_PARSER 1 /* use "hush" command parser */
3bbc899f 224
12aa9fd2 225#if defined(CONFIG_CMD_KGDB)
6d0f6bcf 226#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
3bbc899f 227#else
6d0f6bcf 228#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
3bbc899f 229#endif
6d0f6bcf
JCPV
230#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
231#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
232#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
3bbc899f 233
6d0f6bcf
JCPV
234#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works */
235#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
3bbc899f 236
6d0f6bcf 237#define CONFIG_SYS_LOAD_ADDR 0x400000 /* default load address */
3bbc899f 238
6d0f6bcf 239#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
3bbc899f 240
3bbc899f
WD
241/*-----------------------------------------------------------------------
242 * Low Level Configuration Settings
243 * (address mappings, register initial values, etc.)
244 * You should know what you are doing if you make changes here.
245 */
246
247/*-----------------------------------------------------------------------
248 * Internal Memory Mapped Register
249 */
6d0f6bcf 250#define CONFIG_SYS_IMMR 0xFF000000
3bbc899f
WD
251
252/*-----------------------------------------------------------------------
253 * Definitions for initial stack pointer and data area (in DPRAM)
254 */
6d0f6bcf 255#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
553f0982 256#define CONFIG_SYS_INIT_RAM_SIZE 0x2F00 /* Size of used area in DPRAM */
25ddd1fb 257#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
6d0f6bcf 258#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
3bbc899f
WD
259
260/*-----------------------------------------------------------------------
261 * Start addresses for the final memory configuration
262 * (Set up by the startup code)
6d0f6bcf 263 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
3bbc899f 264 */
6d0f6bcf
JCPV
265#define CONFIG_SYS_SDRAM_BASE 0x00000000
266#define CONFIG_SYS_FLASH_BASE 0xFF800000 /* Allow an 8Mbyte window */
3bbc899f
WD
267
268#define FLASH_BASE0_4M_PRELIM 0xFFC00000 /* Base for 4M Flash */
269#define FLASH_BASE0_8M_PRELIM 0xFF800000 /* Base for 8M Flash */
270
6d0f6bcf
JCPV
271#define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */
272#define CONFIG_SYS_MONITOR_BASE 0xFFF00000 /* U-boot location */
273#define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
3bbc899f
WD
274
275/*
276 * For booting Linux, the board info and command line data
277 * have to be in the first 8 MB of memory, since this is
278 * the maximum mapped by the Linux kernel during initialization.
279 */
6d0f6bcf 280#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
3bbc899f
WD
281
282/*-----------------------------------------------------------------------
283 * TODO flash parameters
284 * FLASH organization for Intel Strataflash
285 */
6d0f6bcf
JCPV
286#undef CONFIG_SYS_FLASH_16BIT /* 32-bit wide flash memory */
287#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
288#define CONFIG_SYS_MAX_FLASH_SECT 71 /* max number of sectors on one chip */
3bbc899f 289
6d0f6bcf
JCPV
290#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
291#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
3bbc899f
WD
292
293/*-----------------------------------------------------------------------
294 * Cache Configuration
295 */
6d0f6bcf 296#define CONFIG_SYS_CACHELINE_SIZE 16 /* For all MPC8xx CPUs */
12aa9fd2 297#if defined(CONFIG_CMD_KGDB)
6d0f6bcf 298#define CONFIG_SYS_CACHELINE_SHIFT 4 /* log base 2 of the above value */
3bbc899f
WD
299#endif
300
301/*-----------------------------------------------------------------------
302 * SYPCR - System Protection Control 11-9
303 * SYPCR can only be written once after reset!
304 *-----------------------------------------------------------------------
305 * Software & Bus Monitor Timer max, Bus Monitor enable, SW Watchdog freeze
306 */
307
308#ifdef CONFIG_WATCHDOG
6d0f6bcf 309#define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | SYPCR_SWE | SYPCR_SWRI | SYPCR_SWP)
3bbc899f 310#else
6d0f6bcf 311#define CONFIG_SYS_SYPCR (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | SYPCR_SWRI | SYPCR_SWP)
3bbc899f
WD
312#endif
313
314/*-----------------------------------------------------------------------
315 * SIUMCR - SIU Module Configuration 11-6
316 *-----------------------------------------------------------------------
317 */
6d0f6bcf 318#define CONFIG_SYS_SIUMCR (SIUMCR_DLK | SIUMCR_DPC | SIUMCR_MPRE | SIUMCR_MLRC01 | SIUMCR_GB5E)
3bbc899f
WD
319
320/*-----------------------------------------------------------------------
321 * TBSCR - Time Base Status and Control 11-26
322 *-----------------------------------------------------------------------
323 */
6d0f6bcf 324#define CONFIG_SYS_TBSCR (TBSCR_REFA | TBSCR_REFB | TBSCR_TBF)
3bbc899f
WD
325
326/*-----------------------------------------------------------------------
327 * RTCSC - Real-Time Clock Status and Control Register 11-27
328 *-----------------------------------------------------------------------
329 */
6d0f6bcf 330#define CONFIG_SYS_RTCSC (RTCSC_SEC | RTCSC_ALR | RTCSC_RTF| RTCSC_RTE)
3bbc899f
WD
331
332/*-----------------------------------------------------------------------
333 * PISCR - Periodic Interrupt Status and Control 11-31
334 *-----------------------------------------------------------------------
335 */
6d0f6bcf 336#define CONFIG_SYS_PISCR (PISCR_PS | PISCR_PITF)
3bbc899f
WD
337
338/*-----------------------------------------------------------------------
339 * PLPRCR - PLL, Low-Power, and Reset Control Register 15-30
340 *-----------------------------------------------------------------------
341 */
342
343/* MF (Multiplication Factor of SPLL) */
344/* Sets the QS823 to specified clock from 32KHz clock at EXTAL. */
345#define vPLPRCR_MF ((CONFIG_CLOCK_MULT+1) << 20)
6d0f6bcf 346#define CONFIG_SYS_PLPRCR (vPLPRCR_MF | PLPRCR_SPLSS | PLPRCR_TEXPS | PLPRCR_TMIST | PLPRCR_LOLRE)
3bbc899f
WD
347
348/*-----------------------------------------------------------------------
349 * SCCR - System Clock and reset Control Register 15-27
350 *-----------------------------------------------------------------------
351 */
352#if defined(CONFIG_CLOCK_16MHZ) || defined(CONFIG_CLOCK_33MHZ) || defined(CONFIG_CLOCK_50MHZ)
6d0f6bcf
JCPV
353#define CONFIG_SYS_SCCR (SCCR_TBS | SCCR_EBDF00 | SCCR_DFBRG00)
354#define CONFIG_SYS_BRGCLK_PRESCALE 1
3bbc899f
WD
355#endif
356
357#if defined(CONFIG_CLOCK_66MHZ)
6d0f6bcf
JCPV
358#define CONFIG_SYS_SCCR (SCCR_TBS | SCCR_EBDF00 | SCCR_DFBRG01)
359#define CONFIG_SYS_BRGCLK_PRESCALE 4
3bbc899f
WD
360#endif
361
362#if defined(CONFIG_CLOCK_80MHZ)
6d0f6bcf
JCPV
363#define CONFIG_SYS_SCCR (SCCR_TBS | SCCR_EBDF01 | SCCR_DFBRG01)
364#define CONFIG_SYS_BRGCLK_PRESCALE 4
3bbc899f
WD
365#endif
366
6d0f6bcf 367#define SCCR_MASK CONFIG_SYS_SCCR
3bbc899f
WD
368
369/*-----------------------------------------------------------------------
370 * Debug Enable Register
371 * 0x73E67C0F - All interrupts handled by BDM
372 * 0x00824001 - Only interrupts needed by MWDebug.exe handled by BDM
373 *-----------------------------------------------------------------------
6d0f6bcf
JCPV
374#define CONFIG_SYS_DER 0x73E67C0F
375#define CONFIG_SYS_DER 0x0082400F
3bbc899f
WD
376
377 #-------------------------------------------------------------------------
378 # Program the Debug Enable Register (DER). This register provides the user
379 # with the reason for entering into the debug mode. We want all conditions
380 # to end up as an exception. We don't want to enter into debug mode for
381 # any condition. See the back of of the Development Support section of the
382 # MPC860 User Manual for a description of this register.
383 #-------------------------------------------------------------------------
384*/
6d0f6bcf 385#define CONFIG_SYS_DER 0
3bbc899f
WD
386
387/*-----------------------------------------------------------------------
388 * Memory Controller Initialization Constants
389 *-----------------------------------------------------------------------
390 */
391
392/*
393 * BR0 and OR0 (AMD dual FLASH devices)
394 * Base address = 0xFFF0_0000 - 0xFFF7_FFFF (After relocation)
395 */
6d0f6bcf
JCPV
396#define CONFIG_SYS_PRELIM_OR_AM
397#define CONFIG_SYS_OR_TIMING_FLASH
3bbc899f
WD
398
399/*
400 *-----------------------------------------------------------------------
401 * Base Register 0 (BR0): Bank 0 is assigned to the 8Mbyte (2M X 32)
402 * flash that resides on the QS823.
403 *-----------------------------------------------------------------------
404 */
405
406/* BA (Base Address) = 0xFF80+0b for a total of 17 bits. 17 bit base addr */
407/* represents a minumum 32K block size. */
408#define vBR0_BA ((0xFF80 << 16) + (0 << 15))
6d0f6bcf 409#define CONFIG_SYS_BR0_PRELIM (vBR0_BA | BR_V)
3bbc899f
WD
410
411/* AM (Address Mask) = 0xFF80+0b = We've masked the upper 9 bits */
412/* which defines a 8 Mbyte memory block. */
413#define vOR0_AM ((0xFF80 << 16) + (0 << 15))
414
415#if defined(CONFIG_CLOCK_50MHZ) || defined(CONFIG_CLOCK_80MHZ)
416/* 0101 = Add a 5 clock cycle wait state */
6d0f6bcf 417#define CONFIG_SYS_OR0_PRELIM (vOR0_AM | OR_CSNT_SAM | 0R_ACS_DIV4 | OR_BI | OR_SCY_5_CLK)
3bbc899f
WD
418#endif
419
420#if defined(CONFIG_CLOCK_33MHZ) || defined(CONFIG_CLOCK_66MHZ)
421/* 0011 = Add a 3 clock cycle wait state */
422/* 29.8ns clock * (3 + 2) = 149ns cycle time */
6d0f6bcf 423#define CONFIG_SYS_OR0_PRELIM (vOR0_AM | OR_CSNT_SAM | OR_ACS_DIV4 | OR_BI | OR_SCY_3_CLK)
3bbc899f
WD
424#endif
425
426#if defined(CONFIG_CLOCK_16MHZ)
427/* 0010 = Add a 2 clock cycle wait state */
6d0f6bcf 428#define CONFIG_SYS_OR0_PRELIM (vOR0_AM | OR_CSNT_SAM | OR_ACS_DIV4 | OR_BI | OR_SCY_2_CLK)
3bbc899f
WD
429#endif
430
431/*
432 * BR1 and OR1 (SDRAM)
433 * Base Address = 0x00000000 - 0x00FF_FFFF (16M After relocation)
434 * Base Address = 0x00000000 - 0x01FF_FFFF (32M After relocation)
435 * Base Address = 0x00000000 - 0x03FF_FFFF (64M After relocation)
436 * Base Address = 0x00000000 - 0x07FF_FFFF (128M After relocation)
437 */
438
439#define SDRAM_BASE 0x00000000 /* SDRAM bank */
440#define SDRAM_PRELIM_OR_AM 0xF8000000 /* map max. 128 MB */
441
442/* AM (Address Mask) = 0xF800+0b = We've masked the upper 5 bits which
443 * represents a 128 Mbyte block the DRAM in
444 * this address base.
445 */
446#define vOR1_AM ((0xF800 << 16) + (0 << 15))
447#define vBR1_BA ((0x0000 << 16) + (0 << 15))
6d0f6bcf
JCPV
448#define CONFIG_SYS_OR1 (vOR1_AM | OR_CSNT_SAM | OR_BI)
449#define CONFIG_SYS_BR1 (vBR1_BA | BR_MS_UPMA | BR_V)
3bbc899f
WD
450
451/* Machine A Mode Register */
452
453/* PTA Periodic Timer A */
454
455#if defined(CONFIG_CLOCK_80MHZ)
456#define vMAMR_PTA (19 << 24)
457#endif
458
459#if defined(CONFIG_CLOCK_66MHZ)
460#define vMAMR_PTA (16 << 24)
461#endif
462
463#if defined(CONFIG_CLOCK_50MHZ)
464#define vMAMR_PTA (195 << 24)
465#endif
466
467#if defined(CONFIG_CLOCK_33MHZ)
468#define vMAMR_PTA (131 << 24)
469#endif
470
471#if defined(CONFIG_CLOCK_16MHZ)
472#define vMAMR_PTA (65 << 24)
473#endif
474
475/* For boards with 16M of SDRAM */
476#define SDRAM_16M_MAX_SIZE 0x01000000 /* max 16MB SDRAM */
6d0f6bcf 477#define CONFIG_SYS_16M_MAMR (vMAMR_PTA | MAMR_AMA_TYPE_0 | MAMR_DSA_2_CYCL | MAMR_G0CLA_A11 |\
3bbc899f
WD
478MAMR_RLFA_1X | MAMR_WLFA_1X | MAMR_TLFA_4X)
479
480/* For boards with 32M of SDRAM */
481#define SDRAM_32M_MAX_SIZE 0x02000000 /* max 32MB SDRAM */
6d0f6bcf 482#define CONFIG_SYS_32M_MAMR (vMAMR_PTA | MAMR_AMA_TYPE_1 | MAMR_DSA_2_CYCL | MAMR_G0CLA_A10 |\
3bbc899f
WD
483MAMR_RLFA_1X | MAMR_WLFA_1X | MAMR_TLFA_4X)
484
485
486/* Memory Periodic Timer Prescaler Register */
487
488#if defined(CONFIG_CLOCK_66MHZ) || defined(CONFIG_CLOCK_80MHZ)
489/* Divide by 32 */
6d0f6bcf 490#define CONFIG_SYS_MPTPR 0x02
3bbc899f
WD
491#endif
492
493#if defined(CONFIG_CLOCK_16MHZ) || defined(CONFIG_CLOCK_33MHZ) || defined(CONFIG_CLOCK_50MHZ)
494/* Divide by 16 */
6d0f6bcf 495#define CONFIG_SYS_MPTPR 0x04
3bbc899f
WD
496#endif
497
498/*
499 * BR2 and OR2 (Unused)
500 * Base address = 0xF020_0000 - 0xF020_0FFF
501 *
502 */
6d0f6bcf
JCPV
503#define CONFIG_SYS_OR2_PRELIM 0xFFF00000
504#define CONFIG_SYS_BR2_PRELIM 0xF0200000
3bbc899f
WD
505
506/*
507 * BR3 and OR3 (External Bus CS3)
508 * Base address = 0xF030_0000 - 0xF030_0FFF
509 *
510 */
6d0f6bcf
JCPV
511#define CONFIG_SYS_OR3_PRELIM 0xFFF00000
512#define CONFIG_SYS_BR3_PRELIM 0xF0300000
3bbc899f
WD
513
514/*
515 * BR4 and OR4 (External Bus CS3)
516 * Base address = 0xF040_0000 - 0xF040_0FFF
517 *
518 */
6d0f6bcf
JCPV
519#define CONFIG_SYS_OR4_PRELIM 0xFFF00000
520#define CONFIG_SYS_BR4_PRELIM 0xF0400000
3bbc899f
WD
521
522
523/*
524 * BR4 and OR4 (External Bus CS3)
525 * Base address = 0xF050_0000 - 0xF050_0FFF
526 *
527 */
6d0f6bcf
JCPV
528#define CONFIG_SYS_OR5_PRELIM 0xFFF00000
529#define CONFIG_SYS_BR5_PRELIM 0xF0500000
3bbc899f
WD
530
531/*
532 * BR6 and OR6 (Unused)
533 * Base address = 0xF060_0000 - 0xF060_0FFF
534 *
535 */
6d0f6bcf
JCPV
536#define CONFIG_SYS_OR6_PRELIM 0xFFF00000
537#define CONFIG_SYS_BR6_PRELIM 0xF0600000
3bbc899f
WD
538
539/*
540 * BR7 and OR7 (Unused)
541 * Base address = 0xF070_0000 - 0xF070_0FFF
542 *
543 */
6d0f6bcf
JCPV
544#define CONFIG_SYS_OR7_PRELIM 0xFFF00000
545#define CONFIG_SYS_BR7_PRELIM 0xF0700000
3bbc899f 546
3bbc899f
WD
547/*
548 * Sanity checks
549 */
550#if defined(CONFIG_SCC1_ENET) && defined(CONFIG_FEC_ENET)
551#error Both CONFIG_SCC1_ENET and CONFIG_FEC_ENET configured
552#endif
553
554#endif /* __CONFIG_H */