]> git.ipfire.org Git - people/ms/u-boot.git/blob - include/configs/ipek01.h
c6390dbdbebd5edf961b11943497afa5346eee6d
[people/ms/u-boot.git] / include / configs / ipek01.h
1 /*
2 * (C) Copyright 2006
3 * MicroSys GmbH
4 *
5 * (C) Copyright 2009
6 * Wolfgang Grandegger, DENX Software Engineering, wg@denx.de.
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11 #ifndef __CONFIG_H
12 #define __CONFIG_H
13
14 /*
15 * High Level Configuration Options
16 */
17
18 #define CONFIG_MPC5200
19 #define CONFIG_MPX5200 1 /* MPX5200 board */
20 #define CONFIG_MPC5200_DDR 1 /* use DDR RAM */
21 #define CONFIG_IPEK01 /* Motherboard is ipek01 */
22
23 #define CONFIG_SYS_TEXT_BASE 0xfc000000
24
25 #define CONFIG_SYS_MPC5XXX_CLKIN 33000000 /* ... running at 33MHz */
26
27 #define CONFIG_MISC_INIT_R
28
29 #define CONFIG_SYS_CACHELINE_SIZE 32 /* For MPC5xxx CPUs */
30 #ifdef CONFIG_CMD_KGDB
31 #define CONFIG_SYS_CACHELINE_SHIFT 5 /* log base 2 of the above value */
32 #endif
33
34 /*
35 * Serial console configuration
36 */
37 #define CONFIG_PSC_CONSOLE 1 /* console is on PSC1 */
38 #define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200, 230400 }
39
40 #define CONFIG_CMDLINE_EDITING 1 /* add command line history */
41
42 /*
43 * Video configuration for LIME GDC
44 */
45 #ifdef CONFIG_VIDEO
46 #define CONFIG_VIDEO_MB862xx
47 #define CONFIG_VIDEO_MB862xx_ACCEL
48 #define VIDEO_FB_16BPP_WORD_SWAP
49 #define CONFIG_VIDEO_LOGO
50 #define CONFIG_VIDEO_BMP_LOGO
51 #define CONFIG_SPLASH_SCREEN
52 #define CONFIG_VIDEO_BMP_GZIP
53 #define CONFIG_SYS_VIDEO_LOGO_MAX_SIZE (2 << 20) /* decompressed img */
54 /* Lime clock frequency */
55 #define CONFIG_SYS_MB862xx_CCF 0x90000 /* geo 166MHz other 133MHz */
56 /* SDRAM parameter */
57 #define CONFIG_SYS_MB862xx_MMR 0x41c767e3
58 #endif
59
60 /*
61 * PCI Mapping:
62 * 0x40000000 - 0x4fffffff - PCI Memory
63 * 0x50000000 - 0x50ffffff - PCI IO Space
64 */
65 #define CONFIG_PCI_SCAN_SHOW 1
66
67 #define CONFIG_PCI_MEM_BUS 0x40000000
68 #define CONFIG_PCI_MEM_PHYS CONFIG_PCI_MEM_BUS
69 #define CONFIG_PCI_MEM_SIZE 0x10000000
70
71 #define CONFIG_PCI_IO_BUS 0x50000000
72 #define CONFIG_PCI_IO_PHYS CONFIG_PCI_IO_BUS
73 #define CONFIG_PCI_IO_SIZE 0x01000000
74
75 #define CONFIG_MII 1
76 #define CONFIG_EEPRO100 1
77 #define CONFIG_SYS_RX_ETH_BUFFER 8 /* use 8 rx buffer on eepro100 */
78
79 /* USB */
80 #define CONFIG_USB_OHCI_NEW
81 #define CONFIG_SYS_OHCI_BE_CONTROLLER
82
83 #define CONFIG_SYS_USB_OHCI_CPU_INIT
84 #define CONFIG_SYS_USB_OHCI_REGS_BASE MPC5XXX_USB
85 #define CONFIG_SYS_USB_OHCI_SLOT_NAME "mpc5200"
86 #define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 15
87
88 /*
89 * Command line configuration.
90 */
91 #define CONFIG_CMD_PCI /* pciinfo */
92
93 #define CONFIG_SYS_LOWBOOT 1
94
95 /*
96 * Autobooting
97 */
98
99 #define CONFIG_PREBOOT "echo;" \
100 "echo Type \\\"run flash_nfs\\\" to mount root filesystem over NFS;" \
101 "echo"
102
103 #undef CONFIG_BOOTARGS
104
105 #define CONFIG_EXTRA_ENV_SETTINGS \
106 "netdev=eth0\0" \
107 "consoledev=ttyPSC0\0" \
108 "hostname=ipek01\0" \
109 "nfsargs=setenv bootargs root=/dev/nfs rw " \
110 "nfsroot=${serverip}:${rootpath}\0" \
111 "ramargs=setenv bootargs root=/dev/ram rw\0" \
112 "addip=setenv bootargs ${bootargs} " \
113 "ip=${ipaddr}:${serverip}:${gatewayip}:${netmask}" \
114 ":${hostname}:${netdev}:off panic=1\0" \
115 "addtty=setenv bootargs ${bootargs} " \
116 "console=${consoledev},${baudrate}\0" \
117 "flash_nfs=run nfsargs addip addtty;" \
118 "bootm ${kernel_addr} - ${fdtaddr}\0" \
119 "flash_self=run ramargs addip addtty;" \
120 "bootm ${kernel_addr} ${ramdisk_addr} ${fdtaddr}\0" \
121 "net_nfs=tftp 200000 ${bootfile}; tftp ${fdtaddr} ${fdtfile};" \
122 "run nfsargs addip addtty;" \
123 "bootm ${loadaddr} - ${fdtaddr}\0" \
124 "rootpath=/opt/eldk/ppc_6xx\0" \
125 "bootfile=ipek01/uImage\0" \
126 "load=tftp 100000 ipek01/u-boot.bin\0" \
127 "update=protect off FC000000 +60000; era FC000000 +60000; " \
128 "cp.b 100000 FC000000 ${filesize}\0" \
129 "upd=run load;run update\0" \
130 "fdtaddr=800000\0" \
131 "loadaddr=400000\0" \
132 "fdtfile=ipek01/ipek01.dtb\0" \
133 ""
134
135 #define CONFIG_BOOTCOMMAND "run flash_self"
136
137 /*
138 * IPB Bus clocking configuration.
139 */
140 #define CONFIG_SYS_IPBCLK_EQUALS_XLBCLK /* for 133MHz */
141 /* PCI clock must be 33, because board will not boot */
142 #undef CONFIG_SYS_PCICLK_EQUALS_IPBCLK_DIV2 /* for 66MHz */
143
144 /*
145 * Open firmware flat tree support
146 */
147 #define OF_CPU "PowerPC,5200@0"
148 #define OF_SOC "soc5200@f0000000"
149 #define OF_TBCLK (bd->bi_busfreq / 4)
150
151 #define CONFIG_SYS_FLASH_BASE 0xFC000000
152 #define CONFIG_SYS_FLASH_SIZE 0x01000000
153 #define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + \
154 CONFIG_SYS_MONITOR_LEN)
155
156 #define CONFIG_SYS_MAX_FLASH_BANKS 1 /* max num of memory banks */
157 #define CONFIG_SYS_MAX_FLASH_SECT 256 /* max num of sects on one chip */
158 #define CONFIG_SYS_FLASH_PROTECTION /* "Real" (hardware) sectors protection */
159
160 /* use CFI flash driver */
161 #define CONFIG_FLASH_CFI_DRIVER
162 #define CONFIG_SYS_FLASH_CFI
163 #define CONFIG_SYS_FLASH_EMPTY_INFO
164 #define CONFIG_SYS_FLASH_USE_BUFFER_WRITE 1
165
166 /*
167 * Environment settings
168 */
169 #define CONFIG_ENV_IS_IN_FLASH 1
170 #define CONFIG_ENV_SIZE 0x10000
171 #define CONFIG_ENV_SECT_SIZE 0x20000
172 #define CONFIG_ENV_OVERWRITE 1
173 #define CONFIG_ENV_ADDR_REDUND (CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE)
174 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
175
176 /*
177 * Memory map
178 */
179 #define CONFIG_SYS_MBAR 0xf0000000
180 #define CONFIG_SYS_SDRAM_BASE 0x00000000
181 #define CONFIG_SYS_DEFAULT_MBAR 0x80000000
182 #define CONFIG_SYS_SRAM_BASE 0xF1000000
183 #define CONFIG_SYS_SRAM_SIZE 0x00200000
184 #define CONFIG_SYS_LIME_BASE 0xE4000000
185 #define CONFIG_SYS_LIME_SIZE 0x04000000
186 #define CONFIG_SYS_FPGA_BASE 0xC0000000
187 #define CONFIG_SYS_FPGA_SIZE 0x10000000
188 #define CONFIG_SYS_MPEG_BASE 0xe2000000
189 #define CONFIG_SYS_MPEG_SIZE 0x01000000
190 #define CONFIG_SYS_CF_BASE 0xe1000000
191 #define CONFIG_SYS_CF_SIZE 0x01000000
192
193 /* Use SRAM until RAM will be available */
194 #define CONFIG_SYS_INIT_RAM_ADDR MPC5XXX_SRAM
195 /* End of used area in DPRAM */
196 #define CONFIG_SYS_INIT_RAM_SIZE MPC5XXX_SRAM_SIZE
197
198 #define CONFIG_SYS_GBL_DATA_OFFSET (CONFIG_SYS_INIT_RAM_SIZE - \
199 GENERATED_GBL_DATA_SIZE)
200 #define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
201
202 #define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
203 #if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE)
204 # define CONFIG_SYS_RAMBOOT 1
205 #endif
206
207 #define CONFIG_SYS_MONITOR_LEN (384 << 10) /* Reserve 384 kB for Monitor */
208 #define CONFIG_SYS_MALLOC_LEN (4 << 20) /* Reserve 128 kB for malloc() */
209 #define CONFIG_SYS_BOOTMAPSZ (8 << 20) /* Initial Memory map for Linux */
210
211 /*
212 * Ethernet configuration
213 */
214 #define CONFIG_MPC5xxx_FEC 1
215 #define CONFIG_MPC5xxx_FEC_MII100
216 #define CONFIG_PHY_ADDR 0x00
217
218 /*
219 * GPIO configuration
220 */
221 #define CONFIG_SYS_GPS_PORT_CONFIG 0x1d556624
222
223 /*
224 * Miscellaneous configurable options
225 */
226 #define CONFIG_SYS_LONGHELP /* undef to save memory */
227 #ifdef CONFIG_CMD_KGDB
228 #define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
229 #else
230 #define CONFIG_SYS_CBSIZE 256 /* Console I/O Buffer Size */
231 #endif
232 /* Print Buffer Size */
233 #define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
234 sizeof(CONFIG_SYS_PROMPT) + 16)
235 /* max number of command args */
236 #define CONFIG_SYS_MAXARGS 16
237 /* Boot Argument Buffer Size */
238 #define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
239
240 #define CONFIG_SYS_MEMTEST_START 0x00100000 /* memtest works on */
241 #define CONFIG_SYS_MEMTEST_END 0x00f00000 /* 1...15 MB in DRAM */
242
243 #define CONFIG_SYS_LOAD_ADDR 0x100000 /* default load address */
244
245 /*
246 * Various low-level settings
247 */
248 #define CONFIG_SYS_HID0_INIT HID0_ICE | HID0_ICFI
249 #define CONFIG_SYS_HID0_FINAL HID0_ICE
250
251 #define CONFIG_SYS_BOOTCS_START CONFIG_SYS_FLASH_BASE
252 #define CONFIG_SYS_BOOTCS_SIZE CONFIG_SYS_FLASH_SIZE
253 #define CONFIG_SYS_CS0_START CONFIG_SYS_FLASH_BASE
254 #define CONFIG_SYS_CS0_SIZE CONFIG_SYS_FLASH_SIZE
255 #define CONFIG_SYS_CS1_START CONFIG_SYS_SRAM_BASE
256 #define CONFIG_SYS_CS1_SIZE CONFIG_SYS_SRAM_SIZE
257 #define CONFIG_SYS_CS3_START CONFIG_SYS_LIME_BASE
258 #define CONFIG_SYS_CS3_SIZE CONFIG_SYS_LIME_SIZE
259 #define CONFIG_SYS_CS6_START CONFIG_SYS_FPGA_BASE
260 #define CONFIG_SYS_CS6_SIZE CONFIG_SYS_FPGA_SIZE
261 #define CONFIG_SYS_CS5_START CONFIG_SYS_CF_BASE
262 #define CONFIG_SYS_CS5_SIZE CONFIG_SYS_CF_SIZE
263 #define CONFIG_SYS_CS7_START CONFIG_SYS_MPEG_BASE
264 #define CONFIG_SYS_CS7_SIZE CONFIG_SYS_MPEG_SIZE
265
266 #ifdef CONFIG_SYS_PCISPEED_66
267 #define CONFIG_SYS_BOOTCS_CFG 0x0006F900
268 #define CONFIG_SYS_CS1_CFG 0x0004FB00
269 #define CONFIG_SYS_CS2_CFG 0x0006F900
270 #else
271 #define CONFIG_SYS_BOOTCS_CFG 0x0002F900
272 #define CONFIG_SYS_CS1_CFG 0x0001FB00
273 #define CONFIG_SYS_CS2_CFG 0x0002F90C
274 #endif
275
276 /*
277 * Ack active, Muxed mode, AS=24 bit address, DS=32 bit data, 0
278 * waitstates, writeswap and readswap enabled
279 */
280 #define CONFIG_SYS_CS3_CFG 0x00FFFB0C
281 #define CONFIG_SYS_CS6_CFG 0x00FFFB0C
282 #define CONFIG_SYS_CS7_CFG 0x4040751C
283
284 #define CONFIG_SYS_CS_BURST 0x00000000
285 #define CONFIG_SYS_CS_DEADCYCLE 0x33330000
286
287 #define CONFIG_SYS_RESET_ADDRESS 0xff000000
288
289 /*-----------------------------------------------------------------------
290 * USB stuff
291 *-----------------------------------------------------------------------
292 */
293 #define CONFIG_USB_CLOCK 0x0001BBBB
294 #define CONFIG_USB_CONFIG 0x00005000
295
296 /*-----------------------------------------------------------------------
297 * IDE/ATA stuff Supports IDE harddisk
298 *-----------------------------------------------------------------------
299 */
300 #define CONFIG_IDE_PREINIT
301
302 #define CONFIG_SYS_IDE_MAXBUS 1 /* max. 1 IDE bus */
303 #define CONFIG_SYS_IDE_MAXDEVICE 2 /* max. 2 drives per IDE bus */
304
305 #define CONFIG_SYS_ATA_IDE0_OFFSET 0x0000
306
307 #define CONFIG_SYS_ATA_BASE_ADDR MPC5XXX_ATA
308
309 /* Offset for data I/O */
310 #define CONFIG_SYS_ATA_DATA_OFFSET (0x0060)
311
312 /* Offset for normal register accesses */
313 #define CONFIG_SYS_ATA_REG_OFFSET (CONFIG_SYS_ATA_DATA_OFFSET)
314
315 /* Offset for alternate registers */
316 #define CONFIG_SYS_ATA_ALT_OFFSET (0x005C)
317
318 /* Interval between registers */
319 #define CONFIG_SYS_ATA_STRIDE 4
320
321 #endif /* __CONFIG_H */