blob: 6578f58dbfee1319afc49b2dd29889fd1da9a323 [file] [log] [blame]
Jon Loeliger3dd2db52007-10-16 13:54:01 -05001/*
Kumar Gala6525d512010-07-08 22:37:44 -05002 * Copyright 2007,2009-2010 Freescale Semiconductor, Inc.
Jon Loeliger3dd2db52007-10-16 13:54:01 -05003 *
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>
Kumar Galac8514622009-04-02 13:22:48 -050028#include <asm/fsl_pci.h>
Jon Loeliger39aa1a72008-08-26 15:01:36 -050029#include <asm/fsl_ddr_sdram.h>
Jon Loeligerc9974ab2008-01-04 11:58:23 -060030#include <i2c.h>
Jon Loeliger3dd2db52007-10-16 13:54:01 -050031#include <asm/io.h>
Jon Loeliger1df170f2008-01-04 12:07:27 -060032#include <libfdt.h>
33#include <fdt_support.h>
Jon Loeligera30a5492008-03-04 10:03:03 -060034#include <spd_sdram.h>
Ben Warren89973f82008-08-31 22:22:04 -070035#include <netdev.h>
Jon Loeliger3dd2db52007-10-16 13:54:01 -050036
Jon Loeliger3dd2db52007-10-16 13:54:01 -050037void sdram_init(void);
Becky Bruce4c77de32008-10-31 17:13:32 -050038phys_size_t fixed_sdram(void);
Jon Loeligerc9974ab2008-01-04 11:58:23 -060039void mpc8610hpcd_diu_init(void);
40
Jon Loeliger3dd2db52007-10-16 13:54:01 -050041
42/* called before any console output */
43int board_early_init_f(void)
44{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -050046 volatile ccsr_gur_t *gur = &immap->im_gur;
47
York Suna8778802007-10-29 13:58:39 -050048 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
49
50 return 0;
51}
52
53int misc_init_r(void)
54{
55 u8 tmp_val, version;
Kumar Gala048e7ef2009-07-22 10:12:39 -050056 u8 *pixis_base = (u8 *)PIXIS_BASE;
York Suna8778802007-10-29 13:58:39 -050057
58 /*Do not use 8259PIC*/
Kumar Gala048e7ef2009-07-22 10:12:39 -050059 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
60 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
York Suna8778802007-10-29 13:58:39 -050061
62 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
Kumar Gala048e7ef2009-07-22 10:12:39 -050063 version = in_8(pixis_base + PIXIS_PVER);
York Suna8778802007-10-29 13:58:39 -050064 if(version >= 0x07) {
Kumar Gala048e7ef2009-07-22 10:12:39 -050065 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
66 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
York Suna8778802007-10-29 13:58:39 -050067 }
68
69 /* Using this for DIU init before the driver in linux takes over
70 * Enable the TFP410 Encoder (I2C address 0x38)
71 */
72
73 tmp_val = 0xBF;
74 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
75 /* Verify if enabled */
76 tmp_val = 0;
77 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
78 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
79
80 tmp_val = 0x10;
81 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
82 /* Verify if enabled */
83 tmp_val = 0;
84 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
85 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
86
87#ifdef CONFIG_FSL_DIU_FB
88 mpc8610hpcd_diu_init();
89#endif
Jon Loeliger3dd2db52007-10-16 13:54:01 -050090
91 return 0;
92}
93
94int checkboard(void)
95{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -050097 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Kumar Gala048e7ef2009-07-22 10:12:39 -050098 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger3dd2db52007-10-16 13:54:01 -050099
Wolfgang Denk9b55a252008-07-11 01:16:00 +0200100 printf ("Board: MPC8610HPCD, System ID: 0x%02x, "
101 "System Version: 0x%02x, FPGA Version: 0x%02x\n",
Kumar Gala048e7ef2009-07-22 10:12:39 -0500102 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
103 in_8(pixis_base + PIXIS_PVER));
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500104
105 mcm->abcr |= 0x00010000; /* 0 */
106 mcm->hpmr3 = 0x80000008; /* 4c */
107 mcm->hpmr0 = 0;
108 mcm->hpmr1 = 0;
109 mcm->hpmr2 = 0;
110 mcm->hpmr4 = 0;
111 mcm->hpmr5 = 0;
112
113 return 0;
114}
115
116
Becky Bruce9973e3c2008-06-09 16:03:40 -0500117phys_size_t
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500118initdram(int board_type)
119{
Becky Bruce4c77de32008-10-31 17:13:32 -0500120 phys_size_t dram_size = 0;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500121
122#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger39aa1a72008-08-26 15:01:36 -0500123 dram_size = fsl_ddr_sdram();
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500124#else
125 dram_size = fixed_sdram();
126#endif
127
Timur Tabi9ff32d82010-03-29 12:51:07 -0500128 setup_ddr_bat(dram_size);
129
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500130 puts(" DDR: ");
131 return dram_size;
132}
133
134
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500135#if !defined(CONFIG_SPD_EEPROM)
136/*
137 * Fixed sdram init -- doesn't use serial presence detect.
138 */
139
Becky Bruce4c77de32008-10-31 17:13:32 -0500140phys_size_t fixed_sdram(void)
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500141{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200142#if !defined(CONFIG_SYS_RAMBOOT)
143 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500144 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
145 uint d_init;
146
147 ddr->cs0_bnds = 0x0000001f;
148 ddr->cs0_config = 0x80010202;
149
Kumar Gala45239cf2008-04-29 10:27:08 -0500150 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500151 ddr->timing_cfg_0 = 0x00260802;
152 ddr->timing_cfg_1 = 0x3935d322;
153 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tysere7ee23e2009-07-17 10:14:45 -0500154 ddr->sdram_mode = 0x00480432;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500155 ddr->sdram_mode_2 = 0x00000000;
156 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
157 ddr->sdram_data_init = 0xDEADBEEF;
158 ddr->sdram_clk_cntl = 0x03800000;
159 ddr->sdram_cfg_2 = 0x04400010;
160
161#if defined(CONFIG_DDR_ECC)
162 ddr->err_int_en = 0x0000000d;
163 ddr->err_disable = 0x00000000;
164 ddr->err_sbe = 0x00010000;
165#endif
166 asm("sync;isync");
167
168 udelay(500);
169
Peter Tysere7ee23e2009-07-17 10:14:45 -0500170 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500171
172
173#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
174 d_init = 1;
175 debug("DDR - 1st controller: memory initializing\n");
176 /*
177 * Poll until memory is initialized.
178 * 512 Meg at 400 might hit this 200 times or so.
179 */
180 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
181 udelay(1000);
182
183 debug("DDR: memory initialized\n\n");
184 asm("sync; isync");
185 udelay(500);
186#endif
187
188 return 512 * 1024 * 1024;
189#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200190 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500191}
192
193#endif
194
195#if defined(CONFIG_PCI)
196/*
197 * Initialize PCI Devices, report devices found.
198 */
199
200#ifndef CONFIG_PCI_PNP
201static struct pci_config_table pci_fsl86xxads_config_table[] = {
202 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
203 PCI_IDSEL_NUMBER, PCI_ANY_ID,
204 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
205 PCI_ENET0_MEMADDR,
206 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
207 {}
208};
209#endif
210
211
212static struct pci_controller pci1_hose = {
213#ifndef CONFIG_PCI_PNP
214config_table:pci_mpc86xxcts_config_table
215#endif
216};
217#endif /* CONFIG_PCI */
218
219#ifdef CONFIG_PCIE1
220static struct pci_controller pcie1_hose;
221#endif
222
223#ifdef CONFIG_PCIE2
224static struct pci_controller pcie2_hose;
225#endif
226
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500227void pci_init_board(void)
228{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200229 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500230 volatile ccsr_gur_t *gur = &immap->im_gur;
Kumar Gala5e3d7052009-11-04 12:51:10 -0600231 struct fsl_pci_info pci_info[3];
232 u32 devdisr, pordevsr, io_sel;
233 int first_free_busno = 0;
234 int num = 0;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500235
Kumar Gala5e3d7052009-11-04 12:51:10 -0600236 int pci_agent, pcie_ep, pcie_configured;
237
238 devdisr = in_be32(&gur->devdisr);
239 pordevsr = in_be32(&gur->pordevsr);
240 io_sel = (pordevsr & MPC8610_PORDEVSR_IO_SEL)
241 >> MPC8610_PORDEVSR_IO_SEL_SHIFT;
242
243 debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500244
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500245#ifdef CONFIG_PCIE1
Kumar Gala5e3d7052009-11-04 12:51:10 -0600246 pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_1, io_sel);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500247
Kumar Gala5e3d7052009-11-04 12:51:10 -0600248 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)){
249 SET_STD_PCIE_INFO(pci_info[num], 1);
250 pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs);
251 printf (" PCIE1 connected to ULI as %s (base addr %lx)\n",
Peter Tyser64917ca2010-01-17 15:38:26 -0600252 pcie_ep ? "Endpoint" : "Root Complex",
Kumar Gala5e3d7052009-11-04 12:51:10 -0600253 pci_info[num].regs);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500254
Kumar Gala5e3d7052009-11-04 12:51:10 -0600255 first_free_busno = fsl_pci_init_port(&pci_info[num++],
256 &pcie1_hose, first_free_busno);
257 } else {
258 printf (" PCIE1: disabled\n");
259 }
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500260
Kumar Gala5e3d7052009-11-04 12:51:10 -0600261 puts("\n");
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500262#else
Kumar Gala5e3d7052009-11-04 12:51:10 -0600263 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE1); /* disable */
264#endif
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500265
266#ifdef CONFIG_PCIE2
Kumar Gala5e3d7052009-11-04 12:51:10 -0600267 pcie_configured = is_fsl_pci_cfg(LAW_TRGT_IF_PCIE_2, io_sel);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500268
Kumar Gala5e3d7052009-11-04 12:51:10 -0600269 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)){
270 SET_STD_PCIE_INFO(pci_info[num], 2);
271 pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs);
272 printf (" PCIE2 connected to Slot as %s (base addr %lx)\n",
Peter Tyser64917ca2010-01-17 15:38:26 -0600273 pcie_ep ? "Endpoint" : "Root Complex",
Kumar Gala5e3d7052009-11-04 12:51:10 -0600274 pci_info[num].regs);
275 first_free_busno = fsl_pci_init_port(&pci_info[num++],
276 &pcie2_hose, first_free_busno);
277 } else {
278 printf (" PCIE2: disabled\n");
279 }
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500280
Kumar Gala5e3d7052009-11-04 12:51:10 -0600281 puts("\n");
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500282#else
Kumar Gala5e3d7052009-11-04 12:51:10 -0600283 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE2); /* disable */
284#endif
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500285
286#ifdef CONFIG_PCI1
Kumar Gala5e3d7052009-11-04 12:51:10 -0600287 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
288 SET_STD_PCI_INFO(pci_info[num], 1);
289 pci_agent = fsl_setup_hose(&pci1_hose, pci_info[num].regs);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500290 printf(" PCI connected to PCI slots as %s" \
Kumar Gala5e3d7052009-11-04 12:51:10 -0600291 " (base address %lx)\n",
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500292 pci_agent ? "Agent" : "Host",
Kumar Gala5e3d7052009-11-04 12:51:10 -0600293 pci_info[num].regs);
294 first_free_busno = fsl_pci_init_port(&pci_info[num++],
295 &pci1_hose, first_free_busno);
296 } else {
297 printf (" PCI: disabled\n");
298 }
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500299
Kumar Gala5e3d7052009-11-04 12:51:10 -0600300 puts("\n");
301#else
302 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
303#endif
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500304}
305
Jon Loeliger1df170f2008-01-04 12:07:27 -0600306#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500307void
308ft_board_setup(void *blob, bd_t *bd)
309{
Peter Tyser8439f052009-09-21 23:09:28 -0500310 ft_cpu_setup(blob, bd);
Jon Loeliger1df170f2008-01-04 12:07:27 -0600311
Kumar Gala6525d512010-07-08 22:37:44 -0500312 FT_FSL_PCI_SETUP;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500313}
314#endif
315
316/*
317 * get_board_sys_clk
318 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
319 */
320
321unsigned long
322get_board_sys_clk(ulong dummy)
323{
York Suna8778802007-10-29 13:58:39 -0500324 u8 i;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500325 ulong val = 0;
Kumar Gala048e7ef2009-07-22 10:12:39 -0500326 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500327
Kumar Gala048e7ef2009-07-22 10:12:39 -0500328 i = in_8(pixis_base + PIXIS_SPD);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500329 i &= 0x07;
330
331 switch (i) {
332 case 0:
333 val = 33333000;
334 break;
335 case 1:
336 val = 39999600;
337 break;
338 case 2:
339 val = 49999500;
340 break;
341 case 3:
342 val = 66666000;
343 break;
344 case 4:
345 val = 83332500;
346 break;
347 case 5:
348 val = 99999000;
349 break;
350 case 6:
351 val = 133332000;
352 break;
353 case 7:
354 val = 166665000;
355 break;
356 }
357
358 return val;
359}
Ben Warren65d3d992008-07-11 23:42:19 -0700360
Ben Warren65d3d992008-07-11 23:42:19 -0700361int board_eth_init(bd_t *bis)
362{
Ben Warren89973f82008-08-31 22:22:04 -0700363 return pci_eth_init(bis);
Ben Warren65d3d992008-07-11 23:42:19 -0700364}
Peter Tyser4ef630d2009-02-05 11:25:25 -0600365
366void board_reset(void)
367{
Kumar Gala048e7ef2009-07-22 10:12:39 -0500368 u8 *pixis_base = (u8 *)PIXIS_BASE;
369
370 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser4ef630d2009-02-05 11:25:25 -0600371
372 while (1)
373 ;
374}