blob: eb3e287b7de9f5da3ea145d83814f3b5a36010db [file] [log] [blame]
Wang Huan8ce6bec2014-09-05 13:52:34 +08001/*
2 * Copyright 2014 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +09008#include <linux/libfdt.h>
Wang Huan8ce6bec2014-09-05 13:52:34 +08009#include <fdt_support.h>
10#include <asm/io.h>
11#include <asm/processor.h>
12#include <asm/arch/clock.h>
13#include <linux/ctype.h>
14#ifdef CONFIG_FSL_ESDHC
15#include <fsl_esdhc.h>
16#endif
17#include <tsec.h>
Ruchika Gupta272da152014-12-15 11:30:36 +053018#include <asm/arch/immap_ls102xa.h>
19#include <fsl_sec.h>
Wang Huan8ce6bec2014-09-05 13:52:34 +080020
21DECLARE_GLOBAL_DATA_PTR;
22
23void ft_fixup_enet_phy_connect_type(void *fdt)
24{
25 struct eth_device *dev;
26 struct tsec_private *priv;
27 const char *enet_path, *phy_path;
28 char enet[16];
29 char phy[16];
30 int phy_node;
31 int i = 0;
Wang Huan8ce6bec2014-09-05 13:52:34 +080032 uint32_t ph;
Bin Mengf409b362016-01-11 22:41:26 -080033 char *name[3] = { "eTSEC1", "eTSEC2", "eTSEC3" };
Wang Huan8ce6bec2014-09-05 13:52:34 +080034
Bin Mengf409b362016-01-11 22:41:26 -080035 for (; i < ARRAY_SIZE(name); i++) {
36 dev = eth_get_dev_by_name(name[i]);
37 if (dev) {
38 sprintf(enet, "ethernet%d", i);
39 sprintf(phy, "enet%d_rgmii_phy", i);
Alison Wanga304d452015-05-11 15:39:47 +080040 } else {
Wang Huan8ce6bec2014-09-05 13:52:34 +080041 continue;
Alison Wanga304d452015-05-11 15:39:47 +080042 }
Wang Huan8ce6bec2014-09-05 13:52:34 +080043
44 priv = dev->priv;
45 if (priv->flags & TSEC_SGMII)
46 continue;
47
Wang Huan8ce6bec2014-09-05 13:52:34 +080048 enet_path = fdt_get_alias(fdt, enet);
49 if (!enet_path)
50 continue;
51
Wang Huan8ce6bec2014-09-05 13:52:34 +080052 phy_path = fdt_get_alias(fdt, phy);
53 if (!phy_path)
54 continue;
55
56 phy_node = fdt_path_offset(fdt, phy_path);
57 if (phy_node < 0)
58 continue;
59
60 ph = fdt_create_phandle(fdt, phy_node);
61 if (ph)
62 do_fixup_by_path_u32(fdt, enet_path,
63 "phy-handle", ph, 1);
64
65 do_fixup_by_path(fdt, enet_path, "phy-connection-type",
66 phy_string_for_interface(
67 PHY_INTERFACE_MODE_RGMII_ID),
68 sizeof(phy_string_for_interface(
69 PHY_INTERFACE_MODE_RGMII_ID)),
70 1);
71 }
72}
73
74void ft_cpu_setup(void *blob, bd_t *bd)
75{
76 int off;
77 int val;
78 const char *sysclk_path;
Ruchika Gupta272da152014-12-15 11:30:36 +053079 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
80 unsigned int svr;
81 svr = in_be32(&gur->svr);
Wang Huan8ce6bec2014-09-05 13:52:34 +080082
83 unsigned long busclk = get_bus_freq(0);
84
Ruchika Gupta272da152014-12-15 11:30:36 +053085 /* delete crypto node if not on an E-processor */
86 if (!IS_E_PROCESSOR(svr))
87 fdt_fixup_crypto_node(blob, 0);
88#if CONFIG_SYS_FSL_SEC_COMPAT >= 4
89 else {
90 ccsr_sec_t __iomem *sec;
91
92 sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR;
93 fdt_fixup_crypto_node(blob, sec_in32(&sec->secvid_ms));
94 }
95#endif
96
Wang Huan8ce6bec2014-09-05 13:52:34 +080097 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
98 while (off != -FDT_ERR_NOTFOUND) {
99 val = gd->cpu_clk;
100 fdt_setprop(blob, off, "clock-frequency", &val, 4);
101 off = fdt_node_offset_by_prop_value(blob, off,
102 "device_type", "cpu", 4);
103 }
104
105 do_fixup_by_prop_u32(blob, "device_type", "soc",
Tang Yuantian01e43432014-10-21 13:51:58 +0800106 4, "bus-frequency", busclk, 1);
Wang Huan8ce6bec2014-09-05 13:52:34 +0800107
108 ft_fixup_enet_phy_connect_type(blob);
109
110#ifdef CONFIG_SYS_NS16550
111 do_fixup_by_compat_u32(blob, "fsl,16550-FIFO64",
112 "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
113#endif
114
115 sysclk_path = fdt_get_alias(blob, "sysclk");
116 if (sysclk_path)
117 do_fixup_by_path_u32(blob, sysclk_path, "clock-frequency",
118 CONFIG_SYS_CLK_FREQ, 1);
119 do_fixup_by_compat_u32(blob, "fsl,qoriq-sysclk-2.0",
120 "clock-frequency", CONFIG_SYS_CLK_FREQ, 1);
121
tang yuantian57296e72014-12-17 12:58:05 +0800122#if defined(CONFIG_DEEP_SLEEP) && defined(CONFIG_SD_BOOT)
123#define UBOOT_HEAD_LEN 0x1000
124 /*
125 * Reserved memory in SD boot deep sleep case.
126 * Second stage uboot binary and malloc space should be reserved.
127 * If the memory they occupied has not been reserved, then this
128 * space would be used by kernel and overwritten in uboot when
129 * deep sleep resume, which cause deep sleep failed.
130 * Since second uboot binary has a head, that space need to be
131 * reserved either(assuming its size is less than 0x1000).
132 */
133 off = fdt_add_mem_rsv(blob, CONFIG_SYS_TEXT_BASE - UBOOT_HEAD_LEN,
134 CONFIG_SYS_MONITOR_LEN + CONFIG_SYS_SPL_MALLOC_SIZE +
135 UBOOT_HEAD_LEN);
136 if (off < 0)
137 printf("Failed to reserve memory for SD boot deep sleep: %s\n",
138 fdt_strerror(off));
139#endif
140
Wang Huan8ce6bec2014-09-05 13:52:34 +0800141#if defined(CONFIG_FSL_ESDHC)
142 fdt_fixup_esdhc(blob, bd);
143#endif
144
145 /*
146 * platform bus clock = system bus clock/2
147 * Here busclk = system bus clock
148 * We are using the platform bus clock as 1588 Timer reference
149 * clock source select
150 */
151 do_fixup_by_compat_u32(blob, "fsl, gianfar-ptp-timer",
152 "timer-frequency", busclk / 2, 1);
153
154 /*
155 * clock-freq should change to clock-frequency and
156 * flexcan-v1.0 should change to p1010-flexcan respectively
157 * in the future.
158 */
159 do_fixup_by_compat_u32(blob, "fsl, flexcan-v1.0",
160 "clock_freq", busclk / 2, 1);
161
162 do_fixup_by_compat_u32(blob, "fsl, flexcan-v1.0",
163 "clock-frequency", busclk / 2, 1);
164
165 do_fixup_by_compat_u32(blob, "fsl, ls1021a-flexcan",
166 "clock-frequency", busclk / 2, 1);
Alison Wang92fc30d2014-12-26 13:14:01 +0800167
Alison Wang79fe0782015-10-28 10:40:23 +0800168#if defined(CONFIG_QSPI_BOOT) || defined(CONFIG_SD_BOOT_QSPI)
Alison Wang92fc30d2014-12-26 13:14:01 +0800169 off = fdt_node_offset_by_compat_reg(blob, FSL_IFC_COMPAT,
170 CONFIG_SYS_IFC_ADDR);
171 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
172#else
173 off = fdt_node_offset_by_compat_reg(blob, FSL_QSPI_COMPAT,
174 QSPI0_BASE_ADDR);
175 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
176 off = fdt_node_offset_by_compat_reg(blob, FSL_DSPI_COMPAT,
177 DSPI1_BASE_ADDR);
178 fdt_set_node_status(blob, off, FDT_STATUS_DISABLED, 0);
179#endif
Wang Huan8ce6bec2014-09-05 13:52:34 +0800180}