]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/MVBC_P.h
Rename CONFIG_SYS_INIT_RAM_END into CONFIG_SYS_INIT_RAM_SIZE
[people/ms/u-boot.git] / include / configs / MVBC_P.h
1 /*
2 * (C) Copyright 2003-2004
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * (C) Copyright 2004-2008
6 * Matrix-Vision GmbH, andre.schwarz@matrix-vision.de
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 #ifndef __CONFIG_H
28 #define __CONFIG_H
29
30 #include <version.h>
31
32 #define CONFIG_MPC5xxx 1
33 #define CONFIG_MPC5200 1
34
35 #ifndef CONFIG_SYS_TEXT_BASE
36 #define CONFIG_SYS_TEXT_BASE 0xFF800000
37 #endif
38
39 #define CONFIG_SYS_MPC5XXX_CLKIN 33000000
40
41 #define CONFIG_MISC_INIT_R 1
42
43 #define CONFIG_SYS_CACHELINE_SIZE 32
44 #ifdef CONFIG_CMD_KGDB
45 #define CONFIG_SYS_CACHELINE_SHIFT 5
46 #endif
47
48 #define CONFIG_PSC_CONSOLE 1
49 #define CONFIG_BAUDRATE 115200
50 #define CONFIG_SYS_BAUDRATE_TABLE {9600, 19200, 38400, 57600, 115200, 230400}
51
52 #define CONFIG_PCI 1
53 #define CONFIG_PCI_PNP 1
54 #undef CONFIG_PCI_SCAN_SHOW
55 #define CONFIG_PCIAUTO_SKIP_HOST_BRIDGE 1
56
57 #define CONFIG_PCI_MEM_BUS 0x40000000
58 #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
59 #define CONFIG_PCI_MEM_SIZE 0x10000000
60
61 #define CONFIG_PCI_IO_BUS 0x50000000
62 #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
63 #define CONFIG_PCI_IO_SIZE 0x01000000
64
65 #define CONFIG_SYS_XLB_PIPELINING 1
66 #define CONFIG_HIGH_BATS 1
67
68 #define MV_CI mvBlueCOUGAR-P
69 #define MV_VCI mvBlueCOUGAR-P
70 #define MV_FPGA_DATA 0xff860000
71 #define MV_FPGA_SIZE 0
72 #define MV_KERNEL_ADDR 0xffd00000
73 #define MV_INITRD_ADDR 0xff900000
74 #define MV_INITRD_LENGTH 0x00400000
75 #define MV_SCRATCH_ADDR 0x00000000
76 #define MV_SCRATCH_LENGTH MV_INITRD_LENGTH
77 #define MV_SCRIPT_ADDR 0xff840000
78 #define MV_SCRIPT_ADDR2 0xff850000
79 #define MV_DTB_ADDR 0xfffc0000
80
81 #define CONFIG_SHOW_BOOT_PROGRESS 1
82
83 #define MV_KERNEL_ADDR_RAM 0x00100000
84 #define MV_DTB_ADDR_RAM 0x00600000
85 #define MV_INITRD_ADDR_RAM 0x01000000
86
87 /* pass open firmware flat tree */
88 #define CONFIG_OF_LIBFDT 1
89 #define CONFIG_OF_BOARD_SETUP 1
90
91 #define OF_CPU "PowerPC,5200@0"
92 #define OF_SOC "soc5200@f0000000"
93 #define OF_TBCLK (bd->bi_busfreq / 4)
94 #define MV_DTB_NAME mvbc-p.dtb
95 #define CONFIG_OF_STDOUT_VIA_ALIAS 1
96
97 /*
98 * Supported commands
99 */
100 #include <config_cmd_default.h>
101
102 #define CONFIG_CMD_CACHE
103 #define CONFIG_CMD_NET
104 #define CONFIG_CMD_PING
105 #define CONFIG_CMD_DHCP
106 #define CONFIG_CMD_SDRAM
107 #define CONFIG_CMD_PCI
108 #define CONFIG_CMD_FPGA
109 #define CONFIG_CMD_I2C
110
111 #undef CONFIG_WATCHDOG
112
113 #define CONFIG_BOOTP_VENDOREX
114 #define CONFIG_BOOTP_SUBNETMASK
115 #define CONFIG_BOOTP_GATEWAY
116 #define CONFIG_BOOTP_DNS
117 #define CONFIG_BOOTP_DNS2
118 #define CONFIG_BOOTP_HOSTNAME
119 #define CONFIG_BOOTP_BOOTFILESIZE
120 #define CONFIG_BOOTP_BOOTPATH
121 #define CONFIG_BOOTP_NTPSERVER
122 #define CONFIG_BOOTP_RANDOM_DELAY
123 #define CONFIG_BOOTP_SEND_HOSTNAME
124
125 /*
126 * Autoboot
127 */
128 #define CONFIG_BOOTDELAY 2
129 #define CONFIG_AUTOBOOT_KEYED
130 #define CONFIG_AUTOBOOT_STOP_STR "s"
131 #define CONFIG_ZERO_BOOTDELAY_CHECK
132 #define CONFIG_RESET_TO_RETRY 1000
133
134 #define CONFIG_BOOTCOMMAND "if imi ${script_addr}; \
135 then source ${script_addr}; \
136 else source ${script_addr2}; \
137 fi;"
138
139 #define CONFIG_BOOTARGS "root=/dev/ram ro rootfstype=squashfs"
140 #define CONFIG_ENV_OVERWRITE
141
142 #define XMK_STR(x) #x
143 #define MK_STR(x) XMK_STR(x)
144
145 #define CONFIG_EXTRA_ENV_SETTINGS \
146 "console_nr=0\0" \
147 "console=yes\0" \
148 "stdin=serial\0" \
149 "stdout=serial\0" \
150 "stderr=serial\0" \
151 "fpga=0\0" \
152 "fpgadata=" MK_STR(MV_FPGA_DATA) "\0" \
153 "fpgadatasize=" MK_STR(MV_FPGA_SIZE) "\0" \
154 "script_addr=" MK_STR(MV_SCRIPT_ADDR) "\0" \
155 "script_addr2=" MK_STR(MV_SCRIPT_ADDR2) "\0" \
156 "mv_kernel_addr=" MK_STR(MV_KERNEL_ADDR) "\0" \
157 "mv_kernel_addr_ram=" MK_STR(MV_KERNEL_ADDR_RAM) "\0" \
158 "mv_initrd_addr=" MK_STR(MV_INITRD_ADDR) "\0" \
159 "mv_initrd_addr_ram=" MK_STR(MV_INITRD_ADDR_RAM) "\0" \
160 "mv_initrd_length=" MK_STR(MV_INITRD_LENGTH) "\0" \
161 "mv_dtb_addr=" MK_STR(MV_DTB_ADDR) "\0" \
162 "mv_dtb_addr_ram=" MK_STR(MV_DTB_ADDR_RAM) "\0" \
163 "dtb_name=" MK_STR(MV_DTB_NAME) "\0" \
164 "mv_scratch_addr=" MK_STR(MV_SCRATCH_ADDR) "\0" \
165 "mv_scratch_length=" MK_STR(MV_SCRATCH_LENGTH) "\0" \
166 "mv_version=" U_BOOT_VERSION "\0" \
167 "dhcp_client_id=" MK_STR(MV_CI) "\0" \
168 "dhcp_vendor-class-identifier=" MK_STR(MV_VCI) "\0" \
169 "netretry=no\0" \
170 "use_static_ipaddr=no\0" \
171 "static_ipaddr=192.168.90.10\0" \
172 "static_netmask=255.255.255.0\0" \
173 "static_gateway=0.0.0.0\0" \
174 "initrd_name=uInitrd.mvbc-p-rfs\0" \
175 "zcip=no\0" \
176 "netboot=yes\0" \
177 "mvtest=Ff\0" \
178 "tried_bootfromflash=no\0" \
179 "tried_bootfromnet=no\0" \
180 "use_dhcp=yes\0" \
181 "gev_start=yes\0" \
182 "mvbcdma_debug=0\0" \
183 "mvbcia_debug=0\0" \
184 "propdev_debug=0\0" \
185 "gevss_debug=0\0" \
186 "watchdog=1\0" \
187 "sensor_cnt=1\0" \
188 ""
189
190 #undef XMK_STR
191 #undef MK_STR
192
193 /*
194 * IPB Bus clocking configuration.
195 */
196 #define CONFIG_SYS_IPBCLK_EQUALS_XLBCLK
197 #define CONFIG_SYS_PCICLK_EQUALS_IPBCLK_DIV2
198
199 /*
200 * Flash configuration
201 */
202 #undef CONFIG_FLASH_16BIT
203 #define CONFIG_SYS_FLASH_CFI
204 #define CONFIG_FLASH_CFI_DRIVER
205 #define CONFIG_SYS_FLASH_CFI_AMD_RESET 1
206 #define CONFIG_SYS_FLASH_EMPTY_INFO
207
208 #define CONFIG_SYS_FLASH_ERASE_TOUT 50000
209 #define CONFIG_SYS_FLASH_WRITE_TOUT 1000
210
211 #define CONFIG_SYS_MAX_FLASH_BANKS 1
212 #define CONFIG_SYS_MAX_FLASH_SECT 256
213
214 #define CONFIG_SYS_LOWBOOT
215 #define CONFIG_SYS_FLASH_BASE CONFIG_SYS_TEXT_BASE
216 #define CONFIG_SYS_FLASH_SIZE 0x00800000
217
218 /*
219 * Environment settings
220 */
221 #define CONFIG_ENV_IS_IN_FLASH
222 #undef CONFIG_SYS_FLASH_PROTECTION
223
224 #define CONFIG_ENV_ADDR 0xFFFE0000
225 #define CONFIG_ENV_SIZE 0x10000
226 #define CONFIG_ENV_SECT_SIZE 0x10000
227 #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR+CONFIG_ENV_SIZE)
228 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
229
230 /*
231 * Memory map
232 */
233 #define CONFIG_SYS_MBAR 0xF0000000
234 #define CONFIG_SYS_SDRAM_BASE 0x00000000
235 #define CONFIG_SYS_DEFAULT_MBAR 0x80000000
236
237 #define CONFIG_SYS_INIT_RAM_ADDR MPC5XXX_SRAM
238 #define CONFIG_SYS_INIT_RAM_SIZE MPC5XXX_SRAM_SIZE
239
240 #define CONFIG_SYS_GBL_DATA_SIZE 128
241 #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - CONFIG_SYS_GBL_DATA_SIZE)
242 #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
243
244 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
245 #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
246 #define CONFIG_SYS_RAMBOOT 1
247 #endif
248
249 /* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
250 #define CONFIG_SYS_MONITOR_LEN (512 << 10)
251 #define CONFIG_SYS_MALLOC_LEN (512 << 10)
252 #define CONFIG_SYS_BOOTMAPSZ (8 << 20)
253
254 /*
255 * I2C configuration
256 */
257 #define CONFIG_HARD_I2C 1
258 #define CONFIG_SYS_I2C_MODULE 1
259 #define CONFIG_SYS_I2C_SPEED 86000
260 #define CONFIG_SYS_I2C_SLAVE 0x7F
261
262 /*
263 * Ethernet configuration
264 */
265 #define CONFIG_NET_MULTI
266 #define CONFIG_NET_RETRY_COUNT 5
267
268 #define CONFIG_E1000
269 #define CONFIG_E1000_FALLBACK_MAC { 0xb6, 0xb4, 0x45, 0xeb, 0xfb, 0xc0 }
270 #undef CONFIG_MPC5xxx_FEC
271 #undef CONFIG_PHY_ADDR
272 #define CONFIG_NETDEV eth0
273
274 /*
275 * Miscellaneous configurable options
276 */
277 #define CONFIG_SYS_HUSH_PARSER
278 #define CONFIG_CMDLINE_EDITING
279 #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
280 #undef CONFIG_SYS_LONGHELP
281 #define CONFIG_SYS_PROMPT "=> "
282 #ifdef CONFIG_CMD_KGDB
283 #define CONFIG_SYS_CBSIZE 1024
284 #else
285 #define CONFIG_SYS_CBSIZE 256
286 #endif
287 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
288 #define CONFIG_SYS_MAXARGS 16
289 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
290
291 #define CONFIG_SYS_MEMTEST_START 0x00800000
292 #define CONFIG_SYS_MEMTEST_END 0x02f00000
293
294 #define CONFIG_SYS_HZ 1000
295
296 /* default load address */
297 #define CONFIG_SYS_LOAD_ADDR 0x02000000
298 /* default location for tftp and bootm */
299 #define CONFIG_LOADADDR 0x00200000
300
301 /*
302 * Various low-level settings
303 */
304 #define CONFIG_SYS_GPS_PORT_CONFIG 0x20000004
305
306 #define CONFIG_SYS_HID0_INIT (HID0_ICE | HID0_ICFI)
307 #define CONFIG_SYS_HID0_FINAL HID0_ICE
308
309 #define CONFIG_SYS_BOOTCS_START CONFIG_SYS_FLASH_BASE
310 #define CONFIG_SYS_BOOTCS_SIZE CONFIG_SYS_FLASH_SIZE
311 #define CONFIG_SYS_BOOTCS_CFG 0x00047800
312 #define CONFIG_SYS_CS0_START CONFIG_SYS_FLASH_BASE
313 #define CONFIG_SYS_CS0_SIZE CONFIG_SYS_FLASH_SIZE
314
315 #define CONFIG_SYS_CS_BURST 0x000000f0
316 #define CONFIG_SYS_CS_DEADCYCLE 0x33333303
317
318 #define CONFIG_SYS_RESET_ADDRESS 0x00000100
319
320 #undef FPGA_DEBUG
321 #undef CONFIG_SYS_FPGA_PROG_FEEDBACK
322 #define CONFIG_FPGA CONFIG_SYS_ALTERA_CYCLON2
323 #define CONFIG_FPGA_ALTERA 1
324 #define CONFIG_FPGA_CYCLON2 1
325 #define CONFIG_FPGA_COUNT 1
326
327 #endif