blob: d5a4f0ee87d8f79458c7f63e69f7c6b8ace9f1aa [file] [log] [blame]
Jon Loeliger3dd2db52007-10-16 13:54:01 -05001/*
2 * Copyright 2007 Freescale Semiconductor, Inc.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
Jon Loeligerc9974ab2008-01-04 11:58:23 -060022
Jon Loeliger3dd2db52007-10-16 13:54:01 -050023#include <common.h>
24#include <command.h>
25#include <pci.h>
26#include <asm/processor.h>
27#include <asm/immap_86xx.h>
28#include <asm/immap_fsl_pci.h>
Jon Loeligerc9974ab2008-01-04 11:58:23 -060029#include <i2c.h>
Jon Loeliger3dd2db52007-10-16 13:54:01 -050030#include <spd.h>
31#include <asm/io.h>
Jon Loeliger1df170f2008-01-04 12:07:27 -060032#include <libfdt.h>
33#include <fdt_support.h>
Jon Loeliger3dd2db52007-10-16 13:54:01 -050034
35#include "../common/pixis.h"
36
37#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
38extern void ddr_enable_ecc(unsigned int dram_size);
39#endif
40
41#if defined(CONFIG_SPD_EEPROM)
42#include "spd_sdram.h"
43#endif
44
45void sdram_init(void);
46long int fixed_sdram(void);
Jon Loeligerc9974ab2008-01-04 11:58:23 -060047void mpc8610hpcd_diu_init(void);
48
Jon Loeliger3dd2db52007-10-16 13:54:01 -050049
50/* called before any console output */
51int board_early_init_f(void)
52{
53 volatile immap_t *immap = (immap_t *)CFG_IMMR;
54 volatile ccsr_gur_t *gur = &immap->im_gur;
55
York Suna8778802007-10-29 13:58:39 -050056 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
57
58 return 0;
59}
60
61int misc_init_r(void)
62{
63 u8 tmp_val, version;
64
65 /*Do not use 8259PIC*/
66 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
67 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val | 0x80);
68
69 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
70 version = in8(PIXIS_BASE + PIXIS_PVER);
71 if(version >= 0x07) {
72 tmp_val = in8(PIXIS_BASE + PIXIS_BRDCFG0);
73 out8(PIXIS_BASE + PIXIS_BRDCFG0, tmp_val & 0xbf);
74 }
75
76 /* Using this for DIU init before the driver in linux takes over
77 * Enable the TFP410 Encoder (I2C address 0x38)
78 */
79
80 tmp_val = 0xBF;
81 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
82 /* Verify if enabled */
83 tmp_val = 0;
84 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
85 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
86
87 tmp_val = 0x10;
88 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
89 /* Verify if enabled */
90 tmp_val = 0;
91 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
92 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
93
94#ifdef CONFIG_FSL_DIU_FB
95 mpc8610hpcd_diu_init();
96#endif
Jon Loeliger3dd2db52007-10-16 13:54:01 -050097
98 return 0;
99}
100
101int checkboard(void)
102{
103 volatile immap_t *immap = (immap_t *)CFG_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500104 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
105
106 puts("Board: MPC8610HPCD\n");
107
108 mcm->abcr |= 0x00010000; /* 0 */
109 mcm->hpmr3 = 0x80000008; /* 4c */
110 mcm->hpmr0 = 0;
111 mcm->hpmr1 = 0;
112 mcm->hpmr2 = 0;
113 mcm->hpmr4 = 0;
114 mcm->hpmr5 = 0;
115
116 return 0;
117}
118
119
120long int
121initdram(int board_type)
122{
123 long dram_size = 0;
124
125#if defined(CONFIG_SPD_EEPROM)
126 dram_size = spd_sdram();
127#else
128 dram_size = fixed_sdram();
129#endif
130
131#if defined(CFG_RAMBOOT)
132 puts(" DDR: ");
133 return dram_size;
134#endif
135
136#if defined(CONFIG_DDR_ECC) && !defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
137 /*
138 * Initialize and enable DDR ECC.
139 */
140 ddr_enable_ecc(dram_size);
141#endif
142
143 puts(" DDR: ");
144 return dram_size;
145}
146
147
148#if defined(CFG_DRAM_TEST)
149int
150testdram(void)
151{
152 uint *pstart = (uint *) CFG_MEMTEST_START;
153 uint *pend = (uint *) CFG_MEMTEST_END;
154 uint *p;
155
156 puts("SDRAM test phase 1:\n");
157 for (p = pstart; p < pend; p++)
158 *p = 0xaaaaaaaa;
159
160 for (p = pstart; p < pend; p++) {
161 if (*p != 0xaaaaaaaa) {
162 printf("SDRAM test fails at: %08x\n", (uint) p);
163 return 1;
164 }
165 }
166
167 puts("SDRAM test phase 2:\n");
168 for (p = pstart; p < pend; p++)
169 *p = 0x55555555;
170
171 for (p = pstart; p < pend; p++) {
172 if (*p != 0x55555555) {
173 printf("SDRAM test fails at: %08x\n", (uint) p);
174 return 1;
175 }
176 }
177
178 puts("SDRAM test passed.\n");
179 return 0;
180}
181#endif
182
183
184#if !defined(CONFIG_SPD_EEPROM)
185/*
186 * Fixed sdram init -- doesn't use serial presence detect.
187 */
188
189long int fixed_sdram(void)
190{
191#if !defined(CFG_RAMBOOT)
192 volatile immap_t *immap = (immap_t *)CFG_IMMR;
193 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
194 uint d_init;
195
196 ddr->cs0_bnds = 0x0000001f;
197 ddr->cs0_config = 0x80010202;
198
199 ddr->ext_refrec = 0x00000000;
200 ddr->timing_cfg_0 = 0x00260802;
201 ddr->timing_cfg_1 = 0x3935d322;
202 ddr->timing_cfg_2 = 0x14904cc8;
203 ddr->sdram_mode_1 = 0x00480432;
204 ddr->sdram_mode_2 = 0x00000000;
205 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
206 ddr->sdram_data_init = 0xDEADBEEF;
207 ddr->sdram_clk_cntl = 0x03800000;
208 ddr->sdram_cfg_2 = 0x04400010;
209
210#if defined(CONFIG_DDR_ECC)
211 ddr->err_int_en = 0x0000000d;
212 ddr->err_disable = 0x00000000;
213 ddr->err_sbe = 0x00010000;
214#endif
215 asm("sync;isync");
216
217 udelay(500);
218
219 ddr->sdram_cfg_1 = 0xc3000000; /* 0xe3008000;*/
220
221
222#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
223 d_init = 1;
224 debug("DDR - 1st controller: memory initializing\n");
225 /*
226 * Poll until memory is initialized.
227 * 512 Meg at 400 might hit this 200 times or so.
228 */
229 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
230 udelay(1000);
231
232 debug("DDR: memory initialized\n\n");
233 asm("sync; isync");
234 udelay(500);
235#endif
236
237 return 512 * 1024 * 1024;
238#endif
239 return CFG_SDRAM_SIZE * 1024 * 1024;
240}
241
242#endif
243
244#if defined(CONFIG_PCI)
245/*
246 * Initialize PCI Devices, report devices found.
247 */
248
249#ifndef CONFIG_PCI_PNP
250static struct pci_config_table pci_fsl86xxads_config_table[] = {
251 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
252 PCI_IDSEL_NUMBER, PCI_ANY_ID,
253 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
254 PCI_ENET0_MEMADDR,
255 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
256 {}
257};
258#endif
259
260
261static struct pci_controller pci1_hose = {
262#ifndef CONFIG_PCI_PNP
263config_table:pci_mpc86xxcts_config_table
264#endif
265};
266#endif /* CONFIG_PCI */
267
268#ifdef CONFIG_PCIE1
269static struct pci_controller pcie1_hose;
270#endif
271
272#ifdef CONFIG_PCIE2
273static struct pci_controller pcie2_hose;
274#endif
275
276int first_free_busno = 0;
277
278void pci_init_board(void)
279{
280 volatile immap_t *immap = (immap_t *) CFG_CCSRBAR;
281 volatile ccsr_gur_t *gur = &immap->im_gur;
282 uint devdisr = gur->devdisr;
Jon Loeliger975a0832008-02-19 12:31:08 -0600283 uint io_sel = (gur->pordevsr & MPC86xx_PORDEVSR_IO_SEL) >> 19;
284 uint host_agent = (gur->porbmsr & MPC86xx_PORBMSR_HA) >> 16;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500285
286 printf( " pci_init_board: devdisr=%x, io_sel=%x, host_agent=%x\n",
287 devdisr, io_sel, host_agent);
288
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500289#ifdef CONFIG_PCIE1
290 {
291 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCIE1_ADDR;
292 extern void fsl_pci_init(struct pci_controller *hose);
293 struct pci_controller *hose = &pcie1_hose;
294 int pcie_configured = (io_sel == 1) || (io_sel == 4);
295 int pcie_ep = (host_agent == 0) || (host_agent == 2) ||
296 (host_agent == 5);
297
298 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)) {
299 printf(" PCIe 1 connected to Uli as %s (base address %x)\n",
300 pcie_ep ? "End Point" : "Root Complex",
301 (uint)pci);
302 if (pci->pme_msg_det)
303 pci->pme_msg_det = 0xffffffff;
304
305 /* inbound */
306 pci_set_region(hose->regions + 0,
307 CFG_PCI_MEMORY_BUS,
308 CFG_PCI_MEMORY_PHYS,
309 CFG_PCI_MEMORY_SIZE,
310 PCI_REGION_MEM | PCI_REGION_MEMORY);
311
312 /* outbound memory */
313 pci_set_region(hose->regions + 1,
314 CFG_PCIE1_MEM_BASE,
315 CFG_PCIE1_MEM_PHYS,
316 CFG_PCIE1_MEM_SIZE,
317 PCI_REGION_MEM);
318
319 /* outbound io */
320 pci_set_region(hose->regions + 2,
321 CFG_PCIE1_IO_BASE,
322 CFG_PCIE1_IO_PHYS,
323 CFG_PCIE1_IO_SIZE,
324 PCI_REGION_IO);
325
326 hose->region_count = 3;
327
328 hose->first_busno = first_free_busno;
329 pci_setup_indirect(hose, (int)&pci->cfg_addr,
330 (int)&pci->cfg_data);
331
332 fsl_pci_init(hose);
333
334 first_free_busno = hose->last_busno + 1;
335 printf(" PCI-Express 1 on bus %02x - %02x\n",
336 hose->first_busno, hose->last_busno);
337
338 } else
339 puts(" PCI-Express 1: Disabled\n");
340 }
341#else
342 puts("PCI-Express 1: Disabled\n");
343#endif /* CONFIG_PCIE1 */
344
345
346#ifdef CONFIG_PCIE2
347 {
348 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCIE2_ADDR;
349 extern void fsl_pci_init(struct pci_controller *hose);
350 struct pci_controller *hose = &pcie2_hose;
351
352 int pcie_configured = (io_sel == 0) || (io_sel == 4);
353 int pcie_ep = (host_agent == 0) || (host_agent == 1) ||
354 (host_agent == 4);
355
356 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)) {
357 printf(" PCI-Express 2 connected to slot as %s" \
358 " (base address %x)\n",
359 pcie_ep ? "End Point" : "Root Complex",
360 (uint)pci);
361 if (pci->pme_msg_det)
362 pci->pme_msg_det = 0xffffffff;
363
364 /* inbound */
365 pci_set_region(hose->regions + 0,
366 CFG_PCI_MEMORY_BUS,
367 CFG_PCI_MEMORY_PHYS,
368 CFG_PCI_MEMORY_SIZE,
369 PCI_REGION_MEM | PCI_REGION_MEMORY);
370
371 /* outbound memory */
372 pci_set_region(hose->regions + 1,
373 CFG_PCIE2_MEM_BASE,
374 CFG_PCIE2_MEM_PHYS,
375 CFG_PCIE2_MEM_SIZE,
376 PCI_REGION_MEM);
377
378 /* outbound io */
379 pci_set_region(hose->regions + 2,
380 CFG_PCIE2_IO_BASE,
381 CFG_PCIE2_IO_PHYS,
382 CFG_PCIE2_IO_SIZE,
383 PCI_REGION_IO);
384
385 hose->region_count = 3;
386
387 hose->first_busno = first_free_busno;
388 pci_setup_indirect(hose, (int)&pci->cfg_addr,
389 (int)&pci->cfg_data);
390
391 fsl_pci_init(hose);
392
393 first_free_busno = hose->last_busno + 1;
394 printf(" PCI-Express 2 on bus %02x - %02x\n",
395 hose->first_busno, hose->last_busno);
396 } else
397 puts(" PCI-Express 2: Disabled\n");
398 }
399#else
400 puts("PCI-Express 2: Disabled\n");
401#endif /* CONFIG_PCIE2 */
402
403
404#ifdef CONFIG_PCI1
405 {
406 volatile ccsr_fsl_pci_t *pci = (ccsr_fsl_pci_t *) CFG_PCI1_ADDR;
407 extern void fsl_pci_init(struct pci_controller *hose);
408 struct pci_controller *hose = &pci1_hose;
409 int pci_agent = (host_agent >= 4) && (host_agent <= 6);
410
411 if ( !(devdisr & MPC86xx_DEVDISR_PCI1)) {
412 printf(" PCI connected to PCI slots as %s" \
413 " (base address %x)\n",
414 pci_agent ? "Agent" : "Host",
415 (uint)pci);
416
417 /* inbound */
418 pci_set_region(hose->regions + 0,
419 CFG_PCI_MEMORY_BUS,
420 CFG_PCI_MEMORY_PHYS,
421 CFG_PCI_MEMORY_SIZE,
422 PCI_REGION_MEM | PCI_REGION_MEMORY);
423
424 /* outbound memory */
425 pci_set_region(hose->regions + 1,
426 CFG_PCI1_MEM_BASE,
427 CFG_PCI1_MEM_PHYS,
428 CFG_PCI1_MEM_SIZE,
429 PCI_REGION_MEM);
430
431 /* outbound io */
432 pci_set_region(hose->regions + 2,
433 CFG_PCI1_IO_BASE,
434 CFG_PCI1_IO_PHYS,
435 CFG_PCI1_IO_SIZE,
436 PCI_REGION_IO);
437
438 hose->region_count = 3;
439
440 hose->first_busno = first_free_busno;
441 pci_setup_indirect(hose, (int) &pci->cfg_addr,
442 (int) &pci->cfg_data);
443
444 fsl_pci_init(hose);
445
446 first_free_busno = hose->last_busno + 1;
447 printf(" PCI on bus %02x - %02x\n",
448 hose->first_busno, hose->last_busno);
449
450
451 } else
452 puts(" PCI: Disabled\n");
453 }
454#endif /* CONFIG_PCI1 */
455}
456
Jon Loeliger1df170f2008-01-04 12:07:27 -0600457#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500458void
459ft_board_setup(void *blob, bd_t *bd)
460{
Jon Loeliger1df170f2008-01-04 12:07:27 -0600461 int node, tmp[2];
462 const char *path;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500463
Jon Loeliger1df170f2008-01-04 12:07:27 -0600464 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
465 "timebase-frequency", bd->bi_busfreq / 4, 1);
466 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
467 "bus-frequency", bd->bi_busfreq, 1);
468 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
469 "clock-frequency", bd->bi_intfreq, 1);
470 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
471 "bus-frequency", bd->bi_busfreq, 1);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500472
Jon Loeliger1df170f2008-01-04 12:07:27 -0600473 do_fixup_by_compat_u32(blob, "ns16550",
474 "clock-frequency", bd->bi_busfreq, 1);
475
476 fdt_fixup_memory(blob, bd->bi_memstart, bd->bi_memsize);
477
478
479 node = fdt_path_offset(blob, "/aliases");
480 tmp[0] = 0;
481 if (node >= 0) {
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500482
483#ifdef CONFIG_PCI1
Jon Loeliger1df170f2008-01-04 12:07:27 -0600484 path = fdt_getprop(blob, node, "pci0", NULL);
485 if (path) {
486 tmp[1] = pci1_hose.last_busno - pci1_hose.first_busno;
487 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
488 }
489
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500490#endif
491#ifdef CONFIG_PCIE1
Jon Loeliger1df170f2008-01-04 12:07:27 -0600492 path = fdt_getprop(blob, node, "pci1", NULL);
493 if (path) {
494 tmp[1] = pcie1_hose.last_busno
495 - pcie1_hose.first_busno;
496 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500497 }
498#endif
499#ifdef CONFIG_PCIE2
Jon Loeliger1df170f2008-01-04 12:07:27 -0600500 path = fdt_getprop(blob, node, "pci2", NULL);
501 if (path) {
502 tmp[1] = pcie2_hose.last_busno
503 - pcie2_hose.first_busno;
504 do_fixup_by_path(blob, path, "bus-range", &tmp, 8, 1);
505 }
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500506#endif
Jon Loeliger1df170f2008-01-04 12:07:27 -0600507 }
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500508}
509#endif
510
511/*
512 * get_board_sys_clk
513 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
514 */
515
516unsigned long
517get_board_sys_clk(ulong dummy)
518{
York Suna8778802007-10-29 13:58:39 -0500519 u8 i;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500520 ulong val = 0;
521 ulong a;
522
523 a = PIXIS_BASE + PIXIS_SPD;
524 i = in8(a);
525 i &= 0x07;
526
527 switch (i) {
528 case 0:
529 val = 33333000;
530 break;
531 case 1:
532 val = 39999600;
533 break;
534 case 2:
535 val = 49999500;
536 break;
537 case 3:
538 val = 66666000;
539 break;
540 case 4:
541 val = 83332500;
542 break;
543 case 5:
544 val = 99999000;
545 break;
546 case 6:
547 val = 133332000;
548 break;
549 case 7:
550 val = 166665000;
551 break;
552 }
553
554 return val;
555}