1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright 2013 Freescale Semiconductor, Inc.
10 #include <asm/processor.h>
12 #include <asm/cache.h>
13 #include <asm/immap_85xx.h>
17 #include <linux/libfdt.h>
18 #include <fdt_support.h>
25 #include <asm/fsl_pci.h>
29 DECLARE_GLOBAL_DATA_PTR;
33 struct cpu_type *cpu = gd->arch.cpu;
34 struct cpld_data *cpld_data = (void *)(CONFIG_SYS_CPLD_BASE);
36 printf("Board: %sPCIe, ", cpu->name);
37 printf("CPLD Ver: 0x%02x\n", in_8(&cpld_data->cpldver));
42 int board_early_init_f(void)
44 struct fsl_ifc ifc = {(void *)CONFIG_SYS_IFC_ADDR, (void *)NULL};
46 /* Clock configuration to access CPLD using IFC(GPCM) */
47 setbits_be32(&ifc.gregs->ifc_gcr, 1 << IFC_GCR_TBCTL_TRN_TIME_SHIFT);
52 int board_early_init_r(void)
54 const unsigned long flashbase = CONFIG_SYS_FLASH_BASE;
55 int flash_esel = find_tlb_idx((void *)flashbase, 1);
58 * Remap Boot flash region to caching-inhibited
59 * so that flash can be erased properly.
62 /* Flush d-cache and invalidate i-cache of any FLASH data */
66 if (flash_esel == -1) {
67 /* very unlikely unless something is messed up */
68 puts("Error: Could not find TLB for FLASH BASE\n");
69 flash_esel = 1; /* give our best effort to continue */
71 /* invalidate existing TLB entry for flash */
72 disable_tlb(flash_esel);
75 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
76 MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
77 0, flash_esel, BOOKE_PAGESZ_64M, 1);
83 void pci_init_board(void)
85 fsl_pcie_init_board(0);
87 #endif /* ifdef CONFIG_PCI */
89 int board_eth_init(bd_t *bis)
91 #ifdef CONFIG_TSEC_ENET
92 struct fsl_pq_mdio_info mdio_info;
93 struct tsec_info_struct tsec_info[2];
97 SET_STD_TSEC_INFO(tsec_info[num], 1);
101 SET_STD_TSEC_INFO(tsec_info[num], 2);
105 printf("No TSECs initialized\n");
109 /* Register 1G MDIO bus */
110 mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
111 mdio_info.name = DEFAULT_MII_NAME;
113 fsl_pq_mdio_init(bis, &mdio_info);
115 tsec_eth_init(bis, tsec_info, num);
118 return pci_eth_init(bis);
121 #if defined(CONFIG_OF_BOARD_SETUP)
122 void fdt_del_sec(void *blob, int offset)
126 while ((nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,sec-v6.0",
127 CONFIG_SYS_CCSRBAR_PHYS + CONFIG_SYS_FSL_SEC_OFFSET
128 + offset * CONFIG_SYS_FSL_SEC_IDX_OFFSET)) >= 0) {
129 fdt_del_node(blob, nodeoff);
134 int ft_board_setup(void *blob, bd_t *bd)
138 struct cpu_type *cpu;
142 ft_cpu_setup(blob, bd);
144 base = env_get_bootm_low();
145 size = env_get_bootm_size();
147 #if defined(CONFIG_PCI)
151 fdt_fixup_memory(blob, (u64)base, (u64)size);
152 if (cpu->soc_ver == SVR_C291)
153 fdt_del_sec(blob, 1);
154 else if (cpu->soc_ver == SVR_C292)
155 fdt_del_sec(blob, 2);