blob: 06c66528784520bafc47abe4cc2eba839e8dfa73 [file] [log] [blame]
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02001/*
Stefan Roese1bbf5ea2007-01-30 15:01:49 +01002 * (C) Copyright 2006-2007
Wolfgang Denkba94a1b2006-05-30 15:56:48 +02003 * Stefan Roese, DENX Software Engineering, sr@denx.de.
4 *
5 * Configuation settings for the PDNB3 board.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
23 * MA 02111-1307 USA
24 */
25
26#ifndef __CONFIG_H
27#define __CONFIG_H
28
29/*
30 * High Level Configuration Options
31 * (easy to change)
32 */
33#define CONFIG_IXP425 1 /* This is an IXP425 CPU */
34#define CONFIG_PDNB3 1 /* on an PDNB3 board */
35
36#define CONFIG_DISPLAY_CPUINFO 1 /* display cpu info (and speed) */
37#define CONFIG_DISPLAY_BOARDINFO 1 /* display board info */
38
39/*
40 * Ethernet
41 */
42#define CONFIG_IXP4XX_NPE 1 /* include IXP4xx NPE support */
43#define CONFIG_NET_MULTI 1
44#define CONFIG_PHY_ADDR 16 /* NPE0 PHY address */
45#define CONFIG_HAS_ETH1
46#define CONFIG_PHY1_ADDR 18 /* NPE1 PHY address */
47#define CONFIG_MII 1 /* MII PHY management */
48#define CFG_RX_ETH_BUFFER 16 /* Number of ethernet rx buffers & descriptors */
49
50/*
51 * Misc configuration options
52 */
53#define CONFIG_USE_IRQ 1 /* we need IRQ stuff for timer */
54
55#define CONFIG_BOOTCOUNT_LIMIT /* support for bootcount limit */
56#define CFG_BOOTCOUNT_ADDR 0x60003000 /* inside qmrg sram */
57
58#define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */
59#define CONFIG_SETUP_MEMORY_TAGS 1
60#define CONFIG_INITRD_TAG 1
61
62/*
63 * Size of malloc() pool
64 */
65#define CFG_MALLOC_LEN (1 << 20)
66#define CFG_GBL_DATA_SIZE 128 /* size in bytes reserved for initial data */
67
68/* allow to overwrite serial and ethaddr */
69#define CONFIG_ENV_OVERWRITE
70
71#define CONFIG_BAUDRATE 115200
72#define CFG_IXP425_CONSOLE IXP425_UART1 /* we use UART1 for console */
73
Stefan Roese9d8d5a52007-01-18 16:05:47 +010074#if defined(CONFIG_SCPU)
75#define CMD_NAND_ADD 0
76#else
77#define CMD_NAND_ADD CFG_CMD_NAND
78#endif
79
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020080#define CONFIG_COMMANDS (CONFIG_CMD_DFL | \
81 CFG_CMD_DHCP | \
82 CFG_CMD_DATE | \
83 CFG_CMD_NET | \
84 CFG_CMD_MII | \
Stefan Roese9d8d5a52007-01-18 16:05:47 +010085 CMD_NAND_ADD | \
Wolfgang Denkba94a1b2006-05-30 15:56:48 +020086 CFG_CMD_I2C | \
87 CFG_CMD_ELF | \
88 CFG_CMD_PING)
89
90/* This must be included AFTER the definition of CONFIG_COMMANDS (if any) */
91/* These are u-boot generic parameters */
92#include <cmd_confdefs.h>
93
94#define CONFIG_ZERO_BOOTDELAY_CHECK /* check for keypress on bootdelay==0 */
95#define CONFIG_BOOTDELAY 5 /* autoboot after 5 seconds */
96
97/*
98 * Miscellaneous configurable options
99 */
100#define CFG_LONGHELP /* undef to save memory */
101#define CFG_PROMPT "=> " /* Monitor Command Prompt */
102#define CFG_CBSIZE 256 /* Console I/O Buffer Size */
103#define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
104#define CFG_MAXARGS 16 /* max number of command args */
105#define CFG_BARGSIZE CFG_CBSIZE /* Boot Argument Buffer Size */
106
107#define CFG_MEMTEST_START 0x00400000 /* memtest works on */
108#define CFG_MEMTEST_END 0x00800000 /* 4 ... 8 MB in DRAM */
109#define CFG_LOAD_ADDR 0x00010000 /* default load address */
110
111#undef CFG_CLKS_IN_HZ /* everything, incl board info, in Hz */
112#define CFG_HZ 1000 /* decrementer freq: 1 ms ticks */
113 /* valid baudrates */
114#define CFG_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
115
116/*
117 * Stack sizes
118 *
119 * The stack sizes are set up in start.S using the settings below
120 */
121#define CONFIG_STACKSIZE (128*1024) /* regular stack */
122#ifdef CONFIG_USE_IRQ
123#define CONFIG_STACKSIZE_IRQ (4*1024) /* IRQ stack */
124#define CONFIG_STACKSIZE_FIQ (4*1024) /* FIQ stack */
125#endif
126
127/***************************************************************
128 * Platform/Board specific defines start here.
129 ***************************************************************/
130
131/*-----------------------------------------------------------------------
132 * Default configuration (environment varibles...)
133 *----------------------------------------------------------------------*/
134#define CONFIG_PREBOOT "echo;" \
135 "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
136 "echo"
137
138#undef CONFIG_BOOTARGS
139
140#define CONFIG_EXTRA_ENV_SETTINGS \
141 "netdev=eth0\0" \
142 "hostname=pdnb3\0" \
143 "nfsargs=setenv bootargs root=/dev/nfs rw " \
144 "nfsroot=${serverip}:${rootpath}\0" \
145 "ramargs=setenv bootargs root=/dev/ram rw\0" \
146 "addip=setenv bootargs ${bootargs} ethaddr=${ethaddr} " \
147 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
148 ":${hostname}:${netdev}:off panic=1\0" \
149 "addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate} " \
150 "mtdparts=${mtdparts}\0" \
151 "flash_nfs=run nfsargs addip addtty;" \
152 "bootm ${kernel_addr}\0" \
153 "flash_self=run ramargs addip addtty;" \
154 "bootm ${kernel_addr} ${ramdisk_addr}\0" \
155 "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;" \
156 "bootm\0" \
157 "rootpath=/opt/buildroot\0" \
158 "bootfile=/tftpboot/netbox/uImage\0" \
159 "kernel_addr=50080000\0" \
160 "ramdisk_addr=50200000\0" \
161 "load=tftp 100000 /tftpboot/netbox/u-boot.bin\0" \
162 "update=protect off 50000000 5007dfff;era 50000000 5007dfff;" \
163 "cp.b 100000 50000000 ${filesize};" \
164 "setenv filesize;saveenv\0" \
165 "upd=run load;run update\0" \
166 "ipaddr=10.0.0.233\0" \
167 "serverip=10.0.0.152\0" \
168 "netmask=255.255.0.0\0" \
169 "ethaddr=c6:6f:13:36:f3:81\0" \
170 "eth1addr=c6:6f:13:36:f3:82\0" \
171 "mtdparts=IXP4XX-Flash.0:504k@0(uboot),4k@504k(env)," \
172 "4k@508k(renv)\0" \
173 ""
174#define CONFIG_BOOTCOMMAND "run net_nfs"
175
176/*
177 * Physical Memory Map
178 */
179#define CONFIG_NR_DRAM_BANKS 1 /* we have 1 bank of DRAM */
180#define PHYS_SDRAM_1 0x00000000 /* SDRAM Bank #1 */
181#define PHYS_SDRAM_1_SIZE 0x02000000 /* 32 MB */
182
183#define CFG_FLASH_BASE 0x50000000
184#define CFG_MONITOR_BASE CFG_FLASH_BASE
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100185#if defined(CONFIG_SCPU)
186#define CFG_MONITOR_LEN (384 << 10) /* Reserve 512 kB for Monitor */
187#else
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200188#define CFG_MONITOR_LEN (504 << 10) /* Reserve 512 kB for Monitor */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100189#endif
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200190
191/*
192 * Expansion bus settings
193 */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100194#if defined(CONFIG_SCPU)
195#define CFG_EXP_CS0 0x94d23C42 /* 8bit, max size */
196#else
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200197#define CFG_EXP_CS0 0x94913C43 /* 8bit, max size */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100198#endif
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200199#define CFG_EXP_CS1 0x85000043 /* 8bit, 512bytes */
200
201/*
202 * SDRAM settings
203 */
204#define CFG_SDR_CONFIG 0x18
205#define CFG_SDR_MODE_CONFIG 0x1
206#define CFG_SDRAM_REFRESH_CNT 0x81a
207
208/*
209 * FLASH and environment organization
210 */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100211#if defined(CONFIG_SCPU)
212#define CFG_FLASH_CFI /* The flash is CFI compatible */
213#define CFG_FLASH_CFI_DRIVER /* Use common CFI driver */
214#define CFG_FLASH_CFI_WIDTH FLASH_CFI_16BIT /* no byte writes on IXP4xx */
215#endif
216
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200217#define FLASH_BASE0_PRELIM CFG_FLASH_BASE /* FLASH bank #0 */
218
219#define CFG_MAX_FLASH_BANKS 1 /* max number of memory banks */
220#define CFG_MAX_FLASH_SECT 256 /* max number of sectors on one chip */
221
222#define CFG_FLASH_ERASE_TOUT 120000 /* Timeout for Flash Erase (in ms) */
223#define CFG_FLASH_WRITE_TOUT 1000 /* Timeout for Flash Write (in ms) */
224
225#define CFG_FLASH_WORD_SIZE unsigned char /* flash word size (width) */
226#define CFG_FLASH_ADDR0 0x5555 /* 1st address for flash config cycles */
227#define CFG_FLASH_ADDR1 0x2AAA /* 2nd address for flash config cycles */
228/*
229 * The following defines are added for buggy IOP480 byte interface.
230 * All other boards should use the standard values (CPCI405 etc.)
231 */
232#define CFG_FLASH_READ0 0x0000 /* 0 is standard */
233#define CFG_FLASH_READ1 0x0001 /* 1 is standard */
234#define CFG_FLASH_READ2 0x0002 /* 2 is standard */
235
236#define CFG_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
237
238#define CFG_ENV_IS_IN_FLASH 1
239
Stefan Roese1bbf5ea2007-01-30 15:01:49 +0100240#define CFG_ENV_ADDR (CFG_FLASH_BASE + CFG_MONITOR_LEN)
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100241#if defined(CONFIG_SCPU)
Stefan Roese1bbf5ea2007-01-30 15:01:49 +0100242/* no redundant environment on SCPU */
243#define CFG_ENV_SECT_SIZE 0x20000 /* size of one complete sector */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100244#define CFG_ENV_SIZE 0x4000 /* Total Size of Environment Sector */
245#else
Stefan Roese1bbf5ea2007-01-30 15:01:49 +0100246#define CFG_ENV_SECT_SIZE 0x1000 /* size of one complete sector */
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200247#define CFG_ENV_SIZE 0x1000 /* Total Size of Environment Sector */
248
249/* Address and size of Redundant Environment Sector */
250#define CFG_ENV_ADDR_REDUND (CFG_ENV_ADDR + CFG_ENV_SECT_SIZE)
251#define CFG_ENV_SIZE_REDUND (CFG_ENV_SIZE)
Stefan Roese1bbf5ea2007-01-30 15:01:49 +0100252#endif
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200253
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100254#if !defined(CONFIG_SCPU)
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200255/*
256 * NAND-FLASH stuff
257 */
258#define CFG_MAX_NAND_DEVICE 1
259#define NAND_MAX_CHIPS 1
260#define CFG_NAND_BASE 0x51000000 /* NAND FLASH Base Address */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100261#endif
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200262
263/*
264 * GPIO settings
265 */
266
267/* FPGA program pin configuration */
268#define CFG_GPIO_PRG 12 /* FPGA program pin (cpu output)*/
269#define CFG_GPIO_CLK 10 /* FPGA clk pin (cpu output) */
270#define CFG_GPIO_DATA 14 /* FPGA data pin (cpu output) */
271#define CFG_GPIO_INIT 13 /* FPGA init pin (cpu input) */
272#define CFG_GPIO_DONE 11 /* FPGA done pin (cpu input) */
273
274/* other GPIO's */
275#define CFG_GPIO_RESTORE_INT 0
276#define CFG_GPIO_RESTART_INT 1
277#define CFG_GPIO_SYS_RUNNING 2
278#define CFG_GPIO_PCI_INTA 3
279#define CFG_GPIO_PCI_INTB 4
280#define CFG_GPIO_I2C_SCL 6
281#define CFG_GPIO_I2C_SDA 7
282#define CFG_GPIO_FPGA_RESET 9
283#define CFG_GPIO_CLK_33M 15
284
285/*
286 * I2C stuff
287 */
288
289/* enable I2C and select the hardware/software driver */
290#undef CONFIG_HARD_I2C /* I2C with hardware support */
291#define CONFIG_SOFT_I2C 1 /* I2C bit-banged */
292
293#define CFG_I2C_SPEED 83000 /* 83 kHz is supposed to work */
294#define CFG_I2C_SLAVE 0xFE
295
296/*
297 * Software (bit-bang) I2C driver configuration
298 */
299#define PB_SCL (1 << CFG_GPIO_I2C_SCL)
300#define PB_SDA (1 << CFG_GPIO_I2C_SDA)
301
302#define I2C_INIT GPIO_OUTPUT_ENABLE(CFG_GPIO_I2C_SCL)
303#define I2C_ACTIVE GPIO_OUTPUT_ENABLE(CFG_GPIO_I2C_SDA)
304#define I2C_TRISTATE GPIO_OUTPUT_DISABLE(CFG_GPIO_I2C_SDA)
305#define I2C_READ ((*IXP425_GPIO_GPINR & PB_SDA) != 0)
306#define I2C_SDA(bit) if (bit) GPIO_OUTPUT_SET(CFG_GPIO_I2C_SDA); \
307 else GPIO_OUTPUT_CLEAR(CFG_GPIO_I2C_SDA)
308#define I2C_SCL(bit) if (bit) GPIO_OUTPUT_SET(CFG_GPIO_I2C_SCL); \
309 else GPIO_OUTPUT_CLEAR(CFG_GPIO_I2C_SCL)
310#define I2C_DELAY udelay(3) /* 1/4 I2C clock duration */
311
312/*
313 * I2C RTC
314 */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100315#if 0 /* test-only */
316#define CONFIG_RTC_DS1340 1
317#define CFG_I2C_RTC_ADDR 0x68
318#else
319/* M41T11 Serial Access Timekeeper(R) SRAM */
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200320#define CONFIG_RTC_M41T11 1
321#define CFG_I2C_RTC_ADDR 0x68
322#define CFG_M41T11_BASE_YEAR 1900 /* play along with the linux driver */
Stefan Roese9d8d5a52007-01-18 16:05:47 +0100323#endif
Wolfgang Denkba94a1b2006-05-30 15:56:48 +0200324
325/*
326 * Spartan3 FPGA configuration support
327 */
328#define CFG_FPGA_MAX_SIZE 700*1024 /* 700kByte for XC3S500E */
329
330#define CFG_FPGA_PRG (1 << CFG_GPIO_PRG) /* FPGA program pin (cpu output)*/
331#define CFG_FPGA_CLK (1 << CFG_GPIO_CLK) /* FPGA clk pin (cpu output) */
332#define CFG_FPGA_DATA (1 << CFG_GPIO_DATA) /* FPGA data pin (cpu output) */
333#define CFG_FPGA_INIT (1 << CFG_GPIO_INIT) /* FPGA init pin (cpu input) */
334#define CFG_FPGA_DONE (1 << CFG_GPIO_DONE) /* FPGA done pin (cpu input) */
335
336/*
337 * Cache Configuration
338 */
339#define CFG_CACHELINE_SIZE 32
340
341#endif /* __CONFIG_H */