a9ea986579aee3fcdcdc91c7a062ae53de96b0fc
[platform/kernel/u-boot.git] / board / freescale / c29xpcie / c29xpcie.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright 2013 Freescale Semiconductor, Inc.
4  */
5
6 #include <common.h>
7 #include <init.h>
8 #include <asm/processor.h>
9 #include <asm/mmu.h>
10 #include <asm/cache.h>
11 #include <asm/immap_85xx.h>
12 #include <asm/io.h>
13 #include <env.h>
14 #include <miiphy.h>
15 #include <linux/libfdt.h>
16 #include <fdt_support.h>
17 #include <fsl_mdio.h>
18 #include <tsec.h>
19 #include <mmc.h>
20 #include <netdev.h>
21 #include <pci.h>
22 #include <fsl_ifc.h>
23 #include <asm/fsl_pci.h>
24
25 #include "cpld.h"
26
27 DECLARE_GLOBAL_DATA_PTR;
28
29 int checkboard(void)
30 {
31         struct cpu_type *cpu = gd->arch.cpu;
32         struct cpld_data *cpld_data = (void *)(CONFIG_SYS_CPLD_BASE);
33
34         printf("Board: %sPCIe, ", cpu->name);
35         printf("CPLD Ver: 0x%02x\n", in_8(&cpld_data->cpldver));
36
37         return 0;
38 }
39
40 int board_early_init_f(void)
41 {
42         struct fsl_ifc ifc = {(void *)CONFIG_SYS_IFC_ADDR, (void *)NULL};
43
44         /* Clock configuration to access CPLD using IFC(GPCM) */
45         setbits_be32(&ifc.gregs->ifc_gcr, 1 << IFC_GCR_TBCTL_TRN_TIME_SHIFT);
46
47         return 0;
48 }
49
50 int board_early_init_r(void)
51 {
52         const unsigned long flashbase = CONFIG_SYS_FLASH_BASE;
53         int flash_esel = find_tlb_idx((void *)flashbase, 1);
54
55         /*
56          * Remap Boot flash region to caching-inhibited
57          * so that flash can be erased properly.
58          */
59
60         /* Flush d-cache and invalidate i-cache of any FLASH data */
61         flush_dcache();
62         invalidate_icache();
63
64         if (flash_esel == -1) {
65                 /* very unlikely unless something is messed up */
66                 puts("Error: Could not find TLB for FLASH BASE\n");
67                 flash_esel = 1; /* give our best effort to continue */
68         } else {
69                 /* invalidate existing TLB entry for flash */
70                 disable_tlb(flash_esel);
71         }
72
73         set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS,
74                         MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,
75                         0, flash_esel, BOOKE_PAGESZ_64M, 1);
76
77         return 0;
78 }
79
80 #ifdef CONFIG_PCI
81 void pci_init_board(void)
82 {
83         fsl_pcie_init_board(0);
84 }
85 #endif /* ifdef CONFIG_PCI */
86
87 int board_eth_init(bd_t *bis)
88 {
89 #ifdef CONFIG_TSEC_ENET
90         struct fsl_pq_mdio_info mdio_info;
91         struct tsec_info_struct tsec_info[2];
92         int num = 0;
93
94 #ifdef CONFIG_TSEC1
95         SET_STD_TSEC_INFO(tsec_info[num], 1);
96         num++;
97 #endif
98 #ifdef CONFIG_TSEC2
99         SET_STD_TSEC_INFO(tsec_info[num], 2);
100         num++;
101 #endif
102         if (!num) {
103                 printf("No TSECs initialized\n");
104                 return 0;
105         }
106
107         /* Register 1G MDIO bus */
108         mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
109         mdio_info.name = DEFAULT_MII_NAME;
110
111         fsl_pq_mdio_init(bis, &mdio_info);
112
113         tsec_eth_init(bis, tsec_info, num);
114 #endif
115
116         return pci_eth_init(bis);
117 }
118
119 #if defined(CONFIG_OF_BOARD_SETUP)
120 void fdt_del_sec(void *blob, int offset)
121 {
122         int nodeoff = 0;
123
124         while ((nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,sec-v6.0",
125                         CONFIG_SYS_CCSRBAR_PHYS + CONFIG_SYS_FSL_SEC_OFFSET
126                         + offset * CONFIG_SYS_FSL_SEC_IDX_OFFSET)) >= 0) {
127                 fdt_del_node(blob, nodeoff);
128                 offset++;
129         }
130 }
131
132 int ft_board_setup(void *blob, bd_t *bd)
133 {
134         phys_addr_t base;
135         phys_size_t size;
136         struct cpu_type *cpu;
137
138         cpu = gd->arch.cpu;
139
140         ft_cpu_setup(blob, bd);
141
142         base = env_get_bootm_low();
143         size = env_get_bootm_size();
144
145 #if defined(CONFIG_PCI)
146         FT_FSL_PCI_SETUP;
147 #endif
148
149         fdt_fixup_memory(blob, (u64)base, (u64)size);
150         if (cpu->soc_ver == SVR_C291)
151                 fdt_del_sec(blob, 1);
152         else if (cpu->soc_ver == SVR_C292)
153                 fdt_del_sec(blob, 2);
154
155         return 0;
156 }
157 #endif