blob: d8cb78ecc675ac1bbec759e7c04a1ad2376c8dea [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Wang Huan8ce6bec2014-09-05 13:52:34 +08002/*
3 * Copyright 2014 Freescale Semiconductor, Inc.
Wang Huan8ce6bec2014-09-05 13:52:34 +08004 */
5
6#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -07007#include <clock_legacy.h>
Simon Glass274e0b02020-05-10 11:39:56 -06008#include <net.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +09009#include <linux/libfdt.h>
Wang Huan8ce6bec2014-09-05 13:52:34 +080010#include <fdt_support.h>
11#include <asm/io.h>
12#include <asm/processor.h>
13#include <asm/arch/clock.h>
14#include <linux/ctype.h>
15#ifdef CONFIG_FSL_ESDHC
16#include <fsl_esdhc.h>
17#endif
18#include <tsec.h>
Ruchika Gupta272da152014-12-15 11:30:36 +053019#include <asm/arch/immap_ls102xa.h>
20#include <fsl_sec.h>
Bin Meng19c04602019-07-19 00:29:59 +030021#include <dm.h>
Wang Huan8ce6bec2014-09-05 13:52:34 +080022
23DECLARE_GLOBAL_DATA_PTR;
24
25void ft_fixup_enet_phy_connect_type(void *fdt)
26{
Bin Meng19c04602019-07-19 00:29:59 +030027#ifdef CONFIG_DM_ETH
28 struct udevice *dev;
29#else
Wang Huan8ce6bec2014-09-05 13:52:34 +080030 struct eth_device *dev;
Bin Meng19c04602019-07-19 00:29:59 +030031#endif
Wang Huan8ce6bec2014-09-05 13:52:34 +080032 struct tsec_private *priv;
33 const char *enet_path, *phy_path;
34 char enet[16];
35 char phy[16];
36 int phy_node;
37 int i = 0;
Wang Huan8ce6bec2014-09-05 13:52:34 +080038 uint32_t ph;
Bin Meng19c04602019-07-19 00:29:59 +030039#ifdef CONFIG_DM_ETH
40 char *name[3] = { "ethernet@2d10000", "ethernet@2d50000",
41 "ethernet@2d90000" };
42#else
Bin Mengf409b362016-01-11 22:41:26 -080043 char *name[3] = { "eTSEC1", "eTSEC2", "eTSEC3" };
Bin Meng19c04602019-07-19 00:29:59 +030044#endif
Wang Huan8ce6bec2014-09-05 13:52:34 +080045
Bin Mengf409b362016-01-11 22:41:26 -080046 for (; i < ARRAY_SIZE(name); i++) {
47 dev = eth_get_dev_by_name(name[i]);
48 if (dev) {
49 sprintf(enet, "ethernet%d", i);
50 sprintf(phy, "enet%d_rgmii_phy", i);
Alison Wanga304d452015-05-11 15:39:47 +080051 } else {
Wang Huan8ce6bec2014-09-05 13:52:34 +080052 continue;
Alison Wanga304d452015-05-11 15:39:47 +080053 }
Wang Huan8ce6bec2014-09-05 13:52:34 +080054
55 priv = dev->priv;
56 if (priv->flags & TSEC_SGMII)
57 continue;
58
Wang Huan8ce6bec2014-09-05 13:52:34 +080059 enet_path = fdt_get_alias(fdt, enet);
60 if (!enet_path)
61 continue;
62
Wang Huan8ce6bec2014-09-05 13:52:34 +080063 phy_path = fdt_get_alias(fdt, phy);
64 if (!phy_path)
65 continue;
66
67 phy_node = fdt_path_offset(fdt, phy_path);
68 if (phy_node < 0)
69 continue;
70
71 ph = fdt_create_phandle(fdt, phy_node);
72 if (ph)
73 do_fixup_by_path_u32(fdt, enet_path,
74 "phy-handle", ph, 1);
75
76 do_fixup_by_path(fdt, enet_path, "phy-connection-type",
77 phy_string_for_interface(
78 PHY_INTERFACE_MODE_RGMII_ID),
Brendan Shanks958eda22018-07-16 13:28:24 -070079 strlen(phy_string_for_interface(
80 PHY_INTERFACE_MODE_RGMII_ID)) + 1,
Wang Huan8ce6bec2014-09-05 13:52:34 +080081 1);
82 }
83}
84
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090085void ft_cpu_setup(void *blob, struct bd_info *bd)
Wang Huan8ce6bec2014-09-05 13:52:34 +080086{
87 int off;
88 int val;
89 const char *sysclk_path;
Ruchika Gupta272da152014-12-15 11:30:36 +053090 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
91 unsigned int svr;
92 svr = in_be32(&gur->svr);
Wang Huan8ce6bec2014-09-05 13:52:34 +080093
94 unsigned long busclk = get_bus_freq(0);
95
Ruchika Gupta272da152014-12-15 11:30:36 +053096 /* delete crypto node if not on an E-processor */
97 if (!IS_E_PROCESSOR(svr))
98 fdt_fixup_crypto_node(blob, 0);
99#if CONFIG_SYS_FSL_SEC_COMPAT >= 4
100 else {
101 ccsr_sec_t __iomem *sec;
102
103 sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR;
104 fdt_fixup_crypto_node(blob, sec_in32(&sec->secvid_ms));
105 }
106#endif
107
Wang Huan8ce6bec2014-09-05 13:52:34 +0800108 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
109 while (off != -FDT_ERR_NOTFOUND) {
110 val = gd->cpu_clk;
111 fdt_setprop(blob, off, "clock-frequency", &val, 4);
112 off = fdt_node_offset_by_prop_value(blob, off,
113 "device_type", "cpu", 4);
114 }
115
116 do_fixup_by_prop_u32(blob, "device_type", "soc",
Tang Yuantian01e43432014-10-21 13:51:58 +0800117 4, "bus-frequency", busclk, 1);
Wang Huan8ce6bec2014-09-05 13:52:34 +0800118
119 ft_fixup_enet_phy_connect_type(blob);
120
121#ifdef CONFIG_SYS_NS16550
122 do_fixup_by_compat_u32(blob, "fsl,16550-FIFO64",
123 "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
124#endif
125
126 sysclk_path = fdt_get_alias(blob, "sysclk");
127 if (sysclk_path)
128 do_fixup_by_path_u32(blob, sysclk_path, "clock-frequency",
129 CONFIG_SYS_CLK_FREQ, 1);
130 do_fixup_by_compat_u32(blob, "fsl,qoriq-sysclk-2.0",
131 "clock-frequency", CONFIG_SYS_CLK_FREQ, 1);
132
tang yuantian57296e72014-12-17 12:58:05 +0800133#if defined(CONFIG_DEEP_SLEEP) && defined(CONFIG_SD_BOOT)
134#define UBOOT_HEAD_LEN 0x1000
135 /*
136 * Reserved memory in SD boot deep sleep case.
137 * Second stage uboot binary and malloc space should be reserved.
138 * If the memory they occupied has not been reserved, then this
139 * space would be used by kernel and overwritten in uboot when
140 * deep sleep resume, which cause deep sleep failed.
141 * Since second uboot binary has a head, that space need to be
142 * reserved either(assuming its size is less than 0x1000).
143 */
144 off = fdt_add_mem_rsv(blob, CONFIG_SYS_TEXT_BASE - UBOOT_HEAD_LEN,
145 CONFIG_SYS_MONITOR_LEN + CONFIG_SYS_SPL_MALLOC_SIZE +
146 UBOOT_HEAD_LEN);
147 if (off < 0)
148 printf("Failed to reserve memory for SD boot deep sleep: %s\n",
149 fdt_strerror(off));
150#endif
151
Wang Huan8ce6bec2014-09-05 13:52:34 +0800152#if defined(CONFIG_FSL_ESDHC)
153 fdt_fixup_esdhc(blob, bd);
154#endif
155
156 /*
157 * platform bus clock = system bus clock/2
158 * Here busclk = system bus clock
159 * We are using the platform bus clock as 1588 Timer reference
160 * clock source select
161 */
162 do_fixup_by_compat_u32(blob, "fsl, gianfar-ptp-timer",
163 "timer-frequency", busclk / 2, 1);
164
165 /*
166 * clock-freq should change to clock-frequency and
167 * flexcan-v1.0 should change to p1010-flexcan respectively
168 * in the future.
169 */
170 do_fixup_by_compat_u32(blob, "fsl, flexcan-v1.0",
171 "clock_freq", busclk / 2, 1);
172
173 do_fixup_by_compat_u32(blob, "fsl, flexcan-v1.0",
174 "clock-frequency", busclk / 2, 1);
175
176 do_fixup_by_compat_u32(blob, "fsl, ls1021a-flexcan",
177 "clock-frequency", busclk / 2, 1);
Alison Wang92fc30d2014-12-26 13:14:01 +0800178
Alison Wang79fe0782015-10-28 10:40:23 +0800179#if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_SD_BOOT_QSPI)
Alison Wang92fc30d2014-12-26 13:14:01 +0800180 off = fdt_node_offset_by_compat_reg(blob, FSL_IFC_COMPAT,
181 CONFIG_SYS_IFC_ADDR);
182 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
183#else
184 off = fdt_node_offset_by_compat_reg(blob, FSL_QSPI_COMPAT,
185 QSPI0_BASE_ADDR);
186 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
187 off = fdt_node_offset_by_compat_reg(blob, FSL_DSPI_COMPAT,
188 DSPI1_BASE_ADDR);
189 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
190#endif
Wang Huan8ce6bec2014-09-05 13:52:34 +0800191}