blob: fcaf3e67c7568b9b7b22365f9387235e3acec8b7 [file] [log] [blame]
stroese771e05b2004-12-16 18:21:17 +00001/*
2 * (C) Copyright 2001
3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
stroese771e05b2004-12-16 18:21:17 +00006 *
7 * modifications for the DB64360 eval board based by Ingo.Assmus@keymile.com
8 * modifications for the cpci750 by reinhard.arlt@esd-electronics.com
9 */
10
11/*
12 * cpci750.c - main board support/init for the esd cpci750.
13 */
14
15#include <common.h>
Stefan Roesed5ea2872007-01-31 16:38:04 +010016#include <command.h>
stroese771e05b2004-12-16 18:21:17 +000017#include <74xx_7xx.h>
18#include "../../Marvell/include/memory.h"
19#include "../../Marvell/include/pci.h"
20#include "../../Marvell/include/mv_gen_reg.h"
21#include <net.h>
22
23#include "eth.h"
24#include "mpsc.h"
25#include "i2c.h"
26#include "64360.h"
27#include "mv_regs.h"
28
29#undef DEBUG
30/*#define DEBUG */
31
32#ifdef CONFIG_PCI
33#define MAP_PCI
34#endif /* of CONFIG_PCI */
35
36#ifdef DEBUG
37#define DP(x) x
38#else
39#define DP(x)
40#endif
41
Stefan Roese2d780742007-06-22 17:32:28 +020042static char show_config_tab[][15] = {{"PCI0DLL_2 "}, /* 31 */
43 {"PCI0DLL_1 "}, /* 30 */
44 {"PCI0DLL_0 "}, /* 29 */
45 {"PCI1DLL_2 "}, /* 28 */
46 {"PCI1DLL_1 "}, /* 27 */
47 {"PCI1DLL_0 "}, /* 26 */
48 {"BbEP2En "}, /* 25 */
49 {"SDRAMRdDataDel"}, /* 24 */
50 {"SDRAMRdDel "}, /* 23 */
51 {"SDRAMSync "}, /* 22 */
52 {"SDRAMPipeSel_1"}, /* 21 */
53 {"SDRAMPipeSel_0"}, /* 20 */
54 {"SDRAMAddDel "}, /* 19 */
55 {"SDRAMClkSel "}, /* 18 */
56 {"Reserved(1!) "}, /* 17 */
57 {"PCIRty "}, /* 16 */
58 {"BootCSWidth_1 "}, /* 15 */
59 {"BootCSWidth_0 "}, /* 14 */
60 {"PCI1PadsCal "}, /* 13 */
61 {"PCI0PadsCal "}, /* 12 */
62 {"MultiMVId_1 "}, /* 11 */
63 {"MultiMVId_0 "}, /* 10 */
64 {"MultiGTEn "}, /* 09 */
65 {"Int60xArb "}, /* 08 */
66 {"CPUBusConfig_1"}, /* 07 */
67 {"CPUBusConfig_0"}, /* 06 */
68 {"DefIntSpc "}, /* 05 */
69 {0 }, /* 04 */
70 {"SROMAdd_1 "}, /* 03 */
71 {"SROMAdd_0 "}, /* 02 */
72 {"DRAMPadCal "}, /* 01 */
73 {"SInitEn "}, /* 00 */
74 {0 }, /* 31 */
75 {0 }, /* 30 */
76 {0 }, /* 29 */
77 {0 }, /* 28 */
78 {0 }, /* 27 */
79 {0 }, /* 26 */
80 {0 }, /* 25 */
81 {0 }, /* 24 */
82 {0 }, /* 23 */
83 {0 }, /* 22 */
84 {"JTAGCalBy "}, /* 21 */
85 {"GB2Sel "}, /* 20 */
86 {"GB1Sel "}, /* 19 */
87 {"DRAMPLL_MDiv_5"}, /* 18 */
88 {"DRAMPLL_MDiv_4"}, /* 17 */
89 {"DRAMPLL_MDiv_3"}, /* 16 */
90 {"DRAMPLL_MDiv_2"}, /* 15 */
91 {"DRAMPLL_MDiv_1"}, /* 14 */
92 {"DRAMPLL_MDiv_0"}, /* 13 */
93 {"GB0Sel "}, /* 12 */
94 {"DRAMPLLPU "}, /* 11 */
95 {"DRAMPLL_HIKVCO"}, /* 10 */
96 {"DRAMPLLNP "}, /* 09 */
97 {"DRAMPLL_NDiv_7"}, /* 08 */
98 {"DRAMPLL_NDiv_6"}, /* 07 */
99 {"CPUPadCal "}, /* 06 */
100 {"DRAMPLL_NDiv_5"}, /* 05 */
101 {"DRAMPLL_NDiv_4"}, /* 04 */
102 {"DRAMPLL_NDiv_3"}, /* 03 */
103 {"DRAMPLL_NDiv_2"}, /* 02 */
104 {"DRAMPLL_NDiv_1"}, /* 01 */
105 {"DRAMPLL_NDiv_0"}}; /* 00 */
106
Stefan Roese79830d52006-02-08 15:54:15 +0100107extern flash_info_t flash_info[];
stroese771e05b2004-12-16 18:21:17 +0000108
Stefan Roese0e5ef072009-06-04 13:35:36 +0200109extern int do_bootvx (cmd_tbl_t *, int, int, char *[]);
110
stroese771e05b2004-12-16 18:21:17 +0000111/* ------------------------------------------------------------------------- */
112
113/* this is the current GT register space location */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114/* it starts at CONFIG_SYS_DFL_GT_REGS but moves later to CONFIG_SYS_GT_REGS */
stroese771e05b2004-12-16 18:21:17 +0000115
116/* Unfortunately, we cant change it while we are in flash, so we initialize it
117 * to the "final" value. This means that any debug_led calls before
118 * board_early_init_f wont work right (like in cpu_init_f).
119 * See also my_remap_gt_regs below. (NTL)
120 */
121
122void board_prebootm_init (void);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200123unsigned int INTERNAL_REG_BASE_ADDR = CONFIG_SYS_GT_REGS;
stroese771e05b2004-12-16 18:21:17 +0000124int display_mem_map (void);
125
Stefan Roese58f10462009-06-04 13:35:39 +0200126/*
127 * Skip video initialization on slave variant.
128 * This function will overwrite the weak default in cfb_console.c
129 */
130int board_video_skip(void)
131{
132 return CPCI750_SLAVE_TEST;
133}
134
stroese771e05b2004-12-16 18:21:17 +0000135/* ------------------------------------------------------------------------- */
136
137/*
138 * This is a version of the GT register space remapping function that
139 * doesn't touch globals (meaning, it's ok to run from flash.)
140 *
141 * Unfortunately, this has the side effect that a writable
142 * INTERNAL_REG_BASE_ADDR is impossible. Oh well.
143 */
144
145void my_remap_gt_regs (u32 cur_loc, u32 new_loc)
146{
147 u32 temp;
148
149 /* check and see if it's already moved */
150
151/* original ppcboot 1.1.6 source
152
153 temp = in_le32((u32 *)(new_loc + INTERNAL_SPACE_DECODE));
154 if ((temp & 0xffff) == new_loc >> 20)
155 return;
156
157 temp = (in_le32((u32 *)(cur_loc + INTERNAL_SPACE_DECODE)) &
158 0xffff0000) | (new_loc >> 20);
159
160 out_le32((u32 *)(cur_loc + INTERNAL_SPACE_DECODE), temp);
161
162 while (GTREGREAD(INTERNAL_SPACE_DECODE) != temp);
163original ppcboot 1.1.6 source end */
164
165 temp = in_le32 ((u32 *) (new_loc + INTERNAL_SPACE_DECODE));
166 if ((temp & 0xffff) == new_loc >> 16)
167 return;
168
169 temp = (in_le32 ((u32 *) (cur_loc + INTERNAL_SPACE_DECODE)) &
170 0xffff0000) | (new_loc >> 16);
171
172 out_le32 ((u32 *) (cur_loc + INTERNAL_SPACE_DECODE), temp);
173
174 while (GTREGREAD (INTERNAL_SPACE_DECODE) != temp);
175}
176
177#ifdef CONFIG_PCI
178
179static void gt_pci_config (void)
180{
181 unsigned int stat;
Stefan Roeseae7a2732009-06-05 05:45:41 +0200182 unsigned int data;
stroese771e05b2004-12-16 18:21:17 +0000183 unsigned int val = 0x00fff864; /* DINK32: BusNum 23:16, DevNum 15:11, FuncNum 10:8, RegNum 7:2 */
184
185 /* In PCIX mode devices provide their own bus and device numbers. We query the Discovery II's
186 * config registers by writing ones to the bus and device.
187 * We then update the Virtual register with the correct value for the bus and device.
188 */
189 if ((GTREGREAD (PCI_0_MODE) & (BIT4 | BIT5)) != 0) { /*if PCI-X */
190 GT_REG_WRITE (PCI_0_CONFIG_ADDR, BIT31 | val);
191
192 GT_REG_READ (PCI_0_CONFIG_DATA_VIRTUAL_REG, &stat);
193
194 GT_REG_WRITE (PCI_0_CONFIG_ADDR, BIT31 | val);
195 GT_REG_WRITE (PCI_0_CONFIG_DATA_VIRTUAL_REG,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200196 (stat & 0xffff0000) | CONFIG_SYS_PCI_IDSEL);
stroese771e05b2004-12-16 18:21:17 +0000197
198 }
199 if ((GTREGREAD (PCI_1_MODE) & (BIT4 | BIT5)) != 0) { /*if PCI-X */
200 GT_REG_WRITE (PCI_1_CONFIG_ADDR, BIT31 | val);
201 GT_REG_READ (PCI_1_CONFIG_DATA_VIRTUAL_REG, &stat);
202
203 GT_REG_WRITE (PCI_1_CONFIG_ADDR, BIT31 | val);
204 GT_REG_WRITE (PCI_1_CONFIG_DATA_VIRTUAL_REG,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200205 (stat & 0xffff0000) | CONFIG_SYS_PCI_IDSEL);
stroese771e05b2004-12-16 18:21:17 +0000206 }
207
208 /* Enable master */
209 PCI_MASTER_ENABLE (0, SELF);
210 PCI_MASTER_ENABLE (1, SELF);
211
212 /* Enable PCI0/1 Mem0 and IO 0 disable all others */
213 GT_REG_READ (BASE_ADDR_ENABLE, &stat);
214 stat |= (1 << 11) | (1 << 12) | (1 << 13) | (1 << 16) | (1 << 17) | (1
215 <<
216 18);
217 stat &= ~((1 << 9) | (1 << 10) | (1 << 14) | (1 << 15));
218 GT_REG_WRITE (BASE_ADDR_ENABLE, stat);
219
220 /* ronen- add write to pci remap registers for 64460.
221 in 64360 when writing to pci base go and overide remap automaticaly,
222 in 64460 it doesn't */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200223 GT_REG_WRITE (PCI_0_IO_BASE_ADDR, CONFIG_SYS_PCI0_IO_SPACE >> 16);
224 GT_REG_WRITE (PCI_0I_O_ADDRESS_REMAP, CONFIG_SYS_PCI0_IO_SPACE_PCI >> 16);
225 GT_REG_WRITE (PCI_0_IO_SIZE, (CONFIG_SYS_PCI0_IO_SIZE - 1) >> 16);
stroese771e05b2004-12-16 18:21:17 +0000226
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200227 GT_REG_WRITE (PCI_0_MEMORY0_BASE_ADDR, CONFIG_SYS_PCI0_MEM_BASE >> 16);
228 GT_REG_WRITE (PCI_0MEMORY0_ADDRESS_REMAP, CONFIG_SYS_PCI0_MEM_BASE >> 16);
229 GT_REG_WRITE (PCI_0_MEMORY0_SIZE, (CONFIG_SYS_PCI0_MEM_SIZE - 1) >> 16);
stroese771e05b2004-12-16 18:21:17 +0000230
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200231 GT_REG_WRITE (PCI_1_IO_BASE_ADDR, CONFIG_SYS_PCI1_IO_SPACE >> 16);
232 GT_REG_WRITE (PCI_1I_O_ADDRESS_REMAP, CONFIG_SYS_PCI1_IO_SPACE_PCI >> 16);
233 GT_REG_WRITE (PCI_1_IO_SIZE, (CONFIG_SYS_PCI1_IO_SIZE - 1) >> 16);
stroese771e05b2004-12-16 18:21:17 +0000234
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235 GT_REG_WRITE (PCI_1_MEMORY0_BASE_ADDR, CONFIG_SYS_PCI1_MEM_BASE >> 16);
236 GT_REG_WRITE (PCI_1MEMORY0_ADDRESS_REMAP, CONFIG_SYS_PCI1_MEM_BASE >> 16);
237 GT_REG_WRITE (PCI_1_MEMORY0_SIZE, (CONFIG_SYS_PCI1_MEM_SIZE - 1) >> 16);
stroese771e05b2004-12-16 18:21:17 +0000238
239 /* PCI interface settings */
240 /* Timeout set to retry forever */
241 GT_REG_WRITE (PCI_0TIMEOUT_RETRY, 0x0);
242 GT_REG_WRITE (PCI_1TIMEOUT_RETRY, 0x0);
243
244 /* ronen - enable only CS0 and Internal reg!! */
245 GT_REG_WRITE (PCI_0BASE_ADDRESS_REGISTERS_ENABLE, 0xfffffdfe);
246 GT_REG_WRITE (PCI_1BASE_ADDRESS_REGISTERS_ENABLE, 0xfffffdfe);
247
248/*ronen update the pci internal registers base address.*/
249#ifdef MAP_PCI
Stefan Roeseae7a2732009-06-05 05:45:41 +0200250 for (stat = 0; stat <= PCI_HOST1; stat++) {
251 data = pciReadConfigReg(stat,
252 PCI_INTERNAL_REGISTERS_MEMORY_MAPPED_BASE_ADDRESS,
253 SELF);
254 data = (data & 0x0f) | CONFIG_SYS_GT_REGS;
stroese771e05b2004-12-16 18:21:17 +0000255 pciWriteConfigReg (stat,
256 PCI_INTERNAL_REGISTERS_MEMORY_MAPPED_BASE_ADDRESS,
Stefan Roeseae7a2732009-06-05 05:45:41 +0200257 SELF, data);
258 }
stroese771e05b2004-12-16 18:21:17 +0000259#endif
260
261}
262#endif
263
264/* Setup CPU interface paramaters */
265static void gt_cpu_config (void)
266{
267 cpu_t cpu = get_cpu_type ();
268 ulong tmp;
269
270 /* cpu configuration register */
271 tmp = GTREGREAD (CPU_CONFIGURATION);
272
273 /* set the SINGLE_CPU bit see MV64360 P.399 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200274#ifndef CONFIG_SYS_GT_DUAL_CPU /* SINGLE_CPU seems to cause JTAG problems */
stroese771e05b2004-12-16 18:21:17 +0000275 tmp |= CPU_CONF_SINGLE_CPU;
276#endif
277
278 tmp &= ~CPU_CONF_AACK_DELAY_2;
279
280 tmp |= CPU_CONF_DP_VALID;
281 tmp |= CPU_CONF_AP_VALID;
282
283 tmp |= CPU_CONF_PIPELINE;
284
285 GT_REG_WRITE (CPU_CONFIGURATION, tmp); /* Marvell (VXWorks) writes 0x20220FF */
286
287 /* CPU master control register */
288 tmp = GTREGREAD (CPU_MASTER_CONTROL);
289
290 tmp |= CPU_MAST_CTL_ARB_EN;
291
292 if ((cpu == CPU_7400) ||
293 (cpu == CPU_7410) || (cpu == CPU_7455) || (cpu == CPU_7450)) {
294
295 tmp |= CPU_MAST_CTL_CLEAN_BLK;
296 tmp |= CPU_MAST_CTL_FLUSH_BLK;
297
298 } else {
299 /* cleanblock must be cleared for CPUs
300 * that do not support this command (603e, 750)
301 * see Res#1 */
302 tmp &= ~CPU_MAST_CTL_CLEAN_BLK;
303 tmp &= ~CPU_MAST_CTL_FLUSH_BLK;
304 }
305 GT_REG_WRITE (CPU_MASTER_CONTROL, tmp);
306}
307
308/*
309 * board_early_init_f.
310 *
311 * set up gal. device mappings, etc.
312 */
313int board_early_init_f (void)
314{
315
316 /*
317 * set up the GT the way the kernel wants it
318 * the call to move the GT register space will obviously
319 * fail if it has already been done, but we're going to assume
320 * that if it's not at the power-on location, it's where we put
321 * it last time. (huber)
322 */
323
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200324 my_remap_gt_regs (CONFIG_SYS_DFL_GT_REGS, CONFIG_SYS_GT_REGS);
stroese771e05b2004-12-16 18:21:17 +0000325
326 /* No PCI in first release of Port To_do: enable it. */
327#ifdef CONFIG_PCI
328 gt_pci_config ();
329#endif
330 /* mask all external interrupt sources */
331 GT_REG_WRITE (CPU_INTERRUPT_MASK_REGISTER_LOW, 0);
332 GT_REG_WRITE (CPU_INTERRUPT_MASK_REGISTER_HIGH, 0);
333 /* new in MV6436x */
334 GT_REG_WRITE (CPU_INTERRUPT_1_MASK_REGISTER_LOW, 0);
335 GT_REG_WRITE (CPU_INTERRUPT_1_MASK_REGISTER_HIGH, 0);
336 /* --------------------- */
337 GT_REG_WRITE (PCI_0INTERRUPT_CAUSE_MASK_REGISTER_LOW, 0);
338 GT_REG_WRITE (PCI_0INTERRUPT_CAUSE_MASK_REGISTER_HIGH, 0);
339 GT_REG_WRITE (PCI_1INTERRUPT_CAUSE_MASK_REGISTER_LOW, 0);
340 GT_REG_WRITE (PCI_1INTERRUPT_CAUSE_MASK_REGISTER_HIGH, 0);
341 /* does not exist in MV6436x
342 GT_REG_WRITE(CPU_INT_0_MASK, 0);
343 GT_REG_WRITE(CPU_INT_1_MASK, 0);
344 GT_REG_WRITE(CPU_INT_2_MASK, 0);
345 GT_REG_WRITE(CPU_INT_3_MASK, 0);
346 --------------------- */
347
348
349 /* ----- DEVICE BUS SETTINGS ------ */
350
351 /*
352 * EVB
353 * 0 - SRAM ????
354 * 1 - RTC ????
355 * 2 - UART ????
356 * 3 - Flash checked 32Bit Intel Strata
357 * boot - BootCS checked 8Bit 29LV040B
358 *
359 */
360
361 /*
362 * the dual 7450 module requires burst access to the boot
363 * device, so the serial rom copies the boot device to the
364 * on-board sram on the eval board, and updates the correct
365 * registers to boot from the sram. (device0)
366 */
367
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200368 memoryMapDeviceSpace (DEVICE0, CONFIG_SYS_DEV0_SPACE, CONFIG_SYS_DEV0_SIZE);
369 memoryMapDeviceSpace (DEVICE1, CONFIG_SYS_DEV1_SPACE, CONFIG_SYS_DEV1_SIZE);
370 memoryMapDeviceSpace (DEVICE2, CONFIG_SYS_DEV2_SPACE, CONFIG_SYS_DEV2_SIZE);
371 memoryMapDeviceSpace (DEVICE3, CONFIG_SYS_DEV3_SPACE, CONFIG_SYS_DEV3_SIZE);
stroese771e05b2004-12-16 18:21:17 +0000372
373
374 /* configure device timing */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200375 GT_REG_WRITE (DEVICE_BANK0PARAMETERS, CONFIG_SYS_DEV0_PAR);
376 GT_REG_WRITE (DEVICE_BANK1PARAMETERS, CONFIG_SYS_DEV1_PAR);
377 GT_REG_WRITE (DEVICE_BANK2PARAMETERS, CONFIG_SYS_DEV2_PAR);
378 GT_REG_WRITE (DEVICE_BANK3PARAMETERS, CONFIG_SYS_DEV3_PAR);
stroese771e05b2004-12-16 18:21:17 +0000379
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200380#ifdef CONFIG_SYS_32BIT_BOOT_PAR /* set port parameters for Flash device module access */
stroese771e05b2004-12-16 18:21:17 +0000381 /* detect if we are booting from the 32 bit flash */
382 if (GTREGREAD (DEVICE_BOOT_BANK_PARAMETERS) & (0x3 << 20)) {
383 /* 32 bit boot flash */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200384 GT_REG_WRITE (DEVICE_BANK3PARAMETERS, CONFIG_SYS_8BIT_BOOT_PAR);
stroese771e05b2004-12-16 18:21:17 +0000385 GT_REG_WRITE (DEVICE_BOOT_BANK_PARAMETERS,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200386 CONFIG_SYS_32BIT_BOOT_PAR);
stroese771e05b2004-12-16 18:21:17 +0000387 } else {
388 /* 8 bit boot flash */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200389 GT_REG_WRITE (DEVICE_BANK3PARAMETERS, CONFIG_SYS_32BIT_BOOT_PAR);
390 GT_REG_WRITE (DEVICE_BOOT_BANK_PARAMETERS, CONFIG_SYS_8BIT_BOOT_PAR);
stroese771e05b2004-12-16 18:21:17 +0000391 }
392#else
393 /* 8 bit boot flash only */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200394/* GT_REG_WRITE(DEVICE_BOOT_BANK_PARAMETERS, CONFIG_SYS_8BIT_BOOT_PAR);*/
stroese771e05b2004-12-16 18:21:17 +0000395#endif
396
397
398 gt_cpu_config ();
399
400 /* MPP setup */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200401 GT_REG_WRITE (MPP_CONTROL0, CONFIG_SYS_MPP_CONTROL_0);
402 GT_REG_WRITE (MPP_CONTROL1, CONFIG_SYS_MPP_CONTROL_1);
403 GT_REG_WRITE (MPP_CONTROL2, CONFIG_SYS_MPP_CONTROL_2);
404 GT_REG_WRITE (MPP_CONTROL3, CONFIG_SYS_MPP_CONTROL_3);
stroese771e05b2004-12-16 18:21:17 +0000405
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200406 GT_REG_WRITE (GPP_LEVEL_CONTROL, CONFIG_SYS_GPP_LEVEL_CONTROL);
stroese771e05b2004-12-16 18:21:17 +0000407 DEBUG_LED0_ON ();
408 DEBUG_LED1_ON ();
409 DEBUG_LED2_ON ();
410
411 return 0;
412}
413
414/* various things to do after relocation */
415
416int misc_init_r ()
417{
418 icache_enable ();
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200419#ifdef CONFIG_SYS_L2
stroese771e05b2004-12-16 18:21:17 +0000420 l2cache_enable ();
421#endif
422#ifdef CONFIG_MPSC
423
424 mpsc_sdma_init ();
425 mpsc_init2 ();
426#endif
427
428#if 0
429 /* disable the dcache and MMU */
430 dcache_lock ();
431#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200432 if (flash_info[3].size < CONFIG_SYS_FLASH_INCREMENT) {
Wolfgang Denk74357112007-02-27 14:26:04 +0100433 unsigned int flash_offset;
Stefan Roese79830d52006-02-08 15:54:15 +0100434 unsigned int l;
435
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200436 flash_offset = CONFIG_SYS_FLASH_INCREMENT - flash_info[3].size;
437 for (l = 0; l < CONFIG_SYS_MAX_FLASH_SECT; l++) {
Wolfgang Denk74357112007-02-27 14:26:04 +0100438 if (flash_info[3].start[l] != 0) {
Stefan Roese79830d52006-02-08 15:54:15 +0100439 flash_info[3].start[l] += flash_offset;
440 }
441 }
442 flash_protect (FLAG_PROTECT_SET,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200443 CONFIG_SYS_MONITOR_BASE,
444 CONFIG_SYS_MONITOR_BASE + monitor_flash_len - 1,
Stefan Roese79830d52006-02-08 15:54:15 +0100445 &flash_info[3]);
Stefan Roese79830d52006-02-08 15:54:15 +0100446 }
stroese771e05b2004-12-16 18:21:17 +0000447 return 0;
448}
449
450void after_reloc (ulong dest_addr, gd_t * gd)
451{
Stefan Roeseae7a2732009-06-05 05:45:41 +0200452 memoryMapDeviceSpace (BOOT_DEVICE, CONFIG_SYS_BOOT_SPACE,
453 CONFIG_SYS_BOOT_SIZE);
stroese771e05b2004-12-16 18:21:17 +0000454
Stefan Roesee5b563e2009-06-04 13:35:37 +0200455 display_mem_map ();
Stefan Roeseae7a2732009-06-05 05:45:41 +0200456 GT_REG_WRITE (PCI_0BASE_ADDRESS_REGISTERS_ENABLE, 0xfffffdfe);
457 GT_REG_WRITE (PCI_1BASE_ADDRESS_REGISTERS_ENABLE, 0xfffffdfe);
458
Stefan Roesee5b563e2009-06-04 13:35:37 +0200459 /* now, jump to the main ppcboot board init code */
460 board_init_r (gd, dest_addr);
461 /* NOTREACHED */
stroese771e05b2004-12-16 18:21:17 +0000462}
463
464/* ------------------------------------------------------------------------- */
465
466/*
467 * Check Board Identity:
468 *
469 * right now, assume borad type. (there is just one...after all)
470 */
471
472int checkboard (void)
473{
474 int l_type = 0;
475
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200476 printf ("BOARD: %s\n", CONFIG_SYS_BOARD_NAME);
stroese771e05b2004-12-16 18:21:17 +0000477 return (l_type);
478}
479
480/* utility functions */
481void debug_led (int led, int mode)
482{
483}
484
485int display_mem_map (void)
486{
487 int i, j;
488 unsigned int base, size, width;
489
490 /* SDRAM */
491 printf ("SD (DDR) RAM\n");
492 for (i = 0; i <= BANK3; i++) {
493 base = memoryGetBankBaseAddress (i);
494 size = memoryGetBankSize (i);
495 if (size != 0) {
496 printf ("BANK%d: base - 0x%08x\tsize - %dM bytes\n",
497 i, base, size >> 20);
498 }
499 }
500#ifdef CONFIG_PCI
501 /* CPU's PCI windows */
502 for (i = 0; i <= PCI_HOST1; i++) {
503 printf ("\nCPU's PCI %d windows\n", i);
504 base = pciGetSpaceBase (i, PCI_IO);
505 size = pciGetSpaceSize (i, PCI_IO);
506 printf (" IO: base - 0x%08x\tsize - %dM bytes\n", base,
507 size >> 20);
508 for (j = 0;
509 j <=
510 PCI_REGION0
511 /*ronen currently only first PCI MEM is used 3 */ ;
512 j++) {
513 base = pciGetSpaceBase (i, j);
514 size = pciGetSpaceSize (i, j);
515 printf ("MEMORY %d: base - 0x%08x\tsize - %dM bytes\n", j, base, size >> 20);
516 }
517 }
518#endif /* of CONFIG_PCI */
519 /* Devices */
520 printf ("\nDEVICES\n");
521 for (i = 0; i <= DEVICE3; i++) {
522 base = memoryGetDeviceBaseAddress (i);
523 size = memoryGetDeviceSize (i);
524 width = memoryGetDeviceWidth (i) * 8;
525 printf ("DEV %d: base - 0x%08x size - %dM bytes\twidth - %d bits", i, base, size >> 20, width);
526 if (i == 0)
527 printf ("\t- FLASH\n");
528 else if (i == 1)
529 printf ("\t- FLASH\n");
530 else if (i == 2)
531 printf ("\t- FLASH\n");
532 else
533 printf ("\t- RTC/REGS/CAN\n");
534 }
535
536 /* Bootrom */
537 base = memoryGetDeviceBaseAddress (BOOT_DEVICE); /* Boot */
538 size = memoryGetDeviceSize (BOOT_DEVICE);
539 width = memoryGetDeviceWidth (BOOT_DEVICE) * 8;
540 printf (" BOOT: base - 0x%08x size - %dM bytes\twidth - %d bits\t- FLASH\n",
541 base, size >> 20, width);
542 return (0);
543}
544
Stefan Roese0e5ef072009-06-04 13:35:36 +0200545/*
546 * Command loadpci: wait for signal from host and boot image.
547 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200548int do_loadpci(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Stefan Roese0e5ef072009-06-04 13:35:36 +0200549{
550 volatile unsigned int *ptr;
551 int count = 0;
552 int count2 = 0;
Wolfgang Denkbe51c5c2011-11-09 09:29:05 +0000553 int status = 0;
Stefan Roese0e5ef072009-06-04 13:35:36 +0200554 char addr[16];
555 char str[] = "\\|/-";
556 char *local_args[2];
557
558 /*
559 * Mark sync address
560 */
561 ptr = 0;
562 ptr[0] = 0xffffffff;
563 ptr[1] = 0xffffffff;
564 puts("\nWaiting for image from pci host -");
565
566 /*
567 * Wait for host to write the start address
568 */
569 while (*ptr == 0xffffffff) {
570 count++;
571 if (!(count % 100)) {
572 count2++;
573 putc(0x08); /* backspace */
574 putc(str[count2 % 4]);
575 }
576
577 /* Abort if ctrl-c was pressed */
578 if (ctrlc()) {
579 puts("\nAbort\n");
580 return 0;
581 }
582
583 udelay(1000);
584 }
585
586 sprintf(addr, "%08x", *ptr);
587 printf("\nBooting Image at addr 0x%s ...\n", addr);
588 setenv("loadaddr", addr);
589
590 switch (ptr[1] == 0) {
591 case 0:
592 /*
593 * Boot image via bootm
594 */
595 local_args[0] = argv[0];
596 local_args[1] = NULL;
597 status = do_bootm (cmdtp, 0, 1, local_args);
598 break;
599 case 1:
600 /*
601 * Boot image via bootvx
602 */
603 local_args[0] = argv[0];
604 local_args[1] = NULL;
605 status = do_bootvx (cmdtp, 0, 1, local_args);
606 break;
607 }
608
Wolfgang Denkbe51c5c2011-11-09 09:29:05 +0000609 return status;
Stefan Roese0e5ef072009-06-04 13:35:36 +0200610}
611
612U_BOOT_CMD(
613 loadpci, 1, 1, do_loadpci,
614 "loadpci - Wait for pci-image and boot it\n",
615 NULL
616 );
617
stroese771e05b2004-12-16 18:21:17 +0000618/* DRAM check routines copied from gw8260 */
619
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200620#if defined (CONFIG_SYS_DRAM_TEST)
stroese771e05b2004-12-16 18:21:17 +0000621
622/*********************************************************************/
623/* NAME: move64() - moves a double word (64-bit) */
624/* */
625/* DESCRIPTION: */
626/* this function performs a double word move from the data at */
627/* the source pointer to the location at the destination pointer. */
628/* */
629/* INPUTS: */
630/* unsigned long long *src - pointer to data to move */
631/* */
632/* OUTPUTS: */
633/* unsigned long long *dest - pointer to locate to move data */
634/* */
635/* RETURNS: */
636/* None */
637/* */
638/* RESTRICTIONS/LIMITATIONS: */
639/* May cloober fr0. */
640/* */
641/*********************************************************************/
642static void move64 (unsigned long long *src, unsigned long long *dest)
643{
644 asm ("lfd 0, 0(3)\n\t" /* fpr0 = *scr */
645 "stfd 0, 0(4)" /* *dest = fpr0 */
Wolfgang Denk74357112007-02-27 14:26:04 +0100646 : : : "fr0"); /* Clobbers fr0 */
stroese771e05b2004-12-16 18:21:17 +0000647 return;
648}
649
650
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200651#if defined (CONFIG_SYS_DRAM_TEST_DATA)
stroese771e05b2004-12-16 18:21:17 +0000652
653unsigned long long pattern[] = {
wdenke2ffd592004-12-31 09:32:47 +0000654 0xaaaaaaaaaaaaaaaaLL,
655 0xccccccccccccccccLL,
656 0xf0f0f0f0f0f0f0f0LL,
657 0xff00ff00ff00ff00LL,
658 0xffff0000ffff0000LL,
659 0xffffffff00000000LL,
660 0x00000000ffffffffLL,
661 0x0000ffff0000ffffLL,
662 0x00ff00ff00ff00ffLL,
663 0x0f0f0f0f0f0f0f0fLL,
664 0x3333333333333333LL,
665 0x5555555555555555LL,
stroese771e05b2004-12-16 18:21:17 +0000666};
667
668/*********************************************************************/
669/* NAME: mem_test_data() - test data lines for shorts and opens */
670/* */
671/* DESCRIPTION: */
672/* Tests data lines for shorts and opens by forcing adjacent data */
673/* to opposite states. Because the data lines could be routed in */
674/* an arbitrary manner the must ensure test patterns ensure that */
675/* every case is tested. By using the following series of binary */
676/* patterns every combination of adjacent bits is test regardless */
677/* of routing. */
678/* */
679/* ...101010101010101010101010 */
680/* ...110011001100110011001100 */
681/* ...111100001111000011110000 */
682/* ...111111110000000011111111 */
683/* */
684/* Carrying this out, gives us six hex patterns as follows: */
685/* */
686/* 0xaaaaaaaaaaaaaaaa */
687/* 0xcccccccccccccccc */
688/* 0xf0f0f0f0f0f0f0f0 */
689/* 0xff00ff00ff00ff00 */
690/* 0xffff0000ffff0000 */
691/* 0xffffffff00000000 */
692/* */
693/* The number test patterns will always be given by: */
694/* */
695/* log(base 2)(number data bits) = log2 (64) = 6 */
696/* */
697/* To test for short and opens to other signals on our boards. we */
698/* simply */
699/* test with the 1's complemnt of the paterns as well. */
700/* */
701/* OUTPUTS: */
702/* Displays failing test pattern */
703/* */
704/* RETURNS: */
705/* 0 - Passed test */
706/* 1 - Failed test */
707/* */
708/* RESTRICTIONS/LIMITATIONS: */
709/* Assumes only one one SDRAM bank */
710/* */
711/*********************************************************************/
712int mem_test_data (void)
713{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200714 unsigned long long *pmem = (unsigned long long *) CONFIG_SYS_MEMTEST_START;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200715 unsigned long long temp64 = 0;
stroese771e05b2004-12-16 18:21:17 +0000716 int num_patterns = sizeof (pattern) / sizeof (pattern[0]);
717 int i;
718 unsigned int hi, lo;
719
720 for (i = 0; i < num_patterns; i++) {
721 move64 (&(pattern[i]), pmem);
722 move64 (pmem, &temp64);
723
Wolfgang Denk74357112007-02-27 14:26:04 +0100724 /* hi = (temp64>>32) & 0xffffffff; */
725 /* lo = temp64 & 0xffffffff; */
726 /* printf("\ntemp64 = 0x%08x%08x", hi, lo); */
stroese771e05b2004-12-16 18:21:17 +0000727
728 hi = (pattern[i] >> 32) & 0xffffffff;
729 lo = pattern[i] & 0xffffffff;
730 /* printf("\npattern[%d] = 0x%08x%08x", i, hi, lo); */
731
732 if (temp64 != pattern[i]) {
733 printf ("\n Data Test Failed, pattern 0x%08x%08x",
734 hi, lo);
735 return 1;
736 }
737 }
738
739 return 0;
740}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200741#endif /* CONFIG_SYS_DRAM_TEST_DATA */
stroese771e05b2004-12-16 18:21:17 +0000742
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200743#if defined (CONFIG_SYS_DRAM_TEST_ADDRESS)
stroese771e05b2004-12-16 18:21:17 +0000744/*********************************************************************/
745/* NAME: mem_test_address() - test address lines */
746/* */
747/* DESCRIPTION: */
748/* This function performs a test to verify that each word im */
749/* memory is uniquly addressable. The test sequence is as follows: */
750/* */
751/* 1) write the address of each word to each word. */
752/* 2) verify that each location equals its address */
753/* */
754/* OUTPUTS: */
755/* Displays failing test pattern and address */
756/* */
757/* RETURNS: */
758/* 0 - Passed test */
759/* 1 - Failed test */
760/* */
761/* RESTRICTIONS/LIMITATIONS: */
762/* */
763/* */
764/*********************************************************************/
765int mem_test_address (void)
766{
767 volatile unsigned int *pmem =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200768 (volatile unsigned int *) CONFIG_SYS_MEMTEST_START;
769 const unsigned int size = (CONFIG_SYS_MEMTEST_END - CONFIG_SYS_MEMTEST_START) / 4;
stroese771e05b2004-12-16 18:21:17 +0000770 unsigned int i;
771
772 /* write address to each location */
773 for (i = 0; i < size; i++) {
774 pmem[i] = i;
775 }
776
777 /* verify each loaction */
778 for (i = 0; i < size; i++) {
779 if (pmem[i] != i) {
780 printf ("\n Address Test Failed at 0x%x", i);
781 return 1;
782 }
783 }
784 return 0;
785}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200786#endif /* CONFIG_SYS_DRAM_TEST_ADDRESS */
stroese771e05b2004-12-16 18:21:17 +0000787
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200788#if defined (CONFIG_SYS_DRAM_TEST_WALK)
stroese771e05b2004-12-16 18:21:17 +0000789/*********************************************************************/
790/* NAME: mem_march() - memory march */
791/* */
792/* DESCRIPTION: */
793/* Marches up through memory. At each location verifies rmask if */
794/* read = 1. At each location write wmask if write = 1. Displays */
795/* failing address and pattern. */
796/* */
797/* INPUTS: */
798/* volatile unsigned long long * base - start address of test */
799/* unsigned int size - number of dwords(64-bit) to test */
800/* unsigned long long rmask - read verify mask */
801/* unsigned long long wmask - wrtie verify mask */
802/* short read - verifies rmask if read = 1 */
803/* short write - writes wmask if write = 1 */
804/* */
805/* OUTPUTS: */
806/* Displays failing test pattern and address */
807/* */
808/* RETURNS: */
809/* 0 - Passed test */
810/* 1 - Failed test */
811/* */
812/* RESTRICTIONS/LIMITATIONS: */
813/* */
814/* */
815/*********************************************************************/
816int mem_march (volatile unsigned long long *base,
817 unsigned int size,
818 unsigned long long rmask,
819 unsigned long long wmask, short read, short write)
820{
821 unsigned int i;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200822 unsigned long long temp = 0;
stroese771e05b2004-12-16 18:21:17 +0000823 unsigned int hitemp, lotemp, himask, lomask;
824
825 for (i = 0; i < size; i++) {
826 if (read != 0) {
827 /* temp = base[i]; */
828 move64 ((unsigned long long *) &(base[i]), &temp);
829 if (rmask != temp) {
830 hitemp = (temp >> 32) & 0xffffffff;
831 lotemp = temp & 0xffffffff;
832 himask = (rmask >> 32) & 0xffffffff;
833 lomask = rmask & 0xffffffff;
834
835 printf ("\n Walking one's test failed: address = 0x%08x," "\n\texpected 0x%08x%08x, found 0x%08x%08x", i << 3, himask, lomask, hitemp, lotemp);
836 return 1;
837 }
838 }
839 if (write != 0) {
840 /* base[i] = wmask; */
841 move64 (&wmask, (unsigned long long *) &(base[i]));
842 }
843 }
844 return 0;
845}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200846#endif /* CONFIG_SYS_DRAM_TEST_WALK */
stroese771e05b2004-12-16 18:21:17 +0000847
848/*********************************************************************/
849/* NAME: mem_test_walk() - a simple walking ones test */
850/* */
851/* DESCRIPTION: */
852/* Performs a walking ones through entire physical memory. The */
853/* test uses as series of memory marches, mem_march(), to verify */
854/* and write the test patterns to memory. The test sequence is as */
855/* follows: */
856/* 1) march writing 0000...0001 */
857/* 2) march verifying 0000...0001 , writing 0000...0010 */
858/* 3) repeat step 2 shifting masks left 1 bit each time unitl */
859/* the write mask equals 1000...0000 */
860/* 4) march verifying 1000...0000 */
861/* The test fails if any of the memory marches return a failure. */
862/* */
863/* OUTPUTS: */
864/* Displays which pass on the memory test is executing */
865/* */
866/* RETURNS: */
867/* 0 - Passed test */
868/* 1 - Failed test */
869/* */
870/* RESTRICTIONS/LIMITATIONS: */
871/* */
872/* */
873/*********************************************************************/
874int mem_test_walk (void)
875{
876 unsigned long long mask;
877 volatile unsigned long long *pmem =
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200878 (volatile unsigned long long *) CONFIG_SYS_MEMTEST_START;
879 const unsigned long size = (CONFIG_SYS_MEMTEST_END - CONFIG_SYS_MEMTEST_START) / 8;
stroese771e05b2004-12-16 18:21:17 +0000880
881 unsigned int i;
882
883 mask = 0x01;
884
885 printf ("Initial Pass");
886 mem_march (pmem, size, 0x0, 0x1, 0, 1);
887
888 printf ("\b\b\b\b\b\b\b\b\b\b\b\b");
889 printf (" ");
890 printf (" ");
891 printf ("\b\b\b\b\b\b\b\b\b\b\b\b");
892
893 for (i = 0; i < 63; i++) {
894 printf ("Pass %2d", i + 2);
895 if (mem_march (pmem, size, mask, mask << 1, 1, 1) != 0) {
896 /*printf("mask: 0x%x, pass: %d, ", mask, i); */
897 return 1;
898 }
899 mask = mask << 1;
900 printf ("\b\b\b\b\b\b\b");
901 }
902
903 printf ("Last Pass");
904 if (mem_march (pmem, size, 0, mask, 0, 1) != 0) {
905 /* printf("mask: 0x%x", mask); */
906 return 1;
907 }
908 printf ("\b\b\b\b\b\b\b\b\b");
909 printf (" ");
910 printf ("\b\b\b\b\b\b\b\b\b");
911
912 return 0;
913}
914
915/*********************************************************************/
916/* NAME: testdram() - calls any enabled memory tests */
917/* */
918/* DESCRIPTION: */
919/* Runs memory tests if the environment test variables are set to */
920/* 'y'. */
921/* */
922/* INPUTS: */
923/* testdramdata - If set to 'y', data test is run. */
924/* testdramaddress - If set to 'y', address test is run. */
925/* testdramwalk - If set to 'y', walking ones test is run */
926/* */
927/* OUTPUTS: */
928/* None */
929/* */
930/* RETURNS: */
931/* 0 - Passed test */
932/* 1 - Failed test */
933/* */
934/* RESTRICTIONS/LIMITATIONS: */
935/* */
936/* */
937/*********************************************************************/
938int testdram (void)
939{
stroese771e05b2004-12-16 18:21:17 +0000940 int rundata = 0;
941 int runaddress = 0;
942 int runwalk = 0;
943
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200944#ifdef CONFIG_SYS_DRAM_TEST_DATA
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600945 rundata = getenv_yesno("testdramdata") == 1;
stroese771e05b2004-12-16 18:21:17 +0000946#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200947#ifdef CONFIG_SYS_DRAM_TEST_ADDRESS
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600948 runaddress = getenv_yesno("testdramaddress") == 1;
stroese771e05b2004-12-16 18:21:17 +0000949#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200950#ifdef CONFIG_SYS_DRAM_TEST_WALK
Joe Hershbergerec8a2522012-12-11 22:16:22 -0600951 runwalk = getenv_yesno("testdramwalk") == 1;
stroese771e05b2004-12-16 18:21:17 +0000952#endif
953
954 if ((rundata == 1) || (runaddress == 1) || (runwalk == 1)) {
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200955 printf ("Testing RAM from 0x%08x to 0x%08x ... (don't panic... that will take a moment !!!!)\n", CONFIG_SYS_MEMTEST_START, CONFIG_SYS_MEMTEST_END);
stroese771e05b2004-12-16 18:21:17 +0000956 }
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200957#ifdef CONFIG_SYS_DRAM_TEST_DATA
stroese771e05b2004-12-16 18:21:17 +0000958 if (rundata == 1) {
959 printf ("Test DATA ... ");
960 if (mem_test_data () == 1) {
961 printf ("failed \n");
962 return 1;
963 } else
964 printf ("ok \n");
965 }
966#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200967#ifdef CONFIG_SYS_DRAM_TEST_ADDRESS
stroese771e05b2004-12-16 18:21:17 +0000968 if (runaddress == 1) {
969 printf ("Test ADDRESS ... ");
970 if (mem_test_address () == 1) {
971 printf ("failed \n");
972 return 1;
973 } else
974 printf ("ok \n");
975 }
976#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200977#ifdef CONFIG_SYS_DRAM_TEST_WALK
stroese771e05b2004-12-16 18:21:17 +0000978 if (runwalk == 1) {
979 printf ("Test WALKING ONEs ... ");
980 if (mem_test_walk () == 1) {
981 printf ("failed \n");
982 return 1;
983 } else
984 printf ("ok \n");
985 }
986#endif
987 if ((rundata == 1) || (runaddress == 1) || (runwalk == 1)) {
988 printf ("passed\n");
989 }
990 return 0;
991
992}
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200993#endif /* CONFIG_SYS_DRAM_TEST */
stroese771e05b2004-12-16 18:21:17 +0000994
Wolfgang Denk74357112007-02-27 14:26:04 +0100995/* ronen - the below functions are used by the bootm function */
stroese771e05b2004-12-16 18:21:17 +0000996/* - we map the base register to fbe00000 (same mapping as in the LSP) */
997/* - we turn off the RX gig dmas - to prevent the dma from overunning */
Wolfgang Denk74357112007-02-27 14:26:04 +0100998/* the kernel data areas. */
999/* - we diable and invalidate the icache and dcache. */
stroese771e05b2004-12-16 18:21:17 +00001000void my_remap_gt_regs_bootm (u32 cur_loc, u32 new_loc)
1001{
1002 u32 temp;
1003
1004 temp = in_le32 ((u32 *) (new_loc + INTERNAL_SPACE_DECODE));
1005 if ((temp & 0xffff) == new_loc >> 16)
1006 return;
1007
1008 temp = (in_le32 ((u32 *) (cur_loc + INTERNAL_SPACE_DECODE)) &
1009 0xffff0000) | (new_loc >> 16);
1010
1011 out_le32 ((u32 *) (cur_loc + INTERNAL_SPACE_DECODE), temp);
1012
1013 while ((WORD_SWAP (*((volatile unsigned int *) (NONE_CACHEABLE |
1014 new_loc |
1015 (INTERNAL_SPACE_DECODE)))))
1016 != temp);
1017
1018}
1019
1020void board_prebootm_init ()
1021{
1022
1023/* change window size of PCI1 IO in order tp prevent overlaping with REG BASE. */
1024 GT_REG_WRITE (PCI_1_IO_SIZE, (_64K - 1) >> 16);
1025
1026/* Stop GigE Rx DMA engines */
1027 GT_REG_WRITE (MV64360_ETH_RECEIVE_QUEUE_COMMAND_REG (0), 0x0000ff00);
1028/* GT_REG_WRITE (MV64360_ETH_RECEIVE_QUEUE_COMMAND_REG (1), 0x0000ff00); */
1029/* GV_REG_WRITE (MV64360_ETH_RECEIVE_QUEUE_COMMAND_REG (2), 0x0000ff00); */
1030
1031/* Relocate MV64360 internal regs */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001032 my_remap_gt_regs_bootm (CONFIG_SYS_GT_REGS, CONFIG_SYS_DFL_GT_REGS);
stroese771e05b2004-12-16 18:21:17 +00001033
1034 icache_disable ();
stroese771e05b2004-12-16 18:21:17 +00001035 dcache_disable ();
1036}
Stefan Roesed5ea2872007-01-31 16:38:04 +01001037
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001038int do_show_config(cmd_tbl_t * cmdtp, int flag, int argc, char * const argv[])
Stefan Roesed5ea2872007-01-31 16:38:04 +01001039{
1040 unsigned int reset_sample_low;
1041 unsigned int reset_sample_high;
Stefan Roese2d780742007-06-22 17:32:28 +02001042 unsigned int l, l1, l2;
Stefan Roesed5ea2872007-01-31 16:38:04 +01001043
1044 GT_REG_READ(0x3c4, &reset_sample_low);
1045 GT_REG_READ(0x3d4, &reset_sample_high);
1046 printf("Reset configuration 0x%08x 0x%08x\n", reset_sample_low, reset_sample_high);
1047
Stefan Roese2d780742007-06-22 17:32:28 +02001048 l2 = 0;
1049 for (l=0; l<63; l++) {
1050 if (show_config_tab[l][0] != 0) {
1051 printf("%14s:%1x ", show_config_tab[l],
1052 ((reset_sample_low >> (31 - (l & 0x1f)))) & 0x01);
1053 l2++;
1054 if ((l2 % 4) == 0)
1055 printf("\n");
1056 } else {
1057 l1++;
1058 }
1059 if (l == 32)
1060 reset_sample_low = reset_sample_high;
1061 }
1062 printf("\n");
1063
Wolfgang Denk74357112007-02-27 14:26:04 +01001064 return(0);
Stefan Roesed5ea2872007-01-31 16:38:04 +01001065}
1066
Stefan Roesed5ea2872007-01-31 16:38:04 +01001067U_BOOT_CMD(
Stefan Roese2d780742007-06-22 17:32:28 +02001068 show_config, 1, 1, do_show_config,
Peter Tyser2fb26042009-01-27 18:03:12 -06001069 "Show Marvell strapping register",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001070 "Show Marvell strapping register (ResetSampleLow ResetSampleHigh)"
1071);
Reinhard Arlt0738e242010-04-13 09:59:09 +02001072
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001073int do_pldver(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Reinhard Arlt0738e242010-04-13 09:59:09 +02001074{
1075 printf("PLD version:0x%02x\n", in_8((void *)CONFIG_SYS_PLD_VER));
1076
1077 return 0;
1078}
1079
1080U_BOOT_CMD(
1081 pldver, 1, 1, do_pldver,
1082 "Show PLD version",
1083 "Show PLD version)");
Marek Vasut658c3b92012-03-02 22:39:31 +00001084
1085int board_eth_init(bd_t *bis)
1086{
1087 return mv6436x_eth_initialize(bis);
1088}