2 * Copyright 2013 Freescale Semiconductor, Inc.
4 * Authors: Roy Zang <tie-fei.zang@freescale.com>
5 * Chunhe Lan <Chunhe.Lan@freescale.com>
7 * SPDX-License-Identifier: GPL-2.0+
14 #include <asm/cache.h>
15 #include <asm/processor.h>
17 #include <asm/immap_85xx.h>
18 #include <asm/fsl_pci.h>
19 #include <fsl_ddr_sdram.h>
20 #include <asm/fsl_portals.h>
22 #include <fdt_support.h>
29 #include <fsl_dtsec.h>
31 DECLARE_GLOBAL_DATA_PTR;
33 int board_early_init_f(void)
35 fsl_lbc_t *lbc = LBC_BASE_ADDR;
37 /* Set ABSWP to implement conversion of addresses in the LBC */
38 setbits_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
45 printf("Board: P1023 RDB\n");
51 void pci_init_board(void)
53 fsl_pcie_init_board(0);
57 int board_early_init_r(void)
59 const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
60 int flash_esel = find_tlb_idx((void *)flashbase, 1);
63 * Remap Boot flash + PROMJET region to caching-inhibited
64 * so that flash can be erased properly.
67 /* Flush d-cache and invalidate i-cache of any FLASH data */
71 if (flash_esel == -1) {
72 /* very unlikely unless something is messed up */
73 puts("Error: Could not find TLB for FLASH BASE\n");
74 flash_esel = 2; /* give our best effort to continue */
76 /* invalidate existing TLB entry for flash + promjet */
77 disable_tlb(flash_esel);
80 set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
81 MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
82 0, flash_esel, BOOKE_PAGESZ_256M, 1);
89 unsigned long get_board_sys_clk(ulong dummy)
94 unsigned long get_board_ddr_clk(ulong dummy)
99 int board_eth_init(bd_t *bis)
101 ccsr_gur_t *gur = (ccsr_gur_t *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
102 struct fsl_pq_mdio_info dtsec_mdio_info;
105 * Need to set dTSEC 1 pin multiplexing to TSEC. The default setting
108 setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_TSEC1_1);
110 dtsec_mdio_info.regs =
111 (struct tsec_mii_mng *)CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR;
112 dtsec_mdio_info.name = DEFAULT_FM_MDIO_NAME;
114 /* Register the 1G MDIO bus */
115 fsl_pq_mdio_init(bis, &dtsec_mdio_info);
117 fm_info_set_phy_address(FM1_DTSEC1, CONFIG_SYS_FM1_DTSEC1_PHY_ADDR);
118 fm_info_set_phy_address(FM1_DTSEC2, CONFIG_SYS_FM1_DTSEC2_PHY_ADDR);
120 fm_info_set_mdio(FM1_DTSEC1,
121 miiphy_get_dev_by_name(DEFAULT_FM_MDIO_NAME));
122 fm_info_set_mdio(FM1_DTSEC2,
123 miiphy_get_dev_by_name(DEFAULT_FM_MDIO_NAME));
125 #ifdef CONFIG_FMAN_ENET
129 return pci_eth_init(bis);
132 #if defined(CONFIG_OF_BOARD_SETUP)
133 int ft_board_setup(void *blob, bd_t *bd)
138 ft_cpu_setup(blob, bd);
140 base = env_get_bootm_low();
141 size = env_get_bootm_size();
143 fdt_fixup_memory(blob, (u64)base, (u64)size);
145 #ifdef CONFIG_HAS_FSL_DR_USB
146 fsl_fdt_fixup_dr_usb(blob, bd);
149 fdt_fixup_fman_ethernet(blob);