2 * Copyright 2007,2009-2010 Freescale Semiconductor, Inc.
4 * SPDX-License-Identifier: GPL-2.0+
10 #include <asm/processor.h>
12 #include <asm/immap_85xx.h>
13 #include <asm/fsl_pci.h>
14 #include <fsl_ddr_sdram.h>
15 #include <asm/fsl_serdes.h>
19 #include <fdt_support.h>
24 #include "../common/sgmii_riser.h"
28 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
29 volatile fsl_lbc_t *lbc = LBC_BASE_ADDR;
30 volatile ccsr_local_ecm_t *ecm = (void *)(CONFIG_SYS_MPC85xx_ECM_ADDR);
32 u8 *pixis_base = (u8 *)PIXIS_BASE;
34 if ((uint)&gur->porpllsr != 0xe00e0000) {
35 printf("immap size error %lx\n",(ulong)&gur->porpllsr);
37 printf ("Board: MPC8544DS, Sys ID: 0x%02x, "
38 "Sys Ver: 0x%02x, FPGA Ver: 0x%02x, ",
39 in_8(pixis_base + PIXIS_ID), in_8(pixis_base + PIXIS_VER),
40 in_8(pixis_base + PIXIS_PVER));
42 vboot = in_8(pixis_base + PIXIS_VBOOT);
43 if (vboot & PIXIS_VBOOT_FMAP)
44 printf ("vBank: %d\n", ((vboot & PIXIS_VBOOT_FBANK) >> 6));
48 lbc->ltesr = 0xffffffff; /* Clear LBC error interrupts */
49 lbc->lteir = 0xffffffff; /* Enable LBC error interrupts */
50 ecm->eedr = 0xffffffff; /* Clear ecm errors */
51 ecm->eeer = 0xffffffff; /* Enable ecm errors */
57 static struct pci_controller pci1_hose;
61 static struct pci_controller pcie3_hose;
64 void pci_init_board(void)
66 volatile ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
67 struct fsl_pci_info pci_info;
68 u32 devdisr, pordevsr, io_sel;
69 u32 porpllsr, pci_agent, pci_speed, pci_32, pci_arb, pci_clk_sel;
70 int first_free_busno = 0;
72 int pcie_ep, pcie_configured;
74 devdisr = in_be32(&gur->devdisr);
75 pordevsr = in_be32(&gur->pordevsr);
76 porpllsr = in_be32(&gur->porpllsr);
77 io_sel = (pordevsr & MPC85xx_PORDEVSR_IO_SEL) >> 19;
79 debug (" pci_init_board: devdisr=%x, io_sel=%x\n", devdisr, io_sel);
84 pcie_configured = is_serdes_configured(PCIE3);
86 if (pcie_configured && !(devdisr & MPC85xx_DEVDISR_PCIE3)){
87 /* contains both PCIE3 MEM & IO space */
88 set_next_law(CONFIG_SYS_PCIE3_MEM_PHYS, LAW_SIZE_4M,
90 SET_STD_PCIE_INFO(pci_info, 3);
91 pcie_ep = fsl_setup_hose(&pcie3_hose, pci_info.regs);
94 pci_set_region(&pcie3_hose.regions[0],
95 CONFIG_SYS_PCIE3_MEM_BUS2,
96 CONFIG_SYS_PCIE3_MEM_PHYS2,
97 CONFIG_SYS_PCIE3_MEM_SIZE2,
100 pcie3_hose.region_count = 1;
102 printf("PCIE3: connected to ULI as %s (base addr %lx)\n",
103 pcie_ep ? "Endpoint" : "Root Complex",
105 first_free_busno = fsl_pci_init_port(&pci_info,
106 &pcie3_hose, first_free_busno);
109 * Activate ULI1575 legacy chip by performing a fake
110 * memory access. Needed to make ULI RTC work.
112 in_be32((u32 *)CONFIG_SYS_PCIE3_MEM_BUS);
114 printf("PCIE3: disabled\n");
118 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCIE3); /* disable */
122 SET_STD_PCIE_INFO(pci_info, 1);
123 first_free_busno = fsl_pcie_init_ctrl(first_free_busno, devdisr, PCIE1, &pci_info);
125 setbits_be32(&gur->devdisr, _DEVDISR_PCIE1); /* disable */
129 SET_STD_PCIE_INFO(pci_info, 2);
130 first_free_busno = fsl_pcie_init_ctrl(first_free_busno, devdisr, PCIE2, &pci_info);
132 setbits_be32(&gur->devdisr, _DEVDISR_PCIE2); /* disable */
136 pci_speed = 66666000;
138 pci_arb = pordevsr & MPC85xx_PORDEVSR_PCI1_ARB;
139 pci_clk_sel = porpllsr & MPC85xx_PORDEVSR_PCI1_SPD;
141 if (!(devdisr & MPC85xx_DEVDISR_PCI1)) {
142 SET_STD_PCI_INFO(pci_info, 1);
143 set_next_law(pci_info.mem_phys,
144 law_size_bits(pci_info.mem_size), pci_info.law);
145 set_next_law(pci_info.io_phys,
146 law_size_bits(pci_info.io_size), pci_info.law);
148 pci_agent = fsl_setup_hose(&pci1_hose, pci_info.regs);
149 printf("PCI: %d bit, %s MHz, %s, %s, %s (base address %lx)\n",
151 (pci_speed == 33333000) ? "33" :
152 (pci_speed == 66666000) ? "66" : "unknown",
153 pci_clk_sel ? "sync" : "async",
154 pci_agent ? "agent" : "host",
155 pci_arb ? "arbiter" : "external-arbiter",
158 first_free_busno = fsl_pci_init_port(&pci_info,
159 &pci1_hose, first_free_busno);
161 printf("PCI: disabled\n");
166 setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_PCI1); /* disable */
170 int last_stage_init(void)
177 get_board_sys_clk(ulong dummy)
179 u8 i, go_bit, rd_clks;
181 u8 *pixis_base = (u8 *)PIXIS_BASE;
183 go_bit = in_8(pixis_base + PIXIS_VCTL);
186 rd_clks = in_8(pixis_base + PIXIS_VCFGEN0);
190 * Only if both go bit and the SCLK bit in VCFGEN0 are set
191 * should we be using the AUX register. Remember, we also set the
192 * GO bit to boot from the alternate bank on the on-board flash
197 i = in_8(pixis_base + PIXIS_AUX);
199 i = in_8(pixis_base + PIXIS_SPD);
201 i = in_8(pixis_base + PIXIS_SPD);
237 #define MIIM_CIS8204_SLED_CON 0x1b
238 #define MIIM_CIS8204_SLEDCON_INIT 0x1115
240 * Hack to write all 4 PHYs with the LED values
242 int board_phy_config(struct phy_device *phydev)
246 struct mii_dev *bus = phydev->bus;
248 if (phydev->drv->config)
249 phydev->drv->config(phydev);
253 for (phyid = 0; phyid < 4; phyid++)
254 bus->write(bus, phyid, MDIO_DEVAD_NONE, MIIM_CIS8204_SLED_CON,
255 MIIM_CIS8204_SLEDCON_INIT);
263 int board_eth_init(bd_t *bis)
265 #ifdef CONFIG_TSEC_ENET
266 struct fsl_pq_mdio_info mdio_info;
267 struct tsec_info_struct tsec_info[2];
271 SET_STD_TSEC_INFO(tsec_info[num], 1);
272 if (is_serdes_configured(SGMII_TSEC1)) {
273 puts("eTSEC1 is in sgmii mode.\n");
274 tsec_info[num].flags |= TSEC_SGMII;
279 SET_STD_TSEC_INFO(tsec_info[num], 3);
280 if (is_serdes_configured(SGMII_TSEC3)) {
281 puts("eTSEC3 is in sgmii mode.\n");
282 tsec_info[num].flags |= TSEC_SGMII;
288 printf("No TSECs initialized\n");
293 if (is_serdes_configured(SGMII_TSEC1) ||
294 is_serdes_configured(SGMII_TSEC3)) {
295 fsl_sgmii_riser_init(tsec_info, num);
298 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
299 mdio_info.name = DEFAULT_MII_NAME;
300 fsl_pq_mdio_init(bis, &mdio_info);
302 tsec_eth_init(bis, tsec_info, num);
304 return pci_eth_init(bis);
307 #if defined(CONFIG_OF_BOARD_SETUP)
308 int ft_board_setup(void *blob, bd_t *bd)
310 ft_cpu_setup(blob, bd);
314 #ifdef CONFIG_FSL_SGMII_RISER
315 fsl_sgmii_riser_fdt_fixup(blob);