]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/MPC8266ADS.h
powerpc: mpc8260: consolidate CONFIG_MPC8260 and CONFIG_8260
[people/ms/u-boot.git] / include / configs / MPC8266ADS.h
CommitLineData
db2f721f
WD
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 *
3765b3e7 10 * SPDX-License-Identifier: GPL-2.0+
db2f721f
WD
11 */
12
13/*
7a8e9bed
WD
14 * Config header file for a MPC8266ADS Pilot 16M Ram Simm, 8Mbytes Flash Simm
15 */
16
17/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
2b792afc 18 !! !!
7a8e9bed 19 !! This configuration requires JP3 to be in position 1-2 to work !!
14d0a02a 20 !! To make it work for the default, the CONFIG_SYS_TEXT_BASE define in !!
7a8e9bed
WD
21 !! board/mpc8266ads/config.mk must be changed from 0xfe000000 to !!
22 !! 0xfff00000 !!
6d0f6bcf 23 !! The CONFIG_SYS_HRCW_MASTER define below must also be changed to match !!
2b792afc 24 !! !!
8bde7f77 25 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
db2f721f
WD
26 */
27
28#ifndef __CONFIG_H
29#define __CONFIG_H
30
31/*
32 * High Level Configuration Options
33 * (easy to change)
34 */
35
c837dcb1 36#define CONFIG_MPC8266ADS 1 /* ...on motorola ADS board */
9c4c5ae3 37#define CONFIG_CPM2 1 /* Has a CPM2 */
db2f721f 38
2ae18241
WD
39#define CONFIG_SYS_TEXT_BASE 0xfe000000
40
c837dcb1 41#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
004eca0c 42#define CONFIG_RESET_PHY_R 1 /* Call reset_phy() */
db2f721f
WD
43
44/* allow serial and ethaddr to be overwritten */
45#define CONFIG_ENV_OVERWRITE
46
47/*
48 * select serial console configuration
49 *
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
52 * for SCC).
53 *
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]).
58 */
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 */
63
64/*
65 * select ethernet configuration
66 *
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
69 * for FCC)
70 *
71 * if CONFIG_ETHER_NONE is defined, then either the ethernet routines must be
639221c7 72 * defined elsewhere (as for the console), or CONFIG_CMD_NET must be unset.
db2f721f
WD
73 */
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 */
5d232d0e
WD
78#define CONFIG_MII /* MII PHY management */
79#define CONFIG_BITBANGMII /* bit-bang MII PHY management */
80/*
81 * Port pins used for bit-banged MII communictions (if applicable).
82 */
83#define MDIO_PORT 2 /* Port C */
be225442
LCM
84#define MDIO_DECLARE volatile ioport_t *iop = ioport_addr ( \
85 (immap_t *) CONFIG_SYS_IMMR, MDIO_PORT )
86#define MDC_DECLARE MDIO_DECLARE
87
5d232d0e
WD
88#define MDIO_ACTIVE (iop->pdir |= 0x00400000)
89#define MDIO_TRISTATE (iop->pdir &= ~0x00400000)
90#define MDIO_READ ((iop->pdat & 0x00400000) != 0)
91
92#define MDIO(bit) if(bit) iop->pdat |= 0x00400000; \
93 else iop->pdat &= ~0x00400000
94
95#define MDC(bit) if(bit) iop->pdat |= 0x00200000; \
96 else iop->pdat &= ~0x00200000
97
98#define MIIDELAY udelay(1)
db2f721f
WD
99
100#if (CONFIG_ETHER_INDEX == 2)
101
102/*
103 * - Rx-CLK is CLK13
104 * - Tx-CLK is CLK14
105 * - Select bus for bd/buffers (see 28-13)
106 * - Half duplex
107 */
d4590da4
MF
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)
6d0f6bcf
JCPV
110# define CONFIG_SYS_CPMFCR_RAMTYPE 0
111# define CONFIG_SYS_FCC_PSMR (FCC_PSMR_FDE | FCC_PSMR_LPB)
db2f721f
WD
112
113#endif /* CONFIG_ETHER_INDEX */
114
115/* other options */
116#define CONFIG_HARD_I2C 1 /* To enable I2C support */
6d0f6bcf
JCPV
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
db2f721f 120
5d232d0e
WD
121/* PCI */
122#define CONFIG_PCI
842033e6 123#define CONFIG_PCI_INDIRECT_BRIDGE
5d232d0e
WD
124#define CONFIG_PCI_PNP
125#define CONFIG_PCI_BOOTDELAY 0
126#undef CONFIG_PCI_SCAN_SHOW
127
db2f721f
WD
128/*-----------------------------------------------------------------------
129 * Definitions for Serial Presence Detect EEPROM address
130 * (to get SDRAM settings)
131 */
2b792afc 132#define SPD_EEPROM_ADDRESS 0x50
db2f721f 133
5d232d0e 134#define CONFIG_8260_CLKIN 66000000 /* in Hz */
db2f721f
WD
135#define CONFIG_BAUDRATE 115200
136
1cc4c458
JL
137/*
138 * Command line configuration.
139 */
298cd4ca
RT
140#include <config_cmd_default.h>
141
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 */
156
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 */
db2f721f 160
5d232d0e
WD
161/* Define a command string that is automatically executed when no character
162 * is read on the console interface withing "Boot Delay" after reset.
163 */
2b792afc
WD
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 */
5d232d0e 166
42dfe7a1 167#ifdef CONFIG_BOOT_ROOT_INITRD
5d232d0e
WD
168#define CONFIG_BOOTCOMMAND \
169 "version;" \
170 "echo;" \
171 "bootp;" \
172 "setenv bootargs root=/dev/ram0 rw " \
fe126d8b 173 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \
5d232d0e
WD
174 "bootm"
175#endif /* CONFIG_BOOT_ROOT_INITRD */
176
42dfe7a1 177#ifdef CONFIG_BOOT_ROOT_NFS
5d232d0e
WD
178#define CONFIG_BOOTCOMMAND \
179 "version;" \
180 "echo;" \
181 "bootp;" \
fe126d8b
WD
182 "setenv bootargs root=/dev/nfs rw nfsroot=${serverip}:${rootpath} " \
183 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}:${hostname}::off;" \
5d232d0e
WD
184 "bootm"
185#endif /* CONFIG_BOOT_ROOT_NFS */
186
7be044e4
JL
187/*
188 * BOOTP options
5d232d0e 189 */
7be044e4
JL
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
5d232d0e 196
db2f721f 197#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
db2f721f 198
1cc4c458 199#if defined(CONFIG_CMD_KGDB)
db2f721f
WD
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 */
205#endif
206
207#undef CONFIG_WATCHDOG /* disable platform specific watchdog */
208
209/*
210 * Miscellaneous configurable options
211 */
6d0f6bcf 212#define CONFIG_SYS_LONGHELP /* undef to save memory */
1cc4c458 213#if defined(CONFIG_CMD_KGDB)
6d0f6bcf 214#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
db2f721f 215#else
6d0f6bcf 216#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
db2f721f 217#endif
6d0f6bcf
JCPV
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 */
db2f721f 221
6d0f6bcf
JCPV
222#define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
223#define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1 ... 15 MB in DRAM */
db2f721f 224
5d232d0e 225#undef CONFIG_CLOCKS_IN_MHZ /* clocks passsed to Linux in MHz */
db2f721f
WD
226 /* for versions < 2.4.5-pre5 */
227
6d0f6bcf 228#define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
db2f721f 229
6d0f6bcf 230#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
db2f721f 231
6d0f6bcf 232#define CONFIG_SYS_FLASH_BASE 0xFE000000
5d232d0e 233#define FLASH_BASE 0xFE000000
6d0f6bcf
JCPV
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) */
db2f721f 239
6d0f6bcf 240#undef CONFIG_SYS_FLASH_CHECKSUM
db2f721f
WD
241
242/* this is stuff came out of the Motorola docs */
243/* Only change this if you also change the Hardware configuration Word */
6d0f6bcf 244#define CONFIG_SYS_DEFAULT_IMMR 0x0F010000
db2f721f 245
db2f721f 246/* Set IMMR to 0xF0000000 or above to boot Linux */
6d0f6bcf
JCPV
247#define CONFIG_SYS_IMMR 0xF0000000
248#define CONFIG_SYS_BCSR 0xF8000000
249#define CONFIG_SYS_PCI_INT 0xF8200000 /* PCI interrupt controller */
db2f721f
WD
250
251/* Define CONFIG_VERY_BIG_RAM to allow use of SDRAMs larger than 256MBytes
252 */
253/*#define CONFIG_VERY_BIG_RAM 1*/
254
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.
257*/
6d0f6bcf
JCPV
258#define CONFIG_SYS_SDRAM_BASE 0x00000000
259#define CONFIG_SYS_SDRAM_SIZE 16
db2f721f
WD
260
261#define SDRAM_SPD_ADDR 0x50
262
db2f721f
WD
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 *-----------------------------------------------------------------------
269 */
270
271/* Bank 2,3 - SDRAM DIMM
272 */
273
274/* The BR2 is configured as follows:
275 *
276 * - Base address of 0x00000000
277 * - 64 bit port size (60x bus only)
278 * - Data errors checking is disabled
279 * - Read and write access
280 * - SDRAM 60x bus
281 * - Access are handled by the memory controller according to MSEL
282 * - Not used for atomic operations
283 * - No data pipelining is done
284 * - Valid
285 */
6d0f6bcf 286#define CONFIG_SYS_BR2_PRELIM ((CONFIG_SYS_SDRAM_BASE & BRx_BA_MSK) |\
db2f721f
WD
287 BRx_PS_64 |\
288 BRx_MS_SDRAM_P |\
289 BRx_V)
290
6d0f6bcf 291#define CONFIG_SYS_BR3_PRELIM ((CONFIG_SYS_SDRAM_BASE & BRx_BA_MSK) |\
db2f721f
WD
292 BRx_PS_64 |\
293 BRx_MS_SDRAM_P |\
294 BRx_V)
295
296/* With a 64 MB DIMM, the OR2 is configured as follows:
297 *
298 * - 64 MB
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
304 */
6d0f6bcf
JCPV
305#if (CONFIG_SYS_SDRAM_SIZE == 64)
306#define CONFIG_SYS_OR2_PRELIM (MEG_TO_AM(CONFIG_SYS_SDRAM_SIZE) |\
db2f721f
WD
307 ORxS_BPD_4 |\
308 ORxS_ROWST_PBI0_A8 |\
309 ORxS_NUMR_12)
6d0f6bcf
JCPV
310#elif (CONFIG_SYS_SDRAM_SIZE == 16)
311#define CONFIG_SYS_OR2_PRELIM (0xFF000C80)
db2f721f
WD
312#else
313#error "INVALID SDRAM CONFIGURATION"
314#endif
315
316/*-----------------------------------------------------------------------
317 * PSDMR - 60x Bus SDRAM Mode Register
318 * Ref: Section 10.3.3 on page 10-21
319 *-----------------------------------------------------------------------
320 */
321
6d0f6bcf 322#if (CONFIG_SYS_SDRAM_SIZE == 64)
db2f721f
WD
323/* With a 64 MB DIMM, the PSDMR is configured as follows:
324 *
325 * - Bank Based Interleaving,
326 * - Refresh Enable,
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
333 * is 3 clocks,
334 * - earliest timing for READ/WRITE command after ACTIVATE command is
335 * 2 clocks,
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.
339 */
6d0f6bcf 340#define CONFIG_SYS_PSDMR (PSDMR_RFEN |\
db2f721f
WD
341 PSDMR_SDAM_A14_IS_A5 |\
342 PSDMR_BSMA_A14_A16 |\
343 PSDMR_SDA10_PBI0_A9 |\
344 PSDMR_RFRC_7_CLK |\
345 PSDMR_PRETOACT_3W |\
346 PSDMR_ACTTORW_2W |\
347 PSDMR_LDOTOPRE_1C |\
348 PSDMR_WRC_1C |\
349 PSDMR_CL_2)
6d0f6bcf 350#elif (CONFIG_SYS_SDRAM_SIZE == 16)
db2f721f
WD
351/* With a 16 MB DIMM, the PSDMR is configured as follows:
352 *
353 * configuration parameters found in Motorola documentation
354 */
6d0f6bcf 355#define CONFIG_SYS_PSDMR (0x016EB452)
db2f721f
WD
356#else
357#error "INVALID SDRAM CONFIGURATION"
358#endif
359
db2f721f
WD
360#define RS232EN_1 0x02000002
361#define RS232EN_2 0x01000001
362#define FETHIEN 0x08000008
363#define FETH_RST 0x04000004
364
6d0f6bcf 365#define CONFIG_SYS_INIT_RAM_ADDR CONFIG_SYS_IMMR
553f0982 366#define CONFIG_SYS_INIT_RAM_SIZE 0x4000 /* Size of used area in DPRAM */
25ddd1fb 367#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
6d0f6bcf 368#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
db2f721f 369
7a8e9bed 370/* Use this HRCW for booting from address 0xfe00000 (JP3 in setting 1-2) */
5d232d0e 371/* 0x0EB2B645 */
6d0f6bcf 372#define CONFIG_SYS_HRCW_MASTER (( HRCW_BPS11 | HRCW_CIP ) |\
5d232d0e
WD
373 ( HRCW_L2CPC10 | HRCW_DPPC11 | HRCW_ISB010 ) |\
374 ( HRCW_BMS | HRCW_MMR11 | HRCW_LBPC01 | HRCW_APPC10 ) |\
375 ( HRCW_CS10PC01 | HRCW_MODCK_H0101 ) \
db2f721f 376 )
5d232d0e 377
7a8e9bed 378/* Use this HRCW for booting from address 0xfff0000 (JP3 in setting 2-3) */
6d0f6bcf 379/* #define CONFIG_SYS_HRCW_MASTER 0x0cb23645 */
db2f721f 380
8bde7f77 381/* This value should actually be situated in the first 256 bytes of the FLASH
db2f721f
WD
382 which on the standard MPC8266ADS board is at address 0xFF800000
383 The linker script places it at 0xFFF00000 instead.
384
8bde7f77
WD
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
db2f721f 387
8bde7f77
WD
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)
db2f721f
WD
390
391 - Rune
392
7a8e9bed 393*/
db2f721f
WD
394
395/* no slaves */
6d0f6bcf
JCPV
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
db2f721f 403
14d0a02a 404#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
d98b0523 405
6d0f6bcf
JCPV
406#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
407# define CONFIG_SYS_RAMBOOT
db2f721f
WD
408#endif
409
6d0f6bcf
JCPV
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 */
db2f721f 413
6d0f6bcf 414#ifndef CONFIG_SYS_RAMBOOT
5a1aceb0 415# define CONFIG_ENV_IS_IN_FLASH 1
6d0f6bcf 416# define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + 0x40000)
0e8d1586 417# define CONFIG_ENV_SECT_SIZE 0x40000
db2f721f 418#else
9314cee6 419# define CONFIG_ENV_IS_IN_NVRAM 1
6d0f6bcf 420# define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
0e8d1586 421# define CONFIG_ENV_SIZE 0x200
6d0f6bcf 422#endif /* CONFIG_SYS_RAMBOOT */
db2f721f 423
6d0f6bcf 424#define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC8260 CPU */
1cc4c458 425#if defined(CONFIG_CMD_KGDB)
6d0f6bcf 426# define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
db2f721f
WD
427#endif
428
7a8e9bed 429/*-----------------------------------------------------------------------
2b792afc 430 * HIDx - Hardware Implementation-dependent Registers 2-11
7a8e9bed
WD
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.
436 *
437 * HID1 has only read-only information - nothing to set.
438 */
6d0f6bcf
JCPV
439/*#define CONFIG_SYS_HID0_INIT 0 */
440#define CONFIG_SYS_HID0_INIT (HID0_ICE |\
7a8e9bed
WD
441 HID0_DCE |\
442 HID0_ICFI |\
443 HID0_DCI |\
444 HID0_IFEM |\
445 HID0_ABE)
446
6d0f6bcf 447#define CONFIG_SYS_HID0_FINAL (HID0_ICE | HID0_IFEM | HID0_ABE )
db2f721f 448
6d0f6bcf 449#define CONFIG_SYS_HID2 0
db2f721f 450
6d0f6bcf
JCPV
451#define CONFIG_SYS_SYPCR 0xFFFFFFC3
452#define CONFIG_SYS_BCR 0x004C0000
453#define CONFIG_SYS_SIUMCR 0x4E64C000
454#define CONFIG_SYS_SCCR 0x00000000
db2f721f 455
5d232d0e
WD
456/* local bus memory map
457 *
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
2b792afc 462 * 0xF4000000-0xF7FFFFFF 64MB outbound PCI I/O window
5d232d0e
WD
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
468 */
6d0f6bcf
JCPV
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
479
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
db2f721f 486
65bd0e28 487/* This address must not exist */
6d0f6bcf 488#define CONFIG_SYS_RESET_ADDRESS 0xFCFFFF00
db2f721f 489
5d232d0e 490/* PCI Memory map (if different from default map */
6d0f6bcf
JCPV
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 | \
8bde7f77 494 PICMR_PREFETCH_EN)
5d232d0e 495
8bde7f77 496/*
5d232d0e 497 * These are the windows that allow the CPU to access PCI address space.
8bde7f77
WD
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
5d232d0e
WD
500 * these windows.
501 */
502
503/* PCIBR0 */
6d0f6bcf
JCPV
504#define CONFIG_SYS_PCI_MSTR0_LOCAL 0x80000000 /* Local base */
505#define CONFIG_SYS_PCIMSK0_MASK PCIMSK_1GB /* Size of window */
5d232d0e 506/* PCIBR1 */
6d0f6bcf
JCPV
507#define CONFIG_SYS_PCI_MSTR1_LOCAL 0xF4000000 /* Local base */
508#define CONFIG_SYS_PCIMSK1_MASK PCIMSK_64MB /* Size of window */
5d232d0e 509
8bde7f77 510/*
5d232d0e
WD
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
513 * in the bridge.
514 */
515
6d0f6bcf
JCPV
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)
5d232d0e 521
8bde7f77 522/*
5d232d0e
WD
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
525 * in the bridge.
526 */
527
6d0f6bcf
JCPV
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)
5d232d0e 533
8bde7f77 534/*
5d232d0e
WD
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
537 * in the bridge.
538 */
539
6d0f6bcf
JCPV
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)
5d232d0e 545
700a0c64
WD
546/*
547 * JFFS2 partitions
548 *
549 */
550/* No command line, one static partition, whole device */
68d7d651 551#undef CONFIG_CMD_MTDPARTS
700a0c64
WD
552#define CONFIG_JFFS2_DEV "nor0"
553#define CONFIG_JFFS2_PART_SIZE 0xFFFFFFFF
554#define CONFIG_JFFS2_PART_OFFSET 0x00000000
555
556/* mtdparts command line support */
557/*
68d7d651 558#define CONFIG_CMD_MTDPARTS
700a0c64
WD
559#define MTDIDS_DEFAULT ""
560#define MTDPARTS_DEFAULT ""
561*/
5d232d0e 562
db2f721f 563#endif /* __CONFIG_H */