]> git.ipfire.org Git - people/ms/u-boot.git/blame - include/configs/MPC8313ERDB.h
cmd: add Kconfig option for 'date' command
[people/ms/u-boot.git] / include / configs / MPC8313ERDB.h
CommitLineData
96b8a054 1/*
e8d3ca8b 2 * Copyright (C) Freescale Semiconductor, Inc. 2006, 2010.
96b8a054 3 *
3765b3e7 4 * SPDX-License-Identifier: GPL-2.0+
96b8a054
SW
5 */
6/*
7 * mpc8313epb board configuration file
8 */
9
10#ifndef __CONFIG_H
11#define __CONFIG_H
12
13/*
14 * High Level Configuration Options
15 */
16#define CONFIG_E300 1
2c7920af 17#define CONFIG_MPC831x 1
96b8a054
SW
18#define CONFIG_MPC8313 1
19#define CONFIG_MPC8313ERDB 1
20
22f4442d 21#ifdef CONFIG_NAND
22f4442d 22#define CONFIG_SPL_INIT_MINIMAL
22f4442d
SW
23#define CONFIG_SPL_FLUSH_IMAGE
24#define CONFIG_SPL_TARGET "u-boot-with-spl.bin"
25#define CONFIG_SPL_MPC83XX_WAIT_FOR_NAND
26
27#ifdef CONFIG_SPL_BUILD
28#define CONFIG_NS16550_MIN_FUNCTIONS
29#endif
30
31#define CONFIG_SYS_TEXT_BASE 0x00100000 /* CONFIG_SYS_NAND_U_BOOT_DST */
32#define CONFIG_SYS_TEXT_BASE_SPL 0xfff00000
33#define CONFIG_SPL_MAX_SIZE (4 * 1024)
6113d3f2 34#define CONFIG_SPL_PAD_TO 0x4000
22f4442d 35
f1c574d4
SW
36#define CONFIG_SYS_NAND_U_BOOT_SIZE (512 << 10)
37#define CONFIG_SYS_NAND_U_BOOT_DST 0x00100000
38#define CONFIG_SYS_NAND_U_BOOT_START 0x00100100
39#define CONFIG_SYS_NAND_U_BOOT_OFFS 16384
40#define CONFIG_SYS_NAND_U_BOOT_RELOC 0x00010000
41#define CONFIG_SYS_NAND_U_BOOT_RELOC_SP (CONFIG_SYS_NAND_U_BOOT_RELOC + 0x10000)
42
22f4442d 43#ifdef CONFIG_SPL_BUILD
f1c574d4 44#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE_SPL /* start of monitor */
22f4442d
SW
45#endif
46
47#endif /* CONFIG_NAND */
f1c574d4 48
2ae18241
WD
49#ifndef CONFIG_SYS_TEXT_BASE
50#define CONFIG_SYS_TEXT_BASE 0xFE000000
51#endif
52
f1c574d4
SW
53#ifndef CONFIG_SYS_MONITOR_BASE
54#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE /* start of monitor */
55#endif
56
842033e6 57#define CONFIG_PCI_INDIRECT_BRIDGE
0914f483 58#define CONFIG_FSL_ELBC 1
96b8a054 59
89c7784e
TT
60#define CONFIG_MISC_INIT_R
61
62/*
63 * On-board devices
4ce1e23b
YS
64 *
65 * TSEC1 is VSC switch
66 * TSEC2 is SoC TSEC
89c7784e
TT
67 */
68#define CONFIG_VSC7385_ENET
4ce1e23b 69#define CONFIG_TSEC2
89c7784e 70
6d0f6bcf 71#ifdef CONFIG_SYS_66MHZ
5c5d3242 72#define CONFIG_83XX_CLKIN 66666667 /* in Hz */
6d0f6bcf 73#elif defined(CONFIG_SYS_33MHZ)
5c5d3242 74#define CONFIG_83XX_CLKIN 33333333 /* in Hz */
96b8a054
SW
75#else
76#error Unknown oscillator frequency.
77#endif
78
79#define CONFIG_SYS_CLK_FREQ CONFIG_83XX_CLKIN
80
0eaf8f9e 81#define CONFIG_BOARD_EARLY_INIT_R /* call board_early_init_r */
96b8a054 82
6d0f6bcf 83#define CONFIG_SYS_IMMR 0xE0000000
96b8a054 84
22f4442d 85#if defined(CONFIG_NAND) && !defined(CONFIG_SPL_BUILD)
6d0f6bcf 86#define CONFIG_DEFAULT_IMMR CONFIG_SYS_IMMR
e4c09508
SW
87#endif
88
6d0f6bcf
JCPV
89#define CONFIG_SYS_MEMTEST_START 0x00001000
90#define CONFIG_SYS_MEMTEST_END 0x07f00000
96b8a054
SW
91
92/* Early revs of this board will lock up hard when attempting
93 * to access the PMC registers, unless a JTAG debugger is
94 * connected, or some resistor modifications are made.
95 */
6d0f6bcf 96#define CONFIG_SYS_8313ERDB_BROKEN_PMC 1
96b8a054 97
6d0f6bcf
JCPV
98#define CONFIG_SYS_ACR_PIPE_DEP 3 /* Arbiter pipeline depth (0-3) */
99#define CONFIG_SYS_ACR_RPTCNT 3 /* Arbiter repeat count (0-7) */
96b8a054 100
89c7784e
TT
101/*
102 * Device configurations
103 */
104
105/* Vitesse 7385 */
106
107#ifdef CONFIG_VSC7385_ENET
108
4ce1e23b 109#define CONFIG_TSEC1
89c7784e
TT
110
111/* The flash address and size of the VSC7385 firmware image */
112#define CONFIG_VSC7385_IMAGE 0xFE7FE000
113#define CONFIG_VSC7385_IMAGE_SIZE 8192
114
115#endif
116
96b8a054
SW
117/*
118 * DDR Setup
119 */
261c07bc 120#define CONFIG_SYS_DDR_BASE 0x00000000 /* DDR is system memory*/
6d0f6bcf
JCPV
121#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_BASE
122#define CONFIG_SYS_DDR_SDRAM_BASE CONFIG_SYS_DDR_BASE
96b8a054
SW
123
124/*
125 * Manually set up DDR parameters, as this board does not
126 * seem to have the SPD connected to I2C.
127 */
261c07bc 128#define CONFIG_SYS_DDR_SIZE 128 /* MB */
2e651b24 129#define CONFIG_SYS_DDR_CS0_CONFIG (CSCONFIG_EN \
2fef4020
JH
130 | CSCONFIG_ODT_RD_NEVER \
131 | CSCONFIG_ODT_WR_ONLY_CURRENT \
261c07bc
JH
132 | CSCONFIG_ROW_BIT_13 \
133 | CSCONFIG_COL_BIT_10)
e1d8ed2c 134 /* 0x80010102 */
96b8a054 135
6d0f6bcf 136#define CONFIG_SYS_DDR_TIMING_3 0x00000000
261c07bc
JH
137#define CONFIG_SYS_DDR_TIMING_0 ((0 << TIMING_CFG0_RWT_SHIFT) \
138 | (0 << TIMING_CFG0_WRT_SHIFT) \
139 | (0 << TIMING_CFG0_RRT_SHIFT) \
140 | (0 << TIMING_CFG0_WWT_SHIFT) \
141 | (2 << TIMING_CFG0_ACT_PD_EXIT_SHIFT) \
142 | (2 << TIMING_CFG0_PRE_PD_EXIT_SHIFT) \
143 | (8 << TIMING_CFG0_ODT_PD_EXIT_SHIFT) \
144 | (2 << TIMING_CFG0_MRS_CYC_SHIFT))
96b8a054 145 /* 0x00220802 */
261c07bc
JH
146#define CONFIG_SYS_DDR_TIMING_1 ((3 << TIMING_CFG1_PRETOACT_SHIFT) \
147 | (8 << TIMING_CFG1_ACTTOPRE_SHIFT) \
148 | (3 << TIMING_CFG1_ACTTORW_SHIFT) \
149 | (5 << TIMING_CFG1_CASLAT_SHIFT) \
150 | (10 << TIMING_CFG1_REFREC_SHIFT) \
151 | (3 << TIMING_CFG1_WRREC_SHIFT) \
152 | (2 << TIMING_CFG1_ACTTOACT_SHIFT) \
153 | (2 << TIMING_CFG1_WRTORD_SHIFT))
e1d8ed2c 154 /* 0x3835a322 */
261c07bc
JH
155#define CONFIG_SYS_DDR_TIMING_2 ((1 << TIMING_CFG2_ADD_LAT_SHIFT) \
156 | (5 << TIMING_CFG2_CPO_SHIFT) \
157 | (2 << TIMING_CFG2_WR_LAT_DELAY_SHIFT) \
158 | (2 << TIMING_CFG2_RD_TO_PRE_SHIFT) \
159 | (2 << TIMING_CFG2_WR_DATA_DELAY_SHIFT) \
160 | (3 << TIMING_CFG2_CKE_PLS_SHIFT) \
161 | (6 << TIMING_CFG2_FOUR_ACT_SHIFT))
e1d8ed2c 162 /* 0x129048c6 */ /* P9-45,may need tuning */
261c07bc
JH
163#define CONFIG_SYS_DDR_INTERVAL ((1296 << SDRAM_INTERVAL_REFINT_SHIFT) \
164 | (1280 << SDRAM_INTERVAL_BSTOPRE_SHIFT))
e1d8ed2c 165 /* 0x05100500 */
96b8a054 166#if defined(CONFIG_DDR_2T_TIMING)
261c07bc 167#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
bbea46f7 168 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
2fef4020
JH
169 | SDRAM_CFG_DBW_32 \
170 | SDRAM_CFG_2T_EN)
171 /* 0x43088000 */
96b8a054 172#else
261c07bc 173#define CONFIG_SYS_SDRAM_CFG (SDRAM_CFG_SREN \
bbea46f7 174 | SDRAM_CFG_SDRAM_TYPE_DDR2 \
2fef4020 175 | SDRAM_CFG_DBW_32)
96b8a054
SW
176 /* 0x43080000 */
177#endif
6d0f6bcf 178#define CONFIG_SYS_SDRAM_CFG2 0x00401000
96b8a054 179/* set burst length to 8 for 32-bit data path */
261c07bc
JH
180#define CONFIG_SYS_DDR_MODE ((0x4448 << SDRAM_MODE_ESD_SHIFT) \
181 | (0x0632 << SDRAM_MODE_SD_SHIFT))
e1d8ed2c 182 /* 0x44480632 */
261c07bc 183#define CONFIG_SYS_DDR_MODE_2 0x8000C000
96b8a054 184
6d0f6bcf 185#define CONFIG_SYS_DDR_CLK_CNTL DDR_SDRAM_CLK_CNTL_CLK_ADJUST_05
96b8a054 186 /*0x02000000*/
261c07bc 187#define CONFIG_SYS_DDRCDR_VALUE (DDRCDR_EN \
96b8a054
SW
188 | DDRCDR_PZ_NOMZ \
189 | DDRCDR_NZ_NOMZ \
261c07bc 190 | DDRCDR_M_ODR)
96b8a054
SW
191
192/*
193 * FLASH on the Local Bus
194 */
261c07bc
JH
195#define CONFIG_SYS_FLASH_CFI /* use the Common Flash Interface */
196#define CONFIG_FLASH_CFI_DRIVER /* use the CFI driver */
6d0f6bcf 197#define CONFIG_SYS_FLASH_BASE 0xFE000000 /* start of FLASH */
261c07bc
JH
198#define CONFIG_SYS_FLASH_SIZE 8 /* flash size in MB */
199#define CONFIG_SYS_FLASH_PROTECTION 1 /* Use h/w Flash protection. */
200#define CONFIG_SYS_FLASH_EMPTY_INFO /* display empty sectors */
201#define CONFIG_SYS_FLASH_USE_BUFFER_WRITE /* buffer up multiple bytes */
202
203#define CONFIG_SYS_NOR_BR_PRELIM (CONFIG_SYS_FLASH_BASE \
7d6a0982
JH
204 | BR_PS_16 /* 16 bit port */ \
205 | BR_MS_GPCM /* MSEL = GPCM */ \
206 | BR_V) /* valid */
207#define CONFIG_SYS_NOR_OR_PRELIM (MEG_TO_AM(CONFIG_SYS_FLASH_SIZE) \
96b8a054
SW
208 | OR_GPCM_XACS \
209 | OR_GPCM_SCY_9 \
210 | OR_GPCM_EHTR \
261c07bc 211 | OR_GPCM_EAD)
96b8a054 212 /* 0xFF006FF7 TODO SLOW 16 MB flash size */
261c07bc
JH
213 /* window base at flash base */
214#define CONFIG_SYS_LBLAWBAR0_PRELIM CONFIG_SYS_FLASH_BASE
7d6a0982
JH
215 /* 16 MB window size */
216#define CONFIG_SYS_LBLAWAR0_PRELIM (LBLAWAR_EN | LBLAWAR_16MB)
96b8a054 217
261c07bc
JH
218#define CONFIG_SYS_MAX_FLASH_BANKS 1 /* number of banks */
219#define CONFIG_SYS_MAX_FLASH_SECT 135 /* sectors per device */
96b8a054 220
6d0f6bcf
JCPV
221#define CONFIG_SYS_FLASH_ERASE_TOUT 60000 /* Flash Erase Timeout (ms) */
222#define CONFIG_SYS_FLASH_WRITE_TOUT 500 /* Flash Write Timeout (ms) */
96b8a054 223
261c07bc 224#if (CONFIG_SYS_MONITOR_BASE < CONFIG_SYS_FLASH_BASE) && \
22f4442d 225 !defined(CONFIG_SPL_BUILD)
6d0f6bcf 226#define CONFIG_SYS_RAMBOOT
96b8a054
SW
227#endif
228
6d0f6bcf 229#define CONFIG_SYS_INIT_RAM_LOCK 1
261c07bc
JH
230#define CONFIG_SYS_INIT_RAM_ADDR 0xFD000000 /* Initial RAM addr */
231#define CONFIG_SYS_INIT_RAM_SIZE 0x1000 /* Size of used area in RAM*/
96b8a054 232
261c07bc
JH
233#define CONFIG_SYS_GBL_DATA_OFFSET \
234 (CONFIG_SYS_INIT_RAM_SIZE - GENERATED_GBL_DATA_SIZE)
6d0f6bcf 235#define CONFIG_SYS_INIT_SP_OFFSET CONFIG_SYS_GBL_DATA_OFFSET
96b8a054 236
6d0f6bcf 237/* CONFIG_SYS_MONITOR_LEN must be a multiple of CONFIG_ENV_SECT_SIZE */
16c8c170 238#define CONFIG_SYS_MONITOR_LEN (512 * 1024) /* Reserve 512 kB for Mon */
261c07bc 239#define CONFIG_SYS_MALLOC_LEN (512 * 1024) /* Reserved for malloc */
96b8a054
SW
240
241/*
242 * Local Bus LCRR and LBCR regs
243 */
c7190f02
KP
244#define CONFIG_SYS_LCRR_EADC LCRR_EADC_1
245#define CONFIG_SYS_LCRR_CLKDIV LCRR_CLKDIV_4
261c07bc
JH
246#define CONFIG_SYS_LBC_LBCR (0x00040000 /* TODO */ \
247 | (0xFF << LBCR_BMT_SHIFT) \
248 | 0xF) /* 0x0004ff0f */
96b8a054 249
261c07bc
JH
250 /* LB refresh timer prescal, 266MHz/32 */
251#define CONFIG_SYS_LBC_MRTPR 0x20000000 /*TODO */
96b8a054 252
7817cb20 253/* drivers/mtd/nand/nand.c */
22f4442d 254#if defined(CONFIG_NAND) && defined(CONFIG_SPL_BUILD)
6d0f6bcf 255#define CONFIG_SYS_NAND_BASE 0xFFF00000
e4c09508 256#else
6d0f6bcf 257#define CONFIG_SYS_NAND_BASE 0xE2800000
e4c09508
SW
258#endif
259
e8d3ca8b
SW
260#define CONFIG_MTD_DEVICE
261#define CONFIG_MTD_PARTITION
262#define CONFIG_CMD_MTDPARTS
263#define MTDIDS_DEFAULT "nand0=e2800000.flash"
261c07bc 264#define MTDPARTS_DEFAULT \
63865278 265 "mtdparts=e2800000.flash:512k(uboot),128k(env),6m@1m(kernel),-(fs)"
e8d3ca8b 266
6d0f6bcf 267#define CONFIG_SYS_MAX_NAND_DEVICE 1
acdab5c3
SW
268#define CONFIG_CMD_NAND 1
269#define CONFIG_NAND_FSL_ELBC 1
6d0f6bcf 270#define CONFIG_SYS_NAND_BLOCK_SIZE 16384
7d6a0982 271#define CONFIG_SYS_NAND_WINDOW_SIZE (32 * 1024)
e4c09508 272
261c07bc 273#define CONFIG_SYS_NAND_BR_PRELIM (CONFIG_SYS_NAND_BASE \
7d6a0982 274 | BR_DECC_CHK_GEN /* Use HW ECC */ \
261c07bc 275 | BR_PS_8 /* 8 bit port */ \
a7676ea7 276 | BR_MS_FCM /* MSEL = FCM */ \
261c07bc 277 | BR_V) /* valid */
7d6a0982
JH
278#define CONFIG_SYS_NAND_OR_PRELIM \
279 (P2SZ_TO_AM(CONFIG_SYS_NAND_WINDOW_SIZE) \
96b8a054
SW
280 | OR_FCM_CSCT \
281 | OR_FCM_CST \
282 | OR_FCM_CHT \
283 | OR_FCM_SCY_1 \
284 | OR_FCM_TRLX \
261c07bc 285 | OR_FCM_EHTR)
96b8a054 286 /* 0xFFFF8396 */
e4c09508 287
22f4442d 288#ifdef CONFIG_NAND
6d0f6bcf
JCPV
289#define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NAND_BR_PRELIM
290#define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NAND_OR_PRELIM
291#define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NOR_BR_PRELIM
292#define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NOR_OR_PRELIM
e4c09508 293#else
6d0f6bcf
JCPV
294#define CONFIG_SYS_BR0_PRELIM CONFIG_SYS_NOR_BR_PRELIM
295#define CONFIG_SYS_OR0_PRELIM CONFIG_SYS_NOR_OR_PRELIM
296#define CONFIG_SYS_BR1_PRELIM CONFIG_SYS_NAND_BR_PRELIM
297#define CONFIG_SYS_OR1_PRELIM CONFIG_SYS_NAND_OR_PRELIM
e4c09508
SW
298#endif
299
6d0f6bcf 300#define CONFIG_SYS_LBLAWBAR1_PRELIM CONFIG_SYS_NAND_BASE
7d6a0982 301#define CONFIG_SYS_LBLAWAR1_PRELIM (LBLAWAR_EN | LBLAWAR_32KB)
96b8a054 302
6d0f6bcf
JCPV
303#define CONFIG_SYS_NAND_LBLAWBAR_PRELIM CONFIG_SYS_LBLAWBAR1_PRELIM
304#define CONFIG_SYS_NAND_LBLAWAR_PRELIM CONFIG_SYS_LBLAWAR1_PRELIM
e4c09508 305
7d6a0982
JH
306/* local bus write LED / read status buffer (BCSR) mapping */
307#define CONFIG_SYS_BCSR_ADDR 0xFA000000
308#define CONFIG_SYS_BCSR_SIZE (32 * 1024) /* 0x00008000 */
309 /* map at 0xFA000000 on LCS3 */
310#define CONFIG_SYS_BR3_PRELIM (CONFIG_SYS_BCSR_ADDR \
311 | BR_PS_8 /* 8 bit port */ \
312 | BR_MS_GPCM /* MSEL = GPCM */ \
313 | BR_V) /* valid */
314 /* 0xFA000801 */
315#define CONFIG_SYS_OR3_PRELIM (P2SZ_TO_AM(CONFIG_SYS_BCSR_SIZE) \
316 | OR_GPCM_CSNT \
317 | OR_GPCM_ACS_DIV2 \
318 | OR_GPCM_XACS \
319 | OR_GPCM_SCY_15 \
320 | OR_GPCM_TRLX_SET \
321 | OR_GPCM_EHTR_SET \
322 | OR_GPCM_EAD)
323 /* 0xFFFF8FF7 */
324#define CONFIG_SYS_LBLAWBAR3_PRELIM CONFIG_SYS_BCSR_ADDR
325#define CONFIG_SYS_LBLAWAR3_PRELIM (LBLAWAR_EN | LBLAWAR_32KB)
89c7784e
TT
326
327/* Vitesse 7385 */
328
89c7784e
TT
329#ifdef CONFIG_VSC7385_ENET
330
7d6a0982
JH
331 /* VSC7385 Base address on LCS2 */
332#define CONFIG_SYS_VSC7385_BASE 0xF0000000
333#define CONFIG_SYS_VSC7385_SIZE (128 * 1024) /* 0x00020000 */
334
335#define CONFIG_SYS_BR2_PRELIM (CONFIG_SYS_VSC7385_BASE \
336 | BR_PS_8 /* 8 bit port */ \
337 | BR_MS_GPCM /* MSEL = GPCM */ \
338 | BR_V) /* valid */
339#define CONFIG_SYS_OR2_PRELIM (P2SZ_TO_AM(CONFIG_SYS_VSC7385_SIZE) \
340 | OR_GPCM_CSNT \
341 | OR_GPCM_XACS \
342 | OR_GPCM_SCY_15 \
343 | OR_GPCM_SETA \
344 | OR_GPCM_TRLX_SET \
345 | OR_GPCM_EHTR_SET \
346 | OR_GPCM_EAD)
347 /* 0xFFFE09FF */
348
261c07bc
JH
349 /* Access window base at VSC7385 base */
350#define CONFIG_SYS_LBLAWBAR2_PRELIM CONFIG_SYS_VSC7385_BASE
7d6a0982 351#define CONFIG_SYS_LBLAWAR2_PRELIM (LBLAWAR_EN | LBLAWAR_128KB)
96b8a054 352
89c7784e 353#endif
96b8a054 354
0eaf8f9e 355#define CONFIG_MPC83XX_GPIO 1
0eaf8f9e 356
96b8a054
SW
357/*
358 * Serial Port
359 */
360#define CONFIG_CONS_INDEX 1
6d0f6bcf
JCPV
361#define CONFIG_SYS_NS16550_SERIAL
362#define CONFIG_SYS_NS16550_REG_SIZE 1
96b8a054 363
6d0f6bcf 364#define CONFIG_SYS_BAUDRATE_TABLE \
96b8a054
SW
365 {300, 600, 1200, 2400, 4800, 9600, 19200, 38400, 115200}
366
6d0f6bcf
JCPV
367#define CONFIG_SYS_NS16550_COM1 (CONFIG_SYS_IMMR+0x4500)
368#define CONFIG_SYS_NS16550_COM2 (CONFIG_SYS_IMMR+0x4600)
96b8a054 369
96b8a054 370/* I2C */
00f792e0
HS
371#define CONFIG_SYS_I2C
372#define CONFIG_SYS_I2C_FSL
373#define CONFIG_SYS_FSL_I2C_SPEED 400000
374#define CONFIG_SYS_FSL_I2C_SLAVE 0x7F
375#define CONFIG_SYS_FSL_I2C_OFFSET 0x3000
376#define CONFIG_SYS_FSL_I2C2_SPEED 400000
377#define CONFIG_SYS_FSL_I2C2_SLAVE 0x7F
378#define CONFIG_SYS_FSL_I2C2_OFFSET 0x3100
379#define CONFIG_SYS_I2C_NOPROBES { {0, 0x69} }
96b8a054 380
96b8a054
SW
381/*
382 * General PCI
383 * Addresses are mapped 1-1.
384 */
6d0f6bcf
JCPV
385#define CONFIG_SYS_PCI1_MEM_BASE 0x80000000
386#define CONFIG_SYS_PCI1_MEM_PHYS CONFIG_SYS_PCI1_MEM_BASE
387#define CONFIG_SYS_PCI1_MEM_SIZE 0x10000000 /* 256M */
388#define CONFIG_SYS_PCI1_MMIO_BASE 0x90000000
389#define CONFIG_SYS_PCI1_MMIO_PHYS CONFIG_SYS_PCI1_MMIO_BASE
390#define CONFIG_SYS_PCI1_MMIO_SIZE 0x10000000 /* 256M */
391#define CONFIG_SYS_PCI1_IO_BASE 0x00000000
392#define CONFIG_SYS_PCI1_IO_PHYS 0xE2000000
393#define CONFIG_SYS_PCI1_IO_SIZE 0x00100000 /* 1M */
96b8a054 394
6d0f6bcf 395#define CONFIG_SYS_PCI_SUBSYS_VENDORID 0x1057 /* Motorola */
96b8a054
SW
396
397/*
89c7784e 398 * TSEC
96b8a054
SW
399 */
400#define CONFIG_TSEC_ENET /* TSEC ethernet support */
401
89c7784e 402#define CONFIG_GMII /* MII PHY management */
96b8a054 403
89c7784e
TT
404#ifdef CONFIG_TSEC1
405#define CONFIG_HAS_ETH0
255a3577 406#define CONFIG_TSEC1_NAME "TSEC0"
6d0f6bcf 407#define CONFIG_SYS_TSEC1_OFFSET 0x24000
89c7784e
TT
408#define TSEC1_PHY_ADDR 0x1c
409#define TSEC1_FLAGS TSEC_GIGABIT
410#define TSEC1_PHYIDX 0
411#endif
412
413#ifdef CONFIG_TSEC2
414#define CONFIG_HAS_ETH1
255a3577 415#define CONFIG_TSEC2_NAME "TSEC1"
6d0f6bcf 416#define CONFIG_SYS_TSEC2_OFFSET 0x25000
89c7784e
TT
417#define TSEC2_PHY_ADDR 4
418#define TSEC2_FLAGS TSEC_GIGABIT
419#define TSEC2_PHYIDX 0
420#endif
421
96b8a054
SW
422/* Options are: TSEC[0-1] */
423#define CONFIG_ETHPRIME "TSEC1"
424
425/*
426 * Configure on-board RTC
427 */
428#define CONFIG_RTC_DS1337
6d0f6bcf 429#define CONFIG_SYS_I2C_RTC_ADDR 0x68
96b8a054
SW
430
431/*
432 * Environment
433 */
22f4442d 434#if defined(CONFIG_NAND)
51bfee19 435 #define CONFIG_ENV_IS_IN_NAND 1
0e8d1586 436 #define CONFIG_ENV_OFFSET (512 * 1024)
6d0f6bcf 437 #define CONFIG_ENV_SECT_SIZE CONFIG_SYS_NAND_BLOCK_SIZE
0e8d1586
JCPV
438 #define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
439 #define CONFIG_ENV_SIZE_REDUND CONFIG_ENV_SIZE
440 #define CONFIG_ENV_RANGE (CONFIG_ENV_SECT_SIZE * 4)
261c07bc
JH
441 #define CONFIG_ENV_OFFSET_REDUND \
442 (CONFIG_ENV_OFFSET + CONFIG_ENV_RANGE)
6d0f6bcf 443#elif !defined(CONFIG_SYS_RAMBOOT)
5a1aceb0 444 #define CONFIG_ENV_IS_IN_FLASH 1
261c07bc
JH
445 #define CONFIG_ENV_ADDR \
446 (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
0e8d1586
JCPV
447 #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K(one sector) for env */
448 #define CONFIG_ENV_SIZE 0x2000
96b8a054
SW
449
450/* Address and size of Redundant Environment Sector */
451#else
93f6d725 452 #define CONFIG_ENV_IS_NOWHERE 1 /* Store ENV in memory only */
6d0f6bcf 453 #define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE - 0x1000)
0e8d1586 454 #define CONFIG_ENV_SIZE 0x2000
96b8a054
SW
455#endif
456
457#define CONFIG_LOADS_ECHO 1 /* echo on for serial download */
6d0f6bcf 458#define CONFIG_SYS_LOADS_BAUD_CHANGE 1 /* allow baudrate change */
96b8a054 459
079a136c
JL
460/*
461 * BOOTP options
462 */
463#define CONFIG_BOOTP_BOOTFILESIZE
464#define CONFIG_BOOTP_BOOTPATH
465#define CONFIG_BOOTP_GATEWAY
466#define CONFIG_BOOTP_HOSTNAME
467
8ea5499a
JL
468/*
469 * Command line configuration.
470 */
8ea5499a 471#define CONFIG_CMD_PCI
96b8a054 472
8ea5499a 473#define CONFIG_CMDLINE_EDITING 1
a059e90e 474#define CONFIG_AUTO_COMPLETE /* add autocompletion support */
96b8a054
SW
475
476/*
477 * Miscellaneous configurable options
478 */
6d0f6bcf
JCPV
479#define CONFIG_SYS_LONGHELP /* undef to save memory */
480#define CONFIG_SYS_LOAD_ADDR 0x2000000 /* default load address */
6d0f6bcf 481#define CONFIG_SYS_CBSIZE 1024 /* Console I/O Buffer Size */
96b8a054 482
261c07bc
JH
483 /* Print Buffer Size */
484#define CONFIG_SYS_PBSIZE \
485 (CONFIG_SYS_CBSIZE+sizeof(CONFIG_SYS_PROMPT)+16)
486#define CONFIG_SYS_MAXARGS 16 /* max number of command args */
487 /* Boot Argument Buffer Size */
488#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE
96b8a054
SW
489
490/*
491 * For booting Linux, the board info and command line data
9f530d59 492 * have to be in the first 256 MB of memory, since this is
96b8a054
SW
493 * the maximum mapped by the Linux kernel during initialization.
494 */
261c07bc
JH
495 /* Initial Memory map for Linux*/
496#define CONFIG_SYS_BOOTMAPSZ (256 << 20)
63865278 497#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
96b8a054 498
6d0f6bcf 499#define CONFIG_SYS_RCWH_PCIHOST 0x80000000 /* PCIHOST */
96b8a054 500
6d0f6bcf 501#ifdef CONFIG_SYS_66MHZ
96b8a054
SW
502
503/* 66MHz IN, 133MHz CSB, 266 DDR, 266 CORE */
504/* 0x62040000 */
6d0f6bcf 505#define CONFIG_SYS_HRCW_LOW (\
96b8a054
SW
506 0x20000000 /* reserved, must be set */ |\
507 HRCWL_DDRCM |\
508 HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\
509 HRCWL_DDR_TO_SCB_CLK_2X1 |\
510 HRCWL_CSB_TO_CLKIN_2X1 |\
511 HRCWL_CORE_TO_CSB_2X1)
512
6d0f6bcf 513#define CONFIG_SYS_NS16550_CLK (CONFIG_83XX_CLKIN * 2)
e4c09508 514
6d0f6bcf 515#elif defined(CONFIG_SYS_33MHZ)
96b8a054
SW
516
517/* 33MHz IN, 165MHz CSB, 330 DDR, 330 CORE */
518/* 0x65040000 */
6d0f6bcf 519#define CONFIG_SYS_HRCW_LOW (\
96b8a054
SW
520 0x20000000 /* reserved, must be set */ |\
521 HRCWL_DDRCM |\
522 HRCWL_LCL_BUS_TO_SCB_CLK_1X1 |\
523 HRCWL_DDR_TO_SCB_CLK_2X1 |\
524 HRCWL_CSB_TO_CLKIN_5X1 |\
525 HRCWL_CORE_TO_CSB_2X1)
526
6d0f6bcf 527#define CONFIG_SYS_NS16550_CLK (CONFIG_83XX_CLKIN * 5)
e4c09508 528
96b8a054
SW
529#endif
530
6d0f6bcf 531#define CONFIG_SYS_HRCW_HIGH_BASE (\
96b8a054
SW
532 HRCWH_PCI_HOST |\
533 HRCWH_PCI1_ARBITER_ENABLE |\
534 HRCWH_CORE_ENABLE |\
96b8a054
SW
535 HRCWH_BOOTSEQ_DISABLE |\
536 HRCWH_SW_WATCHDOG_DISABLE |\
96b8a054
SW
537 HRCWH_TSEC1M_IN_RGMII |\
538 HRCWH_TSEC2M_IN_RGMII |\
e4c09508
SW
539 HRCWH_BIG_ENDIAN)
540
22f4442d 541#ifdef CONFIG_NAND
6d0f6bcf 542#define CONFIG_SYS_HRCW_HIGH (CONFIG_SYS_HRCW_HIGH_BASE |\
4b070809
WD
543 HRCWH_FROM_0XFFF00100 |\
544 HRCWH_ROM_LOC_NAND_SP_8BIT |\
545 HRCWH_RL_EXT_NAND)
e4c09508 546#else
6d0f6bcf 547#define CONFIG_SYS_HRCW_HIGH (CONFIG_SYS_HRCW_HIGH_BASE |\
4b070809
WD
548 HRCWH_FROM_0X00000100 |\
549 HRCWH_ROM_LOC_LOCAL_16BIT |\
550 HRCWH_RL_EXT_LEGACY)
e4c09508 551#endif
96b8a054
SW
552
553/* System IO Config */
6d0f6bcf 554#define CONFIG_SYS_SICRH (SICRH_TSOBI1 | SICRH_TSOBI2) /* RGMII */
0eaf8f9e
JH
555 /* Enable Internal USB Phy and GPIO on LCD Connector */
556#define CONFIG_SYS_SICRL (SICRL_USBDR_10 | SICRL_LBC)
96b8a054 557
6d0f6bcf
JCPV
558#define CONFIG_SYS_HID0_INIT 0x000000000
559#define CONFIG_SYS_HID0_FINAL (HID0_ENABLE_MACHINE_CHECK | \
1a2e203b
KP
560 HID0_ENABLE_INSTRUCTION_CACHE | \
561 HID0_ENABLE_DYNAMIC_POWER_MANAGMENT)
96b8a054 562
6d0f6bcf 563#define CONFIG_SYS_HID2 HID2_HBE
96b8a054 564
31d82672
BB
565#define CONFIG_HIGH_BATS 1 /* High BATs supported */
566
96b8a054 567/* DDR @ 0x00000000 */
72cd4087 568#define CONFIG_SYS_IBAT0L (CONFIG_SYS_SDRAM_BASE | BATL_PP_RW)
261c07bc
JH
569#define CONFIG_SYS_IBAT0U (CONFIG_SYS_SDRAM_BASE \
570 | BATU_BL_256M \
571 | BATU_VS \
572 | BATU_VP)
96b8a054
SW
573
574/* PCI @ 0x80000000 */
72cd4087 575#define CONFIG_SYS_IBAT1L (CONFIG_SYS_PCI1_MEM_BASE | BATL_PP_RW)
261c07bc
JH
576#define CONFIG_SYS_IBAT1U (CONFIG_SYS_PCI1_MEM_BASE \
577 | BATU_BL_256M \
578 | BATU_VS \
579 | BATU_VP)
580#define CONFIG_SYS_IBAT2L (CONFIG_SYS_PCI1_MMIO_BASE \
72cd4087 581 | BATL_PP_RW \
261c07bc
JH
582 | BATL_CACHEINHIBIT \
583 | BATL_GUARDEDSTORAGE)
584#define CONFIG_SYS_IBAT2U (CONFIG_SYS_PCI1_MMIO_BASE \
585 | BATU_BL_256M \
586 | BATU_VS \
587 | BATU_VP)
96b8a054
SW
588
589/* PCI2 not supported on 8313 */
6d0f6bcf
JCPV
590#define CONFIG_SYS_IBAT3L (0)
591#define CONFIG_SYS_IBAT3U (0)
592#define CONFIG_SYS_IBAT4L (0)
593#define CONFIG_SYS_IBAT4U (0)
96b8a054
SW
594
595/* IMMRBAR @ 0xE0000000, PCI IO @ 0xE2000000 & BCSR @ 0xE2400000 */
261c07bc 596#define CONFIG_SYS_IBAT5L (CONFIG_SYS_IMMR \
72cd4087 597 | BATL_PP_RW \
261c07bc
JH
598 | BATL_CACHEINHIBIT \
599 | BATL_GUARDEDSTORAGE)
600#define CONFIG_SYS_IBAT5U (CONFIG_SYS_IMMR \
601 | BATU_BL_256M \
602 | BATU_VS \
603 | BATU_VP)
96b8a054
SW
604
605/* SDRAM @ 0xF0000000, stack in DCACHE 0xFDF00000 & FLASH @ 0xFE000000 */
72cd4087 606#define CONFIG_SYS_IBAT6L (0xF0000000 | BATL_PP_RW | BATL_GUARDEDSTORAGE)
6d0f6bcf
JCPV
607#define CONFIG_SYS_IBAT6U (0xF0000000 | BATU_BL_256M | BATU_VS | BATU_VP)
608
609#define CONFIG_SYS_IBAT7L (0)
610#define CONFIG_SYS_IBAT7U (0)
611
612#define CONFIG_SYS_DBAT0L CONFIG_SYS_IBAT0L
613#define CONFIG_SYS_DBAT0U CONFIG_SYS_IBAT0U
614#define CONFIG_SYS_DBAT1L CONFIG_SYS_IBAT1L
615#define CONFIG_SYS_DBAT1U CONFIG_SYS_IBAT1U
616#define CONFIG_SYS_DBAT2L CONFIG_SYS_IBAT2L
617#define CONFIG_SYS_DBAT2U CONFIG_SYS_IBAT2U
618#define CONFIG_SYS_DBAT3L CONFIG_SYS_IBAT3L
619#define CONFIG_SYS_DBAT3U CONFIG_SYS_IBAT3U
620#define CONFIG_SYS_DBAT4L CONFIG_SYS_IBAT4L
621#define CONFIG_SYS_DBAT4U CONFIG_SYS_IBAT4U
622#define CONFIG_SYS_DBAT5L CONFIG_SYS_IBAT5L
623#define CONFIG_SYS_DBAT5U CONFIG_SYS_IBAT5U
624#define CONFIG_SYS_DBAT6L CONFIG_SYS_IBAT6L
625#define CONFIG_SYS_DBAT6U CONFIG_SYS_IBAT6U
626#define CONFIG_SYS_DBAT7L CONFIG_SYS_IBAT7L
627#define CONFIG_SYS_DBAT7U CONFIG_SYS_IBAT7U
96b8a054 628
96b8a054
SW
629/*
630 * Environment Configuration
631 */
632#define CONFIG_ENV_OVERWRITE
633
261c07bc 634#define CONFIG_NETDEV "eth1"
96b8a054
SW
635
636#define CONFIG_HOSTNAME mpc8313erdb
8b3637c6 637#define CONFIG_ROOTPATH "/nfs/root/path"
b3f44c21 638#define CONFIG_BOOTFILE "uImage"
261c07bc
JH
639 /* U-Boot image on TFTP server */
640#define CONFIG_UBOOTPATH "u-boot.bin"
641#define CONFIG_FDTFILE "mpc8313erdb.dtb"
96b8a054 642
261c07bc
JH
643 /* default location for tftp and bootm */
644#define CONFIG_LOADADDR 800000
96b8a054 645
96b8a054 646#define CONFIG_EXTRA_ENV_SETTINGS \
261c07bc 647 "netdev=" CONFIG_NETDEV "\0" \
96b8a054 648 "ethprime=TSEC1\0" \
261c07bc 649 "uboot=" CONFIG_UBOOTPATH "\0" \
53677ef1 650 "tftpflash=tftpboot $loadaddr $uboot; " \
5368c55d
MV
651 "protect off " __stringify(CONFIG_SYS_TEXT_BASE) \
652 " +$filesize; " \
653 "erase " __stringify(CONFIG_SYS_TEXT_BASE) \
654 " +$filesize; " \
655 "cp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
656 " $filesize; " \
657 "protect on " __stringify(CONFIG_SYS_TEXT_BASE) \
658 " +$filesize; " \
659 "cmp.b $loadaddr " __stringify(CONFIG_SYS_TEXT_BASE) \
660 " $filesize\0" \
79f516bc 661 "fdtaddr=780000\0" \
261c07bc 662 "fdtfile=" CONFIG_FDTFILE "\0" \
96b8a054
SW
663 "console=ttyS0\0" \
664 "setbootargs=setenv bootargs " \
665 "root=$rootdev rw console=$console,$baudrate $othbootargs\0" \
53677ef1 666 "setipargs=setenv bootargs nfsroot=$serverip:$rootpath " \
261c07bc
JH
667 "ip=$ipaddr:$serverip:$gatewayip:$netmask:$hostname:"\
668 "$netdev:off " \
96b8a054
SW
669 "root=$rootdev rw console=$console,$baudrate $othbootargs\0"
670
671#define CONFIG_NFSBOOTCOMMAND \
672 "setenv rootdev /dev/nfs;" \
53677ef1
WD
673 "run setbootargs;" \
674 "run setipargs;" \
96b8a054
SW
675 "tftp $loadaddr $bootfile;" \
676 "tftp $fdtaddr $fdtfile;" \
677 "bootm $loadaddr - $fdtaddr"
678
679#define CONFIG_RAMBOOTCOMMAND \
680 "setenv rootdev /dev/ram;" \
681 "run setbootargs;" \
682 "tftp $ramdiskaddr $ramdiskfile;" \
683 "tftp $loadaddr $bootfile;" \
684 "tftp $fdtaddr $fdtfile;" \
685 "bootm $loadaddr $ramdiskaddr $fdtaddr"
686
96b8a054 687#endif /* __CONFIG_H */