]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/freescale/mpc8548cds/mpc8548cds.c
af5ff42e319e4e85c4c29a01817375932f7c20f9
[karo-tx-uboot.git] / board / freescale / mpc8548cds / mpc8548cds.c
1 /*
2  * Copyright 2004, 2007 Freescale Semiconductor.
3  *
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/mmu.h>
29 #include <asm/immap_85xx.h>
30 #include <asm/immap_fsl_pci.h>
31 #include <asm/fsl_ddr_sdram.h>
32 #include <spd_sdram.h>
33 #include <miiphy.h>
34 #include <libfdt.h>
35 #include <fdt_support.h>
36
37 #include "../common/cadmus.h"
38 #include "../common/eeprom.h"
39 #include "../common/via.h"
40
41 #if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
42 extern void ddr_enable_ecc(unsigned int dram_size);
43 #endif
44
45 DECLARE_GLOBAL_DATA_PTR;
46
47 void local_bus_init(void);
48 void sdram_init(void);
49
50 int checkboard (void)
51 {
52         volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
53         volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
54
55         /* PCI slot in USER bits CSR[6:7] by convention. */
56         uint pci_slot = get_pci_slot ();
57
58         uint cpu_board_rev = get_cpu_board_revision ();
59         uint svr;
60
61         printf ("Board: CDS Version 0x%02x, PCI Slot %d\n",
62                 get_board_version (), pci_slot);
63
64         printf ("CPU Board Revision %d.%d (0x%04x)\n",
65                 MPC85XX_CPU_BOARD_MAJOR (cpu_board_rev),
66                 MPC85XX_CPU_BOARD_MINOR (cpu_board_rev), cpu_board_rev);
67         /*
68          * Initialize local bus.
69          */
70         local_bus_init ();
71
72         svr = get_svr();
73
74         /*
75          * Fix CPU2 errata: A core hang possible while executing a
76          * msync instruction and a snoopable transaction from an I/O
77          * master tagged to make quick forward progress is present.
78          * Fixed in Silicon Rev.2.1
79          */
80         if (!(SVR_MAJ(svr) >= 2 && SVR_MIN(svr) >= 1))
81                 ecm->eebpcr |= (1 << 16);
82
83         /*
84          * Hack TSEC 3 and 4 IO voltages.
85          */
86         gur->tsec34ioovcr = 0xe7e0;     /*  1110 0111 1110 0xxx */
87
88         ecm->eedr = 0xffffffff;         /* clear ecm errors */
89         ecm->eeer = 0xffffffff;         /* enable ecm errors */
90         return 0;
91 }
92
93 phys_size_t
94 initdram(int board_type)
95 {
96         long dram_size = 0;
97
98         puts("Initializing\n");
99
100 #if defined(CONFIG_DDR_DLL)
101         {
102                 /*
103                  * Work around to stabilize DDR DLL MSYNC_IN.
104                  * Errata DDR9 seems to have been fixed.
105                  * This is now the workaround for Errata DDR11:
106                  *    Override DLL = 1, Course Adj = 1, Tap Select = 0
107                  */
108
109                 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
110
111                 gur->ddrdllcr = 0x81000000;
112                 asm("sync;isync;msync");
113                 udelay(200);
114         }
115 #endif
116
117         dram_size = fsl_ddr_sdram();
118         dram_size = setup_ddr_tlbs(dram_size / 0x100000);
119         dram_size *= 0x100000;
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         /*
129          * SDRAM Initialization
130          */
131         sdram_init();
132
133         puts("    DDR: ");
134         return dram_size;
135 }
136
137 /*
138  * Initialize Local Bus
139  */
140 void
141 local_bus_init(void)
142 {
143         volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
144         volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
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");
166
167         lbc->ltesr = 0xffffffff;        /* Clear LBC error interrupts */
168         lbc->lteir = 0xffffffff;        /* Enable LBC error interrupts */
169 }
170
171 /*
172  * Initialize SDRAM memory on the Local Bus.
173  */
174 void
175 sdram_init(void)
176 {
177 #if defined(CONFIG_SYS_OR2_PRELIM) && defined(CONFIG_SYS_BR2_PRELIM)
178
179         uint idx;
180         volatile ccsr_lbc_t *lbc = (void *)(CONFIG_SYS_MPC85xx_LBC_ADDR);
181         uint *sdram_addr = (uint *)CONFIG_SYS_LBC_SDRAM_BASE;
182         uint cpu_board_rev;
183         uint lsdmr_common;
184
185         puts("    SDRAM: ");
186
187         print_size (CONFIG_SYS_LBC_SDRAM_SIZE * 1024 * 1024, "\n");
188
189         /*
190          * Setup SDRAM Base and Option Registers
191          */
192         lbc->or2 = CONFIG_SYS_OR2_PRELIM;
193         asm("msync");
194
195         lbc->br2 = CONFIG_SYS_BR2_PRELIM;
196         asm("msync");
197
198         lbc->lbcr = CONFIG_SYS_LBC_LBCR;
199         asm("msync");
200
201
202         lbc->lsrt = CONFIG_SYS_LBC_LSRT;
203         lbc->mrtpr = CONFIG_SYS_LBC_MRTPR;
204         asm("msync");
205
206         /*
207          * MPC8548 uses "new" 15-16 style addressing.
208          */
209         cpu_board_rev = get_cpu_board_revision();
210         lsdmr_common = CONFIG_SYS_LBC_LSDMR_COMMON;
211         lsdmr_common |= CONFIG_SYS_LBC_LSDMR_BSMA1516;
212
213         /*
214          * Issue PRECHARGE ALL command.
215          */
216         lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_PCHALL;
217         asm("sync;msync");
218         *sdram_addr = 0xff;
219         ppcDcbf((unsigned long) sdram_addr);
220         udelay(100);
221
222         /*
223          * Issue 8 AUTO REFRESH commands.
224          */
225         for (idx = 0; idx < 8; idx++) {
226                 lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_ARFRSH;
227                 asm("sync;msync");
228                 *sdram_addr = 0xff;
229                 ppcDcbf((unsigned long) sdram_addr);
230                 udelay(100);
231         }
232
233         /*
234          * Issue 8 MODE-set command.
235          */
236         lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_MRW;
237         asm("sync;msync");
238         *sdram_addr = 0xff;
239         ppcDcbf((unsigned long) sdram_addr);
240         udelay(100);
241
242         /*
243          * Issue NORMAL OP command.
244          */
245         lbc->lsdmr = lsdmr_common | CONFIG_SYS_LBC_LSDMR_OP_NORMAL;
246         asm("sync;msync");
247         *sdram_addr = 0xff;
248         ppcDcbf((unsigned long) sdram_addr);
249         udelay(200);    /* Overkill. Must wait > 200 bus cycles */
250
251 #endif  /* enable SDRAM init */
252 }
253
254 #if defined(CONFIG_PCI) || defined(CONFIG_PCI1)
255 /* For some reason the Tundra PCI bridge shows up on itself as a
256  * different device.  Work around that by refusing to configure it.
257  */
258 void dummy_func(struct pci_controller* hose, pci_dev_t dev, struct pci_config_table *tab) { }
259
260 static struct pci_config_table pci_mpc85xxcds_config_table[] = {
261         {0x10e3, 0x0513, PCI_ANY_ID, 1, 3, PCI_ANY_ID, dummy_func, {0,0,0}},
262         {0x1106, 0x0686, PCI_ANY_ID, 1, VIA_ID, 0, mpc85xx_config_via, {0,0,0}},
263         {0x1106, 0x0571, PCI_ANY_ID, 1, VIA_ID, 1,
264                 mpc85xx_config_via_usbide, {0,0,0}},
265         {0x1105, 0x3038, PCI_ANY_ID, 1, VIA_ID, 2,
266                 mpc85xx_config_via_usb, {0,0,0}},
267         {0x1106, 0x3038, PCI_ANY_ID, 1, VIA_ID, 3,
268                 mpc85xx_config_via_usb2, {0,0,0}},
269         {0x1106, 0x3058, PCI_ANY_ID, 1, VIA_ID, 5,
270                 mpc85xx_config_via_power, {0,0,0}},
271         {0x1106, 0x3068, PCI_ANY_ID, 1, VIA_ID, 6,
272                 mpc85xx_config_via_ac97, {0,0,0}},
273         {},
274 };
275
276 static struct pci_controller pci1_hose = {
277         config_table: pci_mpc85xxcds_config_table};
278 #endif  /* CONFIG_PCI */
279
280 #ifdef CONFIG_PCI2
281 static struct pci_controller pci2_hose;
282 #endif  /* CONFIG_PCI2 */
283
284 #ifdef CONFIG_PCIE1
285 static struct pci_controller pcie1_hose;
286 #endif  /* CONFIG_PCIE1 */
287
288 extern int fsl_pci_setup_inbound_windows(struct pci_region *r);
289 extern void fsl_pci_init(struct pci_controller *hose);
290
291 int first_free_busno=0;
292
293 void
294 pci_init_board(void)
295 {
296         volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
297         uint io_sel = (gur->pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
298         uint host_agent = (gur->porbmsr & MPC85xx_PORBMSR_HA) >> 16;
299
300
301 #ifdef CONFIG_PCI1
302 {
303         volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCI1_ADDR;
304         struct pci_controller *hose = &pci1_hose;
305         struct pci_config_table *table;
306         struct pci_region *r = hose->regions;
307
308         uint pci_32 = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_PCI32;      /* PORDEVSR[15] */
309         uint pci_arb = gur->pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;       /* PORDEVSR[14] */
310         uint pci_clk_sel = gur->porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;   /* PORPLLSR[16] */
311
312         uint pci_agent = (host_agent == 3) || (host_agent == 4 ) || (host_agent == 6);
313
314         uint pci_speed = get_clock_freq ();     /* PCI PSPEED in [4:5] */
315
316         if (!(gur->devdisr & MPC85xx_DEVDISR_PCI1)) {
317                 printf ("    PCI: %d bit, %s MHz, %s, %s, %s\n",
318                         (pci_32) ? 32 : 64,
319                         (pci_speed == 33333000) ? "33" :
320                         (pci_speed == 66666000) ? "66" : "unknown",
321                         pci_clk_sel ? "sync" : "async",
322                         pci_agent ? "agent" : "host",
323                         pci_arb ? "arbiter" : "external-arbiter"
324                         );
325
326
327                 /* inbound */
328                 r += fsl_pci_setup_inbound_windows(r);
329
330                 /* outbound memory */
331                 pci_set_region(r++,
332                                CONFIG_SYS_PCI1_MEM_BASE,
333                                CONFIG_SYS_PCI1_MEM_PHYS,
334                                CONFIG_SYS_PCI1_MEM_SIZE,
335                                PCI_REGION_MEM);
336
337                 /* outbound io */
338                 pci_set_region(r++,
339                                CONFIG_SYS_PCI1_IO_BASE,
340                                CONFIG_SYS_PCI1_IO_PHYS,
341                                CONFIG_SYS_PCI1_IO_SIZE,
342                                PCI_REGION_IO);
343                 hose->region_count = r - hose->regions;
344
345                 /* relocate config table pointers */
346                 hose->config_table = \
347                         (struct pci_config_table *)((uint)hose->config_table + gd->reloc_off);
348                 for (table = hose->config_table; table && table->vendor; table++)
349                         table->config_device += gd->reloc_off;
350
351                 hose->first_busno=first_free_busno;
352                 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
353
354                 fsl_pci_init(hose);
355                 first_free_busno=hose->last_busno+1;
356                 printf ("PCI on bus %02x - %02x\n",hose->first_busno,hose->last_busno);
357 #ifdef CONFIG_PCIX_CHECK
358                 if (!(gur->pordevsr & PORDEVSR_PCI)) {
359                         /* PCI-X init */
360                         if (CONFIG_SYS_CLK_FREQ < 66000000)
361                                 printf("PCI-X will only work at 66 MHz\n");
362
363                         reg16 = PCI_X_CMD_MAX_SPLIT | PCI_X_CMD_MAX_READ
364                                 | PCI_X_CMD_ERO | PCI_X_CMD_DPERR_E;
365                         pci_hose_write_config_word(hose, bus, PCIX_COMMAND, reg16);
366                 }
367 #endif
368         } else {
369                 printf ("    PCI: disabled\n");
370         }
371 }
372 #else
373         gur->devdisr |= MPC85xx_DEVDISR_PCI1; /* disable */
374 #endif
375
376 #ifdef CONFIG_PCI2
377 {
378         uint pci2_clk_sel = gur->porpllsr & 0x4000;     /* PORPLLSR[17] */
379         uint pci_dual = get_pci_dual ();        /* PCI DUAL in CM_PCI[3] */
380         if (pci_dual) {
381                 printf ("    PCI2: 32 bit, 66 MHz, %s\n",
382                         pci2_clk_sel ? "sync" : "async");
383         } else {
384                 printf ("    PCI2: disabled\n");
385         }
386 }
387 #else
388         gur->devdisr |= MPC85xx_DEVDISR_PCI2; /* disable */
389 #endif /* CONFIG_PCI2 */
390
391 #ifdef CONFIG_PCIE1
392 {
393         volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CONFIG_SYS_PCIE1_ADDR;
394         struct pci_controller *hose = &pcie1_hose;
395         int pcie_ep =  (host_agent == 0) || (host_agent == 2 ) || (host_agent == 3);
396         struct pci_region *r = hose->regions;
397
398         int pcie_configured  = io_sel >= 1;
399
400         if (pcie_configured && !(gur->devdisr & MPC85xx_DEVDISR_PCIE)){
401                 printf ("\n    PCIE connected to slot as %s (base address %x)",
402                         pcie_ep ? "End Point" : "Root Complex",
403                         (uint)pci);
404
405                 if (pci->pme_msg_det) {
406                         pci->pme_msg_det = 0xffffffff;
407                         debug (" with errors.  Clearing.  Now 0x%08x",pci->pme_msg_det);
408                 }
409                 printf ("\n");
410
411                 /* inbound */
412                 r += fsl_pci_setup_inbound_windows(r);
413
414                 /* outbound memory */
415                 pci_set_region(r++,
416                                CONFIG_SYS_PCIE1_MEM_BASE,
417                                CONFIG_SYS_PCIE1_MEM_PHYS,
418                                CONFIG_SYS_PCIE1_MEM_SIZE,
419                                PCI_REGION_MEM);
420
421                 /* outbound io */
422                 pci_set_region(r++,
423                                CONFIG_SYS_PCIE1_IO_BASE,
424                                CONFIG_SYS_PCIE1_IO_PHYS,
425                                CONFIG_SYS_PCIE1_IO_SIZE,
426                                PCI_REGION_IO);
427
428                 hose->region_count = r - hose->regions;
429
430                 hose->first_busno=first_free_busno;
431                 pci_setup_indirect(hose, (int) &pci->cfg_addr, (int) &pci->cfg_data);
432
433                 fsl_pci_init(hose);
434                 printf ("PCIE on bus %d - %d\n",hose->first_busno,hose->last_busno);
435
436                 first_free_busno=hose->last_busno+1;
437
438         } else {
439                 printf ("    PCIE: disabled\n");
440         }
441  }
442 #else
443         gur->devdisr |= MPC85xx_DEVDISR_PCIE; /* disable */
444 #endif
445
446 }
447
448 int last_stage_init(void)
449 {
450         unsigned short temp;
451
452         /* Change the resistors for the PHY */
453         /* This is needed to get the RGMII working for the 1.3+
454          * CDS cards */
455         if (get_board_version() ==  0x13) {
456                 miiphy_write(CONFIG_TSEC1_NAME,
457                                 TSEC1_PHY_ADDR, 29, 18);
458
459                 miiphy_read(CONFIG_TSEC1_NAME,
460                                 TSEC1_PHY_ADDR, 30, &temp);
461
462                 temp = (temp & 0xf03f);
463                 temp |= 2 << 9;         /* 36 ohm */
464                 temp |= 2 << 6;         /* 39 ohm */
465
466                 miiphy_write(CONFIG_TSEC1_NAME,
467                                 TSEC1_PHY_ADDR, 30, temp);
468
469                 miiphy_write(CONFIG_TSEC1_NAME,
470                                 TSEC1_PHY_ADDR, 29, 3);
471
472                 miiphy_write(CONFIG_TSEC1_NAME,
473                                 TSEC1_PHY_ADDR, 30, 0x8000);
474         }
475
476         return 0;
477 }
478
479
480 #if defined(CONFIG_OF_BOARD_SETUP)
481 extern void ft_fsl_pci_setup(void *blob, const char *pci_alias,
482                         struct pci_controller *hose);
483
484 void ft_pci_setup(void *blob, bd_t *bd)
485 {
486 #ifdef CONFIG_PCI1
487         ft_fsl_pci_setup(blob, "pci0", &pci1_hose);
488 #endif
489 #ifdef CONFIG_PCIE1
490         ft_fsl_pci_setup(blob, "pci1", &pcie1_hose);
491 #endif
492 }
493 #endif