blob: efbd900e1f44a639615d75608639fd42d028d874 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Gerald Van Baren64dbbd42007-04-06 14:19:43 -04002/*
3 * (C) Copyright 2007
4 * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com
5 *
Shengzhou Liu2a523f52011-10-14 16:26:05 +08006 * Copyright 2010-2011 Freescale Semiconductor, Inc.
Gerald Van Baren64dbbd42007-04-06 14:19:43 -04007 */
8
9#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -060010#include <env.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Heinrich Schuchardt9ad0a792018-11-18 17:58:51 +010012#include <mapmem.h>
Simon Glass90526e92020-05-10 11:39:56 -060013#include <net.h>
Anton Vorontsov3e303f72009-10-15 17:47:04 +040014#include <stdio_dev.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040015#include <linux/ctype.h>
16#include <linux/types.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040017#include <asm/global_data.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090018#include <linux/libfdt.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040019#include <fdt_support.h>
Kumar Gala151c8b02007-11-26 17:06:15 -060020#include <exports.h>
Bin Menga0ae3802015-12-07 01:39:47 -080021#include <fdtdec.h>
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040022
Kumar Gala3bed2aa2008-10-23 00:05:47 -050023/**
Alexander Graf94fb1822014-04-11 17:09:40 +020024 * fdt_getprop_u32_default_node - Return a node's property or a default
25 *
26 * @fdt: ptr to device tree
27 * @off: offset of node
28 * @cell: cell offset in property
29 * @prop: property name
30 * @dflt: default value if the property isn't found
31 *
32 * Convenience function to return a node's property or a default value if
33 * the property doesn't exist.
34 */
35u32 fdt_getprop_u32_default_node(const void *fdt, int off, int cell,
36 const char *prop, const u32 dflt)
37{
38 const fdt32_t *val;
39 int len;
40
41 val = fdt_getprop(fdt, off, prop, &len);
42
43 /* Check if property exists */
44 if (!val)
45 return dflt;
46
47 /* Check if property is long enough */
48 if (len < ((cell + 1) * sizeof(uint32_t)))
49 return dflt;
50
51 return fdt32_to_cpu(*val);
52}
53
54/**
Kumar Gala3bed2aa2008-10-23 00:05:47 -050055 * fdt_getprop_u32_default - Find a node and return it's property or a default
56 *
57 * @fdt: ptr to device tree
58 * @path: path of node
59 * @prop: property name
60 * @dflt: default value if the property isn't found
61 *
62 * Convenience function to find a node and return it's property or a
63 * default value if it doesn't exist.
64 */
Gabe Black07e12782011-11-08 01:09:44 -080065u32 fdt_getprop_u32_default(const void *fdt, const char *path,
66 const char *prop, const u32 dflt)
Kumar Gala3bed2aa2008-10-23 00:05:47 -050067{
Kumar Gala3bed2aa2008-10-23 00:05:47 -050068 int off;
69
70 off = fdt_path_offset(fdt, path);
71 if (off < 0)
72 return dflt;
73
Alexander Graf94fb1822014-04-11 17:09:40 +020074 return fdt_getprop_u32_default_node(fdt, off, 0, prop, dflt);
Kumar Gala3bed2aa2008-10-23 00:05:47 -050075}
Gerald Van Baren64dbbd42007-04-06 14:19:43 -040076
Kumar Galaa3c29332007-10-24 10:21:57 -050077/**
78 * fdt_find_and_setprop: Find a node and set it's property
79 *
80 * @fdt: ptr to device tree
81 * @node: path of node
82 * @prop: property name
83 * @val: ptr to new value
84 * @len: length of new property value
85 * @create: flag to create the property if it doesn't exist
86 *
87 * Convenience function to directly set a property given the path to the node.
88 */
89int fdt_find_and_setprop(void *fdt, const char *node, const char *prop,
90 const void *val, int len, int create)
91{
Kumar Gala8d04f022007-10-24 11:04:22 -050092 int nodeoff = fdt_path_offset(fdt, node);
Kumar Galaa3c29332007-10-24 10:21:57 -050093
94 if (nodeoff < 0)
95 return nodeoff;
96
Kim Phillips8aa5ec62013-01-16 14:00:11 +000097 if ((!create) && (fdt_get_property(fdt, nodeoff, prop, NULL) == NULL))
Kumar Galaa3c29332007-10-24 10:21:57 -050098 return 0; /* create flag not set; so exit quietly */
99
100 return fdt_setprop(fdt, nodeoff, prop, val, len);
101}
102
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900103/**
Simon Glassa9e8e292014-10-23 18:58:49 -0600104 * fdt_find_or_add_subnode() - find or possibly add a subnode of a given node
105 *
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900106 * @fdt: pointer to the device tree blob
107 * @parentoffset: structure block offset of a node
108 * @name: name of the subnode to locate
109 *
110 * fdt_subnode_offset() finds a subnode of the node with a given name.
111 * If the subnode does not exist, it will be created.
112 */
Simon Glassa9e8e292014-10-23 18:58:49 -0600113int fdt_find_or_add_subnode(void *fdt, int parentoffset, const char *name)
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900114{
115 int offset;
116
117 offset = fdt_subnode_offset(fdt, parentoffset, name);
118
119 if (offset == -FDT_ERR_NOTFOUND)
120 offset = fdt_add_subnode(fdt, parentoffset, name);
121
122 if (offset < 0)
123 printf("%s: %s: %s\n", __func__, name, fdt_strerror(offset));
124
125 return offset;
126}
127
Andre Przywarae036a1d2021-02-14 10:35:18 +0000128#if defined(CONFIG_OF_STDOUT_VIA_ALIAS) && defined(CONFIG_CONS_INDEX)
Detlev Zundel40777812008-06-20 22:24:05 +0200129static int fdt_fixup_stdout(void *fdt, int chosenoff)
Kumar Gala151c8b02007-11-26 17:06:15 -0600130{
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900131 int err;
132 int aliasoff;
Kumar Gala151c8b02007-11-26 17:06:15 -0600133 char sername[9] = { 0 };
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900134 const void *path;
135 int len;
136 char tmp[256]; /* long enough */
Kumar Gala151c8b02007-11-26 17:06:15 -0600137
Bin Meng9f29aeb2016-01-13 19:38:58 -0800138 sprintf(sername, "serial%d", CONFIG_CONS_INDEX - 1);
Kumar Gala151c8b02007-11-26 17:06:15 -0600139
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900140 aliasoff = fdt_path_offset(fdt, "/aliases");
141 if (aliasoff < 0) {
142 err = aliasoff;
Scott Woodda77c812015-09-01 22:48:08 -0500143 goto noalias;
Kumar Gala151c8b02007-11-26 17:06:15 -0600144 }
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900145
146 path = fdt_getprop(fdt, aliasoff, sername, &len);
147 if (!path) {
148 err = len;
Scott Woodda77c812015-09-01 22:48:08 -0500149 goto noalias;
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900150 }
151
152 /* fdt_setprop may break "path" so we copy it to tmp buffer */
153 memcpy(tmp, path, len);
154
155 err = fdt_setprop(fdt, chosenoff, "linux,stdout-path", tmp, len);
Kumar Gala151c8b02007-11-26 17:06:15 -0600156 if (err < 0)
157 printf("WARNING: could not set linux,stdout-path %s.\n",
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900158 fdt_strerror(err));
Kumar Gala151c8b02007-11-26 17:06:15 -0600159
160 return err;
Scott Woodda77c812015-09-01 22:48:08 -0500161
162noalias:
163 printf("WARNING: %s: could not read %s alias: %s\n",
164 __func__, sername, fdt_strerror(err));
165
166 return 0;
Kumar Gala151c8b02007-11-26 17:06:15 -0600167}
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900168#else
169static int fdt_fixup_stdout(void *fdt, int chosenoff)
170{
171 return 0;
172}
Kumar Gala151c8b02007-11-26 17:06:15 -0600173#endif
174
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900175static inline int fdt_setprop_uxx(void *fdt, int nodeoffset, const char *name,
176 uint64_t val, int is_u64)
177{
178 if (is_u64)
179 return fdt_setprop_u64(fdt, nodeoffset, name, val);
180 else
181 return fdt_setprop_u32(fdt, nodeoffset, name, (uint32_t)val);
182}
183
Paul Kocialkowski10be5b52015-05-21 11:27:03 +0200184int fdt_root(void *fdt)
185{
186 char *serial;
187 int err;
188
189 err = fdt_check_header(fdt);
190 if (err < 0) {
191 printf("fdt_root: %s\n", fdt_strerror(err));
192 return err;
193 }
194
Simon Glass00caae62017-08-03 12:22:12 -0600195 serial = env_get("serial#");
Paul Kocialkowski10be5b52015-05-21 11:27:03 +0200196 if (serial) {
197 err = fdt_setprop(fdt, 0, "serial-number", serial,
198 strlen(serial) + 1);
199
200 if (err < 0) {
201 printf("WARNING: could not set serial-number %s.\n",
202 fdt_strerror(err));
203 return err;
204 }
205 }
206
207 return 0;
208}
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900209
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900210int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end)
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500211{
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900212 int nodeoffset;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500213 int err, j, total;
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900214 int is_u64;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500215 uint64_t addr, size;
216
Masahiro Yamada50babaf2014-04-18 17:41:05 +0900217 /* just return if the size of initrd is zero */
218 if (initrd_start == initrd_end)
219 return 0;
220
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900221 /* find or create "/chosen" node. */
222 nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
223 if (nodeoffset < 0)
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500224 return nodeoffset;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500225
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500226 total = fdt_num_mem_rsv(fdt);
227
228 /*
229 * Look for an existing entry and update it. If we don't find
230 * the entry, we will j be the next available slot.
231 */
232 for (j = 0; j < total; j++) {
233 err = fdt_get_mem_rsv(fdt, j, &addr, &size);
234 if (addr == initrd_start) {
235 fdt_del_mem_rsv(fdt, j);
236 break;
237 }
238 }
239
Grant Likelyce6b27a2011-03-28 09:58:55 +0000240 err = fdt_add_mem_rsv(fdt, initrd_start, initrd_end - initrd_start);
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500241 if (err < 0) {
242 printf("fdt_initrd: %s\n", fdt_strerror(err));
243 return err;
244 }
245
Simon Glass933cdbb2014-10-23 18:58:57 -0600246 is_u64 = (fdt_address_cells(fdt, 0) == 2);
David Fengf77a6062013-12-14 11:47:29 +0800247
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900248 err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-start",
249 (uint64_t)initrd_start, is_u64);
250
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900251 if (err < 0) {
252 printf("WARNING: could not set linux,initrd-start %s.\n",
253 fdt_strerror(err));
254 return err;
255 }
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900256
257 err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-end",
258 (uint64_t)initrd_end, is_u64);
259
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900260 if (err < 0) {
261 printf("WARNING: could not set linux,initrd-end %s.\n",
262 fdt_strerror(err));
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500263
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900264 return err;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500265 }
266
267 return 0;
268}
269
Niko Maunof0b21eb2021-02-22 19:18:51 +0000270/**
271 * board_fdt_chosen_bootargs - boards may override this function to use
272 * alternative kernel command line arguments
273 */
274__weak char *board_fdt_chosen_bootargs(void)
275{
276 return env_get("bootargs");
277}
278
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900279int fdt_chosen(void *fdt)
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400280{
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400281 int nodeoffset;
282 int err;
Gerald Van Baren35ec3982007-05-25 22:08:57 -0400283 char *str; /* used to set string properties */
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400284
285 err = fdt_check_header(fdt);
286 if (err < 0) {
Gerald Van Baren5fe6be62007-08-07 21:14:22 -0400287 printf("fdt_chosen: %s\n", fdt_strerror(err));
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400288 return err;
289 }
290
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900291 /* find or create "/chosen" node. */
292 nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
293 if (nodeoffset < 0)
294 return nodeoffset;
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400295
Niko Maunof0b21eb2021-02-22 19:18:51 +0000296 str = board_fdt_chosen_bootargs();
297
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900298 if (str) {
299 err = fdt_setprop(fdt, nodeoffset, "bootargs", str,
300 strlen(str) + 1);
301 if (err < 0) {
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900302 printf("WARNING: could not set bootargs %s.\n",
303 fdt_strerror(err));
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900304 return err;
305 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400306 }
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500307
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900308 return fdt_fixup_stdout(fdt, nodeoffset);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400309}
310
Kumar Galae93becf2007-11-03 19:46:28 -0500311void do_fixup_by_path(void *fdt, const char *path, const char *prop,
312 const void *val, int len, int create)
313{
314#if defined(DEBUG)
315 int i;
Kumar Galad9ad1152008-02-13 15:09:58 -0600316 debug("Updating property '%s/%s' = ", path, prop);
Kumar Galae93becf2007-11-03 19:46:28 -0500317 for (i = 0; i < len; i++)
318 debug(" %.2x", *(u8*)(val+i));
319 debug("\n");
320#endif
321 int rc = fdt_find_and_setprop(fdt, path, prop, val, len, create);
322 if (rc)
323 printf("Unable to update property %s:%s, err=%s\n",
324 path, prop, fdt_strerror(rc));
325}
326
327void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop,
328 u32 val, int create)
329{
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000330 fdt32_t tmp = cpu_to_fdt32(val);
331 do_fixup_by_path(fdt, path, prop, &tmp, sizeof(tmp), create);
Kumar Galae93becf2007-11-03 19:46:28 -0500332}
333
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600334void do_fixup_by_prop(void *fdt,
335 const char *pname, const void *pval, int plen,
336 const char *prop, const void *val, int len,
337 int create)
338{
339 int off;
340#if defined(DEBUG)
341 int i;
Kumar Galad9ad1152008-02-13 15:09:58 -0600342 debug("Updating property '%s' = ", prop);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600343 for (i = 0; i < len; i++)
344 debug(" %.2x", *(u8*)(val+i));
345 debug("\n");
346#endif
347 off = fdt_node_offset_by_prop_value(fdt, -1, pname, pval, plen);
348 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000349 if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600350 fdt_setprop(fdt, off, prop, val, len);
351 off = fdt_node_offset_by_prop_value(fdt, off, pname, pval, plen);
352 }
353}
354
355void do_fixup_by_prop_u32(void *fdt,
356 const char *pname, const void *pval, int plen,
357 const char *prop, u32 val, int create)
358{
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000359 fdt32_t tmp = cpu_to_fdt32(val);
360 do_fixup_by_prop(fdt, pname, pval, plen, prop, &tmp, 4, create);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600361}
362
363void do_fixup_by_compat(void *fdt, const char *compat,
364 const char *prop, const void *val, int len, int create)
365{
366 int off = -1;
367#if defined(DEBUG)
368 int i;
Kumar Galad9ad1152008-02-13 15:09:58 -0600369 debug("Updating property '%s' = ", prop);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600370 for (i = 0; i < len; i++)
371 debug(" %.2x", *(u8*)(val+i));
372 debug("\n");
373#endif
374 off = fdt_node_offset_by_compatible(fdt, -1, compat);
375 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000376 if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600377 fdt_setprop(fdt, off, prop, val, len);
378 off = fdt_node_offset_by_compatible(fdt, off, compat);
379 }
380}
381
382void do_fixup_by_compat_u32(void *fdt, const char *compat,
383 const char *prop, u32 val, int create)
384{
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000385 fdt32_t tmp = cpu_to_fdt32(val);
386 do_fixup_by_compat(fdt, compat, prop, &tmp, 4, create);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600387}
388
Masahiro Yamada63c09412016-11-26 11:02:10 +0900389#ifdef CONFIG_ARCH_FIXUP_FDT_MEMORY
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900390/*
391 * fdt_pack_reg - pack address and size array into the "reg"-suitable stream
392 */
Simon Glass41f09bb2014-10-23 18:58:55 -0600393static int fdt_pack_reg(const void *fdt, void *buf, u64 *address, u64 *size,
394 int n)
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900395{
396 int i;
Hans de Goedeffccb842014-11-28 14:23:51 +0100397 int address_cells = fdt_address_cells(fdt, 0);
398 int size_cells = fdt_size_cells(fdt, 0);
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900399 char *p = buf;
400
401 for (i = 0; i < n; i++) {
Hans de Goedeffccb842014-11-28 14:23:51 +0100402 if (address_cells == 2)
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900403 *(fdt64_t *)p = cpu_to_fdt64(address[i]);
404 else
405 *(fdt32_t *)p = cpu_to_fdt32(address[i]);
Hans de Goedeffccb842014-11-28 14:23:51 +0100406 p += 4 * address_cells;
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900407
Hans de Goedeffccb842014-11-28 14:23:51 +0100408 if (size_cells == 2)
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900409 *(fdt64_t *)p = cpu_to_fdt64(size[i]);
410 else
411 *(fdt32_t *)p = cpu_to_fdt32(size[i]);
Hans de Goedeffccb842014-11-28 14:23:51 +0100412 p += 4 * size_cells;
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900413 }
414
415 return p - (char *)buf;
416}
417
Ramon Fried6b6f2162018-08-14 00:35:42 +0300418#if CONFIG_NR_DRAM_BANKS > 4
419#define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS
420#else
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000421#define MEMORY_BANKS_MAX 4
Ramon Fried6b6f2162018-08-14 00:35:42 +0300422#endif
Michal Simek5e1a3be2021-08-10 09:21:54 +0200423
424/**
425 * fdt_fixup_memory_banks - Update DT memory node
426 * @blob: Pointer to DT blob
427 * @start: Pointer to memory start addresses array
428 * @size: Pointer to memory sizes array
429 * @banks: Number of memory banks
430 *
431 * Return: 0 on success, negative value on failure
432 *
433 * Based on the passed number of banks and arrays, the function is able to
434 * update existing DT memory nodes to match run time detected/changed memory
435 * configuration. Implementation is handling one specific case with only one
436 * memory node where multiple tuples could be added/updated.
437 * The case where multiple memory nodes with a single tuple (base, size) are
438 * used, this function is only updating the first memory node without removing
439 * others.
440 */
John Rigbya6bd9e82010-10-13 13:57:33 -0600441int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
442{
443 int err, nodeoffset;
Thierry Reding6d29cc72018-01-30 11:34:17 +0100444 int len, i;
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000445 u8 tmp[MEMORY_BANKS_MAX * 16]; /* Up to 64-bit address + 64-bit size */
Kumar Gala3c927282007-11-26 14:57:45 -0600446
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000447 if (banks > MEMORY_BANKS_MAX) {
448 printf("%s: num banks %d exceeds hardcoded limit %d."
449 " Recompile with higher MEMORY_BANKS_MAX?\n",
450 __FUNCTION__, banks, MEMORY_BANKS_MAX);
451 return -1;
452 }
453
Kumar Gala3c927282007-11-26 14:57:45 -0600454 err = fdt_check_header(blob);
455 if (err < 0) {
456 printf("%s: %s\n", __FUNCTION__, fdt_strerror(err));
457 return err;
458 }
459
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900460 /* find or create "/memory" node. */
461 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
462 if (nodeoffset < 0)
Miao Yan35940de2013-11-28 17:51:39 +0800463 return nodeoffset;
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900464
Kumar Gala3c927282007-11-26 14:57:45 -0600465 err = fdt_setprop(blob, nodeoffset, "device_type", "memory",
466 sizeof("memory"));
467 if (err < 0) {
468 printf("WARNING: could not set %s %s.\n", "device_type",
469 fdt_strerror(err));
470 return err;
471 }
472
Thierry Redinged5af032018-02-15 19:05:59 +0100473 for (i = 0; i < banks; i++) {
474 if (start[i] == 0 && size[i] == 0)
475 break;
476 }
477
478 banks = i;
479
Andre Przywara5c1cf892015-06-21 00:29:54 +0100480 if (!banks)
481 return 0;
482
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900483 len = fdt_pack_reg(blob, tmp, start, size, banks);
Kumar Gala3c927282007-11-26 14:57:45 -0600484
485 err = fdt_setprop(blob, nodeoffset, "reg", tmp, len);
486 if (err < 0) {
487 printf("WARNING: could not set %s %s.\n",
488 "reg", fdt_strerror(err));
489 return err;
490 }
491 return 0;
492}
Igor Opaniuk949b5a92019-12-03 14:04:46 +0200493
494int fdt_set_usable_memory(void *blob, u64 start[], u64 size[], int areas)
495{
496 int err, nodeoffset;
497 int len;
498 u8 tmp[8 * 16]; /* Up to 64-bit address + 64-bit size */
499
500 if (areas > 8) {
501 printf("%s: num areas %d exceeds hardcoded limit %d\n",
502 __func__, areas, 8);
503 return -1;
504 }
505
506 err = fdt_check_header(blob);
507 if (err < 0) {
508 printf("%s: %s\n", __func__, fdt_strerror(err));
509 return err;
510 }
511
512 /* find or create "/memory" node. */
513 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
514 if (nodeoffset < 0)
515 return nodeoffset;
516
517 len = fdt_pack_reg(blob, tmp, start, size, areas);
518
519 err = fdt_setprop(blob, nodeoffset, "linux,usable-memory", tmp, len);
520 if (err < 0) {
521 printf("WARNING: could not set %s %s.\n",
522 "reg", fdt_strerror(err));
523 return err;
524 }
525
526 return 0;
527}
Masahiro Yamada63c09412016-11-26 11:02:10 +0900528#endif
Kumar Gala3c927282007-11-26 14:57:45 -0600529
John Rigbya6bd9e82010-10-13 13:57:33 -0600530int fdt_fixup_memory(void *blob, u64 start, u64 size)
531{
532 return fdt_fixup_memory_banks(blob, &start, &size, 1);
533}
534
Kumar Galaba37aa02008-08-19 15:41:18 -0500535void fdt_fixup_ethernet(void *fdt)
Kumar Galaab544632007-11-21 11:11:03 -0600536{
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530537 int i = 0, j, prop;
Bin Mengbc393a72015-11-03 04:24:41 -0800538 char *tmp, *end;
Stephen Warren064d55f2013-05-27 18:01:19 +0000539 char mac[16];
Kumar Galaab544632007-11-21 11:11:03 -0600540 const char *path;
oliver@schinagl.nla40db6d2016-11-25 16:30:19 +0100541 unsigned char mac_addr[ARP_HLEN];
Bin Mengbc393a72015-11-03 04:24:41 -0800542 int offset;
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530543#ifdef FDT_SEQ_MACADDR_FROM_ENV
544 int nodeoff;
545 const struct fdt_property *fdt_prop;
546#endif
Kumar Galaab544632007-11-21 11:11:03 -0600547
Lev Iserovicha434fd12016-01-07 18:04:16 -0500548 if (fdt_path_offset(fdt, "/aliases") < 0)
Kumar Galaba37aa02008-08-19 15:41:18 -0500549 return;
550
Lev Iserovicha434fd12016-01-07 18:04:16 -0500551 /* Cycle through all aliases */
552 for (prop = 0; ; prop++) {
Bin Mengbc393a72015-11-03 04:24:41 -0800553 const char *name;
Bin Mengbc393a72015-11-03 04:24:41 -0800554
Lev Iserovicha434fd12016-01-07 18:04:16 -0500555 /* FDT might have been edited, recompute the offset */
556 offset = fdt_first_property_offset(fdt,
557 fdt_path_offset(fdt, "/aliases"));
558 /* Select property number 'prop' */
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530559 for (j = 0; j < prop; j++)
Lev Iserovicha434fd12016-01-07 18:04:16 -0500560 offset = fdt_next_property_offset(fdt, offset);
561
562 if (offset < 0)
563 break;
564
Bin Mengbc393a72015-11-03 04:24:41 -0800565 path = fdt_getprop_by_offset(fdt, offset, &name, NULL);
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200566 if (!strncmp(name, "ethernet", 8)) {
567 /* Treat plain "ethernet" same as "ethernet0". */
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530568 if (!strcmp(name, "ethernet")
569#ifdef FDT_SEQ_MACADDR_FROM_ENV
570 || !strcmp(name, "ethernet0")
571#endif
572 )
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200573 i = 0;
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530574#ifndef FDT_SEQ_MACADDR_FROM_ENV
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200575 else
576 i = trailing_strtol(name);
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530577#endif
Bin Mengbc393a72015-11-03 04:24:41 -0800578 if (i != -1) {
579 if (i == 0)
580 strcpy(mac, "ethaddr");
581 else
582 sprintf(mac, "eth%daddr", i);
583 } else {
584 continue;
585 }
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530586#ifdef FDT_SEQ_MACADDR_FROM_ENV
587 nodeoff = fdt_path_offset(fdt, path);
588 fdt_prop = fdt_get_property(fdt, nodeoff, "status",
589 NULL);
590 if (fdt_prop && !strcmp(fdt_prop->data, "disabled"))
591 continue;
592 i++;
593#endif
Simon Glass00caae62017-08-03 12:22:12 -0600594 tmp = env_get(mac);
Bin Mengbc393a72015-11-03 04:24:41 -0800595 if (!tmp)
596 continue;
597
598 for (j = 0; j < 6; j++) {
599 mac_addr[j] = tmp ?
Simon Glass7e5f4602021-07-24 09:03:29 -0600600 hextoul(tmp, &end) : 0;
Bin Mengbc393a72015-11-03 04:24:41 -0800601 if (tmp)
602 tmp = (*end) ? end + 1 : end;
603 }
604
605 do_fixup_by_path(fdt, path, "mac-address",
606 &mac_addr, 6, 0);
607 do_fixup_by_path(fdt, path, "local-mac-address",
608 &mac_addr, 6, 1);
Dan Murphyb1f49ab2013-10-02 14:00:15 -0500609 }
Kumar Galaab544632007-11-21 11:11:03 -0600610 }
611}
Anton Vorontsov18e69a32008-03-14 23:20:18 +0300612
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100613int fdt_record_loadable(void *blob, u32 index, const char *name,
614 uintptr_t load_addr, u32 size, uintptr_t entry_point,
Michal Simekbe2d1a82021-05-27 11:40:09 +0200615 const char *type, const char *os, const char *arch)
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100616{
617 int err, node;
618
619 err = fdt_check_header(blob);
620 if (err < 0) {
621 printf("%s: %s\n", __func__, fdt_strerror(err));
622 return err;
623 }
624
625 /* find or create "/fit-images" node */
626 node = fdt_find_or_add_subnode(blob, 0, "fit-images");
627 if (node < 0)
628 return node;
629
630 /* find or create "/fit-images/<name>" node */
631 node = fdt_find_or_add_subnode(blob, node, name);
632 if (node < 0)
633 return node;
634
Michal Simek13d1ca82020-09-03 12:44:51 +0200635 fdt_setprop_u64(blob, node, "load", load_addr);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100636 if (entry_point != -1)
Michal Simek13d1ca82020-09-03 12:44:51 +0200637 fdt_setprop_u64(blob, node, "entry", entry_point);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100638 fdt_setprop_u32(blob, node, "size", size);
639 if (type)
640 fdt_setprop_string(blob, node, "type", type);
641 if (os)
642 fdt_setprop_string(blob, node, "os", os);
Michal Simekbe2d1a82021-05-27 11:40:09 +0200643 if (arch)
644 fdt_setprop_string(blob, node, "arch", arch);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100645
646 return node;
647}
648
Kumar Gala3082d232008-08-15 08:24:42 -0500649/* Resize the fdt to its actual size + a bit of padding */
Hannes Schmelzeref476832016-09-20 18:10:43 +0200650int fdt_shrink_to_minimum(void *blob, uint extrasize)
Kumar Gala3082d232008-08-15 08:24:42 -0500651{
652 int i;
653 uint64_t addr, size;
654 int total, ret;
655 uint actualsize;
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200656 int fdt_memrsv = 0;
Kumar Gala3082d232008-08-15 08:24:42 -0500657
658 if (!blob)
659 return 0;
660
661 total = fdt_num_mem_rsv(blob);
662 for (i = 0; i < total; i++) {
663 fdt_get_mem_rsv(blob, i, &addr, &size);
Simon Glass92549352011-09-17 06:48:58 +0000664 if (addr == (uintptr_t)blob) {
Kumar Gala3082d232008-08-15 08:24:42 -0500665 fdt_del_mem_rsv(blob, i);
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200666 fdt_memrsv = 1;
Kumar Gala3082d232008-08-15 08:24:42 -0500667 break;
668 }
669 }
670
Peter Korsgaardf242a082008-10-28 08:26:52 +0100671 /*
672 * Calculate the actual size of the fdt
Feng Wang3840ebf2010-08-03 16:22:43 +0200673 * plus the size needed for 5 fdt_add_mem_rsv, one
674 * for the fdt itself and 4 for a possible initrd
675 * ((initrd-start + initrd-end) * 2 (name & value))
Peter Korsgaardf242a082008-10-28 08:26:52 +0100676 */
Kumar Gala3082d232008-08-15 08:24:42 -0500677 actualsize = fdt_off_dt_strings(blob) +
Feng Wang3840ebf2010-08-03 16:22:43 +0200678 fdt_size_dt_strings(blob) + 5 * sizeof(struct fdt_reserve_entry);
Kumar Gala3082d232008-08-15 08:24:42 -0500679
Hannes Schmelzeref476832016-09-20 18:10:43 +0200680 actualsize += extrasize;
Kumar Gala3082d232008-08-15 08:24:42 -0500681 /* Make it so the fdt ends on a page boundary */
Simon Glass92549352011-09-17 06:48:58 +0000682 actualsize = ALIGN(actualsize + ((uintptr_t)blob & 0xfff), 0x1000);
683 actualsize = actualsize - ((uintptr_t)blob & 0xfff);
Kumar Gala3082d232008-08-15 08:24:42 -0500684
685 /* Change the fdt header to reflect the correct size */
686 fdt_set_totalsize(blob, actualsize);
687
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200688 if (fdt_memrsv) {
689 /* Add the new reservation */
690 ret = fdt_add_mem_rsv(blob, map_to_sysmem(blob), actualsize);
691 if (ret < 0)
692 return ret;
693 }
Kumar Gala3082d232008-08-15 08:24:42 -0500694
695 return actualsize;
696}
Kumar Gala8ab451c2008-10-22 23:33:56 -0500697
Marek Behún574506c2021-11-26 14:57:15 +0100698/**
699 * fdt_delete_disabled_nodes: Delete all nodes with status == "disabled"
700 *
701 * @blob: ptr to device tree
702 */
703int fdt_delete_disabled_nodes(void *blob)
704{
705 while (1) {
706 int ret, offset;
707
708 offset = fdt_node_offset_by_prop_value(blob, -1, "status",
709 "disabled", 9);
710 if (offset < 0)
711 break;
712
713 ret = fdt_del_node(blob, offset);
714 if (ret < 0)
715 return ret;
716 }
717
718 return 0;
719}
720
Kumar Gala8ab451c2008-10-22 23:33:56 -0500721#ifdef CONFIG_PCI
Kumar Galacfd700b2009-08-05 09:03:54 -0500722#define CONFIG_SYS_PCI_NR_INBOUND_WIN 4
Kumar Gala8ab451c2008-10-22 23:33:56 -0500723
724#define FDT_PCI_PREFETCH (0x40000000)
725#define FDT_PCI_MEM32 (0x02000000)
726#define FDT_PCI_IO (0x01000000)
727#define FDT_PCI_MEM64 (0x03000000)
728
729int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose) {
730
731 int addrcell, sizecell, len, r;
732 u32 *dma_range;
733 /* sized based on pci addr cells, size-cells, & address-cells */
734 u32 dma_ranges[(3 + 2 + 2) * CONFIG_SYS_PCI_NR_INBOUND_WIN];
735
736 addrcell = fdt_getprop_u32_default(blob, "/", "#address-cells", 1);
737 sizecell = fdt_getprop_u32_default(blob, "/", "#size-cells", 1);
738
739 dma_range = &dma_ranges[0];
740 for (r = 0; r < hose->region_count; r++) {
741 u64 bus_start, phys_start, size;
742
Kumar Galaff4e66e2009-02-06 09:49:31 -0600743 /* skip if !PCI_REGION_SYS_MEMORY */
744 if (!(hose->regions[r].flags & PCI_REGION_SYS_MEMORY))
Kumar Gala8ab451c2008-10-22 23:33:56 -0500745 continue;
746
747 bus_start = (u64)hose->regions[r].bus_start;
748 phys_start = (u64)hose->regions[r].phys_start;
749 size = (u64)hose->regions[r].size;
750
751 dma_range[0] = 0;
Kumar Galacfd700b2009-08-05 09:03:54 -0500752 if (size >= 0x100000000ull)
Marek Vasut867aaf62019-07-09 02:49:29 +0200753 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM64);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500754 else
Marek Vasut867aaf62019-07-09 02:49:29 +0200755 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM32);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500756 if (hose->regions[r].flags & PCI_REGION_PREFETCH)
Marek Vasut867aaf62019-07-09 02:49:29 +0200757 dma_range[0] |= cpu_to_fdt32(FDT_PCI_PREFETCH);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500758#ifdef CONFIG_SYS_PCI_64BIT
Marek Vasut867aaf62019-07-09 02:49:29 +0200759 dma_range[1] = cpu_to_fdt32(bus_start >> 32);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500760#else
761 dma_range[1] = 0;
762#endif
Marek Vasut867aaf62019-07-09 02:49:29 +0200763 dma_range[2] = cpu_to_fdt32(bus_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500764
765 if (addrcell == 2) {
Marek Vasut867aaf62019-07-09 02:49:29 +0200766 dma_range[3] = cpu_to_fdt32(phys_start >> 32);
767 dma_range[4] = cpu_to_fdt32(phys_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500768 } else {
Marek Vasut867aaf62019-07-09 02:49:29 +0200769 dma_range[3] = cpu_to_fdt32(phys_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500770 }
771
772 if (sizecell == 2) {
Marek Vasut867aaf62019-07-09 02:49:29 +0200773 dma_range[3 + addrcell + 0] =
774 cpu_to_fdt32(size >> 32);
775 dma_range[3 + addrcell + 1] =
776 cpu_to_fdt32(size & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500777 } else {
Marek Vasut867aaf62019-07-09 02:49:29 +0200778 dma_range[3 + addrcell + 0] =
779 cpu_to_fdt32(size & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500780 }
781
782 dma_range += (3 + addrcell + sizecell);
783 }
784
785 len = dma_range - &dma_ranges[0];
786 if (len)
787 fdt_setprop(blob, phb_off, "dma-ranges", &dma_ranges[0], len*4);
788
789 return 0;
790}
791#endif
Stefan Roese30d45c02009-10-21 11:59:52 +0200792
Matthew McClintockcb2707a2010-10-13 13:39:26 +0200793int fdt_increase_size(void *fdt, int add_len)
794{
795 int newlen;
796
797 newlen = fdt_totalsize(fdt) + add_len;
798
799 /* Open in place with a new len */
800 return fdt_open_into(fdt, fdt, newlen);
801}
802
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100803#ifdef CONFIG_FDT_FIXUP_PARTITIONS
804#include <jffs2/load_kernel.h>
805#include <mtd_node.h>
806
Michal Simekcd1457d2018-07-31 14:31:04 +0200807static int fdt_del_subnodes(const void *blob, int parent_offset)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100808{
809 int off, ndepth;
810 int ret;
811
812 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth);
813 (off >= 0) && (ndepth > 0);
814 off = fdt_next_node(blob, off, &ndepth)) {
815 if (ndepth == 1) {
816 debug("delete %s: offset: %x\n",
817 fdt_get_name(blob, off, 0), off);
818 ret = fdt_del_node((void *)blob, off);
819 if (ret < 0) {
820 printf("Can't delete node: %s\n",
821 fdt_strerror(ret));
822 return ret;
823 } else {
824 ndepth = 0;
825 off = parent_offset;
826 }
827 }
828 }
829 return 0;
830}
831
Michal Simekcd1457d2018-07-31 14:31:04 +0200832static int fdt_del_partitions(void *blob, int parent_offset)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100833{
834 const void *prop;
835 int ndepth = 0;
836 int off;
837 int ret;
838
839 off = fdt_next_node(blob, parent_offset, &ndepth);
840 if (off > 0 && ndepth == 1) {
841 prop = fdt_getprop(blob, off, "label", NULL);
842 if (prop == NULL) {
843 /*
844 * Could not find label property, nand {}; node?
845 * Check subnode, delete partitions there if any.
846 */
847 return fdt_del_partitions(blob, off);
848 } else {
849 ret = fdt_del_subnodes(blob, parent_offset);
850 if (ret < 0) {
851 printf("Can't remove subnodes: %s\n",
852 fdt_strerror(ret));
853 return ret;
854 }
855 }
856 }
857 return 0;
858}
859
Masahiro Yamada8ce8e422020-07-15 19:35:47 +0900860static int fdt_node_set_part_info(void *blob, int parent_offset,
861 struct mtd_device *dev)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100862{
863 struct list_head *pentry;
864 struct part_info *part;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100865 int off, ndepth = 0;
866 int part_num, ret;
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300867 int sizecell;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100868 char buf[64];
869
870 ret = fdt_del_partitions(blob, parent_offset);
871 if (ret < 0)
872 return ret;
873
874 /*
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300875 * Check if size/address is 1 or 2 cells.
876 * We assume #address-cells and #size-cells have same value.
877 */
878 sizecell = fdt_getprop_u32_default_node(blob, parent_offset,
879 0, "#size-cells", 1);
880
881 /*
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100882 * Check if it is nand {}; subnode, adjust
883 * the offset in this case
884 */
885 off = fdt_next_node(blob, parent_offset, &ndepth);
886 if (off > 0 && ndepth == 1)
887 parent_offset = off;
888
889 part_num = 0;
890 list_for_each_prev(pentry, &dev->parts) {
891 int newoff;
892
893 part = list_entry(pentry, struct part_info, link);
894
Scott Wood06503f12013-10-15 17:41:27 -0500895 debug("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100896 part_num, part->name, part->size,
897 part->offset, part->mask_flags);
898
Scott Wood06503f12013-10-15 17:41:27 -0500899 sprintf(buf, "partition@%llx", part->offset);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100900add_sub:
901 ret = fdt_add_subnode(blob, parent_offset, buf);
902 if (ret == -FDT_ERR_NOSPACE) {
903 ret = fdt_increase_size(blob, 512);
904 if (!ret)
905 goto add_sub;
906 else
907 goto err_size;
908 } else if (ret < 0) {
909 printf("Can't add partition node: %s\n",
910 fdt_strerror(ret));
911 return ret;
912 }
913 newoff = ret;
914
915 /* Check MTD_WRITEABLE_CMD flag */
916 if (part->mask_flags & 1) {
917add_ro:
918 ret = fdt_setprop(blob, newoff, "read_only", NULL, 0);
919 if (ret == -FDT_ERR_NOSPACE) {
920 ret = fdt_increase_size(blob, 512);
921 if (!ret)
922 goto add_ro;
923 else
924 goto err_size;
925 } else if (ret < 0)
926 goto err_prop;
927 }
928
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100929add_reg:
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300930 if (sizecell == 2) {
931 ret = fdt_setprop_u64(blob, newoff,
932 "reg", part->offset);
933 if (!ret)
934 ret = fdt_appendprop_u64(blob, newoff,
935 "reg", part->size);
936 } else {
937 ret = fdt_setprop_u32(blob, newoff,
938 "reg", part->offset);
939 if (!ret)
940 ret = fdt_appendprop_u32(blob, newoff,
941 "reg", part->size);
942 }
943
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100944 if (ret == -FDT_ERR_NOSPACE) {
945 ret = fdt_increase_size(blob, 512);
946 if (!ret)
947 goto add_reg;
948 else
949 goto err_size;
950 } else if (ret < 0)
951 goto err_prop;
952
953add_label:
954 ret = fdt_setprop_string(blob, newoff, "label", part->name);
955 if (ret == -FDT_ERR_NOSPACE) {
956 ret = fdt_increase_size(blob, 512);
957 if (!ret)
958 goto add_label;
959 else
960 goto err_size;
961 } else if (ret < 0)
962 goto err_prop;
963
964 part_num++;
965 }
966 return 0;
967err_size:
968 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
969 return ret;
970err_prop:
971 printf("Can't add property: %s\n", fdt_strerror(ret));
972 return ret;
973}
974
975/*
976 * Update partitions in nor/nand nodes using info from
977 * mtdparts environment variable. The nodes to update are
978 * specified by node_info structure which contains mtd device
979 * type and compatible string: E. g. the board code in
980 * ft_board_setup() could use:
981 *
982 * struct node_info nodes[] = {
983 * { "fsl,mpc5121-nfc", MTD_DEV_TYPE_NAND, },
984 * { "cfi-flash", MTD_DEV_TYPE_NOR, },
985 * };
986 *
987 * fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
988 */
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900989void fdt_fixup_mtdparts(void *blob, const struct node_info *node_info,
990 int node_info_size)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100991{
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100992 struct mtd_device *dev;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100993 int i, idx;
994 int noff;
Masahiro Yamada53a89662020-07-17 10:46:18 +0900995 bool inited = false;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100996
997 for (i = 0; i < node_info_size; i++) {
998 idx = 0;
Masahiro Yamada7d8073e2020-07-17 10:46:19 +0900999 noff = -1;
1000
1001 while ((noff = fdt_node_offset_by_compatible(blob, noff,
1002 node_info[i].compat)) >= 0) {
1003 const char *prop;
1004
1005 prop = fdt_getprop(blob, noff, "status", NULL);
1006 if (prop && !strcmp(prop, "disabled"))
1007 continue;
1008
Anatolij Gustschin3c950e22010-03-16 17:10:05 +01001009 debug("%s: %s, mtd dev type %d\n",
1010 fdt_get_name(blob, noff, 0),
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +09001011 node_info[i].compat, node_info[i].type);
Masahiro Yamada53a89662020-07-17 10:46:18 +09001012
1013 if (!inited) {
1014 if (mtdparts_init() != 0)
1015 return;
1016 inited = true;
1017 }
1018
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +09001019 dev = device_find(node_info[i].type, idx++);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +01001020 if (dev) {
1021 if (fdt_node_set_part_info(blob, noff, dev))
1022 return; /* return on error */
1023 }
Anatolij Gustschin3c950e22010-03-16 17:10:05 +01001024 }
1025 }
1026}
1027#endif
Kumar Gala49b97d92010-03-30 10:19:26 -05001028
1029void fdt_del_node_and_alias(void *blob, const char *alias)
1030{
1031 int off = fdt_path_offset(blob, alias);
1032
1033 if (off < 0)
1034 return;
1035
1036 fdt_del_node(blob, off);
1037
1038 off = fdt_path_offset(blob, "/aliases");
1039 fdt_delprop(blob, off, alias);
1040}
Kumar Galaa0342c02010-06-16 14:27:38 -05001041
Kumar Galaa0342c02010-06-16 14:27:38 -05001042/* Max address size we deal with */
1043#define OF_MAX_ADDR_CELLS 4
Bin Menga0ae3802015-12-07 01:39:47 -08001044#define OF_BAD_ADDR FDT_ADDR_T_NONE
Dario Binacchia47abd72021-05-01 17:05:26 +02001045#define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
1046 (ns) > 0)
Kumar Galaa0342c02010-06-16 14:27:38 -05001047
1048/* Debug utility */
1049#ifdef DEBUG
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001050static void of_dump_addr(const char *s, const fdt32_t *addr, int na)
Kumar Galaa0342c02010-06-16 14:27:38 -05001051{
1052 printf("%s", s);
1053 while(na--)
1054 printf(" %08x", *(addr++));
1055 printf("\n");
1056}
1057#else
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001058static void of_dump_addr(const char *s, const fdt32_t *addr, int na) { }
Kumar Galaa0342c02010-06-16 14:27:38 -05001059#endif
1060
Paul Burton0a222d52016-05-17 07:43:24 +01001061/**
1062 * struct of_bus - Callbacks for bus specific translators
Paul Burton49717b12016-05-17 07:43:25 +01001063 * @name: A string used to identify this bus in debug output.
1064 * @addresses: The name of the DT property from which addresses are
1065 * to be read, typically "reg".
Paul Burton0a222d52016-05-17 07:43:24 +01001066 * @match: Return non-zero if the node whose parent is at
1067 * parentoffset in the FDT blob corresponds to a bus
1068 * of this type, otherwise return zero. If NULL a match
1069 * is assumed.
Paul Burton49717b12016-05-17 07:43:25 +01001070 * @count_cells:Count how many cells (be32 values) a node whose parent
1071 * is at parentoffset in the FDT blob will require to
1072 * represent its address (written to *addrc) & size
1073 * (written to *sizec).
1074 * @map: Map the address addr from the address space of this
1075 * bus to that of its parent, making use of the ranges
1076 * read from DT to an array at range. na and ns are the
1077 * number of cells (be32 values) used to hold and address
1078 * or size, respectively, for this bus. pna is the number
1079 * of cells used to hold an address for the parent bus.
1080 * Returns the address in the address space of the parent
1081 * bus.
1082 * @translate: Update the value of the address cells at addr within an
1083 * FDT by adding offset to it. na specifies the number of
1084 * cells used to hold the address being translated. Returns
1085 * zero on success, non-zero on error.
Paul Burton0a222d52016-05-17 07:43:24 +01001086 *
1087 * Each bus type will include a struct of_bus in the of_busses array,
1088 * providing implementations of some or all of the functions used to
1089 * match the bus & handle address translation for its children.
1090 */
Kumar Galaa0342c02010-06-16 14:27:38 -05001091struct of_bus {
1092 const char *name;
1093 const char *addresses;
Stephen Warren11e44fc2016-08-05 09:47:50 -06001094 int (*match)(const void *blob, int parentoffset);
1095 void (*count_cells)(const void *blob, int parentoffset,
Kumar Galaa0342c02010-06-16 14:27:38 -05001096 int *addrc, int *sizec);
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001097 u64 (*map)(fdt32_t *addr, const fdt32_t *range,
Kumar Galaa0342c02010-06-16 14:27:38 -05001098 int na, int ns, int pna);
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001099 int (*translate)(fdt32_t *addr, u64 offset, int na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001100};
1101
1102/* Default translator (generic bus) */
Simon Glasseed36602017-05-18 20:09:26 -06001103void fdt_support_default_count_cells(const void *blob, int parentoffset,
Kumar Galaa0342c02010-06-16 14:27:38 -05001104 int *addrc, int *sizec)
1105{
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001106 const fdt32_t *prop;
Scott Wood6395f312010-08-12 18:37:39 -05001107
Simon Glass933cdbb2014-10-23 18:58:57 -06001108 if (addrc)
1109 *addrc = fdt_address_cells(blob, parentoffset);
Scott Wood6395f312010-08-12 18:37:39 -05001110
1111 if (sizec) {
1112 prop = fdt_getprop(blob, parentoffset, "#size-cells", NULL);
1113 if (prop)
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001114 *sizec = be32_to_cpup(prop);
Scott Wood6395f312010-08-12 18:37:39 -05001115 else
1116 *sizec = 1;
1117 }
Kumar Galaa0342c02010-06-16 14:27:38 -05001118}
1119
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001120static u64 of_bus_default_map(fdt32_t *addr, const fdt32_t *range,
Kumar Galaa0342c02010-06-16 14:27:38 -05001121 int na, int ns, int pna)
1122{
1123 u64 cp, s, da;
1124
Simon Glasseed36602017-05-18 20:09:26 -06001125 cp = fdt_read_number(range, na);
1126 s = fdt_read_number(range + na + pna, ns);
1127 da = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001128
Sekhar Norid8e9cf42018-12-06 15:20:47 +05301129 debug("OF: default map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
Kumar Galaa0342c02010-06-16 14:27:38 -05001130
1131 if (da < cp || da >= (cp + s))
1132 return OF_BAD_ADDR;
1133 return da - cp;
1134}
1135
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001136static int of_bus_default_translate(fdt32_t *addr, u64 offset, int na)
Kumar Galaa0342c02010-06-16 14:27:38 -05001137{
Simon Glasseed36602017-05-18 20:09:26 -06001138 u64 a = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001139 memset(addr, 0, na * 4);
1140 a += offset;
1141 if (na > 1)
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001142 addr[na - 2] = cpu_to_fdt32(a >> 32);
1143 addr[na - 1] = cpu_to_fdt32(a & 0xffffffffu);
Kumar Galaa0342c02010-06-16 14:27:38 -05001144
1145 return 0;
1146}
1147
Paul Burton0a222d52016-05-17 07:43:24 +01001148#ifdef CONFIG_OF_ISA_BUS
1149
1150/* ISA bus translator */
Stephen Warren11e44fc2016-08-05 09:47:50 -06001151static int of_bus_isa_match(const void *blob, int parentoffset)
Paul Burton0a222d52016-05-17 07:43:24 +01001152{
1153 const char *name;
1154
1155 name = fdt_get_name(blob, parentoffset, NULL);
1156 if (!name)
1157 return 0;
1158
1159 return !strcmp(name, "isa");
1160}
1161
Stephen Warren11e44fc2016-08-05 09:47:50 -06001162static void of_bus_isa_count_cells(const void *blob, int parentoffset,
Paul Burton0a222d52016-05-17 07:43:24 +01001163 int *addrc, int *sizec)
1164{
1165 if (addrc)
1166 *addrc = 2;
1167 if (sizec)
1168 *sizec = 1;
1169}
1170
1171static u64 of_bus_isa_map(fdt32_t *addr, const fdt32_t *range,
1172 int na, int ns, int pna)
1173{
1174 u64 cp, s, da;
1175
1176 /* Check address type match */
1177 if ((addr[0] ^ range[0]) & cpu_to_be32(1))
1178 return OF_BAD_ADDR;
1179
Simon Glasseed36602017-05-18 20:09:26 -06001180 cp = fdt_read_number(range + 1, na - 1);
1181 s = fdt_read_number(range + na + pna, ns);
1182 da = fdt_read_number(addr + 1, na - 1);
Paul Burton0a222d52016-05-17 07:43:24 +01001183
Sekhar Norid8e9cf42018-12-06 15:20:47 +05301184 debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
Paul Burton0a222d52016-05-17 07:43:24 +01001185
1186 if (da < cp || da >= (cp + s))
1187 return OF_BAD_ADDR;
1188 return da - cp;
1189}
1190
1191static int of_bus_isa_translate(fdt32_t *addr, u64 offset, int na)
1192{
1193 return of_bus_default_translate(addr + 1, offset, na - 1);
1194}
1195
1196#endif /* CONFIG_OF_ISA_BUS */
1197
Kumar Galaa0342c02010-06-16 14:27:38 -05001198/* Array of bus specific translators */
1199static struct of_bus of_busses[] = {
Paul Burton0a222d52016-05-17 07:43:24 +01001200#ifdef CONFIG_OF_ISA_BUS
1201 /* ISA */
1202 {
1203 .name = "isa",
1204 .addresses = "reg",
1205 .match = of_bus_isa_match,
1206 .count_cells = of_bus_isa_count_cells,
1207 .map = of_bus_isa_map,
1208 .translate = of_bus_isa_translate,
1209 },
1210#endif /* CONFIG_OF_ISA_BUS */
Kumar Galaa0342c02010-06-16 14:27:38 -05001211 /* Default */
1212 {
1213 .name = "default",
1214 .addresses = "reg",
Simon Glasseed36602017-05-18 20:09:26 -06001215 .count_cells = fdt_support_default_count_cells,
Kumar Galaa0342c02010-06-16 14:27:38 -05001216 .map = of_bus_default_map,
1217 .translate = of_bus_default_translate,
1218 },
1219};
1220
Stephen Warren11e44fc2016-08-05 09:47:50 -06001221static struct of_bus *of_match_bus(const void *blob, int parentoffset)
Paul Burton0a222d52016-05-17 07:43:24 +01001222{
1223 struct of_bus *bus;
1224
1225 if (ARRAY_SIZE(of_busses) == 1)
1226 return of_busses;
1227
1228 for (bus = of_busses; bus; bus++) {
1229 if (!bus->match || bus->match(blob, parentoffset))
1230 return bus;
1231 }
1232
1233 /*
1234 * We should always have matched the default bus at least, since
1235 * it has a NULL match field. If we didn't then it somehow isn't
1236 * in the of_busses array or something equally catastrophic has
1237 * gone wrong.
1238 */
1239 assert(0);
1240 return NULL;
1241}
1242
Stephen Warren11e44fc2016-08-05 09:47:50 -06001243static int of_translate_one(const void *blob, int parent, struct of_bus *bus,
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001244 struct of_bus *pbus, fdt32_t *addr,
Kumar Galaa0342c02010-06-16 14:27:38 -05001245 int na, int ns, int pna, const char *rprop)
1246{
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001247 const fdt32_t *ranges;
Kumar Galaa0342c02010-06-16 14:27:38 -05001248 int rlen;
1249 int rone;
1250 u64 offset = OF_BAD_ADDR;
1251
1252 /* Normally, an absence of a "ranges" property means we are
1253 * crossing a non-translatable boundary, and thus the addresses
1254 * below the current not cannot be converted to CPU physical ones.
1255 * Unfortunately, while this is very clear in the spec, it's not
1256 * what Apple understood, and they do have things like /uni-n or
1257 * /ht nodes with no "ranges" property and a lot of perfectly
1258 * useable mapped devices below them. Thus we treat the absence of
1259 * "ranges" as equivalent to an empty "ranges" property which means
1260 * a 1:1 translation at that level. It's up to the caller not to try
1261 * to translate addresses that aren't supposed to be translated in
1262 * the first place. --BenH.
1263 */
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001264 ranges = fdt_getprop(blob, parent, rprop, &rlen);
Kumar Galaa0342c02010-06-16 14:27:38 -05001265 if (ranges == NULL || rlen == 0) {
Simon Glasseed36602017-05-18 20:09:26 -06001266 offset = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001267 memset(addr, 0, pna * 4);
1268 debug("OF: no ranges, 1:1 translation\n");
1269 goto finish;
1270 }
1271
1272 debug("OF: walking ranges...\n");
1273
1274 /* Now walk through the ranges */
1275 rlen /= 4;
1276 rone = na + pna + ns;
1277 for (; rlen >= rone; rlen -= rone, ranges += rone) {
1278 offset = bus->map(addr, ranges, na, ns, pna);
1279 if (offset != OF_BAD_ADDR)
1280 break;
1281 }
1282 if (offset == OF_BAD_ADDR) {
1283 debug("OF: not found !\n");
1284 return 1;
1285 }
1286 memcpy(addr, ranges + na, 4 * pna);
1287
1288 finish:
1289 of_dump_addr("OF: parent translation for:", addr, pna);
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001290 debug("OF: with offset: %llu\n", offset);
Kumar Galaa0342c02010-06-16 14:27:38 -05001291
1292 /* Translate it into parent bus space */
1293 return pbus->translate(addr, offset, pna);
1294}
1295
1296/*
1297 * Translate an address from the device-tree into a CPU physical address,
1298 * this walks up the tree and applies the various bus mappings on the
1299 * way.
1300 *
1301 * Note: We consider that crossing any level with #size-cells == 0 to mean
1302 * that translation is impossible (that is we are not dealing with a value
1303 * that can be mapped to a cpu physical address). This is not really specified
1304 * that way, but this is traditionally the way IBM at least do things
1305 */
Stephen Warren11e44fc2016-08-05 09:47:50 -06001306static u64 __of_translate_address(const void *blob, int node_offset,
1307 const fdt32_t *in_addr, const char *rprop)
Kumar Galaa0342c02010-06-16 14:27:38 -05001308{
1309 int parent;
1310 struct of_bus *bus, *pbus;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001311 fdt32_t addr[OF_MAX_ADDR_CELLS];
Kumar Galaa0342c02010-06-16 14:27:38 -05001312 int na, ns, pna, pns;
1313 u64 result = OF_BAD_ADDR;
1314
1315 debug("OF: ** translation for device %s **\n",
1316 fdt_get_name(blob, node_offset, NULL));
1317
1318 /* Get parent & match bus type */
1319 parent = fdt_parent_offset(blob, node_offset);
1320 if (parent < 0)
1321 goto bail;
Paul Burton0a222d52016-05-17 07:43:24 +01001322 bus = of_match_bus(blob, parent);
Kumar Galaa0342c02010-06-16 14:27:38 -05001323
1324 /* Cound address cells & copy address locally */
Scott Wood6395f312010-08-12 18:37:39 -05001325 bus->count_cells(blob, parent, &na, &ns);
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +01001326 if (!OF_CHECK_COUNTS(na, ns)) {
Kumar Galaa0342c02010-06-16 14:27:38 -05001327 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1328 fdt_get_name(blob, node_offset, NULL));
1329 goto bail;
1330 }
1331 memcpy(addr, in_addr, na * 4);
1332
1333 debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
1334 bus->name, na, ns, fdt_get_name(blob, parent, NULL));
1335 of_dump_addr("OF: translating address:", addr, na);
1336
1337 /* Translate */
1338 for (;;) {
1339 /* Switch to parent bus */
1340 node_offset = parent;
1341 parent = fdt_parent_offset(blob, node_offset);
1342
1343 /* If root, we have finished */
1344 if (parent < 0) {
1345 debug("OF: reached root node\n");
Simon Glasseed36602017-05-18 20:09:26 -06001346 result = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001347 break;
1348 }
1349
1350 /* Get new parent bus and counts */
Paul Burton0a222d52016-05-17 07:43:24 +01001351 pbus = of_match_bus(blob, parent);
Scott Wood6395f312010-08-12 18:37:39 -05001352 pbus->count_cells(blob, parent, &pna, &pns);
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +01001353 if (!OF_CHECK_COUNTS(pna, pns)) {
Kumar Galaa0342c02010-06-16 14:27:38 -05001354 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1355 fdt_get_name(blob, node_offset, NULL));
1356 break;
1357 }
1358
1359 debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
1360 pbus->name, pna, pns, fdt_get_name(blob, parent, NULL));
1361
1362 /* Apply bus translation */
1363 if (of_translate_one(blob, node_offset, bus, pbus,
1364 addr, na, ns, pna, rprop))
1365 break;
1366
1367 /* Complete the move up one level */
1368 na = pna;
1369 ns = pns;
1370 bus = pbus;
1371
1372 of_dump_addr("OF: one level translation:", addr, na);
1373 }
1374 bail:
1375
1376 return result;
1377}
1378
Stephen Warren11e44fc2016-08-05 09:47:50 -06001379u64 fdt_translate_address(const void *blob, int node_offset,
1380 const fdt32_t *in_addr)
Kumar Galaa0342c02010-06-16 14:27:38 -05001381{
1382 return __of_translate_address(blob, node_offset, in_addr, "ranges");
1383}
Kumar Gala75e73af2010-07-04 12:48:21 -05001384
Fabien Dessenne641067f2019-05-31 15:11:30 +02001385u64 fdt_translate_dma_address(const void *blob, int node_offset,
1386 const fdt32_t *in_addr)
1387{
1388 return __of_translate_address(blob, node_offset, in_addr, "dma-ranges");
1389}
1390
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001391int fdt_get_dma_range(const void *blob, int node, phys_addr_t *cpu,
1392 dma_addr_t *bus, u64 *size)
1393{
1394 bool found_dma_ranges = false;
1395 struct of_bus *bus_node;
1396 const fdt32_t *ranges;
1397 int na, ns, pna, pns;
1398 int parent = node;
1399 int ret = 0;
1400 int len;
1401
1402 /* Find the closest dma-ranges property */
1403 while (parent >= 0) {
1404 ranges = fdt_getprop(blob, parent, "dma-ranges", &len);
1405
1406 /* Ignore empty ranges, they imply no translation required */
1407 if (ranges && len > 0)
1408 break;
1409
1410 /* Once we find 'dma-ranges', then a missing one is an error */
1411 if (found_dma_ranges && !ranges) {
1412 ret = -EINVAL;
1413 goto out;
1414 }
1415
1416 if (ranges)
1417 found_dma_ranges = true;
1418
1419 parent = fdt_parent_offset(blob, parent);
1420 }
1421
1422 if (!ranges || parent < 0) {
1423 debug("no dma-ranges found for node %s\n",
1424 fdt_get_name(blob, node, NULL));
1425 ret = -ENOENT;
1426 goto out;
1427 }
1428
1429 /* switch to that node */
1430 node = parent;
1431 parent = fdt_parent_offset(blob, node);
1432 if (parent < 0) {
Vagrant Cascadian8c8bf4f2021-12-21 13:06:58 -08001433 printf("Found dma-ranges in root node, shouldn't happen\n");
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001434 ret = -EINVAL;
1435 goto out;
1436 }
1437
1438 /* Get the address sizes both for the bus and its parent */
1439 bus_node = of_match_bus(blob, node);
1440 bus_node->count_cells(blob, node, &na, &ns);
1441 if (!OF_CHECK_COUNTS(na, ns)) {
1442 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1443 fdt_get_name(blob, node, NULL));
1444 return -EINVAL;
1445 goto out;
1446 }
1447
1448 bus_node = of_match_bus(blob, parent);
1449 bus_node->count_cells(blob, parent, &pna, &pns);
1450 if (!OF_CHECK_COUNTS(pna, pns)) {
1451 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1452 fdt_get_name(blob, parent, NULL));
1453 return -EINVAL;
1454 goto out;
1455 }
1456
1457 *bus = fdt_read_number(ranges, na);
1458 *cpu = fdt_translate_dma_address(blob, node, ranges + na);
1459 *size = fdt_read_number(ranges + na + pna, ns);
1460out:
1461 return ret;
1462}
1463
Kumar Gala75e73af2010-07-04 12:48:21 -05001464/**
1465 * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and
1466 * who's reg property matches a physical cpu address
1467 *
1468 * @blob: ptr to device tree
1469 * @compat: compatiable string to match
1470 * @compat_off: property name
1471 *
1472 */
1473int fdt_node_offset_by_compat_reg(void *blob, const char *compat,
1474 phys_addr_t compat_off)
1475{
1476 int len, off = fdt_node_offset_by_compatible(blob, -1, compat);
1477 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001478 const fdt32_t *reg = fdt_getprop(blob, off, "reg", &len);
Kumar Gala75e73af2010-07-04 12:48:21 -05001479 if (reg) {
1480 if (compat_off == fdt_translate_address(blob, off, reg))
1481 return off;
1482 }
1483 off = fdt_node_offset_by_compatible(blob, off, compat);
1484 }
1485
1486 return -FDT_ERR_NOTFOUND;
1487}
1488
Marek Behún9ab0c2f2021-11-26 14:57:10 +01001489static int vnode_offset_by_pathf(void *blob, const char *fmt, va_list ap)
1490{
1491 char path[512];
1492 int len;
1493
1494 len = vsnprintf(path, sizeof(path), fmt, ap);
1495 if (len < 0 || len + 1 > sizeof(path))
1496 return -FDT_ERR_NOSPACE;
1497
1498 return fdt_path_offset(blob, path);
1499}
1500
1501/**
1502 * fdt_node_offset_by_pathf: Find node offset by sprintf formatted path
1503 *
1504 * @blob: ptr to device tree
1505 * @fmt: path format
1506 * @ap: vsnprintf arguments
1507 */
1508int fdt_node_offset_by_pathf(void *blob, const char *fmt, ...)
1509{
1510 va_list ap;
1511 int res;
1512
1513 va_start(ap, fmt);
1514 res = vnode_offset_by_pathf(blob, fmt, ap);
1515 va_end(ap);
1516
1517 return res;
1518}
1519
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001520/*
Kumar Galaf117c0f2011-08-01 00:23:23 -05001521 * fdt_set_phandle: Create a phandle property for the given node
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001522 *
1523 * @fdt: ptr to device tree
1524 * @nodeoffset: node to update
1525 * @phandle: phandle value to set (must be unique)
Kumar Galaf117c0f2011-08-01 00:23:23 -05001526 */
1527int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle)
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001528{
1529 int ret;
1530
1531#ifdef DEBUG
1532 int off = fdt_node_offset_by_phandle(fdt, phandle);
1533
1534 if ((off >= 0) && (off != nodeoffset)) {
1535 char buf[64];
1536
1537 fdt_get_path(fdt, nodeoffset, buf, sizeof(buf));
1538 printf("Trying to update node %s with phandle %u ",
1539 buf, phandle);
1540
1541 fdt_get_path(fdt, off, buf, sizeof(buf));
1542 printf("that already exists in node %s.\n", buf);
1543 return -FDT_ERR_BADPHANDLE;
1544 }
1545#endif
1546
1547 ret = fdt_setprop_cell(fdt, nodeoffset, "phandle", phandle);
1548 if (ret < 0)
1549 return ret;
1550
1551 /*
1552 * For now, also set the deprecated "linux,phandle" property, so that we
1553 * don't break older kernels.
1554 */
1555 ret = fdt_setprop_cell(fdt, nodeoffset, "linux,phandle", phandle);
1556
1557 return ret;
1558}
1559
Kumar Gala10aeabd2011-08-01 00:25:20 -05001560/*
Marek Behúnc92ccba2021-11-26 14:57:09 +01001561 * fdt_create_phandle: Get or create a phandle property for the given node
Kumar Gala10aeabd2011-08-01 00:25:20 -05001562 *
1563 * @fdt: ptr to device tree
1564 * @nodeoffset: node to update
1565 */
Timur Tabi3c927cc2011-09-20 18:24:34 -05001566unsigned int fdt_create_phandle(void *fdt, int nodeoffset)
Kumar Gala10aeabd2011-08-01 00:25:20 -05001567{
1568 /* see if there is a phandle already */
Marek Behún76f5a722021-11-26 14:57:07 +01001569 uint32_t phandle = fdt_get_phandle(fdt, nodeoffset);
Kumar Gala10aeabd2011-08-01 00:25:20 -05001570
1571 /* if we got 0, means no phandle so create one */
1572 if (phandle == 0) {
Timur Tabi3c927cc2011-09-20 18:24:34 -05001573 int ret;
1574
Marek Behún76f5a722021-11-26 14:57:07 +01001575 ret = fdt_generate_phandle(fdt, &phandle);
1576 if (ret < 0) {
1577 printf("Can't generate phandle: %s\n",
1578 fdt_strerror(ret));
1579 return 0;
1580 }
1581
Timur Tabi3c927cc2011-09-20 18:24:34 -05001582 ret = fdt_set_phandle(fdt, nodeoffset, phandle);
1583 if (ret < 0) {
1584 printf("Can't set phandle %u: %s\n", phandle,
1585 fdt_strerror(ret));
1586 return 0;
1587 }
Kumar Gala10aeabd2011-08-01 00:25:20 -05001588 }
1589
1590 return phandle;
1591}
1592
Marek Behún9ab0c2f2021-11-26 14:57:10 +01001593/**
1594 * fdt_create_phandle_by_compatible: Get or create a phandle for first node with
1595 * given compatible
1596 *
1597 * @fdt: ptr to device tree
1598 * @compat: node's compatible string
1599 */
1600unsigned int fdt_create_phandle_by_compatible(void *fdt, const char *compat)
1601{
1602 int offset = fdt_node_offset_by_compatible(fdt, -1, compat);
1603
1604 if (offset < 0) {
1605 printf("Can't find node with compatible \"%s\": %s\n", compat,
1606 fdt_strerror(offset));
1607 return 0;
1608 }
1609
1610 return fdt_create_phandle(fdt, offset);
1611}
1612
1613/**
1614 * fdt_create_phandle_by_pathf: Get or create a phandle for node given by
1615 * sprintf-formatted path
1616 *
1617 * @fdt: ptr to device tree
1618 * @fmt, ...: path format string and arguments to pass to sprintf
1619 */
1620unsigned int fdt_create_phandle_by_pathf(void *fdt, const char *fmt, ...)
1621{
1622 va_list ap;
1623 int offset;
1624
1625 va_start(ap, fmt);
1626 offset = vnode_offset_by_pathf(fdt, fmt, ap);
1627 va_end(ap);
1628
1629 if (offset < 0) {
1630 printf("Can't find node by given path: %s\n",
1631 fdt_strerror(offset));
1632 return 0;
1633 }
1634
1635 return fdt_create_phandle(fdt, offset);
1636}
1637
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001638/*
1639 * fdt_set_node_status: Set status for the given node
1640 *
1641 * @fdt: ptr to device tree
1642 * @nodeoffset: node to update
Marek Behún2105cd02021-11-26 14:57:08 +01001643 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001644 */
Marek Behún2105cd02021-11-26 14:57:08 +01001645int fdt_set_node_status(void *fdt, int nodeoffset, enum fdt_status status)
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001646{
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001647 int ret = 0;
1648
1649 if (nodeoffset < 0)
1650 return nodeoffset;
1651
1652 switch (status) {
1653 case FDT_STATUS_OKAY:
1654 ret = fdt_setprop_string(fdt, nodeoffset, "status", "okay");
1655 break;
1656 case FDT_STATUS_DISABLED:
1657 ret = fdt_setprop_string(fdt, nodeoffset, "status", "disabled");
1658 break;
1659 case FDT_STATUS_FAIL:
1660 ret = fdt_setprop_string(fdt, nodeoffset, "status", "fail");
1661 break;
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001662 default:
1663 printf("Invalid fdt status: %x\n", status);
1664 ret = -1;
1665 break;
1666 }
1667
1668 return ret;
1669}
1670
1671/*
1672 * fdt_set_status_by_alias: Set status for the given node given an alias
1673 *
1674 * @fdt: ptr to device tree
1675 * @alias: alias of node to update
Marek Behún2105cd02021-11-26 14:57:08 +01001676 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001677 */
1678int fdt_set_status_by_alias(void *fdt, const char* alias,
Marek Behún2105cd02021-11-26 14:57:08 +01001679 enum fdt_status status)
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001680{
1681 int offset = fdt_path_offset(fdt, alias);
1682
Marek Behún2105cd02021-11-26 14:57:08 +01001683 return fdt_set_node_status(fdt, offset, status);
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001684}
1685
Marek Behún9ab0c2f2021-11-26 14:57:10 +01001686/**
1687 * fdt_set_status_by_compatible: Set node status for first node with given
1688 * compatible
1689 *
1690 * @fdt: ptr to device tree
1691 * @compat: node's compatible string
1692 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
1693 */
1694int fdt_set_status_by_compatible(void *fdt, const char *compat,
1695 enum fdt_status status)
1696{
1697 int offset = fdt_node_offset_by_compatible(fdt, -1, compat);
1698
1699 if (offset < 0)
1700 return offset;
1701
1702 return fdt_set_node_status(fdt, offset, status);
1703}
1704
1705/**
1706 * fdt_set_status_by_pathf: Set node status for node given by sprintf-formatted
1707 * path
1708 *
1709 * @fdt: ptr to device tree
1710 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, FDT_STATUS_FAIL
1711 * @fmt, ...: path format string and arguments to pass to sprintf
1712 */
1713int fdt_set_status_by_pathf(void *fdt, enum fdt_status status, const char *fmt,
1714 ...)
1715{
1716 va_list ap;
1717 int offset;
1718
1719 va_start(ap, fmt);
1720 offset = vnode_offset_by_pathf(fdt, fmt, ap);
1721 va_end(ap);
1722
1723 if (offset < 0)
1724 return offset;
1725
1726 return fdt_set_node_status(fdt, offset, status);
1727}
1728
Tom Wai-Hong Tam096eb3f2012-12-05 14:46:41 +00001729#if defined(CONFIG_VIDEO) || defined(CONFIG_LCD)
Anatolij Gustschinbeca5a52010-08-18 11:25:20 +02001730int fdt_add_edid(void *blob, const char *compat, unsigned char *edid_buf)
1731{
1732 int noff;
1733 int ret;
1734
1735 noff = fdt_node_offset_by_compatible(blob, -1, compat);
1736 if (noff != -FDT_ERR_NOTFOUND) {
1737 debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat);
1738add_edid:
1739 ret = fdt_setprop(blob, noff, "edid", edid_buf, 128);
1740 if (ret == -FDT_ERR_NOSPACE) {
1741 ret = fdt_increase_size(blob, 512);
1742 if (!ret)
1743 goto add_edid;
1744 else
1745 goto err_size;
1746 } else if (ret < 0) {
1747 printf("Can't add property: %s\n", fdt_strerror(ret));
1748 return ret;
1749 }
1750 }
1751 return 0;
1752err_size:
1753 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
1754 return ret;
1755}
1756#endif
Timur Tabibb682002011-05-03 13:24:07 -05001757
1758/*
1759 * Verify the physical address of device tree node for a given alias
1760 *
1761 * This function locates the device tree node of a given alias, and then
1762 * verifies that the physical address of that device matches the given
1763 * parameter. It displays a message if there is a mismatch.
1764 *
1765 * Returns 1 on success, 0 on failure
1766 */
1767int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr)
1768{
1769 const char *path;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001770 const fdt32_t *reg;
Timur Tabibb682002011-05-03 13:24:07 -05001771 int node, len;
1772 u64 dt_addr;
1773
1774 path = fdt_getprop(fdt, anode, alias, NULL);
1775 if (!path) {
1776 /* If there's no such alias, then it's not a failure */
1777 return 1;
1778 }
1779
1780 node = fdt_path_offset(fdt, path);
1781 if (node < 0) {
1782 printf("Warning: device tree alias '%s' points to invalid "
1783 "node %s.\n", alias, path);
1784 return 0;
1785 }
1786
1787 reg = fdt_getprop(fdt, node, "reg", &len);
1788 if (!reg) {
1789 printf("Warning: device tree node '%s' has no address.\n",
1790 path);
1791 return 0;
1792 }
1793
1794 dt_addr = fdt_translate_address(fdt, node, reg);
1795 if (addr != dt_addr) {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001796 printf("Warning: U-Boot configured device %s at address %llu,\n"
1797 "but the device tree has it address %llx.\n",
1798 alias, addr, dt_addr);
Timur Tabibb682002011-05-03 13:24:07 -05001799 return 0;
1800 }
1801
1802 return 1;
1803}
1804
1805/*
1806 * Returns the base address of an SOC or PCI node
1807 */
Simon Glassec002112017-05-18 20:09:00 -06001808u64 fdt_get_base_address(const void *fdt, int node)
Timur Tabibb682002011-05-03 13:24:07 -05001809{
1810 int size;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001811 const fdt32_t *prop;
Timur Tabibb682002011-05-03 13:24:07 -05001812
Simon Glass336a4482017-07-04 13:31:20 -06001813 prop = fdt_getprop(fdt, node, "reg", &size);
Timur Tabibb682002011-05-03 13:24:07 -05001814
Masahiro Yamadae3665ba2019-06-27 16:39:57 +09001815 return prop ? fdt_translate_address(fdt, node, prop) : OF_BAD_ADDR;
Timur Tabibb682002011-05-03 13:24:07 -05001816}
Alexander Grafc48e6862014-04-11 17:09:41 +02001817
1818/*
Bin Menga932aa32021-02-25 17:22:24 +08001819 * Read a property of size <prop_len>. Currently only supports 1 or 2 cells,
1820 * or 3 cells specially for a PCI address.
Alexander Grafc48e6862014-04-11 17:09:41 +02001821 */
1822static int fdt_read_prop(const fdt32_t *prop, int prop_len, int cell_off,
1823 uint64_t *val, int cells)
1824{
Bin Menga932aa32021-02-25 17:22:24 +08001825 const fdt32_t *prop32;
1826 const unaligned_fdt64_t *prop64;
Alexander Grafc48e6862014-04-11 17:09:41 +02001827
1828 if ((cell_off + cells) > prop_len)
1829 return -FDT_ERR_NOSPACE;
1830
Bin Menga932aa32021-02-25 17:22:24 +08001831 prop32 = &prop[cell_off];
1832
1833 /*
1834 * Special handling for PCI address in PCI bus <ranges>
1835 *
1836 * PCI child address is made up of 3 cells. Advance the cell offset
1837 * by 1 so that the PCI child address can be correctly read.
1838 */
1839 if (cells == 3)
1840 cell_off += 1;
1841 prop64 = (const fdt64_t *)&prop[cell_off];
1842
Alexander Grafc48e6862014-04-11 17:09:41 +02001843 switch (cells) {
1844 case 1:
1845 *val = fdt32_to_cpu(*prop32);
1846 break;
1847 case 2:
Bin Menga932aa32021-02-25 17:22:24 +08001848 case 3:
Alexander Grafc48e6862014-04-11 17:09:41 +02001849 *val = fdt64_to_cpu(*prop64);
1850 break;
1851 default:
1852 return -FDT_ERR_NOSPACE;
1853 }
1854
1855 return 0;
1856}
1857
1858/**
1859 * fdt_read_range - Read a node's n'th range property
1860 *
1861 * @fdt: ptr to device tree
1862 * @node: offset of node
1863 * @n: range index
1864 * @child_addr: pointer to storage for the "child address" field
1865 * @addr: pointer to storage for the CPU view translated physical start
1866 * @len: pointer to storage for the range length
1867 *
1868 * Convenience function that reads and interprets a specific range out of
1869 * a number of the "ranges" property array.
1870 */
1871int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
1872 uint64_t *addr, uint64_t *len)
1873{
1874 int pnode = fdt_parent_offset(fdt, node);
1875 const fdt32_t *ranges;
1876 int pacells;
1877 int acells;
1878 int scells;
1879 int ranges_len;
1880 int cell = 0;
1881 int r = 0;
1882
1883 /*
1884 * The "ranges" property is an array of
1885 * { <child address> <parent address> <size in child address space> }
1886 *
1887 * All 3 elements can span a diffent number of cells. Fetch their size.
1888 */
1889 pacells = fdt_getprop_u32_default_node(fdt, pnode, 0, "#address-cells", 1);
1890 acells = fdt_getprop_u32_default_node(fdt, node, 0, "#address-cells", 1);
1891 scells = fdt_getprop_u32_default_node(fdt, node, 0, "#size-cells", 1);
1892
1893 /* Now try to get the ranges property */
1894 ranges = fdt_getprop(fdt, node, "ranges", &ranges_len);
1895 if (!ranges)
1896 return -FDT_ERR_NOTFOUND;
1897 ranges_len /= sizeof(uint32_t);
1898
1899 /* Jump to the n'th entry */
1900 cell = n * (pacells + acells + scells);
1901
1902 /* Read <child address> */
1903 if (child_addr) {
1904 r = fdt_read_prop(ranges, ranges_len, cell, child_addr,
1905 acells);
1906 if (r)
1907 return r;
1908 }
1909 cell += acells;
1910
1911 /* Read <parent address> */
1912 if (addr)
1913 *addr = fdt_translate_address(fdt, node, ranges + cell);
1914 cell += pacells;
1915
1916 /* Read <size in child address space> */
1917 if (len) {
1918 r = fdt_read_prop(ranges, ranges_len, cell, len, scells);
1919 if (r)
1920 return r;
1921 }
1922
1923 return 0;
1924}
Hans de Goeded4f495a2014-11-17 15:29:11 +01001925
1926/**
1927 * fdt_setup_simplefb_node - Fill and enable a simplefb node
1928 *
1929 * @fdt: ptr to device tree
1930 * @node: offset of the simplefb node
1931 * @base_address: framebuffer base address
1932 * @width: width in pixels
1933 * @height: height in pixels
1934 * @stride: bytes per line
1935 * @format: pixel format string
1936 *
1937 * Convenience function to fill and enable a simplefb node.
1938 */
1939int fdt_setup_simplefb_node(void *fdt, int node, u64 base_address, u32 width,
1940 u32 height, u32 stride, const char *format)
1941{
1942 char name[32];
1943 fdt32_t cells[4];
1944 int i, addrc, sizec, ret;
1945
Simon Glasseed36602017-05-18 20:09:26 -06001946 fdt_support_default_count_cells(fdt, fdt_parent_offset(fdt, node),
1947 &addrc, &sizec);
Hans de Goeded4f495a2014-11-17 15:29:11 +01001948 i = 0;
1949 if (addrc == 2)
1950 cells[i++] = cpu_to_fdt32(base_address >> 32);
1951 cells[i++] = cpu_to_fdt32(base_address);
1952 if (sizec == 2)
1953 cells[i++] = 0;
1954 cells[i++] = cpu_to_fdt32(height * stride);
1955
1956 ret = fdt_setprop(fdt, node, "reg", cells, sizeof(cells[0]) * i);
1957 if (ret < 0)
1958 return ret;
1959
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001960 snprintf(name, sizeof(name), "framebuffer@%llx", base_address);
Hans de Goeded4f495a2014-11-17 15:29:11 +01001961 ret = fdt_set_name(fdt, node, name);
1962 if (ret < 0)
1963 return ret;
1964
1965 ret = fdt_setprop_u32(fdt, node, "width", width);
1966 if (ret < 0)
1967 return ret;
1968
1969 ret = fdt_setprop_u32(fdt, node, "height", height);
1970 if (ret < 0)
1971 return ret;
1972
1973 ret = fdt_setprop_u32(fdt, node, "stride", stride);
1974 if (ret < 0)
1975 return ret;
1976
1977 ret = fdt_setprop_string(fdt, node, "format", format);
1978 if (ret < 0)
1979 return ret;
1980
1981 ret = fdt_setprop_string(fdt, node, "status", "okay");
1982 if (ret < 0)
1983 return ret;
1984
1985 return 0;
1986}
Tim Harvey08daa252015-04-08 11:45:39 -07001987
1988/*
1989 * Update native-mode in display-timings from display environment variable.
1990 * The node to update are specified by path.
1991 */
1992int fdt_fixup_display(void *blob, const char *path, const char *display)
1993{
1994 int off, toff;
1995
1996 if (!display || !path)
1997 return -FDT_ERR_NOTFOUND;
1998
1999 toff = fdt_path_offset(blob, path);
2000 if (toff >= 0)
2001 toff = fdt_subnode_offset(blob, toff, "display-timings");
2002 if (toff < 0)
2003 return toff;
2004
2005 for (off = fdt_first_subnode(blob, toff);
2006 off >= 0;
2007 off = fdt_next_subnode(blob, off)) {
2008 uint32_t h = fdt_get_phandle(blob, off);
2009 debug("%s:0x%x\n", fdt_get_name(blob, off, NULL),
2010 fdt32_to_cpu(h));
2011 if (strcasecmp(fdt_get_name(blob, off, NULL), display) == 0)
2012 return fdt_setprop_u32(blob, toff, "native-mode", h);
2013 }
2014 return toff;
2015}
Pantelis Antonioufc7c3182017-09-04 23:12:11 +03002016
2017#ifdef CONFIG_OF_LIBFDT_OVERLAY
2018/**
2019 * fdt_overlay_apply_verbose - Apply an overlay with verbose error reporting
2020 *
2021 * @fdt: ptr to device tree
2022 * @fdto: ptr to device tree overlay
2023 *
2024 * Convenience function to apply an overlay and display helpful messages
2025 * in the case of an error
2026 */
2027int fdt_overlay_apply_verbose(void *fdt, void *fdto)
2028{
2029 int err;
2030 bool has_symbols;
2031
2032 err = fdt_path_offset(fdt, "/__symbols__");
2033 has_symbols = err >= 0;
2034
2035 err = fdt_overlay_apply(fdt, fdto);
2036 if (err < 0) {
2037 printf("failed on fdt_overlay_apply(): %s\n",
2038 fdt_strerror(err));
2039 if (!has_symbols) {
2040 printf("base fdt does did not have a /__symbols__ node\n");
2041 printf("make sure you've compiled with -@\n");
2042 }
2043 }
2044 return err;
2045}
2046#endif
Kory Maincentbbdbcaf2021-05-04 19:31:21 +02002047
2048/**
2049 * fdt_valid() - Check if an FDT is valid. If not, change it to NULL
2050 *
2051 * @blobp: Pointer to FDT pointer
Heinrich Schuchardt185f8122022-01-19 18:05:50 +01002052 * Return: 1 if OK, 0 if bad (in which case *blobp is set to NULL)
Kory Maincentbbdbcaf2021-05-04 19:31:21 +02002053 */
2054int fdt_valid(struct fdt_header **blobp)
2055{
2056 const void *blob = *blobp;
2057 int err;
2058
2059 if (!blob) {
2060 printf("The address of the fdt is invalid (NULL).\n");
2061 return 0;
2062 }
2063
2064 err = fdt_check_header(blob);
2065 if (err == 0)
2066 return 1; /* valid */
2067
2068 if (err < 0) {
2069 printf("libfdt fdt_check_header(): %s", fdt_strerror(err));
2070 /*
2071 * Be more informative on bad version.
2072 */
2073 if (err == -FDT_ERR_BADVERSION) {
2074 if (fdt_version(blob) <
2075 FDT_FIRST_SUPPORTED_VERSION) {
2076 printf(" - too old, fdt %d < %d",
2077 fdt_version(blob),
2078 FDT_FIRST_SUPPORTED_VERSION);
2079 }
2080 if (fdt_last_comp_version(blob) >
2081 FDT_LAST_SUPPORTED_VERSION) {
2082 printf(" - too new, fdt %d > %d",
2083 fdt_version(blob),
2084 FDT_LAST_SUPPORTED_VERSION);
2085 }
2086 }
2087 printf("\n");
2088 *blobp = NULL;
2089 return 0;
2090 }
2091 return 1;
2092}