blob: 5ae75df3c658d1427e83112cf3258f9473a21fef [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
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900128/* rename to CONFIG_OF_STDOUT_PATH ? */
129#if defined(OF_STDOUT_PATH)
130static int fdt_fixup_stdout(void *fdt, int chosenoff)
131{
132 return fdt_setprop(fdt, chosenoff, "linux,stdout-path",
133 OF_STDOUT_PATH, strlen(OF_STDOUT_PATH) + 1);
134}
135#elif defined(CONFIG_OF_STDOUT_VIA_ALIAS) && defined(CONFIG_CONS_INDEX)
Detlev Zundel40777812008-06-20 22:24:05 +0200136static int fdt_fixup_stdout(void *fdt, int chosenoff)
Kumar Gala151c8b02007-11-26 17:06:15 -0600137{
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900138 int err;
139 int aliasoff;
Kumar Gala151c8b02007-11-26 17:06:15 -0600140 char sername[9] = { 0 };
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900141 const void *path;
142 int len;
143 char tmp[256]; /* long enough */
Kumar Gala151c8b02007-11-26 17:06:15 -0600144
Bin Meng9f29aeb2016-01-13 19:38:58 -0800145 sprintf(sername, "serial%d", CONFIG_CONS_INDEX - 1);
Kumar Gala151c8b02007-11-26 17:06:15 -0600146
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900147 aliasoff = fdt_path_offset(fdt, "/aliases");
148 if (aliasoff < 0) {
149 err = aliasoff;
Scott Woodda77c812015-09-01 22:48:08 -0500150 goto noalias;
Kumar Gala151c8b02007-11-26 17:06:15 -0600151 }
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900152
153 path = fdt_getprop(fdt, aliasoff, sername, &len);
154 if (!path) {
155 err = len;
Scott Woodda77c812015-09-01 22:48:08 -0500156 goto noalias;
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900157 }
158
159 /* fdt_setprop may break "path" so we copy it to tmp buffer */
160 memcpy(tmp, path, len);
161
162 err = fdt_setprop(fdt, chosenoff, "linux,stdout-path", tmp, len);
Kumar Gala151c8b02007-11-26 17:06:15 -0600163 if (err < 0)
164 printf("WARNING: could not set linux,stdout-path %s.\n",
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900165 fdt_strerror(err));
Kumar Gala151c8b02007-11-26 17:06:15 -0600166
167 return err;
Scott Woodda77c812015-09-01 22:48:08 -0500168
169noalias:
170 printf("WARNING: %s: could not read %s alias: %s\n",
171 __func__, sername, fdt_strerror(err));
172
173 return 0;
Kumar Gala151c8b02007-11-26 17:06:15 -0600174}
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900175#else
176static int fdt_fixup_stdout(void *fdt, int chosenoff)
177{
178 return 0;
179}
Kumar Gala151c8b02007-11-26 17:06:15 -0600180#endif
181
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900182static inline int fdt_setprop_uxx(void *fdt, int nodeoffset, const char *name,
183 uint64_t val, int is_u64)
184{
185 if (is_u64)
186 return fdt_setprop_u64(fdt, nodeoffset, name, val);
187 else
188 return fdt_setprop_u32(fdt, nodeoffset, name, (uint32_t)val);
189}
190
Paul Kocialkowski10be5b52015-05-21 11:27:03 +0200191int fdt_root(void *fdt)
192{
193 char *serial;
194 int err;
195
196 err = fdt_check_header(fdt);
197 if (err < 0) {
198 printf("fdt_root: %s\n", fdt_strerror(err));
199 return err;
200 }
201
Simon Glass00caae62017-08-03 12:22:12 -0600202 serial = env_get("serial#");
Paul Kocialkowski10be5b52015-05-21 11:27:03 +0200203 if (serial) {
204 err = fdt_setprop(fdt, 0, "serial-number", serial,
205 strlen(serial) + 1);
206
207 if (err < 0) {
208 printf("WARNING: could not set serial-number %s.\n",
209 fdt_strerror(err));
210 return err;
211 }
212 }
213
214 return 0;
215}
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900216
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900217int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end)
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500218{
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900219 int nodeoffset;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500220 int err, j, total;
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900221 int is_u64;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500222 uint64_t addr, size;
223
Masahiro Yamada50babaf2014-04-18 17:41:05 +0900224 /* just return if the size of initrd is zero */
225 if (initrd_start == initrd_end)
226 return 0;
227
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900228 /* find or create "/chosen" node. */
229 nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
230 if (nodeoffset < 0)
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500231 return nodeoffset;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500232
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500233 total = fdt_num_mem_rsv(fdt);
234
235 /*
236 * Look for an existing entry and update it. If we don't find
237 * the entry, we will j be the next available slot.
238 */
239 for (j = 0; j < total; j++) {
240 err = fdt_get_mem_rsv(fdt, j, &addr, &size);
241 if (addr == initrd_start) {
242 fdt_del_mem_rsv(fdt, j);
243 break;
244 }
245 }
246
Grant Likelyce6b27a2011-03-28 09:58:55 +0000247 err = fdt_add_mem_rsv(fdt, initrd_start, initrd_end - initrd_start);
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500248 if (err < 0) {
249 printf("fdt_initrd: %s\n", fdt_strerror(err));
250 return err;
251 }
252
Simon Glass933cdbb2014-10-23 18:58:57 -0600253 is_u64 = (fdt_address_cells(fdt, 0) == 2);
David Fengf77a6062013-12-14 11:47:29 +0800254
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900255 err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-start",
256 (uint64_t)initrd_start, is_u64);
257
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900258 if (err < 0) {
259 printf("WARNING: could not set linux,initrd-start %s.\n",
260 fdt_strerror(err));
261 return err;
262 }
Masahiro Yamadaf18295d2014-04-18 17:41:04 +0900263
264 err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-end",
265 (uint64_t)initrd_end, is_u64);
266
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900267 if (err < 0) {
268 printf("WARNING: could not set linux,initrd-end %s.\n",
269 fdt_strerror(err));
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500270
Masahiro Yamadadbe963a2014-04-18 17:40:59 +0900271 return err;
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500272 }
273
274 return 0;
275}
276
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900277int fdt_chosen(void *fdt)
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400278{
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400279 int nodeoffset;
280 int err;
Gerald Van Baren35ec3982007-05-25 22:08:57 -0400281 char *str; /* used to set string properties */
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400282
283 err = fdt_check_header(fdt);
284 if (err < 0) {
Gerald Van Baren5fe6be62007-08-07 21:14:22 -0400285 printf("fdt_chosen: %s\n", fdt_strerror(err));
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400286 return err;
287 }
288
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900289 /* find or create "/chosen" node. */
290 nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen");
291 if (nodeoffset < 0)
292 return nodeoffset;
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400293
Simon Glass00caae62017-08-03 12:22:12 -0600294 str = env_get("bootargs");
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900295 if (str) {
296 err = fdt_setprop(fdt, nodeoffset, "bootargs", str,
297 strlen(str) + 1);
298 if (err < 0) {
Masahiro Yamadabc6ed0f2014-04-18 17:41:00 +0900299 printf("WARNING: could not set bootargs %s.\n",
300 fdt_strerror(err));
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900301 return err;
302 }
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400303 }
Kumar Gala2a1a2cb2008-08-15 08:24:43 -0500304
Masahiro Yamada972f2a82014-04-18 17:41:01 +0900305 return fdt_fixup_stdout(fdt, nodeoffset);
Gerald Van Baren64dbbd42007-04-06 14:19:43 -0400306}
307
Kumar Galae93becf2007-11-03 19:46:28 -0500308void do_fixup_by_path(void *fdt, const char *path, const char *prop,
309 const void *val, int len, int create)
310{
311#if defined(DEBUG)
312 int i;
Kumar Galad9ad1152008-02-13 15:09:58 -0600313 debug("Updating property '%s/%s' = ", path, prop);
Kumar Galae93becf2007-11-03 19:46:28 -0500314 for (i = 0; i < len; i++)
315 debug(" %.2x", *(u8*)(val+i));
316 debug("\n");
317#endif
318 int rc = fdt_find_and_setprop(fdt, path, prop, val, len, create);
319 if (rc)
320 printf("Unable to update property %s:%s, err=%s\n",
321 path, prop, fdt_strerror(rc));
322}
323
324void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop,
325 u32 val, int create)
326{
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000327 fdt32_t tmp = cpu_to_fdt32(val);
328 do_fixup_by_path(fdt, path, prop, &tmp, sizeof(tmp), create);
Kumar Galae93becf2007-11-03 19:46:28 -0500329}
330
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600331void do_fixup_by_prop(void *fdt,
332 const char *pname, const void *pval, int plen,
333 const char *prop, const void *val, int len,
334 int create)
335{
336 int off;
337#if defined(DEBUG)
338 int i;
Kumar Galad9ad1152008-02-13 15:09:58 -0600339 debug("Updating property '%s' = ", prop);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600340 for (i = 0; i < len; i++)
341 debug(" %.2x", *(u8*)(val+i));
342 debug("\n");
343#endif
344 off = fdt_node_offset_by_prop_value(fdt, -1, pname, pval, plen);
345 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000346 if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600347 fdt_setprop(fdt, off, prop, val, len);
348 off = fdt_node_offset_by_prop_value(fdt, off, pname, pval, plen);
349 }
350}
351
352void do_fixup_by_prop_u32(void *fdt,
353 const char *pname, const void *pval, int plen,
354 const char *prop, u32 val, int create)
355{
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000356 fdt32_t tmp = cpu_to_fdt32(val);
357 do_fixup_by_prop(fdt, pname, pval, plen, prop, &tmp, 4, create);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600358}
359
360void do_fixup_by_compat(void *fdt, const char *compat,
361 const char *prop, const void *val, int len, int create)
362{
363 int off = -1;
364#if defined(DEBUG)
365 int i;
Kumar Galad9ad1152008-02-13 15:09:58 -0600366 debug("Updating property '%s' = ", prop);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600367 for (i = 0; i < len; i++)
368 debug(" %.2x", *(u8*)(val+i));
369 debug("\n");
370#endif
371 off = fdt_node_offset_by_compatible(fdt, -1, compat);
372 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000373 if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL))
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600374 fdt_setprop(fdt, off, prop, val, len);
375 off = fdt_node_offset_by_compatible(fdt, off, compat);
376 }
377}
378
379void do_fixup_by_compat_u32(void *fdt, const char *compat,
380 const char *prop, u32 val, int create)
381{
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000382 fdt32_t tmp = cpu_to_fdt32(val);
383 do_fixup_by_compat(fdt, compat, prop, &tmp, 4, create);
Kumar Gala9eb77ce2007-11-21 13:30:15 -0600384}
385
Masahiro Yamada63c09412016-11-26 11:02:10 +0900386#ifdef CONFIG_ARCH_FIXUP_FDT_MEMORY
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900387/*
388 * fdt_pack_reg - pack address and size array into the "reg"-suitable stream
389 */
Simon Glass41f09bb2014-10-23 18:58:55 -0600390static int fdt_pack_reg(const void *fdt, void *buf, u64 *address, u64 *size,
391 int n)
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900392{
393 int i;
Hans de Goedeffccb842014-11-28 14:23:51 +0100394 int address_cells = fdt_address_cells(fdt, 0);
395 int size_cells = fdt_size_cells(fdt, 0);
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900396 char *p = buf;
397
398 for (i = 0; i < n; i++) {
Hans de Goedeffccb842014-11-28 14:23:51 +0100399 if (address_cells == 2)
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900400 *(fdt64_t *)p = cpu_to_fdt64(address[i]);
401 else
402 *(fdt32_t *)p = cpu_to_fdt32(address[i]);
Hans de Goedeffccb842014-11-28 14:23:51 +0100403 p += 4 * address_cells;
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900404
Hans de Goedeffccb842014-11-28 14:23:51 +0100405 if (size_cells == 2)
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900406 *(fdt64_t *)p = cpu_to_fdt64(size[i]);
407 else
408 *(fdt32_t *)p = cpu_to_fdt32(size[i]);
Hans de Goedeffccb842014-11-28 14:23:51 +0100409 p += 4 * size_cells;
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900410 }
411
412 return p - (char *)buf;
413}
414
Ramon Fried6b6f2162018-08-14 00:35:42 +0300415#if CONFIG_NR_DRAM_BANKS > 4
416#define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS
417#else
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000418#define MEMORY_BANKS_MAX 4
Ramon Fried6b6f2162018-08-14 00:35:42 +0300419#endif
John Rigbya6bd9e82010-10-13 13:57:33 -0600420int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
421{
422 int err, nodeoffset;
Thierry Reding6d29cc72018-01-30 11:34:17 +0100423 int len, i;
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000424 u8 tmp[MEMORY_BANKS_MAX * 16]; /* Up to 64-bit address + 64-bit size */
Kumar Gala3c927282007-11-26 14:57:45 -0600425
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000426 if (banks > MEMORY_BANKS_MAX) {
427 printf("%s: num banks %d exceeds hardcoded limit %d."
428 " Recompile with higher MEMORY_BANKS_MAX?\n",
429 __FUNCTION__, banks, MEMORY_BANKS_MAX);
430 return -1;
431 }
432
Kumar Gala3c927282007-11-26 14:57:45 -0600433 err = fdt_check_header(blob);
434 if (err < 0) {
435 printf("%s: %s\n", __FUNCTION__, fdt_strerror(err));
436 return err;
437 }
438
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900439 /* find or create "/memory" node. */
440 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
441 if (nodeoffset < 0)
Miao Yan35940de2013-11-28 17:51:39 +0800442 return nodeoffset;
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900443
Kumar Gala3c927282007-11-26 14:57:45 -0600444 err = fdt_setprop(blob, nodeoffset, "device_type", "memory",
445 sizeof("memory"));
446 if (err < 0) {
447 printf("WARNING: could not set %s %s.\n", "device_type",
448 fdt_strerror(err));
449 return err;
450 }
451
Thierry Redinged5af032018-02-15 19:05:59 +0100452 for (i = 0; i < banks; i++) {
453 if (start[i] == 0 && size[i] == 0)
454 break;
455 }
456
457 banks = i;
458
Andre Przywara5c1cf892015-06-21 00:29:54 +0100459 if (!banks)
460 return 0;
461
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900462 len = fdt_pack_reg(blob, tmp, start, size, banks);
Kumar Gala3c927282007-11-26 14:57:45 -0600463
464 err = fdt_setprop(blob, nodeoffset, "reg", tmp, len);
465 if (err < 0) {
466 printf("WARNING: could not set %s %s.\n",
467 "reg", fdt_strerror(err));
468 return err;
469 }
470 return 0;
471}
Igor Opaniuk949b5a92019-12-03 14:04:46 +0200472
473int fdt_set_usable_memory(void *blob, u64 start[], u64 size[], int areas)
474{
475 int err, nodeoffset;
476 int len;
477 u8 tmp[8 * 16]; /* Up to 64-bit address + 64-bit size */
478
479 if (areas > 8) {
480 printf("%s: num areas %d exceeds hardcoded limit %d\n",
481 __func__, areas, 8);
482 return -1;
483 }
484
485 err = fdt_check_header(blob);
486 if (err < 0) {
487 printf("%s: %s\n", __func__, fdt_strerror(err));
488 return err;
489 }
490
491 /* find or create "/memory" node. */
492 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
493 if (nodeoffset < 0)
494 return nodeoffset;
495
496 len = fdt_pack_reg(blob, tmp, start, size, areas);
497
498 err = fdt_setprop(blob, nodeoffset, "linux,usable-memory", tmp, len);
499 if (err < 0) {
500 printf("WARNING: could not set %s %s.\n",
501 "reg", fdt_strerror(err));
502 return err;
503 }
504
505 return 0;
506}
Masahiro Yamada63c09412016-11-26 11:02:10 +0900507#endif
Kumar Gala3c927282007-11-26 14:57:45 -0600508
John Rigbya6bd9e82010-10-13 13:57:33 -0600509int fdt_fixup_memory(void *blob, u64 start, u64 size)
510{
511 return fdt_fixup_memory_banks(blob, &start, &size, 1);
512}
513
Kumar Galaba37aa02008-08-19 15:41:18 -0500514void fdt_fixup_ethernet(void *fdt)
Kumar Galaab544632007-11-21 11:11:03 -0600515{
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530516 int i = 0, j, prop;
Bin Mengbc393a72015-11-03 04:24:41 -0800517 char *tmp, *end;
Stephen Warren064d55f2013-05-27 18:01:19 +0000518 char mac[16];
Kumar Galaab544632007-11-21 11:11:03 -0600519 const char *path;
oliver@schinagl.nla40db6d2016-11-25 16:30:19 +0100520 unsigned char mac_addr[ARP_HLEN];
Bin Mengbc393a72015-11-03 04:24:41 -0800521 int offset;
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530522#ifdef FDT_SEQ_MACADDR_FROM_ENV
523 int nodeoff;
524 const struct fdt_property *fdt_prop;
525#endif
Kumar Galaab544632007-11-21 11:11:03 -0600526
Lev Iserovicha434fd12016-01-07 18:04:16 -0500527 if (fdt_path_offset(fdt, "/aliases") < 0)
Kumar Galaba37aa02008-08-19 15:41:18 -0500528 return;
529
Lev Iserovicha434fd12016-01-07 18:04:16 -0500530 /* Cycle through all aliases */
531 for (prop = 0; ; prop++) {
Bin Mengbc393a72015-11-03 04:24:41 -0800532 const char *name;
Bin Mengbc393a72015-11-03 04:24:41 -0800533
Lev Iserovicha434fd12016-01-07 18:04:16 -0500534 /* FDT might have been edited, recompute the offset */
535 offset = fdt_first_property_offset(fdt,
536 fdt_path_offset(fdt, "/aliases"));
537 /* Select property number 'prop' */
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530538 for (j = 0; j < prop; j++)
Lev Iserovicha434fd12016-01-07 18:04:16 -0500539 offset = fdt_next_property_offset(fdt, offset);
540
541 if (offset < 0)
542 break;
543
Bin Mengbc393a72015-11-03 04:24:41 -0800544 path = fdt_getprop_by_offset(fdt, offset, &name, NULL);
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200545 if (!strncmp(name, "ethernet", 8)) {
546 /* Treat plain "ethernet" same as "ethernet0". */
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530547 if (!strcmp(name, "ethernet")
548#ifdef FDT_SEQ_MACADDR_FROM_ENV
549 || !strcmp(name, "ethernet0")
550#endif
551 )
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200552 i = 0;
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530553#ifndef FDT_SEQ_MACADDR_FROM_ENV
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200554 else
555 i = trailing_strtol(name);
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530556#endif
Bin Mengbc393a72015-11-03 04:24:41 -0800557 if (i != -1) {
558 if (i == 0)
559 strcpy(mac, "ethaddr");
560 else
561 sprintf(mac, "eth%daddr", i);
562 } else {
563 continue;
564 }
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530565#ifdef FDT_SEQ_MACADDR_FROM_ENV
566 nodeoff = fdt_path_offset(fdt, path);
567 fdt_prop = fdt_get_property(fdt, nodeoff, "status",
568 NULL);
569 if (fdt_prop && !strcmp(fdt_prop->data, "disabled"))
570 continue;
571 i++;
572#endif
Simon Glass00caae62017-08-03 12:22:12 -0600573 tmp = env_get(mac);
Bin Mengbc393a72015-11-03 04:24:41 -0800574 if (!tmp)
575 continue;
576
577 for (j = 0; j < 6; j++) {
578 mac_addr[j] = tmp ?
579 simple_strtoul(tmp, &end, 16) : 0;
580 if (tmp)
581 tmp = (*end) ? end + 1 : end;
582 }
583
584 do_fixup_by_path(fdt, path, "mac-address",
585 &mac_addr, 6, 0);
586 do_fixup_by_path(fdt, path, "local-mac-address",
587 &mac_addr, 6, 1);
Dan Murphyb1f49ab2013-10-02 14:00:15 -0500588 }
Kumar Galaab544632007-11-21 11:11:03 -0600589 }
590}
Anton Vorontsov18e69a32008-03-14 23:20:18 +0300591
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100592int fdt_record_loadable(void *blob, u32 index, const char *name,
593 uintptr_t load_addr, u32 size, uintptr_t entry_point,
594 const char *type, const char *os)
595{
596 int err, node;
597
598 err = fdt_check_header(blob);
599 if (err < 0) {
600 printf("%s: %s\n", __func__, fdt_strerror(err));
601 return err;
602 }
603
604 /* find or create "/fit-images" node */
605 node = fdt_find_or_add_subnode(blob, 0, "fit-images");
606 if (node < 0)
607 return node;
608
609 /* find or create "/fit-images/<name>" node */
610 node = fdt_find_or_add_subnode(blob, node, name);
611 if (node < 0)
612 return node;
613
Michal Simek13d1ca82020-09-03 12:44:51 +0200614 fdt_setprop_u64(blob, node, "load", load_addr);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100615 if (entry_point != -1)
Michal Simek13d1ca82020-09-03 12:44:51 +0200616 fdt_setprop_u64(blob, node, "entry", entry_point);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100617 fdt_setprop_u32(blob, node, "size", size);
618 if (type)
619 fdt_setprop_string(blob, node, "type", type);
620 if (os)
621 fdt_setprop_string(blob, node, "os", os);
622
623 return node;
624}
625
Kumar Gala3082d232008-08-15 08:24:42 -0500626/* Resize the fdt to its actual size + a bit of padding */
Hannes Schmelzeref476832016-09-20 18:10:43 +0200627int fdt_shrink_to_minimum(void *blob, uint extrasize)
Kumar Gala3082d232008-08-15 08:24:42 -0500628{
629 int i;
630 uint64_t addr, size;
631 int total, ret;
632 uint actualsize;
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200633 int fdt_memrsv = 0;
Kumar Gala3082d232008-08-15 08:24:42 -0500634
635 if (!blob)
636 return 0;
637
638 total = fdt_num_mem_rsv(blob);
639 for (i = 0; i < total; i++) {
640 fdt_get_mem_rsv(blob, i, &addr, &size);
Simon Glass92549352011-09-17 06:48:58 +0000641 if (addr == (uintptr_t)blob) {
Kumar Gala3082d232008-08-15 08:24:42 -0500642 fdt_del_mem_rsv(blob, i);
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200643 fdt_memrsv = 1;
Kumar Gala3082d232008-08-15 08:24:42 -0500644 break;
645 }
646 }
647
Peter Korsgaardf242a082008-10-28 08:26:52 +0100648 /*
649 * Calculate the actual size of the fdt
Feng Wang3840ebf2010-08-03 16:22:43 +0200650 * plus the size needed for 5 fdt_add_mem_rsv, one
651 * for the fdt itself and 4 for a possible initrd
652 * ((initrd-start + initrd-end) * 2 (name & value))
Peter Korsgaardf242a082008-10-28 08:26:52 +0100653 */
Kumar Gala3082d232008-08-15 08:24:42 -0500654 actualsize = fdt_off_dt_strings(blob) +
Feng Wang3840ebf2010-08-03 16:22:43 +0200655 fdt_size_dt_strings(blob) + 5 * sizeof(struct fdt_reserve_entry);
Kumar Gala3082d232008-08-15 08:24:42 -0500656
Hannes Schmelzeref476832016-09-20 18:10:43 +0200657 actualsize += extrasize;
Kumar Gala3082d232008-08-15 08:24:42 -0500658 /* Make it so the fdt ends on a page boundary */
Simon Glass92549352011-09-17 06:48:58 +0000659 actualsize = ALIGN(actualsize + ((uintptr_t)blob & 0xfff), 0x1000);
660 actualsize = actualsize - ((uintptr_t)blob & 0xfff);
Kumar Gala3082d232008-08-15 08:24:42 -0500661
662 /* Change the fdt header to reflect the correct size */
663 fdt_set_totalsize(blob, actualsize);
664
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200665 if (fdt_memrsv) {
666 /* Add the new reservation */
667 ret = fdt_add_mem_rsv(blob, map_to_sysmem(blob), actualsize);
668 if (ret < 0)
669 return ret;
670 }
Kumar Gala3082d232008-08-15 08:24:42 -0500671
672 return actualsize;
673}
Kumar Gala8ab451c2008-10-22 23:33:56 -0500674
675#ifdef CONFIG_PCI
Kumar Galacfd700b2009-08-05 09:03:54 -0500676#define CONFIG_SYS_PCI_NR_INBOUND_WIN 4
Kumar Gala8ab451c2008-10-22 23:33:56 -0500677
678#define FDT_PCI_PREFETCH (0x40000000)
679#define FDT_PCI_MEM32 (0x02000000)
680#define FDT_PCI_IO (0x01000000)
681#define FDT_PCI_MEM64 (0x03000000)
682
683int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose) {
684
685 int addrcell, sizecell, len, r;
686 u32 *dma_range;
687 /* sized based on pci addr cells, size-cells, & address-cells */
688 u32 dma_ranges[(3 + 2 + 2) * CONFIG_SYS_PCI_NR_INBOUND_WIN];
689
690 addrcell = fdt_getprop_u32_default(blob, "/", "#address-cells", 1);
691 sizecell = fdt_getprop_u32_default(blob, "/", "#size-cells", 1);
692
693 dma_range = &dma_ranges[0];
694 for (r = 0; r < hose->region_count; r++) {
695 u64 bus_start, phys_start, size;
696
Kumar Galaff4e66e2009-02-06 09:49:31 -0600697 /* skip if !PCI_REGION_SYS_MEMORY */
698 if (!(hose->regions[r].flags & PCI_REGION_SYS_MEMORY))
Kumar Gala8ab451c2008-10-22 23:33:56 -0500699 continue;
700
701 bus_start = (u64)hose->regions[r].bus_start;
702 phys_start = (u64)hose->regions[r].phys_start;
703 size = (u64)hose->regions[r].size;
704
705 dma_range[0] = 0;
Kumar Galacfd700b2009-08-05 09:03:54 -0500706 if (size >= 0x100000000ull)
Marek Vasut867aaf62019-07-09 02:49:29 +0200707 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM64);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500708 else
Marek Vasut867aaf62019-07-09 02:49:29 +0200709 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM32);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500710 if (hose->regions[r].flags & PCI_REGION_PREFETCH)
Marek Vasut867aaf62019-07-09 02:49:29 +0200711 dma_range[0] |= cpu_to_fdt32(FDT_PCI_PREFETCH);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500712#ifdef CONFIG_SYS_PCI_64BIT
Marek Vasut867aaf62019-07-09 02:49:29 +0200713 dma_range[1] = cpu_to_fdt32(bus_start >> 32);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500714#else
715 dma_range[1] = 0;
716#endif
Marek Vasut867aaf62019-07-09 02:49:29 +0200717 dma_range[2] = cpu_to_fdt32(bus_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500718
719 if (addrcell == 2) {
Marek Vasut867aaf62019-07-09 02:49:29 +0200720 dma_range[3] = cpu_to_fdt32(phys_start >> 32);
721 dma_range[4] = cpu_to_fdt32(phys_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500722 } else {
Marek Vasut867aaf62019-07-09 02:49:29 +0200723 dma_range[3] = cpu_to_fdt32(phys_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500724 }
725
726 if (sizecell == 2) {
Marek Vasut867aaf62019-07-09 02:49:29 +0200727 dma_range[3 + addrcell + 0] =
728 cpu_to_fdt32(size >> 32);
729 dma_range[3 + addrcell + 1] =
730 cpu_to_fdt32(size & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500731 } else {
Marek Vasut867aaf62019-07-09 02:49:29 +0200732 dma_range[3 + addrcell + 0] =
733 cpu_to_fdt32(size & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500734 }
735
736 dma_range += (3 + addrcell + sizecell);
737 }
738
739 len = dma_range - &dma_ranges[0];
740 if (len)
741 fdt_setprop(blob, phb_off, "dma-ranges", &dma_ranges[0], len*4);
742
743 return 0;
744}
745#endif
Stefan Roese30d45c02009-10-21 11:59:52 +0200746
Matthew McClintockcb2707a2010-10-13 13:39:26 +0200747int fdt_increase_size(void *fdt, int add_len)
748{
749 int newlen;
750
751 newlen = fdt_totalsize(fdt) + add_len;
752
753 /* Open in place with a new len */
754 return fdt_open_into(fdt, fdt, newlen);
755}
756
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100757#ifdef CONFIG_FDT_FIXUP_PARTITIONS
758#include <jffs2/load_kernel.h>
759#include <mtd_node.h>
760
Michal Simekcd1457d2018-07-31 14:31:04 +0200761static int fdt_del_subnodes(const void *blob, int parent_offset)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100762{
763 int off, ndepth;
764 int ret;
765
766 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth);
767 (off >= 0) && (ndepth > 0);
768 off = fdt_next_node(blob, off, &ndepth)) {
769 if (ndepth == 1) {
770 debug("delete %s: offset: %x\n",
771 fdt_get_name(blob, off, 0), off);
772 ret = fdt_del_node((void *)blob, off);
773 if (ret < 0) {
774 printf("Can't delete node: %s\n",
775 fdt_strerror(ret));
776 return ret;
777 } else {
778 ndepth = 0;
779 off = parent_offset;
780 }
781 }
782 }
783 return 0;
784}
785
Michal Simekcd1457d2018-07-31 14:31:04 +0200786static int fdt_del_partitions(void *blob, int parent_offset)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100787{
788 const void *prop;
789 int ndepth = 0;
790 int off;
791 int ret;
792
793 off = fdt_next_node(blob, parent_offset, &ndepth);
794 if (off > 0 && ndepth == 1) {
795 prop = fdt_getprop(blob, off, "label", NULL);
796 if (prop == NULL) {
797 /*
798 * Could not find label property, nand {}; node?
799 * Check subnode, delete partitions there if any.
800 */
801 return fdt_del_partitions(blob, off);
802 } else {
803 ret = fdt_del_subnodes(blob, parent_offset);
804 if (ret < 0) {
805 printf("Can't remove subnodes: %s\n",
806 fdt_strerror(ret));
807 return ret;
808 }
809 }
810 }
811 return 0;
812}
813
Masahiro Yamada8ce8e422020-07-15 19:35:47 +0900814static int fdt_node_set_part_info(void *blob, int parent_offset,
815 struct mtd_device *dev)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100816{
817 struct list_head *pentry;
818 struct part_info *part;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100819 int off, ndepth = 0;
820 int part_num, ret;
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300821 int sizecell;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100822 char buf[64];
823
824 ret = fdt_del_partitions(blob, parent_offset);
825 if (ret < 0)
826 return ret;
827
828 /*
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300829 * Check if size/address is 1 or 2 cells.
830 * We assume #address-cells and #size-cells have same value.
831 */
832 sizecell = fdt_getprop_u32_default_node(blob, parent_offset,
833 0, "#size-cells", 1);
834
835 /*
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100836 * Check if it is nand {}; subnode, adjust
837 * the offset in this case
838 */
839 off = fdt_next_node(blob, parent_offset, &ndepth);
840 if (off > 0 && ndepth == 1)
841 parent_offset = off;
842
843 part_num = 0;
844 list_for_each_prev(pentry, &dev->parts) {
845 int newoff;
846
847 part = list_entry(pentry, struct part_info, link);
848
Scott Wood06503f12013-10-15 17:41:27 -0500849 debug("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100850 part_num, part->name, part->size,
851 part->offset, part->mask_flags);
852
Scott Wood06503f12013-10-15 17:41:27 -0500853 sprintf(buf, "partition@%llx", part->offset);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100854add_sub:
855 ret = fdt_add_subnode(blob, parent_offset, buf);
856 if (ret == -FDT_ERR_NOSPACE) {
857 ret = fdt_increase_size(blob, 512);
858 if (!ret)
859 goto add_sub;
860 else
861 goto err_size;
862 } else if (ret < 0) {
863 printf("Can't add partition node: %s\n",
864 fdt_strerror(ret));
865 return ret;
866 }
867 newoff = ret;
868
869 /* Check MTD_WRITEABLE_CMD flag */
870 if (part->mask_flags & 1) {
871add_ro:
872 ret = fdt_setprop(blob, newoff, "read_only", NULL, 0);
873 if (ret == -FDT_ERR_NOSPACE) {
874 ret = fdt_increase_size(blob, 512);
875 if (!ret)
876 goto add_ro;
877 else
878 goto err_size;
879 } else if (ret < 0)
880 goto err_prop;
881 }
882
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100883add_reg:
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300884 if (sizecell == 2) {
885 ret = fdt_setprop_u64(blob, newoff,
886 "reg", part->offset);
887 if (!ret)
888 ret = fdt_appendprop_u64(blob, newoff,
889 "reg", part->size);
890 } else {
891 ret = fdt_setprop_u32(blob, newoff,
892 "reg", part->offset);
893 if (!ret)
894 ret = fdt_appendprop_u32(blob, newoff,
895 "reg", part->size);
896 }
897
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100898 if (ret == -FDT_ERR_NOSPACE) {
899 ret = fdt_increase_size(blob, 512);
900 if (!ret)
901 goto add_reg;
902 else
903 goto err_size;
904 } else if (ret < 0)
905 goto err_prop;
906
907add_label:
908 ret = fdt_setprop_string(blob, newoff, "label", part->name);
909 if (ret == -FDT_ERR_NOSPACE) {
910 ret = fdt_increase_size(blob, 512);
911 if (!ret)
912 goto add_label;
913 else
914 goto err_size;
915 } else if (ret < 0)
916 goto err_prop;
917
918 part_num++;
919 }
920 return 0;
921err_size:
922 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
923 return ret;
924err_prop:
925 printf("Can't add property: %s\n", fdt_strerror(ret));
926 return ret;
927}
928
929/*
930 * Update partitions in nor/nand nodes using info from
931 * mtdparts environment variable. The nodes to update are
932 * specified by node_info structure which contains mtd device
933 * type and compatible string: E. g. the board code in
934 * ft_board_setup() could use:
935 *
936 * struct node_info nodes[] = {
937 * { "fsl,mpc5121-nfc", MTD_DEV_TYPE_NAND, },
938 * { "cfi-flash", MTD_DEV_TYPE_NOR, },
939 * };
940 *
941 * fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
942 */
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900943void fdt_fixup_mtdparts(void *blob, const struct node_info *node_info,
944 int node_info_size)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100945{
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100946 struct mtd_device *dev;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100947 int i, idx;
948 int noff;
Masahiro Yamada53a89662020-07-17 10:46:18 +0900949 bool inited = false;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100950
951 for (i = 0; i < node_info_size; i++) {
952 idx = 0;
Masahiro Yamada7d8073e2020-07-17 10:46:19 +0900953 noff = -1;
954
955 while ((noff = fdt_node_offset_by_compatible(blob, noff,
956 node_info[i].compat)) >= 0) {
957 const char *prop;
958
959 prop = fdt_getprop(blob, noff, "status", NULL);
960 if (prop && !strcmp(prop, "disabled"))
961 continue;
962
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100963 debug("%s: %s, mtd dev type %d\n",
964 fdt_get_name(blob, noff, 0),
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900965 node_info[i].compat, node_info[i].type);
Masahiro Yamada53a89662020-07-17 10:46:18 +0900966
967 if (!inited) {
968 if (mtdparts_init() != 0)
969 return;
970 inited = true;
971 }
972
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900973 dev = device_find(node_info[i].type, idx++);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100974 if (dev) {
975 if (fdt_node_set_part_info(blob, noff, dev))
976 return; /* return on error */
977 }
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100978 }
979 }
980}
981#endif
Kumar Gala49b97d92010-03-30 10:19:26 -0500982
983void fdt_del_node_and_alias(void *blob, const char *alias)
984{
985 int off = fdt_path_offset(blob, alias);
986
987 if (off < 0)
988 return;
989
990 fdt_del_node(blob, off);
991
992 off = fdt_path_offset(blob, "/aliases");
993 fdt_delprop(blob, off, alias);
994}
Kumar Galaa0342c02010-06-16 14:27:38 -0500995
Kumar Galaa0342c02010-06-16 14:27:38 -0500996/* Max address size we deal with */
997#define OF_MAX_ADDR_CELLS 4
Bin Menga0ae3802015-12-07 01:39:47 -0800998#define OF_BAD_ADDR FDT_ADDR_T_NONE
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +0100999#define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
1000 (ns) > 0)
Kumar Galaa0342c02010-06-16 14:27:38 -05001001
1002/* Debug utility */
1003#ifdef DEBUG
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001004static void of_dump_addr(const char *s, const fdt32_t *addr, int na)
Kumar Galaa0342c02010-06-16 14:27:38 -05001005{
1006 printf("%s", s);
1007 while(na--)
1008 printf(" %08x", *(addr++));
1009 printf("\n");
1010}
1011#else
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001012static void of_dump_addr(const char *s, const fdt32_t *addr, int na) { }
Kumar Galaa0342c02010-06-16 14:27:38 -05001013#endif
1014
Paul Burton0a222d52016-05-17 07:43:24 +01001015/**
1016 * struct of_bus - Callbacks for bus specific translators
Paul Burton49717b12016-05-17 07:43:25 +01001017 * @name: A string used to identify this bus in debug output.
1018 * @addresses: The name of the DT property from which addresses are
1019 * to be read, typically "reg".
Paul Burton0a222d52016-05-17 07:43:24 +01001020 * @match: Return non-zero if the node whose parent is at
1021 * parentoffset in the FDT blob corresponds to a bus
1022 * of this type, otherwise return zero. If NULL a match
1023 * is assumed.
Paul Burton49717b12016-05-17 07:43:25 +01001024 * @count_cells:Count how many cells (be32 values) a node whose parent
1025 * is at parentoffset in the FDT blob will require to
1026 * represent its address (written to *addrc) & size
1027 * (written to *sizec).
1028 * @map: Map the address addr from the address space of this
1029 * bus to that of its parent, making use of the ranges
1030 * read from DT to an array at range. na and ns are the
1031 * number of cells (be32 values) used to hold and address
1032 * or size, respectively, for this bus. pna is the number
1033 * of cells used to hold an address for the parent bus.
1034 * Returns the address in the address space of the parent
1035 * bus.
1036 * @translate: Update the value of the address cells at addr within an
1037 * FDT by adding offset to it. na specifies the number of
1038 * cells used to hold the address being translated. Returns
1039 * zero on success, non-zero on error.
Paul Burton0a222d52016-05-17 07:43:24 +01001040 *
1041 * Each bus type will include a struct of_bus in the of_busses array,
1042 * providing implementations of some or all of the functions used to
1043 * match the bus & handle address translation for its children.
1044 */
Kumar Galaa0342c02010-06-16 14:27:38 -05001045struct of_bus {
1046 const char *name;
1047 const char *addresses;
Stephen Warren11e44fc2016-08-05 09:47:50 -06001048 int (*match)(const void *blob, int parentoffset);
1049 void (*count_cells)(const void *blob, int parentoffset,
Kumar Galaa0342c02010-06-16 14:27:38 -05001050 int *addrc, int *sizec);
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001051 u64 (*map)(fdt32_t *addr, const fdt32_t *range,
Kumar Galaa0342c02010-06-16 14:27:38 -05001052 int na, int ns, int pna);
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001053 int (*translate)(fdt32_t *addr, u64 offset, int na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001054};
1055
1056/* Default translator (generic bus) */
Simon Glasseed36602017-05-18 20:09:26 -06001057void fdt_support_default_count_cells(const void *blob, int parentoffset,
Kumar Galaa0342c02010-06-16 14:27:38 -05001058 int *addrc, int *sizec)
1059{
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001060 const fdt32_t *prop;
Scott Wood6395f312010-08-12 18:37:39 -05001061
Simon Glass933cdbb2014-10-23 18:58:57 -06001062 if (addrc)
1063 *addrc = fdt_address_cells(blob, parentoffset);
Scott Wood6395f312010-08-12 18:37:39 -05001064
1065 if (sizec) {
1066 prop = fdt_getprop(blob, parentoffset, "#size-cells", NULL);
1067 if (prop)
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001068 *sizec = be32_to_cpup(prop);
Scott Wood6395f312010-08-12 18:37:39 -05001069 else
1070 *sizec = 1;
1071 }
Kumar Galaa0342c02010-06-16 14:27:38 -05001072}
1073
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001074static u64 of_bus_default_map(fdt32_t *addr, const fdt32_t *range,
Kumar Galaa0342c02010-06-16 14:27:38 -05001075 int na, int ns, int pna)
1076{
1077 u64 cp, s, da;
1078
Simon Glasseed36602017-05-18 20:09:26 -06001079 cp = fdt_read_number(range, na);
1080 s = fdt_read_number(range + na + pna, ns);
1081 da = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001082
Sekhar Norid8e9cf42018-12-06 15:20:47 +05301083 debug("OF: default map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
Kumar Galaa0342c02010-06-16 14:27:38 -05001084
1085 if (da < cp || da >= (cp + s))
1086 return OF_BAD_ADDR;
1087 return da - cp;
1088}
1089
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001090static int of_bus_default_translate(fdt32_t *addr, u64 offset, int na)
Kumar Galaa0342c02010-06-16 14:27:38 -05001091{
Simon Glasseed36602017-05-18 20:09:26 -06001092 u64 a = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001093 memset(addr, 0, na * 4);
1094 a += offset;
1095 if (na > 1)
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001096 addr[na - 2] = cpu_to_fdt32(a >> 32);
1097 addr[na - 1] = cpu_to_fdt32(a & 0xffffffffu);
Kumar Galaa0342c02010-06-16 14:27:38 -05001098
1099 return 0;
1100}
1101
Paul Burton0a222d52016-05-17 07:43:24 +01001102#ifdef CONFIG_OF_ISA_BUS
1103
1104/* ISA bus translator */
Stephen Warren11e44fc2016-08-05 09:47:50 -06001105static int of_bus_isa_match(const void *blob, int parentoffset)
Paul Burton0a222d52016-05-17 07:43:24 +01001106{
1107 const char *name;
1108
1109 name = fdt_get_name(blob, parentoffset, NULL);
1110 if (!name)
1111 return 0;
1112
1113 return !strcmp(name, "isa");
1114}
1115
Stephen Warren11e44fc2016-08-05 09:47:50 -06001116static void of_bus_isa_count_cells(const void *blob, int parentoffset,
Paul Burton0a222d52016-05-17 07:43:24 +01001117 int *addrc, int *sizec)
1118{
1119 if (addrc)
1120 *addrc = 2;
1121 if (sizec)
1122 *sizec = 1;
1123}
1124
1125static u64 of_bus_isa_map(fdt32_t *addr, const fdt32_t *range,
1126 int na, int ns, int pna)
1127{
1128 u64 cp, s, da;
1129
1130 /* Check address type match */
1131 if ((addr[0] ^ range[0]) & cpu_to_be32(1))
1132 return OF_BAD_ADDR;
1133
Simon Glasseed36602017-05-18 20:09:26 -06001134 cp = fdt_read_number(range + 1, na - 1);
1135 s = fdt_read_number(range + na + pna, ns);
1136 da = fdt_read_number(addr + 1, na - 1);
Paul Burton0a222d52016-05-17 07:43:24 +01001137
Sekhar Norid8e9cf42018-12-06 15:20:47 +05301138 debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
Paul Burton0a222d52016-05-17 07:43:24 +01001139
1140 if (da < cp || da >= (cp + s))
1141 return OF_BAD_ADDR;
1142 return da - cp;
1143}
1144
1145static int of_bus_isa_translate(fdt32_t *addr, u64 offset, int na)
1146{
1147 return of_bus_default_translate(addr + 1, offset, na - 1);
1148}
1149
1150#endif /* CONFIG_OF_ISA_BUS */
1151
Kumar Galaa0342c02010-06-16 14:27:38 -05001152/* Array of bus specific translators */
1153static struct of_bus of_busses[] = {
Paul Burton0a222d52016-05-17 07:43:24 +01001154#ifdef CONFIG_OF_ISA_BUS
1155 /* ISA */
1156 {
1157 .name = "isa",
1158 .addresses = "reg",
1159 .match = of_bus_isa_match,
1160 .count_cells = of_bus_isa_count_cells,
1161 .map = of_bus_isa_map,
1162 .translate = of_bus_isa_translate,
1163 },
1164#endif /* CONFIG_OF_ISA_BUS */
Kumar Galaa0342c02010-06-16 14:27:38 -05001165 /* Default */
1166 {
1167 .name = "default",
1168 .addresses = "reg",
Simon Glasseed36602017-05-18 20:09:26 -06001169 .count_cells = fdt_support_default_count_cells,
Kumar Galaa0342c02010-06-16 14:27:38 -05001170 .map = of_bus_default_map,
1171 .translate = of_bus_default_translate,
1172 },
1173};
1174
Stephen Warren11e44fc2016-08-05 09:47:50 -06001175static struct of_bus *of_match_bus(const void *blob, int parentoffset)
Paul Burton0a222d52016-05-17 07:43:24 +01001176{
1177 struct of_bus *bus;
1178
1179 if (ARRAY_SIZE(of_busses) == 1)
1180 return of_busses;
1181
1182 for (bus = of_busses; bus; bus++) {
1183 if (!bus->match || bus->match(blob, parentoffset))
1184 return bus;
1185 }
1186
1187 /*
1188 * We should always have matched the default bus at least, since
1189 * it has a NULL match field. If we didn't then it somehow isn't
1190 * in the of_busses array or something equally catastrophic has
1191 * gone wrong.
1192 */
1193 assert(0);
1194 return NULL;
1195}
1196
Stephen Warren11e44fc2016-08-05 09:47:50 -06001197static int of_translate_one(const void *blob, int parent, struct of_bus *bus,
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001198 struct of_bus *pbus, fdt32_t *addr,
Kumar Galaa0342c02010-06-16 14:27:38 -05001199 int na, int ns, int pna, const char *rprop)
1200{
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001201 const fdt32_t *ranges;
Kumar Galaa0342c02010-06-16 14:27:38 -05001202 int rlen;
1203 int rone;
1204 u64 offset = OF_BAD_ADDR;
1205
1206 /* Normally, an absence of a "ranges" property means we are
1207 * crossing a non-translatable boundary, and thus the addresses
1208 * below the current not cannot be converted to CPU physical ones.
1209 * Unfortunately, while this is very clear in the spec, it's not
1210 * what Apple understood, and they do have things like /uni-n or
1211 * /ht nodes with no "ranges" property and a lot of perfectly
1212 * useable mapped devices below them. Thus we treat the absence of
1213 * "ranges" as equivalent to an empty "ranges" property which means
1214 * a 1:1 translation at that level. It's up to the caller not to try
1215 * to translate addresses that aren't supposed to be translated in
1216 * the first place. --BenH.
1217 */
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001218 ranges = fdt_getprop(blob, parent, rprop, &rlen);
Kumar Galaa0342c02010-06-16 14:27:38 -05001219 if (ranges == NULL || rlen == 0) {
Simon Glasseed36602017-05-18 20:09:26 -06001220 offset = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001221 memset(addr, 0, pna * 4);
1222 debug("OF: no ranges, 1:1 translation\n");
1223 goto finish;
1224 }
1225
1226 debug("OF: walking ranges...\n");
1227
1228 /* Now walk through the ranges */
1229 rlen /= 4;
1230 rone = na + pna + ns;
1231 for (; rlen >= rone; rlen -= rone, ranges += rone) {
1232 offset = bus->map(addr, ranges, na, ns, pna);
1233 if (offset != OF_BAD_ADDR)
1234 break;
1235 }
1236 if (offset == OF_BAD_ADDR) {
1237 debug("OF: not found !\n");
1238 return 1;
1239 }
1240 memcpy(addr, ranges + na, 4 * pna);
1241
1242 finish:
1243 of_dump_addr("OF: parent translation for:", addr, pna);
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001244 debug("OF: with offset: %llu\n", offset);
Kumar Galaa0342c02010-06-16 14:27:38 -05001245
1246 /* Translate it into parent bus space */
1247 return pbus->translate(addr, offset, pna);
1248}
1249
1250/*
1251 * Translate an address from the device-tree into a CPU physical address,
1252 * this walks up the tree and applies the various bus mappings on the
1253 * way.
1254 *
1255 * Note: We consider that crossing any level with #size-cells == 0 to mean
1256 * that translation is impossible (that is we are not dealing with a value
1257 * that can be mapped to a cpu physical address). This is not really specified
1258 * that way, but this is traditionally the way IBM at least do things
1259 */
Stephen Warren11e44fc2016-08-05 09:47:50 -06001260static u64 __of_translate_address(const void *blob, int node_offset,
1261 const fdt32_t *in_addr, const char *rprop)
Kumar Galaa0342c02010-06-16 14:27:38 -05001262{
1263 int parent;
1264 struct of_bus *bus, *pbus;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001265 fdt32_t addr[OF_MAX_ADDR_CELLS];
Kumar Galaa0342c02010-06-16 14:27:38 -05001266 int na, ns, pna, pns;
1267 u64 result = OF_BAD_ADDR;
1268
1269 debug("OF: ** translation for device %s **\n",
1270 fdt_get_name(blob, node_offset, NULL));
1271
1272 /* Get parent & match bus type */
1273 parent = fdt_parent_offset(blob, node_offset);
1274 if (parent < 0)
1275 goto bail;
Paul Burton0a222d52016-05-17 07:43:24 +01001276 bus = of_match_bus(blob, parent);
Kumar Galaa0342c02010-06-16 14:27:38 -05001277
1278 /* Cound address cells & copy address locally */
Scott Wood6395f312010-08-12 18:37:39 -05001279 bus->count_cells(blob, parent, &na, &ns);
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +01001280 if (!OF_CHECK_COUNTS(na, ns)) {
Kumar Galaa0342c02010-06-16 14:27:38 -05001281 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1282 fdt_get_name(blob, node_offset, NULL));
1283 goto bail;
1284 }
1285 memcpy(addr, in_addr, na * 4);
1286
1287 debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
1288 bus->name, na, ns, fdt_get_name(blob, parent, NULL));
1289 of_dump_addr("OF: translating address:", addr, na);
1290
1291 /* Translate */
1292 for (;;) {
1293 /* Switch to parent bus */
1294 node_offset = parent;
1295 parent = fdt_parent_offset(blob, node_offset);
1296
1297 /* If root, we have finished */
1298 if (parent < 0) {
1299 debug("OF: reached root node\n");
Simon Glasseed36602017-05-18 20:09:26 -06001300 result = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001301 break;
1302 }
1303
1304 /* Get new parent bus and counts */
Paul Burton0a222d52016-05-17 07:43:24 +01001305 pbus = of_match_bus(blob, parent);
Scott Wood6395f312010-08-12 18:37:39 -05001306 pbus->count_cells(blob, parent, &pna, &pns);
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +01001307 if (!OF_CHECK_COUNTS(pna, pns)) {
Kumar Galaa0342c02010-06-16 14:27:38 -05001308 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1309 fdt_get_name(blob, node_offset, NULL));
1310 break;
1311 }
1312
1313 debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
1314 pbus->name, pna, pns, fdt_get_name(blob, parent, NULL));
1315
1316 /* Apply bus translation */
1317 if (of_translate_one(blob, node_offset, bus, pbus,
1318 addr, na, ns, pna, rprop))
1319 break;
1320
1321 /* Complete the move up one level */
1322 na = pna;
1323 ns = pns;
1324 bus = pbus;
1325
1326 of_dump_addr("OF: one level translation:", addr, na);
1327 }
1328 bail:
1329
1330 return result;
1331}
1332
Stephen Warren11e44fc2016-08-05 09:47:50 -06001333u64 fdt_translate_address(const void *blob, int node_offset,
1334 const fdt32_t *in_addr)
Kumar Galaa0342c02010-06-16 14:27:38 -05001335{
1336 return __of_translate_address(blob, node_offset, in_addr, "ranges");
1337}
Kumar Gala75e73af2010-07-04 12:48:21 -05001338
Fabien Dessenne641067f2019-05-31 15:11:30 +02001339u64 fdt_translate_dma_address(const void *blob, int node_offset,
1340 const fdt32_t *in_addr)
1341{
1342 return __of_translate_address(blob, node_offset, in_addr, "dma-ranges");
1343}
1344
Kumar Gala75e73af2010-07-04 12:48:21 -05001345/**
1346 * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and
1347 * who's reg property matches a physical cpu address
1348 *
1349 * @blob: ptr to device tree
1350 * @compat: compatiable string to match
1351 * @compat_off: property name
1352 *
1353 */
1354int fdt_node_offset_by_compat_reg(void *blob, const char *compat,
1355 phys_addr_t compat_off)
1356{
1357 int len, off = fdt_node_offset_by_compatible(blob, -1, compat);
1358 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001359 const fdt32_t *reg = fdt_getprop(blob, off, "reg", &len);
Kumar Gala75e73af2010-07-04 12:48:21 -05001360 if (reg) {
1361 if (compat_off == fdt_translate_address(blob, off, reg))
1362 return off;
1363 }
1364 off = fdt_node_offset_by_compatible(blob, off, compat);
1365 }
1366
1367 return -FDT_ERR_NOTFOUND;
1368}
1369
Kumar Galab4b847e2010-07-09 16:18:58 -05001370/**
1371 * fdt_alloc_phandle: Return next free phandle value
1372 *
1373 * @blob: ptr to device tree
1374 */
1375int fdt_alloc_phandle(void *blob)
1376{
Masahiro Yamadab4141192014-11-07 03:03:31 +09001377 int offset;
1378 uint32_t phandle = 0;
Kumar Gala75e73af2010-07-04 12:48:21 -05001379
Kumar Galab4b847e2010-07-09 16:18:58 -05001380 for (offset = fdt_next_node(blob, -1, NULL); offset >= 0;
1381 offset = fdt_next_node(blob, offset, NULL)) {
Timur Tabi50bf17b2011-09-20 18:24:35 -05001382 phandle = max(phandle, fdt_get_phandle(blob, offset));
Kumar Galab4b847e2010-07-09 16:18:58 -05001383 }
1384
1385 return phandle + 1;
1386}
Anatolij Gustschinbeca5a52010-08-18 11:25:20 +02001387
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001388/*
Kumar Galaf117c0f2011-08-01 00:23:23 -05001389 * fdt_set_phandle: Create a phandle property for the given node
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001390 *
1391 * @fdt: ptr to device tree
1392 * @nodeoffset: node to update
1393 * @phandle: phandle value to set (must be unique)
Kumar Galaf117c0f2011-08-01 00:23:23 -05001394 */
1395int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle)
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001396{
1397 int ret;
1398
1399#ifdef DEBUG
1400 int off = fdt_node_offset_by_phandle(fdt, phandle);
1401
1402 if ((off >= 0) && (off != nodeoffset)) {
1403 char buf[64];
1404
1405 fdt_get_path(fdt, nodeoffset, buf, sizeof(buf));
1406 printf("Trying to update node %s with phandle %u ",
1407 buf, phandle);
1408
1409 fdt_get_path(fdt, off, buf, sizeof(buf));
1410 printf("that already exists in node %s.\n", buf);
1411 return -FDT_ERR_BADPHANDLE;
1412 }
1413#endif
1414
1415 ret = fdt_setprop_cell(fdt, nodeoffset, "phandle", phandle);
1416 if (ret < 0)
1417 return ret;
1418
1419 /*
1420 * For now, also set the deprecated "linux,phandle" property, so that we
1421 * don't break older kernels.
1422 */
1423 ret = fdt_setprop_cell(fdt, nodeoffset, "linux,phandle", phandle);
1424
1425 return ret;
1426}
1427
Kumar Gala10aeabd2011-08-01 00:25:20 -05001428/*
1429 * fdt_create_phandle: Create a phandle property for the given node
1430 *
1431 * @fdt: ptr to device tree
1432 * @nodeoffset: node to update
1433 */
Timur Tabi3c927cc2011-09-20 18:24:34 -05001434unsigned int fdt_create_phandle(void *fdt, int nodeoffset)
Kumar Gala10aeabd2011-08-01 00:25:20 -05001435{
1436 /* see if there is a phandle already */
1437 int phandle = fdt_get_phandle(fdt, nodeoffset);
1438
1439 /* if we got 0, means no phandle so create one */
1440 if (phandle == 0) {
Timur Tabi3c927cc2011-09-20 18:24:34 -05001441 int ret;
1442
Kumar Gala10aeabd2011-08-01 00:25:20 -05001443 phandle = fdt_alloc_phandle(fdt);
Timur Tabi3c927cc2011-09-20 18:24:34 -05001444 ret = fdt_set_phandle(fdt, nodeoffset, phandle);
1445 if (ret < 0) {
1446 printf("Can't set phandle %u: %s\n", phandle,
1447 fdt_strerror(ret));
1448 return 0;
1449 }
Kumar Gala10aeabd2011-08-01 00:25:20 -05001450 }
1451
1452 return phandle;
1453}
1454
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001455/*
1456 * fdt_set_node_status: Set status for the given node
1457 *
1458 * @fdt: ptr to device tree
1459 * @nodeoffset: node to update
1460 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED,
1461 * FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE
1462 * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE
1463 */
1464int fdt_set_node_status(void *fdt, int nodeoffset,
1465 enum fdt_status status, unsigned int error_code)
1466{
1467 char buf[16];
1468 int ret = 0;
1469
1470 if (nodeoffset < 0)
1471 return nodeoffset;
1472
1473 switch (status) {
1474 case FDT_STATUS_OKAY:
1475 ret = fdt_setprop_string(fdt, nodeoffset, "status", "okay");
1476 break;
1477 case FDT_STATUS_DISABLED:
1478 ret = fdt_setprop_string(fdt, nodeoffset, "status", "disabled");
1479 break;
1480 case FDT_STATUS_FAIL:
1481 ret = fdt_setprop_string(fdt, nodeoffset, "status", "fail");
1482 break;
1483 case FDT_STATUS_FAIL_ERROR_CODE:
1484 sprintf(buf, "fail-%d", error_code);
1485 ret = fdt_setprop_string(fdt, nodeoffset, "status", buf);
1486 break;
1487 default:
1488 printf("Invalid fdt status: %x\n", status);
1489 ret = -1;
1490 break;
1491 }
1492
1493 return ret;
1494}
1495
1496/*
1497 * fdt_set_status_by_alias: Set status for the given node given an alias
1498 *
1499 * @fdt: ptr to device tree
1500 * @alias: alias of node to update
1501 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED,
1502 * FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE
1503 * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE
1504 */
1505int fdt_set_status_by_alias(void *fdt, const char* alias,
1506 enum fdt_status status, unsigned int error_code)
1507{
1508 int offset = fdt_path_offset(fdt, alias);
1509
1510 return fdt_set_node_status(fdt, offset, status, error_code);
1511}
1512
Tom Wai-Hong Tam096eb3f2012-12-05 14:46:41 +00001513#if defined(CONFIG_VIDEO) || defined(CONFIG_LCD)
Anatolij Gustschinbeca5a52010-08-18 11:25:20 +02001514int fdt_add_edid(void *blob, const char *compat, unsigned char *edid_buf)
1515{
1516 int noff;
1517 int ret;
1518
1519 noff = fdt_node_offset_by_compatible(blob, -1, compat);
1520 if (noff != -FDT_ERR_NOTFOUND) {
1521 debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat);
1522add_edid:
1523 ret = fdt_setprop(blob, noff, "edid", edid_buf, 128);
1524 if (ret == -FDT_ERR_NOSPACE) {
1525 ret = fdt_increase_size(blob, 512);
1526 if (!ret)
1527 goto add_edid;
1528 else
1529 goto err_size;
1530 } else if (ret < 0) {
1531 printf("Can't add property: %s\n", fdt_strerror(ret));
1532 return ret;
1533 }
1534 }
1535 return 0;
1536err_size:
1537 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
1538 return ret;
1539}
1540#endif
Timur Tabibb682002011-05-03 13:24:07 -05001541
1542/*
1543 * Verify the physical address of device tree node for a given alias
1544 *
1545 * This function locates the device tree node of a given alias, and then
1546 * verifies that the physical address of that device matches the given
1547 * parameter. It displays a message if there is a mismatch.
1548 *
1549 * Returns 1 on success, 0 on failure
1550 */
1551int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr)
1552{
1553 const char *path;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001554 const fdt32_t *reg;
Timur Tabibb682002011-05-03 13:24:07 -05001555 int node, len;
1556 u64 dt_addr;
1557
1558 path = fdt_getprop(fdt, anode, alias, NULL);
1559 if (!path) {
1560 /* If there's no such alias, then it's not a failure */
1561 return 1;
1562 }
1563
1564 node = fdt_path_offset(fdt, path);
1565 if (node < 0) {
1566 printf("Warning: device tree alias '%s' points to invalid "
1567 "node %s.\n", alias, path);
1568 return 0;
1569 }
1570
1571 reg = fdt_getprop(fdt, node, "reg", &len);
1572 if (!reg) {
1573 printf("Warning: device tree node '%s' has no address.\n",
1574 path);
1575 return 0;
1576 }
1577
1578 dt_addr = fdt_translate_address(fdt, node, reg);
1579 if (addr != dt_addr) {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001580 printf("Warning: U-Boot configured device %s at address %llu,\n"
1581 "but the device tree has it address %llx.\n",
1582 alias, addr, dt_addr);
Timur Tabibb682002011-05-03 13:24:07 -05001583 return 0;
1584 }
1585
1586 return 1;
1587}
1588
1589/*
1590 * Returns the base address of an SOC or PCI node
1591 */
Simon Glassec002112017-05-18 20:09:00 -06001592u64 fdt_get_base_address(const void *fdt, int node)
Timur Tabibb682002011-05-03 13:24:07 -05001593{
1594 int size;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001595 const fdt32_t *prop;
Timur Tabibb682002011-05-03 13:24:07 -05001596
Simon Glass336a4482017-07-04 13:31:20 -06001597 prop = fdt_getprop(fdt, node, "reg", &size);
Timur Tabibb682002011-05-03 13:24:07 -05001598
Masahiro Yamadae3665ba2019-06-27 16:39:57 +09001599 return prop ? fdt_translate_address(fdt, node, prop) : OF_BAD_ADDR;
Timur Tabibb682002011-05-03 13:24:07 -05001600}
Alexander Grafc48e6862014-04-11 17:09:41 +02001601
1602/*
1603 * Read a property of size <prop_len>. Currently only supports 1 or 2 cells.
1604 */
1605static int fdt_read_prop(const fdt32_t *prop, int prop_len, int cell_off,
1606 uint64_t *val, int cells)
1607{
1608 const fdt32_t *prop32 = &prop[cell_off];
Jean-Jacques Hiblotd60ae4c2019-10-22 10:05:22 +02001609 const unaligned_fdt64_t *prop64 = (const fdt64_t *)&prop[cell_off];
Alexander Grafc48e6862014-04-11 17:09:41 +02001610
1611 if ((cell_off + cells) > prop_len)
1612 return -FDT_ERR_NOSPACE;
1613
1614 switch (cells) {
1615 case 1:
1616 *val = fdt32_to_cpu(*prop32);
1617 break;
1618 case 2:
1619 *val = fdt64_to_cpu(*prop64);
1620 break;
1621 default:
1622 return -FDT_ERR_NOSPACE;
1623 }
1624
1625 return 0;
1626}
1627
1628/**
1629 * fdt_read_range - Read a node's n'th range property
1630 *
1631 * @fdt: ptr to device tree
1632 * @node: offset of node
1633 * @n: range index
1634 * @child_addr: pointer to storage for the "child address" field
1635 * @addr: pointer to storage for the CPU view translated physical start
1636 * @len: pointer to storage for the range length
1637 *
1638 * Convenience function that reads and interprets a specific range out of
1639 * a number of the "ranges" property array.
1640 */
1641int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
1642 uint64_t *addr, uint64_t *len)
1643{
1644 int pnode = fdt_parent_offset(fdt, node);
1645 const fdt32_t *ranges;
1646 int pacells;
1647 int acells;
1648 int scells;
1649 int ranges_len;
1650 int cell = 0;
1651 int r = 0;
1652
1653 /*
1654 * The "ranges" property is an array of
1655 * { <child address> <parent address> <size in child address space> }
1656 *
1657 * All 3 elements can span a diffent number of cells. Fetch their size.
1658 */
1659 pacells = fdt_getprop_u32_default_node(fdt, pnode, 0, "#address-cells", 1);
1660 acells = fdt_getprop_u32_default_node(fdt, node, 0, "#address-cells", 1);
1661 scells = fdt_getprop_u32_default_node(fdt, node, 0, "#size-cells", 1);
1662
1663 /* Now try to get the ranges property */
1664 ranges = fdt_getprop(fdt, node, "ranges", &ranges_len);
1665 if (!ranges)
1666 return -FDT_ERR_NOTFOUND;
1667 ranges_len /= sizeof(uint32_t);
1668
1669 /* Jump to the n'th entry */
1670 cell = n * (pacells + acells + scells);
1671
1672 /* Read <child address> */
1673 if (child_addr) {
1674 r = fdt_read_prop(ranges, ranges_len, cell, child_addr,
1675 acells);
1676 if (r)
1677 return r;
1678 }
1679 cell += acells;
1680
1681 /* Read <parent address> */
1682 if (addr)
1683 *addr = fdt_translate_address(fdt, node, ranges + cell);
1684 cell += pacells;
1685
1686 /* Read <size in child address space> */
1687 if (len) {
1688 r = fdt_read_prop(ranges, ranges_len, cell, len, scells);
1689 if (r)
1690 return r;
1691 }
1692
1693 return 0;
1694}
Hans de Goeded4f495a2014-11-17 15:29:11 +01001695
1696/**
1697 * fdt_setup_simplefb_node - Fill and enable a simplefb node
1698 *
1699 * @fdt: ptr to device tree
1700 * @node: offset of the simplefb node
1701 * @base_address: framebuffer base address
1702 * @width: width in pixels
1703 * @height: height in pixels
1704 * @stride: bytes per line
1705 * @format: pixel format string
1706 *
1707 * Convenience function to fill and enable a simplefb node.
1708 */
1709int fdt_setup_simplefb_node(void *fdt, int node, u64 base_address, u32 width,
1710 u32 height, u32 stride, const char *format)
1711{
1712 char name[32];
1713 fdt32_t cells[4];
1714 int i, addrc, sizec, ret;
1715
Simon Glasseed36602017-05-18 20:09:26 -06001716 fdt_support_default_count_cells(fdt, fdt_parent_offset(fdt, node),
1717 &addrc, &sizec);
Hans de Goeded4f495a2014-11-17 15:29:11 +01001718 i = 0;
1719 if (addrc == 2)
1720 cells[i++] = cpu_to_fdt32(base_address >> 32);
1721 cells[i++] = cpu_to_fdt32(base_address);
1722 if (sizec == 2)
1723 cells[i++] = 0;
1724 cells[i++] = cpu_to_fdt32(height * stride);
1725
1726 ret = fdt_setprop(fdt, node, "reg", cells, sizeof(cells[0]) * i);
1727 if (ret < 0)
1728 return ret;
1729
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001730 snprintf(name, sizeof(name), "framebuffer@%llx", base_address);
Hans de Goeded4f495a2014-11-17 15:29:11 +01001731 ret = fdt_set_name(fdt, node, name);
1732 if (ret < 0)
1733 return ret;
1734
1735 ret = fdt_setprop_u32(fdt, node, "width", width);
1736 if (ret < 0)
1737 return ret;
1738
1739 ret = fdt_setprop_u32(fdt, node, "height", height);
1740 if (ret < 0)
1741 return ret;
1742
1743 ret = fdt_setprop_u32(fdt, node, "stride", stride);
1744 if (ret < 0)
1745 return ret;
1746
1747 ret = fdt_setprop_string(fdt, node, "format", format);
1748 if (ret < 0)
1749 return ret;
1750
1751 ret = fdt_setprop_string(fdt, node, "status", "okay");
1752 if (ret < 0)
1753 return ret;
1754
1755 return 0;
1756}
Tim Harvey08daa252015-04-08 11:45:39 -07001757
1758/*
1759 * Update native-mode in display-timings from display environment variable.
1760 * The node to update are specified by path.
1761 */
1762int fdt_fixup_display(void *blob, const char *path, const char *display)
1763{
1764 int off, toff;
1765
1766 if (!display || !path)
1767 return -FDT_ERR_NOTFOUND;
1768
1769 toff = fdt_path_offset(blob, path);
1770 if (toff >= 0)
1771 toff = fdt_subnode_offset(blob, toff, "display-timings");
1772 if (toff < 0)
1773 return toff;
1774
1775 for (off = fdt_first_subnode(blob, toff);
1776 off >= 0;
1777 off = fdt_next_subnode(blob, off)) {
1778 uint32_t h = fdt_get_phandle(blob, off);
1779 debug("%s:0x%x\n", fdt_get_name(blob, off, NULL),
1780 fdt32_to_cpu(h));
1781 if (strcasecmp(fdt_get_name(blob, off, NULL), display) == 0)
1782 return fdt_setprop_u32(blob, toff, "native-mode", h);
1783 }
1784 return toff;
1785}
Pantelis Antonioufc7c3182017-09-04 23:12:11 +03001786
1787#ifdef CONFIG_OF_LIBFDT_OVERLAY
1788/**
1789 * fdt_overlay_apply_verbose - Apply an overlay with verbose error reporting
1790 *
1791 * @fdt: ptr to device tree
1792 * @fdto: ptr to device tree overlay
1793 *
1794 * Convenience function to apply an overlay and display helpful messages
1795 * in the case of an error
1796 */
1797int fdt_overlay_apply_verbose(void *fdt, void *fdto)
1798{
1799 int err;
1800 bool has_symbols;
1801
1802 err = fdt_path_offset(fdt, "/__symbols__");
1803 has_symbols = err >= 0;
1804
1805 err = fdt_overlay_apply(fdt, fdto);
1806 if (err < 0) {
1807 printf("failed on fdt_overlay_apply(): %s\n",
1808 fdt_strerror(err));
1809 if (!has_symbols) {
1810 printf("base fdt does did not have a /__symbols__ node\n");
1811 printf("make sure you've compiled with -@\n");
1812 }
1813 }
1814 return err;
1815}
1816#endif