blob: 8abd91788926d0361f70ce26100c54e55b1b8c4c [file] [log] [blame]
Jon Loeliger36c0b342007-10-16 13:54:01 -05001/*
Kumar Galad0f27d32010-07-08 22:37:44 -05002 * Copyright 2007,2009-2010 Freescale Semiconductor, Inc.
Jon Loeliger36c0b342007-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 Loeligerca7aff12008-01-04 11:58:23 -060022
Jon Loeliger36c0b342007-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 Gala9bbd6432009-04-02 13:22:48 -050028#include <asm/fsl_pci.h>
Jon Loeliger54634b42008-08-26 15:01:36 -050029#include <asm/fsl_ddr_sdram.h>
Kumar Gala3d020382010-12-15 04:55:20 -060030#include <asm/fsl_serdes.h>
Jon Loeligerca7aff12008-01-04 11:58:23 -060031#include <i2c.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050032#include <asm/io.h>
Jon Loeliger6bb38c42008-01-04 12:07:27 -060033#include <libfdt.h>
34#include <fdt_support.h>
Jon Loeligerde9737d2008-03-04 10:03:03 -060035#include <spd_sdram.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070036#include <netdev.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050037
Jon Loeliger36c0b342007-10-16 13:54:01 -050038void sdram_init(void);
Becky Brucecc064ed2008-10-31 17:13:32 -050039phys_size_t fixed_sdram(void);
Timur Tabie6044632010-08-31 19:56:43 -050040int mpc8610hpcd_diu_init(void);
Jon Loeligerca7aff12008-01-04 11:58:23 -060041
Jon Loeliger36c0b342007-10-16 13:54:01 -050042
43/* called before any console output */
44int board_early_init_f(void)
45{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020046 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050047 volatile ccsr_gur_t *gur = &immap->im_gur;
48
York Sunb7145172007-10-29 13:58:39 -050049 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
Jon Loeliger36c0b342007-10-16 13:54:01 -050050
51 return 0;
52}
53
York Sunb7145172007-10-29 13:58:39 -050054int misc_init_r(void)
55{
56 u8 tmp_val, version;
Kumar Gala146c4b22009-07-22 10:12:39 -050057 u8 *pixis_base = (u8 *)PIXIS_BASE;
York Sunb7145172007-10-29 13:58:39 -050058
59 /*Do not use 8259PIC*/
Kumar Gala146c4b22009-07-22 10:12:39 -050060 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
61 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
York Sunb7145172007-10-29 13:58:39 -050062
63 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
Kumar Gala146c4b22009-07-22 10:12:39 -050064 version = in_8(pixis_base + PIXIS_PVER);
York Sunb7145172007-10-29 13:58:39 -050065 if(version >= 0x07) {
Kumar Gala146c4b22009-07-22 10:12:39 -050066 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
67 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
York Sunb7145172007-10-29 13:58:39 -050068 }
69
70 /* Using this for DIU init before the driver in linux takes over
71 * Enable the TFP410 Encoder (I2C address 0x38)
72 */
73
74 tmp_val = 0xBF;
75 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
76 /* Verify if enabled */
77 tmp_val = 0;
78 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
79 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
80
81 tmp_val = 0x10;
82 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
83 /* Verify if enabled */
84 tmp_val = 0;
85 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
86 debug("DVI Encoder Read: 0x%02lx\n",tmp_val);
87
York Sunb7145172007-10-29 13:58:39 -050088 return 0;
89}
90
Jon Loeliger36c0b342007-10-16 13:54:01 -050091int checkboard(void)
92{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020093 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050094 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Kumar Gala146c4b22009-07-22 10:12:39 -050095 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -050096
Wolfgang Denk12cec0a2008-07-11 01:16:00 +020097 printf ("Board: MPC8610HPCD, System ID: 0x%02x, "
98 "System Version: 0x%02x, FPGA Version: 0x%02x\n",
Kumar Gala146c4b22009-07-22 10:12:39 -050099 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
100 in_8(pixis_base + PIXIS_PVER));
Jon Loeliger36c0b342007-10-16 13:54:01 -0500101
102 mcm->abcr |= 0x00010000; /* 0 */
103 mcm->hpmr3 = 0x80000008; /* 4c */
104 mcm->hpmr0 = 0;
105 mcm->hpmr1 = 0;
106 mcm->hpmr2 = 0;
107 mcm->hpmr4 = 0;
108 mcm->hpmr5 = 0;
109
110 return 0;
111}
112
113
Becky Brucebd99ae72008-06-09 16:03:40 -0500114phys_size_t
Jon Loeliger36c0b342007-10-16 13:54:01 -0500115initdram(int board_type)
116{
Becky Brucecc064ed2008-10-31 17:13:32 -0500117 phys_size_t dram_size = 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500118
119#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger54634b42008-08-26 15:01:36 -0500120 dram_size = fsl_ddr_sdram();
Jon Loeliger36c0b342007-10-16 13:54:01 -0500121#else
122 dram_size = fixed_sdram();
123#endif
124
Timur Tabi107e9cd2010-03-29 12:51:07 -0500125 setup_ddr_bat(dram_size);
126
Jon Loeliger36c0b342007-10-16 13:54:01 -0500127 puts(" DDR: ");
128 return dram_size;
129}
130
131
Jon Loeliger36c0b342007-10-16 13:54:01 -0500132#if !defined(CONFIG_SPD_EEPROM)
133/*
134 * Fixed sdram init -- doesn't use serial presence detect.
135 */
136
Becky Brucecc064ed2008-10-31 17:13:32 -0500137phys_size_t fixed_sdram(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500138{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200139#if !defined(CONFIG_SYS_RAMBOOT)
140 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500141 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
142 uint d_init;
143
144 ddr->cs0_bnds = 0x0000001f;
145 ddr->cs0_config = 0x80010202;
146
Kumar Gala3af779b2008-04-29 10:27:08 -0500147 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500148 ddr->timing_cfg_0 = 0x00260802;
149 ddr->timing_cfg_1 = 0x3935d322;
150 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500151 ddr->sdram_mode = 0x00480432;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500152 ddr->sdram_mode_2 = 0x00000000;
153 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
154 ddr->sdram_data_init = 0xDEADBEEF;
155 ddr->sdram_clk_cntl = 0x03800000;
156 ddr->sdram_cfg_2 = 0x04400010;
157
158#if defined(CONFIG_DDR_ECC)
159 ddr->err_int_en = 0x0000000d;
160 ddr->err_disable = 0x00000000;
161 ddr->err_sbe = 0x00010000;
162#endif
163 asm("sync;isync");
164
165 udelay(500);
166
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500167 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger36c0b342007-10-16 13:54:01 -0500168
169
170#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
171 d_init = 1;
172 debug("DDR - 1st controller: memory initializing\n");
173 /*
174 * Poll until memory is initialized.
175 * 512 Meg at 400 might hit this 200 times or so.
176 */
177 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
178 udelay(1000);
179
180 debug("DDR: memory initialized\n\n");
181 asm("sync; isync");
182 udelay(500);
183#endif
184
185 return 512 * 1024 * 1024;
186#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200187 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500188}
189
190#endif
191
192#if defined(CONFIG_PCI)
193/*
194 * Initialize PCI Devices, report devices found.
195 */
196
197#ifndef CONFIG_PCI_PNP
198static struct pci_config_table pci_fsl86xxads_config_table[] = {
199 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
200 PCI_IDSEL_NUMBER, PCI_ANY_ID,
201 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
202 PCI_ENET0_MEMADDR,
203 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
204 {}
205};
206#endif
207
208
209static struct pci_controller pci1_hose = {
210#ifndef CONFIG_PCI_PNP
211config_table:pci_mpc86xxcts_config_table
212#endif
213};
214#endif /* CONFIG_PCI */
215
216#ifdef CONFIG_PCIE1
217static struct pci_controller pcie1_hose;
218#endif
219
220#ifdef CONFIG_PCIE2
221static struct pci_controller pcie2_hose;
222#endif
223
Jon Loeliger36c0b342007-10-16 13:54:01 -0500224void pci_init_board(void)
225{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200226 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500227 volatile ccsr_gur_t *gur = &immap->im_gur;
Kumar Galab031a562009-11-04 12:51:10 -0600228 struct fsl_pci_info pci_info[3];
Kumar Gala3d020382010-12-15 04:55:20 -0600229 u32 devdisr, pordevsr;
Kumar Galab031a562009-11-04 12:51:10 -0600230 int first_free_busno = 0;
231 int num = 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500232
Kumar Galab031a562009-11-04 12:51:10 -0600233 int pci_agent, pcie_ep, pcie_configured;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500234
Kumar Galab031a562009-11-04 12:51:10 -0600235 devdisr = in_be32(&gur->devdisr);
236 pordevsr = in_be32(&gur->pordevsr);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500237
Kumar Galab031a562009-11-04 12:51:10 -0600238#ifdef CONFIG_PCIE1
Kumar Gala3d020382010-12-15 04:55:20 -0600239 pcie_configured = is_serdes_configured(PCIE1);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500240
Kumar Galab031a562009-11-04 12:51:10 -0600241 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE1)){
242 SET_STD_PCIE_INFO(pci_info[num], 1);
243 pcie_ep = fsl_setup_hose(&pcie1_hose, pci_info[num].regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500244 printf("PCIE1: connected to ULI as %s (base addr %lx)\n",
245 pcie_ep ? "Endpoint" : "Root Complex",
246 pci_info[num].regs);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500247
Kumar Galab031a562009-11-04 12:51:10 -0600248 first_free_busno = fsl_pci_init_port(&pci_info[num++],
249 &pcie1_hose, first_free_busno);
250 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500251 printf("PCIE1: disabled\n");
Kumar Galab031a562009-11-04 12:51:10 -0600252 }
Jon Loeliger36c0b342007-10-16 13:54:01 -0500253
Kumar Galab031a562009-11-04 12:51:10 -0600254 puts("\n");
Jon Loeliger36c0b342007-10-16 13:54:01 -0500255#else
Kumar Galab031a562009-11-04 12:51:10 -0600256 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE1); /* disable */
257#endif
Jon Loeliger36c0b342007-10-16 13:54:01 -0500258
259#ifdef CONFIG_PCIE2
Kumar Gala3d020382010-12-15 04:55:20 -0600260 pcie_configured = is_serdes_configured(PCIE2);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500261
Kumar Galab031a562009-11-04 12:51:10 -0600262 if (pcie_configured && !(devdisr & MPC86xx_DEVDISR_PCIE2)){
263 SET_STD_PCIE_INFO(pci_info[num], 2);
264 pcie_ep = fsl_setup_hose(&pcie2_hose, pci_info[num].regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500265 printf("PCIE2: connected to Slot as %s (base addr %lx)\n",
266 pcie_ep ? "Endpoint" : "Root Complex",
267 pci_info[num].regs);
Kumar Galab031a562009-11-04 12:51:10 -0600268 first_free_busno = fsl_pci_init_port(&pci_info[num++],
269 &pcie2_hose, first_free_busno);
270 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500271 printf("PCIE2: disabled\n");
Kumar Galab031a562009-11-04 12:51:10 -0600272 }
Jon Loeliger36c0b342007-10-16 13:54:01 -0500273
Kumar Galab031a562009-11-04 12:51:10 -0600274 puts("\n");
Jon Loeliger36c0b342007-10-16 13:54:01 -0500275#else
Kumar Galab031a562009-11-04 12:51:10 -0600276 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCIE2); /* disable */
277#endif
Jon Loeliger36c0b342007-10-16 13:54:01 -0500278
279#ifdef CONFIG_PCI1
Kumar Galab031a562009-11-04 12:51:10 -0600280 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
281 SET_STD_PCI_INFO(pci_info[num], 1);
282 pci_agent = fsl_setup_hose(&pci1_hose, pci_info[num].regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500283 printf("PCI: connected to PCI slots as %s" \
Kumar Galab031a562009-11-04 12:51:10 -0600284 " (base address %lx)\n",
Jon Loeliger36c0b342007-10-16 13:54:01 -0500285 pci_agent ? "Agent" : "Host",
Kumar Galab031a562009-11-04 12:51:10 -0600286 pci_info[num].regs);
287 first_free_busno = fsl_pci_init_port(&pci_info[num++],
288 &pci1_hose, first_free_busno);
289 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500290 printf("PCI: disabled\n");
Kumar Galab031a562009-11-04 12:51:10 -0600291 }
Jon Loeliger36c0b342007-10-16 13:54:01 -0500292
Kumar Galab031a562009-11-04 12:51:10 -0600293 puts("\n");
294#else
295 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
296#endif
Jon Loeliger36c0b342007-10-16 13:54:01 -0500297}
298
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600299#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500300void
301ft_board_setup(void *blob, bd_t *bd)
302{
Peter Tyserb024b802009-09-21 23:09:28 -0500303 ft_cpu_setup(blob, bd);
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600304
Kumar Galad0f27d32010-07-08 22:37:44 -0500305 FT_FSL_PCI_SETUP;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500306}
307#endif
308
309/*
310 * get_board_sys_clk
311 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
312 */
313
314unsigned long
315get_board_sys_clk(ulong dummy)
316{
York Sunb7145172007-10-29 13:58:39 -0500317 u8 i;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500318 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500319 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500320
Kumar Gala146c4b22009-07-22 10:12:39 -0500321 i = in_8(pixis_base + PIXIS_SPD);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500322 i &= 0x07;
323
324 switch (i) {
325 case 0:
326 val = 33333000;
327 break;
328 case 1:
329 val = 39999600;
330 break;
331 case 2:
332 val = 49999500;
333 break;
334 case 3:
335 val = 66666000;
336 break;
337 case 4:
338 val = 83332500;
339 break;
340 case 5:
341 val = 99999000;
342 break;
343 case 6:
344 val = 133332000;
345 break;
346 case 7:
347 val = 166665000;
348 break;
349 }
350
351 return val;
352}
Ben Warrened63bcc2008-07-11 23:42:19 -0700353
Ben Warrened63bcc2008-07-11 23:42:19 -0700354int board_eth_init(bd_t *bis)
355{
Ben Warren2f2b6b62008-08-31 22:22:04 -0700356 return pci_eth_init(bis);
Ben Warrened63bcc2008-07-11 23:42:19 -0700357}
Peter Tyser69454402009-02-05 11:25:25 -0600358
359void board_reset(void)
360{
Kumar Gala146c4b22009-07-22 10:12:39 -0500361 u8 *pixis_base = (u8 *)PIXIS_BASE;
362
363 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser69454402009-02-05 11:25:25 -0600364
365 while (1)
366 ;
367}