blob: e26436bf5701932cd232edeabb1f17a5cc687845 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala81a21e92007-11-29 00:15:30 -06002/*
Kumar Gala8975d7a2010-12-30 12:09:53 -06003 * Copyright 2007-2011 Freescale Semiconductor, Inc.
Kumar Gala81a21e92007-11-29 00:15:30 -06004 *
5 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Kumar Gala81a21e92007-11-29 00:15:30 -06007 */
8
9#include <common.h>
Simon Glass85d65312019-12-28 10:44:58 -070010#include <clock_legacy.h>
Simon Glassdb229612019-08-01 09:46:42 -060011#include <env.h>
Simon Glass0f2af882020-05-10 11:40:05 -060012#include <log.h>
Simon Glassa9dc0682019-12-28 10:44:59 -070013#include <time.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060014#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090015#include <linux/libfdt.h>
Kumar Gala81a21e92007-11-29 00:15:30 -060016#include <fdt_support.h>
Kumar Galaec68f932008-05-29 11:22:06 -050017#include <asm/processor.h>
Vivek Mahajan780e42b2009-09-22 12:48:27 +053018#include <linux/ctype.h>
Kumar Gala76eef3e2009-03-19 03:40:08 -050019#include <asm/io.h>
Zhao Qiang81136a12015-08-28 10:31:50 +080020#include <asm/fsl_fdt.h>
Kumar Gala38449a42009-09-10 03:02:13 -050021#include <asm/fsl_portals.h>
Ahmed Mansouraa270b42017-12-15 16:01:00 -050022#include <fsl_qbman.h>
Sandeep Singh4fb16a12014-06-05 18:49:57 +053023#include <hwconfig.h>
Dipen Dudhat93877732009-09-02 11:25:08 +053024#ifdef CONFIG_FSL_ESDHC
25#include <fsl_esdhc.h>
26#endif
Qianyu Gong8868a642016-02-18 13:02:00 +080027#ifdef CONFIG_SYS_DPAA_FMAN
28#include <fsl_fman.h>
29#endif
Kumar Gala81a21e92007-11-29 00:15:30 -060030
Trent Piephobc424c92008-12-03 15:16:38 -080031DECLARE_GLOBAL_DATA_PTR;
32
Kumar Gala1f164482008-01-17 08:25:45 -060033extern void ft_qe_setup(void *blob);
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +053034extern void ft_fixup_num_cores(void *blob);
Kumar Gala8975d7a2010-12-30 12:09:53 -060035extern void ft_srio_setup(void *blob);
Kim Phillips868e3462008-06-16 15:55:53 -050036
Kumar Gala36d6b3f2008-01-17 16:48:33 -060037#ifdef CONFIG_MP
38#include "mp.h"
Kumar Gala36d6b3f2008-01-17 16:48:33 -060039
40void ft_fixup_cpu(void *blob, u64 memory_limit)
41{
42 int off;
York Sun2394a0f2012-10-08 07:44:30 +000043 phys_addr_t spin_tbl_addr = get_spin_phys_addr();
York Suna28496f2012-10-08 07:44:25 +000044 u32 bootpg = determine_mp_bootpg(NULL);
Kumar Galae1064b32009-03-31 23:11:05 -050045 u32 id = get_my_id();
Aaron Sierraec8863b2010-09-30 12:22:16 -050046 const char *enable_method;
Sandeep Singh4fb16a12014-06-05 18:49:57 +053047#if defined(T1040_TDM_QUIRK_CCSR_BASE)
48 int ret;
49 int tdm_hwconfig_enabled = 0;
50 char buffer[HWCONFIG_BUFFER_SIZE] = {0};
51#endif
Kumar Gala36d6b3f2008-01-17 16:48:33 -060052
53 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
54 while (off != -FDT_ERR_NOTFOUND) {
55 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
56
57 if (reg) {
York Sun2adf2ce2012-08-17 08:20:26 +000058 u32 phys_cpu_id = thread_to_core(*reg);
59 u64 val = phys_cpu_id * SIZE_BOOT_ENTRY + spin_tbl_addr;
60 val = cpu_to_fdt64(val);
Kumar Gala36d6b3f2008-01-17 16:48:33 -060061 if (*reg == id) {
Matthew McClintock51a11932010-08-19 13:57:48 -050062 fdt_setprop_string(blob, off, "status",
63 "okay");
Kumar Gala36d6b3f2008-01-17 16:48:33 -060064 } else {
Kumar Gala36d6b3f2008-01-17 16:48:33 -060065 fdt_setprop_string(blob, off, "status",
66 "disabled");
Kumar Gala36d6b3f2008-01-17 16:48:33 -060067 }
Aaron Sierraec8863b2010-09-30 12:22:16 -050068
69 if (hold_cores_in_reset(0)) {
70#ifdef CONFIG_FSL_CORENET
71 /* Cores held in reset, use BRR to release */
72 enable_method = "fsl,brr-holdoff";
73#else
74 /* Cores held in reset, use EEBPCR to release */
75 enable_method = "fsl,eebpcr-holdoff";
76#endif
77 } else {
78 /* Cores out of reset and in a spin-loop */
79 enable_method = "spin-table";
80
81 fdt_setprop(blob, off, "cpu-release-addr",
82 &val, sizeof(val));
83 }
84
Matthew McClintock51a11932010-08-19 13:57:48 -050085 fdt_setprop_string(blob, off, "enable-method",
Aaron Sierraec8863b2010-09-30 12:22:16 -050086 enable_method);
Kumar Gala36d6b3f2008-01-17 16:48:33 -060087 } else {
88 printf ("cpu NULL\n");
89 }
90 off = fdt_node_offset_by_prop_value(blob, off,
91 "device_type", "cpu", 4);
92 }
93
Sandeep Singh4fb16a12014-06-05 18:49:57 +053094#if defined(T1040_TDM_QUIRK_CCSR_BASE)
Sandeep Singh4fb16a12014-06-05 18:49:57 +053095 /*
96 * Extract hwconfig from environment.
97 * Search for tdm entry in hwconfig.
98 */
Simon Glass64b723f2017-08-03 12:22:12 -060099 ret = env_get_f("hwconfig", buffer, sizeof(buffer));
Sandeep Singh4fb16a12014-06-05 18:49:57 +0530100 if (ret > 0)
101 tdm_hwconfig_enabled = hwconfig_f("tdm", buffer);
102
103 /* Reserve the memory hole created by TDM LAW, so OSes dont use it */
104 if (tdm_hwconfig_enabled) {
Tom Rinid259d9c2023-01-10 11:19:28 -0500105 off = fdt_add_mem_rsv(blob, T1040_TDM_QUIRK_CCSR_BASE, SZ_16);
Sandeep Singh4fb16a12014-06-05 18:49:57 +0530106 if (off < 0)
107 printf("Failed to reserve memory for tdm: %s\n",
108 fdt_strerror(off));
109 }
110#endif
111
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600112 /* Reserve the boot page so OSes dont use it */
113 if ((u64)bootpg < memory_limit) {
114 off = fdt_add_mem_rsv(blob, bootpg, (u64)4096);
115 if (off < 0)
York Sun2394a0f2012-10-08 07:44:30 +0000116 printf("Failed to reserve memory for bootpg: %s\n",
117 fdt_strerror(off));
118 }
York Sun33d57c32012-12-14 06:21:58 +0000119
120#ifndef CONFIG_MPC8xxx_DISABLE_BPTR
121 /*
122 * Reserve the default boot page so OSes dont use it.
123 * The default boot page is always mapped to bootpg above using
124 * boot page translation.
125 */
126 if (0xfffff000ull < memory_limit) {
127 off = fdt_add_mem_rsv(blob, 0xfffff000ull, (u64)4096);
128 if (off < 0) {
129 printf("Failed to reserve memory for 0xfffff000: %s\n",
130 fdt_strerror(off));
131 }
132 }
133#endif
134
York Sun2394a0f2012-10-08 07:44:30 +0000135 /* Reserve spin table page */
136 if (spin_tbl_addr < memory_limit) {
137 off = fdt_add_mem_rsv(blob,
138 (spin_tbl_addr & ~0xffful), 4096);
139 if (off < 0)
140 printf("Failed to reserve memory for spin table: %s\n",
141 fdt_strerror(off));
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600142 }
Tang Yuantian25ccd5d2014-07-23 17:27:53 +0800143#ifdef CONFIG_DEEP_SLEEP
144#ifdef CONFIG_SPL_MMC_BOOT
Tom Rini6a5dccc2022-11-16 13:10:41 -0500145 off = fdt_add_mem_rsv(blob, CFG_SYS_MMC_U_BOOT_START,
146 CFG_SYS_MMC_U_BOOT_SIZE);
Tang Yuantian25ccd5d2014-07-23 17:27:53 +0800147 if (off < 0)
148 printf("Failed to reserve memory for SD deep sleep: %s\n",
149 fdt_strerror(off));
150#elif defined(CONFIG_SPL_SPI_BOOT)
Tom Rini6a5dccc2022-11-16 13:10:41 -0500151 off = fdt_add_mem_rsv(blob, CFG_SYS_SPI_FLASH_U_BOOT_START,
152 CFG_SYS_SPI_FLASH_U_BOOT_SIZE);
Tang Yuantian25ccd5d2014-07-23 17:27:53 +0800153 if (off < 0)
154 printf("Failed to reserve memory for SPI deep sleep: %s\n",
155 fdt_strerror(off));
156#endif
157#endif
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600158}
159#endif
Kumar Gala1f164482008-01-17 08:25:45 -0600160
Kumar Gala76eef3e2009-03-19 03:40:08 -0500161#ifdef CONFIG_SYS_FSL_CPC
162static inline void ft_fixup_l3cache(void *blob, int off)
163{
164 u32 line_size, num_ways, size, num_sets;
Tom Rini376b88a2022-10-28 20:27:13 -0400165 cpc_corenet_t *cpc = (void *)CFG_SYS_FSL_CPC_ADDR;
Kumar Gala76eef3e2009-03-19 03:40:08 -0500166 u32 cfg0 = in_be32(&cpc->cpccfg0);
167
Tom Rini0a2bac72022-11-16 13:10:29 -0500168 size = CPC_CFG0_SZ_K(cfg0) * 1024 * CFG_SYS_NUM_CPC;
Kumar Gala76eef3e2009-03-19 03:40:08 -0500169 num_ways = CPC_CFG0_NUM_WAYS(cfg0);
170 line_size = CPC_CFG0_LINE_SZ(cfg0);
171 num_sets = size / (line_size * num_ways);
172
173 fdt_setprop(blob, off, "cache-unified", NULL, 0);
174 fdt_setprop_cell(blob, off, "cache-block-size", line_size);
175 fdt_setprop_cell(blob, off, "cache-size", size);
176 fdt_setprop_cell(blob, off, "cache-sets", num_sets);
177 fdt_setprop_cell(blob, off, "cache-level", 3);
178#ifdef CONFIG_SYS_CACHE_STASHING
179 fdt_setprop_cell(blob, off, "cache-stash-id", 1);
180#endif
181}
182#else
Kumar Galae56f2c52009-03-19 09:16:10 -0500183#define ft_fixup_l3cache(x, y)
Kumar Gala76eef3e2009-03-19 03:40:08 -0500184#endif
Kumar Galae56f2c52009-03-19 09:16:10 -0500185
Chris Packhame0546d12016-12-02 21:22:30 +1300186#if defined(CONFIG_L2_CACHE) || \
187 defined(CONFIG_BACKSIDE_L2_CACHE) || \
188 defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2)
189static inline void ft_fixup_l2cache_compatible(void *blob, int off)
190{
191 int len;
192 struct cpu_type *cpu = identify_cpu(SVR_SOC_VER(get_svr()));
193
194 if (cpu) {
195 char buf[40];
196
197 if (isdigit(cpu->name[0])) {
198 /* MPCxxxx, where xxxx == 4-digit number */
199 len = sprintf(buf, "fsl,mpc%s-l2-cache-controller",
200 cpu->name) + 1;
201 } else {
202 /* Pxxxx or Txxxx, where xxxx == 4-digit number */
203 len = sprintf(buf, "fsl,%c%s-l2-cache-controller",
204 tolower(cpu->name[0]), cpu->name + 1) + 1;
205 }
206
207 /*
208 * append "cache" after the NULL character that the previous
209 * sprintf wrote. This is how a device tree stores multiple
210 * strings in a property.
211 */
212 len += sprintf(buf + len, "cache") + 1;
213
214 fdt_setprop(blob, off, "compatible", buf, len);
215 }
216}
217#endif
218
Kumar Galae56f2c52009-03-19 09:16:10 -0500219#if defined(CONFIG_L2_CACHE)
Kumar Galaec68f932008-05-29 11:22:06 -0500220/* return size in kilobytes */
221static inline u32 l2cache_size(void)
222{
Tom Rinid5c3bf22022-10-28 20:27:12 -0400223 volatile ccsr_l2cache_t *l2cache = (void *)CFG_SYS_MPC85xx_L2_ADDR;
Kumar Galaec68f932008-05-29 11:22:06 -0500224 volatile u32 l2siz_field = (l2cache->l2ctl >> 28) & 0x3;
225 u32 ver = SVR_SOC_VER(get_svr());
226
227 switch (l2siz_field) {
228 case 0x0:
229 break;
230 case 0x1:
231 if (ver == SVR_8540 || ver == SVR_8560 ||
York Sun8cb65482012-07-06 17:10:33 -0500232 ver == SVR_8541 || ver == SVR_8555)
Kumar Galaec68f932008-05-29 11:22:06 -0500233 return 128;
234 else
235 return 256;
236 break;
237 case 0x2:
238 if (ver == SVR_8540 || ver == SVR_8560 ||
York Sun8cb65482012-07-06 17:10:33 -0500239 ver == SVR_8541 || ver == SVR_8555)
Kumar Galaec68f932008-05-29 11:22:06 -0500240 return 256;
241 else
242 return 512;
243 break;
244 case 0x3:
245 return 1024;
246 break;
247 }
248
249 return 0;
250}
251
252static inline void ft_fixup_l2cache(void *blob)
253{
Chris Packhame0546d12016-12-02 21:22:30 +1300254 int off;
Kumar Galaec68f932008-05-29 11:22:06 -0500255 u32 *ph;
Kumar Galaec68f932008-05-29 11:22:06 -0500256
257 const u32 line_size = 32;
258 const u32 num_ways = 8;
259 const u32 size = l2cache_size() * 1024;
260 const u32 num_sets = size / (line_size * num_ways);
261
262 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
263 if (off < 0) {
264 debug("no cpu node fount\n");
265 return;
266 }
267
268 ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
269
270 if (ph == NULL) {
271 debug("no next-level-cache property\n");
Bin Meng75a6a372022-10-26 12:40:07 +0800272 return;
Kumar Galaec68f932008-05-29 11:22:06 -0500273 }
274
275 off = fdt_node_offset_by_phandle(blob, *ph);
276 if (off < 0) {
277 printf("%s: %s\n", __func__, fdt_strerror(off));
Bin Meng75a6a372022-10-26 12:40:07 +0800278 return;
Kumar Galaec68f932008-05-29 11:22:06 -0500279 }
280
Chris Packhame0546d12016-12-02 21:22:30 +1300281 ft_fixup_l2cache_compatible(blob, off);
Kumar Galaec68f932008-05-29 11:22:06 -0500282 fdt_setprop(blob, off, "cache-unified", NULL, 0);
283 fdt_setprop_cell(blob, off, "cache-block-size", line_size);
Kumar Galaec68f932008-05-29 11:22:06 -0500284 fdt_setprop_cell(blob, off, "cache-size", size);
285 fdt_setprop_cell(blob, off, "cache-sets", num_sets);
286 fdt_setprop_cell(blob, off, "cache-level", 2);
Kumar Galae56f2c52009-03-19 09:16:10 -0500287
288 /* we dont bother w/L3 since no platform of this type has one */
289}
York Sunc3d87b12012-10-08 07:44:08 +0000290#elif defined(CONFIG_BACKSIDE_L2_CACHE) || \
291 defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2)
Kumar Galae56f2c52009-03-19 09:16:10 -0500292static inline void ft_fixup_l2cache(void *blob)
293{
294 int off, l2_off, l3_off = -1;
295 u32 *ph;
York Sunc3d87b12012-10-08 07:44:08 +0000296#ifdef CONFIG_BACKSIDE_L2_CACHE
Kumar Galae56f2c52009-03-19 09:16:10 -0500297 u32 l2cfg0 = mfspr(SPRN_L2CFG0);
York Sunc3d87b12012-10-08 07:44:08 +0000298#else
299 struct ccsr_cluster_l2 *l2cache =
Tom Rini376b88a2022-10-28 20:27:13 -0400300 (struct ccsr_cluster_l2 __iomem *)(CFG_SYS_FSL_CLUSTER_1_L2);
York Sunc3d87b12012-10-08 07:44:08 +0000301 u32 l2cfg0 = in_be32(&l2cache->l2cfg0);
302#endif
Kumar Galae56f2c52009-03-19 09:16:10 -0500303 u32 size, line_size, num_ways, num_sets;
Kumar Galae08c6d82011-07-21 00:20:21 -0500304 int has_l2 = 1;
305
306 /* P2040/P2040E has no L2, so dont set any L2 props */
York Sun8cb65482012-07-06 17:10:33 -0500307 if (SVR_SOC_VER(get_svr()) == SVR_P2040)
Kumar Galae08c6d82011-07-21 00:20:21 -0500308 has_l2 = 0;
Kumar Galae56f2c52009-03-19 09:16:10 -0500309
310 size = (l2cfg0 & 0x3fff) * 64 * 1024;
311 num_ways = ((l2cfg0 >> 14) & 0x1f) + 1;
312 line_size = (((l2cfg0 >> 23) & 0x3) + 1) * 32;
313 num_sets = size / (line_size * num_ways);
314
315 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
316
317 while (off != -FDT_ERR_NOTFOUND) {
318 ph = (u32 *)fdt_getprop(blob, off, "next-level-cache", 0);
319
320 if (ph == NULL) {
321 debug("no next-level-cache property\n");
322 goto next;
323 }
324
325 l2_off = fdt_node_offset_by_phandle(blob, *ph);
326 if (l2_off < 0) {
327 printf("%s: %s\n", __func__, fdt_strerror(off));
328 goto next;
329 }
330
Kumar Galae08c6d82011-07-21 00:20:21 -0500331 if (has_l2) {
Kumar Gala8d2817c2009-03-19 02:53:01 -0500332#ifdef CONFIG_SYS_CACHE_STASHING
Kumar Gala8d2817c2009-03-19 02:53:01 -0500333 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
Prabhakar Kushwahacc3c5b62013-08-29 13:10:38 +0530334#if defined(CONFIG_SYS_FSL_QORIQ_CHASSIS2) && defined(CONFIG_E6500)
York Sunc3d87b12012-10-08 07:44:08 +0000335 /* Only initialize every eighth thread */
Scott Wooda77398e2014-03-26 20:30:56 -0500336 if (reg && !((*reg) % 8)) {
337 fdt_setprop_cell(blob, l2_off, "cache-stash-id",
338 (*reg / 4) + 32 + 1);
339 }
York Sunc3d87b12012-10-08 07:44:08 +0000340#else
Scott Wooda77398e2014-03-26 20:30:56 -0500341 if (reg) {
Kumar Gala8d2817c2009-03-19 02:53:01 -0500342 fdt_setprop_cell(blob, l2_off, "cache-stash-id",
Scott Wooda77398e2014-03-26 20:30:56 -0500343 (*reg * 2) + 32 + 1);
344 }
345#endif
Kumar Gala8d2817c2009-03-19 02:53:01 -0500346#endif
347
Kumar Galae08c6d82011-07-21 00:20:21 -0500348 fdt_setprop(blob, l2_off, "cache-unified", NULL, 0);
349 fdt_setprop_cell(blob, l2_off, "cache-block-size",
350 line_size);
351 fdt_setprop_cell(blob, l2_off, "cache-size", size);
352 fdt_setprop_cell(blob, l2_off, "cache-sets", num_sets);
353 fdt_setprop_cell(blob, l2_off, "cache-level", 2);
Chris Packhame0546d12016-12-02 21:22:30 +1300354 ft_fixup_l2cache_compatible(blob, l2_off);
Kumar Galae08c6d82011-07-21 00:20:21 -0500355 }
Kumar Galae56f2c52009-03-19 09:16:10 -0500356
357 if (l3_off < 0) {
358 ph = (u32 *)fdt_getprop(blob, l2_off, "next-level-cache", 0);
359
360 if (ph == NULL) {
361 debug("no next-level-cache property\n");
362 goto next;
363 }
364 l3_off = *ph;
365 }
366next:
367 off = fdt_node_offset_by_prop_value(blob, off,
368 "device_type", "cpu", 4);
369 }
370 if (l3_off > 0) {
371 l3_off = fdt_node_offset_by_phandle(blob, l3_off);
372 if (l3_off < 0) {
373 printf("%s: %s\n", __func__, fdt_strerror(off));
Bin Meng75a6a372022-10-26 12:40:07 +0800374 return;
Kumar Galae56f2c52009-03-19 09:16:10 -0500375 }
376 ft_fixup_l3cache(blob, l3_off);
377 }
Kumar Galaec68f932008-05-29 11:22:06 -0500378}
379#else
380#define ft_fixup_l2cache(x)
381#endif
382
383static inline void ft_fixup_cache(void *blob)
384{
385 int off;
386
387 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
388
389 while (off != -FDT_ERR_NOTFOUND) {
390 u32 l1cfg0 = mfspr(SPRN_L1CFG0);
391 u32 l1cfg1 = mfspr(SPRN_L1CFG1);
392 u32 isize, iline_size, inum_sets, inum_ways;
393 u32 dsize, dline_size, dnum_sets, dnum_ways;
394
395 /* d-side config */
396 dsize = (l1cfg0 & 0x7ff) * 1024;
397 dnum_ways = ((l1cfg0 >> 11) & 0xff) + 1;
398 dline_size = (((l1cfg0 >> 23) & 0x3) + 1) * 32;
399 dnum_sets = dsize / (dline_size * dnum_ways);
400
401 fdt_setprop_cell(blob, off, "d-cache-block-size", dline_size);
Kumar Galaec68f932008-05-29 11:22:06 -0500402 fdt_setprop_cell(blob, off, "d-cache-size", dsize);
403 fdt_setprop_cell(blob, off, "d-cache-sets", dnum_sets);
404
Kumar Gala8d2817c2009-03-19 02:53:01 -0500405#ifdef CONFIG_SYS_CACHE_STASHING
406 {
407 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", 0);
408 if (reg)
409 fdt_setprop_cell(blob, off, "cache-stash-id",
410 (*reg * 2) + 32 + 0);
411 }
412#endif
413
Kumar Galaec68f932008-05-29 11:22:06 -0500414 /* i-side config */
415 isize = (l1cfg1 & 0x7ff) * 1024;
416 inum_ways = ((l1cfg1 >> 11) & 0xff) + 1;
417 iline_size = (((l1cfg1 >> 23) & 0x3) + 1) * 32;
418 inum_sets = isize / (iline_size * inum_ways);
419
420 fdt_setprop_cell(blob, off, "i-cache-block-size", iline_size);
Kumar Galaec68f932008-05-29 11:22:06 -0500421 fdt_setprop_cell(blob, off, "i-cache-size", isize);
422 fdt_setprop_cell(blob, off, "i-cache-sets", inum_sets);
423
424 off = fdt_node_offset_by_prop_value(blob, off,
425 "device_type", "cpu", 4);
426 }
427
428 ft_fixup_l2cache(blob);
429}
430
431
Andy Fleminge3366052008-10-07 08:09:50 -0500432void fdt_add_enet_stashing(void *fdt)
433{
434 do_fixup_by_compat(fdt, "gianfar", "bd-stash", NULL, 0, 1);
435
436 do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-len", 96, 1);
437
438 do_fixup_by_compat_u32(fdt, "gianfar", "rx-stash-idx", 0, 1);
Pankaj Chauhand829fb62011-01-25 14:44:57 +0530439 do_fixup_by_compat(fdt, "fsl,etsec2", "bd-stash", NULL, 0, 1);
440 do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-len", 96, 1);
441 do_fixup_by_compat_u32(fdt, "fsl,etsec2", "rx-stash-idx", 0, 1);
Andy Fleminge3366052008-10-07 08:09:50 -0500442}
443
Kumar Galab915e0d2009-03-19 02:46:28 -0500444#if defined(CONFIG_SYS_DPAA_FMAN) || defined(CONFIG_SYS_DPAA_PME)
Kumar Gala302a65c2011-07-31 12:55:39 -0500445#ifdef CONFIG_SYS_DPAA_FMAN
Kumar Gala3f35bb52010-07-10 06:38:16 -0500446static void ft_fixup_clks(void *blob, const char *compat, u32 offset,
447 unsigned long freq)
Kumar Galab915e0d2009-03-19 02:46:28 -0500448{
Tom Rini6a5dccc2022-11-16 13:10:41 -0500449 phys_addr_t phys = offset + CFG_SYS_CCSRBAR_PHYS;
Kumar Gala3f35bb52010-07-10 06:38:16 -0500450 int off = fdt_node_offset_by_compat_reg(blob, compat, phys);
Kumar Galab915e0d2009-03-19 02:46:28 -0500451
452 if (off >= 0) {
453 off = fdt_setprop_cell(blob, off, "clock-frequency", freq);
454 if (off > 0)
455 printf("WARNING enable to set clock-frequency "
Kumar Gala3f35bb52010-07-10 06:38:16 -0500456 "for %s: %s\n", compat, fdt_strerror(off));
Kumar Galab915e0d2009-03-19 02:46:28 -0500457 }
458}
Kumar Gala302a65c2011-07-31 12:55:39 -0500459#endif
Kumar Galab915e0d2009-03-19 02:46:28 -0500460
461static void ft_fixup_dpaa_clks(void *blob)
462{
463 sys_info_t sysinfo;
464
465 get_sys_info(&sysinfo);
Kumar Gala302a65c2011-07-31 12:55:39 -0500466#ifdef CONFIG_SYS_DPAA_FMAN
Tom Rini376b88a2022-10-28 20:27:13 -0400467 ft_fixup_clks(blob, "fsl,fman", CFG_SYS_FSL_FM1_OFFSET,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530468 sysinfo.freq_fman[0]);
Kumar Galab915e0d2009-03-19 02:46:28 -0500469
Tom Rini0a2bac72022-11-16 13:10:29 -0500470#if (CFG_SYS_NUM_FMAN == 2)
Tom Rini376b88a2022-10-28 20:27:13 -0400471 ft_fixup_clks(blob, "fsl,fman", CFG_SYS_FSL_FM2_OFFSET,
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530472 sysinfo.freq_fman[1]);
Kumar Galab915e0d2009-03-19 02:46:28 -0500473#endif
Kumar Gala302a65c2011-07-31 12:55:39 -0500474#endif
Kumar Galab915e0d2009-03-19 02:46:28 -0500475
Haiying Wang09d0aa92012-10-11 07:13:39 +0000476#ifdef CONFIG_SYS_DPAA_QBMAN
477 do_fixup_by_compat_u32(blob, "fsl,qman",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530478 "clock-frequency", sysinfo.freq_qman, 1);
Haiying Wang09d0aa92012-10-11 07:13:39 +0000479#endif
480
Kumar Galab915e0d2009-03-19 02:46:28 -0500481#ifdef CONFIG_SYS_DPAA_PME
Kumar Gala3f35bb52010-07-10 06:38:16 -0500482 do_fixup_by_compat_u32(blob, "fsl,pme",
Prabhakar Kushwahad1698082013-08-16 14:52:26 +0530483 "clock-frequency", sysinfo.freq_pme, 1);
Kumar Galab915e0d2009-03-19 02:46:28 -0500484#endif
485}
486#else
487#define ft_fixup_dpaa_clks(x)
488#endif
489
Liu Yud555da12010-01-15 14:58:40 +0800490#ifdef CONFIG_QE
491static void ft_fixup_qe_snum(void *blob)
492{
493 unsigned int svr;
494
495 svr = mfspr(SPRN_SVR);
York Sun8cb65482012-07-06 17:10:33 -0500496 if (SVR_SOC_VER(svr) == SVR_8569) {
Liu Yud555da12010-01-15 14:58:40 +0800497 if(IS_SVR_REV(svr, 1, 0))
498 do_fixup_by_compat_u32(blob, "fsl,qe",
499 "fsl,qe-num-snums", 46, 1);
500 else
501 do_fixup_by_compat_u32(blob, "fsl,qe",
502 "fsl,qe-num-snums", 76, 1);
503 }
504}
505#endif
506
York Sun84be8a92016-11-18 11:24:40 -0800507#if defined(CONFIG_ARCH_P4080)
Shengzhou Liu320c2d22011-10-14 16:26:06 +0800508static void fdt_fixup_usb(void *fdt)
509{
Tom Rinid5c3bf22022-10-28 20:27:12 -0400510 ccsr_gur_t *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
Shengzhou Liu320c2d22011-10-14 16:26:06 +0800511 u32 rcwsr11 = in_be32(&gur->rcwsr[11]);
512 int off;
513
514 off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-mph");
515 if ((rcwsr11 & FSL_CORENET_RCWSR11_EC1) !=
516 FSL_CORENET_RCWSR11_EC1_FM1_USB1)
517 fdt_status_disabled(fdt, off);
518
519 off = fdt_node_offset_by_compatible(fdt, -1, "fsl,mpc85xx-usb2-dr");
520 if ((rcwsr11 & FSL_CORENET_RCWSR11_EC2) !=
521 FSL_CORENET_RCWSR11_EC2_USB2)
522 fdt_status_disabled(fdt, off);
523}
524#else
525#define fdt_fixup_usb(x)
526#endif
527
Tom Rinia7ffa3d2021-05-23 10:58:05 -0400528#if defined(CONFIG_ARCH_T2080) || defined(CONFIG_ARCH_T4240)
Shengzhou Liu55d9f822014-05-19 15:08:14 +0800529void fdt_fixup_dma3(void *blob)
530{
531 /* the 3rd DMA is not functional if SRIO2 is chosen */
532 int nodeoff;
Tom Rinid5c3bf22022-10-28 20:27:12 -0400533 ccsr_gur_t __iomem *gur = (void *)(CFG_SYS_MPC85xx_GUTS_ADDR);
Shengzhou Liu55d9f822014-05-19 15:08:14 +0800534
Tom Rini364d0022023-01-10 11:19:45 -0500535#define CFG_SYS_ELO3_DMA3 (0xffe000000 + 0x102300)
York Sune20c6852016-11-21 12:54:19 -0800536#if defined(CONFIG_ARCH_T2080)
Shengzhou Liu55d9f822014-05-19 15:08:14 +0800537 u32 srds_prtcl_s2 = in_be32(&gur->rcwsr[4]) &
538 FSL_CORENET2_RCWSR4_SRDS2_PRTCL;
539 srds_prtcl_s2 >>= FSL_CORENET2_RCWSR4_SRDS2_PRTCL_SHIFT;
540
541 switch (srds_prtcl_s2) {
542 case 0x29:
543 case 0x2d:
544 case 0x2e:
Tom Rinia7ffa3d2021-05-23 10:58:05 -0400545#elif defined(CONFIG_ARCH_T4240)
Shengzhou Liu55d9f822014-05-19 15:08:14 +0800546 u32 srds_prtcl_s4 = in_be32(&gur->rcwsr[4]) &
547 FSL_CORENET2_RCWSR4_SRDS4_PRTCL;
548 srds_prtcl_s4 >>= FSL_CORENET2_RCWSR4_SRDS4_PRTCL_SHIFT;
549
550 switch (srds_prtcl_s4) {
551 case 6:
552 case 8:
553 case 14:
554 case 16:
555#endif
556 nodeoff = fdt_node_offset_by_compat_reg(blob, "fsl,elo3-dma",
Tom Rini364d0022023-01-10 11:19:45 -0500557 CFG_SYS_ELO3_DMA3);
Shengzhou Liu55d9f822014-05-19 15:08:14 +0800558 if (nodeoff > 0)
559 fdt_status_disabled(blob, nodeoff);
560 else
561 printf("WARNING: unable to disable dma3\n");
562 break;
563 default:
564 break;
565 }
566}
567#else
568#define fdt_fixup_dma3(x)
569#endif
570
York Suna5b5d882016-11-18 13:11:12 -0800571#if defined(CONFIG_ARCH_T1040)
Codrin Ciubotariu568623a2014-03-28 18:57:29 +0200572static void fdt_fixup_l2_switch(void *blob)
573{
574 uchar l2swaddr[6];
575 int node;
576
577 /* The l2switch node from device-tree has
578 * compatible string "vitesse-9953" */
579 node = fdt_node_offset_by_compatible(blob, -1, "vitesse-9953");
580 if (node == -FDT_ERR_NOTFOUND)
581 /* no l2switch node has been found */
582 return;
583
584 /* Get MAC address for the l2switch from "l2switchaddr"*/
Simon Glass399a9ce2017-08-03 12:22:14 -0600585 if (!eth_env_get_enetaddr("l2switchaddr", l2swaddr)) {
Codrin Ciubotariu568623a2014-03-28 18:57:29 +0200586 printf("Warning: MAC address for l2switch not found\n");
587 memset(l2swaddr, 0, sizeof(l2swaddr));
588 }
589
590 /* Add MAC address to l2switch node */
591 fdt_setprop(blob, node, "local-mac-address", l2swaddr,
592 sizeof(l2swaddr));
593}
594#else
595#define fdt_fixup_l2_switch(x)
596#endif
597
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900598void ft_cpu_setup(void *blob, struct bd_info *bd)
Kumar Gala81a21e92007-11-29 00:15:30 -0600599{
Haiying Wangbb8aea72009-01-15 11:58:35 -0500600 int off;
601 int val;
Laurentiu TUDOR1e573e92013-10-23 15:20:45 +0300602 int len;
Haiying Wangbb8aea72009-01-15 11:58:35 -0500603 sys_info_t sysinfo;
604
Kim Phillips868e3462008-06-16 15:55:53 -0500605 /* delete crypto node if not on an E-processor */
606 if (!IS_E_PROCESSOR(get_svr()))
607 fdt_fixup_crypto_node(blob, 0);
Vakul Garg90a7f9f2013-01-23 22:52:31 +0000608#if CONFIG_SYS_FSL_SEC_COMPAT >= 4
609 else {
610 ccsr_sec_t __iomem *sec;
611
Tom Rini376b88a2022-10-28 20:27:13 -0400612 sec = (void __iomem *)CFG_SYS_FSL_SEC_ADDR;
Ruchika Guptabb7143b2014-09-09 11:50:31 +0530613 fdt_fixup_crypto_node(blob, sec_in32(&sec->secvid_ms));
Vakul Garg90a7f9f2013-01-23 22:52:31 +0000614 }
615#endif
Kim Phillips868e3462008-06-16 15:55:53 -0500616
Andy Fleminge3366052008-10-07 08:09:50 -0500617 fdt_add_enet_stashing(blob);
Kumar Gala81a21e92007-11-29 00:15:30 -0600618
Tom Rini364d0022023-01-10 11:19:45 -0500619#ifndef CFG_FSL_TBCLK_EXTRA_DIV
620#define CFG_FSL_TBCLK_EXTRA_DIV 1
York Sun972cc402013-06-25 11:37:41 -0700621#endif
Kumar Gala81a21e92007-11-29 00:15:30 -0600622 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
Tom Rini364d0022023-01-10 11:19:45 -0500623 "timebase-frequency", get_tbclk() / CFG_FSL_TBCLK_EXTRA_DIV,
York Sun972cc402013-06-25 11:37:41 -0700624 1);
Kumar Gala81a21e92007-11-29 00:15:30 -0600625 do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
626 "bus-frequency", bd->bi_busfreq, 1);
Haiying Wangbb8aea72009-01-15 11:58:35 -0500627 get_sys_info(&sysinfo);
628 off = fdt_node_offset_by_prop_value(blob, -1, "device_type", "cpu", 4);
629 while (off != -FDT_ERR_NOTFOUND) {
Laurentiu TUDOR1e573e92013-10-23 15:20:45 +0300630 u32 *reg = (u32 *)fdt_getprop(blob, off, "reg", &len);
631 val = cpu_to_fdt32(sysinfo.freq_processor[(*reg) / (len / 4)]);
Haiying Wangbb8aea72009-01-15 11:58:35 -0500632 fdt_setprop(blob, off, "clock-frequency", &val, 4);
633 off = fdt_node_offset_by_prop_value(blob, off, "device_type",
634 "cpu", 4);
635 }
Kumar Gala81a21e92007-11-29 00:15:30 -0600636 do_fixup_by_prop_u32(blob, "device_type", "soc", 4,
637 "bus-frequency", bd->bi_busfreq, 1);
Trent Piephobc424c92008-12-03 15:16:38 -0800638
Kumar Gala81a21e92007-11-29 00:15:30 -0600639#ifdef CONFIG_QE
Kumar Gala1f164482008-01-17 08:25:45 -0600640 ft_qe_setup(blob);
Liu Yud555da12010-01-15 14:58:40 +0800641 ft_fixup_qe_snum(blob);
Kumar Gala81a21e92007-11-29 00:15:30 -0600642#endif
643
Qianyu Gong8868a642016-02-18 13:02:00 +0800644#ifdef CONFIG_SYS_DPAA_FMAN
Timur Tabibb763662011-05-03 13:35:11 -0500645 fdt_fixup_fman_firmware(blob);
Qianyu Gong8868a642016-02-18 13:02:00 +0800646#endif
Timur Tabibb763662011-05-03 13:35:11 -0500647
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200648#ifdef CONFIG_SYS_NS16550
Kumar Gala81a21e92007-11-29 00:15:30 -0600649 do_fixup_by_compat_u32(blob, "ns16550",
Tom Rinidf6a2152022-11-16 13:10:28 -0500650 "clock-frequency", CFG_SYS_NS16550_CLK, 1);
Kumar Gala81a21e92007-11-29 00:15:30 -0600651#endif
652
Kumar Galab7177d72010-07-10 06:55:41 -0500653#ifdef CONFIG_FSL_CORENET
654 do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-1.0",
Tom Rini8c70baa2021-12-14 13:36:40 -0500655 "clock-frequency", get_board_sys_clk(), 1);
Andy Fleming7bd4b722013-06-17 15:10:28 -0500656 do_fixup_by_compat_u32(blob, "fsl,qoriq-clockgen-2.0",
Tom Rini8c70baa2021-12-14 13:36:40 -0500657 "clock-frequency", get_board_sys_clk(), 1);
Dongsheng.wang@freescale.com109a8d32013-01-30 18:51:52 +0000658 do_fixup_by_compat_u32(blob, "fsl,mpic",
659 "clock-frequency", get_bus_freq(0)/2, 1);
660#else
661 do_fixup_by_compat_u32(blob, "fsl,mpic",
662 "clock-frequency", get_bus_freq(0), 1);
Kumar Galab7177d72010-07-10 06:55:41 -0500663#endif
664
Stefan Roesea13a2aa2020-08-12 13:16:36 +0200665 fdt_fixup_memory(blob, (u64)gd->ram_base, (u64)gd->ram_size);
Kumar Gala36d6b3f2008-01-17 16:48:33 -0600666
667#ifdef CONFIG_MP
Stefan Roesea13a2aa2020-08-12 13:16:36 +0200668 ft_fixup_cpu(blob, (u64)gd->ram_base + (u64)gd->ram_size);
Poonam Aggrwal4ca72ae2009-09-02 19:40:36 +0530669 ft_fixup_num_cores(blob);
Kumar Gala819a4792010-06-09 22:33:53 -0500670#endif
Kumar Galaec68f932008-05-29 11:22:06 -0500671
672 ft_fixup_cache(blob);
Dipen Dudhat93877732009-09-02 11:25:08 +0530673
674#if defined(CONFIG_FSL_ESDHC)
675 fdt_fixup_esdhc(blob, bd);
676#endif
Kumar Galab915e0d2009-03-19 02:46:28 -0500677
678 ft_fixup_dpaa_clks(blob);
Kumar Gala38449a42009-09-10 03:02:13 -0500679
Tom Rini6a5dccc2022-11-16 13:10:41 -0500680#if defined(CFG_SYS_BMAN_MEM_PHYS)
Kumar Gala38449a42009-09-10 03:02:13 -0500681 fdt_portal(blob, "fsl,bman-portal", "bman-portals",
Tom Rini6a5dccc2022-11-16 13:10:41 -0500682 (u64)CFG_SYS_BMAN_MEM_PHYS,
683 CFG_SYS_BMAN_MEM_SIZE);
Haiying Wangd38d4b22011-03-01 09:30:07 -0500684 fdt_fixup_bportals(blob);
Kumar Gala38449a42009-09-10 03:02:13 -0500685#endif
686
Tom Rini6a5dccc2022-11-16 13:10:41 -0500687#if defined(CFG_SYS_QMAN_MEM_PHYS)
Kumar Gala38449a42009-09-10 03:02:13 -0500688 fdt_portal(blob, "fsl,qman-portal", "qman-portals",
Tom Rini6a5dccc2022-11-16 13:10:41 -0500689 (u64)CFG_SYS_QMAN_MEM_PHYS,
690 CFG_SYS_QMAN_MEM_SIZE);
Kumar Gala38449a42009-09-10 03:02:13 -0500691
692 fdt_fixup_qportals(blob);
693#endif
Kumar Gala8975d7a2010-12-30 12:09:53 -0600694
695#ifdef CONFIG_SYS_SRIO
696 ft_srio_setup(blob);
697#endif
bhaskar upadhaya2c7ab3e2011-02-02 14:44:28 +0000698
699 /*
700 * system-clock = CCB clock/2
701 * Here gd->bus_clk = CCB clock
702 * We are using the system clock as 1588 Timer reference
703 * clock source select
704 */
705 do_fixup_by_compat_u32(blob, "fsl,gianfar-ptp-timer",
706 "timer-frequency", gd->bus_clk/2, 1);
Bhaskar Upadhayab89130d2011-03-04 20:27:58 +0530707
Jia Hongtaof37569d2011-11-15 15:04:11 +0800708 /*
709 * clock-freq should change to clock-frequency and
710 * flexcan-v1.0 should change to p1010-flexcan respectively
711 * in the future.
712 */
713 do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0",
714 "clock_freq", gd->bus_clk/2, 1);
715
Bhaskar Upadhayab89130d2011-03-04 20:27:58 +0530716 do_fixup_by_compat_u32(blob, "fsl,flexcan-v1.0",
Jia Hongtaof37569d2011-11-15 15:04:11 +0800717 "clock-frequency", gd->bus_clk/2, 1);
718
719 do_fixup_by_compat_u32(blob, "fsl,p1010-flexcan",
720 "clock-frequency", gd->bus_clk/2, 1);
Shengzhou Liu320c2d22011-10-14 16:26:06 +0800721
722 fdt_fixup_usb(blob);
Codrin Ciubotariu568623a2014-03-28 18:57:29 +0200723
724 fdt_fixup_l2_switch(blob);
Shengzhou Liu55d9f822014-05-19 15:08:14 +0800725
726 fdt_fixup_dma3(blob);
Kumar Gala81a21e92007-11-29 00:15:30 -0600727}
Timur Tabi89e48702011-05-03 13:24:08 -0500728
729/*
730 * For some CCSR devices, we only have the virtual address, not the physical
731 * address. This is because we map CCSR as a whole, so we typically don't need
732 * a macro for the physical address of any device within CCSR. In this case,
733 * we calculate the physical address of that device using it's the difference
734 * between the virtual address of the device and the virtual address of the
735 * beginning of CCSR.
736 */
737#define CCSR_VIRT_TO_PHYS(x) \
Tom Rini6a5dccc2022-11-16 13:10:41 -0500738 (CFG_SYS_CCSRBAR_PHYS + ((x) - CFG_SYS_CCSRBAR))
Timur Tabi89e48702011-05-03 13:24:08 -0500739
Timur Tabi186d7a52011-11-16 13:28:34 -0600740static void msg(const char *name, uint64_t uaddr, uint64_t daddr)
741{
742 printf("Warning: U-Boot configured %s at address %llx,\n"
743 "but the device tree has it at %llx\n", name, uaddr, daddr);
744}
745
Timur Tabi89e48702011-05-03 13:24:08 -0500746/*
747 * Verify the device tree
748 *
749 * This function compares several CONFIG_xxx macros that contain physical
750 * addresses with the corresponding nodes in the device tree, to see if
751 * the physical addresses are all correct. For example, if
Tom Rinidf6a2152022-11-16 13:10:28 -0500752 * CFG_SYS_NS16550_COM1 is defined, then it contains the virtual address
Timur Tabi89e48702011-05-03 13:24:08 -0500753 * of the first UART. We convert this to a physical address and compare
754 * that with the physical address of the first ns16550-compatible node
755 * in the device tree. If they don't match, then we display a warning.
756 *
757 * Returns 1 on success, 0 on failure
758 */
759int ft_verify_fdt(void *fdt)
760{
Timur Tabi186d7a52011-11-16 13:28:34 -0600761 uint64_t addr = 0;
Timur Tabi89e48702011-05-03 13:24:08 -0500762 int aliases;
763 int off;
764
765 /* First check the CCSR base address */
766 off = fdt_node_offset_by_prop_value(fdt, -1, "device_type", "soc", 4);
Tom Rini0fb36062017-08-03 09:33:07 -0400767 if (off > 0) {
768 int size;
769 u32 naddr;
770 const fdt32_t *prop;
771
772 naddr = fdt_address_cells(fdt, off);
773 prop = fdt_getprop(fdt, off, "ranges", &size);
774 addr = fdt_translate_address(fdt, off, prop + naddr);
775 }
Timur Tabi89e48702011-05-03 13:24:08 -0500776
Timur Tabi186d7a52011-11-16 13:28:34 -0600777 if (!addr) {
Timur Tabi89e48702011-05-03 13:24:08 -0500778 printf("Warning: could not determine base CCSR address in "
779 "device tree\n");
780 /* No point in checking anything else */
781 return 0;
782 }
783
Tom Rini6a5dccc2022-11-16 13:10:41 -0500784 if (addr != CFG_SYS_CCSRBAR_PHYS) {
785 msg("CCSR", CFG_SYS_CCSRBAR_PHYS, addr);
Timur Tabi89e48702011-05-03 13:24:08 -0500786 /* No point in checking anything else */
787 return 0;
788 }
789
790 /*
Timur Tabi186d7a52011-11-16 13:28:34 -0600791 * Check some nodes via aliases. We assume that U-Boot and the device
792 * tree enumerate the devices equally. E.g. the first serial port in
793 * U-Boot is the same as "serial0" in the device tree.
Timur Tabi89e48702011-05-03 13:24:08 -0500794 */
795 aliases = fdt_path_offset(fdt, "/aliases");
796 if (aliases > 0) {
Tom Rinidf6a2152022-11-16 13:10:28 -0500797#ifdef CFG_SYS_NS16550_COM1
Timur Tabi89e48702011-05-03 13:24:08 -0500798 if (!fdt_verify_alias_address(fdt, aliases, "serial0",
Tom Rinidf6a2152022-11-16 13:10:28 -0500799 CCSR_VIRT_TO_PHYS(CFG_SYS_NS16550_COM1)))
Timur Tabi89e48702011-05-03 13:24:08 -0500800 return 0;
801#endif
802
Tom Rinidf6a2152022-11-16 13:10:28 -0500803#ifdef CFG_SYS_NS16550_COM2
Timur Tabi89e48702011-05-03 13:24:08 -0500804 if (!fdt_verify_alias_address(fdt, aliases, "serial1",
Tom Rinidf6a2152022-11-16 13:10:28 -0500805 CCSR_VIRT_TO_PHYS(CFG_SYS_NS16550_COM2)))
Timur Tabi89e48702011-05-03 13:24:08 -0500806 return 0;
807#endif
808 }
Timur Tabi186d7a52011-11-16 13:28:34 -0600809
810 /*
811 * The localbus node is typically a root node, even though the lbc
812 * controller is part of CCSR. If we were to put the lbc node under
813 * the SOC node, then the 'ranges' property in the lbc node would
814 * translate through the 'ranges' property of the parent SOC node, and
815 * we don't want that. Since it's a separate node, it's possible for
816 * the 'reg' property to be wrong, so check it here. For now, we
817 * only check for "fsl,elbc" nodes.
818 */
Tom Rini6a5dccc2022-11-16 13:10:41 -0500819#ifdef CFG_SYS_LBC_ADDR
Timur Tabi186d7a52011-11-16 13:28:34 -0600820 off = fdt_node_offset_by_compatible(fdt, -1, "fsl,elbc");
821 if (off > 0) {
Kim Phillips6542c072013-01-16 14:00:11 +0000822 const fdt32_t *reg = fdt_getprop(fdt, off, "reg", NULL);
Timur Tabi186d7a52011-11-16 13:28:34 -0600823 if (reg) {
Tom Rini6a5dccc2022-11-16 13:10:41 -0500824 uint64_t uaddr = CCSR_VIRT_TO_PHYS(CFG_SYS_LBC_ADDR);
Timur Tabi186d7a52011-11-16 13:28:34 -0600825
826 addr = fdt_translate_address(fdt, off, reg);
827 if (uaddr != addr) {
828 msg("the localbus", uaddr, addr);
829 return 0;
830 }
831 }
832 }
833#endif
Timur Tabi89e48702011-05-03 13:24:08 -0500834
835 return 1;
836}
Zhao Qiang81136a12015-08-28 10:31:50 +0800837
838void fdt_del_diu(void *blob)
839{
840 int nodeoff = 0;
841
842 while ((nodeoff = fdt_node_offset_by_compatible(blob, 0,
843 "fsl,diu")) >= 0) {
844 fdt_del_node(blob, nodeoff);
845 }
846}