aeb3ec4d11d94278011c8e2a95b7c348c0f37961
[platform/kernel/u-boot.git] / include / configs / QS823.h
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  *
11  * SPDX-License-Identifier:     GPL-2.0+
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 */
22 #undef CONFIG_SYS_DEVICE_NULLDEV                /* null device */
23 #undef CONFIG_SILENT_CONSOLE            /* silent console */
24 #undef CONFIG_SYS_CONSOLE_INFO_QUIET            /* silent console ? */
25 #undef DEBUG_FLASH                      /* debug flash code */
26 #undef FLASH_DEBUG                      /* debug fash code */
27 #undef DEBUG_ENV                        /* debug environment code */
28
29 #define CONFIG_SYS_DIRECT_FLASH_TFTP    1       /* allow direct tftp to flash */
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
40 #define CONFIG_SYS_TEXT_BASE    0xFFF00000
41
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 */
172 #undef CONFIG_SYS_LOADS_BAUD_CHANGE             /* don't allow baudrate change */
173 #undef CONFIG_WATCHDOG                  /* watchdog disabled */
174 #undef CONFIG_STATUS_LED                /* Status LED disabled */
175 #undef CONFIG_CAN_DRIVER                /* CAN Driver support disabled */
176
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
186
187 #undef CONFIG_MAC_PARTITION
188 #undef CONFIG_DOS_PARTITION
189
190 #define CONFIG_RTC_MPC8xx       /* use internal RTC of MPC8xx */
191
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
200 #define CONFIG_CMD_SAVEENV
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
208
209 /*-----------------------------------------------------------------------
210  * Environment variable storage is in FLASH, one sector before U-boot
211  */
212 #define CONFIG_ENV_IS_IN_FLASH  1
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 */
216
217 /*-----------------------------------------------------------------------
218  * Miscellaneous configurable options
219  */
220 #define CONFIG_SYS_LONGHELP                             /* undef to save memory */
221
222 #define CONFIG_SYS_HUSH_PARSER          1               /* use "hush" command parser */
223
224 #if defined(CONFIG_CMD_KGDB)
225 #define CONFIG_SYS_CBSIZE               1024            /* Console I/O Buffer Size */
226 #else
227 #define CONFIG_SYS_CBSIZE               256             /* Console I/O Buffer Size */
228 #endif
229 #define CONFIG_SYS_PBSIZE               (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
230 #define CONFIG_SYS_MAXARGS              16              /* max number of command args */
231 #define CONFIG_SYS_BARGSIZE             CONFIG_SYS_CBSIZE       /* Boot Argument Buffer Size */
232
233 #define CONFIG_SYS_MEMTEST_START        0x0400000       /* memtest works */
234 #define CONFIG_SYS_MEMTEST_END          0x0C00000       /* 4 ... 12 MB in DRAM */
235
236 #define CONFIG_SYS_LOAD_ADDR            0x400000        /* default load address */
237
238 #define CONFIG_SYS_HZ                   1000            /* decrementer freq: 1 ms ticks */
239
240 /*-----------------------------------------------------------------------
241  * Low Level Configuration Settings
242  * (address mappings, register initial values, etc.)
243  * You should know what you are doing if you make changes here.
244  */
245
246 /*-----------------------------------------------------------------------
247  * Internal Memory Mapped Register
248  */
249 #define CONFIG_SYS_IMMR         0xFF000000
250
251 /*-----------------------------------------------------------------------
252  * Definitions for initial stack pointer and data area (in DPRAM)
253  */
254 #define CONFIG_SYS_INIT_RAM_ADDR        CONFIG_SYS_IMMR
255 #define CONFIG_SYS_INIT_RAM_SIZE        0x2F00          /* Size of used area in DPRAM */
256 #define CONFIG_SYS_GBL_DATA_OFFSET      (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
257 #define CONFIG_SYS_INIT_SP_OFFSET       CONFIG_SYS_GBL_DATA_OFFSET
258
259 /*-----------------------------------------------------------------------
260  * Start addresses for the final memory configuration
261  * (Set up by the startup code)
262  * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
263  */
264 #define CONFIG_SYS_SDRAM_BASE           0x00000000
265 #define CONFIG_SYS_FLASH_BASE           0xFF800000      /* Allow an 8Mbyte window */
266
267 #define FLASH_BASE0_4M_PRELIM   0xFFC00000      /* Base for 4M Flash */
268 #define FLASH_BASE0_8M_PRELIM   0xFF800000      /* Base for 8M Flash */
269
270 #define CONFIG_SYS_MONITOR_LEN          (192 << 10)     /* Reserve 192 kB for Monitor */
271 #define CONFIG_SYS_MONITOR_BASE 0xFFF00000      /* U-boot location */
272 #define CONFIG_SYS_MALLOC_LEN           (128 << 10)     /* Reserve 128 kB for malloc() */
273
274 /*
275  * For booting Linux, the board info and command line data
276  * have to be in the first 8 MB of memory, since this is
277  * the maximum mapped by the Linux kernel during initialization.
278  */
279 #define CONFIG_SYS_BOOTMAPSZ            (8 << 20)       /* Initial Memory map for Linux */
280
281 /*-----------------------------------------------------------------------
282  * TODO flash parameters
283  * FLASH organization for Intel Strataflash
284  */
285 #undef  CONFIG_SYS_FLASH_16BIT                          /* 32-bit wide flash memory */
286 #define CONFIG_SYS_MAX_FLASH_BANKS      1               /* max number of memory banks */
287 #define CONFIG_SYS_MAX_FLASH_SECT       71              /* max number of sectors on one chip */
288
289 #define CONFIG_SYS_FLASH_ERASE_TOUT     120000          /* Timeout for Flash Erase (in ms) */
290 #define CONFIG_SYS_FLASH_WRITE_TOUT     500             /* Timeout for Flash Write (in ms) */
291
292 /*-----------------------------------------------------------------------
293  * Cache Configuration
294  */
295 #define CONFIG_SYS_CACHELINE_SIZE       16              /* For all MPC8xx CPUs */
296 #if defined(CONFIG_CMD_KGDB)
297 #define CONFIG_SYS_CACHELINE_SHIFT      4               /* log base 2 of the above value */
298 #endif
299
300 /*-----------------------------------------------------------------------
301  * SYPCR - System Protection Control 11-9
302  * SYPCR can only be written once after reset!
303  *-----------------------------------------------------------------------
304  * Software & Bus Monitor Timer max, Bus Monitor enable, SW Watchdog freeze
305  */
306
307 #ifdef CONFIG_WATCHDOG
308 #define CONFIG_SYS_SYPCR        (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | SYPCR_SWE | SYPCR_SWRI | SYPCR_SWP)
309 #else
310 #define CONFIG_SYS_SYPCR        (SYPCR_SWTC | SYPCR_BMT | SYPCR_BME | SYPCR_SWF | SYPCR_SWRI | SYPCR_SWP)
311 #endif
312
313 /*-----------------------------------------------------------------------
314  * SIUMCR - SIU Module Configuration 11-6
315  *-----------------------------------------------------------------------
316  */
317 #define CONFIG_SYS_SIUMCR       (SIUMCR_DLK | SIUMCR_DPC | SIUMCR_MPRE | SIUMCR_MLRC01 | SIUMCR_GB5E)
318
319 /*-----------------------------------------------------------------------
320  * TBSCR - Time Base Status and Control 11-26
321  *-----------------------------------------------------------------------
322  */
323 #define CONFIG_SYS_TBSCR        (TBSCR_REFA | TBSCR_REFB | TBSCR_TBF)
324
325 /*-----------------------------------------------------------------------
326  * RTCSC - Real-Time Clock Status and Control Register 11-27
327  *-----------------------------------------------------------------------
328  */
329 #define CONFIG_SYS_RTCSC        (RTCSC_SEC | RTCSC_ALR | RTCSC_RTF| RTCSC_RTE)
330
331 /*-----------------------------------------------------------------------
332  * PISCR - Periodic Interrupt Status and Control 11-31
333  *-----------------------------------------------------------------------
334  */
335 #define CONFIG_SYS_PISCR        (PISCR_PS | PISCR_PITF)
336
337 /*-----------------------------------------------------------------------
338  * PLPRCR - PLL, Low-Power, and Reset Control Register 15-30
339  *-----------------------------------------------------------------------
340  */
341
342 /* MF (Multiplication Factor of SPLL) */
343 /* Sets the QS823 to specified clock from 32KHz clock at EXTAL. */
344 #define vPLPRCR_MF      ((CONFIG_CLOCK_MULT+1) << 20)
345 #define CONFIG_SYS_PLPRCR       (vPLPRCR_MF | PLPRCR_SPLSS | PLPRCR_TEXPS | PLPRCR_TMIST | PLPRCR_LOLRE)
346
347 /*-----------------------------------------------------------------------
348  * SCCR - System Clock and reset Control Register               15-27
349  *-----------------------------------------------------------------------
350  */
351 #if defined(CONFIG_CLOCK_16MHZ) || defined(CONFIG_CLOCK_33MHZ) || defined(CONFIG_CLOCK_50MHZ)
352 #define CONFIG_SYS_SCCR         (SCCR_TBS | SCCR_EBDF00 | SCCR_DFBRG00)
353 #define CONFIG_SYS_BRGCLK_PRESCALE      1
354 #endif
355
356 #if defined(CONFIG_CLOCK_66MHZ)
357 #define CONFIG_SYS_SCCR         (SCCR_TBS | SCCR_EBDF00 | SCCR_DFBRG01)
358 #define CONFIG_SYS_BRGCLK_PRESCALE      4
359 #endif
360
361 #if defined(CONFIG_CLOCK_80MHZ)
362 #define CONFIG_SYS_SCCR         (SCCR_TBS | SCCR_EBDF01 | SCCR_DFBRG01)
363 #define CONFIG_SYS_BRGCLK_PRESCALE      4
364 #endif
365
366 #define SCCR_MASK               CONFIG_SYS_SCCR
367
368 /*-----------------------------------------------------------------------
369  * Debug Enable Register
370  * 0x73E67C0F - All interrupts handled by BDM
371  * 0x00824001 - Only interrupts needed by MWDebug.exe handled by BDM
372  *-----------------------------------------------------------------------
373 #define CONFIG_SYS_DER                  0x73E67C0F
374 #define CONFIG_SYS_DER                  0x0082400F
375
376  #-------------------------------------------------------------------------
377  # Program the Debug Enable Register (DER). This register provides the user
378  # with the reason for entering into the debug mode. We want all conditions
379  # to end up as an exception. We don't want to enter into debug mode for
380  # any condition. See the back of of the Development Support section of the
381  # MPC860 User Manual for a description of this register.
382  #-------------------------------------------------------------------------
383 */
384 #define CONFIG_SYS_DER                  0
385
386 /*-----------------------------------------------------------------------
387  * Memory Controller Initialization Constants
388  *-----------------------------------------------------------------------
389  */
390
391 /*
392  * BR0 and OR0 (AMD dual FLASH devices)
393  * Base address = 0xFFF0_0000 - 0xFFF7_FFFF (After relocation)
394  */
395 #define CONFIG_SYS_PRELIM_OR_AM
396 #define CONFIG_SYS_OR_TIMING_FLASH
397
398 /*
399  *-----------------------------------------------------------------------
400  * Base Register 0 (BR0): Bank 0 is assigned to the 8Mbyte (2M X 32)
401  *                        flash that resides on the QS823.
402  *-----------------------------------------------------------------------
403  */
404
405 /* BA (Base Address) = 0xFF80+0b for a total of 17 bits. 17 bit base addr */
406 /*                     represents a minumum 32K block size. */
407 #define vBR0_BA                 ((0xFF80 << 16) + (0 << 15))
408 #define CONFIG_SYS_BR0_PRELIM           (vBR0_BA | BR_V)
409
410 /* AM (Address Mask) = 0xFF80+0b = We've masked the upper 9 bits        */
411 /*                                 which defines a 8 Mbyte memory block. */
412 #define vOR0_AM                 ((0xFF80 << 16) + (0 << 15))
413
414 #if defined(CONFIG_CLOCK_50MHZ) || defined(CONFIG_CLOCK_80MHZ)
415 /*  0101 = Add a 5 clock cycle wait state */
416 #define CONFIG_SYS_OR0_PRELIM           (vOR0_AM | OR_CSNT_SAM | 0R_ACS_DIV4 | OR_BI | OR_SCY_5_CLK)
417 #endif
418
419 #if defined(CONFIG_CLOCK_33MHZ) || defined(CONFIG_CLOCK_66MHZ)
420 /*  0011 = Add a 3 clock cycle wait state */
421 /*  29.8ns clock * (3 + 2) = 149ns cycle time */
422 #define CONFIG_SYS_OR0_PRELIM           (vOR0_AM | OR_CSNT_SAM | OR_ACS_DIV4 | OR_BI | OR_SCY_3_CLK)
423 #endif
424
425 #if defined(CONFIG_CLOCK_16MHZ)
426 /*  0010 = Add a 2 clock cycle wait state */
427 #define CONFIG_SYS_OR0_PRELIM           (vOR0_AM | OR_CSNT_SAM | OR_ACS_DIV4 | OR_BI | OR_SCY_2_CLK)
428 #endif
429
430 /*
431  * BR1 and OR1 (SDRAM)
432  * Base Address = 0x00000000 - 0x00FF_FFFF (16M After relocation)
433  * Base Address = 0x00000000 - 0x01FF_FFFF (32M After relocation)
434  * Base Address = 0x00000000 - 0x03FF_FFFF (64M After relocation)
435  * Base Address = 0x00000000 - 0x07FF_FFFF (128M After relocation)
436  */
437
438 #define SDRAM_BASE              0x00000000      /* SDRAM bank */
439 #define SDRAM_PRELIM_OR_AM      0xF8000000      /* map max. 128 MB */
440
441 /* AM (Address Mask) = 0xF800+0b = We've masked the upper 5 bits which
442  *                                 represents a 128 Mbyte block the DRAM in
443  *                                 this address base.
444  */
445 #define vOR1_AM                 ((0xF800 << 16) + (0 << 15))
446 #define vBR1_BA                 ((0x0000 << 16) + (0 << 15))
447 #define CONFIG_SYS_OR1                  (vOR1_AM | OR_CSNT_SAM | OR_BI)
448 #define CONFIG_SYS_BR1                  (vBR1_BA | BR_MS_UPMA | BR_V)
449
450 /* Machine A Mode Register */
451
452 /* PTA Periodic Timer A */
453
454 #if defined(CONFIG_CLOCK_80MHZ)
455 #define vMAMR_PTA               (19 << 24)
456 #endif
457
458 #if defined(CONFIG_CLOCK_66MHZ)
459 #define vMAMR_PTA               (16 << 24)
460 #endif
461
462 #if defined(CONFIG_CLOCK_50MHZ)
463 #define vMAMR_PTA               (195 << 24)
464 #endif
465
466 #if defined(CONFIG_CLOCK_33MHZ)
467 #define vMAMR_PTA               (131 << 24)
468 #endif
469
470 #if defined(CONFIG_CLOCK_16MHZ)
471 #define vMAMR_PTA               (65 << 24)
472 #endif
473
474 /* For boards with 16M of SDRAM */
475 #define SDRAM_16M_MAX_SIZE      0x01000000      /* max 16MB SDRAM */
476 #define CONFIG_SYS_16M_MAMR             (vMAMR_PTA | MAMR_AMA_TYPE_0 | MAMR_DSA_2_CYCL | MAMR_G0CLA_A11 |\
477 MAMR_RLFA_1X | MAMR_WLFA_1X | MAMR_TLFA_4X)
478
479 /* For boards with 32M of SDRAM */
480 #define SDRAM_32M_MAX_SIZE      0x02000000      /* max 32MB SDRAM */
481 #define CONFIG_SYS_32M_MAMR             (vMAMR_PTA | MAMR_AMA_TYPE_1 | MAMR_DSA_2_CYCL | MAMR_G0CLA_A10 |\
482 MAMR_RLFA_1X | MAMR_WLFA_1X | MAMR_TLFA_4X)
483
484
485 /* Memory Periodic Timer Prescaler Register */
486
487 #if defined(CONFIG_CLOCK_66MHZ) || defined(CONFIG_CLOCK_80MHZ)
488 /* Divide by 32 */
489 #define CONFIG_SYS_MPTPR                0x02
490 #endif
491
492 #if defined(CONFIG_CLOCK_16MHZ) || defined(CONFIG_CLOCK_33MHZ) || defined(CONFIG_CLOCK_50MHZ)
493 /* Divide by 16 */
494 #define CONFIG_SYS_MPTPR                0x04
495 #endif
496
497 /*
498  * BR2 and OR2 (Unused)
499  * Base address = 0xF020_0000 - 0xF020_0FFF
500  *
501  */
502 #define CONFIG_SYS_OR2_PRELIM           0xFFF00000
503 #define CONFIG_SYS_BR2_PRELIM           0xF0200000
504
505 /*
506  * BR3 and OR3 (External Bus CS3)
507  * Base address = 0xF030_0000 - 0xF030_0FFF
508  *
509  */
510 #define CONFIG_SYS_OR3_PRELIM           0xFFF00000
511 #define CONFIG_SYS_BR3_PRELIM           0xF0300000
512
513 /*
514  * BR4 and OR4 (External Bus CS3)
515  * Base address = 0xF040_0000 - 0xF040_0FFF
516  *
517  */
518 #define CONFIG_SYS_OR4_PRELIM           0xFFF00000
519 #define CONFIG_SYS_BR4_PRELIM           0xF0400000
520
521
522 /*
523  * BR4 and OR4 (External Bus CS3)
524  * Base address = 0xF050_0000 - 0xF050_0FFF
525  *
526  */
527 #define CONFIG_SYS_OR5_PRELIM           0xFFF00000
528 #define CONFIG_SYS_BR5_PRELIM           0xF0500000
529
530 /*
531  * BR6 and OR6 (Unused)
532  * Base address = 0xF060_0000 - 0xF060_0FFF
533  *
534  */
535 #define CONFIG_SYS_OR6_PRELIM           0xFFF00000
536 #define CONFIG_SYS_BR6_PRELIM           0xF0600000
537
538 /*
539  * BR7 and OR7 (Unused)
540  * Base address = 0xF070_0000 - 0xF070_0FFF
541  *
542  */
543 #define CONFIG_SYS_OR7_PRELIM           0xFFF00000
544 #define CONFIG_SYS_BR7_PRELIM           0xF0700000
545
546 /*
547  * Sanity checks
548  */
549 #if defined(CONFIG_SCC1_ENET) && defined(CONFIG_FEC_ENET)
550 #error Both CONFIG_SCC1_ENET and CONFIG_FEC_ENET configured
551 #endif
552
553 #endif /* __CONFIG_H */