blob: 80af3188220492e7bc9495424ed2c9f3862827d4 [file] [log] [blame]
York Sun56cc3db2014-09-08 12:20:00 -07001/*
Mingkai Hu0e58b512015-10-26 19:47:50 +08002 * Copyright 2014-2015 Freescale Semiconductor, Inc.
York Sun56cc3db2014-09-08 12:20:00 -07003 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
Alexander Graf17b65932016-11-17 01:03:00 +01008#include <efi_loader.h>
York Sun56cc3db2014-09-08 12:20:00 -07009#include <libfdt.h>
10#include <fdt_support.h>
Mingkai Hu0e58b512015-10-26 19:47:50 +080011#include <phy.h>
12#ifdef CONFIG_FSL_LSCH3
13#include <asm/arch/fdt.h>
14#endif
Yangbo Lud0e295d2015-03-20 19:28:31 -070015#ifdef CONFIG_FSL_ESDHC
16#include <fsl_esdhc.h>
17#endif
Qianyu Gong4026f662016-02-18 13:02:02 +080018#ifdef CONFIG_SYS_DPAA_FMAN
19#include <fsl_fman.h>
20#endif
Mingkai Hu0e58b512015-10-26 19:47:50 +080021#ifdef CONFIG_MP
22#include <asm/arch/mp.h>
23#endif
Alex Porosanu16286bb2016-04-11 10:42:50 +030024#include <fsl_sec.h>
25#include <asm/arch-fsl-layerscape/soc.h>
Hou Zhiqiang21c4d552016-06-28 20:18:15 +080026#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
27#include <asm/armv8/sec_firmware.h>
28#endif
Ahmed Mansouraa270b42017-12-15 16:01:00 -050029#include <asm/arch/speed.h>
30#include <fsl_qbman.h>
York Sun56cc3db2014-09-08 12:20:00 -070031
Shaohui Xie04643262015-10-26 19:47:54 +080032int fdt_fixup_phy_connection(void *blob, int offset, phy_interface_t phyc)
33{
34 return fdt_setprop_string(blob, offset, "phy-connection-type",
35 phy_string_for_interface(phyc));
36}
37
York Sun56cc3db2014-09-08 12:20:00 -070038#ifdef CONFIG_MP
39void ft_fixup_cpu(void *blob)
40{
41 int off;
42 __maybe_unused u64 spin_tbl_addr = (u64)get_spin_tbl_addr();
43 fdt32_t *reg;
44 int addr_cells;
Arnab Basu0cb19422015-01-06 13:18:41 -080045 u64 val, core_id;
York Sun56cc3db2014-09-08 12:20:00 -070046 size_t *boot_code_size = &(__secondary_boot_code_size);
Wenbin songea196772017-12-04 12:18:29 +080047 u32 mask = cpu_pos_mask();
48 int off_prev = -1;
49
50 off = fdt_path_offset(blob, "/cpus");
51 if (off < 0) {
52 puts("couldn't find /cpus node\n");
53 return;
54 }
55
56 fdt_support_default_count_cells(blob, off, &addr_cells, NULL);
57
58 off = fdt_node_offset_by_prop_value(blob, off_prev, "device_type",
59 "cpu", 4);
60 while (off != -FDT_ERR_NOTFOUND) {
61 reg = (fdt32_t *)fdt_getprop(blob, off, "reg", 0);
62 if (reg) {
63 core_id = fdt_read_number(reg, addr_cells);
64 if (!test_bit(id_to_core(core_id), &mask)) {
65 fdt_del_node(blob, off);
66 off = off_prev;
67 }
68 }
69 off_prev = off;
70 off = fdt_node_offset_by_prop_value(blob, off_prev,
71 "device_type", "cpu", 4);
72 }
73
macro.wave.z@gmail.comec2d7ed2016-12-08 11:58:21 +080074#if defined(CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT) && \
Hou Zhiqiang6be115d2017-01-16 17:31:48 +080075 defined(CONFIG_SEC_FIRMWARE_ARMV8_PSCI)
Hou Zhiqiang21c4d552016-06-28 20:18:15 +080076 int node;
77 u32 psci_ver;
78
79 /* Check the psci version to determine if the psci is supported */
80 psci_ver = sec_firmware_support_psci_version();
81 if (psci_ver == 0xffffffff) {
82 /* remove psci DT node */
83 node = fdt_path_offset(blob, "/psci");
84 if (node >= 0)
85 goto remove_psci_node;
86
87 node = fdt_node_offset_by_compatible(blob, -1, "arm,psci");
88 if (node >= 0)
89 goto remove_psci_node;
90
91 node = fdt_node_offset_by_compatible(blob, -1, "arm,psci-0.2");
92 if (node >= 0)
93 goto remove_psci_node;
94
95 node = fdt_node_offset_by_compatible(blob, -1, "arm,psci-1.0");
96 if (node >= 0)
97 goto remove_psci_node;
York Sun56cc3db2014-09-08 12:20:00 -070098
Hou Zhiqiang21c4d552016-06-28 20:18:15 +080099remove_psci_node:
100 if (node >= 0)
101 fdt_del_node(blob, node);
102 } else {
103 return;
104 }
105#endif
York Sun56cc3db2014-09-08 12:20:00 -0700106 off = fdt_path_offset(blob, "/cpus");
107 if (off < 0) {
108 puts("couldn't find /cpus node\n");
109 return;
110 }
Simon Glassbb7c01e2017-05-18 20:09:26 -0600111 fdt_support_default_count_cells(blob, off, &addr_cells, NULL);
York Sun56cc3db2014-09-08 12:20:00 -0700112
113 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
114 while (off != -FDT_ERR_NOTFOUND) {
115 reg = (fdt32_t *)fdt_getprop(blob, off, "reg", 0);
116 if (reg) {
Simon Glassbb7c01e2017-05-18 20:09:26 -0600117 core_id = fdt_read_number(reg, addr_cells);
Arnab Basu0cb19422015-01-06 13:18:41 -0800118 if (core_id == 0 || (is_core_online(core_id))) {
119 val = spin_tbl_addr;
120 val += id_to_core(core_id) *
121 SPIN_TABLE_ELEM_SIZE;
122 val = cpu_to_fdt64(val);
123 fdt_setprop_string(blob, off, "enable-method",
124 "spin-table");
125 fdt_setprop(blob, off, "cpu-release-addr",
126 &val, sizeof(val));
127 } else {
128 debug("skipping offline core\n");
129 }
York Sun56cc3db2014-09-08 12:20:00 -0700130 } else {
131 puts("Warning: found cpu node without reg property\n");
132 }
133 off = fdt_node_offset_by_prop_value(blob, off, "device_type",
134 "cpu", 4);
135 }
136
137 fdt_add_mem_rsv(blob, (uintptr_t)&secondary_boot_code,
138 *boot_code_size);
Alexander Graf17b65932016-11-17 01:03:00 +0100139#if defined(CONFIG_EFI_LOADER) && !defined(CONFIG_SPL_BUILD)
140 efi_add_memory_map((uintptr_t)&secondary_boot_code,
141 ALIGN(*boot_code_size, EFI_PAGE_SIZE) >> EFI_PAGE_SHIFT,
142 EFI_RESERVED_MEMORY_TYPE, false);
143#endif
York Sun56cc3db2014-09-08 12:20:00 -0700144}
145#endif
146
Sriram Dashf92c2cb2016-10-03 16:24:46 +0530147void fsl_fdt_disable_usb(void *blob)
148{
149 int off;
150 /*
151 * SYSCLK is used as a reference clock for USB. When the USB
152 * controller is used, SYSCLK must meet the additional requirement
153 * of 100 MHz.
154 */
155 if (CONFIG_SYS_CLK_FREQ != 100000000) {
156 off = fdt_node_offset_by_compatible(blob, -1, "snps,dwc3");
157 while (off != -FDT_ERR_NOTFOUND) {
158 fdt_status_disabled(blob, off);
159 off = fdt_node_offset_by_compatible(blob, off,
160 "snps,dwc3");
161 }
162 }
163}
164
Wenbin Songa8f57a92017-01-17 18:31:15 +0800165#ifdef CONFIG_HAS_FEATURE_GIC64K_ALIGN
166static void fdt_fixup_gic(void *blob)
167{
168 int offset, err;
169 u64 reg[8];
170 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
171 unsigned int val;
172 struct ccsr_scfg __iomem *scfg = (void *)CONFIG_SYS_FSL_SCFG_ADDR;
173 int align_64k = 0;
174
175 val = gur_in32(&gur->svr);
176
Wenbin song5d8a61c2017-12-04 12:18:28 +0800177 if (!IS_SVR_DEV(val, SVR_DEV(SVR_LS1043A))) {
Wenbin Songa8f57a92017-01-17 18:31:15 +0800178 align_64k = 1;
179 } else if (SVR_REV(val) != REV1_0) {
180 val = scfg_in32(&scfg->gic_align) & (0x01 << GIC_ADDR_BIT);
181 if (!val)
182 align_64k = 1;
183 }
184
185 offset = fdt_subnode_offset(blob, 0, "interrupt-controller@1400000");
186 if (offset < 0) {
187 printf("WARNING: fdt_subnode_offset can't find node %s: %s\n",
188 "interrupt-controller@1400000", fdt_strerror(offset));
189 return;
190 }
191
192 /* Fixup gic node align with 64K */
193 if (align_64k) {
194 reg[0] = cpu_to_fdt64(GICD_BASE_64K);
195 reg[1] = cpu_to_fdt64(GICD_SIZE_64K);
196 reg[2] = cpu_to_fdt64(GICC_BASE_64K);
197 reg[3] = cpu_to_fdt64(GICC_SIZE_64K);
198 reg[4] = cpu_to_fdt64(GICH_BASE_64K);
199 reg[5] = cpu_to_fdt64(GICH_SIZE_64K);
200 reg[6] = cpu_to_fdt64(GICV_BASE_64K);
201 reg[7] = cpu_to_fdt64(GICV_SIZE_64K);
202 } else {
203 /* Fixup gic node align with default */
204 reg[0] = cpu_to_fdt64(GICD_BASE);
205 reg[1] = cpu_to_fdt64(GICD_SIZE);
206 reg[2] = cpu_to_fdt64(GICC_BASE);
207 reg[3] = cpu_to_fdt64(GICC_SIZE);
208 reg[4] = cpu_to_fdt64(GICH_BASE);
209 reg[5] = cpu_to_fdt64(GICH_SIZE);
210 reg[6] = cpu_to_fdt64(GICV_BASE);
211 reg[7] = cpu_to_fdt64(GICV_SIZE);
212 }
213
214 err = fdt_setprop(blob, offset, "reg", reg, sizeof(reg));
215 if (err < 0) {
216 printf("WARNING: fdt_setprop can't set %s from node %s: %s\n",
217 "reg", "interrupt-controller@1400000",
218 fdt_strerror(err));
219 return;
220 }
221
222 return;
223}
224#endif
225
Wenbin Songc6bc7c02017-01-17 18:31:16 +0800226#ifdef CONFIG_HAS_FEATURE_ENHANCED_MSI
227static int _fdt_fixup_msi_node(void *blob, const char *name,
228 int irq_0, int irq_1, int rev)
229{
230 int err, offset, len;
231 u32 tmp[4][3];
232 void *p;
233
234 offset = fdt_path_offset(blob, name);
235 if (offset < 0) {
236 printf("WARNING: fdt_path_offset can't find path %s: %s\n",
237 name, fdt_strerror(offset));
238 return 0;
239 }
240
241 /*fixup the property of interrupts*/
242
243 tmp[0][0] = cpu_to_fdt32(0x0);
244 tmp[0][1] = cpu_to_fdt32(irq_0);
245 tmp[0][2] = cpu_to_fdt32(0x4);
246
247 if (rev > REV1_0) {
248 tmp[1][0] = cpu_to_fdt32(0x0);
249 tmp[1][1] = cpu_to_fdt32(irq_1);
250 tmp[1][2] = cpu_to_fdt32(0x4);
251 tmp[2][0] = cpu_to_fdt32(0x0);
252 tmp[2][1] = cpu_to_fdt32(irq_1 + 1);
253 tmp[2][2] = cpu_to_fdt32(0x4);
254 tmp[3][0] = cpu_to_fdt32(0x0);
255 tmp[3][1] = cpu_to_fdt32(irq_1 + 2);
256 tmp[3][2] = cpu_to_fdt32(0x4);
257 len = sizeof(tmp);
258 } else {
259 len = sizeof(tmp[0]);
260 }
261
262 err = fdt_setprop(blob, offset, "interrupts", tmp, len);
263 if (err < 0) {
264 printf("WARNING: fdt_setprop can't set %s from node %s: %s\n",
265 "interrupts", name, fdt_strerror(err));
266 return 0;
267 }
268
269 /*fixup the property of reg*/
270 p = (char *)fdt_getprop(blob, offset, "reg", &len);
271 if (!p) {
272 printf("WARNING: fdt_getprop can't get %s from node %s\n",
273 "reg", name);
274 return 0;
275 }
276
277 memcpy((char *)tmp, p, len);
278
279 if (rev > REV1_0)
280 *((u32 *)tmp + 3) = cpu_to_fdt32(0x1000);
281 else
282 *((u32 *)tmp + 3) = cpu_to_fdt32(0x8);
283
284 err = fdt_setprop(blob, offset, "reg", tmp, len);
285 if (err < 0) {
286 printf("WARNING: fdt_setprop can't set %s from node %s: %s\n",
287 "reg", name, fdt_strerror(err));
288 return 0;
289 }
290
291 /*fixup the property of compatible*/
292 if (rev > REV1_0)
293 err = fdt_setprop_string(blob, offset, "compatible",
294 "fsl,ls1043a-v1.1-msi");
295 else
296 err = fdt_setprop_string(blob, offset, "compatible",
297 "fsl,ls1043a-msi");
298 if (err < 0) {
299 printf("WARNING: fdt_setprop can't set %s from node %s: %s\n",
300 "compatible", name, fdt_strerror(err));
301 return 0;
302 }
303
304 return 1;
305}
306
307static int _fdt_fixup_pci_msi(void *blob, const char *name, int rev)
308{
309 int offset, len, err;
310 void *p;
311 int val;
312 u32 tmp[4][8];
313
314 offset = fdt_path_offset(blob, name);
315 if (offset < 0) {
316 printf("WARNING: fdt_path_offset can't find path %s: %s\n",
317 name, fdt_strerror(offset));
318 return 0;
319 }
320
321 p = (char *)fdt_getprop(blob, offset, "interrupt-map", &len);
322 if (!p || len != sizeof(tmp)) {
323 printf("WARNING: fdt_getprop can't get %s from node %s\n",
324 "interrupt-map", name);
325 return 0;
326 }
327
328 memcpy((char *)tmp, p, len);
329
330 val = fdt32_to_cpu(tmp[0][6]);
331 if (rev > REV1_0) {
332 tmp[1][6] = cpu_to_fdt32(val + 1);
333 tmp[2][6] = cpu_to_fdt32(val + 2);
334 tmp[3][6] = cpu_to_fdt32(val + 3);
335 } else {
336 tmp[1][6] = cpu_to_fdt32(val);
337 tmp[2][6] = cpu_to_fdt32(val);
338 tmp[3][6] = cpu_to_fdt32(val);
339 }
340
341 err = fdt_setprop(blob, offset, "interrupt-map", tmp, sizeof(tmp));
342 if (err < 0) {
343 printf("WARNING: fdt_setprop can't set %s from node %s: %s.\n",
344 "interrupt-map", name, fdt_strerror(err));
345 return 0;
346 }
347 return 1;
348}
349
350/* Fixup msi node for ls1043a rev1.1*/
351
352static void fdt_fixup_msi(void *blob)
353{
354 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
355 unsigned int rev;
356
357 rev = gur_in32(&gur->svr);
358
Wenbin song5d8a61c2017-12-04 12:18:28 +0800359 if (!IS_SVR_DEV(rev, SVR_DEV(SVR_LS1043A)))
Wenbin Songc6bc7c02017-01-17 18:31:16 +0800360 return;
361
362 rev = SVR_REV(rev);
363
364 _fdt_fixup_msi_node(blob, "/soc/msi-controller1@1571000",
365 116, 111, rev);
366 _fdt_fixup_msi_node(blob, "/soc/msi-controller2@1572000",
367 126, 121, rev);
368 _fdt_fixup_msi_node(blob, "/soc/msi-controller3@1573000",
369 160, 155, rev);
370
371 _fdt_fixup_pci_msi(blob, "/soc/pcie@3400000", rev);
372 _fdt_fixup_pci_msi(blob, "/soc/pcie@3500000", rev);
373 _fdt_fixup_pci_msi(blob, "/soc/pcie@3600000", rev);
374}
375#endif
376
Ruchika Guptadb204d72017-08-16 15:58:10 +0530377#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
378/* Remove JR node used by SEC firmware */
379void fdt_fixup_remove_jr(void *blob)
380{
381 int jr_node, addr_cells, len;
382 int crypto_node = fdt_path_offset(blob, "crypto");
383 u64 jr_offset, used_jr;
384 fdt32_t *reg;
385
386 used_jr = sec_firmware_used_jobring_offset();
387 fdt_support_default_count_cells(blob, crypto_node, &addr_cells, NULL);
388
389 jr_node = fdt_node_offset_by_compatible(blob, crypto_node,
390 "fsl,sec-v4.0-job-ring");
391
392 while (jr_node != -FDT_ERR_NOTFOUND) {
393 reg = (fdt32_t *)fdt_getprop(blob, jr_node, "reg", &len);
394 jr_offset = fdt_read_number(reg, addr_cells);
395 if (jr_offset == used_jr) {
396 fdt_del_node(blob, jr_node);
397 break;
398 }
399 jr_node = fdt_node_offset_by_compatible(blob, jr_node,
400 "fsl,sec-v4.0-job-ring");
401 }
402}
403#endif
404
York Sun56cc3db2014-09-08 12:20:00 -0700405void ft_cpu_setup(void *blob, bd_t *bd)
406{
Alex Porosanu16286bb2016-04-11 10:42:50 +0300407 struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
Ruchika Guptadb204d72017-08-16 15:58:10 +0530408 unsigned int svr = gur_in32(&gur->svr);
Alex Porosanu16286bb2016-04-11 10:42:50 +0300409
410 /* delete crypto node if not on an E-processor */
411 if (!IS_E_PROCESSOR(svr))
412 fdt_fixup_crypto_node(blob, 0);
413#if CONFIG_SYS_FSL_SEC_COMPAT >= 4
414 else {
415 ccsr_sec_t __iomem *sec;
416
Ruchika Guptadb204d72017-08-16 15:58:10 +0530417#ifdef CONFIG_ARMV8_SEC_FIRMWARE_SUPPORT
418 if (fdt_fixup_kaslr(blob))
419 fdt_fixup_remove_jr(blob);
420#endif
421
Alex Porosanu16286bb2016-04-11 10:42:50 +0300422 sec = (void __iomem *)CONFIG_SYS_FSL_SEC_ADDR;
423 fdt_fixup_crypto_node(blob, sec_in32(&sec->secvid_ms));
424 }
425#endif
Alex Porosanu16286bb2016-04-11 10:42:50 +0300426
York Sun56cc3db2014-09-08 12:20:00 -0700427#ifdef CONFIG_MP
428 ft_fixup_cpu(blob);
429#endif
Bhupesh Sharmac7710402015-01-06 13:18:44 -0800430
431#ifdef CONFIG_SYS_NS16550
Scott Wood3e7fd6f2015-03-20 19:28:14 -0700432 do_fixup_by_compat_u32(blob, "fsl,ns16550",
Bhupesh Sharmac7710402015-01-06 13:18:44 -0800433 "clock-frequency", CONFIG_SYS_NS16550_CLK, 1);
434#endif
Yangbo Lud0e295d2015-03-20 19:28:31 -0700435
Yangbo Lu07d1a912017-04-10 15:04:11 +0800436 do_fixup_by_path_u32(blob, "/sysclk", "clock-frequency",
437 CONFIG_SYS_CLK_FREQ, 1);
Prabhakar Kushwaha53d1cdc2015-12-24 17:25:06 +0530438
Prabhakar Kushwaha940a3162015-05-28 14:53:59 +0530439#ifdef CONFIG_PCI
440 ft_pci_setup(blob, bd);
441#endif
442
Mingkai Hu0e58b512015-10-26 19:47:50 +0800443#ifdef CONFIG_FSL_ESDHC
Yangbo Lud0e295d2015-03-20 19:28:31 -0700444 fdt_fixup_esdhc(blob, bd);
445#endif
Stuart Yodereaea5042015-07-02 11:29:04 +0530446
Ahmed Mansouraa270b42017-12-15 16:01:00 -0500447#ifdef CONFIG_SYS_DPAA_QBMAN
448 fdt_fixup_bportals(blob);
449 fdt_fixup_qportals(blob);
450 do_fixup_by_compat_u32(blob, "fsl,qman",
451 "clock-frequency", get_qman_freq(), 1);
452#endif
453
Qianyu Gong4026f662016-02-18 13:02:02 +0800454#ifdef CONFIG_SYS_DPAA_FMAN
455 fdt_fixup_fman_firmware(blob);
456#endif
Ran Wang9b1d15e2017-08-28 10:40:33 +0800457#ifndef CONFIG_ARCH_LS1012A
Sriram Dashf92c2cb2016-10-03 16:24:46 +0530458 fsl_fdt_disable_usb(blob);
Yingxi Yu8a507da2017-03-16 15:18:32 +0800459#endif
Wenbin Songa8f57a92017-01-17 18:31:15 +0800460#ifdef CONFIG_HAS_FEATURE_GIC64K_ALIGN
461 fdt_fixup_gic(blob);
462#endif
Wenbin Songc6bc7c02017-01-17 18:31:16 +0800463#ifdef CONFIG_HAS_FEATURE_ENHANCED_MSI
464 fdt_fixup_msi(blob);
465#endif
York Sun56cc3db2014-09-08 12:20:00 -0700466}