blob: 52bf4da98eaa50d3f971ebda67771e0136657acb [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>
Simon Glass18afe102019-11-14 12:57:47 -07008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060010#include <net.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050011#include <pci.h>
12#include <asm/processor.h>
13#include <asm/immap_86xx.h>
Kumar Gala9bbd6432009-04-02 13:22:48 -050014#include <asm/fsl_pci.h>
York Sunf0626592013-09-30 09:22:09 -070015#include <fsl_ddr_sdram.h>
Kumar Gala3d020382010-12-15 04:55:20 -060016#include <asm/fsl_serdes.h>
Jon Loeligerca7aff12008-01-04 11:58:23 -060017#include <i2c.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050018#include <asm/io.h>
Simon Glassdbd79542020-05-10 11:40:11 -060019#include <linux/delay.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090020#include <linux/libfdt.h>
Jon Loeliger6bb38c42008-01-04 12:07:27 -060021#include <fdt_support.h>
Jon Loeligerde9737d2008-03-04 10:03:03 -060022#include <spd_sdram.h>
Ben Warren2f2b6b62008-08-31 22:22:04 -070023#include <netdev.h>
Jon Loeliger36c0b342007-10-16 13:54:01 -050024
Simon Glass39f90ba2017-03-31 08:40:25 -060025DECLARE_GLOBAL_DATA_PTR;
26
Jon Loeliger36c0b342007-10-16 13:54:01 -050027void sdram_init(void);
Becky Brucecc064ed2008-10-31 17:13:32 -050028phys_size_t fixed_sdram(void);
Timur Tabie6044632010-08-31 19:56:43 -050029int mpc8610hpcd_diu_init(void);
Jon Loeligerca7aff12008-01-04 11:58:23 -060030
Jon Loeliger36c0b342007-10-16 13:54:01 -050031
32/* called before any console output */
33int board_early_init_f(void)
34{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020035 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050036 volatile ccsr_gur_t *gur = &immap->im_gur;
37
York Sunb7145172007-10-29 13:58:39 -050038 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
Jon Loeliger36c0b342007-10-16 13:54:01 -050039
40 return 0;
41}
42
York Sunb7145172007-10-29 13:58:39 -050043int misc_init_r(void)
44{
45 u8 tmp_val, version;
Kumar Gala146c4b22009-07-22 10:12:39 -050046 u8 *pixis_base = (u8 *)PIXIS_BASE;
York Sunb7145172007-10-29 13:58:39 -050047
48 /*Do not use 8259PIC*/
Kumar Gala146c4b22009-07-22 10:12:39 -050049 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
50 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
York Sunb7145172007-10-29 13:58:39 -050051
52 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
Kumar Gala146c4b22009-07-22 10:12:39 -050053 version = in_8(pixis_base + PIXIS_PVER);
York Sunb7145172007-10-29 13:58:39 -050054 if(version >= 0x07) {
Kumar Gala146c4b22009-07-22 10:12:39 -050055 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
56 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
York Sunb7145172007-10-29 13:58:39 -050057 }
58
59 /* Using this for DIU init before the driver in linux takes over
60 * Enable the TFP410 Encoder (I2C address 0x38)
61 */
62
63 tmp_val = 0xBF;
64 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
65 /* Verify if enabled */
66 tmp_val = 0;
67 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
Marek Vasute5eecd52011-10-21 14:17:09 +000068 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Sunb7145172007-10-29 13:58:39 -050069
70 tmp_val = 0x10;
71 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
72 /* Verify if enabled */
73 tmp_val = 0;
74 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
Marek Vasute5eecd52011-10-21 14:17:09 +000075 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
York Sunb7145172007-10-29 13:58:39 -050076
York Sunb7145172007-10-29 13:58:39 -050077 return 0;
78}
79
Jon Loeliger36c0b342007-10-16 13:54:01 -050080int checkboard(void)
81{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020082 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
Jon Loeliger36c0b342007-10-16 13:54:01 -050083 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
Kumar Gala146c4b22009-07-22 10:12:39 -050084 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -050085
Timur Tabi69aa1932011-04-28 13:41:20 -050086 printf ("Board: MPC8610HPCD, Sys ID: 0x%02x, "
87 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
Kumar Gala146c4b22009-07-22 10:12:39 -050088 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
89 in_8(pixis_base + PIXIS_PVER));
Jon Loeliger36c0b342007-10-16 13:54:01 -050090
Timur Tabi69aa1932011-04-28 13:41:20 -050091 /*
92 * The MPC8610 HPCD workbook says that LBMAP=11 is the "normal" boot
93 * bank and LBMAP=00 is the alternate bank. However, the pixis
94 * altbank code can only set bits, not clear them, so we treat 00 as
95 * the normal bank and 11 as the alternate.
96 */
97 switch (in_8(pixis_base + PIXIS_VBOOT) & 0xC0) {
98 case 0:
99 puts("vBank: Standard\n");
100 break;
101 case 0x40:
102 puts("Promjet\n");
103 break;
104 case 0x80:
105 puts("NAND\n");
106 break;
107 case 0xC0:
108 puts("vBank: Alternate\n");
109 break;
110 }
111
Jon Loeliger36c0b342007-10-16 13:54:01 -0500112 mcm->abcr |= 0x00010000; /* 0 */
113 mcm->hpmr3 = 0x80000008; /* 4c */
114 mcm->hpmr0 = 0;
115 mcm->hpmr1 = 0;
116 mcm->hpmr2 = 0;
117 mcm->hpmr4 = 0;
118 mcm->hpmr5 = 0;
119
120 return 0;
121}
122
123
Simon Glassd35f3382017-04-06 12:47:05 -0600124int dram_init(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500125{
Becky Brucecc064ed2008-10-31 17:13:32 -0500126 phys_size_t dram_size = 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500127
128#if defined(CONFIG_SPD_EEPROM)
Jon Loeliger54634b42008-08-26 15:01:36 -0500129 dram_size = fsl_ddr_sdram();
Jon Loeliger36c0b342007-10-16 13:54:01 -0500130#else
131 dram_size = fixed_sdram();
132#endif
133
Timur Tabi107e9cd2010-03-29 12:51:07 -0500134 setup_ddr_bat(dram_size);
135
Wolfgang Denkf2bbb532011-07-25 10:13:53 +0200136 debug(" DDR: ");
Simon Glass39f90ba2017-03-31 08:40:25 -0600137 gd->ram_size = dram_size;
138
139 return 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500140}
141
142
Jon Loeliger36c0b342007-10-16 13:54:01 -0500143#if !defined(CONFIG_SPD_EEPROM)
144/*
145 * Fixed sdram init -- doesn't use serial presence detect.
146 */
147
Becky Brucecc064ed2008-10-31 17:13:32 -0500148phys_size_t fixed_sdram(void)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500149{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200150#if !defined(CONFIG_SYS_RAMBOOT)
151 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
York Suna21803d2013-11-18 10:29:32 -0800152 struct ccsr_ddr __iomem *ddr = &immap->im_ddr1;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500153 uint d_init;
154
155 ddr->cs0_bnds = 0x0000001f;
156 ddr->cs0_config = 0x80010202;
157
Kumar Gala3af779b2008-04-29 10:27:08 -0500158 ddr->timing_cfg_3 = 0x00000000;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500159 ddr->timing_cfg_0 = 0x00260802;
160 ddr->timing_cfg_1 = 0x3935d322;
161 ddr->timing_cfg_2 = 0x14904cc8;
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500162 ddr->sdram_mode = 0x00480432;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500163 ddr->sdram_mode_2 = 0x00000000;
164 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
165 ddr->sdram_data_init = 0xDEADBEEF;
166 ddr->sdram_clk_cntl = 0x03800000;
167 ddr->sdram_cfg_2 = 0x04400010;
168
169#if defined(CONFIG_DDR_ECC)
170 ddr->err_int_en = 0x0000000d;
171 ddr->err_disable = 0x00000000;
172 ddr->err_sbe = 0x00010000;
173#endif
174 asm("sync;isync");
175
176 udelay(500);
177
Peter Tyseraf5829cb2009-07-17 10:14:45 -0500178 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
Jon Loeliger36c0b342007-10-16 13:54:01 -0500179
180
181#if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
182 d_init = 1;
183 debug("DDR - 1st controller: memory initializing\n");
184 /*
185 * Poll until memory is initialized.
186 * 512 Meg at 400 might hit this 200 times or so.
187 */
188 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
189 udelay(1000);
190
191 debug("DDR: memory initialized\n\n");
192 asm("sync; isync");
193 udelay(500);
194#endif
195
196 return 512 * 1024 * 1024;
197#endif
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200198 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500199}
200
201#endif
202
203#if defined(CONFIG_PCI)
204/*
205 * Initialize PCI Devices, report devices found.
206 */
207
208#ifndef CONFIG_PCI_PNP
209static struct pci_config_table pci_fsl86xxads_config_table[] = {
210 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
211 PCI_IDSEL_NUMBER, PCI_ANY_ID,
212 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
213 PCI_ENET0_MEMADDR,
214 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
215 {}
216};
217#endif
218
219
Zhao Chenhuicab87a22011-08-24 13:20:06 +0800220static struct pci_controller pci1_hose;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500221#endif /* CONFIG_PCI */
222
Jon Loeliger36c0b342007-10-16 13:54:01 -0500223void pci_init_board(void)
224{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200225 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500226 volatile ccsr_gur_t *gur = &immap->im_gur;
Kumar Galad0142ce2010-12-17 10:42:33 -0600227 struct fsl_pci_info pci_info;
Wolfgang Denk01a95322011-11-29 22:17:54 +0000228 u32 devdisr;
Kumar Galad0142ce2010-12-17 10:42:33 -0600229 int first_free_busno;
230 int pci_agent;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500231
Kumar Galab031a562009-11-04 12:51:10 -0600232 devdisr = in_be32(&gur->devdisr);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500233
Kumar Galad0142ce2010-12-17 10:42:33 -0600234 first_free_busno = fsl_pcie_init_board(0);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500235
236#ifdef CONFIG_PCI1
Kumar Galab031a562009-11-04 12:51:10 -0600237 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
Kumar Galad0142ce2010-12-17 10:42:33 -0600238 SET_STD_PCI_INFO(pci_info, 1);
239 set_next_law(pci_info.mem_phys,
240 law_size_bits(pci_info.mem_size), pci_info.law);
241 set_next_law(pci_info.io_phys,
242 law_size_bits(pci_info.io_size), pci_info.law);
243
244 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
Peter Tyser2b91f712010-10-29 17:59:24 -0500245 printf("PCI: connected to PCI slots as %s" \
Kumar Galab031a562009-11-04 12:51:10 -0600246 " (base address %lx)\n",
Jon Loeliger36c0b342007-10-16 13:54:01 -0500247 pci_agent ? "Agent" : "Host",
Kumar Galad0142ce2010-12-17 10:42:33 -0600248 pci_info.regs);
Zhao Chenhuicab87a22011-08-24 13:20:06 +0800249#ifndef CONFIG_PCI_PNP
250 pci1_hose.config_table = pci_mpc86xxcts_config_table;
251#endif
Kumar Galad0142ce2010-12-17 10:42:33 -0600252 first_free_busno = fsl_pci_init_port(&pci_info,
Kumar Galab031a562009-11-04 12:51:10 -0600253 &pci1_hose, first_free_busno);
254 } else {
Peter Tyser2b91f712010-10-29 17:59:24 -0500255 printf("PCI: disabled\n");
Kumar Galab031a562009-11-04 12:51:10 -0600256 }
Jon Loeliger36c0b342007-10-16 13:54:01 -0500257
Kumar Galab031a562009-11-04 12:51:10 -0600258 puts("\n");
259#else
260 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
261#endif
Kumar Galad0142ce2010-12-17 10:42:33 -0600262
263 fsl_pcie_init_board(first_free_busno);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500264}
265
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600266#if defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900267int ft_board_setup(void *blob, struct bd_info *bd)
Jon Loeliger36c0b342007-10-16 13:54:01 -0500268{
Peter Tyserb024b802009-09-21 23:09:28 -0500269 ft_cpu_setup(blob, bd);
Jon Loeliger6bb38c42008-01-04 12:07:27 -0600270
Kumar Galad0f27d32010-07-08 22:37:44 -0500271 FT_FSL_PCI_SETUP;
Simon Glass2aec3cc2014-10-23 18:58:47 -0600272
273 return 0;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500274}
275#endif
276
277/*
278 * get_board_sys_clk
279 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
280 */
281
282unsigned long
283get_board_sys_clk(ulong dummy)
284{
York Sunb7145172007-10-29 13:58:39 -0500285 u8 i;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500286 ulong val = 0;
Kumar Gala146c4b22009-07-22 10:12:39 -0500287 u8 *pixis_base = (u8 *)PIXIS_BASE;
Jon Loeliger36c0b342007-10-16 13:54:01 -0500288
Kumar Gala146c4b22009-07-22 10:12:39 -0500289 i = in_8(pixis_base + PIXIS_SPD);
Jon Loeliger36c0b342007-10-16 13:54:01 -0500290 i &= 0x07;
291
292 switch (i) {
293 case 0:
294 val = 33333000;
295 break;
296 case 1:
297 val = 39999600;
298 break;
299 case 2:
300 val = 49999500;
301 break;
302 case 3:
303 val = 66666000;
304 break;
305 case 4:
306 val = 83332500;
307 break;
308 case 5:
309 val = 99999000;
310 break;
311 case 6:
312 val = 133332000;
313 break;
314 case 7:
315 val = 166665000;
316 break;
317 }
318
319 return val;
320}
Ben Warrened63bcc2008-07-11 23:42:19 -0700321
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900322int board_eth_init(struct bd_info *bis)
Ben Warrened63bcc2008-07-11 23:42:19 -0700323{
Ben Warren2f2b6b62008-08-31 22:22:04 -0700324 return pci_eth_init(bis);
Ben Warrened63bcc2008-07-11 23:42:19 -0700325}
Peter Tyser69454402009-02-05 11:25:25 -0600326
327void board_reset(void)
328{
Kumar Gala146c4b22009-07-22 10:12:39 -0500329 u8 *pixis_base = (u8 *)PIXIS_BASE;
330
331 out_8(pixis_base + PIXIS_RST, 0);
Peter Tyser69454402009-02-05 11:25:25 -0600332
333 while (1)
334 ;
335}