2 * Copyright 2007 Wind River Systemes, Inc. <www.windriver.com>
3 * Copyright 2007 Embedded Specialties, Inc.
5 * Copyright 2004, 2007 Freescale Semiconductor.
7 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
9 * See file CREDITS for list of people who contributed to this
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License as
14 * published by the Free Software Foundation; either version 2 of
15 * the License, or (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
30 #include <asm/processor.h>
31 #include <asm/immap_85xx.h>
32 #include <asm/immap_fsl_pci.h>
33 #include <spd_sdram.h>
36 #include <fdt_support.h>
38 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
39 extern void ddr_enable_ecc(unsigned int dram_size
);
42 DECLARE_GLOBAL_DATA_PTR
;
44 void local_bus_init(void);
45 void sdram_init(void);
46 long int fixed_sdram (void);
48 int board_early_init_f (void)
55 volatile ccsr_gur_t
*gur
= (void *)(CFG_MPC85xx_GUTS_ADDR
);
56 volatile ccsr_local_ecm_t
*ecm
= (void *)(CFG_MPC85xx_ECM_ADDR
);
57 volatile u_char
*rev
= (void *)CFG_BD_REV
;
59 printf ("Board: Wind River SBC8548 Rev. 0x%01x\n",
63 * Initialize local bus.
68 * Fix CPU2 errata: A core hang possible while executing a
69 * msync instruction and a snoopable transaction from an I/O
70 * master tagged to make quick forward progress is present.
72 ecm
->eebpcr
|= (1 << 16);
75 * Hack TSEC 3 and 4 IO voltages.
77 gur
->tsec34ioovcr
= 0xe7e0; /* 1110 0111 1110 0xxx */
79 ecm
->eedr
= 0xffffffff; /* clear ecm errors */
80 ecm
->eeer
= 0xffffffff; /* enable ecm errors */
85 initdram(int board_type
)
89 puts("Initializing\n");
91 #if defined(CONFIG_DDR_DLL)
94 * Work around to stabilize DDR DLL MSYNC_IN.
95 * Errata DDR9 seems to have been fixed.
96 * This is now the workaround for Errata DDR11:
97 * Override DLL = 1, Course Adj = 1, Tap Select = 0
100 volatile ccsr_gur_t
*gur
= (void *)(CFG_MPC85xx_GUTS_ADDR
);
102 gur
->ddrdllcr
= 0x81000000;
103 asm("sync;isync;msync");
108 #if defined(CONFIG_SPD_EEPROM)
109 dram_size
= spd_sdram ();
111 dram_size
= fixed_sdram ();
114 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
116 * Initialize and enable DDR ECC.
118 ddr_enable_ecc(dram_size
);
121 * SDRAM Initialization
130 * Initialize Local Bus
135 volatile ccsr_gur_t
*gur
= (void *)(CFG_MPC85xx_GUTS_ADDR
);
136 volatile ccsr_lbc_t
*lbc
= (void *)(CFG_MPC85xx_LBC_ADDR
);
142 get_sys_info(&sysinfo
);
143 clkdiv
= (lbc
->lcrr
& 0x0f) * 2;
144 lbc_hz
= sysinfo
.freqSystemBus
/ 1000000 / clkdiv
;
146 gur
->lbiuiplldcr1
= 0x00078080;
148 gur
->lbiuiplldcr0
= 0x7c0f1bf0;
149 } else if (clkdiv
== 8) {
150 gur
->lbiuiplldcr0
= 0x6c0f1bf0;
151 } else if (clkdiv
== 4) {
152 gur
->lbiuiplldcr0
= 0x5c0f1bf0;
155 lbc
->lcrr
|= 0x00030000;
157 asm("sync;isync;msync");
159 lbc
->ltesr
= 0xffffffff; /* Clear LBC error interrupts */
160 lbc
->lteir
= 0xffffffff; /* Enable LBC error interrupts */
164 * Initialize SDRAM memory on the Local Bus.
169 #if defined(CFG_OR3_PRELIM) && defined(CFG_BR3_PRELIM)
172 volatile ccsr_lbc_t
*lbc
= (void *)(CFG_MPC85xx_LBC_ADDR
);
173 uint
*sdram_addr
= (uint
*)CFG_LBC_SDRAM_BASE
;
178 print_size (CFG_LBC_SDRAM_SIZE
* 1024 * 1024, "\n");
181 * Setup SDRAM Base and Option Registers
183 lbc
->or3
= CFG_OR3_PRELIM
;
186 lbc
->br3
= CFG_BR3_PRELIM
;
189 lbc
->lbcr
= CFG_LBC_LBCR
;
193 lbc
->lsrt
= CFG_LBC_LSRT
;
194 lbc
->mrtpr
= CFG_LBC_MRTPR
;
198 * MPC8548 uses "new" 15-16 style addressing.
200 lsdmr_common
= CFG_LBC_LSDMR_COMMON
;
201 lsdmr_common
|= CFG_LBC_LSDMR_BSMA1516
;
204 * Issue PRECHARGE ALL command.
206 lbc
->lsdmr
= lsdmr_common
| CFG_LBC_LSDMR_OP_PCHALL
;
209 ppcDcbf((unsigned long) sdram_addr
);
213 * Issue 8 AUTO REFRESH commands.
215 for (idx
= 0; idx
< 8; idx
++) {
216 lbc
->lsdmr
= lsdmr_common
| CFG_LBC_LSDMR_OP_ARFRSH
;
219 ppcDcbf((unsigned long) sdram_addr
);
224 * Issue 8 MODE-set command.
226 lbc
->lsdmr
= lsdmr_common
| CFG_LBC_LSDMR_OP_MRW
;
229 ppcDcbf((unsigned long) sdram_addr
);
233 * Issue NORMAL OP command.
235 lbc
->lsdmr
= lsdmr_common
| CFG_LBC_LSDMR_OP_NORMAL
;
238 ppcDcbf((unsigned long) sdram_addr
);
239 udelay(200); /* Overkill. Must wait > 200 bus cycles */
241 #endif /* enable SDRAM init */
244 #if defined(CFG_DRAM_TEST)
248 uint
*pstart
= (uint
*) CFG_MEMTEST_START
;
249 uint
*pend
= (uint
*) CFG_MEMTEST_END
;
252 printf("Testing DRAM from 0x%08x to 0x%08x\n",
256 printf("DRAM test phase 1:\n");
257 for (p
= pstart
; p
< pend
; p
++)
260 for (p
= pstart
; p
< pend
; p
++) {
261 if (*p
!= 0xaaaaaaaa) {
262 printf ("DRAM test fails at: %08x\n", (uint
) p
);
267 printf("DRAM test phase 2:\n");
268 for (p
= pstart
; p
< pend
; p
++)
271 for (p
= pstart
; p
< pend
; p
++) {
272 if (*p
!= 0x55555555) {
273 printf ("DRAM test fails at: %08x\n", (uint
) p
);
278 printf("DRAM test passed.\n");
283 #if !defined(CONFIG_SPD_EEPROM)
284 /*************************************************************************
285 * fixed_sdram init -- doesn't use serial presence detect.
286 * assumes 256MB DDR2 SDRAM SODIMM, without ECC, running at DDR400 speed.
287 ************************************************************************/
288 long int fixed_sdram (void)
290 #define CFG_DDR_CONTROL 0xc300c000
292 volatile ccsr_ddr_t
*ddr
= (void *)(CFG_MPC85xx_DDR_ADDR
);
294 ddr
->cs0_bnds
= 0x0000007f;
295 ddr
->cs1_bnds
= 0x008000ff;
296 ddr
->cs2_bnds
= 0x00000000;
297 ddr
->cs3_bnds
= 0x00000000;
298 ddr
->cs0_config
= 0x80010101;
299 ddr
->cs1_config
= 0x80010101;
300 ddr
->cs2_config
= 0x00000000;
301 ddr
->cs3_config
= 0x00000000;
302 ddr
->timing_cfg_3
= 0x00000000;
303 ddr
->timing_cfg_0
= 0x00220802;
304 ddr
->timing_cfg_1
= 0x38377322;
305 ddr
->timing_cfg_2
= 0x0fa044C7;
306 ddr
->sdram_cfg
= 0x4300C000;
307 ddr
->sdram_cfg_2
= 0x24401000;
308 ddr
->sdram_mode
= 0x23C00542;
309 ddr
->sdram_mode_2
= 0x00000000;
310 ddr
->sdram_interval
= 0x05080100;
311 ddr
->sdram_md_cntl
= 0x00000000;
312 ddr
->sdram_data_init
= 0x00000000;
313 ddr
->sdram_clk_cntl
= 0x03800000;
314 asm("sync;isync;msync");
317 #if defined (CONFIG_DDR_ECC)
318 /* Enable ECC checking */
319 ddr
->sdram_cfg
= (CFG_DDR_CONTROL
| 0x20000000);
321 ddr
->sdram_cfg
= CFG_DDR_CONTROL
;
324 return CFG_SDRAM_SIZE
* 1024 * 1024;
328 #if defined(CONFIG_PCI) || defined(CONFIG_PCI1)
329 /* For some reason the Tundra PCI bridge shows up on itself as a
330 * different device. Work around that by refusing to configure it.
332 void dummy_func(struct pci_controller
* hose
, pci_dev_t dev
, struct pci_config_table
*tab
) { }
334 static struct pci_config_table pci_sbc8548_config_table
[] = {
335 {0x10e3, 0x0513, PCI_ANY_ID
, 1, 3, PCI_ANY_ID
, dummy_func
, {0,0,0}},
336 {0x1106, 0x0686, PCI_ANY_ID
, 1, VIA_ID
, 0, mpc85xx_config_via
, {0,0,0}},
337 {0x1106, 0x0571, PCI_ANY_ID
, 1, VIA_ID
, 1,
338 mpc85xx_config_via_usbide
, {0,0,0}},
339 {0x1105, 0x3038, PCI_ANY_ID
, 1, VIA_ID
, 2,
340 mpc85xx_config_via_usb
, {0,0,0}},
341 {0x1106, 0x3038, PCI_ANY_ID
, 1, VIA_ID
, 3,
342 mpc85xx_config_via_usb2
, {0,0,0}},
343 {0x1106, 0x3058, PCI_ANY_ID
, 1, VIA_ID
, 5,
344 mpc85xx_config_via_power
, {0,0,0}},
345 {0x1106, 0x3068, PCI_ANY_ID
, 1, VIA_ID
, 6,
346 mpc85xx_config_via_ac97
, {0,0,0}},
350 static struct pci_controller pci1_hose
= {
351 config_table
: pci_sbc8548_config_table
};
352 #endif /* CONFIG_PCI */
355 static struct pci_controller pci2_hose
;
356 #endif /* CONFIG_PCI2 */
359 static struct pci_controller pcie1_hose
;
360 #endif /* CONFIG_PCIE1 */
362 int first_free_busno
=0;
367 volatile ccsr_gur_t
*gur
= (void *)(CFG_MPC85xx_GUTS_ADDR
);
371 volatile ccsr_fsl_pci_t
*pci
= (ccsr_fsl_pci_t
*) CFG_PCI1_ADDR
;
372 extern void fsl_pci_init(struct pci_controller
*hose
);
373 struct pci_controller
*hose
= &pci1_hose
;
374 struct pci_config_table
*table
;
376 uint pci_32
= gur
->pordevsr
& MPC85xx_PORDEVSR_PCI1_PCI32
; /* PORDEVSR[15] */
377 uint pci_arb
= gur
->pordevsr
& MPC85xx_PORDEVSR_PCI1_ARB
; /* PORDEVSR[14] */
378 uint pci_clk_sel
= gur
->porpllsr
& MPC85xx_PORDEVSR_PCI1_SPD
; /* PORPLLSR[16] */
380 uint pci_agent
= (host_agent
== 3) || (host_agent
== 4 ) || (host_agent
== 6);
382 uint pci_speed
= get_clock_freq (); /* PCI PSPEED in [4:5] */
384 if (!(gur
->devdisr
& MPC85xx_DEVDISR_PCI1
)) {
385 printf (" PCI: %d bit, %s MHz, %s, %s, %s\n",
387 (pci_speed
== 33333000) ? "33" :
388 (pci_speed
== 66666000) ? "66" : "unknown",
389 pci_clk_sel
? "sync" : "async",
390 pci_agent
? "agent" : "host",
391 pci_arb
? "arbiter" : "external-arbiter"
396 pci_set_region(hose
->regions
+ 0,
400 PCI_REGION_MEM
| PCI_REGION_MEMORY
);
403 /* outbound memory */
404 pci_set_region(hose
->regions
+ 1,
411 pci_set_region(hose
->regions
+ 2,
416 hose
->region_count
= 3;
418 /* relocate config table pointers */
419 hose
->config_table
= \
420 (struct pci_config_table
*)((uint
)hose
->config_table
+ gd
->reloc_off
);
421 for (table
= hose
->config_table
; table
&& table
->vendor
; table
++)
422 table
->config_device
+= gd
->reloc_off
;
424 hose
->first_busno
=first_free_busno
;
425 pci_setup_indirect(hose
, (int) &pci
->cfg_addr
, (int) &pci
->cfg_data
);
428 first_free_busno
=hose
->last_busno
+1;
429 printf ("PCI on bus %02x - %02x\n",hose
->first_busno
,hose
->last_busno
);
430 #ifdef CONFIG_PCIX_CHECK
431 if (!(gur
->pordevsr
& PORDEVSR_PCI
)) {
433 if (CONFIG_SYS_CLK_FREQ
< 66000000)
434 printf("PCI-X will only work at 66 MHz\n");
436 reg16
= PCI_X_CMD_MAX_SPLIT
| PCI_X_CMD_MAX_READ
437 | PCI_X_CMD_ERO
| PCI_X_CMD_DPERR_E
;
438 pci_hose_write_config_word(hose
, bus
, PCIX_COMMAND
, reg16
);
442 printf (" PCI: disabled\n");
446 gur
->devdisr
|= MPC85xx_DEVDISR_PCI1
; /* disable */
451 uint pci2_clk_sel
= gur
->porpllsr
& 0x4000; /* PORPLLSR[17] */
452 uint pci_dual
= get_pci_dual (); /* PCI DUAL in CM_PCI[3] */
454 printf (" PCI2: 32 bit, 66 MHz, %s\n",
455 pci2_clk_sel
? "sync" : "async");
457 printf (" PCI2: disabled\n");
461 gur
->devdisr
|= MPC85xx_DEVDISR_PCI2
; /* disable */
462 #endif /* CONFIG_PCI2 */
466 volatile ccsr_fsl_pci_t
*pci
= (ccsr_fsl_pci_t
*) CFG_PCIE1_ADDR
;
467 extern void fsl_pci_init(struct pci_controller
*hose
);
468 struct pci_controller
*hose
= &pcie1_hose
;
469 int pcie_ep
= (host_agent
== 0) || (host_agent
== 2 ) || (host_agent
== 3);
471 int pcie_configured
= io_sel
>= 1;
473 if (pcie_configured
&& !(gur
->devdisr
& MPC85xx_DEVDISR_PCIE
)){
474 printf ("\n PCIE connected to slot as %s (base address %x)",
475 pcie_ep
? "End Point" : "Root Complex",
478 if (pci
->pme_msg_det
) {
479 pci
->pme_msg_det
= 0xffffffff;
480 debug (" with errors. Clearing. Now 0x%08x",pci
->pme_msg_det
);
485 pci_set_region(hose
->regions
+ 0,
489 PCI_REGION_MEM
| PCI_REGION_MEMORY
);
491 /* outbound memory */
492 pci_set_region(hose
->regions
+ 1,
499 pci_set_region(hose
->regions
+ 2,
505 hose
->region_count
= 3;
507 hose
->first_busno
=first_free_busno
;
508 pci_setup_indirect(hose
, (int) &pci
->cfg_addr
, (int) &pci
->cfg_data
);
511 printf ("PCIE on bus %d - %d\n",hose
->first_busno
,hose
->last_busno
);
513 first_free_busno
=hose
->last_busno
+1;
516 printf (" PCIE: disabled\n");
520 gur
->devdisr
|= MPC85xx_DEVDISR_PCIE
; /* disable */
525 int last_stage_init(void)
530 #if defined(CONFIG_OF_BOARD_SETUP)
532 ft_pci_setup(void *blob
, bd_t
*bd
)
536 node
= fdt_path_offset(blob
, "/aliases");
541 path
= fdt_getprop(blob
, node
, "pci0", NULL
);
543 tmp
[1] = pci1_hose
.last_busno
- pci1_hose
.first_busno
;
544 do_fixup_by_path(blob
, path
, "bus-range", &tmp
, 8, 1);
549 path
= fdt_getprop(blob
, node
, "pci1", NULL
);
551 tmp
[1] = pcie1_hose
.last_busno
- pcie1_hose
.first_busno
;
552 do_fixup_by_path(blob
, path
, "bus-range", &tmp
, 8, 1);
559 #if defined(CONFIG_OF_BOARD_SETUP)
561 ft_board_setup(void *blob
, bd_t
*bd
)
563 ft_cpu_setup(blob
, bd
);
565 ft_pci_setup(blob
, bd
);