blob: 7668226321d0583274c60985e57dd74b0e3238dc [file] [log] [blame]
Jon Loeliger36c0b342007-10-16 13:54:01 -05001/*
Zhao Chenhuicab87a22011-08-24 13:20:06 +08002 * Copyright 2007,2009-2011 Freescale Semiconductor, Inc.
Jon Loeliger36c0b342007-10-16 13:54:01 -05003 *
Wolfgang Denkbd8ec7e2013-10-07 13:07:26 +02004 * SPDX-License-Identifier: GPL-2.0+
Jon Loeliger36c0b342007-10-16 13:54:01 -05005 */
Jon Loeligerca7aff12008-01-04 11:58:23 -06006
Jon Loeliger36c0b342007-10-16 13:54:01 -05007#include <common.h>
8#include <command.h>
9#include <pci.h>
10#include <asm/processor.h>
11#include <asm/immap_86xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050012#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070013#include <fsl_ddr_sdram.h>
Kumar Gala3d020382010-12-15 04:55:20 -060014#include <asm/fsl_serdes.h>
Jon Loeligerca7aff12008-01-04 11:58:23 -060015#include <i2c.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050016#include <asm/io.h>
Jon Loeliger6bb38c42008-01-04 12:07:27 -060017#include <libfdt.h>
18#include <fdt_support.h>
Jon Loeligerde9737d2008-03-04 10:03:03 -060019#include <spd_sdram.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070020#include <netdev.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050021
Jon Loeliger36c0b342007-10-16 13:54:01 -050022void sdram_init(void);
Becky Brucecc064ed2008-10-31 17:13:32 -050023phys_size_t fixed_sdram(void);
Timur Tabie6044632010-08-31 19:56:43 -050024int mpc8610hpcd_diu_init(void);
Jon Loeligerca7aff12008-01-04 11:58:23 -060025
Jon Loeliger36c0b342007-10-16 13:54:01 -050026
27/* called before any console output */
28int board_early_init_f(void)
29{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020030 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050031 volatile ccsr_gur_t *gur = &immap->im_gur;
32
York Sunb7145172007-10-29 13:58:39 -050033 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
Jon Loeliger36c0b342007-10-16 13:54:01 -050034
35 return 0;
36}
37
York Sunb7145172007-10-29 13:58:39 -050038int misc_init_r(void)
39{
40 u8 tmp_val, version;
Kumar Gala146c4b22009-07-22 10:12:39 -050041 u8 *pixis_base = (u8 *)PIXIS_BASE;
York Sunb7145172007-10-29 13:58:39 -050042
43 /*Do not use 8259PIC*/
Kumar Gala146c4b22009-07-22 10:12:39 -050044 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
45 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
York Sunb7145172007-10-29 13:58:39 -050046
47 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
Kumar Gala146c4b22009-07-22 10:12:39 -050048 version = in_8(pixis_base + PIXIS_PVER);
York Sunb7145172007-10-29 13:58:39 -050049 if(version >= 0x07) {
Kumar Gala146c4b22009-07-22 10:12:39 -050050 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
51 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
York Sunb7145172007-10-29 13:58:39 -050052 }
53
54 /* Using this for DIU init before the driver in linux takes over
55 * Enable the TFP410 Encoder (I2C address 0x38)
56 */
57
58 tmp_val = 0xBF;
59 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
60 /* Verify if enabled */
61 tmp_val = 0;
62 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
Marek Vasute5eecd52011-10-21 14:17:09 +000063 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Sunb7145172007-10-29 13:58:39 -050064
65 tmp_val = 0x10;
66 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
67 /* Verify if enabled */
68 tmp_val = 0;
69 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
Marek Vasute5eecd52011-10-21 14:17:09 +000070 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Sunb7145172007-10-29 13:58:39 -050071
York Sunb7145172007-10-29 13:58:39 -050072 return 0;
73}
74
Jon Loeliger36c0b342007-10-16 13:54:01 -050075int checkboard(void)
76{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020077 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050078 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Kumar Gala146c4b22009-07-22 10:12:39 -050079 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -050080
Timur Tabi69aa1932011-04-28 13:41:20 -050081 printf ("Board: MPC8610HPCD, Sys ID: 0x%02x, "
82 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Kumar Gala146c4b22009-07-22 10:12:39 -050083 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
84 in_8(pixis_base + PIXIS_PVER));
Jon Loeliger36c0b342007-10-16 13:54:01 -050085
Timur Tabi69aa1932011-04-28 13:41:20 -050086 /*
87 * The MPC8610 HPCD workbook says that LBMAP=11 is the "normal" boot
88 * bank and LBMAP=00 is the alternate bank. However, the pixis
89 * altbank code can only set bits, not clear them, so we treat 00 as
90 * the normal bank and 11 as the alternate.
91 */
92 switch (in_8(pixis_base + PIXIS_VBOOT) & 0xC0) {
93 case 0:
94 puts("vBank: Standard\n");
95 break;
96 case 0x40:
97 puts("Promjet\n");
98 break;
99 case 0x80:
100 puts("NAND\n");
101 break;
102 case 0xC0:
103 puts("vBank: Alternate\n");
104 break;
105 }
106
Jon Loeliger36c0b342007-10-16 13:54:01 -0500107 mcm->abcr |= 0x00010000; /* 0 */
108 mcm->hpmr3 = 0x80000008; /* 4c */
109 mcm->hpmr0 = 0;
110 mcm->hpmr1 = 0;
111 mcm->hpmr2 = 0;
112 mcm->hpmr4 = 0;
113 mcm->hpmr5 = 0;
114
115 return 0;
116}
117
118
Simon Glassb4de3f32017-03-31 08:40:24 -0600119phys_size_t initdram(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500120{
Becky Brucecc064ed2008-10-31 17:13:32 -0500121 phys_size_t dram_size = 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500122
123#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger54634b42008-08-26 15:01:36 -0500124 dram_size = fsl_ddr_sdram();
Jon Loeliger36c0b342007-10-16 13:54:01 -0500125#else
126 dram_size = fixed_sdram();
127#endif
128
Timur Tabi107e9cd2010-03-29 12:51:07 -0500129 setup_ddr_bat(dram_size);
130
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200131 debug(" DDR: ");
Jon Loeliger36c0b342007-10-16 13:54:01 -0500132 return dram_size;
133}
134
135
Jon Loeliger36c0b342007-10-16 13:54:01 -0500136#if !defined(CONFIG_SPD_EEPROM)
137/*
138 * Fixed sdram init -- doesn't use serial presence detect.
139 */
140
Becky Brucecc064ed2008-10-31 17:13:32 -0500141phys_size_t fixed_sdram(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500142{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200143#if !defined(CONFIG_SYS_RAMBOOT)
144 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -0800145 struct ccsr_ddr __iomem *ddr = &immap->im_ddr1;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500146 uint d_init;
147
148 ddr->cs0_bnds = 0x0000001f;
149 ddr->cs0_config = 0x80010202;
150
Kumar Gala3af779b2008-04-29 10:27:08 -0500151 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500152 ddr->timing_cfg_0 = 0x00260802;
153 ddr->timing_cfg_1 = 0x3935d322;
154 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500155 ddr->sdram_mode = 0x00480432;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500156 ddr->sdram_mode_2 = 0x00000000;
157 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
158 ddr->sdram_data_init = 0xDEADBEEF;
159 ddr->sdram_clk_cntl = 0x03800000;
160 ddr->sdram_cfg_2 = 0x04400010;
161
162#if defined(CONFIG_DDR_ECC)
163 ddr->err_int_en = 0x0000000d;
164 ddr->err_disable = 0x00000000;
165 ddr->err_sbe = 0x00010000;
166#endif
167 asm("sync;isync");
168
169 udelay(500);
170
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500171 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger36c0b342007-10-16 13:54:01 -0500172
173
174#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
175 d_init = 1;
176 debug("DDR - 1st controller: memory initializing\n");
177 /*
178 * Poll until memory is initialized.
179 * 512 Meg at 400 might hit this 200 times or so.
180 */
181 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
182 udelay(1000);
183
184 debug("DDR: memory initialized\n\n");
185 asm("sync; isync");
186 udelay(500);
187#endif
188
189 return 512 * 1024 * 1024;
190#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200191 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500192}
193
194#endif
195
196#if defined(CONFIG_PCI)
197/*
198 * Initialize PCI Devices, report devices found.
199 */
200
201#ifndef CONFIG_PCI_PNP
202static struct pci_config_table pci_fsl86xxads_config_table[] = {
203 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
204 PCI_IDSEL_NUMBER, PCI_ANY_ID,
205 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
206 PCI_ENET0_MEMADDR,
207 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
208 {}
209};
210#endif
211
212
Zhao Chenhuicab87a22011-08-24 13:20:06 +0800213static struct pci_controller pci1_hose;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500214#endif /* CONFIG_PCI */
215
Jon Loeliger36c0b342007-10-16 13:54:01 -0500216void pci_init_board(void)
217{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200218 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500219 volatile ccsr_gur_t *gur = &immap->im_gur;
Kumar Galad0142ce2010-12-17 10:42:33 -0600220 struct fsl_pci_info pci_info;
Wolfgang Denk01a95322011-11-29 22:17:54 +0000221 u32 devdisr;
Kumar Galad0142ce2010-12-17 10:42:33 -0600222 int first_free_busno;
223 int pci_agent;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500224
Kumar Galab031a562009-11-04 12:51:10 -0600225 devdisr = in_be32(&gur->devdisr);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500226
Kumar Galad0142ce2010-12-17 10:42:33 -0600227 first_free_busno = fsl_pcie_init_board(0);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500228
229#ifdef CONFIG_PCI1
Kumar Galab031a562009-11-04 12:51:10 -0600230 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
Kumar Galad0142ce2010-12-17 10:42:33 -0600231 SET_STD_PCI_INFO(pci_info, 1);
232 set_next_law(pci_info.mem_phys,
233 law_size_bits(pci_info.mem_size), pci_info.law);
234 set_next_law(pci_info.io_phys,
235 law_size_bits(pci_info.io_size), pci_info.law);
236
237 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500238 printf("PCI: connected to PCI slots as %s" \
Kumar Galab031a562009-11-04 12:51:10 -0600239 " (base address %lx)\n",
Jon Loeliger36c0b342007-10-16 13:54:01 -0500240 pci_agent ? "Agent" : "Host",
Kumar Galad0142ce2010-12-17 10:42:33 -0600241 pci_info.regs);
Zhao Chenhuicab87a22011-08-24 13:20:06 +0800242#ifndef CONFIG_PCI_PNP
243 pci1_hose.config_table = pci_mpc86xxcts_config_table;
244#endif
Kumar Galad0142ce2010-12-17 10:42:33 -0600245 first_free_busno = fsl_pci_init_port(&pci_info,
Kumar Galab031a562009-11-04 12:51:10 -0600246 &pci1_hose, first_free_busno);
247 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500248 printf("PCI: disabled\n");
Kumar Galab031a562009-11-04 12:51:10 -0600249 }
Jon Loeliger36c0b342007-10-16 13:54:01 -0500250
Kumar Galab031a562009-11-04 12:51:10 -0600251 puts("\n");
252#else
253 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
254#endif
Kumar Galad0142ce2010-12-17 10:42:33 -0600255
256 fsl_pcie_init_board(first_free_busno);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500257}
258
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600259#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glass2aec3cc2014-10-23 18:58:47 -0600260int ft_board_setup(void *blob, bd_t *bd)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500261{
Peter Tyserb024b802009-09-21 23:09:28 -0500262 ft_cpu_setup(blob, bd);
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600263
Kumar Galad0f27d32010-07-08 22:37:44 -0500264 FT_FSL_PCI_SETUP;
Simon Glass2aec3cc2014-10-23 18:58:47 -0600265
266 return 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500267}
268#endif
269
270/*
271 * get_board_sys_clk
272 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
273 */
274
275unsigned long
276get_board_sys_clk(ulong dummy)
277{
York Sunb7145172007-10-29 13:58:39 -0500278 u8 i;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500279 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500280 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500281
Kumar Gala146c4b22009-07-22 10:12:39 -0500282 i = in_8(pixis_base + PIXIS_SPD);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500283 i &= 0x07;
284
285 switch (i) {
286 case 0:
287 val = 33333000;
288 break;
289 case 1:
290 val = 39999600;
291 break;
292 case 2:
293 val = 49999500;
294 break;
295 case 3:
296 val = 66666000;
297 break;
298 case 4:
299 val = 83332500;
300 break;
301 case 5:
302 val = 99999000;
303 break;
304 case 6:
305 val = 133332000;
306 break;
307 case 7:
308 val = 166665000;
309 break;
310 }
311
312 return val;
313}
Ben Warrened63bcc2008-07-11 23:42:19 -0700314
Ben Warrened63bcc2008-07-11 23:42:19 -0700315int board_eth_init(bd_t *bis)
316{
Ben Warren2f2b6b62008-08-31 22:22:04 -0700317 return pci_eth_init(bis);
Ben Warrened63bcc2008-07-11 23:42:19 -0700318}
Peter Tyser69454402009-02-05 11:25:25 -0600319
320void board_reset(void)
321{
Kumar Gala146c4b22009-07-22 10:12:39 -0500322 u8 *pixis_base = (u8 *)PIXIS_BASE;
323
324 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser69454402009-02-05 11:25:25 -0600325
326 while (1)
327 ;
328}