include/configs/[p-z]* + misc: Cleanup BOOTP and lingering CFG_CMD_*.
[platform/kernel/u-boot.git] / include / configs / pcs440ep.h
1 /*
2  * (C) Copyright 2006
3  * Stefan Roese, DENX Software Engineering, sr@denx.de.
4  *
5  * See file CREDITS for list of people who contributed to this
6  * project.
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License as
10  * published by the Free Software Foundation; either version 2 of
11  * the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21  * MA 02111-1307 USA
22  */
23
24 /************************************************************************
25  * pcs440ep.h - configuration for PCS440EP board
26  ***********************************************************************/
27 #ifndef __CONFIG_H
28 #define __CONFIG_H
29
30 /*-----------------------------------------------------------------------
31  * High Level Configuration Options
32  *----------------------------------------------------------------------*/
33 #define CONFIG_PCS440EP         1       /* Board is PCS440EP            */
34 #define CONFIG_440EP            1       /* Specific PPC440EP support    */
35 #define CONFIG_440              1       /* ... PPC440 family            */
36 #define CONFIG_4xx              1       /* ... PPC4xx family            */
37 #define CONFIG_SYS_CLK_FREQ     33333333    /* external freq to pll     */
38
39 #define CONFIG_BOARD_EARLY_INIT_F 1     /* Call board_early_init_f      */
40 #define CONFIG_MISC_INIT_R      1       /* call misc_init_r()           */
41
42 /*-----------------------------------------------------------------------
43  * Base addresses -- Note these are effective addresses where the
44  * actual resources get mapped (not physical addresses)
45  *----------------------------------------------------------------------*/
46 #define CFG_MONITOR_LEN         (384 * 1024)    /* Reserve 384 kB for Monitor   */
47 #define CFG_MALLOC_LEN          (256 * 1024)    /* Reserve 256 kB for malloc()  */
48 #define CFG_MONITOR_BASE        (-CFG_MONITOR_LEN)
49 #define CFG_SDRAM_BASE          0x00000000          /* _must_ be 0      */
50 #define CFG_FLASH_BASE          0xfff00000          /* start of FLASH   */
51 #define CFG_PCI_MEMBASE         0xa0000000          /* mapped pci memory*/
52 #define CFG_PCI_MEMBASE1        CFG_PCI_MEMBASE  + 0x10000000
53 #define CFG_PCI_MEMBASE2        CFG_PCI_MEMBASE1 + 0x10000000
54 #define CFG_PCI_MEMBASE3        CFG_PCI_MEMBASE2 + 0x10000000
55
56 /*Don't change either of these*/
57 #define CFG_PERIPHERAL_BASE     0xef600000          /* internal peripherals*/
58 #define CFG_PCI_BASE            0xe0000000          /* internal PCI regs*/
59 /*Don't change either of these*/
60
61 #define CFG_USB_DEVICE          0x50000000
62 #define CFG_BOOT_BASE_ADDR      0xf0000000
63
64 /*-----------------------------------------------------------------------
65  * Initial RAM & stack pointer (placed in SDRAM)
66  *----------------------------------------------------------------------*/
67 #define CFG_INIT_RAM_DCACHE     1               /* d-cache as init ram  */
68 #define CFG_INIT_RAM_ADDR       0x70000000              /* DCache       */
69 #define CFG_INIT_RAM_END        (8 << 10)
70 #define CFG_GBL_DATA_SIZE       256                     /* num bytes initial data*/
71 #define CFG_GBL_DATA_OFFSET     (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
72 #define CFG_INIT_SP_OFFSET      CFG_GBL_DATA_OFFSET
73
74 /*-----------------------------------------------------------------------
75  * Serial Port
76  *----------------------------------------------------------------------*/
77 #undef CFG_EXT_SERIAL_CLOCK             /* no external clk used         */
78 #define CONFIG_BAUDRATE         115200
79 #define CONFIG_SERIAL_MULTI     1
80 /*define this if you want console on UART1*/
81 #undef CONFIG_UART1_CONSOLE
82
83 #define CFG_BAUDRATE_TABLE  \
84     {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200}
85
86 /*-----------------------------------------------------------------------
87  * Environment
88  *----------------------------------------------------------------------*/
89 #define CFG_ENV_IS_IN_FLASH     1       /* use FLASH for environment vars       */
90
91 /*-----------------------------------------------------------------------
92  * FLASH related
93  *----------------------------------------------------------------------*/
94 #define CFG_MAX_FLASH_BANKS     2       /* max number of memory banks           */
95 #define CFG_MAX_FLASH_SECT      256     /* max number of sectors on one chip    */
96
97 #define CFG_FLASH_ERASE_TOUT    120000  /* Timeout for Flash Erase (in ms)      */
98 #define CFG_FLASH_WRITE_TOUT    500     /* Timeout for Flash Write (in ms)      */
99
100 #define CFG_FLASH_WORD_SIZE     unsigned char   /* flash word size (width)      */
101 #define CFG_FLASH_ADDR0         0x5555  /* 1st address for flash config cycles  */
102 #define CFG_FLASH_ADDR1         0x2AAA  /* 2nd address for flash config cycles  */
103
104 #define CFG_FLASH_EMPTY_INFO            /* print 'E' for empty sector on flinfo */
105
106 #ifdef CFG_ENV_IS_IN_FLASH
107 #define CFG_ENV_SECT_SIZE       0x10000 /* size of one complete sector          */
108 #define CFG_ENV_ADDR            (CFG_MONITOR_BASE-CFG_ENV_SECT_SIZE)
109 #define CFG_ENV_SIZE            0x2000  /* Total Size of Environment Sector     */
110
111 /* Address and size of Redundant Environment Sector     */
112 #define CFG_ENV_ADDR_REDUND     (CFG_ENV_ADDR-CFG_ENV_SECT_SIZE)
113 #define CFG_ENV_SIZE_REDUND     (CFG_ENV_SIZE)
114 #endif /* CFG_ENV_IS_IN_FLASH */
115
116 /*-----------------------------------------------------------------------
117  * DDR SDRAM
118  *----------------------------------------------------------------------*/
119 #define CONFIG_SPD_EEPROM               /* Use SPD EEPROM for setup             */
120 #undef CONFIG_DDR_ECC                   /* don't use ECC                        */
121 #define SPD_EEPROM_ADDRESS      {0x50}
122
123 /*-----------------------------------------------------------------------
124  * I2C
125  *----------------------------------------------------------------------*/
126 #define CONFIG_HARD_I2C         1           /* I2C with hardware support        */
127 #undef  CONFIG_SOFT_I2C                     /* I2C bit-banged           */
128 #define CFG_I2C_SPEED           100000  /* I2C speed and slave address  */
129 #define CFG_I2C_SLAVE           0x7F
130
131 #define CFG_I2C_EEPROM_ADDR     (0xa4>>1)
132 #define CFG_I2C_EEPROM_ADDR_LEN 1
133 #define CFG_EEPROM_PAGE_WRITE_ENABLE
134 #define CFG_EEPROM_PAGE_WRITE_BITS 3
135 #define CFG_EEPROM_PAGE_WRITE_DELAY_MS 10
136
137 #define CONFIG_PREBOOT  "echo;" \
138         "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
139         "echo"
140
141 #undef  CONFIG_BOOTARGS
142
143 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
144         "netdev=eth0\0"                                                 \
145         "hostname=pcs440ep\0"                                           \
146         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
147                 "nfsroot=${serverip}:${rootpath}\0"                     \
148         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
149         "addip=setenv bootargs ${bootargs} "                            \
150                 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}"      \
151                 ":${hostname}:${netdev}:off panic=1\0"                  \
152         "addtty=setenv bootargs ${bootargs} console=ttyS0,${baudrate}\0"\
153         "flash_nfs=run nfsargs addip addtty;"                           \
154                 "bootm ${kernel_addr}\0"                                \
155         "flash_self=run ramargs addip addtty;"                          \
156                 "bootm ${kernel_addr} ${ramdisk_addr}\0"                \
157         "net_nfs=tftp 200000 ${bootfile};run nfsargs addip addtty;"     \
158                 "bootm\0"                                               \
159         "rootpath=/opt/eldk/ppc_4xx\0"                                  \
160         "bootfile=/tftpboot/pcs440ep/uImage\0"                          \
161         "kernel_addr=FFF00000\0"                                        \
162         "ramdisk_addr=FFF00000\0"                                       \
163         "load=tftp 100000 /tftpboot/pcs440ep/u-boot.bin\0"              \
164         "update=protect off FFFA0000 FFFFFFFF;era FFFA0000 FFFFFFFF;"   \
165                 "cp.b 100000 FFFA0000 60000\0"                          \
166         "upd=run load;run update\0"                                     \
167         ""
168 #define CONFIG_BOOTCOMMAND      "run flash_self"
169
170 #if 0
171 #define CONFIG_BOOTDELAY        -1      /* autoboot disabled            */
172 #else
173 #define CONFIG_BOOTDELAY        5       /* autoboot after 5 seconds     */
174 #endif
175
176 #define CONFIG_BAUDRATE         115200
177
178 #define CONFIG_LOADS_ECHO       1       /* echo on for serial download  */
179 #define CFG_LOADS_BAUD_CHANGE   1       /* allow baudrate change        */
180
181 #define CONFIG_MII              1       /* MII PHY management           */
182 #define CONFIG_NET_MULTI        1       /* required for netconsole      */
183 #define CONFIG_HAS_ETH1         1       /* add support for "eth1addr"   */
184 #define CONFIG_PHY_ADDR         1       /* PHY address, See schematics  */
185 #define CONFIG_PHY1_ADDR        2
186
187 #define CFG_RX_ETH_BUFFER       32      /* Number of ethernet rx buffers & descriptors */
188
189 #define CONFIG_NETCONSOLE               /* include NetConsole support   */
190
191 /* Partitions */
192 #define CONFIG_MAC_PARTITION
193 #define CONFIG_DOS_PARTITION
194 #define CONFIG_ISO_PARTITION
195
196 #ifdef CONFIG_440EP
197 /* USB */
198 #define CONFIG_USB_OHCI
199 #define CONFIG_USB_STORAGE
200
201 /*Comment this out to enable USB 1.1 device*/
202 #define USB_2_0_DEVICE
203 #endif /*CONFIG_440EP*/
204
205 #ifdef DEBUG
206 #define CONFIG_PANIC_HANG
207 #else
208 #define CONFIG_HW_WATCHDOG                      /* watchdog */
209 #endif
210
211
212 /*
213  * BOOTP options
214  */
215 #define CONFIG_BOOTP_BOOTFILESIZE
216 #define CONFIG_BOOTP_BOOTPATH
217 #define CONFIG_BOOTP_GATEWAY
218 #define CONFIG_BOOTP_HOSTNAME
219
220
221 /*
222  * Command line configuration.
223  */
224 #include <config_cmd_default.h>
225 #define CONFIG_CMD_ASKENV
226 #define CONFIG_CMD_DHCP
227 #define CONFIG_CMD_DIAG
228 #define CONFIG_CMD_EEPROM
229 #define CONFIG_CMD_ELF
230 #define CONFIG_CMD_I2C
231 #define CONFIG_CMD_IRQ
232 #define CONFIG_CMD_MII
233 #define CONFIG_CMD_NET
234 #define CONFIG_CMD_NFS
235 #define CONFIG_CMD_PCI
236 #define CONFIG_CMD_PING
237 #define CONFIG_CMD_REGINFO
238 #define CONFIG_CMD_SDRAM
239 #define CONFIG_CMD_EXT2
240 #define CONFIG_CMD_FAT
241 #define CONFIG_CMD_USB
242
243
244 #define CONFIG_SUPPORT_VFAT
245
246 /*
247  * Miscellaneous configurable options
248  */
249 #define CFG_LONGHELP                    /* undef to save memory         */
250 #define CFG_PROMPT              "=> "   /* Monitor Command Prompt       */
251 #if defined(CONFIG_CMD_KGDB)
252 #define CFG_CBSIZE              1024    /* Console I/O Buffer Size      */
253 #else
254 #define CFG_CBSIZE              256     /* Console I/O Buffer Size      */
255 #endif
256 #define CFG_PBSIZE              (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
257 #define CFG_MAXARGS             16      /* max number of command args   */
258 #define CFG_BARGSIZE            CFG_CBSIZE /* Boot Argument Buffer Size */
259
260 #define CFG_MEMTEST_START       0x0400000 /* memtest works on           */
261 #define CFG_MEMTEST_END         0x0C00000 /* 4 ... 12 MB in DRAM        */
262
263 #define CFG_LOAD_ADDR           0x100000        /* default load address */
264 #define CFG_EXTBDINFO           1       /* To use extended board_into (bd_t) */
265 #define CONFIG_LYNXKDI          1       /* support kdi files            */
266
267 #define CFG_HZ                  1000    /* decrementer freq: 1 ms ticks */
268
269 /*-----------------------------------------------------------------------
270  * PCI stuff
271  *-----------------------------------------------------------------------
272  */
273 /* General PCI */
274 #define CONFIG_PCI                      /* include pci support          */
275 #undef  CONFIG_PCI_PNP                  /* do (not) pci plug-and-play   */
276 #define CONFIG_PCI_SCAN_SHOW            /* show pci devices on startup  */
277 #define CFG_PCI_TARGBASE        0x80000000 /* PCIaddr mapped to CFG_PCI_MEMBASE*/
278
279 /* Board-specific PCI */
280 #define CFG_PCI_TARGET_INIT
281 #define CFG_PCI_MASTER_INIT
282
283 #define CFG_PCI_SUBSYS_VENDORID 0x10e8  /* AMCC */
284 #define CFG_PCI_SUBSYS_ID       0xcafe  /* Whatever */
285
286 /*
287  * For booting Linux, the board info and command line data
288  * have to be in the first 8 MB of memory, since this is
289  * the maximum mapped by the Linux kernel during initialization.
290  */
291 #define CFG_BOOTMAPSZ           (8 << 20)       /* Initial Memory map for Linux */
292
293 /*-----------------------------------------------------------------------
294  * External Bus Controller (EBC) Setup
295  *----------------------------------------------------------------------*/
296 #define FLASH_BASE0_PRELIM      0xFFF00000      /* FLASH bank #0        */
297 #define FLASH_BASE1_PRELIM      0xFFF80000      /* FLASH bank #1        */
298
299 #define CFG_FLASH               FLASH_BASE0_PRELIM
300 #define CFG_SRAM                0xF1000000
301 #define CFG_FPGA                0xF2000000
302 #define CFG_CF1                 0xF0000000
303 #define CFG_CF2                 0xF0100000
304
305 /* Memory Bank 0 (Flash Bank 0, NOR-FLASH) initialization                       */
306 #define CFG_EBC_PB0AP           0x02010000      /* TWT=4,OEN=1                  */
307 #define CFG_EBC_PB0CR           (CFG_FLASH | 0x18000) /* BS=1MB,BU=R/W,BW=8bit  */
308
309 /* Memory Bank 1 (SRAM) initialization                                          */
310 #define CFG_EBC_PB1AP           0x01810040      /* TWT=3,OEN=1,BEM=1            */
311 #define CFG_EBC_PB1CR           (CFG_SRAM | 0x5A000) /* BS=4MB,BU=R/W,BW=16bit  */
312
313 /* Memory Bank 2 (FPGA) initialization                                          */
314 #define CFG_EBC_PB2AP           0x01010440      /* TWT=2,OEN=1,TH=2,BEM=1       */
315 #define CFG_EBC_PB2CR           (CFG_FPGA | 0x5A000) /* BS=4MB,BU=R/W,BW=16bit  */
316
317 /* Memory Bank 3 (CompactFlash) initialization                                  */
318 #define CFG_EBC_PB3AP           0x080BD400
319 #define CFG_EBC_PB3CR           (CFG_CF1 | 0x1A000) /* BS=1MB,BU=R/W,BW=16bit   */
320
321 /* Memory Bank 4 (CompactFlash) initialization                                  */
322 #define CFG_EBC_PB4AP           0x080BD400
323 #define CFG_EBC_PB4CR           (CFG_CF2 | 0x1A000) /* BS=1MB,BU=R/W,BW=16bit   */
324
325 /*-----------------------------------------------------------------------
326  * PPC440 GPIO Configuration
327  */
328 #define CFG_440_GPIO_TABLE { /*   Out                  GPIO     Alternate1      Alternate2   Alternate3 */ \
329 {                                                                                       \
330 /* GPIO Core 0 */                                                                       \
331 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO0    EBC_ADDR(7)     DMA_REQ(2)      */ \
332 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO1    EBC_ADDR(6)     DMA_ACK(2)      */      \
333 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO2    EBC_ADDR(5)     DMA_EOT/TC(2)   */      \
334 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO3    EBC_ADDR(4)     DMA_REQ(3)      */      \
335 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO4    EBC_ADDR(3)     DMA_ACK(3)      */      \
336 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO5    EBC_ADDR(2)     DMA_EOT/TC(3)   */      \
337 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO6    EBC_CS_N(1)                     */      \
338 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO7    EBC_CS_N(2)                     */      \
339 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO8    EBC_CS_N(3)                     */      \
340 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO9    EBC_CS_N(4)                     */      \
341 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO10   EBC_CS_N(5)                     */      \
342 {GPIO0_BASE, GPIO_OUT, GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO11   EBC_BUS_ERR                     */      \
343 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO12   ZII_p0Rxd(0)                    */      \
344 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO13   ZII_p0Rxd(1)                    */      \
345 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO14   ZII_p0Rxd(2)                    */      \
346 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO15   ZII_p0Rxd(3)                    */      \
347 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO16   ZII_p0Txd(0)                    */      \
348 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO17   ZII_p0Txd(1)                    */      \
349 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO18   ZII_p0Txd(2)                    */      \
350 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO19   ZII_p0Txd(3)                    */      \
351 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO20   ZII_p0Rx_er                     */      \
352 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO21   ZII_p0Rx_dv                     */      \
353 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO22   ZII_p0RxCrs                     */      \
354 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO23   ZII_p0Tx_er                     */      \
355 {GPIO0_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO24   ZII_p0Tx_en                     */      \
356 {GPIO0_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO25   ZII_p0Col                       */      \
357 {GPIO0_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO26                   USB2D_RXVALID   */      \
358 {GPIO0_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO27   EXT_EBC_REQ     USB2D_RXERROR   */      \
359 {GPIO0_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO28                   USB2D_TXVALID   */      \
360 {GPIO0_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO29   EBC_EXT_HDLA    USB2D_PAD_SUSPNDM */    \
361 {GPIO0_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO30   EBC_EXT_ACK     USB2D_XCVRSELECT*/      \
362 {GPIO0_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO31   EBC_EXR_BUSREQ  USB2D_TERMSELECT*/      \
363 },                                                                                      \
364 {                                                                                       \
365 /* GPIO Core 1 */                                                                       \
366 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO32   USB2D_OPMODE0                   */      \
367 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO33   USB2D_OPMODE1                   */      \
368 {GPIO1_BASE, GPIO_OUT, GPIO_ALT3, GPIO_OUT_NO_CHG}, /* GPIO34   UART0_DCD_N     UART1_DSR_CTS_N UART2_SOUT*/ \
369 {GPIO1_BASE, GPIO_IN,  GPIO_ALT3, GPIO_OUT_NO_CHG}, /* GPIO35   UART0_8PIN_DSR_N UART1_RTS_DTR_N UART2_SIN*/ \
370 {GPIO1_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO36   UART0_8PIN_CTS_N                UART3_SIN*/ \
371 {GPIO1_BASE, GPIO_OUT, GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO37   UART0_RTS_N                     */      \
372 {GPIO1_BASE, GPIO_OUT, GPIO_ALT2, GPIO_OUT_NO_CHG}, /* GPIO38   UART0_DTR_N     UART1_SOUT      */      \
373 {GPIO1_BASE, GPIO_IN,  GPIO_ALT2, GPIO_OUT_NO_CHG}, /* GPIO39   UART0_RI_N      UART1_SIN       */      \
374 {GPIO1_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO40   UIC_IRQ(0)                      */      \
375 {GPIO1_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO41   UIC_IRQ(1)                      */      \
376 {GPIO1_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO42   UIC_IRQ(2)                      */      \
377 {GPIO1_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO43   UIC_IRQ(3)                      */      \
378 {GPIO1_BASE, GPIO_IN,  GPIO_ALT1, GPIO_OUT_NO_CHG}, /* GPIO44   UIC_IRQ(4)      DMA_ACK(1)      */      \
379 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO45   UIC_IRQ(6)      DMA_EOT/TC(1)   */      \
380 {GPIO1_BASE, GPIO_BI,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO46   UIC_IRQ(7)      DMA_REQ(0)      */      \
381 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO47   UIC_IRQ(8)      DMA_ACK(0)      */      \
382 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO48   UIC_IRQ(9)      DMA_EOT/TC(0)   */      \
383 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO49  Unselect via TraceSelect Bit     */      \
384 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO50  Unselect via TraceSelect Bit     */      \
385 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO51  Unselect via TraceSelect Bit     */      \
386 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO52  Unselect via TraceSelect Bit     */      \
387 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO53  Unselect via TraceSelect Bit     */      \
388 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO54  Unselect via TraceSelect Bit     */      \
389 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO55  Unselect via TraceSelect Bit     */      \
390 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO56  Unselect via TraceSelect Bit     */      \
391 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO57  Unselect via TraceSelect Bit     */      \
392 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO58  Unselect via TraceSelect Bit     */      \
393 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO59  Unselect via TraceSelect Bit     */      \
394 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO60  Unselect via TraceSelect Bit     */      \
395 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO61  Unselect via TraceSelect Bit     */      \
396 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO62  Unselect via TraceSelect Bit     */      \
397 {GPIO1_BASE, GPIO_IN,  GPIO_SEL, GPIO_OUT_NO_CHG},  /* GPIO63  Unselect via TraceSelect Bit     */      \
398 }                                                                                       \
399 }
400
401 /*-----------------------------------------------------------------------
402  * Cache Configuration
403  */
404 #define CFG_DCACHE_SIZE         (32<<10) /* For AMCC 440 CPUs                   */
405 #define CFG_CACHELINE_SIZE      32      /* ...                  */
406 #if defined(CONFIG_CMD_KGDB)
407 #define CFG_CACHELINE_SHIFT     5       /* log base 2 of the above value        */
408 #endif
409
410 /*
411  * Internal Definitions
412  *
413  * Boot Flags
414  */
415 #define BOOTFLAG_COLD   0x01            /* Normal Power-On: Boot from FLASH     */
416 #define BOOTFLAG_WARM   0x02            /* Software reboot                      */
417
418 #if defined(CONFIG_CMD_KGDB)
419 #define CONFIG_KGDB_BAUDRATE    230400  /* speed to run kgdb serial port */
420 #define CONFIG_KGDB_SER_INDEX   2       /* which serial port to use */
421 #endif
422
423 #endif  /* __CONFIG_H */