]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/RPXsuper.h
rename CFG_ macros to CONFIG_SYS
[people/ms/u-boot.git] / include / configs / RPXsuper.h
CommitLineData
5b1d7137
WD
1#ifndef __CONFIG_H
2#define __CONFIG_H
3
4
5/*****************************************************************************
6 *
7 * These settings must match the way _your_ board is set up
8 *
9 *****************************************************************************/
10/* for the AY-Revision which does not use the HRCW */
6d0f6bcf 11#define CONFIG_SYS_DEFAULT_IMMR 0x00010000
5b1d7137
WD
12
13/* What is the oscillator's (UX2) frequency in Hz? */
14#define CONFIG_8260_CLKIN (66 * 1000 * 1000)
15
16/* How is switch S2 set? We really only want the MODCK[1-3] bits, so
17 * only the 3 least significant bits are important.
18*/
6d0f6bcf 19#define CONFIG_SYS_SBC_S2 0x04
5b1d7137
WD
20
21/* What should MODCK_H be? It is dependent on the oscillator
22 * frequency, MODCK[1-3], and desired CPM and core frequencies.
23 * Some example values (all frequencies are in MHz):
24 *
25 * MODCK_H MODCK[1-3] Osc CPM Core
26 * 0x2 0x2 33 133 133
27 * 0x2 0x4 33 133 200
28 * 0x5 0x5 66 133 133
29 * 0x5 0x7 66 133 200
30 */
6d0f6bcf 31#define CONFIG_SYS_SBC_MODCK_H 0x06
5b1d7137 32
6d0f6bcf
JCPV
33#define CONFIG_SYS_SBC_BOOT_LOW 1 /* only for HRCW */
34#undef CONFIG_SYS_SBC_BOOT_LOW
5b1d7137
WD
35
36/* What should the base address of the main FLASH be and how big is
37 * it (in MBytes)? This must contain TEXT_BASE from board/sbc8260/config.mk
38 * The main FLASH is whichever is connected to *CS0. U-Boot expects
39 * this to be the SIMM.
40 */
6d0f6bcf
JCPV
41#define CONFIG_SYS_FLASH0_BASE 0x80000000
42#define CONFIG_SYS_FLASH0_SIZE 16
5b1d7137
WD
43
44/* What should the base address of the secondary FLASH be and how big
45 * is it (in Mbytes)? The secondary FLASH is whichever is connected
46 * to *CS6. U-Boot expects this to be the on board FLASH. If you don't
47 * want it enabled, don't define these constants.
48 */
6d0f6bcf
JCPV
49#define CONFIG_SYS_FLASH1_BASE 0
50#define CONFIG_SYS_FLASH1_SIZE 0
51#undef CONFIG_SYS_FLASH1_BASE
52#undef CONFIG_SYS_FLASH1_SIZE
5b1d7137
WD
53
54/* What should be the base address of SDRAM DIMM and how big is
55 * it (in Mbytes)?
56*/
6d0f6bcf
JCPV
57#define CONFIG_SYS_SDRAM0_BASE 0x00000000
58#define CONFIG_SYS_SDRAM0_SIZE 64
5b1d7137
WD
59
60/* What should be the base address of SDRAM DIMM and how big is
61 * it (in Mbytes)?
62*/
6d0f6bcf
JCPV
63#define CONFIG_SYS_SDRAM1_BASE 0x04000000
64#define CONFIG_SYS_SDRAM1_SIZE 32
5b1d7137
WD
65
66/* What should be the base address of the LEDs and switch S0?
67 * If you don't want them enabled, don't define this.
68 */
6d0f6bcf 69#define CONFIG_SYS_LED_BASE 0x00000000
5b1d7137
WD
70
71/*
72 * select serial console configuration
73 *
74 * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
75 * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
76 * for SCC).
77 *
78 * if CONFIG_CONS_NONE is defined, then the serial console routines must
79 * defined elsewhere.
80 */
81#define CONFIG_CONS_ON_SMC /* define if console on SMC */
82#undef CONFIG_CONS_ON_SCC /* define if console on SCC */
83#undef CONFIG_CONS_NONE /* define if console on neither */
84#define CONFIG_CONS_INDEX 1 /* which SMC/SCC channel for console */
85
86/*
87 * select ethernet configuration
88 *
89 * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then
90 * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3
91 * for FCC)
92 *
93 * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must be
639221c7 94 * defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset.
5b1d7137
WD
95 */
96#undef CONFIG_ETHER_ON_SCC /* define if ethernet on SCC */
97#define CONFIG_ETHER_ON_FCC /* define if ethernet on FCC */
98#undef CONFIG_ETHER_NONE /* define if ethernet on neither */
99#define CONFIG_ETHER_INDEX 3 /* which SCC/FCC channel for ethernet */
100
101#if ( CONFIG_ETHER_INDEX == 3 )
102
103/*
104 * - Rx-CLK is CLK15
105 * - Tx-CLK is CLK16
106 * - RAM for BD/Buffers is on the 60x Bus (see 28-13)
107 * - Enable Half Duplex in FSMR
108 */
6d0f6bcf
JCPV
109# define CONFIG_SYS_CMXFCR_MASK (CMXFCR_FC3|CMXFCR_RF3CS_MSK|CMXFCR_TF3CS_MSK)
110# define CONFIG_SYS_CMXFCR_VALUE (CMXFCR_RF3CS_CLK15|CMXFCR_TF3CS_CLK16)
111# define CONFIG_SYS_CPMFCR_RAMTYPE 0
112/*#define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE|FCC_PSMR_LPB) */
113# define CONFIG_SYS_FCC_PSMR 0
5b1d7137
WD
114
115#else /* CONFIG_ETHER_INDEX */
116# error "on RPX Super ethernet must be FCC3"
117#endif /* CONFIG_ETHER_INDEX */
118
119#define CONFIG_HARD_I2C 1 /* I2C with hardware support */
6d0f6bcf
JCPV
120#define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
121#define CONFIG_SYS_I2C_SLAVE 0x7F
5b1d7137
WD
122
123
124/* Define this to reserve an entire FLASH sector (256 KB) for
125 * environment variables. Otherwise, the environment will be
126 * put in the same sector as U-Boot, and changing variables
127 * will erase U-Boot temporarily
128 */
0e8d1586 129#define CONFIG_ENV_IN_OWN_SECT
5b1d7137
WD
130
131/* Define to allow the user to overwrite serial and ethaddr */
132#define CONFIG_ENV_OVERWRITE
133
134/* What should the console's baud rate be? */
135#define CONFIG_BAUDRATE 115200
136
137/* Ethernet MAC address */
138#define CONFIG_ETHADDR 08:00:22:50:70:63
139
140#define CONFIG_IPADDR 192.168.1.99
141#define CONFIG_SERVERIP 192.168.1.3
142
143/* Set to a positive value to delay for running BOOTCOMMAND */
144#define CONFIG_BOOTDELAY -1
145
146/* undef this to save memory */
6d0f6bcf 147#define CONFIG_SYS_LONGHELP
5b1d7137
WD
148
149/* Monitor Command Prompt */
6d0f6bcf 150#define CONFIG_SYS_PROMPT "=> "
5b1d7137 151
e9a0f8f1 152
a1aa0bb5
JL
153/*
154 * BOOTP options
155 */
156#define CONFIG_BOOTP_BOOTFILESIZE
157#define CONFIG_BOOTP_BOOTPATH
158#define CONFIG_BOOTP_GATEWAY
159#define CONFIG_BOOTP_HOSTNAME
160
161
e9a0f8f1
JL
162/*
163 * Command line configuration.
164 */
165#include <config_cmd_default.h>
166
167#define CONFIG_CMD_IMMAP
168#define CONFIG_CMD_ASKENV
169#define CONFIG_CMD_I2C
170#define CONFIG_CMD_REGINFO
171
172#undef CONFIG_CMD_KGDB
173
5b1d7137
WD
174
175/* Where do the internal registers live? */
6d0f6bcf 176#define CONFIG_SYS_IMMR 0xF0000000
5b1d7137
WD
177
178/* Where do the on board registers (CS4) live? */
6d0f6bcf 179#define CONFIG_SYS_REGS_BASE 0xFA000000
5b1d7137
WD
180
181/*****************************************************************************
182 *
183 * You should not have to modify any of the following settings
184 *
185 *****************************************************************************/
186
187#define CONFIG_MPC8260 1 /* This is an MPC8260 CPU */
188#define CONFIG_RPXSUPER 1 /* on an Embedded Planet RPX Super Board */
9c4c5ae3 189#define CONFIG_CPM2 1 /* Has a CPM2 */
5b1d7137 190
c837dcb1 191#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
5b1d7137 192
5b1d7137
WD
193/*
194 * Miscellaneous configurable options
195 */
e9a0f8f1 196#if defined(CONFIG_CMD_KGDB)
6d0f6bcf 197# define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
5b1d7137 198#else
6d0f6bcf 199# define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
5b1d7137
WD
200#endif
201
202/* Print Buffer Size */
6d0f6bcf 203#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + sizeof(CONFIG_SYS_PROMPT)+16)
5b1d7137 204
6d0f6bcf 205#define CONFIG_SYS_MAXARGS 8 /* max number of command args */
5b1d7137 206
6d0f6bcf 207#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
5b1d7137 208
6d0f6bcf
JCPV
209#define CONFIG_SYS_MEMTEST_START 0x04000000 /* memtest works on */
210#define CONFIG_SYS_MEMTEST_END 0x06000000 /* 64-96 MB in SDRAM */
5b1d7137
WD
211
212#define CONFIG_CLOCKS_IN_MHZ 1 /* clocks passsed to Linux in MHz */
213
6d0f6bcf
JCPV
214#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
215#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
5b1d7137
WD
216
217/* valid baudrates */
6d0f6bcf 218#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
5b1d7137
WD
219
220/*
221 * Low Level Configuration Settings
222 * (address mappings, register initial values, etc.)
223 * You should know what you are doing if you make changes here.
224 */
225
6d0f6bcf
JCPV
226#define CONFIG_SYS_FLASH_BASE CONFIG_SYS_FLASH0_BASE
227#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_SDRAM0_BASE
5b1d7137
WD
228
229/*-----------------------------------------------------------------------
230 * Hard Reset Configuration Words
231 */
6d0f6bcf
JCPV
232#if defined(CONFIG_SYS_SBC_BOOT_LOW)
233# define CONFIG_SYS_SBC_HRCW_BOOT_FLAGS (HRCW_CIP | HRCW_BMS)
5b1d7137 234#else
6d0f6bcf
JCPV
235# define CONFIG_SYS_SBC_HRCW_BOOT_FLAGS (0)
236#endif /* defined(CONFIG_SYS_SBC_BOOT_LOW) */
5b1d7137 237
6d0f6bcf
JCPV
238/* get the HRCW ISB field from CONFIG_SYS_IMMR */
239#define CONFIG_SYS_SBC_HRCW_IMMR ( ((CONFIG_SYS_IMMR & 0x10000000) >> 10) |\
240 ((CONFIG_SYS_IMMR & 0x01000000) >> 7) |\
241 ((CONFIG_SYS_IMMR & 0x00100000) >> 4) )
5b1d7137 242
6d0f6bcf 243#define CONFIG_SYS_HRCW_MASTER (HRCW_BPS11 |\
8bde7f77 244 HRCW_DPPC11 |\
6d0f6bcf 245 CONFIG_SYS_SBC_HRCW_IMMR |\
8bde7f77
WD
246 HRCW_MMR00 |\
247 HRCW_LBPC11 |\
248 HRCW_APPC10 |\
249 HRCW_CS10PC00 |\
6d0f6bcf
JCPV
250 (CONFIG_SYS_SBC_MODCK_H & HRCW_MODCK_H1111) |\
251 CONFIG_SYS_SBC_HRCW_BOOT_FLAGS)
5b1d7137
WD
252
253/* no slaves */
6d0f6bcf
JCPV
254#define CONFIG_SYS_HRCW_SLAVE1 0
255#define CONFIG_SYS_HRCW_SLAVE2 0
256#define CONFIG_SYS_HRCW_SLAVE3 0
257#define CONFIG_SYS_HRCW_SLAVE4 0
258#define CONFIG_SYS_HRCW_SLAVE5 0
259#define CONFIG_SYS_HRCW_SLAVE6 0
260#define CONFIG_SYS_HRCW_SLAVE7 0
5b1d7137
WD
261
262/*-----------------------------------------------------------------------
263 * Definitions for initial stack pointer and data area (in DPRAM)
264 */
6d0f6bcf
JCPV
265#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
266#define CONFIG_SYS_INIT_RAM_END 0x4000 /* End of used area in DPRAM */
267#define CONFIG_SYS_GBL_DATA_SIZE 128 /* bytes reserved for initial data */
268#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_END - CONFIG_SYS_GBL_DATA_SIZE)
269#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
5b1d7137
WD
270
271/*-----------------------------------------------------------------------
272 * Start addresses for the final memory configuration
273 * (Set up by the startup code)
6d0f6bcf
JCPV
274 * Please note that CONFIG_SYS_SDRAM_BASE _must_ start at 0
275 * Note also that the logic that sets CONFIG_SYS_RAMBOOT is platform dependent.
5b1d7137 276 */
6d0f6bcf 277#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH0_BASE + 0x00F00000)
5b1d7137 278
6d0f6bcf
JCPV
279#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
280# define CONFIG_SYS_RAMBOOT
5b1d7137
WD
281#endif
282
6d0f6bcf
JCPV
283#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
284#define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
5b1d7137
WD
285
286/*
287 * For booting Linux, the board info and command line data
288 * have to be in the first 8 MB of memory, since this is
289 * the maximum mapped by the Linux kernel during initialization.
290 */
6d0f6bcf 291#define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
5b1d7137
WD
292
293/*-----------------------------------------------------------------------
294 * FLASH and environment organization
295 */
6d0f6bcf
JCPV
296#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
297#define CONFIG_SYS_MAX_FLASH_SECT 71 /* max number of sectors on one chip */
5b1d7137 298
6d0f6bcf
JCPV
299#define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Timeout for Flash Erase (in ms) */
300#define CONFIG_SYS_FLASH_WRITE_TOUT 1 /* Timeout for Flash Write (in ms) */
5b1d7137 301
6d0f6bcf 302#ifndef CONFIG_SYS_RAMBOOT
5a1aceb0 303# define CONFIG_ENV_IS_IN_FLASH 1
5b1d7137 304
0e8d1586 305# ifdef CONFIG_ENV_IN_OWN_SECT
6d0f6bcf 306# define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + 0x40000)
0e8d1586 307# define CONFIG_ENV_SECT_SIZE 0x40000
5b1d7137 308# else
6d0f6bcf 309# define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN - CONFIG_ENV_SECT_SIZE)
0e8d1586
JCPV
310# define CONFIG_ENV_SIZE 0x1000 /* Total Size of Environment Sector */
311# define CONFIG_ENV_SECT_SIZE 0x10000 /* see README - env sect real size */
312# endif /* CONFIG_ENV_IN_OWN_SECT */
5b1d7137 313#else
9314cee6 314# define CONFIG_ENV_IS_IN_NVRAM 1
6d0f6bcf 315# define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
0e8d1586 316# define CONFIG_ENV_SIZE 0x200
6d0f6bcf 317#endif /* CONFIG_SYS_RAMBOOT */
5b1d7137
WD
318
319/*-----------------------------------------------------------------------
320 * Cache Configuration
321 */
6d0f6bcf 322#define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */
5b1d7137 323
e9a0f8f1 324#if defined(CONFIG_CMD_KGDB)
6d0f6bcf 325# define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
5b1d7137
WD
326#endif
327
328/*-----------------------------------------------------------------------
329 * HIDx - Hardware Implementation-dependent Registers 2-11
330 *-----------------------------------------------------------------------
331 * HID0 also contains cache control - initially enable both caches and
332 * invalidate contents, then the final state leaves only the instruction
333 * cache enabled. Note that Power-On and Hard reset invalidate the caches,
334 * but Soft reset does not.
335 *
336 * HID1 has only read-only information - nothing to set.
337 */
6d0f6bcf 338#define CONFIG_SYS_HID0_INIT (/*HID0_ICE |*/\
5b1d7137
WD
339 /*HID0_DCE |*/\
340 HID0_ICFI |\
341 HID0_DCI |\
342 HID0_IFEM |\
343 HID0_ABE)
344
6d0f6bcf 345#define CONFIG_SYS_HID0_FINAL (/*HID0_ICE |*/\
5b1d7137
WD
346 HID0_IFEM |\
347 HID0_ABE |\
348 HID0_EMCP)
6d0f6bcf 349#define CONFIG_SYS_HID2 0
5b1d7137
WD
350
351/*-----------------------------------------------------------------------
352 * RMR - Reset Mode Register
353 *-----------------------------------------------------------------------
354 */
6d0f6bcf 355#define CONFIG_SYS_RMR 0
5b1d7137
WD
356
357/*-----------------------------------------------------------------------
358 * BCR - Bus Configuration 4-25
359 *-----------------------------------------------------------------------
360 */
6d0f6bcf 361#define CONFIG_SYS_BCR (BCR_EBM |\
5b1d7137
WD
362 BCR_PLDP |\
363 BCR_EAV |\
364 BCR_NPQM0)
365
366/*-----------------------------------------------------------------------
367 * SIUMCR - SIU Module Configuration 4-31
368 *-----------------------------------------------------------------------
369 */
370
6d0f6bcf 371#define CONFIG_SYS_SIUMCR (SIUMCR_L2CPC01 |\
8bde7f77
WD
372 SIUMCR_APPC10 |\
373 SIUMCR_CS10PC01)
5b1d7137
WD
374
375
376/*-----------------------------------------------------------------------
377 * SYPCR - System Protection Control 11-9
378 * SYPCR can only be written once after reset!
379 *-----------------------------------------------------------------------
380 * Watchdog & Bus Monitor Timer max, 60x Bus Monitor enable
381 */
6d0f6bcf 382#define CONFIG_SYS_SYPCR (SYPCR_SWTC |\
8bde7f77
WD
383 SYPCR_BMT |\
384 SYPCR_PBME |\
385 SYPCR_LBME |\
386 SYPCR_SWRI |\
387 SYPCR_SWP)
5b1d7137
WD
388
389/*-----------------------------------------------------------------------
390 * TMCNTSC - Time Counter Status and Control 4-40
391 *-----------------------------------------------------------------------
392 * Clear once per Second and Alarm Interrupt Status, Set 32KHz timersclk,
393 * and enable Time Counter
394 */
6d0f6bcf 395#define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC |\
8bde7f77
WD
396 TMCNTSC_ALR |\
397 TMCNTSC_TCF |\
398 TMCNTSC_TCE)
5b1d7137
WD
399
400/*-----------------------------------------------------------------------
401 * PISCR - Periodic Interrupt Status and Control 4-42
402 *-----------------------------------------------------------------------
403 * Clear Periodic Interrupt Status, Set 32KHz timersclk, and enable
404 * Periodic timer
405 */
6d0f6bcf 406#define CONFIG_SYS_PISCR (PISCR_PS |\
8bde7f77
WD
407 PISCR_PTF |\
408 PISCR_PTE)
5b1d7137
WD
409
410/*-----------------------------------------------------------------------
411 * SCCR - System Clock Control 9-8
412 *-----------------------------------------------------------------------
413 */
6d0f6bcf 414#define CONFIG_SYS_SCCR (SCCR_DFBRG01)
5b1d7137
WD
415
416/*-----------------------------------------------------------------------
417 * RCCR - RISC Controller Configuration 13-7
418 *-----------------------------------------------------------------------
419 */
6d0f6bcf 420#define CONFIG_SYS_RCCR 0
5b1d7137
WD
421
422/*
423 * Init Memory Controller:
424 *
425 * Bank Bus Machine PortSz Device
426 * ---- --- ------- ------ ------
427 * 0 60x GPCM 64 bit FLASH (BGA - 16MB AMD AM29DL323DB90)
428 * 1 60x SDRAM 64 bit SDRAM (BGA - 64MB Hitachi HM5225325FBP-B60)
429 * 2 Local SDRAM 32 bit SDRAM (BGA - 32MB Hitachi HM5225325FBP-B60)
430 * 3 unused
431 * 4 60x GPCM 8 bit Board Regs, LEDs, switches
432 * 5 unused
433 * 6 unused
434 * 7 unused
435 * 8 PCMCIA
436 * 9 unused
437 * 10 unused
438 * 11 unused
439*/
440
441/* Bank 0 - FLASH
442 *
443 */
6d0f6bcf 444#define CONFIG_SYS_BR0_PRELIM ((CONFIG_SYS_FLASH0_BASE & BRx_BA_MSK) |\
8bde7f77 445 BRx_PS_64 |\
5b1d7137 446 BRx_DECC_NONE |\
8bde7f77
WD
447 BRx_MS_GPCM_P |\
448 BRx_V)
5b1d7137 449
6d0f6bcf 450#define CONFIG_SYS_OR0_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH0_SIZE) |\
8bde7f77
WD
451 ORxG_CSNT |\
452 ORxG_ACS_DIV1 |\
453 ORxG_SCY_6_CLK |\
454 ORxG_EHTR)
5b1d7137
WD
455
456/* Bank 1 - SDRAM
457 *
458 */
6d0f6bcf 459#define CONFIG_SYS_BR1_PRELIM ((CONFIG_SYS_SDRAM0_BASE & BRx_BA_MSK) |\
8bde7f77
WD
460 BRx_PS_64 |\
461 BRx_MS_SDRAM_P |\
462 BRx_V)
5b1d7137 463
6d0f6bcf 464#define CONFIG_SYS_OR1_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM0_SIZE) |\
8bde7f77
WD
465 ORxS_BPD_4 |\
466 ORxS_ROWST_PBI0_A8 |\
467 ORxS_NUMR_12 |\
5b1d7137
WD
468 ORxS_IBID)
469
6d0f6bcf
JCPV
470#define CONFIG_SYS_PSDMR 0x014DA412
471#define CONFIG_SYS_PSRT 0x79
5b1d7137
WD
472
473
474/* Bank 2 - SDRAM
475 *
476 */
6d0f6bcf 477#define CONFIG_SYS_BR2_PRELIM ((CONFIG_SYS_SDRAM1_BASE & BRx_BA_MSK) |\
8bde7f77
WD
478 BRx_PS_32 |\
479 BRx_MS_SDRAM_L |\
480 BRx_V)
5b1d7137 481
6d0f6bcf 482#define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM1_SIZE) |\
8bde7f77
WD
483 ORxS_BPD_4 |\
484 ORxS_ROWST_PBI0_A9 |\
485 ORxS_NUMR_12)
5b1d7137 486
6d0f6bcf
JCPV
487#define CONFIG_SYS_LSDMR 0x0169A512
488#define CONFIG_SYS_LSRT 0x79
5b1d7137 489
6d0f6bcf 490#define CONFIG_SYS_MPTPR (0x0800 & MPTPR_PTP_MSK)
5b1d7137
WD
491
492/* Bank 4 - On board registers
493 *
494 */
6d0f6bcf 495#define CONFIG_SYS_BR4_PRELIM ((CONFIG_SYS_REGS_BASE & BRx_BA_MSK) |\
8bde7f77
WD
496 BRx_PS_8 |\
497 BRx_MS_GPCM_P |\
498 BRx_V)
5b1d7137 499
6d0f6bcf 500#define CONFIG_SYS_OR4_PRELIM (ORxG_AM_MSK |\
8bde7f77
WD
501 ORxG_CSNT |\
502 ORxG_ACS_DIV1 |\
503 ORxG_SCY_5_CLK |\
504 ORxG_TRLX)
5b1d7137
WD
505
506/*
507 * Internal Definitions
508 *
509 * Boot Flags
510 */
511#define BOOTFLAG_COLD 0x01 /* Normal Power-On: Boot from FLASH */
512#define BOOTFLAG_WARM 0x02 /* Software reboot */
513
514#endif /* __CONFIG_H */