blob: 68578e81a5dcd96201c9d2d73d142c11b4abef32 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05302/*
3 * Copyright 2016 Freescale Semiconductor, Inc.
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05304 */
5
6#include <common.h>
7#include <i2c.h>
8#include <fdt_support.h>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <asm/cache.h>
Simon Glass97589732020-05-10 11:40:02 -060010#include <init.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053012#include <asm/io.h>
13#include <asm/arch/clock.h>
14#include <asm/arch/fsl_serdes.h>
Prabhakar Kushwaha74d129b2017-01-30 17:05:35 +053015#ifdef CONFIG_FSL_LS_PPA
16#include <asm/arch/ppa.h>
17#endif
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053018#include <asm/arch/fdt.h>
York Sun729f2d12017-03-06 09:02:34 -080019#include <asm/arch/mmu.h>
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053020#include <asm/arch/soc.h>
21#include <ahci.h>
22#include <hwconfig.h>
23#include <mmc.h>
Simon Glass9d1f6192019-08-02 09:44:25 -060024#include <env_internal.h>
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053025#include <scsi.h>
26#include <fm_eth.h>
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053027#include <fsl_esdhc.h>
28#include <fsl_mmdc.h>
29#include <spl.h>
30#include <netdev.h>
Rajesh Bhagatbf39fe62018-11-05 18:02:59 +000031#include <fsl_sec.h>
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053032#include "../common/qixis.h"
33#include "ls1012aqds_qixis.h"
Calvin Johnsonf6615022018-03-08 15:30:28 +053034#include "ls1012aqds_pfe.h"
Mian Yousaf Kaukab2529deae2021-04-14 12:33:58 +020035#include <net/pfe_eth/pfe/pfe_hw.h>
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053036
37DECLARE_GLOBAL_DATA_PTR;
38
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053039int checkboard(void)
40{
41 char buf[64];
42 u8 sw;
43
44 sw = QIXIS_READ(arch);
45 printf("Board Arch: V%d, ", sw >> 4);
46 printf("Board version: %c, boot from ", (sw & 0xf) + 'A' - 1);
47
48 sw = QIXIS_READ(brdcfg[QIXIS_LBMAP_BRDCFG_REG]);
49
50 if (sw & QIXIS_LBMAP_ALTBANK)
51 printf("flash: 2\n");
52 else
53 printf("flash: 1\n");
54
55 printf("FPGA: v%d (%s), build %d",
56 (int)QIXIS_READ(scver), qixis_read_tag(buf),
57 (int)qixis_read_minor());
58
59 /* the timestamp string contains "\n" at the end */
60 printf(" on %s", qixis_read_time(buf));
61 return 0;
62}
63
Rajesh Bhagat45d8a542018-11-05 18:03:04 +000064#ifdef CONFIG_TFABOOT
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053065int dram_init(void)
66{
Rajesh Bhagat45d8a542018-11-05 18:03:04 +000067 gd->ram_size = tfa_get_dram_size();
68 if (!gd->ram_size)
69 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
70
71 return 0;
72}
73#else
74int dram_init(void)
75{
York Sunc1e979b2016-09-26 08:09:25 -070076 static const struct fsl_mmdc_info mparam = {
77 0x05180000, /* mdctl */
78 0x00030035, /* mdpdc */
79 0x12554000, /* mdotc */
80 0xbabf7954, /* mdcfg0 */
81 0xdb328f64, /* mdcfg1 */
82 0x01ff00db, /* mdcfg2 */
83 0x00001680, /* mdmisc */
84 0x0f3c8000, /* mdref */
85 0x00002000, /* mdrwd */
86 0x00bf1023, /* mdor */
87 0x0000003f, /* mdasp */
88 0x0000022a, /* mpodtctrl */
89 0xa1390003, /* mpzqhwctrl */
90 };
91
92 mmdc_init(&mparam);
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053093 gd->ram_size = CONFIG_SYS_SDRAM_SIZE;
York Sun729f2d12017-03-06 09:02:34 -080094#if !defined(CONFIG_SPL) || defined(CONFIG_SPL_BUILD)
95 /* This will break-before-make MMU for DDR */
96 update_early_mmu_table();
97#endif
Prabhakar Kushwaha55432502016-06-03 18:41:34 +053098
99 return 0;
100}
Rajesh Bhagat45d8a542018-11-05 18:03:04 +0000101#endif
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530102
103int board_early_init_f(void)
104{
105 fsl_lsch2_early_init_f();
106
107 return 0;
108}
109
110#ifdef CONFIG_MISC_INIT_R
111int misc_init_r(void)
112{
113 u8 mux_sdhc_cd = 0x80;
Biwen Li0a759bb2019-12-31 15:33:41 +0800114 int bus_num = 0;
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530115
Igor Opaniukf7c91762021-02-09 13:52:45 +0200116#if CONFIG_IS_ENABLED(DM_I2C)
Biwen Li0a759bb2019-12-31 15:33:41 +0800117 struct udevice *dev;
118 int ret;
119
120 ret = i2c_get_chip_for_busnum(bus_num, CONFIG_SYS_I2C_FPGA_ADDR,
121 1, &dev);
122 if (ret) {
123 printf("%s: Cannot find udev for a bus %d\n", __func__,
124 bus_num);
125 return ret;
126 }
127 dm_i2c_write(dev, 0x5a, &mux_sdhc_cd, 1);
128#else
129 i2c_set_bus_num(bus_num);
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530130
131 i2c_write(CONFIG_SYS_I2C_FPGA_ADDR, 0x5a, 1, &mux_sdhc_cd, 1);
Biwen Li0a759bb2019-12-31 15:33:41 +0800132#endif
133
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530134 return 0;
135}
136#endif
137
138int board_init(void)
139{
Ashish Kumar11234062017-08-11 11:09:14 +0530140 struct ccsr_cci400 *cci = (struct ccsr_cci400 *)(CONFIG_SYS_IMMR +
141 CONFIG_SYS_CCI400_OFFSET);
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530142
143 /* Set CCI-400 control override register to enable barrier
144 * transaction */
Rajesh Bhagat45d8a542018-11-05 18:03:04 +0000145 if (current_el() == 3)
146 out_le32(&cci->ctrl_ord,
147 CCI400_CTRLORD_EN_BARRIER);
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530148
Hou Zhiqiang4b23ca82016-08-02 19:03:27 +0800149#ifdef CONFIG_SYS_FSL_ERRATUM_A010315
150 erratum_a010315();
151#endif
152
Rajesh Bhagatbf39fe62018-11-05 18:02:59 +0000153#ifdef CONFIG_FSL_CAAM
154 sec_init();
155#endif
156
Prabhakar Kushwaha74d129b2017-01-30 17:05:35 +0530157#ifdef CONFIG_FSL_LS_PPA
158 ppa_init();
159#endif
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530160 return 0;
161}
162
Mian Yousaf Kaukab2529deae2021-04-14 12:33:58 +0200163#ifdef CONFIG_FSL_PFE
164void board_quiesce_devices(void)
165{
166 pfe_command_stop(0, NULL);
167}
168#endif
169
Yangbo Lu4bb1aee2017-01-17 10:43:55 +0800170int esdhc_status_fixup(void *blob, const char *compat)
171{
172 char esdhc0_path[] = "/soc/esdhc@1560000";
173 char esdhc1_path[] = "/soc/esdhc@1580000";
174 u8 card_id;
175
176 do_fixup_by_path(blob, esdhc0_path, "status", "okay",
177 sizeof("okay"), 1);
178
179 /*
180 * The Presence Detect 2 register detects the installation
181 * of cards in various PCI Express or SGMII slots.
182 *
183 * STAT_PRS2[7:5]: Specifies the type of card installed in the
184 * SDHC2 Adapter slot. 0b111 indicates no adapter is installed.
185 */
186 card_id = (QIXIS_READ(present2) & 0xe0) >> 5;
187
188 /* If no adapter is installed in SDHC2, disable SDHC2 */
189 if (card_id == 0x7)
190 do_fixup_by_path(blob, esdhc1_path, "status", "disabled",
191 sizeof("disabled"), 1);
192 else
193 do_fixup_by_path(blob, esdhc1_path, "status", "okay",
194 sizeof("okay"), 1);
195 return 0;
196}
197
Calvin Johnsonf6615022018-03-08 15:30:28 +0530198static int pfe_set_properties(void *set_blob, struct pfe_prop_val prop_val,
199 char *enet_path, char *mdio_path)
200{
201 do_fixup_by_path(set_blob, enet_path, "fsl,gemac-bus-id",
202 &prop_val.busid, PFE_PROP_LEN, 1);
203 do_fixup_by_path(set_blob, enet_path, "fsl,gemac-phy-id",
204 &prop_val.phyid, PFE_PROP_LEN, 1);
205 do_fixup_by_path(set_blob, enet_path, "fsl,mdio-mux-val",
206 &prop_val.mux_val, PFE_PROP_LEN, 1);
207 do_fixup_by_path(set_blob, enet_path, "phy-mode",
208 prop_val.phy_mode, strlen(prop_val.phy_mode) + 1, 1);
209 do_fixup_by_path(set_blob, mdio_path, "fsl,mdio-phy-mask",
210 &prop_val.phy_mask, PFE_PROP_LEN, 1);
211 return 0;
212}
213
214static void fdt_fsl_fixup_of_pfe(void *blob)
215{
216 int i = 0;
217 struct pfe_prop_val prop_val;
218 void *l_blob = blob;
219
220 struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR;
221 unsigned int srds_s1 = in_be32(&gur->rcwsr[4]) &
222 FSL_CHASSIS2_RCWSR4_SRDS1_PRTCL_MASK;
223 srds_s1 >>= FSL_CHASSIS2_RCWSR4_SRDS1_PRTCL_SHIFT;
224
225 for (i = 0; i < NUM_ETH_NODE; i++) {
226 switch (srds_s1) {
227 case SERDES_1_G_PROTOCOL:
228 if (i == 0) {
229 prop_val.busid = cpu_to_fdt32(
230 ETH_1_1G_BUS_ID);
231 prop_val.phyid = cpu_to_fdt32(
232 ETH_1_1G_PHY_ID);
233 prop_val.mux_val = cpu_to_fdt32(
234 ETH_1_1G_MDIO_MUX);
235 prop_val.phy_mask = cpu_to_fdt32(
236 ETH_1G_MDIO_PHY_MASK);
237 prop_val.phy_mode = "sgmii";
238 pfe_set_properties(l_blob, prop_val, ETH_1_PATH,
239 ETH_1_MDIO);
240 } else {
241 prop_val.busid = cpu_to_fdt32(
242 ETH_2_1G_BUS_ID);
243 prop_val.phyid = cpu_to_fdt32(
244 ETH_2_1G_PHY_ID);
245 prop_val.mux_val = cpu_to_fdt32(
246 ETH_2_1G_MDIO_MUX);
247 prop_val.phy_mask = cpu_to_fdt32(
248 ETH_1G_MDIO_PHY_MASK);
249 prop_val.phy_mode = "rgmii";
250 pfe_set_properties(l_blob, prop_val, ETH_2_PATH,
251 ETH_2_MDIO);
252 }
253 break;
254 case SERDES_2_5_G_PROTOCOL:
255 if (i == 0) {
256 prop_val.busid = cpu_to_fdt32(
257 ETH_1_2_5G_BUS_ID);
258 prop_val.phyid = cpu_to_fdt32(
259 ETH_1_2_5G_PHY_ID);
260 prop_val.mux_val = cpu_to_fdt32(
261 ETH_1_2_5G_MDIO_MUX);
262 prop_val.phy_mask = cpu_to_fdt32(
263 ETH_2_5G_MDIO_PHY_MASK);
Vladimir Oltean6caef972021-09-18 15:32:35 +0300264 prop_val.phy_mode = "2500base-x";
Calvin Johnsonf6615022018-03-08 15:30:28 +0530265 pfe_set_properties(l_blob, prop_val, ETH_1_PATH,
266 ETH_1_MDIO);
267 } else {
268 prop_val.busid = cpu_to_fdt32(
269 ETH_2_2_5G_BUS_ID);
270 prop_val.phyid = cpu_to_fdt32(
271 ETH_2_2_5G_PHY_ID);
272 prop_val.mux_val = cpu_to_fdt32(
273 ETH_2_2_5G_MDIO_MUX);
274 prop_val.phy_mask = cpu_to_fdt32(
275 ETH_2_5G_MDIO_PHY_MASK);
Vladimir Oltean6caef972021-09-18 15:32:35 +0300276 prop_val.phy_mode = "2500base-x";
Calvin Johnsonf6615022018-03-08 15:30:28 +0530277 pfe_set_properties(l_blob, prop_val, ETH_2_PATH,
278 ETH_2_MDIO);
279 }
280 break;
281 default:
282 printf("serdes:[%d]\n", srds_s1);
283 }
284 }
285}
286
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530287#ifdef CONFIG_OF_BOARD_SETUP
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900288int ft_board_setup(void *blob, struct bd_info *bd)
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530289{
290 arch_fixup_fdt(blob);
291
292 ft_cpu_setup(blob, bd);
Calvin Johnsonf6615022018-03-08 15:30:28 +0530293 fdt_fsl_fixup_of_pfe(blob);
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530294
295 return 0;
296}
297#endif