blob: 242a68c391d0dde0b7dc2491d988cd19874432aa [file] [log] [blame]
Jon Loeligerd9b94f22005-07-25 14:05:07 -05001/*
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -05002 * Copyright 2004, 2007 Freescale Semiconductor.
Jon Loeligerd9b94f22005-07-25 14:05:07 -05003 *
4 * (C) Copyright 2002 Scott McNutt <smcnutt@artesyncp.com>
5 *
6 * See file CREDITS for list of people who contributed to this
7 * project.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License as
11 * published by the Free Software Foundation; either version 2 of
12 * the License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
22 * MA 02111-1307 USA
23 */
24
25#include <common.h>
26#include <pci.h>
27#include <asm/processor.h>
28#include <asm/immap_85xx.h>
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050029#include <asm/immap_fsl_pci.h>
Jon Loeligerd9b94f22005-07-25 14:05:07 -050030#include <spd.h>
Andy Fleming09f3e092006-09-13 10:34:18 -050031#include <miiphy.h>
Jon Loeligerd9b94f22005-07-25 14:05:07 -050032
33#include "../common/cadmus.h"
34#include "../common/eeprom.h"
Matthew McClintockbf1dfff2006-06-28 10:46:13 -050035#include "../common/via.h"
Jon Loeligerd9b94f22005-07-25 14:05:07 -050036
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050037#if defined(CONFIG_OF_FLAT_TREE)
38#include <ft_build.h>
39#endif
Jon Loeligerd9b94f22005-07-25 14:05:07 -050040#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
41extern void ddr_enable_ecc(unsigned int dram_size);
42#endif
43
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050044DECLARE_GLOBAL_DATA_PTR;
45
Jon Loeligerd9b94f22005-07-25 14:05:07 -050046extern long int spd_sdram(void);
47
48void local_bus_init(void);
49void sdram_init(void);
50
51int board_early_init_f (void)
52{
53 return 0;
54}
55
56int checkboard (void)
57{
58 volatile immap_t *immap = (immap_t *) CFG_CCSRBAR;
59 volatile ccsr_gur_t *gur = &immap->im_gur;
Zang Roy-r619117337b232006-12-15 14:43:31 +080060 volatile ccsr_local_ecm_t *ecm = &immap->im_local_ecm;
Jon Loeligerd9b94f22005-07-25 14:05:07 -050061
62 /* PCI slot in USER bits CSR[6:7] by convention. */
63 uint pci_slot = get_pci_slot ();
64
Jon Loeligerd9b94f22005-07-25 14:05:07 -050065 uint cpu_board_rev = get_cpu_board_revision ();
66
67 printf ("Board: CDS Version 0x%02x, PCI Slot %d\n",
68 get_board_version (), pci_slot);
69
70 printf ("CPU Board Revision %d.%d (0x%04x)\n",
71 MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev),
72 MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050073 /*
74 * Initialize local bus.
75 */
76 local_bus_init ();
77
Zang Roy-r619117337b232006-12-15 14:43:31 +080078 /*
79 * Fix CPU2 errata: A core hang possible while executing a
80 * msync instruction and a snoopable transaction from an I/O
81 * master tagged to make quick forward progress is present.
82 */
83 ecm->eebpcr |= (1 << 16);
Jon Loeligerd9b94f22005-07-25 14:05:07 -050084
85 /*
86 * Hack TSEC 3 and 4 IO voltages.
87 */
88 gur->tsec34ioovcr = 0xe7e0; /* 1110 0111 1110 0xxx */
89
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -050090 ecm->eedr = 0xffffffff; /* clear ecm errors */
91 ecm->eeer = 0xffffffff; /* enable ecm errors */
Jon Loeligerd9b94f22005-07-25 14:05:07 -050092 return 0;
93}
94
95long int
96initdram(int board_type)
97{
98 long dram_size = 0;
99 volatile immap_t *immap = (immap_t *)CFG_IMMR;
100
101 puts("Initializing\n");
102
103#if defined(CONFIG_DDR_DLL)
104 {
105 /*
106 * Work around to stabilize DDR DLL MSYNC_IN.
107 * Errata DDR9 seems to have been fixed.
108 * This is now the workaround for Errata DDR11:
109 * Override DLL = 1, Course Adj = 1, Tap Select = 0
110 */
111
112 volatile ccsr_gur_t *gur= &immap->im_gur;
113
114 gur->ddrdllcr = 0x81000000;
115 asm("sync;isync;msync");
116 udelay(200);
117 }
118#endif
119 dram_size = spd_sdram();
120
121#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
122 /*
123 * Initialize and enable DDR ECC.
124 */
125 ddr_enable_ecc(dram_size);
126#endif
127 /*
128 * SDRAM Initialization
129 */
130 sdram_init();
131
132 puts(" DDR: ");
133 return dram_size;
134}
135
136/*
137 * Initialize Local Bus
138 */
139void
140local_bus_init(void)
141{
142 volatile immap_t *immap = (immap_t *)CFG_IMMR;
143 volatile ccsr_gur_t *gur = &immap->im_gur;
144 volatile ccsr_lbc_t *lbc = &immap->im_lbc;
145
146 uint clkdiv;
147 uint lbc_hz;
148 sys_info_t sysinfo;
149
150 get_sys_info(&sysinfo);
151 clkdiv = (lbc->lcrr & 0x0f) * 2;
152 lbc_hz = sysinfo.freqSystemBus / 1000000 / clkdiv;
153
154 gur->lbiuiplldcr1 = 0x00078080;
155 if (clkdiv == 16) {
156 gur->lbiuiplldcr0 = 0x7c0f1bf0;
157 } else if (clkdiv == 8) {
158 gur->lbiuiplldcr0 = 0x6c0f1bf0;
159 } else if (clkdiv == 4) {
160 gur->lbiuiplldcr0 = 0x5c0f1bf0;
161 }
162
163 lbc->lcrr |= 0x00030000;
164
165 asm("sync;isync;msync");
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500166
167 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
168 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500169}
170
171/*
172 * Initialize SDRAM memory on the Local Bus.
173 */
174void
175sdram_init(void)
176{
177#if defined(CFG_OR2_PRELIM) && defined(CFG_BR2_PRELIM)
178
179 uint idx;
180 volatile immap_t *immap = (immap_t *)CFG_IMMR;
181 volatile ccsr_lbc_t *lbc = &immap->im_lbc;
182 uint *sdram_addr = (uint *)CFG_LBC_SDRAM_BASE;
183 uint cpu_board_rev;
184 uint lsdmr_common;
185
186 puts(" SDRAM: ");
187
188 print_size (CFG_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
189
190 /*
191 * Setup SDRAM Base and Option Registers
192 */
193 lbc->or2 = CFG_OR2_PRELIM;
194 asm("msync");
195
196 lbc->br2 = CFG_BR2_PRELIM;
197 asm("msync");
198
199 lbc->lbcr = CFG_LBC_LBCR;
200 asm("msync");
201
202
203 lbc->lsrt = CFG_LBC_LSRT;
204 lbc->mrtpr = CFG_LBC_MRTPR;
205 asm("msync");
206
207 /*
208 * MPC8548 uses "new" 15-16 style addressing.
209 */
210 cpu_board_rev = get_cpu_board_revision();
211 lsdmr_common = CFG_LBC_LSDMR_COMMON;
212 lsdmr_common |= CFG_LBC_LSDMR_BSMA1516;
213
214 /*
215 * Issue PRECHARGE ALL command.
216 */
217 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_PCHALL;
218 asm("sync;msync");
219 *sdram_addr = 0xff;
220 ppcDcbf((unsigned long) sdram_addr);
221 udelay(100);
222
223 /*
224 * Issue 8 AUTO REFRESH commands.
225 */
226 for (idx = 0; idx < 8; idx++) {
227 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_ARFRSH;
228 asm("sync;msync");
229 *sdram_addr = 0xff;
230 ppcDcbf((unsigned long) sdram_addr);
231 udelay(100);
232 }
233
234 /*
235 * Issue 8 MODE-set command.
236 */
237 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_MRW;
238 asm("sync;msync");
239 *sdram_addr = 0xff;
240 ppcDcbf((unsigned long) sdram_addr);
241 udelay(100);
242
243 /*
244 * Issue NORMAL OP command.
245 */
246 lbc->lsdmr = lsdmr_common | CFG_LBC_LSDMR_OP_NORMAL;
247 asm("sync;msync");
248 *sdram_addr = 0xff;
249 ppcDcbf((unsigned long) sdram_addr);
250 udelay(200); /* Overkill. Must wait > 200 bus cycles */
251
252#endif /* enable SDRAM init */
253}
254
255#if defined(CFG_DRAM_TEST)
256int
257testdram(void)
258{
259 uint *pstart = (uint *) CFG_MEMTEST_START;
260 uint *pend = (uint *) CFG_MEMTEST_END;
261 uint *p;
262
263 printf("Testing DRAM from 0x%08x to 0x%08x\n",
264 CFG_MEMTEST_START,
265 CFG_MEMTEST_END);
266
267 printf("DRAM test phase 1:\n");
268 for (p = pstart; p < pend; p++)
269 *p = 0xaaaaaaaa;
270
271 for (p = pstart; p < pend; p++) {
272 if (*p != 0xaaaaaaaa) {
273 printf ("DRAM test fails at: %08x\n", (uint) p);
274 return 1;
275 }
276 }
277
278 printf("DRAM test phase 2:\n");
279 for (p = pstart; p < pend; p++)
280 *p = 0x55555555;
281
282 for (p = pstart; p < pend; p++) {
283 if (*p != 0x55555555) {
284 printf ("DRAM test fails at: %08x\n", (uint) p);
285 return 1;
286 }
287 }
288
289 printf("DRAM test passed.\n");
290 return 0;
291}
292#endif
293
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500294#if defined(CONFIG_PCI) || defined(CONFIG_PCI1)
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500295/* For some reason the Tundra PCI bridge shows up on itself as a
296 * different device. Work around that by refusing to configure it.
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500297 */
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500298void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { }
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500299
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500300static struct pci_config_table pci_mpc85xxcds_config_table[] = {
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500301 {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}},
302 {0x1106, 0x0686, PCI_ANY_ID, 1, 2, 0, mpc85xx_config_via, {0,0,0}},
Andy Flemingffa621a2007-02-24 01:08:13 -0600303 {0x1106, 0x0571, PCI_ANY_ID, 1, 2, 1,
304 mpc85xx_config_via_usbide, {0,0,0}},
Matthew McClintockbf1dfff2006-06-28 10:46:13 -0500305 {0x1105, 0x3038, PCI_ANY_ID, 1, 2, 2, mpc85xx_config_via_usb, {0,0,0}},
306 {0x1106, 0x3038, PCI_ANY_ID, 1, 2, 3, mpc85xx_config_via_usb2, {0,0,0}},
Andy Flemingffa621a2007-02-24 01:08:13 -0600307 {0x1106, 0x3058, PCI_ANY_ID, 1, 2, 5,
308 mpc85xx_config_via_power, {0,0,0}},
309 {0x1106, 0x3068, PCI_ANY_ID, 1, 2, 6, mpc85xx_config_via_ac97, {0,0,0}},
310 {},
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500311};
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500312
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500313static struct pci_controller pci1_hose = {
314 config_table: pci_mpc85xxcds_config_table};
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500315#endif /* CONFIG_PCI */
316
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500317#ifdef CONFIG_PCI2
318static struct pci_controller pci2_hose;
319#endif /* CONFIG_PCI2 */
320
321#ifdef CONFIG_PCIE1
322static struct pci_controller pcie1_hose;
323#endif /* CONFIG_PCIE1 */
324
325int first_free_busno=0;
326
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500327void
328pci_init_board(void)
329{
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500330 volatile immap_t *immap = (immap_t *)CFG_IMMR;
331 volatile ccsr_gur_t *gur = &immap->im_gur;
332 uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
333 uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
334
335
336#ifdef CONFIG_PCI1
337{
338 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI1_ADDR;
339 extern void fsl_pci_init(struct pci_controller *hose);
340 struct pci_controller *hose = &pci1_hose;
341 struct pci_config_table *table;
342
343 uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32; /* PORDEVSR[15] */
344 uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB; /* PORDEVSR[14] */
345 uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD; /* PORPLLSR[16] */
346
347 uint pci_agent = (host_agent == 3) || (host_agent == 4 ) || (host_agent == 6);
348
349 uint pci_speed = get_clock_freq (); /* PCI PSPEED in [4:5] */
350
351 if (!(gur->devdisr & MPC85xx_DEVDISR_PCI1)) {
352 printf (" PCI: %d bit, %s MHz, %s, %s, %s\n",
353 (pci_32) ? 32 : 64,
354 (pci_speed == 33333000) ? "33" :
355 (pci_speed == 66666000) ? "66" : "unknown",
356 pci_clk_sel ? "sync" : "async",
357 pci_agent ? "agent" : "host",
358 pci_arb ? "arbiter" : "external-arbiter"
359 );
360
361
362 /* outbound memory */
363 pci_set_region(hose->regions + 0,
364 CFG_PCI1_MEM_BASE,
365 CFG_PCI1_MEM_PHYS,
366 CFG_PCI1_MEM_SIZE,
367 PCI_REGION_MEM);
368
369 /* outbound io */
370 pci_set_region(hose->regions + 1,
371 CFG_PCI1_IO_BASE,
372 CFG_PCI1_IO_PHYS,
373 CFG_PCI1_IO_SIZE,
374 PCI_REGION_IO);
375 hose->region_count = 2;
376
377 /* relocate config table pointers */
378 hose->config_table = \
379 (struct pci_config_table *)((uint)hose->config_table + gd->reloc_off);
380 for (table = hose->config_table; table && table->vendor; table++)
381 table->config_device += gd->reloc_off;
382
383 hose->first_busno=first_free_busno;
384 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
385
386 fsl_pci_init(hose);
387 first_free_busno=hose->last_busno+1;
388 printf ("PCI on bus %02x - %02x\n",hose->first_busno,hose->last_busno);
389#ifdef CONFIG_PCIX_CHECK
390 if (!(gur->pordevsr & PORDEVSR_PCI)) {
391 /* PCI-X init */
392 if (CONFIG_SYS_CLK_FREQ < 66000000)
393 printf("PCI-X will only work at 66 MHz\n");
394
395 reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
396 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
397 pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16);
398 }
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500399#endif
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500400 } else {
401 printf (" PCI: disabled\n");
402 }
403}
404#else
405 gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
406#endif
407
408#ifdef CONFIG_PCI2
409{
410 uint pci2_clk_sel = gur->porpllsr & 0x4000; /* PORPLLSR[17] */
411 uint pci_dual = get_pci_dual (); /* PCI DUAL in CM_PCI[3] */
412 if (pci_dual) {
413 printf (" PCI2: 32 bit, 66 MHz, %s\n",
414 pci2_clk_sel ? "sync" : "async");
415 } else {
416 printf (" PCI2: disabled\n");
417 }
418}
419#else
420 gur->devdisr |= MPC85xx_DEVDISR_PCI2; /* disable */
421#endif /* CONFIG_PCI2 */
422
423#ifdef CONFIG_PCIE1
424{
425 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCIE1_ADDR;
426 extern void fsl_pci_init(struct pci_controller *hose);
427 struct pci_controller *hose = &pcie1_hose;
428 int pcie_ep = (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
429
430 int pcie_configured = io_sel >= 1;
431
432 if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
433 printf ("\n PCIE connected to slot as %s (base address %x)",
434 pcie_ep ? "End Point" : "Root Complex",
435 (uint)pci);
436
437 if (pci->pme_msg_det) {
438 pci->pme_msg_det = 0xffffffff;
439 debug (" with errors. Clearing. Now 0x%08x",pci->pme_msg_det);
440 }
441 printf ("\n");
442
443 /* inbound */
444 pci_set_region(hose->regions + 0,
445 CFG_PCI_MEMORY_BUS,
446 CFG_PCI_MEMORY_PHYS,
447 CFG_PCI_MEMORY_SIZE,
448 PCI_REGION_MEM | PCI_REGION_MEMORY);
449
450 /* outbound memory */
451 pci_set_region(hose->regions + 1,
452 CFG_PCIE1_MEM_BASE,
453 CFG_PCIE1_MEM_PHYS,
454 CFG_PCIE1_MEM_SIZE,
455 PCI_REGION_MEM);
456
457 /* outbound io */
458 pci_set_region(hose->regions + 2,
459 CFG_PCIE1_IO_BASE,
460 CFG_PCIE1_IO_PHYS,
461 CFG_PCIE1_IO_SIZE,
462 PCI_REGION_IO);
463
464 hose->region_count = 3;
465
466 hose->first_busno=first_free_busno;
467 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
468
469 fsl_pci_init(hose);
470 printf ("PCIE on bus %d - %d\n",hose->first_busno,hose->last_busno);
471
472 first_free_busno=hose->last_busno+1;
473
474 } else {
475 printf (" PCIE: disabled\n");
476 }
477 }
478#else
479 gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
480#endif
481
Jon Loeligerd9b94f22005-07-25 14:05:07 -0500482}
Andy Fleming09f3e092006-09-13 10:34:18 -0500483
484int last_stage_init(void)
485{
Jon Loeligerf5012822006-10-20 15:54:34 -0500486 unsigned short temp;
Andy Fleming09f3e092006-09-13 10:34:18 -0500487
488 /* Change the resistors for the PHY */
489 /* This is needed to get the RGMII working for the 1.3+
490 * CDS cards */
491 if (get_board_version() == 0x13) {
Kim Phillips255a35772007-05-16 16:52:19 -0500492 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500493 TSEC1_PHY_ADDR, 29, 18);
494
Kim Phillips255a35772007-05-16 16:52:19 -0500495 miiphy_read(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500496 TSEC1_PHY_ADDR, 30, &temp);
497
498 temp = (temp & 0xf03f);
499 temp |= 2 << 9; /* 36 ohm */
500 temp |= 2 << 6; /* 39 ohm */
501
Kim Phillips255a35772007-05-16 16:52:19 -0500502 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500503 TSEC1_PHY_ADDR, 30, temp);
504
Kim Phillips255a35772007-05-16 16:52:19 -0500505 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500506 TSEC1_PHY_ADDR, 29, 3);
507
Kim Phillips255a35772007-05-16 16:52:19 -0500508 miiphy_write(CONFIG_TSEC1_NAME,
Andy Fleming09f3e092006-09-13 10:34:18 -0500509 TSEC1_PHY_ADDR, 30, 0x8000);
510 }
511
512 return 0;
513}
Ed Swarthoutf2cff6b2007-07-27 01:50:52 -0500514
515
516#if defined(CONFIG_OF_FLAT_TREE) && defined(CONFIG_OF_BOARD_SETUP)
517void
518ft_pci_setup(void *blob, bd_t *bd)
519{
520 u32 *p;
521 int len;
522
523
524#ifdef CONFIG_PCI1
525 p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@8000/bus-range", &len);
526 if (p != NULL) {
527 p[0] = 0;
528 p[1] = pci1_hose.last_busno - pci1_hose.first_busno;
529 debug("PCI@8000 first_busno=%d last_busno=%d\n",p[0],p[1]);
530 }
531#endif
532
533#ifdef CONFIG_PCIE1
534 p = (u32 *)ft_get_prop(blob, "/" OF_SOC "/pci@a000/bus-range", &len);
535 if (p != NULL) {
536 p[0] = 0;
537 p[1] = pcie1_hose.last_busno - pcie1_hose.first_busno;
538 debug("PCI@a000 first_busno=%d last_busno=%d\n",p[0],p[1]);
539 }
540#endif
541}
542#endif