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.
7 * Note: my board is a PILOT rev.
8 * Note: the mpc8260ads doesn't come with a proper Ethernet MAC address.
10 * SPDX-License-Identifier: GPL-2.0+
14 * Config header file for a MPC8266ADS Pilot 16M Ram Simm, 8Mbytes Flash Simm
17 /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
19 !! This configuration requires JP3 to be in position 1-2 to work !!
20 !! To make it work for the default, the CONFIG_SYS_TEXT_BASE define in !!
21 !! board/mpc8266ads/config.mk must be changed from 0xfe000000 to !!
23 !! The CONFIG_SYS_HRCW_MASTER define below must also be changed to match !!
25 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
32 * High Level Configuration Options
36 #define CONFIG_MPC8266ADS 1 /* ...on motorola ADS board */
37 #define CONFIG_CPM2 1 /* Has a CPM2 */
39 #define CONFIG_SYS_TEXT_BASE 0xfe000000
41 #define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
42 #define CONFIG_RESET_PHY_R 1 /* Call reset_phy() */
44 /* allow serial and ethaddr to be overwritten */
45 #define CONFIG_ENV_OVERWRITE
48 * select serial console configuration
50 * if either CONFIG_CONS_ON_SMC or CONFIG_CONS_ON_SCC is selected, then
51 * CONFIG_CONS_INDEX must be set to the channel number (1-2 for SMC, 1-4
54 * if CONFIG_CONS_NONE is defined, then the serial console routines must
55 * defined elsewhere (for example, on the cogent platform, there are serial
56 * ports on the motherboard which are used for the serial console - see
57 * cogent/cma101/serial.[ch]).
59 #undef CONFIG_CONS_ON_SMC /* define if console on SMC */
60 #define CONFIG_CONS_ON_SCC /* define if console on SCC */
61 #undef CONFIG_CONS_NONE /* define if console on something else */
62 #define CONFIG_CONS_INDEX 1 /* which serial channel for console */
65 * select ethernet configuration
67 * if either CONFIG_ETHER_ON_SCC or CONFIG_ETHER_ON_FCC is selected, then
68 * CONFIG_ETHER_INDEX must be set to the channel number (1-4 for SCC, 1-3
71 * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must be
72 * defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset.
74 #undef CONFIG_ETHER_ON_SCC /* define if ether on SCC */
75 #define CONFIG_ETHER_ON_FCC /* define if ether on FCC */
76 #undef CONFIG_ETHER_NONE /* define if ether on something else */
77 #define CONFIG_ETHER_INDEX 2 /* which channel for ether */
78 #define CONFIG_MII /* MII PHY management */
79 #define CONFIG_BITBANGMII /* bit-bang MII PHY management */
81 * Port pins used for bit-banged MII communictions (if applicable).
83 #define MDIO_PORT 2 /* Port C */
84 #define MDIO_DECLARE volatile ioport_t *iop = ioport_addr ( \
85 (immap_t *) CONFIG_SYS_IMMR, MDIO_PORT )
86 #define MDC_DECLARE MDIO_DECLARE
88 #define MDIO_ACTIVE (iop->pdir |= 0x00400000)
89 #define MDIO_TRISTATE (iop->pdir &= ~0x00400000)
90 #define MDIO_READ ((iop->pdat & 0x00400000) != 0)
92 #define MDIO(bit) if(bit) iop->pdat |= 0x00400000; \
93 else iop->pdat &= ~0x00400000
95 #define MDC(bit) if(bit) iop->pdat |= 0x00200000; \
96 else iop->pdat &= ~0x00200000
98 #define MIIDELAY udelay(1)
100 #if (CONFIG_ETHER_INDEX == 2)
105 * - Select bus for bd/buffers (see 28-13)
108 # define CONFIG_SYS_CMXFCR_MASK2 (CMXFCR_FC2 | CMXFCR_RF2CS_MSK | CMXFCR_TF2CS_MSK)
109 # define CONFIG_SYS_CMXFCR_VALUE2 (CMXFCR_RF2CS_CLK13 | CMXFCR_TF2CS_CLK14)
110 # define CONFIG_SYS_CPMFCR_RAMTYPE 0
111 # define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
113 #endif /* CONFIG_ETHER_INDEX */
116 #define CONFIG_HARD_I2C 1 /* To enable I2C support */
117 #define CONFIG_SYS_I2C_SPEED 400000 /* I2C speed and slave address */
118 #define CONFIG_SYS_I2C_SLAVE 0x7F
119 #define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
123 #define CONFIG_PCI_INDIRECT_BRIDGE
124 #define CONFIG_PCI_PNP
125 #define CONFIG_PCI_BOOTDELAY 0
126 #undef CONFIG_PCI_SCAN_SHOW
128 /*-----------------------------------------------------------------------
129 * Definitions for Serial Presence Detect EEPROM address
130 * (to get SDRAM settings)
132 #define SPD_EEPROM_ADDRESS 0x50
134 #define CONFIG_8260_CLKIN 66000000 /* in Hz */
135 #define CONFIG_BAUDRATE 115200
138 * Command line configuration.
140 #include <config_cmd_default.h>
142 /* Commands we want, that are not part of default set */
143 #define CONFIG_CMD_ASKENV /* ask for env variable */
144 #define CONFIG_CMD_CACHE /* icache, dcache */
145 #define CONFIG_CMD_DHCP /* DHCP Support */
146 #define CONFIG_CMD_DIAG /* Diagnostics */
147 #define CONFIG_CMD_IMMAP /* IMMR dump support */
148 #define CONFIG_CMD_IRQ /* irqinfo */
149 #define CONFIG_CMD_MII /* MII support */
150 #define CONFIG_CMD_PCI /* pciinfo */
151 #define CONFIG_CMD_PING /* ping support */
152 #define CONFIG_CMD_PORTIO /* Port I/O */
153 #define CONFIG_CMD_REGINFO /* Register dump */
154 #define CONFIG_CMD_SAVES /* save S record dump */
155 #define CONFIG_CMD_SDRAM /* SDRAM DIMM SPD info printout */
157 /* Commands from default set we don't need */
158 #undef CONFIG_CMD_FPGA /* FPGA configuration Support */
159 #undef CONFIG_CMD_SETGETDCR /* DCR support on 4xx */
161 /* Define a command string that is automatically executed when no character
162 * is read on the console interface withing "Boot Delay" after reset.
164 #undef CONFIG_BOOT_ROOT_INITRD /* Use ram disk for the root file system */
165 #define CONFIG_BOOT_ROOT_NFS /* Use a NFS mounted root file system */
167 #ifdef CONFIG_BOOT_ROOT_INITRD
168 #define CONFIG_BOOTCOMMAND \
172 "setenv bootargs root=/dev/ram0 rw " \
173 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \
175 #endif /* CONFIG_BOOT_ROOT_INITRD */
177 #ifdef CONFIG_BOOT_ROOT_NFS
178 #define CONFIG_BOOTCOMMAND \
182 "setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \
183 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \
185 #endif /* CONFIG_BOOT_ROOT_NFS */
190 #define CONFIG_BOOTP_SUBNETMASK
191 #define CONFIG_BOOTP_GATEWAY
192 #define CONFIG_BOOTP_HOSTNAME
193 #define CONFIG_BOOTP_BOOTPATH
194 #define CONFIG_BOOTP_BOOTFILESIZE
195 #define CONFIG_BOOTP_DNS
197 #define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
199 #if defined(CONFIG_CMD_KGDB)
200 #undef CONFIG_KGDB_ON_SMC /* define if kgdb on SMC */
201 #define CONFIG_KGDB_ON_SCC /* define if kgdb on SCC */
202 #undef CONFIG_KGDB_NONE /* define if kgdb on something else */
203 #define CONFIG_KGDB_INDEX 2 /* which serial channel for kgdb */
204 #define CONFIG_KGDB_BAUDRATE 115200 /* speed to run kgdb serial port at */
207 #undef CONFIG_WATCHDOG /* disable platform specific watchdog */
210 * Miscellaneous configurable options
212 #define CONFIG_SYS_LONGHELP /* undef to save memory */
213 #if defined(CONFIG_CMD_KGDB)
214 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
216 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
218 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
219 #define CONFIG_SYS_MAXARGS 16 /* max number of command args */
220 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
222 #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
223 #define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
225 #undef CONFIG_CLOCKS_IN_MHZ /* clocks passsed to Linux in MHz */
226 /* for versions < 2.4.5-pre5 */
228 #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
230 #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
232 #define CONFIG_SYS_FLASH_BASE 0xFE000000
233 #define FLASH_BASE 0xFE000000
234 #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of memory banks */
235 #define CONFIG_SYS_MAX_FLASH_SECT 32 /* max num of sects on one chip */
236 #define CONFIG_SYS_FLASH_SIZE 8
237 #define CONFIG_SYS_FLASH_ERASE_TOUT 8000 /* Timeout for Flash Erase (in ms) */
238 #define CONFIG_SYS_FLASH_WRITE_TOUT 5 /* Timeout for Flash Write (in ms) */
240 #undef CONFIG_SYS_FLASH_CHECKSUM
242 /* this is stuff came out of the Motorola docs */
243 /* Only change this if you also change the Hardware configuration Word */
244 #define CONFIG_SYS_DEFAULT_IMMR 0x0F010000
246 /* Set IMMR to 0xF0000000 or above to boot Linux */
247 #define CONFIG_SYS_IMMR 0xF0000000
248 #define CONFIG_SYS_BCSR 0xF8000000
249 #define CONFIG_SYS_PCI_INT 0xF8200000 /* PCI interrupt controller */
251 /* Define CONFIG_VERY_BIG_RAM to allow use of SDRAMs larger than 256MBytes
253 /*#define CONFIG_VERY_BIG_RAM 1*/
255 /* What should be the base address of SDRAM DIMM and how big is
256 * it (in Mbytes)? This will normally auto-configure via the SPD.
258 #define CONFIG_SYS_SDRAM_BASE 0x00000000
259 #define CONFIG_SYS_SDRAM_SIZE 16
261 #define SDRAM_SPD_ADDR 0x50
263 /*-----------------------------------------------------------------------
264 * BR2,BR3 - Base Register
265 * Ref: Section 10.3.1 on page 10-14
266 * OR2,OR3 - Option Register
267 * Ref: Section 10.3.2 on page 10-16
268 *-----------------------------------------------------------------------
271 /* Bank 2,3 - SDRAM DIMM
274 /* The BR2 is configured as follows:
276 * - Base address of 0x00000000
277 * - 64 bit port size (60x bus only)
278 * - Data errors checking is disabled
279 * - Read and write access
281 * - Access are handled by the memory controller according to MSEL
282 * - Not used for atomic operations
283 * - No data pipelining is done
286 #define CONFIG_SYS_BR2_PRELIM ((CONFIG_SYS_SDRAM_BASE & BRx_BA_MSK) |\
291 #define CONFIG_SYS_BR3_PRELIM ((CONFIG_SYS_SDRAM_BASE & BRx_BA_MSK) |\
296 /* With a 64 MB DIMM, the OR2 is configured as follows:
299 * - 4 internal banks per device
300 * - Row start address bit is A8 with PSDMR[PBI] = 0
301 * - 12 row address lines
302 * - Back-to-back page mode
303 * - Internal bank interleaving within save device enabled
305 #if (CONFIG_SYS_SDRAM_SIZE == 64)
306 #define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM_SIZE) |\
308 ORxS_ROWST_PBI0_A8 |\
310 #elif (CONFIG_SYS_SDRAM_SIZE == 16)
311 #define CONFIG_SYS_OR2_PRELIM (0xFF000C80)
313 #error "INVALID SDRAM CONFIGURATION"
316 /*-----------------------------------------------------------------------
317 * PSDMR - 60x Bus SDRAM Mode Register
318 * Ref: Section 10.3.3 on page 10-21
319 *-----------------------------------------------------------------------
322 #if (CONFIG_SYS_SDRAM_SIZE == 64)
323 /* With a 64 MB DIMM, the PSDMR is configured as follows:
325 * - Bank Based Interleaving,
327 * - Address Multiplexing where A5 is output on A14 pin
328 * (A6 on A15, and so on),
329 * - use address pins A14-A16 as bank select,
330 * - A9 is output on SDA10 during an ACTIVATE command,
331 * - earliest timing for ACTIVATE command after REFRESH command is 7 clocks,
332 * - earliest timing for ACTIVATE or REFRESH command after PRECHARGE command
334 * - earliest timing for READ/WRITE command after ACTIVATE command is
336 * - earliest timing for PRECHARGE after last data was read is 1 clock,
337 * - earliest timing for PRECHARGE after last data was written is 1 clock,
338 * - CAS Latency is 2.
340 #define CONFIG_SYS_PSDMR (PSDMR_RFEN |\
341 PSDMR_SDAM_A14_IS_A5 |\
342 PSDMR_BSMA_A14_A16 |\
343 PSDMR_SDA10_PBI0_A9 |\
350 #elif (CONFIG_SYS_SDRAM_SIZE == 16)
351 /* With a 16 MB DIMM, the PSDMR is configured as follows:
353 * configuration parameters found in Motorola documentation
355 #define CONFIG_SYS_PSDMR (0x016EB452)
357 #error "INVALID SDRAM CONFIGURATION"
360 #define RS232EN_1 0x02000002
361 #define RS232EN_2 0x01000001
362 #define FETHIEN 0x08000008
363 #define FETH_RST 0x04000004
365 #define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
366 #define CONFIG_SYS_INIT_RAM_SIZE 0x4000 /* Size of used area in DPRAM */
367 #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
368 #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
370 /* Use this HRCW for booting from address 0xfe00000 (JP3 in setting 1-2) */
372 #define CONFIG_SYS_HRCW_MASTER (( HRCW_BPS11 | HRCW_CIP ) |\
373 ( HRCW_L2CPC10 | HRCW_DPPC11 | HRCW_ISB010 ) |\
374 ( HRCW_BMS | HRCW_MMR11 | HRCW_LBPC01 | HRCW_APPC10 ) |\
375 ( HRCW_CS10PC01 | HRCW_MODCK_H0101 ) \
378 /* Use this HRCW for booting from address 0xfff0000 (JP3 in setting 2-3) */
379 /* #define CONFIG_SYS_HRCW_MASTER 0x0cb23645 */
381 /* This value should actually be situated in the first 256 bytes of the FLASH
382 which on the standard MPC8266ADS board is at address 0xFF800000
383 The linker script places it at 0xFFF00000 instead.
385 It still works, however, as long as the ADS board jumper JP3 is set to
386 position 2-3 so the board is using the BCSR as Hardware Configuration Word
388 If you want to use the one defined here instead, ust copy the first 256 bytes from
389 0xfff00000 to 0xff800000 (for 8MB flash)
396 #define CONFIG_SYS_HRCW_SLAVE1 0
397 #define CONFIG_SYS_HRCW_SLAVE2 0
398 #define CONFIG_SYS_HRCW_SLAVE3 0
399 #define CONFIG_SYS_HRCW_SLAVE4 0
400 #define CONFIG_SYS_HRCW_SLAVE5 0
401 #define CONFIG_SYS_HRCW_SLAVE6 0
402 #define CONFIG_SYS_HRCW_SLAVE7 0
404 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
406 #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
407 # define CONFIG_SYS_RAMBOOT
410 #define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
411 #define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */
412 #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
414 #ifndef CONFIG_SYS_RAMBOOT
415 # define CONFIG_ENV_IS_IN_FLASH 1
416 # define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + 0x40000)
417 # define CONFIG_ENV_SECT_SIZE 0x40000
419 # define CONFIG_ENV_IS_IN_NVRAM 1
420 # define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
421 # define CONFIG_ENV_SIZE 0x200
422 #endif /* CONFIG_SYS_RAMBOOT */
424 #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */
425 #if defined(CONFIG_CMD_KGDB)
426 # define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
429 /*-----------------------------------------------------------------------
430 * HIDx - Hardware Implementation-dependent Registers 2-11
431 *-----------------------------------------------------------------------
432 * HID0 also contains cache control - initially enable both caches and
433 * invalidate contents, then the final state leaves only the instruction
434 * cache enabled. Note that Power-On and Hard reset invalidate the caches,
435 * but Soft reset does not.
437 * HID1 has only read-only information - nothing to set.
439 /*#define CONFIG_SYS_HID0_INIT 0 */
440 #define CONFIG_SYS_HID0_INIT (HID0_ICE |\
447 #define CONFIG_SYS_HID0_FINAL (HID0_ICE | HID0_IFEM | HID0_ABE )
449 #define CONFIG_SYS_HID2 0
451 #define CONFIG_SYS_SYPCR 0xFFFFFFC3
452 #define CONFIG_SYS_BCR 0x004C0000
453 #define CONFIG_SYS_SIUMCR 0x4E64C000
454 #define CONFIG_SYS_SCCR 0x00000000
456 /* local bus memory map
458 * 0x00000000-0x03FFFFFF 64MB SDRAM
459 * 0x80000000-0x9FFFFFFF 512MB outbound prefetchable PCI memory window
460 * 0xA0000000-0xBFFFFFFF 512MB outbound non-prefetchable PCI memory window
461 * 0xF0000000-0xF001FFFF 128KB MPC8266 internal memory
462 * 0xF4000000-0xF7FFFFFF 64MB outbound PCI I/O window
463 * 0xF8000000-0xF8007FFF 32KB BCSR
464 * 0xF8100000-0xF8107FFF 32KB ATM UNI
465 * 0xF8200000-0xF8207FFF 32KB PCI interrupt controller
466 * 0xF8300000-0xF8307FFF 32KB EEPROM
467 * 0xFE000000-0xFFFFFFFF 32MB flash
469 #define CONFIG_SYS_BR0_PRELIM 0xFE001801 /* flash */
470 #define CONFIG_SYS_OR0_PRELIM 0xFE000836
471 #define CONFIG_SYS_BR1_PRELIM (CONFIG_SYS_BCSR | 0x1801) /* BCSR */
472 #define CONFIG_SYS_OR1_PRELIM 0xFFFF8010
473 #define CONFIG_SYS_BR4_PRELIM 0xF8300801 /* EEPROM */
474 #define CONFIG_SYS_OR4_PRELIM 0xFFFF8846
475 #define CONFIG_SYS_BR5_PRELIM 0xF8100801 /* PM5350 ATM UNI */
476 #define CONFIG_SYS_OR5_PRELIM 0xFFFF8E36
477 #define CONFIG_SYS_BR8_PRELIM (CONFIG_SYS_PCI_INT | 0x1801) /* PCI interrupt controller */
478 #define CONFIG_SYS_OR8_PRELIM 0xFFFF8010
480 #define CONFIG_SYS_RMR 0x0001
481 #define CONFIG_SYS_TMCNTSC (TMCNTSC_SEC|TMCNTSC_ALR|TMCNTSC_TCF|TMCNTSC_TCE)
482 #define CONFIG_SYS_PISCR (PISCR_PS|PISCR_PTF|PISCR_PTE)
483 #define CONFIG_SYS_RCCR 0
484 #define CONFIG_SYS_MPTPR 0x00001900
485 #define CONFIG_SYS_PSRT 0x00000021
487 /* This address must not exist */
488 #define CONFIG_SYS_RESET_ADDRESS 0xFCFFFF00
490 /* PCI Memory map (if different from default map */
491 #define CONFIG_SYS_PCI_SLV_MEM_LOCAL CONFIG_SYS_SDRAM_BASE /* Local base */
492 #define CONFIG_SYS_PCI_SLV_MEM_BUS 0x00000000 /* PCI base */
493 #define CONFIG_SYS_PICMR0_MASK_ATTRIB (PICMR_MASK_512MB | PICMR_ENABLE | \
497 * These are the windows that allow the CPU to access PCI address space.
498 * All three PCI master windows, which allow the CPU to access PCI
499 * prefetch, non prefetch, and IO space (see below), must all fit within
504 #define CONFIG_SYS_PCI_MSTR0_LOCAL 0x80000000 /* Local base */
505 #define CONFIG_SYS_PCIMSK0_MASK PCIMSK_1GB /* Size of window */
507 #define CONFIG_SYS_PCI_MSTR1_LOCAL 0xF4000000 /* Local base */
508 #define CONFIG_SYS_PCIMSK1_MASK PCIMSK_64MB /* Size of window */
511 * Master window that allows the CPU to access PCI Memory (prefetch).
512 * This window will be setup with the first set of Outbound ATU registers
516 #define CONFIG_SYS_PCI_MSTR_MEM_LOCAL 0x80000000 /* Local base */
517 #define CONFIG_SYS_PCI_MSTR_MEM_BUS 0x80000000 /* PCI base */
518 #define CONFIG_SYS_CPU_PCI_MEM_START PCI_MSTR_MEM_LOCAL
519 #define CONFIG_SYS_PCI_MSTR_MEM_SIZE 0x20000000 /* 512MB */
520 #define CONFIG_SYS_POCMR0_MASK_ATTRIB (POCMR_MASK_512MB | POCMR_ENABLE | POCMR_PREFETCH_EN)
523 * Master window that allows the CPU to access PCI Memory (non-prefetch).
524 * This window will be setup with the second set of Outbound ATU registers
528 #define CONFIG_SYS_PCI_MSTR_MEMIO_LOCAL 0xA0000000 /* Local base */
529 #define CONFIG_SYS_PCI_MSTR_MEMIO_BUS 0xA0000000 /* PCI base */
530 #define CONFIG_SYS_CPU_PCI_MEMIO_START PCI_MSTR_MEMIO_LOCAL
531 #define CONFIG_SYS_PCI_MSTR_MEMIO_SIZE 0x20000000 /* 512MB */
532 #define CONFIG_SYS_POCMR1_MASK_ATTRIB (POCMR_MASK_512MB | POCMR_ENABLE)
535 * Master window that allows the CPU to access PCI IO space.
536 * This window will be setup with the third set of Outbound ATU registers
540 #define CONFIG_SYS_PCI_MSTR_IO_LOCAL 0xF4000000 /* Local base */
541 #define CONFIG_SYS_PCI_MSTR_IO_BUS 0xF4000000 /* PCI base */
542 #define CONFIG_SYS_CPU_PCI_IO_START PCI_MSTR_IO_LOCAL
543 #define CONFIG_SYS_PCI_MSTR_IO_SIZE 0x04000000 /* 64MB */
544 #define CONFIG_SYS_POCMR2_MASK_ATTRIB (POCMR_MASK_64MB | POCMR_ENABLE | POCMR_PCI_IO)
550 /* No command line, one static partition, whole device */
551 #undef CONFIG_CMD_MTDPARTS
552 #define CONFIG_JFFS2_DEV "nor0"
553 #define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
554 #define CONFIG_JFFS2_PART_OFFSET 0x00000000
556 /* mtdparts command line support */
558 #define CONFIG_CMD_MTDPARTS
559 #define MTDIDS_DEFAULT ""
560 #define MTDPARTS_DEFAULT ""
563 #endif /* __CONFIG_H */