2 * Copyright 2007,2009-2011 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
10 #include <asm/processor.h>
11 #include <asm/immap_86xx.h>
12 #include <asm/fsl_pci.h>
13 #include <fsl_ddr_sdram.h>
14 #include <asm/fsl_serdes.h>
18 #include <fdt_support.h>
19 #include <spd_sdram.h>
22 void sdram_init(void);
23 phys_size_t fixed_sdram(void);
24 int mpc8610hpcd_diu_init(void);
27 /* called before any console output */
28 int board_early_init_f(void)
30 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
31 volatile ccsr_gur_t *gur = &immap->im_gur;
33 gur->gpiocr |= 0x88aa5500; /* DIU16, IR1, UART0, UART2 */
41 u8 *pixis_base = (u8 *)PIXIS_BASE;
43 /*Do not use 8259PIC*/
44 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
45 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val | 0x80);
47 /*For FPGA V7 or higher, set the IRQMAPSEL to 0 to use MAP0 interrupt*/
48 version = in_8(pixis_base + PIXIS_PVER);
50 tmp_val = in_8(pixis_base + PIXIS_BRDCFG0);
51 out_8(pixis_base + PIXIS_BRDCFG0, tmp_val & 0xbf);
54 /* Using this for DIU init before the driver in linux takes over
55 * Enable the TFP410 Encoder (I2C address 0x38)
59 i2c_write(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
60 /* Verify if enabled */
62 i2c_read(0x38, 0x08, 1, &tmp_val, sizeof(tmp_val));
63 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
66 i2c_write(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
67 /* Verify if enabled */
69 i2c_read(0x38, 0x0A, 1, &tmp_val, sizeof(tmp_val));
70 debug("DVI Encoder Read: 0x%02x\n", tmp_val);
77 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
78 volatile ccsr_local_mcm_t *mcm = &immap->im_local_mcm;
79 u8 *pixis_base = (u8 *)PIXIS_BASE;
81 printf ("Board: MPC8610HPCD, Sys ID: 0x%02x, "
82 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
83 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
84 in_8(pixis_base + PIXIS_PVER));
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.
92 switch (in_8(pixis_base + PIXIS_VBOOT) & 0xC0) {
94 puts("vBank: Standard\n");
103 puts("vBank: Alternate\n");
107 mcm->abcr |= 0x00010000; /* 0 */
108 mcm->hpmr3 = 0x80000008; /* 4c */
120 initdram(int board_type)
122 phys_size_t dram_size = 0;
124 #if defined(CONFIG_SPD_EEPROM)
125 dram_size = fsl_ddr_sdram();
127 dram_size = fixed_sdram();
130 setup_ddr_bat(dram_size);
137 #if !defined(CONFIG_SPD_EEPROM)
139 * Fixed sdram init -- doesn't use serial presence detect.
142 phys_size_t fixed_sdram(void)
144 #if !defined(CONFIG_SYS_RAMBOOT)
145 volatile immap_t *immap = (immap_t *)CONFIG_SYS_IMMR;
146 struct ccsr_ddr __iomem *ddr = &immap->im_ddr1;
149 ddr->cs0_bnds = 0x0000001f;
150 ddr->cs0_config = 0x80010202;
152 ddr->timing_cfg_3 = 0x00000000;
153 ddr->timing_cfg_0 = 0x00260802;
154 ddr->timing_cfg_1 = 0x3935d322;
155 ddr->timing_cfg_2 = 0x14904cc8;
156 ddr->sdram_mode = 0x00480432;
157 ddr->sdram_mode_2 = 0x00000000;
158 ddr->sdram_interval = 0x06180fff; /* 0x06180100; */
159 ddr->sdram_data_init = 0xDEADBEEF;
160 ddr->sdram_clk_cntl = 0x03800000;
161 ddr->sdram_cfg_2 = 0x04400010;
163 #if defined(CONFIG_DDR_ECC)
164 ddr->err_int_en = 0x0000000d;
165 ddr->err_disable = 0x00000000;
166 ddr->err_sbe = 0x00010000;
172 ddr->sdram_cfg = 0xc3000000; /* 0xe3008000;*/
175 #if defined(CONFIG_ECC_INIT_VIA_DDRCONTROLLER)
177 debug("DDR - 1st controller: memory initializing\n");
179 * Poll until memory is initialized.
180 * 512 Meg at 400 might hit this 200 times or so.
182 while ((ddr->sdram_cfg_2 & (d_init << 4)) != 0)
185 debug("DDR: memory initialized\n\n");
190 return 512 * 1024 * 1024;
192 return CONFIG_SYS_SDRAM_SIZE * 1024 * 1024;
197 #if defined(CONFIG_PCI)
199 * Initialize PCI Devices, report devices found.
202 #ifndef CONFIG_PCI_PNP
203 static struct pci_config_table pci_fsl86xxads_config_table[] = {
204 {PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID,
205 PCI_IDSEL_NUMBER, PCI_ANY_ID,
206 pci_cfgfunc_config_device, {PCI_ENET0_IOADDR,
208 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER} },
214 static struct pci_controller pci1_hose;
215 #endif /* CONFIG_PCI */
217 void pci_init_board(void)
219 volatile immap_t *immap = (immap_t *) CONFIG_SYS_CCSRBAR;
220 volatile ccsr_gur_t *gur = &immap->im_gur;
221 struct fsl_pci_info pci_info;
223 int first_free_busno;
226 devdisr = in_be32(&gur->devdisr);
228 first_free_busno = fsl_pcie_init_board(0);
231 if (!(devdisr & MPC86xx_DEVDISR_PCI1)) {
232 SET_STD_PCI_INFO(pci_info, 1);
233 set_next_law(pci_info.mem_phys,
234 law_size_bits(pci_info.mem_size), pci_info.law);
235 set_next_law(pci_info.io_phys,
236 law_size_bits(pci_info.io_size), pci_info.law);
238 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
239 printf("PCI: connected to PCI slots as %s" \
240 " (base address %lx)\n",
241 pci_agent ? "Agent" : "Host",
243 #ifndef CONFIG_PCI_PNP
244 pci1_hose.config_table = pci_mpc86xxcts_config_table;
246 first_free_busno = fsl_pci_init_port(&pci_info,
247 &pci1_hose, first_free_busno);
249 printf("PCI: disabled\n");
254 setbits_be32(&gur->devdisr, MPC86xx_DEVDISR_PCI1); /* disable */
257 fsl_pcie_init_board(first_free_busno);
260 #if defined(CONFIG_OF_BOARD_SETUP)
261 int ft_board_setup(void *blob, bd_t *bd)
263 ft_cpu_setup(blob, bd);
273 * Reads the FPGA on board for CONFIG_SYS_CLK_FREQ
277 get_board_sys_clk(ulong dummy)
281 u8 *pixis_base = (u8 *)PIXIS_BASE;
283 i = in_8(pixis_base + PIXIS_SPD);
316 int board_eth_init(bd_t *bis)
318 return pci_eth_init(bis);
321 void board_reset(void)
323 u8 *pixis_base = (u8 *)PIXIS_BASE;
325 out_8(pixis_base + PIXIS_RST, 0);