include/configs: Use new CONFIG_CMD_* in 82xx board config files.
[platform/kernel/u-boot.git] / include / configs / MPC8266ADS.h
1 /*
2  * (C) Copyright 2001
3  * Stuart Hughes <stuarth@lineo.com>
4  * This file is based on similar values for other boards found in other
5  * U-Boot config files, and some that I found in the mpc8260ads manual.
6  *
7  * Note: my board is a PILOT rev.
8  * Note: the mpc8260ads doesn't come with a proper Ethernet MAC address.
9  *
10  * See file CREDITS for list of people who contributed to this
11  * project.
12  *
13  * This program is free software; you can redistribute it and/or
14  * modify it under the terms of the GNU General Public License as
15  * published by the Free Software Foundation; either version 2 of
16  * the License, or (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program; if not, write to the Free Software
25  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26  * MA 02111-1307 USA
27  */
28
29 /*
30  * Config header file for a MPC8266ADS Pilot 16M Ram Simm, 8Mbytes Flash Simm
31  */
32
33 /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
34    !!                                                                 !!
35    !!  This configuration requires JP3 to be in position 1-2 to work  !!
36    !!  To make it work for the default, the TEXT_BASE define in       !!
37    !!  board/mpc8266ads/config.mk must be changed from 0xfe000000 to  !!
38    !!  0xfff00000                                                     !!
39    !!  The CFG_HRCW_MASTER define below must also be changed to match !!
40    !!                                                                 !!
41    !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
42  */
43
44 #ifndef __CONFIG_H
45 #define __CONFIG_H
46
47 /*
48  * High Level Configuration Options
49  * (easy to change)
50  */
51
52 #define CONFIG_MPC8260          1       /* This is an MPC8260 CPU       */
53 #define CONFIG_MPC8266ADS       1       /* ...on motorola ADS board     */
54 #define CONFIG_CPM2             1       /* Has a CPM2 */
55
56 #define CONFIG_BOARD_EARLY_INIT_F 1     /* Call board_early_init_f      */
57
58 /* allow serial and ethaddr to be overwritten */
59 #define CONFIG_ENV_OVERWRITE
60
61 /*
62  * select serial console configuration
63  *
64  * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
65  * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
66  * for SCC).
67  *
68  * if CONFIG_CONS_NONE is defined, then the serial console routines must
69  * defined elsewhere (for example, on the cogent platform, there are serial
70  * ports on the motherboard which are used for the serial console - see
71  * cogent/cma101/serial.[ch]).
72  */
73 #undef  CONFIG_CONS_ON_SMC              /* define if console on SMC */
74 #define CONFIG_CONS_ON_SCC              /* define if console on SCC */
75 #undef  CONFIG_CONS_NONE                /* define if console on something else */
76 #define CONFIG_CONS_INDEX       1       /* which serial channel for console */
77
78 /*
79  * select ethernet configuration
80  *
81  * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then
82  * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3
83  * for FCC)
84  *
85  * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must be
86  * defined elsewhere (as for the console), or CFG_CMD_NET must be removed
87  * from CONFIG_COMMANDS to remove support for networking.
88  */
89 #undef  CONFIG_ETHER_ON_SCC             /* define if ether on SCC   */
90 #define CONFIG_ETHER_ON_FCC             /* define if ether on FCC   */
91 #undef  CONFIG_ETHER_NONE               /* define if ether on something else */
92 #define CONFIG_ETHER_INDEX      2       /* which channel for ether  */
93 #define CONFIG_MII                      /* MII PHY management           */
94 #define CONFIG_BITBANGMII               /* bit-bang MII PHY management  */
95 /*
96  * Port pins used for bit-banged MII communictions (if applicable).
97  */
98 #define MDIO_PORT       2       /* Port C */
99 #define MDIO_ACTIVE     (iop->pdir |=  0x00400000)
100 #define MDIO_TRISTATE   (iop->pdir &= ~0x00400000)
101 #define MDIO_READ       ((iop->pdat &  0x00400000) != 0)
102
103 #define MDIO(bit)       if(bit) iop->pdat |=  0x00400000; \
104                         else    iop->pdat &= ~0x00400000
105
106 #define MDC(bit)        if(bit) iop->pdat |=  0x00200000; \
107                         else    iop->pdat &= ~0x00200000
108
109 #define MIIDELAY        udelay(1)
110
111 #if (CONFIG_ETHER_INDEX == 2)
112
113 /*
114  * - Rx-CLK is CLK13
115  * - Tx-CLK is CLK14
116  * - Select bus for bd/buffers (see 28-13)
117  * - Half duplex
118  */
119 # define CFG_CMXFCR_MASK        (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | CMXFCR_TF2CS_MSK)
120 # define CFG_CMXFCR_VALUE       (CMXFCR_RF2CS_CLK13 | CMXFCR_TF2CS_CLK14)
121 # define CFG_CPMFCR_RAMTYPE     0
122 # define CFG_FCC_PSMR           (FCC_PSMR_FDE | FCC_PSMR_LPB)
123
124 #endif  /* CONFIG_ETHER_INDEX */
125
126 /* other options */
127 #define CONFIG_HARD_I2C         1       /* To enable I2C support        */
128 #define CFG_I2C_SPEED           400000  /* I2C speed and slave address  */
129 #define CFG_I2C_SLAVE           0x7F
130 #define CFG_I2C_EEPROM_ADDR_LEN 1
131
132 /* PCI */
133 #define CONFIG_PCI
134 #define CONFIG_PCI_PNP
135 #define CONFIG_PCI_BOOTDELAY 0
136 #undef CONFIG_PCI_SCAN_SHOW
137
138 /*-----------------------------------------------------------------------
139  * Definitions for Serial Presence Detect EEPROM address
140  * (to get SDRAM settings)
141  */
142 #define SPD_EEPROM_ADDRESS      0x50
143
144
145 #define CONFIG_8260_CLKIN       66000000        /* in Hz */
146 #define CONFIG_BAUDRATE         115200
147
148
149 /*
150  * Command line configuration.
151  */
152 #include <config_cmd_all.h>
153
154 #undef CONFIG_CMD_BEDBUG
155 #undef CONFIG_CMD_BMP
156 #undef CONFIG_CMD_BSP
157 #undef CONFIG_CMD_DATE
158 #undef CONFIG_CMD_DHCP
159 #undef CONFIG_CMD_DISPLAY
160 #undef CONFIG_CMD_DOC
161 #undef CONFIG_CMD_DTT
162 #undef CONFIG_CMD_EEPROM
163 #undef CONFIG_CMD_ELF
164 #undef CONFIG_CMD_EXT2
165 #undef CONFIG_CMD_FDC
166 #undef CONFIG_CMD_FDOS
167 #undef CONFIG_CMD_HWFLOW
168 #undef CONFIG_CMD_IDE
169 #undef CONFIG_CMD_JFFS2
170 #undef CONFIG_CMD_KGDB
171 #undef CONFIG_CMD_MMC
172 #undef CONFIG_CMD_NAND
173 #undef CONFIG_CMD_PCMCIA
174 #undef CONFIG_CMD_REISER
175 #undef CONFIG_CMD_SCSI
176 #undef CONFIG_CMD_SPI
177 #undef CONFIG_CMD_SNTP
178 #undef CONFIG_CMD_VFD
179 #undef CONFIG_CMD_UNIVERSE
180 #undef CONFIG_CMD_USB
181 #undef CONFIG_CMD_XIMG
182
183 /* Define a command string that is automatically executed when no character
184  * is read on the console interface withing "Boot Delay" after reset.
185  */
186 #undef  CONFIG_BOOT_ROOT_INITRD         /* Use ram disk for the root file system */
187 #define CONFIG_BOOT_ROOT_NFS            /* Use a NFS mounted root file system */
188
189 #ifdef CONFIG_BOOT_ROOT_INITRD
190 #define CONFIG_BOOTCOMMAND \
191         "version;" \
192         "echo;" \
193         "bootp;" \
194         "setenv bootargs root=/dev/ram0 rw " \
195         "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \
196         "bootm"
197 #endif /* CONFIG_BOOT_ROOT_INITRD */
198
199 #ifdef CONFIG_BOOT_ROOT_NFS
200 #define CONFIG_BOOTCOMMAND \
201         "version;" \
202         "echo;" \
203         "bootp;" \
204         "setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \
205         "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \
206         "bootm"
207 #endif /* CONFIG_BOOT_ROOT_NFS */
208
209 /* Add support for a few extra bootp options like:
210  *      - File size
211  *      - DNS
212  */
213 #define CONFIG_BOOTP_MASK       (CONFIG_BOOTP_DEFAULT | \
214                                  CONFIG_BOOTP_BOOTFILESIZE | \
215                                  CONFIG_BOOTP_DNS)
216
217
218
219 #define CONFIG_BOOTDELAY        5       /* autoboot after 5 seconds */
220
221 #if defined(CONFIG_CMD_KGDB)
222 #undef  CONFIG_KGDB_ON_SMC              /* define if kgdb on SMC */
223 #define CONFIG_KGDB_ON_SCC              /* define if kgdb on SCC */
224 #undef  CONFIG_KGDB_NONE                /* define if kgdb on something else */
225 #define CONFIG_KGDB_INDEX       2       /* which serial channel for kgdb */
226 #define CONFIG_KGDB_BAUDRATE    115200  /* speed to run kgdb serial port at */
227 #endif
228
229 #undef  CONFIG_WATCHDOG                 /* disable platform specific watchdog */
230
231 /*
232  * Miscellaneous configurable options
233  */
234 #define CFG_LONGHELP                    /* undef to save memory     */
235 #define CFG_PROMPT      "=> "           /* Monitor Command Prompt   */
236 #if defined(CONFIG_CMD_KGDB)
237 #define CFG_CBSIZE      1024            /* Console I/O Buffer Size  */
238 #else
239 #define CFG_CBSIZE      256                     /* Console I/O Buffer Size  */
240 #endif
241 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16)   /* Print Buffer Size */
242 #define CFG_MAXARGS     16                      /* max number of command args   */
243 #define CFG_BARGSIZE    CFG_CBSIZE      /* Boot Argument Buffer Size    */
244
245 #define CFG_MEMTEST_START       0x00100000      /* memtest works on */
246 #define CFG_MEMTEST_END         0x00f00000      /* 1 ... 15 MB in DRAM  */
247
248 #undef CONFIG_CLOCKS_IN_MHZ             /* clocks passsed to Linux in MHz */
249                                         /* for versions < 2.4.5-pre5    */
250
251 #define CFG_LOAD_ADDR           0x100000        /* default load address */
252
253 #define CFG_HZ                  1000    /* decrementer freq: 1 ms ticks */
254
255 #define CFG_BAUDRATE_TABLE      { 9600, 19200, 38400, 57600, 115200, 230400 }
256
257 #define CFG_FLASH_BASE          0xFE000000
258 #define FLASH_BASE              0xFE000000
259 #define CFG_MAX_FLASH_BANKS     1       /* max num of memory banks      */
260 #define CFG_MAX_FLASH_SECT      32      /* max num of sects on one chip */
261 #define CFG_FLASH_SIZE          8
262 #define CFG_FLASH_ERASE_TOUT    8000    /* Timeout for Flash Erase (in ms)    */
263 #define CFG_FLASH_WRITE_TOUT    5       /* Timeout for Flash Write (in ms)    */
264
265 #undef  CFG_FLASH_CHECKSUM
266
267 /* this is stuff came out of the Motorola docs */
268 /* Only change this if you also change the Hardware configuration Word */
269 #define CFG_DEFAULT_IMMR        0x0F010000
270
271 /* Set IMMR to 0xF0000000 or above to boot Linux  */
272 #define CFG_IMMR                0xF0000000
273 #define CFG_BCSR                0xF8000000
274 #define CFG_PCI_INT             0xF8200000      /* PCI interrupt controller */
275
276 /* Define CONFIG_VERY_BIG_RAM to allow use of SDRAMs larger than 256MBytes
277  */
278 /*#define CONFIG_VERY_BIG_RAM   1*/
279
280 /* What should be the base address of SDRAM DIMM and how big is
281  * it (in Mbytes)?  This will normally auto-configure via the SPD.
282 */
283 #define CFG_SDRAM_BASE 0x00000000
284 #define CFG_SDRAM_SIZE 16
285
286 #define SDRAM_SPD_ADDR 0x50
287
288
289 /*-----------------------------------------------------------------------
290  * BR2,BR3 - Base Register
291  *     Ref: Section 10.3.1 on page 10-14
292  * OR2,OR3 - Option Register
293  *     Ref: Section 10.3.2 on page 10-16
294  *-----------------------------------------------------------------------
295  */
296
297 /* Bank 2,3 - SDRAM DIMM
298  */
299
300 /* The BR2 is configured as follows:
301  *
302  *     - Base address of 0x00000000
303  *     - 64 bit port size (60x bus only)
304  *     - Data errors checking is disabled
305  *     - Read and write access
306  *     - SDRAM 60x bus
307  *     - Access are handled by the memory controller according to MSEL
308  *     - Not used for atomic operations
309  *     - No data pipelining is done
310  *     - Valid
311  */
312 #define CFG_BR2_PRELIM  ((CFG_SDRAM_BASE & BRx_BA_MSK) |\
313                          BRx_PS_64                      |\
314                          BRx_MS_SDRAM_P                 |\
315                          BRx_V)
316
317 #define CFG_BR3_PRELIM  ((CFG_SDRAM_BASE & BRx_BA_MSK) |\
318                          BRx_PS_64                      |\
319                          BRx_MS_SDRAM_P                 |\
320                          BRx_V)
321
322 /* With a 64 MB DIMM, the OR2 is configured as follows:
323  *
324  *     - 64 MB
325  *     - 4 internal banks per device
326  *     - Row start address bit is A8 with PSDMR[PBI] = 0
327  *     - 12 row address lines
328  *     - Back-to-back page mode
329  *     - Internal bank interleaving within save device enabled
330  */
331 #if (CFG_SDRAM_SIZE == 64)
332 #define CFG_OR2_PRELIM  (MEG_TO_AM(CFG_SDRAM_SIZE)      |\
333                          ORxS_BPD_4                     |\
334                          ORxS_ROWST_PBI0_A8             |\
335                          ORxS_NUMR_12)
336 #elif (CFG_SDRAM_SIZE == 16)
337 #define CFG_OR2_PRELIM  (0xFF000C80)
338 #else
339 #error "INVALID SDRAM CONFIGURATION"
340 #endif
341
342 /*-----------------------------------------------------------------------
343  * PSDMR - 60x Bus SDRAM Mode Register
344  *     Ref: Section 10.3.3 on page 10-21
345  *-----------------------------------------------------------------------
346  */
347
348 #if (CFG_SDRAM_SIZE == 64)
349 /* With a 64 MB DIMM, the PSDMR is configured as follows:
350  *
351  *     - Bank Based Interleaving,
352  *     - Refresh Enable,
353  *     - Address Multiplexing where A5 is output on A14 pin
354  *       (A6 on A15, and so on),
355  *     - use address pins A14-A16 as bank select,
356  *     - A9 is output on SDA10 during an ACTIVATE command,
357  *     - earliest timing for ACTIVATE command after REFRESH command is 7 clocks,
358  *     - earliest timing for ACTIVATE or REFRESH command after PRECHARGE command
359  *       is 3 clocks,
360  *     - earliest timing for READ/WRITE command after ACTIVATE command is
361  *       2 clocks,
362  *     - earliest timing for PRECHARGE after last data was read is 1 clock,
363  *     - earliest timing for PRECHARGE after last data was written is 1 clock,
364  *     - CAS Latency is 2.
365  */
366 #define CFG_PSDMR       (PSDMR_RFEN           |\
367                          PSDMR_SDAM_A14_IS_A5 |\
368                          PSDMR_BSMA_A14_A16   |\
369                          PSDMR_SDA10_PBI0_A9  |\
370                          PSDMR_RFRC_7_CLK     |\
371                          PSDMR_PRETOACT_3W    |\
372                          PSDMR_ACTTORW_2W     |\
373                          PSDMR_LDOTOPRE_1C    |\
374                          PSDMR_WRC_1C         |\
375                          PSDMR_CL_2)
376 #elif (CFG_SDRAM_SIZE == 16)
377 /* With a 16 MB DIMM, the PSDMR is configured as follows:
378  *
379  *   configuration parameters found in Motorola documentation
380  */
381 #define CFG_PSDMR       (0x016EB452)
382 #else
383 #error "INVALID SDRAM CONFIGURATION"
384 #endif
385
386
387 #define RS232EN_1               0x02000002
388 #define RS232EN_2               0x01000001
389 #define FETHIEN                 0x08000008
390 #define FETH_RST                0x04000004
391
392 #define CFG_INIT_RAM_ADDR       CFG_IMMR
393 #define CFG_INIT_RAM_END        0x4000  /* End of used area in DPRAM    */
394 #define CFG_GBL_DATA_SIZE       128     /* size in bytes reserved for initial data */
395 #define CFG_GBL_DATA_OFFSET     (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
396 #define CFG_INIT_SP_OFFSET      CFG_GBL_DATA_OFFSET
397
398
399 /* Use this HRCW for booting from address 0xfe00000 (JP3 in setting 1-2)  */
400 /* 0x0EB2B645 */
401 #define CFG_HRCW_MASTER (( HRCW_BPS11 | HRCW_CIP )                              |\
402                          ( HRCW_L2CPC10 | HRCW_DPPC11 | HRCW_ISB010 )           |\
403                          ( HRCW_BMS | HRCW_MMR11 | HRCW_LBPC01 | HRCW_APPC10 )  |\
404                          ( HRCW_CS10PC01 | HRCW_MODCK_H0101 )                   \
405                         )
406
407 /* Use this HRCW for booting from address 0xfff0000 (JP3 in setting 2-3)  */
408 /* #define CFG_HRCW_MASTER 0x0cb23645 */
409
410 /* This value should actually be situated in the first 256 bytes of the FLASH
411         which on the standard MPC8266ADS board is at address 0xFF800000
412         The linker script places it at 0xFFF00000 instead.
413
414         It still works, however, as long as the ADS board jumper JP3 is set to
415         position 2-3 so the board is using the BCSR as Hardware Configuration Word
416
417         If you want to use the one defined here instead, ust copy the first 256 bytes from
418         0xfff00000 to 0xff800000  (for 8MB flash)
419
420         - Rune
421
422 */
423
424 /* no slaves */
425 #define CFG_HRCW_SLAVE1 0
426 #define CFG_HRCW_SLAVE2 0
427 #define CFG_HRCW_SLAVE3 0
428 #define CFG_HRCW_SLAVE4 0
429 #define CFG_HRCW_SLAVE5 0
430 #define CFG_HRCW_SLAVE6 0
431 #define CFG_HRCW_SLAVE7 0
432
433 #define BOOTFLAG_COLD   0x01    /* Normal Power-On: Boot from FLASH  */
434 #define BOOTFLAG_WARM   0x02    /* Software reboot           */
435
436 #define CFG_MONITOR_BASE    TEXT_BASE
437 #if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
438 #   define CFG_RAMBOOT
439 #endif
440
441 #define CFG_MONITOR_LEN         (256 << 10)     /* Reserve 256 kB for Monitor   */
442 #define CFG_MALLOC_LEN          (128 << 10)     /* Reserve 128 kB for malloc()  */
443 #define CFG_BOOTMAPSZ           (8 << 20)       /* Initial Memory map for Linux */
444
445 #ifndef CFG_RAMBOOT
446 #  define CFG_ENV_IS_IN_FLASH   1
447 #    define CFG_ENV_ADDR        (CFG_MONITOR_BASE + 0x40000)
448 #    define CFG_ENV_SECT_SIZE   0x40000
449 #else
450 #  define CFG_ENV_IS_IN_NVRAM   1
451 #  define CFG_ENV_ADDR          (CFG_MONITOR_BASE - 0x1000)
452 #  define CFG_ENV_SIZE          0x200
453 #endif /* CFG_RAMBOOT */
454
455
456 #define CFG_CACHELINE_SIZE      32      /* For MPC8260 CPU */
457 #if defined(CONFIG_CMD_KGDB)
458 #  define CFG_CACHELINE_SHIFT   5       /* log base 2 of the above value */
459 #endif
460
461
462 /*-----------------------------------------------------------------------
463  * HIDx - Hardware Implementation-dependent Registers                    2-11
464  *-----------------------------------------------------------------------
465  * HID0 also contains cache control - initially enable both caches and
466  * invalidate contents, then the final state leaves only the instruction
467  * cache enabled. Note that Power-On and Hard reset invalidate the caches,
468  * but Soft reset does not.
469  *
470  * HID1 has only read-only information - nothing to set.
471  */
472 /*#define CFG_HID0_INIT         0 */
473 #define CFG_HID0_INIT   (HID0_ICE  |\
474                          HID0_DCE  |\
475                          HID0_ICFI |\
476                          HID0_DCI  |\
477                          HID0_IFEM |\
478                          HID0_ABE)
479
480 #define CFG_HID0_FINAL          (HID0_ICE | HID0_IFEM | HID0_ABE )
481
482 #define CFG_HID2                0
483
484 #define CFG_SYPCR               0xFFFFFFC3
485 #define CFG_BCR                 0x004C0000
486 #define CFG_SIUMCR              0x4E64C000
487 #define CFG_SCCR                0x00000000
488
489 /*      local bus memory map
490  *
491  *      0x00000000-0x03FFFFFF    64MB   SDRAM
492  *      0x80000000-0x9FFFFFFF   512MB   outbound prefetchable PCI memory window
493  *      0xA0000000-0xBFFFFFFF   512MB   outbound non-prefetchable PCI memory window
494  *      0xF0000000-0xF001FFFF   128KB   MPC8266 internal memory
495  *      0xF4000000-0xF7FFFFFF    64MB   outbound PCI I/O window
496  *      0xF8000000-0xF8007FFF    32KB   BCSR
497  *      0xF8100000-0xF8107FFF    32KB   ATM UNI
498  *      0xF8200000-0xF8207FFF    32KB   PCI interrupt controller
499  *      0xF8300000-0xF8307FFF    32KB   EEPROM
500  *      0xFE000000-0xFFFFFFFF    32MB   flash
501  */
502 #define CFG_BR0_PRELIM  0xFE001801              /* flash */
503 #define CFG_OR0_PRELIM  0xFE000836
504 #define CFG_BR1_PRELIM  (CFG_BCSR | 0x1801)     /* BCSR */
505 #define CFG_OR1_PRELIM  0xFFFF8010
506 #define CFG_BR4_PRELIM  0xF8300801              /* EEPROM */
507 #define CFG_OR4_PRELIM  0xFFFF8846
508 #define CFG_BR5_PRELIM  0xF8100801              /* PM5350 ATM UNI */
509 #define CFG_OR5_PRELIM  0xFFFF8E36
510 #define CFG_BR8_PRELIM  (CFG_PCI_INT | 0x1801)  /* PCI interrupt controller */
511 #define CFG_OR8_PRELIM  0xFFFF8010
512
513 #define CFG_RMR                 0x0001
514 #define CFG_TMCNTSC             (TMCNTSC_SEC|TMCNTSC_ALR|TMCNTSC_TCF|TMCNTSC_TCE)
515 #define CFG_PISCR               (PISCR_PS|PISCR_PTF|PISCR_PTE)
516 #define CFG_RCCR                0
517 #define CFG_MPTPR               0x00001900
518 #define CFG_PSRT                0x00000021
519
520 /* This address must not exist */
521 #define CFG_RESET_ADDRESS       0xFCFFFF00
522
523 /* PCI Memory map (if different from default map */
524 #define CFG_PCI_SLV_MEM_LOCAL   CFG_SDRAM_BASE          /* Local base */
525 #define CFG_PCI_SLV_MEM_BUS             0x00000000              /* PCI base */
526 #define CFG_PICMR0_MASK_ATTRIB  (PICMR_MASK_512MB | PICMR_ENABLE | \
527                                  PICMR_PREFETCH_EN)
528
529 /*
530  * These are the windows that allow the CPU to access PCI address space.
531  * All three PCI master windows, which allow the CPU to access PCI
532  * prefetch, non prefetch, and IO space (see below), must all fit within
533  * these windows.
534  */
535
536 /* PCIBR0 */
537 #define CFG_PCI_MSTR0_LOCAL             0x80000000              /* Local base */
538 #define CFG_PCIMSK0_MASK                PCIMSK_1GB              /* Size of window */
539 /* PCIBR1 */
540 #define CFG_PCI_MSTR1_LOCAL             0xF4000000              /* Local base */
541 #define CFG_PCIMSK1_MASK                PCIMSK_64MB             /* Size of window */
542
543 /*
544  * Master window that allows the CPU to access PCI Memory (prefetch).
545  * This window will be setup with the first set of Outbound ATU registers
546  * in the bridge.
547  */
548
549 #define CFG_PCI_MSTR_MEM_LOCAL  0x80000000                      /* Local base */
550 #define CFG_PCI_MSTR_MEM_BUS    0x80000000                      /* PCI base   */
551 #define CFG_CPU_PCI_MEM_START   PCI_MSTR_MEM_LOCAL
552 #define CFG_PCI_MSTR_MEM_SIZE   0x20000000                      /* 512MB */
553 #define CFG_POCMR0_MASK_ATTRIB  (POCMR_MASK_512MB | POCMR_ENABLE | POCMR_PREFETCH_EN)
554
555 /*
556  * Master window that allows the CPU to access PCI Memory (non-prefetch).
557  * This window will be setup with the second set of Outbound ATU registers
558  * in the bridge.
559  */
560
561 #define CFG_PCI_MSTR_MEMIO_LOCAL    0xA0000000                  /* Local base */
562 #define CFG_PCI_MSTR_MEMIO_BUS      0xA0000000                  /* PCI base   */
563 #define CFG_CPU_PCI_MEMIO_START     PCI_MSTR_MEMIO_LOCAL
564 #define CFG_PCI_MSTR_MEMIO_SIZE     0x20000000                  /* 512MB */
565 #define CFG_POCMR1_MASK_ATTRIB      (POCMR_MASK_512MB | POCMR_ENABLE)
566
567 /*
568  * Master window that allows the CPU to access PCI IO space.
569  * This window will be setup with the third set of Outbound ATU registers
570  * in the bridge.
571  */
572
573 #define CFG_PCI_MSTR_IO_LOCAL       0xF4000000                  /* Local base */
574 #define CFG_PCI_MSTR_IO_BUS         0xF4000000                  /* PCI base   */
575 #define CFG_CPU_PCI_IO_START        PCI_MSTR_IO_LOCAL
576 #define CFG_PCI_MSTR_IO_SIZE        0x04000000                  /* 64MB */
577 #define CFG_POCMR2_MASK_ATTRIB      (POCMR_MASK_64MB | POCMR_ENABLE | POCMR_PCI_IO)
578
579 /*
580  * JFFS2 partitions
581  *
582  */
583 /* No command line, one static partition, whole device */
584 #undef CONFIG_JFFS2_CMDLINE
585 #define CONFIG_JFFS2_DEV                "nor0"
586 #define CONFIG_JFFS2_PART_SIZE          0xFFFFFFFF
587 #define CONFIG_JFFS2_PART_OFFSET        0x00000000
588
589 /* mtdparts command line support */
590 /*
591 #define CONFIG_JFFS2_CMDLINE
592 #define MTDIDS_DEFAULT          ""
593 #define MTDPARTS_DEFAULT        ""
594 */
595
596 #endif /* __CONFIG_H */