* Update CPC45 board configuration.
[platform/kernel/u-boot.git] / include / configs / inka4x0.h
1 /*
2  * (C) Copyright 2003-2004
3  * Wolfgang Denk, DENX Software Engineering, wd@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 #ifndef __CONFIG_H
25 #define __CONFIG_H
26
27 /*
28  * High Level Configuration Options
29  * (easy to change)
30  */
31
32 #define CONFIG_MPC5xxx          1       /* This is an MPC5xxx CPU */
33 #define CONFIG_MPC5200          1       /* (more precisely an MPC5200 CPU) */
34 #define CONFIG_INKA4X0          1       /* INKA4x0 board */
35
36 #define CFG_MPC5XXX_CLKIN       33000000 /* ... running at 33.000000MHz */
37
38 #define BOOTFLAG_COLD           0x01    /* Normal Power-On: Boot from FLASH  */
39 #define BOOTFLAG_WARM           0x02    /* Software reboot           */
40
41 #define CFG_CACHELINE_SIZE      32      /* For MPC5xxx CPUs */
42 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
43 #  define CFG_CACHELINE_SHIFT   5       /* log base 2 of the above value */
44 #endif
45
46 /*
47  * Serial console configuration
48  */
49 #define CONFIG_PSC_CONSOLE      1       /* console is on PSC1 */
50 #define CONFIG_BAUDRATE         115200  /* ... at 115200 bps */
51 #define CFG_BAUDRATE_TABLE      { 9600, 19200, 38400, 57600, 115200, 230400 }
52
53 /*
54  * PCI Mapping:
55  * 0x40000000 - 0x4fffffff - PCI Memory
56  * 0x50000000 - 0x50ffffff - PCI IO Space
57  */
58 #define CONFIG_PCI              1
59 #define CONFIG_PCI_PNP          1
60 #define CONFIG_PCI_SCAN_SHOW    1
61
62 #define CONFIG_PCI_MEM_BUS      0x40000000
63 #define CONFIG_PCI_MEM_PHYS     CONFIG_PCI_MEM_BUS
64 #define CONFIG_PCI_MEM_SIZE     0x10000000
65
66 #define CONFIG_PCI_IO_BUS       0x50000000
67 #define CONFIG_PCI_IO_PHYS      CONFIG_PCI_IO_BUS
68 #define CONFIG_PCI_IO_SIZE      0x01000000
69
70 #define CFG_XLB_PIPELINING      1
71
72 /* Partitions */
73 #define CONFIG_MAC_PARTITION
74 #define CONFIG_DOS_PARTITION
75 #define CONFIG_ISO_PARTITION
76
77 /*
78  * Supported commands
79  */
80 #define CONFIG_COMMANDS        (CONFIG_CMD_DFL  | \
81                                 CFG_CMD_PCI     | \
82                                 CFG_CMD_USB     )
83
84 /* this must be included AFTER the definition of CONFIG_COMMANDS (if any) */
85 #include <cmd_confdefs.h>
86
87 #if (TEXT_BASE == 0xFFE00000)           /* Boot low */
88 #   define CFG_LOWBOOT          1
89 #endif
90
91 /*
92  * Autobooting
93  */
94 #define CONFIG_BOOTDELAY        5       /* autoboot after 5 seconds */
95
96 #define CONFIG_PREBOOT  "echo;" \
97         "echo Type \"run flash_nfs\" to mount root filesystem over NFS;" \
98         "echo"
99
100 #undef  CONFIG_BOOTARGS
101
102 #define CONFIG_EXTRA_ENV_SETTINGS                                       \
103         "netdev=eth0\0"                                                 \
104         "nfsargs=setenv bootargs root=/dev/nfs rw "                     \
105                 "nfsroot=$(serverip):$(rootpath)\0"                     \
106         "ramargs=setenv bootargs root=/dev/ram rw\0"                    \
107         "addip=setenv bootargs $(bootargs) "                            \
108                 "ip=$(ipaddr):$(serverip):$(gatewayip):$(netmask)"      \
109                 ":$(hostname):$(netdev):off panic=1\0"                  \
110         "flash_nfs=run nfsargs addip;"                                  \
111                 "bootm $(kernel_addr)\0"                                \
112         "net_nfs=tftp 200000 $(bootfile);run nfsargs addip;bootm\0"     \
113         "rootpath=/opt/eldk/ppc_82xx\0"                                 \
114         ""
115
116 #define CONFIG_BOOTCOMMAND      "run net_nfs"
117
118 /*
119  * IPB Bus clocking configuration.
120  */
121 #define CFG_IPBSPEED_133                /* define for 133MHz speed */
122
123 /*
124  * Flash configuration
125  */
126 #define CFG_FLASH_BASE          0xFFE00000
127
128 #define CFG_FLASH_SIZE          0x00200000 /* 2 MByte */
129 #define CFG_MAX_FLASH_SECT      35      /* max num of sects on one chip */
130
131 #define CFG_ENV_ADDR            (CFG_FLASH_BASE + 0x4000) /* second sector */
132 #define CFG_MAX_FLASH_BANKS     1       /* max num of flash banks
133                                            (= chip selects) */
134 #define CFG_FLASH_ERASE_TOUT    240000  /* Flash Erase Timeout (in ms)  */
135 #define CFG_FLASH_WRITE_TOUT    500     /* Flash Write Timeout (in ms)  */
136
137 /*
138  * Environment settings
139  */
140 #define CFG_ENV_IS_IN_FLASH     1
141 #define CFG_ENV_SIZE            0x2000
142 #define CFG_ENV_SECT_SIZE       0x2000
143 #define CONFIG_ENV_OVERWRITE    1
144
145 /*
146  * Memory map
147  */
148 #define CFG_MBAR                0xF0000000
149 #define CFG_SDRAM_BASE          0x00000000
150 #define CFG_DEFAULT_MBAR        0x80000000
151
152 #define CONFIG_MPC5200_DDR
153
154 /* Use ON-Chip SRAM until RAM will be available */
155 #define CFG_INIT_RAM_ADDR       MPC5XXX_SRAM
156 #ifdef CONFIG_POST
157 /* preserve space for the post_word at end of on-chip SRAM */
158 #define CFG_INIT_RAM_END        MPC5XXX_SRAM_POST_SIZE
159 #else
160 #define CFG_INIT_RAM_END        MPC5XXX_SRAM_SIZE
161 #endif
162
163
164 #define CFG_GBL_DATA_SIZE       128     /* size in bytes reserved for initial data */
165 #define CFG_GBL_DATA_OFFSET     (CFG_INIT_RAM_END - CFG_GBL_DATA_SIZE)
166 #define CFG_INIT_SP_OFFSET      CFG_GBL_DATA_OFFSET
167
168 #define CFG_MONITOR_BASE    TEXT_BASE
169 #if (CFG_MONITOR_BASE < CFG_FLASH_BASE)
170 #   define CFG_RAMBOOT          1
171 #endif
172
173 #define CFG_MONITOR_LEN         (192 << 10)     /* Reserve 192 kB for Monitor   */
174 #define CFG_MALLOC_LEN          (128 << 10)     /* Reserve 128 kB for malloc()  */
175 #define CFG_BOOTMAPSZ           (8 << 20)       /* Initial Memory map for Linux */
176
177 /*
178  * Ethernet configuration
179  */
180 #define CONFIG_MPC5xxx_FEC      1
181 /*
182  * Define CONFIG_FEC_10MBIT to force FEC at 10Mb
183  */
184 /* #define CONFIG_FEC_10MBIT 1 */
185 #define CONFIG_PHY_ADDR         0x00
186
187 /*
188  * GPIO configuration
189  *
190  * use pin gpio_wkup_6 as second SDRAM chip select (mem_cs1):
191  *      Bit 0 (mask: 0x80000000): 1
192  * use ALT CAN position: Bits 2-3 (mask: 0x30000000):
193  *      00 -> No Alternatives, I2C1 is used for onboard EEPROM
194  *      01 -> CAN1 on I2C1, CAN2 on Tmr0/1 do not use on TQM5200 with onboard
195  *            EEPROM
196  * use PSC1 as UART: Bits 28-31 (mask: 0x00000007): 0100
197  * use PSC6_1 and PSC6_3 as GPIO: Bits 9:11 (mask: 0x07000000):
198  *      011 -> PSC6 could not be used as UART or CODEC. IrDA still possible.
199  * GPIO on PSC6_3 is used in post_hotkeys_pressed() to enable extended POST
200  * tests.
201  */
202 #if defined (CONFIG_MINIFAP)
203 #define CFG_GPS_PORT_CONFIG     0x93000004
204 #else
205 #define CFG_GPS_PORT_CONFIG     0x81001004
206 #endif
207
208 /*
209  * RTC configuration
210  */
211 #define CONFIG_RTC_MPC5200      1       /* use internal MPC5200 RTC */
212
213 /*
214  * Miscellaneous configurable options
215  */
216 #define CFG_LONGHELP                    /* undef to save memory     */
217 #define CFG_PROMPT              "=> "   /* Monitor Command Prompt   */
218 #if (CONFIG_COMMANDS & CFG_CMD_KGDB)
219 #define CFG_CBSIZE              1024    /* Console I/O Buffer Size  */
220 #else
221 #define CFG_CBSIZE              256     /* Console I/O Buffer Size  */
222 #endif
223 #define CFG_PBSIZE (CFG_CBSIZE+sizeof(CFG_PROMPT)+16) /* Print Buffer Size */
224 #define CFG_MAXARGS             16      /* max number of command args   */
225 #define CFG_BARGSIZE            CFG_CBSIZE      /* Boot Argument Buffer Size    */
226
227 /* Enable an alternate, more extensive memory test */
228 #define CFG_ALT_MEMTEST
229
230 #define CFG_MEMTEST_START       0x00100000      /* memtest works on */
231 #define CFG_MEMTEST_END         0x00f00000      /* 1 ... 15 MB in DRAM  */
232
233 #define CFG_LOAD_ADDR           0x100000        /* default load address */
234
235 #define CFG_HZ                  1000    /* decrementer freq: 1 ms ticks */
236
237 /*
238  * Enable loopw commando. This has only affect, if CFG_CMD_MEM is defined,
239  * which is normally part of the default commands (CFV_CMD_DFL)
240  */
241 #define CONFIG_LOOPW
242
243 /*
244  * Various low-level settings
245  */
246 #if defined(CONFIG_MPC5200)
247 #define CFG_HID0_INIT           HID0_ICE | HID0_ICFI
248 #define CFG_HID0_FINAL          HID0_ICE
249 #else
250 #define CFG_HID0_INIT           0
251 #define CFG_HID0_FINAL          0
252 #endif
253
254 #define CFG_BOOTCS_START        CFG_FLASH_BASE
255 #define CFG_BOOTCS_SIZE         CFG_FLASH_SIZE
256 #define CFG_BOOTCS_CFG          0x00087800 /* for pci_clk  = 66 MHz */
257 #define CFG_CS0_START           CFG_FLASH_BASE
258 #define CFG_CS0_SIZE            CFG_FLASH_SIZE
259
260 #define CFG_CS_BURST            0x00000000
261 #define CFG_CS_DEADCYCLE        0x33333333
262
263 /*-----------------------------------------------------------------------
264  * USB stuff
265  *-----------------------------------------------------------------------
266  */
267 #define CONFIG_USB_OHCI
268 #define CONFIG_USB_CLOCK        0x00015555
269 #define CONFIG_USB_CONFIG       0x00001000
270
271 #endif /* __CONFIG_H */