blob: e44009e8b1c30ed3fcc09eecd9394e4ccfdfd987 [file] [log] [blame]
Stefan Roese1eac2a72006-11-29 15:42:37 +01001/*
2 * (C) Copyright 2006
3 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * Based on original work by
6 * Roel Loeffen, (C) Copyright 2006 Prodrive B.V.
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
24 * MA 02111-1307 USA
25 */
26
27/************************************************************************
28 * p3mx.h - configuration for Prodrive P3M750 & P3M7448 boards
29 *
30 * The defines:
31 * CONFIG_P3M750 or
32 * CONFIG_P3M7448
33 * are written into include/config.h by the "make xxx_config" command
34 ***********************************************************************/
35#ifndef __CONFIG_H
36#define __CONFIG_H
37
38/*-----------------------------------------------------------------------
39 * High Level Configuration Options
40 *----------------------------------------------------------------------*/
41#define CONFIG_P3Mx /* used for both board versions */
42
Wolfgang Denk2ae18242010-10-06 09:05:45 +020043#define CONFIG_SYS_TEXT_BASE 0xfff00000
44
Stefan Roese1eac2a72006-11-29 15:42:37 +010045#if defined (CONFIG_P3M750)
46#define CONFIG_750FX /* 750GL/GX/FX */
Becky Bruce31d82672008-05-08 19:02:12 -050047#define CONFIG_HIGH_BATS /* High BATs supported */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#define CONFIG_SYS_BOARD_NAME "P3M750"
Wolfgang Denkee80fa72010-06-13 18:38:23 +020049#define CONFIG_SYS_BUS_CLK 100000000
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050#define CONFIG_SYS_TCLK 100000000
Stefan Roese1eac2a72006-11-29 15:42:37 +010051#elif defined (CONFIG_P3M7448)
52#define CONFIG_74xx
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020053#define CONFIG_SYS_BOARD_NAME "P3M7448"
Wolfgang Denkee80fa72010-06-13 18:38:23 +020054#define CONFIG_SYS_BUS_CLK 133333333
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055#define CONFIG_SYS_TCLK 133333333
Stefan Roese1eac2a72006-11-29 15:42:37 +010056#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057#define CONFIG_SYS_GT_DUAL_CPU /* also for JTAG even with one cpu */
Stefan Roese1eac2a72006-11-29 15:42:37 +010058
59/* which initialization functions to call for this board */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060#define CONFIG_SYS_BOARD_ASM_INIT 1
Stefan Roese1eac2a72006-11-29 15:42:37 +010061#define CONFIG_BOARD_EARLY_INIT_F 1 /* Call board_early_init_f */
Stefan Roese1eac2a72006-11-29 15:42:37 +010062#define CONFIG_MISC_INIT_R 1 /* Call misc_init_r() */
Stefan Roese1eac2a72006-11-29 15:42:37 +010063
64/*-----------------------------------------------------------------------
65 * Base addresses -- Note these are effective addresses where the
66 * actual resources get mapped (not physical addresses)
67 *----------------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068#define CONFIG_SYS_SDRAM_BASE 0x00000000
Stefan Roese1eac2a72006-11-29 15:42:37 +010069#ifdef CONFIG_P3M750
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#define CONFIG_SYS_SDRAM1_BASE 0x10000000 /* each 256 MByte */
Stefan Roese1eac2a72006-11-29 15:42:37 +010071#endif
72
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073#define CONFIG_SYS_MONITOR_LEN (256 << 10) /* Reserve 256 kB for Monitor */
Stefan Roese1eac2a72006-11-29 15:42:37 +010074#if defined (CONFIG_P3M750)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075#define CONFIG_SYS_FLASH_BASE 0xff800000 /* start of flash banks */
76#define CONFIG_SYS_BOOT_SIZE _8M /* boot flash */
Stefan Roese1eac2a72006-11-29 15:42:37 +010077#elif defined (CONFIG_P3M7448)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#define CONFIG_SYS_FLASH_BASE 0xff000000 /* start of flash banks */
79#define CONFIG_SYS_BOOT_SIZE _16M /* boot flash */
Stefan Roese1eac2a72006-11-29 15:42:37 +010080#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020081#define CONFIG_SYS_BOOT_SPACE CONFIG_SYS_FLASH_BASE /* BOOT_CS0 flash 0 */
82#define CONFIG_SYS_MONITOR_BASE 0xfff00000
83#define CONFIG_SYS_RESET_ADDRESS 0xfff00100
84#define CONFIG_SYS_MALLOC_LEN (256 << 10) /* Reserve 256 kB for malloc */
85#define CONFIG_SYS_MISC_REGION_BASE 0xf0000000
Stefan Roese1eac2a72006-11-29 15:42:37 +010086
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087#define CONFIG_SYS_DFL_GT_REGS 0xf1000000 /* boot time GT_REGS */
88#define CONFIG_SYS_GT_REGS 0xf1000000 /* GT Registers are mapped here */
89#define CONFIG_SYS_INT_SRAM_BASE 0x42000000 /* GT offers 256k internal SRAM */
Stefan Roese1eac2a72006-11-29 15:42:37 +010090
91/*-----------------------------------------------------------------------
92 * Initial RAM & stack pointer (placed in internal SRAM)
93 *----------------------------------------------------------------------*/
94 /*
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095 * When locking data in cache you should point the CONFIG_SYS_INIT_RAM_ADDRESS
Stefan Roese1eac2a72006-11-29 15:42:37 +010096 * To an unused memory region. The stack will remain in cache until RAM
97 * is initialized
98*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020099#undef CONFIG_SYS_INIT_RAM_LOCK
100#define CONFIG_SYS_INIT_RAM_ADDR 0x42000000
Wolfgang Denk553f0982010-10-26 13:32:32 +0200101#define CONFIG_SYS_INIT_RAM_SIZE 0x1000
Wolfgang Denk25ddd1f2010-10-26 14:34:52 +0200102#define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
Stefan Roese1eac2a72006-11-29 15:42:37 +0100103
104
105/*-----------------------------------------------------------------------
106 * Serial Port
107 *----------------------------------------------------------------------*/
108#define CONFIG_MPSC /* MV64460 Serial */
109#define CONFIG_MPSC_PORT 0
110#define CONFIG_BAUDRATE 115200 /* console baudrate */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200111#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
Stefan Roese1eac2a72006-11-29 15:42:37 +0100112#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200113#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100114
115/*-----------------------------------------------------------------------
116 * Ethernet
117 *----------------------------------------------------------------------*/
118/* Change the default ethernet port, use this define (options: 0, 1, 2) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200119#define CONFIG_SYS_ETH_PORT ETH_0
Stefan Roese1eac2a72006-11-29 15:42:37 +0100120#define MV_ETH_DEVS 2
121#define CONFIG_PHY_RESET 1 /* reset phy upon startup */
122#define CONFIG_PHY_GIGE 1 /* Include GbE speed/duplex detection */
123
124/*-----------------------------------------------------------------------
125 * FLASH related
126 *----------------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200127#define CONFIG_SYS_FLASH_CFI /* The flash is CFI compatible */
Jean-Christophe PLAGNIOL-VILLARD00b18832008-08-13 01:40:42 +0200128#define CONFIG_FLASH_CFI_DRIVER /* Use common CFI driver */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max number of memory banks */
130#define CONFIG_SYS_MAX_FLASH_SECT 512 /* max number of sectors on one chip */
131#define CONFIG_SYS_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
132#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Timeout for Flash Write (in ms) */
133#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1 /* use buffered writes (20x faster) */
134#define CONFIG_SYS_FLASH_PROTECTION 1 /* use hardware flash protection */
135#define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100136
Jean-Christophe PLAGNIOL-VILLARD5a1aceb2008-09-10 22:48:04 +0200137#define CONFIG_ENV_IS_IN_FLASH 1 /* use FLASH for environment vars */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100138#if defined (CONFIG_P3M750)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200139#define CONFIG_ENV_SECT_SIZE 0x20000 /* one sector (1 device) */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100140#elif defined (CONFIG_P3M7448)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200141#define CONFIG_ENV_SECT_SIZE 0x40000 /* two sectors (2 devices parallel */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100142#endif
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200143#define CONFIG_ENV_SIZE 0x2000 /* Total Size of Environment Sector */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200144#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
Stefan Roese1eac2a72006-11-29 15:42:37 +0100145
146/*-----------------------------------------------------------------------
147 * DDR SDRAM
148 *----------------------------------------------------------------------*/
149#define CONFIG_MV64460_ECC
150
151/*-----------------------------------------------------------------------
152 * I2C
153 *----------------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154#define CONFIG_SYS_I2C_SPEED 100000 /* I2C speed default */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100155
156/* I2C RTC */
157#define CONFIG_RTC_M41T11 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200158#define CONFIG_SYS_I2C_RTC_ADDR 0x68
159#define CONFIG_SYS_M41T11_BASE_YEAR 1900 /* play along with linux */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100160
161/*-----------------------------------------------------------------------
162 * PCI stuff
163 *----------------------------------------------------------------------*/
164#define PCI_HOST_ADAPTER 0 /* configure ar pci adapter */
165#define PCI_HOST_FORCE 1 /* configure as pci host */
166#define PCI_HOST_AUTO 2 /* detected via arbiter enable */
167
Stefan Roese0057d752007-01-18 11:54:52 +0100168#undef CONFIG_PCI /* include pci support */
169#ifdef CONFIG_PCI
Stefan Roese1eac2a72006-11-29 15:42:37 +0100170#define CONFIG_PCI_HOST PCI_HOST_FORCE /* select pci host function */
171#define CONFIG_PCI_PNP /* do pci plug-and-play */
172#define CONFIG_PCI_SCAN_SHOW /* show devices on bus */
Stefan Roese0057d752007-01-18 11:54:52 +0100173#endif /* CONFIG_PCI */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100174
175/* PCI MEMORY MAP section */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200176#define CONFIG_SYS_PCI0_MEM_BASE 0x80000000
177#define CONFIG_SYS_PCI0_MEM_SIZE _128M
178#define CONFIG_SYS_PCI1_MEM_BASE 0x88000000
179#define CONFIG_SYS_PCI1_MEM_SIZE _128M
Stefan Roese1eac2a72006-11-29 15:42:37 +0100180
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200181#define CONFIG_SYS_PCI0_0_MEM_SPACE (CONFIG_SYS_PCI0_MEM_BASE)
182#define CONFIG_SYS_PCI1_0_MEM_SPACE (CONFIG_SYS_PCI1_MEM_BASE)
Stefan Roese1eac2a72006-11-29 15:42:37 +0100183
184/* PCI I/O MAP section */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200185#define CONFIG_SYS_PCI0_IO_BASE 0xfa000000
186#define CONFIG_SYS_PCI0_IO_SIZE _16M
187#define CONFIG_SYS_PCI1_IO_BASE 0xfb000000
188#define CONFIG_SYS_PCI1_IO_SIZE _16M
Stefan Roese1eac2a72006-11-29 15:42:37 +0100189
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190#define CONFIG_SYS_PCI0_IO_SPACE (CONFIG_SYS_PCI0_IO_BASE)
191#define CONFIG_SYS_PCI0_IO_SPACE_PCI 0x00000000
192#define CONFIG_SYS_PCI1_IO_SPACE (CONFIG_SYS_PCI1_IO_BASE)
193#define CONFIG_SYS_PCI1_IO_SPACE_PCI 0x00000000
Stefan Roese1eac2a72006-11-29 15:42:37 +0100194
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200195#define CONFIG_SYS_ISA_IO_BASE_ADDRESS (CONFIG_SYS_PCI0_IO_BASE)
196#define CONFIG_SYS_PCI_IDSEL 0x30
Stefan Roese1eac2a72006-11-29 15:42:37 +0100197
198#undef CONFIG_BOOTARGS
199#define CONFIG_EXTRA_ENV_SETTINGS_COMMON \
200 "netdev=eth0\0" \
201 "nfsargs=setenv bootargs root=/dev/nfs rw " \
202 "nfsroot=${serverip}:${rootpath}\0" \
203 "ramargs=setenv bootargs root=/dev/ram rw\0" \
204 "addip=setenv bootargs ${bootargs} " \
205 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
206 ":${hostname}:${netdev}:off panic=1\0" \
207 "addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"\
208 "flash_nfs=run nfsargs addip addtty;" \
209 "bootm ${kernel_addr}\0" \
210 "flash_self=run ramargs addip addtty;" \
211 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
212 "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;" \
213 "bootm\0" \
214 "rootpath=/opt/eldk/ppc_6xx\0" \
215 "u-boot=p3mx/u-boot/u-boot.bin\0" \
216 "load=tftp 100000 ${u-boot}\0" \
217 "update=protect off fff00000 fff3ffff;era fff00000 fff3ffff;" \
218 "cp.b 100000 fff00000 40000;" \
219 "setenv filesize;saveenv\0" \
Detlev Zundeld8ab58b2008-03-06 16:45:53 +0100220 "upd=run load update\0" \
Stefan Roese1eac2a72006-11-29 15:42:37 +0100221 "serverip=11.0.0.152\0"
222
223#if defined (CONFIG_P3M750)
224#define CONFIG_EXTRA_ENV_SETTINGS \
225 CONFIG_EXTRA_ENV_SETTINGS_COMMON \
226 "hostname=p3m750\0" \
227 "bootfile=/tftpboot/p3mx/vxWorks.st\0" \
228 "kernel_addr=fc000000\0" \
229 "ramdisk_addr=fc180000\0" \
230 "vxfile=p3m750/vxWorks\0" \
231 "vxuser=ddg\0" \
232 "vxpass=ddg\0" \
233 "vxtarget=target\0" \
234 "vxflags=0x8\0" \
235 "vxargs=setenv bootargs mgi(0,0)host:${vxfile} h=${serverip} " \
236 "e=${ipaddr} u=${vxuser} pw=${vxpass} tn=${vxtarget} " \
237 "f=${vxflags}\0"
238#elif defined (CONFIG_P3M7448)
239#define CONFIG_EXTRA_ENV_SETTINGS \
240 CONFIG_EXTRA_ENV_SETTINGS_COMMON \
241 "hostname=p3m7448\0"
242#endif
243
244#if defined (CONFIG_P3M750)
245#define CONFIG_BOOTCOMMAND "tftp;run vxargs;bootvx"
246#elif defined (CONFIG_P3M7448)
247#define CONFIG_BOOTCOMMAND " "
248#endif
249
250#define CONFIG_BOOTDELAY 3 /* autoboot after 5 seconds */
Jon Loeligerd3b8c1a2007-07-09 21:57:31 -0500251
252/*
253 * BOOTP options
254 */
255#define CONFIG_BOOTP_SUBNETMASK
256#define CONFIG_BOOTP_GATEWAY
257#define CONFIG_BOOTP_HOSTNAME
258#define CONFIG_BOOTP_BOOTPATH
259#define CONFIG_BOOTP_BOOTFILESIZE
Stefan Roese1eac2a72006-11-29 15:42:37 +0100260
Jon Loeliger26a34562007-07-04 22:33:17 -0500261/*
262 * Command line configuration.
263 */
264#include <config_cmd_default.h>
265
266#define CONFIG_CMD_ASKENV
267#define CONFIG_CMD_DATE
268#define CONFIG_CMD_DIAG
269#define CONFIG_CMD_ELF
270#define CONFIG_CMD_I2C
271#define CONFIG_CMD_IRQ
272#define CONFIG_CMD_MII
273#define CONFIG_CMD_NET
274#define CONFIG_CMD_NFS
275#define CONFIG_CMD_PING
276#define CONFIG_CMD_REGINFO
277#define CONFIG_CMD_PCI
278#define CONFIG_CMD_CACHE
279#define CONFIG_CMD_SDRAM
280
Stefan Roese1eac2a72006-11-29 15:42:37 +0100281
282/*-----------------------------------------------------------------------
283 * Miscellaneous configurable options
284 *----------------------------------------------------------------------*/
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200285#define CONFIG_SYS_HUSH_PARSER
286#define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
Stefan Roese1eac2a72006-11-29 15:42:37 +0100287
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200288#define CONFIG_SYS_LONGHELP /* undef to save memory */
289#define CONFIG_SYS_PROMPT "=> " /* Monitor Command Prompt */
Jon Loeliger26a34562007-07-04 22:33:17 -0500290#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200291#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100292#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200293#define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100294#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200295#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16) /* Print Buffer Size */
296#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
297#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot Argument Buffer Size */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100298
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200299#define CONFIG_SYS_MEMTEST_START 0x0400000 /* memtest works on */
300#define CONFIG_SYS_MEMTEST_END 0x0C00000 /* 4 ... 12 MB in DRAM */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100301
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200302#define CONFIG_SYS_LOAD_ADDR 0x08000000 /* default load address */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100303
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200304#define CONFIG_SYS_HZ 1000 /* decrementer freq: 1 ms ticks */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100305
306#define CONFIG_CMDLINE_EDITING 1 /* add command line history */
307#define CONFIG_LOOPW 1 /* enable loopw command */
308#define CONFIG_MX_CYCLIC 1 /* enable mdc/mwc commands */
309#define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
310#define CONFIG_VERSION_VARIABLE 1 /* include version env variable */
311
312/*-----------------------------------------------------------------------
313 * Marvell MV64460 config settings
314 *----------------------------------------------------------------------*/
315/* Reset values for Port behavior (8bit/ 32bit, etc.) only corrected device width */
316#if defined (CONFIG_P3M750)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200317#define CONFIG_SYS_BOOT_PAR 0x8FDFF87F /* 16 bit flash, disable burst*/
Stefan Roese1eac2a72006-11-29 15:42:37 +0100318#elif defined (CONFIG_P3M7448)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200319#define CONFIG_SYS_BOOT_PAR 0x8FEFFFFF /* 32 bit flash, burst enabled */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100320#endif
321
322/*
323 * MPP[0] Serial Port 0 TxD TxD OUT Connected to P14 (buffered)
324 * MPP[1] Serial Port 0 RxD RxD IN Connected to P14 (buffered)
325 * MPP[2] NC
326 * MPP[3] Serial Port 1 TxD TxD OUT Connected to P14 (buffered)
327 * MPP[4] PCI Monarch# GPIO IN Connected to P12
328 * MPP[5] Serial Port 1 RxD RxD IN Connected to P14 (buffered)
329 * MPP[6] PMC Carrier Interrupt 0 Int IN Connected to P14
330 * MPP[7] PMC Carrier Interrupt 1 Int IN Connected to P14
331 * MPP[8] Reserved Do not use
332 * MPP[9] Reserved Do not use
333 * MPP[10] Reserved Do not use
334 * MPP[11] Reserved Do not use
335 * MPP[12] Phy 0 Interrupt Int IN
336 * MPP[13] Phy 1 Interrupt Int IN
337 * MPP[14] NC
338 * MPP[15] NC
339 * MPP[16] PCI Interrupt C Int IN Connected to P11
340 * MPP[17] PCI Interrupt D Int IN Connected to P11
341 * MPP[18] Watchdog NMI# GPIO IN Connected to MPP[24]
342 * MPP[19] Watchdog Expired# WDE OUT Connected to rst logic
343 * MPP[20] Watchdog Status WD_STS IN Read back of rst by watchdog
344 * MPP[21] NC
345 * MPP[22] GP LED Green GPIO OUT
346 * MPP[23] GP LED Red GPIO OUT
347 * MPP[24] Watchdog NMI# Int OUT
348 * MPP[25] NC
349 * MPP[26] NC
350 * MPP[27] PCI Interrupt A Int IN Connected to P11
351 * MPP[28] NC
352 * MPP[29] PCI Interrupt B Int IN Connected to P11
353 * MPP[30] Module reset GPIO OUT Board reset
354 * MPP[31] PCI EReady GPIO IN Connected to P12
355 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200356#define CONFIG_SYS_MPP_CONTROL_0 0x00303022
357#define CONFIG_SYS_MPP_CONTROL_1 0x00000000
358#define CONFIG_SYS_MPP_CONTROL_2 0x00004000
359#define CONFIG_SYS_MPP_CONTROL_3 0x00000004
360#define CONFIG_SYS_GPP_LEVEL_CONTROL 0x280730D0
Stefan Roese1eac2a72006-11-29 15:42:37 +0100361
362/*----------------------------------------------------------------------
363 * Initial BAT mappings
364 */
365
366/* NOTES:
367 * 1) GUARDED and WRITE_THRU not allowed in IBATS
368 * 2) CACHEINHIBIT and WRITETHROUGH not allowed together in same BAT
369 */
370/* SDRAM */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200371#define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_RW | BATL_CACHEINHIBIT)
372#define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
373#define CONFIG_SYS_DBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_RW | BATL_GUARDEDSTORAGE | BATL_CACHEINHIBIT)
374#define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100375
376/* init ram */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200377#define CONFIG_SYS_IBAT1L (CONFIG_SYS_INIT_RAM_ADDR | BATL_PP_RW | BATL_MEMCOHERENCE)
378#define CONFIG_SYS_IBAT1U (CONFIG_SYS_INIT_RAM_ADDR | BATU_BL_256K | BATU_VS | BATU_VP)
379#define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
380#define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100381
382/* PCI0, PCI1 in one BAT */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200383#define CONFIG_SYS_IBAT2L BATL_NO_ACCESS
384#define CONFIG_SYS_IBAT2U CONFIG_SYS_DBAT2U
385#define CONFIG_SYS_DBAT2L (CONFIG_SYS_PCI0_MEM_BASE | BATL_CACHEINHIBIT | BATL_PP_RW | BATL_GUARDEDSTORAGE)
386#define CONFIG_SYS_DBAT2U (CONFIG_SYS_PCI0_MEM_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
Stefan Roese1eac2a72006-11-29 15:42:37 +0100387
388/* GT regs, bootrom, all the devices, PCI I/O */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200389#define CONFIG_SYS_IBAT3L (CONFIG_SYS_MISC_REGION_BASE | BATL_CACHEINHIBIT | BATL_PP_RW)
390#define CONFIG_SYS_IBAT3U (CONFIG_SYS_MISC_REGION_BASE | BATU_VS | BATU_VP | BATU_BL_256M)
391#define CONFIG_SYS_DBAT3L (CONFIG_SYS_MISC_REGION_BASE | BATL_CACHEINHIBIT | BATL_PP_RW | BATL_GUARDEDSTORAGE)
392#define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100393
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200394#define CONFIG_SYS_IBAT4L (CONFIG_SYS_SDRAM1_BASE | BATL_PP_RW | BATL_CACHEINHIBIT)
395#define CONFIG_SYS_IBAT4U (CONFIG_SYS_SDRAM1_BASE | BATU_BL_256M | BATU_VS | BATU_VP)
396#define CONFIG_SYS_DBAT4L (CONFIG_SYS_SDRAM1_BASE | BATL_PP_RW | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
397#define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100398
399/* set rest out of range for Linux !!!!!!!!!!! */
400
401/* IBAT5 and DBAT5 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200402#define CONFIG_SYS_IBAT5L (0x20000000 | BATL_PP_RW | BATL_CACHEINHIBIT)
403#define CONFIG_SYS_IBAT5U (0x20000000 | BATU_BL_256M | BATU_VS | BATU_VP)
404#define CONFIG_SYS_DBAT5L (0x20000000 | BATL_PP_RW | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
405#define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100406
407/* IBAT6 and DBAT6 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200408#define CONFIG_SYS_IBAT6L (0x20000000 | BATL_PP_RW | BATL_CACHEINHIBIT)
409#define CONFIG_SYS_IBAT6U (0x20000000 | BATU_BL_256M | BATU_VS | BATU_VP)
410#define CONFIG_SYS_DBAT6L (0x20000000 | BATL_PP_RW | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
411#define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100412
413/* IBAT7 and DBAT7 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200414#define CONFIG_SYS_IBAT7L (0x20000000 | BATL_PP_RW | BATL_CACHEINHIBIT)
415#define CONFIG_SYS_IBAT7U (0x20000000 | BATU_BL_256M | BATU_VS | BATU_VP)
416#define CONFIG_SYS_DBAT7L (0x20000000 | BATL_PP_RW | BATL_CACHEINHIBIT | BATL_GUARDEDSTORAGE)
417#define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
Stefan Roese1eac2a72006-11-29 15:42:37 +0100418
419/*
420 * For booting Linux, the board info and command line data
421 * have to be in the first 8 MB of memory, since this is
422 * the maximum mapped by the Linux kernel during initialization.
423 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200424#define CONFIG_SYS_BOOTMAPSZ (8<<20) /* Initial Memory map for Linux */
425#define CONFIG_SYS_VXWORKS_MAC_PTR 0x42010000 /* use some memory in SRAM that's not used!!! */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100426
427/*-----------------------------------------------------------------------
428 * Cache Configuration
429 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200430#define CONFIG_SYS_CACHELINE_SIZE 32 /* For all MPC74xx CPUs */
Jon Loeliger26a34562007-07-04 22:33:17 -0500431#if defined(CONFIG_CMD_KGDB)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200432#define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
Stefan Roese1eac2a72006-11-29 15:42:37 +0100433#endif
434
435/*-----------------------------------------------------------------------
436 * L2CR setup -- make sure this is right for your board!
437 * look in include/mpc74xx.h for the defines used here
438 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200439#define CONFIG_SYS_L2
Stefan Roese1eac2a72006-11-29 15:42:37 +0100440
441#if defined (CONFIG_750CX) || defined (CONFIG_750FX)
442#define L2_INIT 0
443#else
444#define L2_INIT (L2CR_L2SIZ_2M | L2CR_L2CLK_3 | L2CR_L2RAM_BURST | \
445 L2CR_L2OH_5 | L2CR_L2CTL | L2CR_L2WT)
446#endif
447
448#define L2_ENABLE (L2_INIT | L2CR_L2E)
449
Marek Vasut0aa27652011-10-21 14:17:33 +0000450#ifndef __ASSEMBLY__
451#include <../board/Marvell/include/core.h>
452#endif
453
Stefan Roese1eac2a72006-11-29 15:42:37 +0100454#endif /* __CONFIG_H */