blob: 5b3b56042613585da16e4efe3c234dc5db7f7496 [file] [log] [blame]
Jon Loeliger3dd2db52007-10-16 13:54:01 -05001/*
Zhao Chenhuid5c784e2011-08-24 13:20:06 +08002 * Copyright 2007,2009-2011 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>
Kumar Gala5d27e022010-12-15 04:55:20 -060030#include <asm/fsl_serdes.h>
Jon Loeligerc9974ab2008-01-04 11:58:23 -060031#include <i2c.h>
Jon Loeliger3dd2db52007-10-16 13:54:01 -050032#include <asm/io.h>
Jon Loeliger1df170f2008-01-04 12:07:27 -060033#include <libfdt.h>
34#include <fdt_support.h>
Jon Loeligera30a5492008-03-04 10:03:03 -060035#include <spd_sdram.h>
Ben Warren89973f82008-08-31 22:22:04 -070036#include <netdev.h>
Jon Loeliger3dd2db52007-10-16 13:54:01 -050037
Jon Loeliger3dd2db52007-10-16 13:54:01 -050038void sdram_init(void);
Becky Bruce4c77de32008-10-31 17:13:32 -050039phys_size_t fixed_sdram(void);
Timur Tabie69e5202010-08-31 19:56:43 -050040int mpc8610hpcd_diu_init(void);
Jon Loeligerc9974ab2008-01-04 11:58:23 -060041
Jon Loeliger3dd2db52007-10-16 13:54:01 -050042
43/* called before any console output */
44int board_early_init_f(void)
45{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -050047 volatile ccsr_gur_t *gur = &immap->im_gur;
48
York Suna8778802007-10-29 13:58:39 -050049 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
50
51 return 0;
52}
53
54int misc_init_r(void)
55{
56 u8 tmp_val, version;
Kumar Gala048e7ef2009-07-22 10:12:39 -050057 u8 *pixis_base = (u8 *)PIXIS_BASE;
York Suna8778802007-10-29 13:58:39 -050058
59 /*Do not use 8259PIC*/
Kumar Gala048e7ef2009-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 Suna8778802007-10-29 13:58:39 -050062
63 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
Kumar Gala048e7ef2009-07-22 10:12:39 -050064 version = in_8(pixis_base + PIXIS_PVER);
York Suna8778802007-10-29 13:58:39 -050065 if(version >= 0x07) {
Kumar Gala048e7ef2009-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 Suna8778802007-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));
Marek Vasut7315ab22011-10-21 14:17:09 +000079 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Suna8778802007-10-29 13:58:39 -050080
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));
Marek Vasut7315ab22011-10-21 14:17:09 +000086 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Suna8778802007-10-29 13:58:39 -050087
Jon Loeliger3dd2db52007-10-16 13:54:01 -050088 return 0;
89}
90
91int checkboard(void)
92{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020093 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -050094 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Kumar Gala048e7ef2009-07-22 10:12:39 -050095 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger3dd2db52007-10-16 13:54:01 -050096
Timur Tabi26fd33b2011-04-28 13:41:20 -050097 printf ("Board: MPC8610HPCD, Sys ID: 0x%02x, "
98 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Kumar Gala048e7ef2009-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 Loeliger3dd2db52007-10-16 13:54:01 -0500101
Timur Tabi26fd33b2011-04-28 13:41:20 -0500102 /*
103 * The MPC8610 HPCD workbook says that LBMAP=11 is the "normal" boot
104 * bank and LBMAP=00 is the alternate bank. However, the pixis
105 * altbank code can only set bits, not clear them, so we treat 00 as
106 * the normal bank and 11 as the alternate.
107 */
108 switch (in_8(pixis_base + PIXIS_VBOOT) & 0xC0) {
109 case 0:
110 puts("vBank: Standard\n");
111 break;
112 case 0x40:
113 puts("Promjet\n");
114 break;
115 case 0x80:
116 puts("NAND\n");
117 break;
118 case 0xC0:
119 puts("vBank: Alternate\n");
120 break;
121 }
122
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500123 mcm->abcr |= 0x00010000; /* 0 */
124 mcm->hpmr3 = 0x80000008; /* 4c */
125 mcm->hpmr0 = 0;
126 mcm->hpmr1 = 0;
127 mcm->hpmr2 = 0;
128 mcm->hpmr4 = 0;
129 mcm->hpmr5 = 0;
130
131 return 0;
132}
133
134
Becky Bruce9973e3c2008-06-09 16:03:40 -0500135phys_size_t
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500136initdram(int board_type)
137{
Becky Bruce4c77de32008-10-31 17:13:32 -0500138 phys_size_t dram_size = 0;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500139
140#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger39aa1a72008-08-26 15:01:36 -0500141 dram_size = fsl_ddr_sdram();
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500142#else
143 dram_size = fixed_sdram();
144#endif
145
Timur Tabi9ff32d82010-03-29 12:51:07 -0500146 setup_ddr_bat(dram_size);
147
Wolfgang Denk21cd5812011-07-25 10:13:53 +0200148 debug(" DDR: ");
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500149 return dram_size;
150}
151
152
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500153#if !defined(CONFIG_SPD_EEPROM)
154/*
155 * Fixed sdram init -- doesn't use serial presence detect.
156 */
157
Becky Bruce4c77de32008-10-31 17:13:32 -0500158phys_size_t fixed_sdram(void)
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500159{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160#if !defined(CONFIG_SYS_RAMBOOT)
161 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500162 volatile ccsr_ddr_t *ddr = &immap->im_ddr1;
163 uint d_init;
164
165 ddr->cs0_bnds = 0x0000001f;
166 ddr->cs0_config = 0x80010202;
167
Kumar Gala45239cf2008-04-29 10:27:08 -0500168 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500169 ddr->timing_cfg_0 = 0x00260802;
170 ddr->timing_cfg_1 = 0x3935d322;
171 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tysere7ee23e2009-07-17 10:14:45 -0500172 ddr->sdram_mode = 0x00480432;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500173 ddr->sdram_mode_2 = 0x00000000;
174 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
175 ddr->sdram_data_init = 0xDEADBEEF;
176 ddr->sdram_clk_cntl = 0x03800000;
177 ddr->sdram_cfg_2 = 0x04400010;
178
179#if defined(CONFIG_DDR_ECC)
180 ddr->err_int_en = 0x0000000d;
181 ddr->err_disable = 0x00000000;
182 ddr->err_sbe = 0x00010000;
183#endif
184 asm("sync;isync");
185
186 udelay(500);
187
Peter Tysere7ee23e2009-07-17 10:14:45 -0500188 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500189
190
191#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
192 d_init = 1;
193 debug("DDR - 1st controller: memory initializing\n");
194 /*
195 * Poll until memory is initialized.
196 * 512 Meg at 400 might hit this 200 times or so.
197 */
198 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
199 udelay(1000);
200
201 debug("DDR: memory initialized\n\n");
202 asm("sync; isync");
203 udelay(500);
204#endif
205
206 return 512 * 1024 * 1024;
207#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200208 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500209}
210
211#endif
212
213#if defined(CONFIG_PCI)
214/*
215 * Initialize PCI Devices, report devices found.
216 */
217
218#ifndef CONFIG_PCI_PNP
219static struct pci_config_table pci_fsl86xxads_config_table[] = {
220 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
221 PCI_IDSEL_NUMBER, PCI_ANY_ID,
222 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
223 PCI_ENET0_MEMADDR,
224 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
225 {}
226};
227#endif
228
229
Zhao Chenhuid5c784e2011-08-24 13:20:06 +0800230static struct pci_controller pci1_hose;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500231#endif /* CONFIG_PCI */
232
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500233void pci_init_board(void)
234{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200235 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500236 volatile ccsr_gur_t *gur = &immap->im_gur;
Kumar Galab8526212010-12-17 10:42:33 -0600237 struct fsl_pci_info pci_info;
Kumar Gala5d27e022010-12-15 04:55:20 -0600238 u32 devdisr, pordevsr;
Kumar Galab8526212010-12-17 10:42:33 -0600239 int first_free_busno;
240 int pci_agent;
Kumar Gala5e3d7052009-11-04 12:51:10 -0600241
242 devdisr = in_be32(&gur->devdisr);
243 pordevsr = in_be32(&gur->pordevsr);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500244
Kumar Galab8526212010-12-17 10:42:33 -0600245 first_free_busno = fsl_pcie_init_board(0);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500246
247#ifdef CONFIG_PCI1
Kumar Gala5e3d7052009-11-04 12:51:10 -0600248 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
Kumar Galab8526212010-12-17 10:42:33 -0600249 SET_STD_PCI_INFO(pci_info, 1);
250 set_next_law(pci_info.mem_phys,
251 law_size_bits(pci_info.mem_size), pci_info.law);
252 set_next_law(pci_info.io_phys,
253 law_size_bits(pci_info.io_size), pci_info.law);
254
255 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
Peter Tyser8ca78f22010-10-29 17:59:24 -0500256 printf("PCI: connected to PCI slots as %s" \
Kumar Gala5e3d7052009-11-04 12:51:10 -0600257 " (base address %lx)\n",
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500258 pci_agent ? "Agent" : "Host",
Kumar Galab8526212010-12-17 10:42:33 -0600259 pci_info.regs);
Zhao Chenhuid5c784e2011-08-24 13:20:06 +0800260#ifndef CONFIG_PCI_PNP
261 pci1_hose.config_table = pci_mpc86xxcts_config_table;
262#endif
Kumar Galab8526212010-12-17 10:42:33 -0600263 first_free_busno = fsl_pci_init_port(&pci_info,
Kumar Gala5e3d7052009-11-04 12:51:10 -0600264 &pci1_hose, first_free_busno);
265 } else {
Peter Tyser8ca78f22010-10-29 17:59:24 -0500266 printf("PCI: disabled\n");
Kumar Gala5e3d7052009-11-04 12:51:10 -0600267 }
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500268
Kumar Gala5e3d7052009-11-04 12:51:10 -0600269 puts("\n");
270#else
271 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
272#endif
Kumar Galab8526212010-12-17 10:42:33 -0600273
274 fsl_pcie_init_board(first_free_busno);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500275}
276
Jon Loeliger1df170f2008-01-04 12:07:27 -0600277#if defined(CONFIG_OF_BOARD_SETUP)
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500278void
279ft_board_setup(void *blob, bd_t *bd)
280{
Peter Tyser8439f052009-09-21 23:09:28 -0500281 ft_cpu_setup(blob, bd);
Jon Loeliger1df170f2008-01-04 12:07:27 -0600282
Kumar Gala6525d512010-07-08 22:37:44 -0500283 FT_FSL_PCI_SETUP;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500284}
285#endif
286
287/*
288 * get_board_sys_clk
289 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
290 */
291
292unsigned long
293get_board_sys_clk(ulong dummy)
294{
York Suna8778802007-10-29 13:58:39 -0500295 u8 i;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500296 ulong val = 0;
Kumar Gala048e7ef2009-07-22 10:12:39 -0500297 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500298
Kumar Gala048e7ef2009-07-22 10:12:39 -0500299 i = in_8(pixis_base + PIXIS_SPD);
Jon Loeliger3dd2db52007-10-16 13:54:01 -0500300 i &= 0x07;
301
302 switch (i) {
303 case 0:
304 val = 33333000;
305 break;
306 case 1:
307 val = 39999600;
308 break;
309 case 2:
310 val = 49999500;
311 break;
312 case 3:
313 val = 66666000;
314 break;
315 case 4:
316 val = 83332500;
317 break;
318 case 5:
319 val = 99999000;
320 break;
321 case 6:
322 val = 133332000;
323 break;
324 case 7:
325 val = 166665000;
326 break;
327 }
328
329 return val;
330}
Ben Warren65d3d992008-07-11 23:42:19 -0700331
Ben Warren65d3d992008-07-11 23:42:19 -0700332int board_eth_init(bd_t *bis)
333{
Ben Warren89973f82008-08-31 22:22:04 -0700334 return pci_eth_init(bis);
Ben Warren65d3d992008-07-11 23:42:19 -0700335}
Peter Tyser4ef630d2009-02-05 11:25:25 -0600336
337void board_reset(void)
338{
Kumar Gala048e7ef2009-07-22 10:12:39 -0500339 u8 *pixis_base = (u8 *)PIXIS_BASE;
340
341 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser4ef630d2009-02-05 11:25:25 -0600342
343 while (1)
344 ;
345}