blob: 5c8538fa1d7be454de9bd15b60f2ade9ff4fafc1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jon Loeliger36c0b342007-10-16 13:54:01 -05002/*
Zhao Chenhuicab87a22011-08-24 13:20:06 +08003 * Copyright 2007,2009-2011 Freescale Semiconductor, Inc.
Jon Loeliger36c0b342007-10-16 13:54:01 -05004 */
Jon Loeligerca7aff12008-01-04 11:58:23 -06005
Jon Loeliger36c0b342007-10-16 13:54:01 -05006#include <common.h>
7#include <command.h>
8#include <pci.h>
9#include <asm/processor.h>
10#include <asm/immap_86xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050011#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070012#include <fsl_ddr_sdram.h>
Kumar Gala3d020382010-12-15 04:55:20 -060013#include <asm/fsl_serdes.h>
Jon Loeligerca7aff12008-01-04 11:58:23 -060014#include <i2c.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050015#include <asm/io.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090016#include <linux/libfdt.h>
Jon Loeliger6bb38c42008-01-04 12:07:27 -060017#include <fdt_support.h>
Jon Loeligerde9737d2008-03-04 10:03:03 -060018#include <spd_sdram.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070019#include <netdev.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050020
Simon Glass39f90ba2017-03-31 08:40:25 -060021DECLARE_GLOBAL_DATA_PTR;
22
Jon Loeliger36c0b342007-10-16 13:54:01 -050023void sdram_init(void);
Becky Brucecc064ed2008-10-31 17:13:32 -050024phys_size_t fixed_sdram(void);
Timur Tabie6044632010-08-31 19:56:43 -050025int mpc8610hpcd_diu_init(void);
Jon Loeligerca7aff12008-01-04 11:58:23 -060026
Jon Loeliger36c0b342007-10-16 13:54:01 -050027
28/* called before any console output */
29int board_early_init_f(void)
30{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020031 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050032 volatile ccsr_gur_t *gur = &immap->im_gur;
33
York Sunb7145172007-10-29 13:58:39 -050034 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
Jon Loeliger36c0b342007-10-16 13:54:01 -050035
36 return 0;
37}
38
York Sunb7145172007-10-29 13:58:39 -050039int misc_init_r(void)
40{
41 u8 tmp_val, version;
Kumar Gala146c4b22009-07-22 10:12:39 -050042 u8 *pixis_base = (u8 *)PIXIS_BASE;
York Sunb7145172007-10-29 13:58:39 -050043
44 /*Do not use 8259PIC*/
Kumar Gala146c4b22009-07-22 10:12:39 -050045 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
46 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
York Sunb7145172007-10-29 13:58:39 -050047
48 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
Kumar Gala146c4b22009-07-22 10:12:39 -050049 version = in_8(pixis_base + PIXIS_PVER);
York Sunb7145172007-10-29 13:58:39 -050050 if(version >= 0x07) {
Kumar Gala146c4b22009-07-22 10:12:39 -050051 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
52 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
York Sunb7145172007-10-29 13:58:39 -050053 }
54
55 /* Using this for DIU init before the driver in linux takes over
56 * Enable the TFP410 Encoder (I2C address 0x38)
57 */
58
59 tmp_val = 0xBF;
60 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
61 /* Verify if enabled */
62 tmp_val = 0;
63 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
Marek Vasute5eecd52011-10-21 14:17:09 +000064 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Sunb7145172007-10-29 13:58:39 -050065
66 tmp_val = 0x10;
67 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
68 /* Verify if enabled */
69 tmp_val = 0;
70 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
Marek Vasute5eecd52011-10-21 14:17:09 +000071 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Sunb7145172007-10-29 13:58:39 -050072
York Sunb7145172007-10-29 13:58:39 -050073 return 0;
74}
75
Jon Loeliger36c0b342007-10-16 13:54:01 -050076int checkboard(void)
77{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020078 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050079 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Kumar Gala146c4b22009-07-22 10:12:39 -050080 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -050081
Timur Tabi69aa1932011-04-28 13:41:20 -050082 printf ("Board: MPC8610HPCD, Sys ID: 0x%02x, "
83 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Kumar Gala146c4b22009-07-22 10:12:39 -050084 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
85 in_8(pixis_base + PIXIS_PVER));
Jon Loeliger36c0b342007-10-16 13:54:01 -050086
Timur Tabi69aa1932011-04-28 13:41:20 -050087 /*
88 * The MPC8610 HPCD workbook says that LBMAP=11 is the "normal" boot
89 * bank and LBMAP=00 is the alternate bank. However, the pixis
90 * altbank code can only set bits, not clear them, so we treat 00 as
91 * the normal bank and 11 as the alternate.
92 */
93 switch (in_8(pixis_base + PIXIS_VBOOT) & 0xC0) {
94 case 0:
95 puts("vBank: Standard\n");
96 break;
97 case 0x40:
98 puts("Promjet\n");
99 break;
100 case 0x80:
101 puts("NAND\n");
102 break;
103 case 0xC0:
104 puts("vBank: Alternate\n");
105 break;
106 }
107
Jon Loeliger36c0b342007-10-16 13:54:01 -0500108 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
Simon Glassd35f3382017-04-06 12:47:05 -0600120int dram_init(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500121{
Becky Brucecc064ed2008-10-31 17:13:32 -0500122 phys_size_t dram_size = 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500123
124#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger54634b42008-08-26 15:01:36 -0500125 dram_size = fsl_ddr_sdram();
Jon Loeliger36c0b342007-10-16 13:54:01 -0500126#else
127 dram_size = fixed_sdram();
128#endif
129
Timur Tabi107e9cd2010-03-29 12:51:07 -0500130 setup_ddr_bat(dram_size);
131
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200132 debug(" DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -0600133 gd->ram_size = dram_size;
134
135 return 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500136}
137
138
Jon Loeliger36c0b342007-10-16 13:54:01 -0500139#if !defined(CONFIG_SPD_EEPROM)
140/*
141 * Fixed sdram init -- doesn't use serial presence detect.
142 */
143
Becky Brucecc064ed2008-10-31 17:13:32 -0500144phys_size_t fixed_sdram(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500145{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200146#if !defined(CONFIG_SYS_RAMBOOT)
147 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -0800148 struct ccsr_ddr __iomem *ddr = &immap->im_ddr1;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500149 uint d_init;
150
151 ddr->cs0_bnds = 0x0000001f;
152 ddr->cs0_config = 0x80010202;
153
Kumar Gala3af779b2008-04-29 10:27:08 -0500154 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500155 ddr->timing_cfg_0 = 0x00260802;
156 ddr->timing_cfg_1 = 0x3935d322;
157 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500158 ddr->sdram_mode = 0x00480432;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500159 ddr->sdram_mode_2 = 0x00000000;
160 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
161 ddr->sdram_data_init = 0xDEADBEEF;
162 ddr->sdram_clk_cntl = 0x03800000;
163 ddr->sdram_cfg_2 = 0x04400010;
164
165#if defined(CONFIG_DDR_ECC)
166 ddr->err_int_en = 0x0000000d;
167 ddr->err_disable = 0x00000000;
168 ddr->err_sbe = 0x00010000;
169#endif
170 asm("sync;isync");
171
172 udelay(500);
173
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500174 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger36c0b342007-10-16 13:54:01 -0500175
176
177#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
178 d_init = 1;
179 debug("DDR - 1st controller: memory initializing\n");
180 /*
181 * Poll until memory is initialized.
182 * 512 Meg at 400 might hit this 200 times or so.
183 */
184 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
185 udelay(1000);
186
187 debug("DDR: memory initialized\n\n");
188 asm("sync; isync");
189 udelay(500);
190#endif
191
192 return 512 * 1024 * 1024;
193#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200194 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500195}
196
197#endif
198
199#if defined(CONFIG_PCI)
200/*
201 * Initialize PCI Devices, report devices found.
202 */
203
204#ifndef CONFIG_PCI_PNP
205static struct pci_config_table pci_fsl86xxads_config_table[] = {
206 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
207 PCI_IDSEL_NUMBER, PCI_ANY_ID,
208 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
209 PCI_ENET0_MEMADDR,
210 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
211 {}
212};
213#endif
214
215
Zhao Chenhuicab87a22011-08-24 13:20:06 +0800216static struct pci_controller pci1_hose;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500217#endif /* CONFIG_PCI */
218
Jon Loeliger36c0b342007-10-16 13:54:01 -0500219void pci_init_board(void)
220{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200221 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500222 volatile ccsr_gur_t *gur = &immap->im_gur;
Kumar Galad0142ce2010-12-17 10:42:33 -0600223 struct fsl_pci_info pci_info;
Wolfgang Denk01a95322011-11-29 22:17:54 +0000224 u32 devdisr;
Kumar Galad0142ce2010-12-17 10:42:33 -0600225 int first_free_busno;
226 int pci_agent;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500227
Kumar Galab031a562009-11-04 12:51:10 -0600228 devdisr = in_be32(&gur->devdisr);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500229
Kumar Galad0142ce2010-12-17 10:42:33 -0600230 first_free_busno = fsl_pcie_init_board(0);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500231
232#ifdef CONFIG_PCI1
Kumar Galab031a562009-11-04 12:51:10 -0600233 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
Kumar Galad0142ce2010-12-17 10:42:33 -0600234 SET_STD_PCI_INFO(pci_info, 1);
235 set_next_law(pci_info.mem_phys,
236 law_size_bits(pci_info.mem_size), pci_info.law);
237 set_next_law(pci_info.io_phys,
238 law_size_bits(pci_info.io_size), pci_info.law);
239
240 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500241 printf("PCI: connected to PCI slots as %s" \
Kumar Galab031a562009-11-04 12:51:10 -0600242 " (base address %lx)\n",
Jon Loeliger36c0b342007-10-16 13:54:01 -0500243 pci_agent ? "Agent" : "Host",
Kumar Galad0142ce2010-12-17 10:42:33 -0600244 pci_info.regs);
Zhao Chenhuicab87a22011-08-24 13:20:06 +0800245#ifndef CONFIG_PCI_PNP
246 pci1_hose.config_table = pci_mpc86xxcts_config_table;
247#endif
Kumar Galad0142ce2010-12-17 10:42:33 -0600248 first_free_busno = fsl_pci_init_port(&pci_info,
Kumar Galab031a562009-11-04 12:51:10 -0600249 &pci1_hose, first_free_busno);
250 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500251 printf("PCI: 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");
255#else
256 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
257#endif
Kumar Galad0142ce2010-12-17 10:42:33 -0600258
259 fsl_pcie_init_board(first_free_busno);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500260}
261
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600262#if defined(CONFIG_OF_BOARD_SETUP)
Simon Glass2aec3cc2014-10-23 18:58:47 -0600263int ft_board_setup(void *blob, bd_t *bd)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500264{
Peter Tyserb024b802009-09-21 23:09:28 -0500265 ft_cpu_setup(blob, bd);
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600266
Kumar Galad0f27d32010-07-08 22:37:44 -0500267 FT_FSL_PCI_SETUP;
Simon Glass2aec3cc2014-10-23 18:58:47 -0600268
269 return 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500270}
271#endif
272
273/*
274 * get_board_sys_clk
275 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
276 */
277
278unsigned long
279get_board_sys_clk(ulong dummy)
280{
York Sunb7145172007-10-29 13:58:39 -0500281 u8 i;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500282 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500283 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500284
Kumar Gala146c4b22009-07-22 10:12:39 -0500285 i = in_8(pixis_base + PIXIS_SPD);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500286 i &= 0x07;
287
288 switch (i) {
289 case 0:
290 val = 33333000;
291 break;
292 case 1:
293 val = 39999600;
294 break;
295 case 2:
296 val = 49999500;
297 break;
298 case 3:
299 val = 66666000;
300 break;
301 case 4:
302 val = 83332500;
303 break;
304 case 5:
305 val = 99999000;
306 break;
307 case 6:
308 val = 133332000;
309 break;
310 case 7:
311 val = 166665000;
312 break;
313 }
314
315 return val;
316}
Ben Warrened63bcc2008-07-11 23:42:19 -0700317
Ben Warrened63bcc2008-07-11 23:42:19 -0700318int board_eth_init(bd_t *bis)
319{
Ben Warren2f2b6b62008-08-31 22:22:04 -0700320 return pci_eth_init(bis);
Ben Warrened63bcc2008-07-11 23:42:19 -0700321}
Peter Tyser69454402009-02-05 11:25:25 -0600322
323void board_reset(void)
324{
Kumar Gala146c4b22009-07-22 10:12:39 -0500325 u8 *pixis_base = (u8 *)PIXIS_BASE;
326
327 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser69454402009-02-05 11:25:25 -0600328
329 while (1)
330 ;
331}