common: Drop image.h from common header
[oweals/u-boot.git] / board / freescale / p1023rdb / p1023rdb.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2013 Freescale Semiconductor, Inc.
4  *
5  * Authors:  Roy Zang <tie-fei.zang@freescale.com>
6  *           Chunhe Lan <Chunhe.Lan@freescale.com>
7  */
8
9 #include <common.h>
10 #include <command.h>
11 #include <env.h>
12 #include <image.h>
13 #include <init.h>
14 #include <net.h>
15 #include <pci.h>
16 #include <asm/io.h>
17 #include <asm/cache.h>
18 #include <asm/processor.h>
19 #include <asm/mmu.h>
20 #include <asm/immap_85xx.h>
21 #include <asm/fsl_pci.h>
22 #include <fsl_ddr_sdram.h>
23 #include <asm/fsl_portals.h>
24 #include <fsl_qbman.h>
25 #include <linux/libfdt.h>
26 #include <fdt_support.h>
27 #include <netdev.h>
28 #include <malloc.h>
29 #include <fm_eth.h>
30 #include <fsl_mdio.h>
31 #include <miiphy.h>
32 #include <phy.h>
33 #include <fsl_dtsec.h>
34
35 DECLARE_GLOBAL_DATA_PTR;
36
37 int board_early_init_f(void)
38 {
39         fsl_lbc_t *lbc = LBC_BASE_ADDR;
40
41         /* Set ABSWP to implement conversion of addresses in the LBC */
42         setbits_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
43
44         return 0;
45 }
46
47 int checkboard(void)
48 {
49         printf("Board: P1023 RDB\n");
50
51         return 0;
52 }
53
54 #ifdef CONFIG_PCI
55 void pci_init_board(void)
56 {
57         fsl_pcie_init_board(0);
58 }
59 #endif
60
61 int board_early_init_r(void)
62 {
63         const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
64         int flash_esel = find_tlb_idx((void *)flashbase, 1);
65
66         /*
67          * Remap Boot flash + PROMJET region to caching-inhibited
68          * so that flash can be erased properly.
69          */
70
71         /* Flush d-cache and invalidate i-cache of any FLASH data */
72         flush_dcache();
73         invalidate_icache();
74
75         if (flash_esel == -1) {
76                 /* very unlikely unless something is messed up */
77                 puts("Error: Could not find TLB for FLASH BASE\n");
78                 flash_esel = 2; /* give our best effort to continue */
79         } else {
80                 /* invalidate existing TLB entry for flash + promjet */
81                 disable_tlb(flash_esel);
82         }
83
84         set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
85                 MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
86                 0, flash_esel, BOOKE_PAGESZ_256M, 1);
87
88         setup_qbman_portals();
89
90         return 0;
91 }
92
93 unsigned long get_board_sys_clk(ulong dummy)
94 {
95         return gd->bus_clk;
96 }
97
98 unsigned long get_board_ddr_clk(ulong dummy)
99 {
100         return gd->mem_clk;
101 }
102
103 int board_eth_init(bd_t *bis)
104 {
105         ccsr_gur_t *gur = (ccsr_gur_t *)CONFIG_SYS_MPC85xx_GUTS_ADDR;
106         struct fsl_pq_mdio_info dtsec_mdio_info;
107
108         /*
109          * Need to set dTSEC 1 pin multiplexing to TSEC. The default setting
110          * is not correct.
111          */
112         setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_TSEC1_1);
113
114         dtsec_mdio_info.regs =
115                 (struct tsec_mii_mng *)CONFIG_SYS_FM1_DTSEC1_MDIO_ADDR;
116         dtsec_mdio_info.name = DEFAULT_FM_MDIO_NAME;
117
118         /* Register the 1G MDIO bus */
119         fsl_pq_mdio_init(bis, &dtsec_mdio_info);
120
121         fm_info_set_phy_address(FM1_DTSEC1, CONFIG_SYS_FM1_DTSEC1_PHY_ADDR);
122         fm_info_set_phy_address(FM1_DTSEC2, CONFIG_SYS_FM1_DTSEC2_PHY_ADDR);
123
124         fm_info_set_mdio(FM1_DTSEC1,
125                          miiphy_get_dev_by_name(DEFAULT_FM_MDIO_NAME));
126         fm_info_set_mdio(FM1_DTSEC2,
127                          miiphy_get_dev_by_name(DEFAULT_FM_MDIO_NAME));
128
129 #ifdef CONFIG_FMAN_ENET
130         cpu_eth_init(bis);
131 #endif
132
133         return pci_eth_init(bis);
134 }
135
136 #if defined(CONFIG_OF_BOARD_SETUP)
137 int ft_board_setup(void *blob, bd_t *bd)
138 {
139         phys_addr_t base;
140         phys_size_t size;
141
142         ft_cpu_setup(blob, bd);
143
144         base = env_get_bootm_low();
145         size = env_get_bootm_size();
146
147         fdt_fixup_memory(blob, (u64)base, (u64)size);
148
149 #ifdef CONFIG_HAS_FSL_DR_USB
150         fsl_fdt_fixup_dr_usb(blob, bd);
151 #endif
152
153         fdt_fixup_fman_ethernet(blob);
154
155         return 0;
156 }
157 #endif