blob: 695d8e134aa43efc5e9308b9256e63e172e706be [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
John Rigbya6bd9e82010-10-13 13:57:33 -0600423int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks)
424{
425 int err, nodeoffset;
Thierry Reding6d29cc72018-01-30 11:34:17 +0100426 int len, i;
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000427 u8 tmp[MEMORY_BANKS_MAX * 16]; /* Up to 64-bit address + 64-bit size */
Kumar Gala3c927282007-11-26 14:57:45 -0600428
Kim Phillips8aa5ec62013-01-16 14:00:11 +0000429 if (banks > MEMORY_BANKS_MAX) {
430 printf("%s: num banks %d exceeds hardcoded limit %d."
431 " Recompile with higher MEMORY_BANKS_MAX?\n",
432 __FUNCTION__, banks, MEMORY_BANKS_MAX);
433 return -1;
434 }
435
Kumar Gala3c927282007-11-26 14:57:45 -0600436 err = fdt_check_header(blob);
437 if (err < 0) {
438 printf("%s: %s\n", __FUNCTION__, fdt_strerror(err));
439 return err;
440 }
441
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900442 /* find or create "/memory" node. */
443 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
444 if (nodeoffset < 0)
Miao Yan35940de2013-11-28 17:51:39 +0800445 return nodeoffset;
Masahiro Yamada8edb2192014-04-18 17:40:58 +0900446
Kumar Gala3c927282007-11-26 14:57:45 -0600447 err = fdt_setprop(blob, nodeoffset, "device_type", "memory",
448 sizeof("memory"));
449 if (err < 0) {
450 printf("WARNING: could not set %s %s.\n", "device_type",
451 fdt_strerror(err));
452 return err;
453 }
454
Thierry Redinged5af032018-02-15 19:05:59 +0100455 for (i = 0; i < banks; i++) {
456 if (start[i] == 0 && size[i] == 0)
457 break;
458 }
459
460 banks = i;
461
Andre Przywara5c1cf892015-06-21 00:29:54 +0100462 if (!banks)
463 return 0;
464
Masahiro Yamada739a01e2014-04-18 17:41:03 +0900465 len = fdt_pack_reg(blob, tmp, start, size, banks);
Kumar Gala3c927282007-11-26 14:57:45 -0600466
467 err = fdt_setprop(blob, nodeoffset, "reg", tmp, len);
468 if (err < 0) {
469 printf("WARNING: could not set %s %s.\n",
470 "reg", fdt_strerror(err));
471 return err;
472 }
473 return 0;
474}
Igor Opaniuk949b5a92019-12-03 14:04:46 +0200475
476int fdt_set_usable_memory(void *blob, u64 start[], u64 size[], int areas)
477{
478 int err, nodeoffset;
479 int len;
480 u8 tmp[8 * 16]; /* Up to 64-bit address + 64-bit size */
481
482 if (areas > 8) {
483 printf("%s: num areas %d exceeds hardcoded limit %d\n",
484 __func__, areas, 8);
485 return -1;
486 }
487
488 err = fdt_check_header(blob);
489 if (err < 0) {
490 printf("%s: %s\n", __func__, fdt_strerror(err));
491 return err;
492 }
493
494 /* find or create "/memory" node. */
495 nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory");
496 if (nodeoffset < 0)
497 return nodeoffset;
498
499 len = fdt_pack_reg(blob, tmp, start, size, areas);
500
501 err = fdt_setprop(blob, nodeoffset, "linux,usable-memory", tmp, len);
502 if (err < 0) {
503 printf("WARNING: could not set %s %s.\n",
504 "reg", fdt_strerror(err));
505 return err;
506 }
507
508 return 0;
509}
Masahiro Yamada63c09412016-11-26 11:02:10 +0900510#endif
Kumar Gala3c927282007-11-26 14:57:45 -0600511
John Rigbya6bd9e82010-10-13 13:57:33 -0600512int fdt_fixup_memory(void *blob, u64 start, u64 size)
513{
514 return fdt_fixup_memory_banks(blob, &start, &size, 1);
515}
516
Kumar Galaba37aa02008-08-19 15:41:18 -0500517void fdt_fixup_ethernet(void *fdt)
Kumar Galaab544632007-11-21 11:11:03 -0600518{
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530519 int i = 0, j, prop;
Bin Mengbc393a72015-11-03 04:24:41 -0800520 char *tmp, *end;
Stephen Warren064d55f2013-05-27 18:01:19 +0000521 char mac[16];
Kumar Galaab544632007-11-21 11:11:03 -0600522 const char *path;
oliver@schinagl.nla40db6d2016-11-25 16:30:19 +0100523 unsigned char mac_addr[ARP_HLEN];
Bin Mengbc393a72015-11-03 04:24:41 -0800524 int offset;
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530525#ifdef FDT_SEQ_MACADDR_FROM_ENV
526 int nodeoff;
527 const struct fdt_property *fdt_prop;
528#endif
Kumar Galaab544632007-11-21 11:11:03 -0600529
Lev Iserovicha434fd12016-01-07 18:04:16 -0500530 if (fdt_path_offset(fdt, "/aliases") < 0)
Kumar Galaba37aa02008-08-19 15:41:18 -0500531 return;
532
Lev Iserovicha434fd12016-01-07 18:04:16 -0500533 /* Cycle through all aliases */
534 for (prop = 0; ; prop++) {
Bin Mengbc393a72015-11-03 04:24:41 -0800535 const char *name;
Bin Mengbc393a72015-11-03 04:24:41 -0800536
Lev Iserovicha434fd12016-01-07 18:04:16 -0500537 /* FDT might have been edited, recompute the offset */
538 offset = fdt_first_property_offset(fdt,
539 fdt_path_offset(fdt, "/aliases"));
540 /* Select property number 'prop' */
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530541 for (j = 0; j < prop; j++)
Lev Iserovicha434fd12016-01-07 18:04:16 -0500542 offset = fdt_next_property_offset(fdt, offset);
543
544 if (offset < 0)
545 break;
546
Bin Mengbc393a72015-11-03 04:24:41 -0800547 path = fdt_getprop_by_offset(fdt, offset, &name, NULL);
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200548 if (!strncmp(name, "ethernet", 8)) {
549 /* Treat plain "ethernet" same as "ethernet0". */
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530550 if (!strcmp(name, "ethernet")
551#ifdef FDT_SEQ_MACADDR_FROM_ENV
552 || !strcmp(name, "ethernet0")
553#endif
554 )
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200555 i = 0;
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530556#ifndef FDT_SEQ_MACADDR_FROM_ENV
Tuomas Tynkkynenf8e57c62017-03-20 10:04:55 +0200557 else
558 i = trailing_strtol(name);
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530559#endif
Bin Mengbc393a72015-11-03 04:24:41 -0800560 if (i != -1) {
561 if (i == 0)
562 strcpy(mac, "ethaddr");
563 else
564 sprintf(mac, "eth%daddr", i);
565 } else {
566 continue;
567 }
Prabhakar Kushwaha24acb832017-11-23 16:51:32 +0530568#ifdef FDT_SEQ_MACADDR_FROM_ENV
569 nodeoff = fdt_path_offset(fdt, path);
570 fdt_prop = fdt_get_property(fdt, nodeoff, "status",
571 NULL);
572 if (fdt_prop && !strcmp(fdt_prop->data, "disabled"))
573 continue;
574 i++;
575#endif
Simon Glass00caae62017-08-03 12:22:12 -0600576 tmp = env_get(mac);
Bin Mengbc393a72015-11-03 04:24:41 -0800577 if (!tmp)
578 continue;
579
580 for (j = 0; j < 6; j++) {
581 mac_addr[j] = tmp ?
582 simple_strtoul(tmp, &end, 16) : 0;
583 if (tmp)
584 tmp = (*end) ? end + 1 : end;
585 }
586
587 do_fixup_by_path(fdt, path, "mac-address",
588 &mac_addr, 6, 0);
589 do_fixup_by_path(fdt, path, "local-mac-address",
590 &mac_addr, 6, 1);
Dan Murphyb1f49ab2013-10-02 14:00:15 -0500591 }
Kumar Galaab544632007-11-21 11:11:03 -0600592 }
593}
Anton Vorontsov18e69a32008-03-14 23:20:18 +0300594
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100595int fdt_record_loadable(void *blob, u32 index, const char *name,
596 uintptr_t load_addr, u32 size, uintptr_t entry_point,
597 const char *type, const char *os)
598{
599 int err, node;
600
601 err = fdt_check_header(blob);
602 if (err < 0) {
603 printf("%s: %s\n", __func__, fdt_strerror(err));
604 return err;
605 }
606
607 /* find or create "/fit-images" node */
608 node = fdt_find_or_add_subnode(blob, 0, "fit-images");
609 if (node < 0)
610 return node;
611
612 /* find or create "/fit-images/<name>" node */
613 node = fdt_find_or_add_subnode(blob, node, name);
614 if (node < 0)
615 return node;
616
Michal Simek13d1ca82020-09-03 12:44:51 +0200617 fdt_setprop_u64(blob, node, "load", load_addr);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100618 if (entry_point != -1)
Michal Simek13d1ca82020-09-03 12:44:51 +0200619 fdt_setprop_u64(blob, node, "entry", entry_point);
Philipp Tomsicha5af51a2018-02-02 12:01:44 +0100620 fdt_setprop_u32(blob, node, "size", size);
621 if (type)
622 fdt_setprop_string(blob, node, "type", type);
623 if (os)
624 fdt_setprop_string(blob, node, "os", os);
625
626 return node;
627}
628
Kumar Gala3082d232008-08-15 08:24:42 -0500629/* Resize the fdt to its actual size + a bit of padding */
Hannes Schmelzeref476832016-09-20 18:10:43 +0200630int fdt_shrink_to_minimum(void *blob, uint extrasize)
Kumar Gala3082d232008-08-15 08:24:42 -0500631{
632 int i;
633 uint64_t addr, size;
634 int total, ret;
635 uint actualsize;
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200636 int fdt_memrsv = 0;
Kumar Gala3082d232008-08-15 08:24:42 -0500637
638 if (!blob)
639 return 0;
640
641 total = fdt_num_mem_rsv(blob);
642 for (i = 0; i < total; i++) {
643 fdt_get_mem_rsv(blob, i, &addr, &size);
Simon Glass92549352011-09-17 06:48:58 +0000644 if (addr == (uintptr_t)blob) {
Kumar Gala3082d232008-08-15 08:24:42 -0500645 fdt_del_mem_rsv(blob, i);
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200646 fdt_memrsv = 1;
Kumar Gala3082d232008-08-15 08:24:42 -0500647 break;
648 }
649 }
650
Peter Korsgaardf242a082008-10-28 08:26:52 +0100651 /*
652 * Calculate the actual size of the fdt
Feng Wang3840ebf2010-08-03 16:22:43 +0200653 * plus the size needed for 5 fdt_add_mem_rsv, one
654 * for the fdt itself and 4 for a possible initrd
655 * ((initrd-start + initrd-end) * 2 (name & value))
Peter Korsgaardf242a082008-10-28 08:26:52 +0100656 */
Kumar Gala3082d232008-08-15 08:24:42 -0500657 actualsize = fdt_off_dt_strings(blob) +
Feng Wang3840ebf2010-08-03 16:22:43 +0200658 fdt_size_dt_strings(blob) + 5 * sizeof(struct fdt_reserve_entry);
Kumar Gala3082d232008-08-15 08:24:42 -0500659
Hannes Schmelzeref476832016-09-20 18:10:43 +0200660 actualsize += extrasize;
Kumar Gala3082d232008-08-15 08:24:42 -0500661 /* Make it so the fdt ends on a page boundary */
Simon Glass92549352011-09-17 06:48:58 +0000662 actualsize = ALIGN(actualsize + ((uintptr_t)blob & 0xfff), 0x1000);
663 actualsize = actualsize - ((uintptr_t)blob & 0xfff);
Kumar Gala3082d232008-08-15 08:24:42 -0500664
665 /* Change the fdt header to reflect the correct size */
666 fdt_set_totalsize(blob, actualsize);
667
Simon Goldschmidt59bd7962019-05-03 21:19:03 +0200668 if (fdt_memrsv) {
669 /* Add the new reservation */
670 ret = fdt_add_mem_rsv(blob, map_to_sysmem(blob), actualsize);
671 if (ret < 0)
672 return ret;
673 }
Kumar Gala3082d232008-08-15 08:24:42 -0500674
675 return actualsize;
676}
Kumar Gala8ab451c2008-10-22 23:33:56 -0500677
678#ifdef CONFIG_PCI
Kumar Galacfd700b2009-08-05 09:03:54 -0500679#define CONFIG_SYS_PCI_NR_INBOUND_WIN 4
Kumar Gala8ab451c2008-10-22 23:33:56 -0500680
681#define FDT_PCI_PREFETCH (0x40000000)
682#define FDT_PCI_MEM32 (0x02000000)
683#define FDT_PCI_IO (0x01000000)
684#define FDT_PCI_MEM64 (0x03000000)
685
686int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose) {
687
688 int addrcell, sizecell, len, r;
689 u32 *dma_range;
690 /* sized based on pci addr cells, size-cells, & address-cells */
691 u32 dma_ranges[(3 + 2 + 2) * CONFIG_SYS_PCI_NR_INBOUND_WIN];
692
693 addrcell = fdt_getprop_u32_default(blob, "/", "#address-cells", 1);
694 sizecell = fdt_getprop_u32_default(blob, "/", "#size-cells", 1);
695
696 dma_range = &dma_ranges[0];
697 for (r = 0; r < hose->region_count; r++) {
698 u64 bus_start, phys_start, size;
699
Kumar Galaff4e66e2009-02-06 09:49:31 -0600700 /* skip if !PCI_REGION_SYS_MEMORY */
701 if (!(hose->regions[r].flags & PCI_REGION_SYS_MEMORY))
Kumar Gala8ab451c2008-10-22 23:33:56 -0500702 continue;
703
704 bus_start = (u64)hose->regions[r].bus_start;
705 phys_start = (u64)hose->regions[r].phys_start;
706 size = (u64)hose->regions[r].size;
707
708 dma_range[0] = 0;
Kumar Galacfd700b2009-08-05 09:03:54 -0500709 if (size >= 0x100000000ull)
Marek Vasut867aaf62019-07-09 02:49:29 +0200710 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM64);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500711 else
Marek Vasut867aaf62019-07-09 02:49:29 +0200712 dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM32);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500713 if (hose->regions[r].flags & PCI_REGION_PREFETCH)
Marek Vasut867aaf62019-07-09 02:49:29 +0200714 dma_range[0] |= cpu_to_fdt32(FDT_PCI_PREFETCH);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500715#ifdef CONFIG_SYS_PCI_64BIT
Marek Vasut867aaf62019-07-09 02:49:29 +0200716 dma_range[1] = cpu_to_fdt32(bus_start >> 32);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500717#else
718 dma_range[1] = 0;
719#endif
Marek Vasut867aaf62019-07-09 02:49:29 +0200720 dma_range[2] = cpu_to_fdt32(bus_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500721
722 if (addrcell == 2) {
Marek Vasut867aaf62019-07-09 02:49:29 +0200723 dma_range[3] = cpu_to_fdt32(phys_start >> 32);
724 dma_range[4] = cpu_to_fdt32(phys_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500725 } else {
Marek Vasut867aaf62019-07-09 02:49:29 +0200726 dma_range[3] = cpu_to_fdt32(phys_start & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500727 }
728
729 if (sizecell == 2) {
Marek Vasut867aaf62019-07-09 02:49:29 +0200730 dma_range[3 + addrcell + 0] =
731 cpu_to_fdt32(size >> 32);
732 dma_range[3 + addrcell + 1] =
733 cpu_to_fdt32(size & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500734 } else {
Marek Vasut867aaf62019-07-09 02:49:29 +0200735 dma_range[3 + addrcell + 0] =
736 cpu_to_fdt32(size & 0xffffffff);
Kumar Gala8ab451c2008-10-22 23:33:56 -0500737 }
738
739 dma_range += (3 + addrcell + sizecell);
740 }
741
742 len = dma_range - &dma_ranges[0];
743 if (len)
744 fdt_setprop(blob, phb_off, "dma-ranges", &dma_ranges[0], len*4);
745
746 return 0;
747}
748#endif
Stefan Roese30d45c02009-10-21 11:59:52 +0200749
Matthew McClintockcb2707a2010-10-13 13:39:26 +0200750int fdt_increase_size(void *fdt, int add_len)
751{
752 int newlen;
753
754 newlen = fdt_totalsize(fdt) + add_len;
755
756 /* Open in place with a new len */
757 return fdt_open_into(fdt, fdt, newlen);
758}
759
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100760#ifdef CONFIG_FDT_FIXUP_PARTITIONS
761#include <jffs2/load_kernel.h>
762#include <mtd_node.h>
763
Michal Simekcd1457d2018-07-31 14:31:04 +0200764static int fdt_del_subnodes(const void *blob, int parent_offset)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100765{
766 int off, ndepth;
767 int ret;
768
769 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth);
770 (off >= 0) && (ndepth > 0);
771 off = fdt_next_node(blob, off, &ndepth)) {
772 if (ndepth == 1) {
773 debug("delete %s: offset: %x\n",
774 fdt_get_name(blob, off, 0), off);
775 ret = fdt_del_node((void *)blob, off);
776 if (ret < 0) {
777 printf("Can't delete node: %s\n",
778 fdt_strerror(ret));
779 return ret;
780 } else {
781 ndepth = 0;
782 off = parent_offset;
783 }
784 }
785 }
786 return 0;
787}
788
Michal Simekcd1457d2018-07-31 14:31:04 +0200789static int fdt_del_partitions(void *blob, int parent_offset)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100790{
791 const void *prop;
792 int ndepth = 0;
793 int off;
794 int ret;
795
796 off = fdt_next_node(blob, parent_offset, &ndepth);
797 if (off > 0 && ndepth == 1) {
798 prop = fdt_getprop(blob, off, "label", NULL);
799 if (prop == NULL) {
800 /*
801 * Could not find label property, nand {}; node?
802 * Check subnode, delete partitions there if any.
803 */
804 return fdt_del_partitions(blob, off);
805 } else {
806 ret = fdt_del_subnodes(blob, parent_offset);
807 if (ret < 0) {
808 printf("Can't remove subnodes: %s\n",
809 fdt_strerror(ret));
810 return ret;
811 }
812 }
813 }
814 return 0;
815}
816
Masahiro Yamada8ce8e422020-07-15 19:35:47 +0900817static int fdt_node_set_part_info(void *blob, int parent_offset,
818 struct mtd_device *dev)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100819{
820 struct list_head *pentry;
821 struct part_info *part;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100822 int off, ndepth = 0;
823 int part_num, ret;
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300824 int sizecell;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100825 char buf[64];
826
827 ret = fdt_del_partitions(blob, parent_offset);
828 if (ret < 0)
829 return ret;
830
831 /*
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300832 * Check if size/address is 1 or 2 cells.
833 * We assume #address-cells and #size-cells have same value.
834 */
835 sizecell = fdt_getprop_u32_default_node(blob, parent_offset,
836 0, "#size-cells", 1);
837
838 /*
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100839 * Check if it is nand {}; subnode, adjust
840 * the offset in this case
841 */
842 off = fdt_next_node(blob, parent_offset, &ndepth);
843 if (off > 0 && ndepth == 1)
844 parent_offset = off;
845
846 part_num = 0;
847 list_for_each_prev(pentry, &dev->parts) {
848 int newoff;
849
850 part = list_entry(pentry, struct part_info, link);
851
Scott Wood06503f12013-10-15 17:41:27 -0500852 debug("%2d: %-20s0x%08llx\t0x%08llx\t%d\n",
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100853 part_num, part->name, part->size,
854 part->offset, part->mask_flags);
855
Scott Wood06503f12013-10-15 17:41:27 -0500856 sprintf(buf, "partition@%llx", part->offset);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100857add_sub:
858 ret = fdt_add_subnode(blob, parent_offset, buf);
859 if (ret == -FDT_ERR_NOSPACE) {
860 ret = fdt_increase_size(blob, 512);
861 if (!ret)
862 goto add_sub;
863 else
864 goto err_size;
865 } else if (ret < 0) {
866 printf("Can't add partition node: %s\n",
867 fdt_strerror(ret));
868 return ret;
869 }
870 newoff = ret;
871
872 /* Check MTD_WRITEABLE_CMD flag */
873 if (part->mask_flags & 1) {
874add_ro:
875 ret = fdt_setprop(blob, newoff, "read_only", NULL, 0);
876 if (ret == -FDT_ERR_NOSPACE) {
877 ret = fdt_increase_size(blob, 512);
878 if (!ret)
879 goto add_ro;
880 else
881 goto err_size;
882 } else if (ret < 0)
883 goto err_prop;
884 }
885
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100886add_reg:
Stefan Mavrodiev3a9a62a2019-04-24 08:31:54 +0300887 if (sizecell == 2) {
888 ret = fdt_setprop_u64(blob, newoff,
889 "reg", part->offset);
890 if (!ret)
891 ret = fdt_appendprop_u64(blob, newoff,
892 "reg", part->size);
893 } else {
894 ret = fdt_setprop_u32(blob, newoff,
895 "reg", part->offset);
896 if (!ret)
897 ret = fdt_appendprop_u32(blob, newoff,
898 "reg", part->size);
899 }
900
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100901 if (ret == -FDT_ERR_NOSPACE) {
902 ret = fdt_increase_size(blob, 512);
903 if (!ret)
904 goto add_reg;
905 else
906 goto err_size;
907 } else if (ret < 0)
908 goto err_prop;
909
910add_label:
911 ret = fdt_setprop_string(blob, newoff, "label", part->name);
912 if (ret == -FDT_ERR_NOSPACE) {
913 ret = fdt_increase_size(blob, 512);
914 if (!ret)
915 goto add_label;
916 else
917 goto err_size;
918 } else if (ret < 0)
919 goto err_prop;
920
921 part_num++;
922 }
923 return 0;
924err_size:
925 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
926 return ret;
927err_prop:
928 printf("Can't add property: %s\n", fdt_strerror(ret));
929 return ret;
930}
931
932/*
933 * Update partitions in nor/nand nodes using info from
934 * mtdparts environment variable. The nodes to update are
935 * specified by node_info structure which contains mtd device
936 * type and compatible string: E. g. the board code in
937 * ft_board_setup() could use:
938 *
939 * struct node_info nodes[] = {
940 * { "fsl,mpc5121-nfc", MTD_DEV_TYPE_NAND, },
941 * { "cfi-flash", MTD_DEV_TYPE_NOR, },
942 * };
943 *
944 * fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes));
945 */
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900946void fdt_fixup_mtdparts(void *blob, const struct node_info *node_info,
947 int node_info_size)
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100948{
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100949 struct mtd_device *dev;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100950 int i, idx;
951 int noff;
Masahiro Yamada53a89662020-07-17 10:46:18 +0900952 bool inited = false;
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100953
954 for (i = 0; i < node_info_size; i++) {
955 idx = 0;
Masahiro Yamada7d8073e2020-07-17 10:46:19 +0900956 noff = -1;
957
958 while ((noff = fdt_node_offset_by_compatible(blob, noff,
959 node_info[i].compat)) >= 0) {
960 const char *prop;
961
962 prop = fdt_getprop(blob, noff, "status", NULL);
963 if (prop && !strcmp(prop, "disabled"))
964 continue;
965
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100966 debug("%s: %s, mtd dev type %d\n",
967 fdt_get_name(blob, noff, 0),
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900968 node_info[i].compat, node_info[i].type);
Masahiro Yamada53a89662020-07-17 10:46:18 +0900969
970 if (!inited) {
971 if (mtdparts_init() != 0)
972 return;
973 inited = true;
974 }
975
Masahiro Yamada5f4e32d2018-07-19 16:28:22 +0900976 dev = device_find(node_info[i].type, idx++);
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100977 if (dev) {
978 if (fdt_node_set_part_info(blob, noff, dev))
979 return; /* return on error */
980 }
Anatolij Gustschin3c950e22010-03-16 17:10:05 +0100981 }
982 }
983}
984#endif
Kumar Gala49b97d92010-03-30 10:19:26 -0500985
986void fdt_del_node_and_alias(void *blob, const char *alias)
987{
988 int off = fdt_path_offset(blob, alias);
989
990 if (off < 0)
991 return;
992
993 fdt_del_node(blob, off);
994
995 off = fdt_path_offset(blob, "/aliases");
996 fdt_delprop(blob, off, alias);
997}
Kumar Galaa0342c02010-06-16 14:27:38 -0500998
Kumar Galaa0342c02010-06-16 14:27:38 -0500999/* Max address size we deal with */
1000#define OF_MAX_ADDR_CELLS 4
Bin Menga0ae3802015-12-07 01:39:47 -08001001#define OF_BAD_ADDR FDT_ADDR_T_NONE
Dario Binacchia47abd72021-05-01 17:05:26 +02001002#define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \
1003 (ns) > 0)
Kumar Galaa0342c02010-06-16 14:27:38 -05001004
1005/* Debug utility */
1006#ifdef DEBUG
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001007static void of_dump_addr(const char *s, const fdt32_t *addr, int na)
Kumar Galaa0342c02010-06-16 14:27:38 -05001008{
1009 printf("%s", s);
1010 while(na--)
1011 printf(" %08x", *(addr++));
1012 printf("\n");
1013}
1014#else
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001015static void of_dump_addr(const char *s, const fdt32_t *addr, int na) { }
Kumar Galaa0342c02010-06-16 14:27:38 -05001016#endif
1017
Paul Burton0a222d52016-05-17 07:43:24 +01001018/**
1019 * struct of_bus - Callbacks for bus specific translators
Paul Burton49717b12016-05-17 07:43:25 +01001020 * @name: A string used to identify this bus in debug output.
1021 * @addresses: The name of the DT property from which addresses are
1022 * to be read, typically "reg".
Paul Burton0a222d52016-05-17 07:43:24 +01001023 * @match: Return non-zero if the node whose parent is at
1024 * parentoffset in the FDT blob corresponds to a bus
1025 * of this type, otherwise return zero. If NULL a match
1026 * is assumed.
Paul Burton49717b12016-05-17 07:43:25 +01001027 * @count_cells:Count how many cells (be32 values) a node whose parent
1028 * is at parentoffset in the FDT blob will require to
1029 * represent its address (written to *addrc) & size
1030 * (written to *sizec).
1031 * @map: Map the address addr from the address space of this
1032 * bus to that of its parent, making use of the ranges
1033 * read from DT to an array at range. na and ns are the
1034 * number of cells (be32 values) used to hold and address
1035 * or size, respectively, for this bus. pna is the number
1036 * of cells used to hold an address for the parent bus.
1037 * Returns the address in the address space of the parent
1038 * bus.
1039 * @translate: Update the value of the address cells at addr within an
1040 * FDT by adding offset to it. na specifies the number of
1041 * cells used to hold the address being translated. Returns
1042 * zero on success, non-zero on error.
Paul Burton0a222d52016-05-17 07:43:24 +01001043 *
1044 * Each bus type will include a struct of_bus in the of_busses array,
1045 * providing implementations of some or all of the functions used to
1046 * match the bus & handle address translation for its children.
1047 */
Kumar Galaa0342c02010-06-16 14:27:38 -05001048struct of_bus {
1049 const char *name;
1050 const char *addresses;
Stephen Warren11e44fc2016-08-05 09:47:50 -06001051 int (*match)(const void *blob, int parentoffset);
1052 void (*count_cells)(const void *blob, int parentoffset,
Kumar Galaa0342c02010-06-16 14:27:38 -05001053 int *addrc, int *sizec);
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001054 u64 (*map)(fdt32_t *addr, const fdt32_t *range,
Kumar Galaa0342c02010-06-16 14:27:38 -05001055 int na, int ns, int pna);
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001056 int (*translate)(fdt32_t *addr, u64 offset, int na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001057};
1058
1059/* Default translator (generic bus) */
Simon Glasseed36602017-05-18 20:09:26 -06001060void fdt_support_default_count_cells(const void *blob, int parentoffset,
Kumar Galaa0342c02010-06-16 14:27:38 -05001061 int *addrc, int *sizec)
1062{
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001063 const fdt32_t *prop;
Scott Wood6395f312010-08-12 18:37:39 -05001064
Simon Glass933cdbb2014-10-23 18:58:57 -06001065 if (addrc)
1066 *addrc = fdt_address_cells(blob, parentoffset);
Scott Wood6395f312010-08-12 18:37:39 -05001067
1068 if (sizec) {
1069 prop = fdt_getprop(blob, parentoffset, "#size-cells", NULL);
1070 if (prop)
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001071 *sizec = be32_to_cpup(prop);
Scott Wood6395f312010-08-12 18:37:39 -05001072 else
1073 *sizec = 1;
1074 }
Kumar Galaa0342c02010-06-16 14:27:38 -05001075}
1076
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001077static u64 of_bus_default_map(fdt32_t *addr, const fdt32_t *range,
Kumar Galaa0342c02010-06-16 14:27:38 -05001078 int na, int ns, int pna)
1079{
1080 u64 cp, s, da;
1081
Simon Glasseed36602017-05-18 20:09:26 -06001082 cp = fdt_read_number(range, na);
1083 s = fdt_read_number(range + na + pna, ns);
1084 da = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001085
Sekhar Norid8e9cf42018-12-06 15:20:47 +05301086 debug("OF: default map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
Kumar Galaa0342c02010-06-16 14:27:38 -05001087
1088 if (da < cp || da >= (cp + s))
1089 return OF_BAD_ADDR;
1090 return da - cp;
1091}
1092
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001093static int of_bus_default_translate(fdt32_t *addr, u64 offset, int na)
Kumar Galaa0342c02010-06-16 14:27:38 -05001094{
Simon Glasseed36602017-05-18 20:09:26 -06001095 u64 a = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001096 memset(addr, 0, na * 4);
1097 a += offset;
1098 if (na > 1)
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001099 addr[na - 2] = cpu_to_fdt32(a >> 32);
1100 addr[na - 1] = cpu_to_fdt32(a & 0xffffffffu);
Kumar Galaa0342c02010-06-16 14:27:38 -05001101
1102 return 0;
1103}
1104
Paul Burton0a222d52016-05-17 07:43:24 +01001105#ifdef CONFIG_OF_ISA_BUS
1106
1107/* ISA bus translator */
Stephen Warren11e44fc2016-08-05 09:47:50 -06001108static int of_bus_isa_match(const void *blob, int parentoffset)
Paul Burton0a222d52016-05-17 07:43:24 +01001109{
1110 const char *name;
1111
1112 name = fdt_get_name(blob, parentoffset, NULL);
1113 if (!name)
1114 return 0;
1115
1116 return !strcmp(name, "isa");
1117}
1118
Stephen Warren11e44fc2016-08-05 09:47:50 -06001119static void of_bus_isa_count_cells(const void *blob, int parentoffset,
Paul Burton0a222d52016-05-17 07:43:24 +01001120 int *addrc, int *sizec)
1121{
1122 if (addrc)
1123 *addrc = 2;
1124 if (sizec)
1125 *sizec = 1;
1126}
1127
1128static u64 of_bus_isa_map(fdt32_t *addr, const fdt32_t *range,
1129 int na, int ns, int pna)
1130{
1131 u64 cp, s, da;
1132
1133 /* Check address type match */
1134 if ((addr[0] ^ range[0]) & cpu_to_be32(1))
1135 return OF_BAD_ADDR;
1136
Simon Glasseed36602017-05-18 20:09:26 -06001137 cp = fdt_read_number(range + 1, na - 1);
1138 s = fdt_read_number(range + na + pna, ns);
1139 da = fdt_read_number(addr + 1, na - 1);
Paul Burton0a222d52016-05-17 07:43:24 +01001140
Sekhar Norid8e9cf42018-12-06 15:20:47 +05301141 debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n", cp, s, da);
Paul Burton0a222d52016-05-17 07:43:24 +01001142
1143 if (da < cp || da >= (cp + s))
1144 return OF_BAD_ADDR;
1145 return da - cp;
1146}
1147
1148static int of_bus_isa_translate(fdt32_t *addr, u64 offset, int na)
1149{
1150 return of_bus_default_translate(addr + 1, offset, na - 1);
1151}
1152
1153#endif /* CONFIG_OF_ISA_BUS */
1154
Kumar Galaa0342c02010-06-16 14:27:38 -05001155/* Array of bus specific translators */
1156static struct of_bus of_busses[] = {
Paul Burton0a222d52016-05-17 07:43:24 +01001157#ifdef CONFIG_OF_ISA_BUS
1158 /* ISA */
1159 {
1160 .name = "isa",
1161 .addresses = "reg",
1162 .match = of_bus_isa_match,
1163 .count_cells = of_bus_isa_count_cells,
1164 .map = of_bus_isa_map,
1165 .translate = of_bus_isa_translate,
1166 },
1167#endif /* CONFIG_OF_ISA_BUS */
Kumar Galaa0342c02010-06-16 14:27:38 -05001168 /* Default */
1169 {
1170 .name = "default",
1171 .addresses = "reg",
Simon Glasseed36602017-05-18 20:09:26 -06001172 .count_cells = fdt_support_default_count_cells,
Kumar Galaa0342c02010-06-16 14:27:38 -05001173 .map = of_bus_default_map,
1174 .translate = of_bus_default_translate,
1175 },
1176};
1177
Stephen Warren11e44fc2016-08-05 09:47:50 -06001178static struct of_bus *of_match_bus(const void *blob, int parentoffset)
Paul Burton0a222d52016-05-17 07:43:24 +01001179{
1180 struct of_bus *bus;
1181
1182 if (ARRAY_SIZE(of_busses) == 1)
1183 return of_busses;
1184
1185 for (bus = of_busses; bus; bus++) {
1186 if (!bus->match || bus->match(blob, parentoffset))
1187 return bus;
1188 }
1189
1190 /*
1191 * We should always have matched the default bus at least, since
1192 * it has a NULL match field. If we didn't then it somehow isn't
1193 * in the of_busses array or something equally catastrophic has
1194 * gone wrong.
1195 */
1196 assert(0);
1197 return NULL;
1198}
1199
Stephen Warren11e44fc2016-08-05 09:47:50 -06001200static int of_translate_one(const void *blob, int parent, struct of_bus *bus,
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001201 struct of_bus *pbus, fdt32_t *addr,
Kumar Galaa0342c02010-06-16 14:27:38 -05001202 int na, int ns, int pna, const char *rprop)
1203{
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001204 const fdt32_t *ranges;
Kumar Galaa0342c02010-06-16 14:27:38 -05001205 int rlen;
1206 int rone;
1207 u64 offset = OF_BAD_ADDR;
1208
1209 /* Normally, an absence of a "ranges" property means we are
1210 * crossing a non-translatable boundary, and thus the addresses
1211 * below the current not cannot be converted to CPU physical ones.
1212 * Unfortunately, while this is very clear in the spec, it's not
1213 * what Apple understood, and they do have things like /uni-n or
1214 * /ht nodes with no "ranges" property and a lot of perfectly
1215 * useable mapped devices below them. Thus we treat the absence of
1216 * "ranges" as equivalent to an empty "ranges" property which means
1217 * a 1:1 translation at that level. It's up to the caller not to try
1218 * to translate addresses that aren't supposed to be translated in
1219 * the first place. --BenH.
1220 */
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001221 ranges = fdt_getprop(blob, parent, rprop, &rlen);
Kumar Galaa0342c02010-06-16 14:27:38 -05001222 if (ranges == NULL || rlen == 0) {
Simon Glasseed36602017-05-18 20:09:26 -06001223 offset = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001224 memset(addr, 0, pna * 4);
1225 debug("OF: no ranges, 1:1 translation\n");
1226 goto finish;
1227 }
1228
1229 debug("OF: walking ranges...\n");
1230
1231 /* Now walk through the ranges */
1232 rlen /= 4;
1233 rone = na + pna + ns;
1234 for (; rlen >= rone; rlen -= rone, ranges += rone) {
1235 offset = bus->map(addr, ranges, na, ns, pna);
1236 if (offset != OF_BAD_ADDR)
1237 break;
1238 }
1239 if (offset == OF_BAD_ADDR) {
1240 debug("OF: not found !\n");
1241 return 1;
1242 }
1243 memcpy(addr, ranges + na, 4 * pna);
1244
1245 finish:
1246 of_dump_addr("OF: parent translation for:", addr, pna);
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001247 debug("OF: with offset: %llu\n", offset);
Kumar Galaa0342c02010-06-16 14:27:38 -05001248
1249 /* Translate it into parent bus space */
1250 return pbus->translate(addr, offset, pna);
1251}
1252
1253/*
1254 * Translate an address from the device-tree into a CPU physical address,
1255 * this walks up the tree and applies the various bus mappings on the
1256 * way.
1257 *
1258 * Note: We consider that crossing any level with #size-cells == 0 to mean
1259 * that translation is impossible (that is we are not dealing with a value
1260 * that can be mapped to a cpu physical address). This is not really specified
1261 * that way, but this is traditionally the way IBM at least do things
1262 */
Stephen Warren11e44fc2016-08-05 09:47:50 -06001263static u64 __of_translate_address(const void *blob, int node_offset,
1264 const fdt32_t *in_addr, const char *rprop)
Kumar Galaa0342c02010-06-16 14:27:38 -05001265{
1266 int parent;
1267 struct of_bus *bus, *pbus;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001268 fdt32_t addr[OF_MAX_ADDR_CELLS];
Kumar Galaa0342c02010-06-16 14:27:38 -05001269 int na, ns, pna, pns;
1270 u64 result = OF_BAD_ADDR;
1271
1272 debug("OF: ** translation for device %s **\n",
1273 fdt_get_name(blob, node_offset, NULL));
1274
1275 /* Get parent & match bus type */
1276 parent = fdt_parent_offset(blob, node_offset);
1277 if (parent < 0)
1278 goto bail;
Paul Burton0a222d52016-05-17 07:43:24 +01001279 bus = of_match_bus(blob, parent);
Kumar Galaa0342c02010-06-16 14:27:38 -05001280
1281 /* Cound address cells & copy address locally */
Scott Wood6395f312010-08-12 18:37:39 -05001282 bus->count_cells(blob, parent, &na, &ns);
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +01001283 if (!OF_CHECK_COUNTS(na, ns)) {
Kumar Galaa0342c02010-06-16 14:27:38 -05001284 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1285 fdt_get_name(blob, node_offset, NULL));
1286 goto bail;
1287 }
1288 memcpy(addr, in_addr, na * 4);
1289
1290 debug("OF: bus is %s (na=%d, ns=%d) on %s\n",
1291 bus->name, na, ns, fdt_get_name(blob, parent, NULL));
1292 of_dump_addr("OF: translating address:", addr, na);
1293
1294 /* Translate */
1295 for (;;) {
1296 /* Switch to parent bus */
1297 node_offset = parent;
1298 parent = fdt_parent_offset(blob, node_offset);
1299
1300 /* If root, we have finished */
1301 if (parent < 0) {
1302 debug("OF: reached root node\n");
Simon Glasseed36602017-05-18 20:09:26 -06001303 result = fdt_read_number(addr, na);
Kumar Galaa0342c02010-06-16 14:27:38 -05001304 break;
1305 }
1306
1307 /* Get new parent bus and counts */
Paul Burton0a222d52016-05-17 07:43:24 +01001308 pbus = of_match_bus(blob, parent);
Scott Wood6395f312010-08-12 18:37:39 -05001309 pbus->count_cells(blob, parent, &pna, &pns);
Przemyslaw Marczak4428f3c2016-01-12 15:40:44 +01001310 if (!OF_CHECK_COUNTS(pna, pns)) {
Kumar Galaa0342c02010-06-16 14:27:38 -05001311 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1312 fdt_get_name(blob, node_offset, NULL));
1313 break;
1314 }
1315
1316 debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n",
1317 pbus->name, pna, pns, fdt_get_name(blob, parent, NULL));
1318
1319 /* Apply bus translation */
1320 if (of_translate_one(blob, node_offset, bus, pbus,
1321 addr, na, ns, pna, rprop))
1322 break;
1323
1324 /* Complete the move up one level */
1325 na = pna;
1326 ns = pns;
1327 bus = pbus;
1328
1329 of_dump_addr("OF: one level translation:", addr, na);
1330 }
1331 bail:
1332
1333 return result;
1334}
1335
Stephen Warren11e44fc2016-08-05 09:47:50 -06001336u64 fdt_translate_address(const void *blob, int node_offset,
1337 const fdt32_t *in_addr)
Kumar Galaa0342c02010-06-16 14:27:38 -05001338{
1339 return __of_translate_address(blob, node_offset, in_addr, "ranges");
1340}
Kumar Gala75e73af2010-07-04 12:48:21 -05001341
Fabien Dessenne641067f2019-05-31 15:11:30 +02001342u64 fdt_translate_dma_address(const void *blob, int node_offset,
1343 const fdt32_t *in_addr)
1344{
1345 return __of_translate_address(blob, node_offset, in_addr, "dma-ranges");
1346}
1347
Nicolas Saenz Julienne51bdb502021-01-12 13:55:22 +01001348int fdt_get_dma_range(const void *blob, int node, phys_addr_t *cpu,
1349 dma_addr_t *bus, u64 *size)
1350{
1351 bool found_dma_ranges = false;
1352 struct of_bus *bus_node;
1353 const fdt32_t *ranges;
1354 int na, ns, pna, pns;
1355 int parent = node;
1356 int ret = 0;
1357 int len;
1358
1359 /* Find the closest dma-ranges property */
1360 while (parent >= 0) {
1361 ranges = fdt_getprop(blob, parent, "dma-ranges", &len);
1362
1363 /* Ignore empty ranges, they imply no translation required */
1364 if (ranges && len > 0)
1365 break;
1366
1367 /* Once we find 'dma-ranges', then a missing one is an error */
1368 if (found_dma_ranges && !ranges) {
1369 ret = -EINVAL;
1370 goto out;
1371 }
1372
1373 if (ranges)
1374 found_dma_ranges = true;
1375
1376 parent = fdt_parent_offset(blob, parent);
1377 }
1378
1379 if (!ranges || parent < 0) {
1380 debug("no dma-ranges found for node %s\n",
1381 fdt_get_name(blob, node, NULL));
1382 ret = -ENOENT;
1383 goto out;
1384 }
1385
1386 /* switch to that node */
1387 node = parent;
1388 parent = fdt_parent_offset(blob, node);
1389 if (parent < 0) {
1390 printf("Found dma-ranges in root node, shoudln't happen\n");
1391 ret = -EINVAL;
1392 goto out;
1393 }
1394
1395 /* Get the address sizes both for the bus and its parent */
1396 bus_node = of_match_bus(blob, node);
1397 bus_node->count_cells(blob, node, &na, &ns);
1398 if (!OF_CHECK_COUNTS(na, ns)) {
1399 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1400 fdt_get_name(blob, node, NULL));
1401 return -EINVAL;
1402 goto out;
1403 }
1404
1405 bus_node = of_match_bus(blob, parent);
1406 bus_node->count_cells(blob, parent, &pna, &pns);
1407 if (!OF_CHECK_COUNTS(pna, pns)) {
1408 printf("%s: Bad cell count for %s\n", __FUNCTION__,
1409 fdt_get_name(blob, parent, NULL));
1410 return -EINVAL;
1411 goto out;
1412 }
1413
1414 *bus = fdt_read_number(ranges, na);
1415 *cpu = fdt_translate_dma_address(blob, node, ranges + na);
1416 *size = fdt_read_number(ranges + na + pna, ns);
1417out:
1418 return ret;
1419}
1420
Kumar Gala75e73af2010-07-04 12:48:21 -05001421/**
1422 * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and
1423 * who's reg property matches a physical cpu address
1424 *
1425 * @blob: ptr to device tree
1426 * @compat: compatiable string to match
1427 * @compat_off: property name
1428 *
1429 */
1430int fdt_node_offset_by_compat_reg(void *blob, const char *compat,
1431 phys_addr_t compat_off)
1432{
1433 int len, off = fdt_node_offset_by_compatible(blob, -1, compat);
1434 while (off != -FDT_ERR_NOTFOUND) {
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001435 const fdt32_t *reg = fdt_getprop(blob, off, "reg", &len);
Kumar Gala75e73af2010-07-04 12:48:21 -05001436 if (reg) {
1437 if (compat_off == fdt_translate_address(blob, off, reg))
1438 return off;
1439 }
1440 off = fdt_node_offset_by_compatible(blob, off, compat);
1441 }
1442
1443 return -FDT_ERR_NOTFOUND;
1444}
1445
Kumar Galab4b847e2010-07-09 16:18:58 -05001446/**
1447 * fdt_alloc_phandle: Return next free phandle value
1448 *
1449 * @blob: ptr to device tree
1450 */
1451int fdt_alloc_phandle(void *blob)
1452{
Masahiro Yamadab4141192014-11-07 03:03:31 +09001453 int offset;
1454 uint32_t phandle = 0;
Kumar Gala75e73af2010-07-04 12:48:21 -05001455
Kumar Galab4b847e2010-07-09 16:18:58 -05001456 for (offset = fdt_next_node(blob, -1, NULL); offset >= 0;
1457 offset = fdt_next_node(blob, offset, NULL)) {
Timur Tabi50bf17b2011-09-20 18:24:35 -05001458 phandle = max(phandle, fdt_get_phandle(blob, offset));
Kumar Galab4b847e2010-07-09 16:18:58 -05001459 }
1460
1461 return phandle + 1;
1462}
Anatolij Gustschinbeca5a52010-08-18 11:25:20 +02001463
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001464/*
Kumar Galaf117c0f2011-08-01 00:23:23 -05001465 * fdt_set_phandle: Create a phandle property for the given node
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001466 *
1467 * @fdt: ptr to device tree
1468 * @nodeoffset: node to update
1469 * @phandle: phandle value to set (must be unique)
Kumar Galaf117c0f2011-08-01 00:23:23 -05001470 */
1471int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle)
Gerald Van Barena8d2a752011-07-14 21:40:10 -04001472{
1473 int ret;
1474
1475#ifdef DEBUG
1476 int off = fdt_node_offset_by_phandle(fdt, phandle);
1477
1478 if ((off >= 0) && (off != nodeoffset)) {
1479 char buf[64];
1480
1481 fdt_get_path(fdt, nodeoffset, buf, sizeof(buf));
1482 printf("Trying to update node %s with phandle %u ",
1483 buf, phandle);
1484
1485 fdt_get_path(fdt, off, buf, sizeof(buf));
1486 printf("that already exists in node %s.\n", buf);
1487 return -FDT_ERR_BADPHANDLE;
1488 }
1489#endif
1490
1491 ret = fdt_setprop_cell(fdt, nodeoffset, "phandle", phandle);
1492 if (ret < 0)
1493 return ret;
1494
1495 /*
1496 * For now, also set the deprecated "linux,phandle" property, so that we
1497 * don't break older kernels.
1498 */
1499 ret = fdt_setprop_cell(fdt, nodeoffset, "linux,phandle", phandle);
1500
1501 return ret;
1502}
1503
Kumar Gala10aeabd2011-08-01 00:25:20 -05001504/*
1505 * fdt_create_phandle: Create a phandle property for the given node
1506 *
1507 * @fdt: ptr to device tree
1508 * @nodeoffset: node to update
1509 */
Timur Tabi3c927cc2011-09-20 18:24:34 -05001510unsigned int fdt_create_phandle(void *fdt, int nodeoffset)
Kumar Gala10aeabd2011-08-01 00:25:20 -05001511{
1512 /* see if there is a phandle already */
1513 int phandle = fdt_get_phandle(fdt, nodeoffset);
1514
1515 /* if we got 0, means no phandle so create one */
1516 if (phandle == 0) {
Timur Tabi3c927cc2011-09-20 18:24:34 -05001517 int ret;
1518
Kumar Gala10aeabd2011-08-01 00:25:20 -05001519 phandle = fdt_alloc_phandle(fdt);
Timur Tabi3c927cc2011-09-20 18:24:34 -05001520 ret = fdt_set_phandle(fdt, nodeoffset, phandle);
1521 if (ret < 0) {
1522 printf("Can't set phandle %u: %s\n", phandle,
1523 fdt_strerror(ret));
1524 return 0;
1525 }
Kumar Gala10aeabd2011-08-01 00:25:20 -05001526 }
1527
1528 return phandle;
1529}
1530
Shengzhou Liu2a523f52011-10-14 16:26:05 +08001531/*
1532 * fdt_set_node_status: Set status for the given node
1533 *
1534 * @fdt: ptr to device tree
1535 * @nodeoffset: node to update
1536 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED,
1537 * FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE
1538 * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE
1539 */
1540int fdt_set_node_status(void *fdt, int nodeoffset,
1541 enum fdt_status status, unsigned int error_code)
1542{
1543 char buf[16];
1544 int ret = 0;
1545
1546 if (nodeoffset < 0)
1547 return nodeoffset;
1548
1549 switch (status) {
1550 case FDT_STATUS_OKAY:
1551 ret = fdt_setprop_string(fdt, nodeoffset, "status", "okay");
1552 break;
1553 case FDT_STATUS_DISABLED:
1554 ret = fdt_setprop_string(fdt, nodeoffset, "status", "disabled");
1555 break;
1556 case FDT_STATUS_FAIL:
1557 ret = fdt_setprop_string(fdt, nodeoffset, "status", "fail");
1558 break;
1559 case FDT_STATUS_FAIL_ERROR_CODE:
1560 sprintf(buf, "fail-%d", error_code);
1561 ret = fdt_setprop_string(fdt, nodeoffset, "status", buf);
1562 break;
1563 default:
1564 printf("Invalid fdt status: %x\n", status);
1565 ret = -1;
1566 break;
1567 }
1568
1569 return ret;
1570}
1571
1572/*
1573 * fdt_set_status_by_alias: Set status for the given node given an alias
1574 *
1575 * @fdt: ptr to device tree
1576 * @alias: alias of node to update
1577 * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED,
1578 * FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE
1579 * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE
1580 */
1581int fdt_set_status_by_alias(void *fdt, const char* alias,
1582 enum fdt_status status, unsigned int error_code)
1583{
1584 int offset = fdt_path_offset(fdt, alias);
1585
1586 return fdt_set_node_status(fdt, offset, status, error_code);
1587}
1588
Tom Wai-Hong Tam096eb3f2012-12-05 14:46:41 +00001589#if defined(CONFIG_VIDEO) || defined(CONFIG_LCD)
Anatolij Gustschinbeca5a52010-08-18 11:25:20 +02001590int fdt_add_edid(void *blob, const char *compat, unsigned char *edid_buf)
1591{
1592 int noff;
1593 int ret;
1594
1595 noff = fdt_node_offset_by_compatible(blob, -1, compat);
1596 if (noff != -FDT_ERR_NOTFOUND) {
1597 debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat);
1598add_edid:
1599 ret = fdt_setprop(blob, noff, "edid", edid_buf, 128);
1600 if (ret == -FDT_ERR_NOSPACE) {
1601 ret = fdt_increase_size(blob, 512);
1602 if (!ret)
1603 goto add_edid;
1604 else
1605 goto err_size;
1606 } else if (ret < 0) {
1607 printf("Can't add property: %s\n", fdt_strerror(ret));
1608 return ret;
1609 }
1610 }
1611 return 0;
1612err_size:
1613 printf("Can't increase blob size: %s\n", fdt_strerror(ret));
1614 return ret;
1615}
1616#endif
Timur Tabibb682002011-05-03 13:24:07 -05001617
1618/*
1619 * Verify the physical address of device tree node for a given alias
1620 *
1621 * This function locates the device tree node of a given alias, and then
1622 * verifies that the physical address of that device matches the given
1623 * parameter. It displays a message if there is a mismatch.
1624 *
1625 * Returns 1 on success, 0 on failure
1626 */
1627int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr)
1628{
1629 const char *path;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001630 const fdt32_t *reg;
Timur Tabibb682002011-05-03 13:24:07 -05001631 int node, len;
1632 u64 dt_addr;
1633
1634 path = fdt_getprop(fdt, anode, alias, NULL);
1635 if (!path) {
1636 /* If there's no such alias, then it's not a failure */
1637 return 1;
1638 }
1639
1640 node = fdt_path_offset(fdt, path);
1641 if (node < 0) {
1642 printf("Warning: device tree alias '%s' points to invalid "
1643 "node %s.\n", alias, path);
1644 return 0;
1645 }
1646
1647 reg = fdt_getprop(fdt, node, "reg", &len);
1648 if (!reg) {
1649 printf("Warning: device tree node '%s' has no address.\n",
1650 path);
1651 return 0;
1652 }
1653
1654 dt_addr = fdt_translate_address(fdt, node, reg);
1655 if (addr != dt_addr) {
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001656 printf("Warning: U-Boot configured device %s at address %llu,\n"
1657 "but the device tree has it address %llx.\n",
1658 alias, addr, dt_addr);
Timur Tabibb682002011-05-03 13:24:07 -05001659 return 0;
1660 }
1661
1662 return 1;
1663}
1664
1665/*
1666 * Returns the base address of an SOC or PCI node
1667 */
Simon Glassec002112017-05-18 20:09:00 -06001668u64 fdt_get_base_address(const void *fdt, int node)
Timur Tabibb682002011-05-03 13:24:07 -05001669{
1670 int size;
Kim Phillips8aa5ec62013-01-16 14:00:11 +00001671 const fdt32_t *prop;
Timur Tabibb682002011-05-03 13:24:07 -05001672
Simon Glass336a4482017-07-04 13:31:20 -06001673 prop = fdt_getprop(fdt, node, "reg", &size);
Timur Tabibb682002011-05-03 13:24:07 -05001674
Masahiro Yamadae3665ba2019-06-27 16:39:57 +09001675 return prop ? fdt_translate_address(fdt, node, prop) : OF_BAD_ADDR;
Timur Tabibb682002011-05-03 13:24:07 -05001676}
Alexander Grafc48e6862014-04-11 17:09:41 +02001677
1678/*
Bin Menga932aa32021-02-25 17:22:24 +08001679 * Read a property of size <prop_len>. Currently only supports 1 or 2 cells,
1680 * or 3 cells specially for a PCI address.
Alexander Grafc48e6862014-04-11 17:09:41 +02001681 */
1682static int fdt_read_prop(const fdt32_t *prop, int prop_len, int cell_off,
1683 uint64_t *val, int cells)
1684{
Bin Menga932aa32021-02-25 17:22:24 +08001685 const fdt32_t *prop32;
1686 const unaligned_fdt64_t *prop64;
Alexander Grafc48e6862014-04-11 17:09:41 +02001687
1688 if ((cell_off + cells) > prop_len)
1689 return -FDT_ERR_NOSPACE;
1690
Bin Menga932aa32021-02-25 17:22:24 +08001691 prop32 = &prop[cell_off];
1692
1693 /*
1694 * Special handling for PCI address in PCI bus <ranges>
1695 *
1696 * PCI child address is made up of 3 cells. Advance the cell offset
1697 * by 1 so that the PCI child address can be correctly read.
1698 */
1699 if (cells == 3)
1700 cell_off += 1;
1701 prop64 = (const fdt64_t *)&prop[cell_off];
1702
Alexander Grafc48e6862014-04-11 17:09:41 +02001703 switch (cells) {
1704 case 1:
1705 *val = fdt32_to_cpu(*prop32);
1706 break;
1707 case 2:
Bin Menga932aa32021-02-25 17:22:24 +08001708 case 3:
Alexander Grafc48e6862014-04-11 17:09:41 +02001709 *val = fdt64_to_cpu(*prop64);
1710 break;
1711 default:
1712 return -FDT_ERR_NOSPACE;
1713 }
1714
1715 return 0;
1716}
1717
1718/**
1719 * fdt_read_range - Read a node's n'th range property
1720 *
1721 * @fdt: ptr to device tree
1722 * @node: offset of node
1723 * @n: range index
1724 * @child_addr: pointer to storage for the "child address" field
1725 * @addr: pointer to storage for the CPU view translated physical start
1726 * @len: pointer to storage for the range length
1727 *
1728 * Convenience function that reads and interprets a specific range out of
1729 * a number of the "ranges" property array.
1730 */
1731int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr,
1732 uint64_t *addr, uint64_t *len)
1733{
1734 int pnode = fdt_parent_offset(fdt, node);
1735 const fdt32_t *ranges;
1736 int pacells;
1737 int acells;
1738 int scells;
1739 int ranges_len;
1740 int cell = 0;
1741 int r = 0;
1742
1743 /*
1744 * The "ranges" property is an array of
1745 * { <child address> <parent address> <size in child address space> }
1746 *
1747 * All 3 elements can span a diffent number of cells. Fetch their size.
1748 */
1749 pacells = fdt_getprop_u32_default_node(fdt, pnode, 0, "#address-cells", 1);
1750 acells = fdt_getprop_u32_default_node(fdt, node, 0, "#address-cells", 1);
1751 scells = fdt_getprop_u32_default_node(fdt, node, 0, "#size-cells", 1);
1752
1753 /* Now try to get the ranges property */
1754 ranges = fdt_getprop(fdt, node, "ranges", &ranges_len);
1755 if (!ranges)
1756 return -FDT_ERR_NOTFOUND;
1757 ranges_len /= sizeof(uint32_t);
1758
1759 /* Jump to the n'th entry */
1760 cell = n * (pacells + acells + scells);
1761
1762 /* Read <child address> */
1763 if (child_addr) {
1764 r = fdt_read_prop(ranges, ranges_len, cell, child_addr,
1765 acells);
1766 if (r)
1767 return r;
1768 }
1769 cell += acells;
1770
1771 /* Read <parent address> */
1772 if (addr)
1773 *addr = fdt_translate_address(fdt, node, ranges + cell);
1774 cell += pacells;
1775
1776 /* Read <size in child address space> */
1777 if (len) {
1778 r = fdt_read_prop(ranges, ranges_len, cell, len, scells);
1779 if (r)
1780 return r;
1781 }
1782
1783 return 0;
1784}
Hans de Goeded4f495a2014-11-17 15:29:11 +01001785
1786/**
1787 * fdt_setup_simplefb_node - Fill and enable a simplefb node
1788 *
1789 * @fdt: ptr to device tree
1790 * @node: offset of the simplefb node
1791 * @base_address: framebuffer base address
1792 * @width: width in pixels
1793 * @height: height in pixels
1794 * @stride: bytes per line
1795 * @format: pixel format string
1796 *
1797 * Convenience function to fill and enable a simplefb node.
1798 */
1799int fdt_setup_simplefb_node(void *fdt, int node, u64 base_address, u32 width,
1800 u32 height, u32 stride, const char *format)
1801{
1802 char name[32];
1803 fdt32_t cells[4];
1804 int i, addrc, sizec, ret;
1805
Simon Glasseed36602017-05-18 20:09:26 -06001806 fdt_support_default_count_cells(fdt, fdt_parent_offset(fdt, node),
1807 &addrc, &sizec);
Hans de Goeded4f495a2014-11-17 15:29:11 +01001808 i = 0;
1809 if (addrc == 2)
1810 cells[i++] = cpu_to_fdt32(base_address >> 32);
1811 cells[i++] = cpu_to_fdt32(base_address);
1812 if (sizec == 2)
1813 cells[i++] = 0;
1814 cells[i++] = cpu_to_fdt32(height * stride);
1815
1816 ret = fdt_setprop(fdt, node, "reg", cells, sizeof(cells[0]) * i);
1817 if (ret < 0)
1818 return ret;
1819
Masahiro Yamadadee37fc2018-08-06 20:47:40 +09001820 snprintf(name, sizeof(name), "framebuffer@%llx", base_address);
Hans de Goeded4f495a2014-11-17 15:29:11 +01001821 ret = fdt_set_name(fdt, node, name);
1822 if (ret < 0)
1823 return ret;
1824
1825 ret = fdt_setprop_u32(fdt, node, "width", width);
1826 if (ret < 0)
1827 return ret;
1828
1829 ret = fdt_setprop_u32(fdt, node, "height", height);
1830 if (ret < 0)
1831 return ret;
1832
1833 ret = fdt_setprop_u32(fdt, node, "stride", stride);
1834 if (ret < 0)
1835 return ret;
1836
1837 ret = fdt_setprop_string(fdt, node, "format", format);
1838 if (ret < 0)
1839 return ret;
1840
1841 ret = fdt_setprop_string(fdt, node, "status", "okay");
1842 if (ret < 0)
1843 return ret;
1844
1845 return 0;
1846}
Tim Harvey08daa252015-04-08 11:45:39 -07001847
1848/*
1849 * Update native-mode in display-timings from display environment variable.
1850 * The node to update are specified by path.
1851 */
1852int fdt_fixup_display(void *blob, const char *path, const char *display)
1853{
1854 int off, toff;
1855
1856 if (!display || !path)
1857 return -FDT_ERR_NOTFOUND;
1858
1859 toff = fdt_path_offset(blob, path);
1860 if (toff >= 0)
1861 toff = fdt_subnode_offset(blob, toff, "display-timings");
1862 if (toff < 0)
1863 return toff;
1864
1865 for (off = fdt_first_subnode(blob, toff);
1866 off >= 0;
1867 off = fdt_next_subnode(blob, off)) {
1868 uint32_t h = fdt_get_phandle(blob, off);
1869 debug("%s:0x%x\n", fdt_get_name(blob, off, NULL),
1870 fdt32_to_cpu(h));
1871 if (strcasecmp(fdt_get_name(blob, off, NULL), display) == 0)
1872 return fdt_setprop_u32(blob, toff, "native-mode", h);
1873 }
1874 return toff;
1875}
Pantelis Antonioufc7c3182017-09-04 23:12:11 +03001876
1877#ifdef CONFIG_OF_LIBFDT_OVERLAY
1878/**
1879 * fdt_overlay_apply_verbose - Apply an overlay with verbose error reporting
1880 *
1881 * @fdt: ptr to device tree
1882 * @fdto: ptr to device tree overlay
1883 *
1884 * Convenience function to apply an overlay and display helpful messages
1885 * in the case of an error
1886 */
1887int fdt_overlay_apply_verbose(void *fdt, void *fdto)
1888{
1889 int err;
1890 bool has_symbols;
1891
1892 err = fdt_path_offset(fdt, "/__symbols__");
1893 has_symbols = err >= 0;
1894
1895 err = fdt_overlay_apply(fdt, fdto);
1896 if (err < 0) {
1897 printf("failed on fdt_overlay_apply(): %s\n",
1898 fdt_strerror(err));
1899 if (!has_symbols) {
1900 printf("base fdt does did not have a /__symbols__ node\n");
1901 printf("make sure you've compiled with -@\n");
1902 }
1903 }
1904 return err;
1905}
1906#endif