Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2007 |
| 4 | * Gerald Van Baren, Custom IDEAS, vanbaren@cideas.com |
| 5 | * |
Shengzhou Liu | 2a523f5 | 2011-10-14 16:26:05 +0800 | [diff] [blame] | 6 | * Copyright 2010-2011 Freescale Semiconductor, Inc. |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <common.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 10 | #include <env.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Heinrich Schuchardt | 9ad0a79 | 2018-11-18 17:58:51 +0100 | [diff] [blame] | 12 | #include <mapmem.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 13 | #include <net.h> |
Anton Vorontsov | 3e303f7 | 2009-10-15 17:47:04 +0400 | [diff] [blame] | 14 | #include <stdio_dev.h> |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 15 | #include <linux/ctype.h> |
| 16 | #include <linux/types.h> |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Masahiro Yamada | b08c8c4 | 2018-03-05 01:20:11 +0900 | [diff] [blame] | 18 | #include <linux/libfdt.h> |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 19 | #include <fdt_support.h> |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 20 | #include <exports.h> |
Bin Meng | a0ae380 | 2015-12-07 01:39:47 -0800 | [diff] [blame] | 21 | #include <fdtdec.h> |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 22 | |
Kumar Gala | 3bed2aa | 2008-10-23 00:05:47 -0500 | [diff] [blame] | 23 | /** |
Alexander Graf | 94fb182 | 2014-04-11 17:09:40 +0200 | [diff] [blame] | 24 | * 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 | */ |
| 35 | u32 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 Gala | 3bed2aa | 2008-10-23 00:05:47 -0500 | [diff] [blame] | 55 | * 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 Black | 07e1278 | 2011-11-08 01:09:44 -0800 | [diff] [blame] | 65 | u32 fdt_getprop_u32_default(const void *fdt, const char *path, |
| 66 | const char *prop, const u32 dflt) |
Kumar Gala | 3bed2aa | 2008-10-23 00:05:47 -0500 | [diff] [blame] | 67 | { |
Kumar Gala | 3bed2aa | 2008-10-23 00:05:47 -0500 | [diff] [blame] | 68 | int off; |
| 69 | |
| 70 | off = fdt_path_offset(fdt, path); |
| 71 | if (off < 0) |
| 72 | return dflt; |
| 73 | |
Alexander Graf | 94fb182 | 2014-04-11 17:09:40 +0200 | [diff] [blame] | 74 | return fdt_getprop_u32_default_node(fdt, off, 0, prop, dflt); |
Kumar Gala | 3bed2aa | 2008-10-23 00:05:47 -0500 | [diff] [blame] | 75 | } |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 76 | |
Kumar Gala | a3c2933 | 2007-10-24 10:21:57 -0500 | [diff] [blame] | 77 | /** |
| 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 | */ |
| 89 | int fdt_find_and_setprop(void *fdt, const char *node, const char *prop, |
| 90 | const void *val, int len, int create) |
| 91 | { |
Kumar Gala | 8d04f02 | 2007-10-24 11:04:22 -0500 | [diff] [blame] | 92 | int nodeoff = fdt_path_offset(fdt, node); |
Kumar Gala | a3c2933 | 2007-10-24 10:21:57 -0500 | [diff] [blame] | 93 | |
| 94 | if (nodeoff < 0) |
| 95 | return nodeoff; |
| 96 | |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 97 | if ((!create) && (fdt_get_property(fdt, nodeoff, prop, NULL) == NULL)) |
Kumar Gala | a3c2933 | 2007-10-24 10:21:57 -0500 | [diff] [blame] | 98 | return 0; /* create flag not set; so exit quietly */ |
| 99 | |
| 100 | return fdt_setprop(fdt, nodeoff, prop, val, len); |
| 101 | } |
| 102 | |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 103 | /** |
Simon Glass | a9e8e29 | 2014-10-23 18:58:49 -0600 | [diff] [blame] | 104 | * fdt_find_or_add_subnode() - find or possibly add a subnode of a given node |
| 105 | * |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 106 | * @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 Glass | a9e8e29 | 2014-10-23 18:58:49 -0600 | [diff] [blame] | 113 | int fdt_find_or_add_subnode(void *fdt, int parentoffset, const char *name) |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 114 | { |
| 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 Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 128 | /* rename to CONFIG_OF_STDOUT_PATH ? */ |
| 129 | #if defined(OF_STDOUT_PATH) |
| 130 | static 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 Zundel | 4077781 | 2008-06-20 22:24:05 +0200 | [diff] [blame] | 136 | static int fdt_fixup_stdout(void *fdt, int chosenoff) |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 137 | { |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 138 | int err; |
| 139 | int aliasoff; |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 140 | char sername[9] = { 0 }; |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 141 | const void *path; |
| 142 | int len; |
| 143 | char tmp[256]; /* long enough */ |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 144 | |
Bin Meng | 9f29aeb | 2016-01-13 19:38:58 -0800 | [diff] [blame] | 145 | sprintf(sername, "serial%d", CONFIG_CONS_INDEX - 1); |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 146 | |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 147 | aliasoff = fdt_path_offset(fdt, "/aliases"); |
| 148 | if (aliasoff < 0) { |
| 149 | err = aliasoff; |
Scott Wood | da77c81 | 2015-09-01 22:48:08 -0500 | [diff] [blame] | 150 | goto noalias; |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 151 | } |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 152 | |
| 153 | path = fdt_getprop(fdt, aliasoff, sername, &len); |
| 154 | if (!path) { |
| 155 | err = len; |
Scott Wood | da77c81 | 2015-09-01 22:48:08 -0500 | [diff] [blame] | 156 | goto noalias; |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 157 | } |
| 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 Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 163 | if (err < 0) |
| 164 | printf("WARNING: could not set linux,stdout-path %s.\n", |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 165 | fdt_strerror(err)); |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 166 | |
| 167 | return err; |
Scott Wood | da77c81 | 2015-09-01 22:48:08 -0500 | [diff] [blame] | 168 | |
| 169 | noalias: |
| 170 | printf("WARNING: %s: could not read %s alias: %s\n", |
| 171 | __func__, sername, fdt_strerror(err)); |
| 172 | |
| 173 | return 0; |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 174 | } |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 175 | #else |
| 176 | static int fdt_fixup_stdout(void *fdt, int chosenoff) |
| 177 | { |
| 178 | return 0; |
| 179 | } |
Kumar Gala | 151c8b0 | 2007-11-26 17:06:15 -0600 | [diff] [blame] | 180 | #endif |
| 181 | |
Masahiro Yamada | f18295d | 2014-04-18 17:41:04 +0900 | [diff] [blame] | 182 | static 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 Kocialkowski | 10be5b5 | 2015-05-21 11:27:03 +0200 | [diff] [blame] | 191 | int 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 Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 202 | serial = env_get("serial#"); |
Paul Kocialkowski | 10be5b5 | 2015-05-21 11:27:03 +0200 | [diff] [blame] | 203 | 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 Yamada | f18295d | 2014-04-18 17:41:04 +0900 | [diff] [blame] | 216 | |
Masahiro Yamada | dbe963a | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 217 | int fdt_initrd(void *fdt, ulong initrd_start, ulong initrd_end) |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 218 | { |
Masahiro Yamada | f18295d | 2014-04-18 17:41:04 +0900 | [diff] [blame] | 219 | int nodeoffset; |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 220 | int err, j, total; |
Masahiro Yamada | f18295d | 2014-04-18 17:41:04 +0900 | [diff] [blame] | 221 | int is_u64; |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 222 | uint64_t addr, size; |
| 223 | |
Masahiro Yamada | 50babaf | 2014-04-18 17:41:05 +0900 | [diff] [blame] | 224 | /* just return if the size of initrd is zero */ |
| 225 | if (initrd_start == initrd_end) |
| 226 | return 0; |
| 227 | |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 228 | /* find or create "/chosen" node. */ |
| 229 | nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen"); |
| 230 | if (nodeoffset < 0) |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 231 | return nodeoffset; |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 232 | |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 233 | 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 Likely | ce6b27a | 2011-03-28 09:58:55 +0000 | [diff] [blame] | 247 | err = fdt_add_mem_rsv(fdt, initrd_start, initrd_end - initrd_start); |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 248 | if (err < 0) { |
| 249 | printf("fdt_initrd: %s\n", fdt_strerror(err)); |
| 250 | return err; |
| 251 | } |
| 252 | |
Simon Glass | 933cdbb | 2014-10-23 18:58:57 -0600 | [diff] [blame] | 253 | is_u64 = (fdt_address_cells(fdt, 0) == 2); |
David Feng | f77a606 | 2013-12-14 11:47:29 +0800 | [diff] [blame] | 254 | |
Masahiro Yamada | f18295d | 2014-04-18 17:41:04 +0900 | [diff] [blame] | 255 | err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-start", |
| 256 | (uint64_t)initrd_start, is_u64); |
| 257 | |
Masahiro Yamada | dbe963a | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 258 | if (err < 0) { |
| 259 | printf("WARNING: could not set linux,initrd-start %s.\n", |
| 260 | fdt_strerror(err)); |
| 261 | return err; |
| 262 | } |
Masahiro Yamada | f18295d | 2014-04-18 17:41:04 +0900 | [diff] [blame] | 263 | |
| 264 | err = fdt_setprop_uxx(fdt, nodeoffset, "linux,initrd-end", |
| 265 | (uint64_t)initrd_end, is_u64); |
| 266 | |
Masahiro Yamada | dbe963a | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 267 | if (err < 0) { |
| 268 | printf("WARNING: could not set linux,initrd-end %s.\n", |
| 269 | fdt_strerror(err)); |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 270 | |
Masahiro Yamada | dbe963a | 2014-04-18 17:40:59 +0900 | [diff] [blame] | 271 | return err; |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | return 0; |
| 275 | } |
| 276 | |
Masahiro Yamada | bc6ed0f | 2014-04-18 17:41:00 +0900 | [diff] [blame] | 277 | int fdt_chosen(void *fdt) |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 278 | { |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 279 | int nodeoffset; |
| 280 | int err; |
Gerald Van Baren | 35ec398 | 2007-05-25 22:08:57 -0400 | [diff] [blame] | 281 | char *str; /* used to set string properties */ |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 282 | |
| 283 | err = fdt_check_header(fdt); |
| 284 | if (err < 0) { |
Gerald Van Baren | 5fe6be6 | 2007-08-07 21:14:22 -0400 | [diff] [blame] | 285 | printf("fdt_chosen: %s\n", fdt_strerror(err)); |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 286 | return err; |
| 287 | } |
| 288 | |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 289 | /* find or create "/chosen" node. */ |
| 290 | nodeoffset = fdt_find_or_add_subnode(fdt, 0, "chosen"); |
| 291 | if (nodeoffset < 0) |
| 292 | return nodeoffset; |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 293 | |
Simon Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 294 | str = env_get("bootargs"); |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 295 | if (str) { |
| 296 | err = fdt_setprop(fdt, nodeoffset, "bootargs", str, |
| 297 | strlen(str) + 1); |
| 298 | if (err < 0) { |
Masahiro Yamada | bc6ed0f | 2014-04-18 17:41:00 +0900 | [diff] [blame] | 299 | printf("WARNING: could not set bootargs %s.\n", |
| 300 | fdt_strerror(err)); |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 301 | return err; |
| 302 | } |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 303 | } |
Kumar Gala | 2a1a2cb | 2008-08-15 08:24:43 -0500 | [diff] [blame] | 304 | |
Masahiro Yamada | 972f2a8 | 2014-04-18 17:41:01 +0900 | [diff] [blame] | 305 | return fdt_fixup_stdout(fdt, nodeoffset); |
Gerald Van Baren | 64dbbd4 | 2007-04-06 14:19:43 -0400 | [diff] [blame] | 306 | } |
| 307 | |
Kumar Gala | e93becf | 2007-11-03 19:46:28 -0500 | [diff] [blame] | 308 | void 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 Gala | d9ad115 | 2008-02-13 15:09:58 -0600 | [diff] [blame] | 313 | debug("Updating property '%s/%s' = ", path, prop); |
Kumar Gala | e93becf | 2007-11-03 19:46:28 -0500 | [diff] [blame] | 314 | 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 | |
| 324 | void do_fixup_by_path_u32(void *fdt, const char *path, const char *prop, |
| 325 | u32 val, int create) |
| 326 | { |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 327 | fdt32_t tmp = cpu_to_fdt32(val); |
| 328 | do_fixup_by_path(fdt, path, prop, &tmp, sizeof(tmp), create); |
Kumar Gala | e93becf | 2007-11-03 19:46:28 -0500 | [diff] [blame] | 329 | } |
| 330 | |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 331 | void 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 Gala | d9ad115 | 2008-02-13 15:09:58 -0600 | [diff] [blame] | 339 | debug("Updating property '%s' = ", prop); |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 340 | 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 Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 346 | if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL)) |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 347 | fdt_setprop(fdt, off, prop, val, len); |
| 348 | off = fdt_node_offset_by_prop_value(fdt, off, pname, pval, plen); |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | void 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 Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 356 | fdt32_t tmp = cpu_to_fdt32(val); |
| 357 | do_fixup_by_prop(fdt, pname, pval, plen, prop, &tmp, 4, create); |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | void 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 Gala | d9ad115 | 2008-02-13 15:09:58 -0600 | [diff] [blame] | 366 | debug("Updating property '%s' = ", prop); |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 367 | 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 Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 373 | if (create || (fdt_get_property(fdt, off, prop, NULL) != NULL)) |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 374 | fdt_setprop(fdt, off, prop, val, len); |
| 375 | off = fdt_node_offset_by_compatible(fdt, off, compat); |
| 376 | } |
| 377 | } |
| 378 | |
| 379 | void do_fixup_by_compat_u32(void *fdt, const char *compat, |
| 380 | const char *prop, u32 val, int create) |
| 381 | { |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 382 | fdt32_t tmp = cpu_to_fdt32(val); |
| 383 | do_fixup_by_compat(fdt, compat, prop, &tmp, 4, create); |
Kumar Gala | 9eb77ce | 2007-11-21 13:30:15 -0600 | [diff] [blame] | 384 | } |
| 385 | |
Masahiro Yamada | 63c0941 | 2016-11-26 11:02:10 +0900 | [diff] [blame] | 386 | #ifdef CONFIG_ARCH_FIXUP_FDT_MEMORY |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 387 | /* |
| 388 | * fdt_pack_reg - pack address and size array into the "reg"-suitable stream |
| 389 | */ |
Simon Glass | 41f09bb | 2014-10-23 18:58:55 -0600 | [diff] [blame] | 390 | static int fdt_pack_reg(const void *fdt, void *buf, u64 *address, u64 *size, |
| 391 | int n) |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 392 | { |
| 393 | int i; |
Hans de Goede | ffccb84 | 2014-11-28 14:23:51 +0100 | [diff] [blame] | 394 | int address_cells = fdt_address_cells(fdt, 0); |
| 395 | int size_cells = fdt_size_cells(fdt, 0); |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 396 | char *p = buf; |
| 397 | |
| 398 | for (i = 0; i < n; i++) { |
Hans de Goede | ffccb84 | 2014-11-28 14:23:51 +0100 | [diff] [blame] | 399 | if (address_cells == 2) |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 400 | *(fdt64_t *)p = cpu_to_fdt64(address[i]); |
| 401 | else |
| 402 | *(fdt32_t *)p = cpu_to_fdt32(address[i]); |
Hans de Goede | ffccb84 | 2014-11-28 14:23:51 +0100 | [diff] [blame] | 403 | p += 4 * address_cells; |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 404 | |
Hans de Goede | ffccb84 | 2014-11-28 14:23:51 +0100 | [diff] [blame] | 405 | if (size_cells == 2) |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 406 | *(fdt64_t *)p = cpu_to_fdt64(size[i]); |
| 407 | else |
| 408 | *(fdt32_t *)p = cpu_to_fdt32(size[i]); |
Hans de Goede | ffccb84 | 2014-11-28 14:23:51 +0100 | [diff] [blame] | 409 | p += 4 * size_cells; |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | return p - (char *)buf; |
| 413 | } |
| 414 | |
Ramon Fried | 6b6f216 | 2018-08-14 00:35:42 +0300 | [diff] [blame] | 415 | #if CONFIG_NR_DRAM_BANKS > 4 |
| 416 | #define MEMORY_BANKS_MAX CONFIG_NR_DRAM_BANKS |
| 417 | #else |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 418 | #define MEMORY_BANKS_MAX 4 |
Ramon Fried | 6b6f216 | 2018-08-14 00:35:42 +0300 | [diff] [blame] | 419 | #endif |
John Rigby | a6bd9e8 | 2010-10-13 13:57:33 -0600 | [diff] [blame] | 420 | int fdt_fixup_memory_banks(void *blob, u64 start[], u64 size[], int banks) |
| 421 | { |
| 422 | int err, nodeoffset; |
Thierry Reding | 6d29cc7 | 2018-01-30 11:34:17 +0100 | [diff] [blame] | 423 | int len, i; |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 424 | u8 tmp[MEMORY_BANKS_MAX * 16]; /* Up to 64-bit address + 64-bit size */ |
Kumar Gala | 3c92728 | 2007-11-26 14:57:45 -0600 | [diff] [blame] | 425 | |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 426 | 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 Gala | 3c92728 | 2007-11-26 14:57:45 -0600 | [diff] [blame] | 433 | err = fdt_check_header(blob); |
| 434 | if (err < 0) { |
| 435 | printf("%s: %s\n", __FUNCTION__, fdt_strerror(err)); |
| 436 | return err; |
| 437 | } |
| 438 | |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 439 | /* find or create "/memory" node. */ |
| 440 | nodeoffset = fdt_find_or_add_subnode(blob, 0, "memory"); |
| 441 | if (nodeoffset < 0) |
Miao Yan | 35940de | 2013-11-28 17:51:39 +0800 | [diff] [blame] | 442 | return nodeoffset; |
Masahiro Yamada | 8edb219 | 2014-04-18 17:40:58 +0900 | [diff] [blame] | 443 | |
Kumar Gala | 3c92728 | 2007-11-26 14:57:45 -0600 | [diff] [blame] | 444 | 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 Reding | ed5af03 | 2018-02-15 19:05:59 +0100 | [diff] [blame] | 452 | for (i = 0; i < banks; i++) { |
| 453 | if (start[i] == 0 && size[i] == 0) |
| 454 | break; |
| 455 | } |
| 456 | |
| 457 | banks = i; |
| 458 | |
Andre Przywara | 5c1cf89 | 2015-06-21 00:29:54 +0100 | [diff] [blame] | 459 | if (!banks) |
| 460 | return 0; |
| 461 | |
Masahiro Yamada | 739a01e | 2014-04-18 17:41:03 +0900 | [diff] [blame] | 462 | len = fdt_pack_reg(blob, tmp, start, size, banks); |
Kumar Gala | 3c92728 | 2007-11-26 14:57:45 -0600 | [diff] [blame] | 463 | |
| 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 Opaniuk | 949b5a9 | 2019-12-03 14:04:46 +0200 | [diff] [blame] | 472 | |
| 473 | int 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 Yamada | 63c0941 | 2016-11-26 11:02:10 +0900 | [diff] [blame] | 507 | #endif |
Kumar Gala | 3c92728 | 2007-11-26 14:57:45 -0600 | [diff] [blame] | 508 | |
John Rigby | a6bd9e8 | 2010-10-13 13:57:33 -0600 | [diff] [blame] | 509 | int fdt_fixup_memory(void *blob, u64 start, u64 size) |
| 510 | { |
| 511 | return fdt_fixup_memory_banks(blob, &start, &size, 1); |
| 512 | } |
| 513 | |
Kumar Gala | ba37aa0 | 2008-08-19 15:41:18 -0500 | [diff] [blame] | 514 | void fdt_fixup_ethernet(void *fdt) |
Kumar Gala | ab54463 | 2007-11-21 11:11:03 -0600 | [diff] [blame] | 515 | { |
Prabhakar Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 516 | int i = 0, j, prop; |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 517 | char *tmp, *end; |
Stephen Warren | 064d55f | 2013-05-27 18:01:19 +0000 | [diff] [blame] | 518 | char mac[16]; |
Kumar Gala | ab54463 | 2007-11-21 11:11:03 -0600 | [diff] [blame] | 519 | const char *path; |
oliver@schinagl.nl | a40db6d | 2016-11-25 16:30:19 +0100 | [diff] [blame] | 520 | unsigned char mac_addr[ARP_HLEN]; |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 521 | int offset; |
Prabhakar Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 522 | #ifdef FDT_SEQ_MACADDR_FROM_ENV |
| 523 | int nodeoff; |
| 524 | const struct fdt_property *fdt_prop; |
| 525 | #endif |
Kumar Gala | ab54463 | 2007-11-21 11:11:03 -0600 | [diff] [blame] | 526 | |
Lev Iserovich | a434fd1 | 2016-01-07 18:04:16 -0500 | [diff] [blame] | 527 | if (fdt_path_offset(fdt, "/aliases") < 0) |
Kumar Gala | ba37aa0 | 2008-08-19 15:41:18 -0500 | [diff] [blame] | 528 | return; |
| 529 | |
Lev Iserovich | a434fd1 | 2016-01-07 18:04:16 -0500 | [diff] [blame] | 530 | /* Cycle through all aliases */ |
| 531 | for (prop = 0; ; prop++) { |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 532 | const char *name; |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 533 | |
Lev Iserovich | a434fd1 | 2016-01-07 18:04:16 -0500 | [diff] [blame] | 534 | /* 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 Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 538 | for (j = 0; j < prop; j++) |
Lev Iserovich | a434fd1 | 2016-01-07 18:04:16 -0500 | [diff] [blame] | 539 | offset = fdt_next_property_offset(fdt, offset); |
| 540 | |
| 541 | if (offset < 0) |
| 542 | break; |
| 543 | |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 544 | path = fdt_getprop_by_offset(fdt, offset, &name, NULL); |
Tuomas Tynkkynen | f8e57c6 | 2017-03-20 10:04:55 +0200 | [diff] [blame] | 545 | if (!strncmp(name, "ethernet", 8)) { |
| 546 | /* Treat plain "ethernet" same as "ethernet0". */ |
Prabhakar Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 547 | if (!strcmp(name, "ethernet") |
| 548 | #ifdef FDT_SEQ_MACADDR_FROM_ENV |
| 549 | || !strcmp(name, "ethernet0") |
| 550 | #endif |
| 551 | ) |
Tuomas Tynkkynen | f8e57c6 | 2017-03-20 10:04:55 +0200 | [diff] [blame] | 552 | i = 0; |
Prabhakar Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 553 | #ifndef FDT_SEQ_MACADDR_FROM_ENV |
Tuomas Tynkkynen | f8e57c6 | 2017-03-20 10:04:55 +0200 | [diff] [blame] | 554 | else |
| 555 | i = trailing_strtol(name); |
Prabhakar Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 556 | #endif |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 557 | 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 Kushwaha | 24acb83 | 2017-11-23 16:51:32 +0530 | [diff] [blame] | 565 | #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 Glass | 00caae6 | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 573 | tmp = env_get(mac); |
Bin Meng | bc393a7 | 2015-11-03 04:24:41 -0800 | [diff] [blame] | 574 | 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 Murphy | b1f49ab | 2013-10-02 14:00:15 -0500 | [diff] [blame] | 588 | } |
Kumar Gala | ab54463 | 2007-11-21 11:11:03 -0600 | [diff] [blame] | 589 | } |
| 590 | } |
Anton Vorontsov | 18e69a3 | 2008-03-14 23:20:18 +0300 | [diff] [blame] | 591 | |
Philipp Tomsich | a5af51a | 2018-02-02 12:01:44 +0100 | [diff] [blame] | 592 | int 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 | |
| 614 | /* |
| 615 | * We record these as 32bit entities, possibly truncating addresses. |
| 616 | * However, spl_fit.c is not 64bit safe either: i.e. we should not |
| 617 | * have an issue here. |
| 618 | */ |
| 619 | fdt_setprop_u32(blob, node, "load-addr", load_addr); |
| 620 | if (entry_point != -1) |
| 621 | fdt_setprop_u32(blob, node, "entry-point", entry_point); |
| 622 | fdt_setprop_u32(blob, node, "size", size); |
| 623 | if (type) |
| 624 | fdt_setprop_string(blob, node, "type", type); |
| 625 | if (os) |
| 626 | fdt_setprop_string(blob, node, "os", os); |
| 627 | |
| 628 | return node; |
| 629 | } |
| 630 | |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 631 | /* Resize the fdt to its actual size + a bit of padding */ |
Hannes Schmelzer | ef47683 | 2016-09-20 18:10:43 +0200 | [diff] [blame] | 632 | int fdt_shrink_to_minimum(void *blob, uint extrasize) |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 633 | { |
| 634 | int i; |
| 635 | uint64_t addr, size; |
| 636 | int total, ret; |
| 637 | uint actualsize; |
Simon Goldschmidt | 59bd796 | 2019-05-03 21:19:03 +0200 | [diff] [blame] | 638 | int fdt_memrsv = 0; |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 639 | |
| 640 | if (!blob) |
| 641 | return 0; |
| 642 | |
| 643 | total = fdt_num_mem_rsv(blob); |
| 644 | for (i = 0; i < total; i++) { |
| 645 | fdt_get_mem_rsv(blob, i, &addr, &size); |
Simon Glass | 9254935 | 2011-09-17 06:48:58 +0000 | [diff] [blame] | 646 | if (addr == (uintptr_t)blob) { |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 647 | fdt_del_mem_rsv(blob, i); |
Simon Goldschmidt | 59bd796 | 2019-05-03 21:19:03 +0200 | [diff] [blame] | 648 | fdt_memrsv = 1; |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 649 | break; |
| 650 | } |
| 651 | } |
| 652 | |
Peter Korsgaard | f242a08 | 2008-10-28 08:26:52 +0100 | [diff] [blame] | 653 | /* |
| 654 | * Calculate the actual size of the fdt |
Feng Wang | 3840ebf | 2010-08-03 16:22:43 +0200 | [diff] [blame] | 655 | * plus the size needed for 5 fdt_add_mem_rsv, one |
| 656 | * for the fdt itself and 4 for a possible initrd |
| 657 | * ((initrd-start + initrd-end) * 2 (name & value)) |
Peter Korsgaard | f242a08 | 2008-10-28 08:26:52 +0100 | [diff] [blame] | 658 | */ |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 659 | actualsize = fdt_off_dt_strings(blob) + |
Feng Wang | 3840ebf | 2010-08-03 16:22:43 +0200 | [diff] [blame] | 660 | fdt_size_dt_strings(blob) + 5 * sizeof(struct fdt_reserve_entry); |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 661 | |
Hannes Schmelzer | ef47683 | 2016-09-20 18:10:43 +0200 | [diff] [blame] | 662 | actualsize += extrasize; |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 663 | /* Make it so the fdt ends on a page boundary */ |
Simon Glass | 9254935 | 2011-09-17 06:48:58 +0000 | [diff] [blame] | 664 | actualsize = ALIGN(actualsize + ((uintptr_t)blob & 0xfff), 0x1000); |
| 665 | actualsize = actualsize - ((uintptr_t)blob & 0xfff); |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 666 | |
| 667 | /* Change the fdt header to reflect the correct size */ |
| 668 | fdt_set_totalsize(blob, actualsize); |
| 669 | |
Simon Goldschmidt | 59bd796 | 2019-05-03 21:19:03 +0200 | [diff] [blame] | 670 | if (fdt_memrsv) { |
| 671 | /* Add the new reservation */ |
| 672 | ret = fdt_add_mem_rsv(blob, map_to_sysmem(blob), actualsize); |
| 673 | if (ret < 0) |
| 674 | return ret; |
| 675 | } |
Kumar Gala | 3082d23 | 2008-08-15 08:24:42 -0500 | [diff] [blame] | 676 | |
| 677 | return actualsize; |
| 678 | } |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 679 | |
| 680 | #ifdef CONFIG_PCI |
Kumar Gala | cfd700b | 2009-08-05 09:03:54 -0500 | [diff] [blame] | 681 | #define CONFIG_SYS_PCI_NR_INBOUND_WIN 4 |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 682 | |
| 683 | #define FDT_PCI_PREFETCH (0x40000000) |
| 684 | #define FDT_PCI_MEM32 (0x02000000) |
| 685 | #define FDT_PCI_IO (0x01000000) |
| 686 | #define FDT_PCI_MEM64 (0x03000000) |
| 687 | |
| 688 | int fdt_pci_dma_ranges(void *blob, int phb_off, struct pci_controller *hose) { |
| 689 | |
| 690 | int addrcell, sizecell, len, r; |
| 691 | u32 *dma_range; |
| 692 | /* sized based on pci addr cells, size-cells, & address-cells */ |
| 693 | u32 dma_ranges[(3 + 2 + 2) * CONFIG_SYS_PCI_NR_INBOUND_WIN]; |
| 694 | |
| 695 | addrcell = fdt_getprop_u32_default(blob, "/", "#address-cells", 1); |
| 696 | sizecell = fdt_getprop_u32_default(blob, "/", "#size-cells", 1); |
| 697 | |
| 698 | dma_range = &dma_ranges[0]; |
| 699 | for (r = 0; r < hose->region_count; r++) { |
| 700 | u64 bus_start, phys_start, size; |
| 701 | |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 702 | /* skip if !PCI_REGION_SYS_MEMORY */ |
| 703 | if (!(hose->regions[r].flags & PCI_REGION_SYS_MEMORY)) |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 704 | continue; |
| 705 | |
| 706 | bus_start = (u64)hose->regions[r].bus_start; |
| 707 | phys_start = (u64)hose->regions[r].phys_start; |
| 708 | size = (u64)hose->regions[r].size; |
| 709 | |
| 710 | dma_range[0] = 0; |
Kumar Gala | cfd700b | 2009-08-05 09:03:54 -0500 | [diff] [blame] | 711 | if (size >= 0x100000000ull) |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 712 | dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM64); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 713 | else |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 714 | dma_range[0] |= cpu_to_fdt32(FDT_PCI_MEM32); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 715 | if (hose->regions[r].flags & PCI_REGION_PREFETCH) |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 716 | dma_range[0] |= cpu_to_fdt32(FDT_PCI_PREFETCH); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 717 | #ifdef CONFIG_SYS_PCI_64BIT |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 718 | dma_range[1] = cpu_to_fdt32(bus_start >> 32); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 719 | #else |
| 720 | dma_range[1] = 0; |
| 721 | #endif |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 722 | dma_range[2] = cpu_to_fdt32(bus_start & 0xffffffff); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 723 | |
| 724 | if (addrcell == 2) { |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 725 | dma_range[3] = cpu_to_fdt32(phys_start >> 32); |
| 726 | dma_range[4] = cpu_to_fdt32(phys_start & 0xffffffff); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 727 | } else { |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 728 | dma_range[3] = cpu_to_fdt32(phys_start & 0xffffffff); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 729 | } |
| 730 | |
| 731 | if (sizecell == 2) { |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 732 | dma_range[3 + addrcell + 0] = |
| 733 | cpu_to_fdt32(size >> 32); |
| 734 | dma_range[3 + addrcell + 1] = |
| 735 | cpu_to_fdt32(size & 0xffffffff); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 736 | } else { |
Marek Vasut | 867aaf6 | 2019-07-09 02:49:29 +0200 | [diff] [blame] | 737 | dma_range[3 + addrcell + 0] = |
| 738 | cpu_to_fdt32(size & 0xffffffff); |
Kumar Gala | 8ab451c | 2008-10-22 23:33:56 -0500 | [diff] [blame] | 739 | } |
| 740 | |
| 741 | dma_range += (3 + addrcell + sizecell); |
| 742 | } |
| 743 | |
| 744 | len = dma_range - &dma_ranges[0]; |
| 745 | if (len) |
| 746 | fdt_setprop(blob, phb_off, "dma-ranges", &dma_ranges[0], len*4); |
| 747 | |
| 748 | return 0; |
| 749 | } |
| 750 | #endif |
Stefan Roese | 30d45c0 | 2009-10-21 11:59:52 +0200 | [diff] [blame] | 751 | |
Matthew McClintock | cb2707a | 2010-10-13 13:39:26 +0200 | [diff] [blame] | 752 | int fdt_increase_size(void *fdt, int add_len) |
| 753 | { |
| 754 | int newlen; |
| 755 | |
| 756 | newlen = fdt_totalsize(fdt) + add_len; |
| 757 | |
| 758 | /* Open in place with a new len */ |
| 759 | return fdt_open_into(fdt, fdt, newlen); |
| 760 | } |
| 761 | |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 762 | #ifdef CONFIG_FDT_FIXUP_PARTITIONS |
| 763 | #include <jffs2/load_kernel.h> |
| 764 | #include <mtd_node.h> |
| 765 | |
Michal Simek | cd1457d | 2018-07-31 14:31:04 +0200 | [diff] [blame] | 766 | static int fdt_del_subnodes(const void *blob, int parent_offset) |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 767 | { |
| 768 | int off, ndepth; |
| 769 | int ret; |
| 770 | |
| 771 | for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth); |
| 772 | (off >= 0) && (ndepth > 0); |
| 773 | off = fdt_next_node(blob, off, &ndepth)) { |
| 774 | if (ndepth == 1) { |
| 775 | debug("delete %s: offset: %x\n", |
| 776 | fdt_get_name(blob, off, 0), off); |
| 777 | ret = fdt_del_node((void *)blob, off); |
| 778 | if (ret < 0) { |
| 779 | printf("Can't delete node: %s\n", |
| 780 | fdt_strerror(ret)); |
| 781 | return ret; |
| 782 | } else { |
| 783 | ndepth = 0; |
| 784 | off = parent_offset; |
| 785 | } |
| 786 | } |
| 787 | } |
| 788 | return 0; |
| 789 | } |
| 790 | |
Michal Simek | cd1457d | 2018-07-31 14:31:04 +0200 | [diff] [blame] | 791 | static int fdt_del_partitions(void *blob, int parent_offset) |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 792 | { |
| 793 | const void *prop; |
| 794 | int ndepth = 0; |
| 795 | int off; |
| 796 | int ret; |
| 797 | |
| 798 | off = fdt_next_node(blob, parent_offset, &ndepth); |
| 799 | if (off > 0 && ndepth == 1) { |
| 800 | prop = fdt_getprop(blob, off, "label", NULL); |
| 801 | if (prop == NULL) { |
| 802 | /* |
| 803 | * Could not find label property, nand {}; node? |
| 804 | * Check subnode, delete partitions there if any. |
| 805 | */ |
| 806 | return fdt_del_partitions(blob, off); |
| 807 | } else { |
| 808 | ret = fdt_del_subnodes(blob, parent_offset); |
| 809 | if (ret < 0) { |
| 810 | printf("Can't remove subnodes: %s\n", |
| 811 | fdt_strerror(ret)); |
| 812 | return ret; |
| 813 | } |
| 814 | } |
| 815 | } |
| 816 | return 0; |
| 817 | } |
| 818 | |
Masahiro Yamada | 8ce8e42 | 2020-07-15 19:35:47 +0900 | [diff] [blame] | 819 | static int fdt_node_set_part_info(void *blob, int parent_offset, |
| 820 | struct mtd_device *dev) |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 821 | { |
| 822 | struct list_head *pentry; |
| 823 | struct part_info *part; |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 824 | int off, ndepth = 0; |
| 825 | int part_num, ret; |
Stefan Mavrodiev | 3a9a62a | 2019-04-24 08:31:54 +0300 | [diff] [blame] | 826 | int sizecell; |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 827 | char buf[64]; |
| 828 | |
| 829 | ret = fdt_del_partitions(blob, parent_offset); |
| 830 | if (ret < 0) |
| 831 | return ret; |
| 832 | |
| 833 | /* |
Stefan Mavrodiev | 3a9a62a | 2019-04-24 08:31:54 +0300 | [diff] [blame] | 834 | * Check if size/address is 1 or 2 cells. |
| 835 | * We assume #address-cells and #size-cells have same value. |
| 836 | */ |
| 837 | sizecell = fdt_getprop_u32_default_node(blob, parent_offset, |
| 838 | 0, "#size-cells", 1); |
| 839 | |
| 840 | /* |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 841 | * Check if it is nand {}; subnode, adjust |
| 842 | * the offset in this case |
| 843 | */ |
| 844 | off = fdt_next_node(blob, parent_offset, &ndepth); |
| 845 | if (off > 0 && ndepth == 1) |
| 846 | parent_offset = off; |
| 847 | |
| 848 | part_num = 0; |
| 849 | list_for_each_prev(pentry, &dev->parts) { |
| 850 | int newoff; |
| 851 | |
| 852 | part = list_entry(pentry, struct part_info, link); |
| 853 | |
Scott Wood | 06503f1 | 2013-10-15 17:41:27 -0500 | [diff] [blame] | 854 | debug("%2d: %-20s0x%08llx\t0x%08llx\t%d\n", |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 855 | part_num, part->name, part->size, |
| 856 | part->offset, part->mask_flags); |
| 857 | |
Scott Wood | 06503f1 | 2013-10-15 17:41:27 -0500 | [diff] [blame] | 858 | sprintf(buf, "partition@%llx", part->offset); |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 859 | add_sub: |
| 860 | ret = fdt_add_subnode(blob, parent_offset, buf); |
| 861 | if (ret == -FDT_ERR_NOSPACE) { |
| 862 | ret = fdt_increase_size(blob, 512); |
| 863 | if (!ret) |
| 864 | goto add_sub; |
| 865 | else |
| 866 | goto err_size; |
| 867 | } else if (ret < 0) { |
| 868 | printf("Can't add partition node: %s\n", |
| 869 | fdt_strerror(ret)); |
| 870 | return ret; |
| 871 | } |
| 872 | newoff = ret; |
| 873 | |
| 874 | /* Check MTD_WRITEABLE_CMD flag */ |
| 875 | if (part->mask_flags & 1) { |
| 876 | add_ro: |
| 877 | ret = fdt_setprop(blob, newoff, "read_only", NULL, 0); |
| 878 | if (ret == -FDT_ERR_NOSPACE) { |
| 879 | ret = fdt_increase_size(blob, 512); |
| 880 | if (!ret) |
| 881 | goto add_ro; |
| 882 | else |
| 883 | goto err_size; |
| 884 | } else if (ret < 0) |
| 885 | goto err_prop; |
| 886 | } |
| 887 | |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 888 | add_reg: |
Stefan Mavrodiev | 3a9a62a | 2019-04-24 08:31:54 +0300 | [diff] [blame] | 889 | if (sizecell == 2) { |
| 890 | ret = fdt_setprop_u64(blob, newoff, |
| 891 | "reg", part->offset); |
| 892 | if (!ret) |
| 893 | ret = fdt_appendprop_u64(blob, newoff, |
| 894 | "reg", part->size); |
| 895 | } else { |
| 896 | ret = fdt_setprop_u32(blob, newoff, |
| 897 | "reg", part->offset); |
| 898 | if (!ret) |
| 899 | ret = fdt_appendprop_u32(blob, newoff, |
| 900 | "reg", part->size); |
| 901 | } |
| 902 | |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 903 | if (ret == -FDT_ERR_NOSPACE) { |
| 904 | ret = fdt_increase_size(blob, 512); |
| 905 | if (!ret) |
| 906 | goto add_reg; |
| 907 | else |
| 908 | goto err_size; |
| 909 | } else if (ret < 0) |
| 910 | goto err_prop; |
| 911 | |
| 912 | add_label: |
| 913 | ret = fdt_setprop_string(blob, newoff, "label", part->name); |
| 914 | if (ret == -FDT_ERR_NOSPACE) { |
| 915 | ret = fdt_increase_size(blob, 512); |
| 916 | if (!ret) |
| 917 | goto add_label; |
| 918 | else |
| 919 | goto err_size; |
| 920 | } else if (ret < 0) |
| 921 | goto err_prop; |
| 922 | |
| 923 | part_num++; |
| 924 | } |
| 925 | return 0; |
| 926 | err_size: |
| 927 | printf("Can't increase blob size: %s\n", fdt_strerror(ret)); |
| 928 | return ret; |
| 929 | err_prop: |
| 930 | printf("Can't add property: %s\n", fdt_strerror(ret)); |
| 931 | return ret; |
| 932 | } |
| 933 | |
| 934 | /* |
| 935 | * Update partitions in nor/nand nodes using info from |
| 936 | * mtdparts environment variable. The nodes to update are |
| 937 | * specified by node_info structure which contains mtd device |
| 938 | * type and compatible string: E. g. the board code in |
| 939 | * ft_board_setup() could use: |
| 940 | * |
| 941 | * struct node_info nodes[] = { |
| 942 | * { "fsl,mpc5121-nfc", MTD_DEV_TYPE_NAND, }, |
| 943 | * { "cfi-flash", MTD_DEV_TYPE_NOR, }, |
| 944 | * }; |
| 945 | * |
| 946 | * fdt_fixup_mtdparts(blob, nodes, ARRAY_SIZE(nodes)); |
| 947 | */ |
Masahiro Yamada | 5f4e32d | 2018-07-19 16:28:22 +0900 | [diff] [blame] | 948 | void fdt_fixup_mtdparts(void *blob, const struct node_info *node_info, |
| 949 | int node_info_size) |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 950 | { |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 951 | struct mtd_device *dev; |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 952 | int i, idx; |
| 953 | int noff; |
Masahiro Yamada | 53a8966 | 2020-07-17 10:46:18 +0900 | [diff] [blame] | 954 | bool inited = false; |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 955 | |
| 956 | for (i = 0; i < node_info_size; i++) { |
| 957 | idx = 0; |
Masahiro Yamada | 7d8073e | 2020-07-17 10:46:19 +0900 | [diff] [blame] | 958 | noff = -1; |
| 959 | |
| 960 | while ((noff = fdt_node_offset_by_compatible(blob, noff, |
| 961 | node_info[i].compat)) >= 0) { |
| 962 | const char *prop; |
| 963 | |
| 964 | prop = fdt_getprop(blob, noff, "status", NULL); |
| 965 | if (prop && !strcmp(prop, "disabled")) |
| 966 | continue; |
| 967 | |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 968 | debug("%s: %s, mtd dev type %d\n", |
| 969 | fdt_get_name(blob, noff, 0), |
Masahiro Yamada | 5f4e32d | 2018-07-19 16:28:22 +0900 | [diff] [blame] | 970 | node_info[i].compat, node_info[i].type); |
Masahiro Yamada | 53a8966 | 2020-07-17 10:46:18 +0900 | [diff] [blame] | 971 | |
| 972 | if (!inited) { |
| 973 | if (mtdparts_init() != 0) |
| 974 | return; |
| 975 | inited = true; |
| 976 | } |
| 977 | |
Masahiro Yamada | 5f4e32d | 2018-07-19 16:28:22 +0900 | [diff] [blame] | 978 | dev = device_find(node_info[i].type, idx++); |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 979 | if (dev) { |
| 980 | if (fdt_node_set_part_info(blob, noff, dev)) |
| 981 | return; /* return on error */ |
| 982 | } |
Anatolij Gustschin | 3c950e2 | 2010-03-16 17:10:05 +0100 | [diff] [blame] | 983 | } |
| 984 | } |
| 985 | } |
| 986 | #endif |
Kumar Gala | 49b97d9 | 2010-03-30 10:19:26 -0500 | [diff] [blame] | 987 | |
| 988 | void fdt_del_node_and_alias(void *blob, const char *alias) |
| 989 | { |
| 990 | int off = fdt_path_offset(blob, alias); |
| 991 | |
| 992 | if (off < 0) |
| 993 | return; |
| 994 | |
| 995 | fdt_del_node(blob, off); |
| 996 | |
| 997 | off = fdt_path_offset(blob, "/aliases"); |
| 998 | fdt_delprop(blob, off, alias); |
| 999 | } |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1000 | |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1001 | /* Max address size we deal with */ |
| 1002 | #define OF_MAX_ADDR_CELLS 4 |
Bin Meng | a0ae380 | 2015-12-07 01:39:47 -0800 | [diff] [blame] | 1003 | #define OF_BAD_ADDR FDT_ADDR_T_NONE |
Przemyslaw Marczak | 4428f3c | 2016-01-12 15:40:44 +0100 | [diff] [blame] | 1004 | #define OF_CHECK_COUNTS(na, ns) ((na) > 0 && (na) <= OF_MAX_ADDR_CELLS && \ |
| 1005 | (ns) > 0) |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1006 | |
| 1007 | /* Debug utility */ |
| 1008 | #ifdef DEBUG |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1009 | static void of_dump_addr(const char *s, const fdt32_t *addr, int na) |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1010 | { |
| 1011 | printf("%s", s); |
| 1012 | while(na--) |
| 1013 | printf(" %08x", *(addr++)); |
| 1014 | printf("\n"); |
| 1015 | } |
| 1016 | #else |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1017 | static void of_dump_addr(const char *s, const fdt32_t *addr, int na) { } |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1018 | #endif |
| 1019 | |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1020 | /** |
| 1021 | * struct of_bus - Callbacks for bus specific translators |
Paul Burton | 49717b1 | 2016-05-17 07:43:25 +0100 | [diff] [blame] | 1022 | * @name: A string used to identify this bus in debug output. |
| 1023 | * @addresses: The name of the DT property from which addresses are |
| 1024 | * to be read, typically "reg". |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1025 | * @match: Return non-zero if the node whose parent is at |
| 1026 | * parentoffset in the FDT blob corresponds to a bus |
| 1027 | * of this type, otherwise return zero. If NULL a match |
| 1028 | * is assumed. |
Paul Burton | 49717b1 | 2016-05-17 07:43:25 +0100 | [diff] [blame] | 1029 | * @count_cells:Count how many cells (be32 values) a node whose parent |
| 1030 | * is at parentoffset in the FDT blob will require to |
| 1031 | * represent its address (written to *addrc) & size |
| 1032 | * (written to *sizec). |
| 1033 | * @map: Map the address addr from the address space of this |
| 1034 | * bus to that of its parent, making use of the ranges |
| 1035 | * read from DT to an array at range. na and ns are the |
| 1036 | * number of cells (be32 values) used to hold and address |
| 1037 | * or size, respectively, for this bus. pna is the number |
| 1038 | * of cells used to hold an address for the parent bus. |
| 1039 | * Returns the address in the address space of the parent |
| 1040 | * bus. |
| 1041 | * @translate: Update the value of the address cells at addr within an |
| 1042 | * FDT by adding offset to it. na specifies the number of |
| 1043 | * cells used to hold the address being translated. Returns |
| 1044 | * zero on success, non-zero on error. |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1045 | * |
| 1046 | * Each bus type will include a struct of_bus in the of_busses array, |
| 1047 | * providing implementations of some or all of the functions used to |
| 1048 | * match the bus & handle address translation for its children. |
| 1049 | */ |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1050 | struct of_bus { |
| 1051 | const char *name; |
| 1052 | const char *addresses; |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1053 | int (*match)(const void *blob, int parentoffset); |
| 1054 | void (*count_cells)(const void *blob, int parentoffset, |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1055 | int *addrc, int *sizec); |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1056 | u64 (*map)(fdt32_t *addr, const fdt32_t *range, |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1057 | int na, int ns, int pna); |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1058 | int (*translate)(fdt32_t *addr, u64 offset, int na); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1059 | }; |
| 1060 | |
| 1061 | /* Default translator (generic bus) */ |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1062 | void fdt_support_default_count_cells(const void *blob, int parentoffset, |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1063 | int *addrc, int *sizec) |
| 1064 | { |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1065 | const fdt32_t *prop; |
Scott Wood | 6395f31 | 2010-08-12 18:37:39 -0500 | [diff] [blame] | 1066 | |
Simon Glass | 933cdbb | 2014-10-23 18:58:57 -0600 | [diff] [blame] | 1067 | if (addrc) |
| 1068 | *addrc = fdt_address_cells(blob, parentoffset); |
Scott Wood | 6395f31 | 2010-08-12 18:37:39 -0500 | [diff] [blame] | 1069 | |
| 1070 | if (sizec) { |
| 1071 | prop = fdt_getprop(blob, parentoffset, "#size-cells", NULL); |
| 1072 | if (prop) |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1073 | *sizec = be32_to_cpup(prop); |
Scott Wood | 6395f31 | 2010-08-12 18:37:39 -0500 | [diff] [blame] | 1074 | else |
| 1075 | *sizec = 1; |
| 1076 | } |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1077 | } |
| 1078 | |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1079 | static u64 of_bus_default_map(fdt32_t *addr, const fdt32_t *range, |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1080 | int na, int ns, int pna) |
| 1081 | { |
| 1082 | u64 cp, s, da; |
| 1083 | |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1084 | cp = fdt_read_number(range, na); |
| 1085 | s = fdt_read_number(range + na + pna, ns); |
| 1086 | da = fdt_read_number(addr, na); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1087 | |
Sekhar Nori | d8e9cf4 | 2018-12-06 15:20:47 +0530 | [diff] [blame] | 1088 | debug("OF: default map, cp=%llx, s=%llx, da=%llx\n", cp, s, da); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1089 | |
| 1090 | if (da < cp || da >= (cp + s)) |
| 1091 | return OF_BAD_ADDR; |
| 1092 | return da - cp; |
| 1093 | } |
| 1094 | |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1095 | static int of_bus_default_translate(fdt32_t *addr, u64 offset, int na) |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1096 | { |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1097 | u64 a = fdt_read_number(addr, na); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1098 | memset(addr, 0, na * 4); |
| 1099 | a += offset; |
| 1100 | if (na > 1) |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1101 | addr[na - 2] = cpu_to_fdt32(a >> 32); |
| 1102 | addr[na - 1] = cpu_to_fdt32(a & 0xffffffffu); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1103 | |
| 1104 | return 0; |
| 1105 | } |
| 1106 | |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1107 | #ifdef CONFIG_OF_ISA_BUS |
| 1108 | |
| 1109 | /* ISA bus translator */ |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1110 | static int of_bus_isa_match(const void *blob, int parentoffset) |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1111 | { |
| 1112 | const char *name; |
| 1113 | |
| 1114 | name = fdt_get_name(blob, parentoffset, NULL); |
| 1115 | if (!name) |
| 1116 | return 0; |
| 1117 | |
| 1118 | return !strcmp(name, "isa"); |
| 1119 | } |
| 1120 | |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1121 | static void of_bus_isa_count_cells(const void *blob, int parentoffset, |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1122 | int *addrc, int *sizec) |
| 1123 | { |
| 1124 | if (addrc) |
| 1125 | *addrc = 2; |
| 1126 | if (sizec) |
| 1127 | *sizec = 1; |
| 1128 | } |
| 1129 | |
| 1130 | static u64 of_bus_isa_map(fdt32_t *addr, const fdt32_t *range, |
| 1131 | int na, int ns, int pna) |
| 1132 | { |
| 1133 | u64 cp, s, da; |
| 1134 | |
| 1135 | /* Check address type match */ |
| 1136 | if ((addr[0] ^ range[0]) & cpu_to_be32(1)) |
| 1137 | return OF_BAD_ADDR; |
| 1138 | |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1139 | cp = fdt_read_number(range + 1, na - 1); |
| 1140 | s = fdt_read_number(range + na + pna, ns); |
| 1141 | da = fdt_read_number(addr + 1, na - 1); |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1142 | |
Sekhar Nori | d8e9cf4 | 2018-12-06 15:20:47 +0530 | [diff] [blame] | 1143 | debug("OF: ISA map, cp=%llx, s=%llx, da=%llx\n", cp, s, da); |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1144 | |
| 1145 | if (da < cp || da >= (cp + s)) |
| 1146 | return OF_BAD_ADDR; |
| 1147 | return da - cp; |
| 1148 | } |
| 1149 | |
| 1150 | static int of_bus_isa_translate(fdt32_t *addr, u64 offset, int na) |
| 1151 | { |
| 1152 | return of_bus_default_translate(addr + 1, offset, na - 1); |
| 1153 | } |
| 1154 | |
| 1155 | #endif /* CONFIG_OF_ISA_BUS */ |
| 1156 | |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1157 | /* Array of bus specific translators */ |
| 1158 | static struct of_bus of_busses[] = { |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1159 | #ifdef CONFIG_OF_ISA_BUS |
| 1160 | /* ISA */ |
| 1161 | { |
| 1162 | .name = "isa", |
| 1163 | .addresses = "reg", |
| 1164 | .match = of_bus_isa_match, |
| 1165 | .count_cells = of_bus_isa_count_cells, |
| 1166 | .map = of_bus_isa_map, |
| 1167 | .translate = of_bus_isa_translate, |
| 1168 | }, |
| 1169 | #endif /* CONFIG_OF_ISA_BUS */ |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1170 | /* Default */ |
| 1171 | { |
| 1172 | .name = "default", |
| 1173 | .addresses = "reg", |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1174 | .count_cells = fdt_support_default_count_cells, |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1175 | .map = of_bus_default_map, |
| 1176 | .translate = of_bus_default_translate, |
| 1177 | }, |
| 1178 | }; |
| 1179 | |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1180 | static struct of_bus *of_match_bus(const void *blob, int parentoffset) |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1181 | { |
| 1182 | struct of_bus *bus; |
| 1183 | |
| 1184 | if (ARRAY_SIZE(of_busses) == 1) |
| 1185 | return of_busses; |
| 1186 | |
| 1187 | for (bus = of_busses; bus; bus++) { |
| 1188 | if (!bus->match || bus->match(blob, parentoffset)) |
| 1189 | return bus; |
| 1190 | } |
| 1191 | |
| 1192 | /* |
| 1193 | * We should always have matched the default bus at least, since |
| 1194 | * it has a NULL match field. If we didn't then it somehow isn't |
| 1195 | * in the of_busses array or something equally catastrophic has |
| 1196 | * gone wrong. |
| 1197 | */ |
| 1198 | assert(0); |
| 1199 | return NULL; |
| 1200 | } |
| 1201 | |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1202 | static int of_translate_one(const void *blob, int parent, struct of_bus *bus, |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1203 | struct of_bus *pbus, fdt32_t *addr, |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1204 | int na, int ns, int pna, const char *rprop) |
| 1205 | { |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1206 | const fdt32_t *ranges; |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1207 | int rlen; |
| 1208 | int rone; |
| 1209 | u64 offset = OF_BAD_ADDR; |
| 1210 | |
| 1211 | /* Normally, an absence of a "ranges" property means we are |
| 1212 | * crossing a non-translatable boundary, and thus the addresses |
| 1213 | * below the current not cannot be converted to CPU physical ones. |
| 1214 | * Unfortunately, while this is very clear in the spec, it's not |
| 1215 | * what Apple understood, and they do have things like /uni-n or |
| 1216 | * /ht nodes with no "ranges" property and a lot of perfectly |
| 1217 | * useable mapped devices below them. Thus we treat the absence of |
| 1218 | * "ranges" as equivalent to an empty "ranges" property which means |
| 1219 | * a 1:1 translation at that level. It's up to the caller not to try |
| 1220 | * to translate addresses that aren't supposed to be translated in |
| 1221 | * the first place. --BenH. |
| 1222 | */ |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1223 | ranges = fdt_getprop(blob, parent, rprop, &rlen); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1224 | if (ranges == NULL || rlen == 0) { |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1225 | offset = fdt_read_number(addr, na); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1226 | memset(addr, 0, pna * 4); |
| 1227 | debug("OF: no ranges, 1:1 translation\n"); |
| 1228 | goto finish; |
| 1229 | } |
| 1230 | |
| 1231 | debug("OF: walking ranges...\n"); |
| 1232 | |
| 1233 | /* Now walk through the ranges */ |
| 1234 | rlen /= 4; |
| 1235 | rone = na + pna + ns; |
| 1236 | for (; rlen >= rone; rlen -= rone, ranges += rone) { |
| 1237 | offset = bus->map(addr, ranges, na, ns, pna); |
| 1238 | if (offset != OF_BAD_ADDR) |
| 1239 | break; |
| 1240 | } |
| 1241 | if (offset == OF_BAD_ADDR) { |
| 1242 | debug("OF: not found !\n"); |
| 1243 | return 1; |
| 1244 | } |
| 1245 | memcpy(addr, ranges + na, 4 * pna); |
| 1246 | |
| 1247 | finish: |
| 1248 | of_dump_addr("OF: parent translation for:", addr, pna); |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1249 | debug("OF: with offset: %llu\n", offset); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1250 | |
| 1251 | /* Translate it into parent bus space */ |
| 1252 | return pbus->translate(addr, offset, pna); |
| 1253 | } |
| 1254 | |
| 1255 | /* |
| 1256 | * Translate an address from the device-tree into a CPU physical address, |
| 1257 | * this walks up the tree and applies the various bus mappings on the |
| 1258 | * way. |
| 1259 | * |
| 1260 | * Note: We consider that crossing any level with #size-cells == 0 to mean |
| 1261 | * that translation is impossible (that is we are not dealing with a value |
| 1262 | * that can be mapped to a cpu physical address). This is not really specified |
| 1263 | * that way, but this is traditionally the way IBM at least do things |
| 1264 | */ |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1265 | static u64 __of_translate_address(const void *blob, int node_offset, |
| 1266 | const fdt32_t *in_addr, const char *rprop) |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1267 | { |
| 1268 | int parent; |
| 1269 | struct of_bus *bus, *pbus; |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1270 | fdt32_t addr[OF_MAX_ADDR_CELLS]; |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1271 | int na, ns, pna, pns; |
| 1272 | u64 result = OF_BAD_ADDR; |
| 1273 | |
| 1274 | debug("OF: ** translation for device %s **\n", |
| 1275 | fdt_get_name(blob, node_offset, NULL)); |
| 1276 | |
| 1277 | /* Get parent & match bus type */ |
| 1278 | parent = fdt_parent_offset(blob, node_offset); |
| 1279 | if (parent < 0) |
| 1280 | goto bail; |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1281 | bus = of_match_bus(blob, parent); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1282 | |
| 1283 | /* Cound address cells & copy address locally */ |
Scott Wood | 6395f31 | 2010-08-12 18:37:39 -0500 | [diff] [blame] | 1284 | bus->count_cells(blob, parent, &na, &ns); |
Przemyslaw Marczak | 4428f3c | 2016-01-12 15:40:44 +0100 | [diff] [blame] | 1285 | if (!OF_CHECK_COUNTS(na, ns)) { |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1286 | printf("%s: Bad cell count for %s\n", __FUNCTION__, |
| 1287 | fdt_get_name(blob, node_offset, NULL)); |
| 1288 | goto bail; |
| 1289 | } |
| 1290 | memcpy(addr, in_addr, na * 4); |
| 1291 | |
| 1292 | debug("OF: bus is %s (na=%d, ns=%d) on %s\n", |
| 1293 | bus->name, na, ns, fdt_get_name(blob, parent, NULL)); |
| 1294 | of_dump_addr("OF: translating address:", addr, na); |
| 1295 | |
| 1296 | /* Translate */ |
| 1297 | for (;;) { |
| 1298 | /* Switch to parent bus */ |
| 1299 | node_offset = parent; |
| 1300 | parent = fdt_parent_offset(blob, node_offset); |
| 1301 | |
| 1302 | /* If root, we have finished */ |
| 1303 | if (parent < 0) { |
| 1304 | debug("OF: reached root node\n"); |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1305 | result = fdt_read_number(addr, na); |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1306 | break; |
| 1307 | } |
| 1308 | |
| 1309 | /* Get new parent bus and counts */ |
Paul Burton | 0a222d5 | 2016-05-17 07:43:24 +0100 | [diff] [blame] | 1310 | pbus = of_match_bus(blob, parent); |
Scott Wood | 6395f31 | 2010-08-12 18:37:39 -0500 | [diff] [blame] | 1311 | pbus->count_cells(blob, parent, &pna, &pns); |
Przemyslaw Marczak | 4428f3c | 2016-01-12 15:40:44 +0100 | [diff] [blame] | 1312 | if (!OF_CHECK_COUNTS(pna, pns)) { |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1313 | printf("%s: Bad cell count for %s\n", __FUNCTION__, |
| 1314 | fdt_get_name(blob, node_offset, NULL)); |
| 1315 | break; |
| 1316 | } |
| 1317 | |
| 1318 | debug("OF: parent bus is %s (na=%d, ns=%d) on %s\n", |
| 1319 | pbus->name, pna, pns, fdt_get_name(blob, parent, NULL)); |
| 1320 | |
| 1321 | /* Apply bus translation */ |
| 1322 | if (of_translate_one(blob, node_offset, bus, pbus, |
| 1323 | addr, na, ns, pna, rprop)) |
| 1324 | break; |
| 1325 | |
| 1326 | /* Complete the move up one level */ |
| 1327 | na = pna; |
| 1328 | ns = pns; |
| 1329 | bus = pbus; |
| 1330 | |
| 1331 | of_dump_addr("OF: one level translation:", addr, na); |
| 1332 | } |
| 1333 | bail: |
| 1334 | |
| 1335 | return result; |
| 1336 | } |
| 1337 | |
Stephen Warren | 11e44fc | 2016-08-05 09:47:50 -0600 | [diff] [blame] | 1338 | u64 fdt_translate_address(const void *blob, int node_offset, |
| 1339 | const fdt32_t *in_addr) |
Kumar Gala | a0342c0 | 2010-06-16 14:27:38 -0500 | [diff] [blame] | 1340 | { |
| 1341 | return __of_translate_address(blob, node_offset, in_addr, "ranges"); |
| 1342 | } |
Kumar Gala | 75e73af | 2010-07-04 12:48:21 -0500 | [diff] [blame] | 1343 | |
Fabien Dessenne | 641067f | 2019-05-31 15:11:30 +0200 | [diff] [blame] | 1344 | u64 fdt_translate_dma_address(const void *blob, int node_offset, |
| 1345 | const fdt32_t *in_addr) |
| 1346 | { |
| 1347 | return __of_translate_address(blob, node_offset, in_addr, "dma-ranges"); |
| 1348 | } |
| 1349 | |
Kumar Gala | 75e73af | 2010-07-04 12:48:21 -0500 | [diff] [blame] | 1350 | /** |
| 1351 | * fdt_node_offset_by_compat_reg: Find a node that matches compatiable and |
| 1352 | * who's reg property matches a physical cpu address |
| 1353 | * |
| 1354 | * @blob: ptr to device tree |
| 1355 | * @compat: compatiable string to match |
| 1356 | * @compat_off: property name |
| 1357 | * |
| 1358 | */ |
| 1359 | int fdt_node_offset_by_compat_reg(void *blob, const char *compat, |
| 1360 | phys_addr_t compat_off) |
| 1361 | { |
| 1362 | int len, off = fdt_node_offset_by_compatible(blob, -1, compat); |
| 1363 | while (off != -FDT_ERR_NOTFOUND) { |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1364 | const fdt32_t *reg = fdt_getprop(blob, off, "reg", &len); |
Kumar Gala | 75e73af | 2010-07-04 12:48:21 -0500 | [diff] [blame] | 1365 | if (reg) { |
| 1366 | if (compat_off == fdt_translate_address(blob, off, reg)) |
| 1367 | return off; |
| 1368 | } |
| 1369 | off = fdt_node_offset_by_compatible(blob, off, compat); |
| 1370 | } |
| 1371 | |
| 1372 | return -FDT_ERR_NOTFOUND; |
| 1373 | } |
| 1374 | |
Kumar Gala | b4b847e | 2010-07-09 16:18:58 -0500 | [diff] [blame] | 1375 | /** |
| 1376 | * fdt_alloc_phandle: Return next free phandle value |
| 1377 | * |
| 1378 | * @blob: ptr to device tree |
| 1379 | */ |
| 1380 | int fdt_alloc_phandle(void *blob) |
| 1381 | { |
Masahiro Yamada | b414119 | 2014-11-07 03:03:31 +0900 | [diff] [blame] | 1382 | int offset; |
| 1383 | uint32_t phandle = 0; |
Kumar Gala | 75e73af | 2010-07-04 12:48:21 -0500 | [diff] [blame] | 1384 | |
Kumar Gala | b4b847e | 2010-07-09 16:18:58 -0500 | [diff] [blame] | 1385 | for (offset = fdt_next_node(blob, -1, NULL); offset >= 0; |
| 1386 | offset = fdt_next_node(blob, offset, NULL)) { |
Timur Tabi | 50bf17b | 2011-09-20 18:24:35 -0500 | [diff] [blame] | 1387 | phandle = max(phandle, fdt_get_phandle(blob, offset)); |
Kumar Gala | b4b847e | 2010-07-09 16:18:58 -0500 | [diff] [blame] | 1388 | } |
| 1389 | |
| 1390 | return phandle + 1; |
| 1391 | } |
Anatolij Gustschin | beca5a5 | 2010-08-18 11:25:20 +0200 | [diff] [blame] | 1392 | |
Gerald Van Baren | a8d2a75 | 2011-07-14 21:40:10 -0400 | [diff] [blame] | 1393 | /* |
Kumar Gala | f117c0f | 2011-08-01 00:23:23 -0500 | [diff] [blame] | 1394 | * fdt_set_phandle: Create a phandle property for the given node |
Gerald Van Baren | a8d2a75 | 2011-07-14 21:40:10 -0400 | [diff] [blame] | 1395 | * |
| 1396 | * @fdt: ptr to device tree |
| 1397 | * @nodeoffset: node to update |
| 1398 | * @phandle: phandle value to set (must be unique) |
Kumar Gala | f117c0f | 2011-08-01 00:23:23 -0500 | [diff] [blame] | 1399 | */ |
| 1400 | int fdt_set_phandle(void *fdt, int nodeoffset, uint32_t phandle) |
Gerald Van Baren | a8d2a75 | 2011-07-14 21:40:10 -0400 | [diff] [blame] | 1401 | { |
| 1402 | int ret; |
| 1403 | |
| 1404 | #ifdef DEBUG |
| 1405 | int off = fdt_node_offset_by_phandle(fdt, phandle); |
| 1406 | |
| 1407 | if ((off >= 0) && (off != nodeoffset)) { |
| 1408 | char buf[64]; |
| 1409 | |
| 1410 | fdt_get_path(fdt, nodeoffset, buf, sizeof(buf)); |
| 1411 | printf("Trying to update node %s with phandle %u ", |
| 1412 | buf, phandle); |
| 1413 | |
| 1414 | fdt_get_path(fdt, off, buf, sizeof(buf)); |
| 1415 | printf("that already exists in node %s.\n", buf); |
| 1416 | return -FDT_ERR_BADPHANDLE; |
| 1417 | } |
| 1418 | #endif |
| 1419 | |
| 1420 | ret = fdt_setprop_cell(fdt, nodeoffset, "phandle", phandle); |
| 1421 | if (ret < 0) |
| 1422 | return ret; |
| 1423 | |
| 1424 | /* |
| 1425 | * For now, also set the deprecated "linux,phandle" property, so that we |
| 1426 | * don't break older kernels. |
| 1427 | */ |
| 1428 | ret = fdt_setprop_cell(fdt, nodeoffset, "linux,phandle", phandle); |
| 1429 | |
| 1430 | return ret; |
| 1431 | } |
| 1432 | |
Kumar Gala | 10aeabd | 2011-08-01 00:25:20 -0500 | [diff] [blame] | 1433 | /* |
| 1434 | * fdt_create_phandle: Create a phandle property for the given node |
| 1435 | * |
| 1436 | * @fdt: ptr to device tree |
| 1437 | * @nodeoffset: node to update |
| 1438 | */ |
Timur Tabi | 3c927cc | 2011-09-20 18:24:34 -0500 | [diff] [blame] | 1439 | unsigned int fdt_create_phandle(void *fdt, int nodeoffset) |
Kumar Gala | 10aeabd | 2011-08-01 00:25:20 -0500 | [diff] [blame] | 1440 | { |
| 1441 | /* see if there is a phandle already */ |
| 1442 | int phandle = fdt_get_phandle(fdt, nodeoffset); |
| 1443 | |
| 1444 | /* if we got 0, means no phandle so create one */ |
| 1445 | if (phandle == 0) { |
Timur Tabi | 3c927cc | 2011-09-20 18:24:34 -0500 | [diff] [blame] | 1446 | int ret; |
| 1447 | |
Kumar Gala | 10aeabd | 2011-08-01 00:25:20 -0500 | [diff] [blame] | 1448 | phandle = fdt_alloc_phandle(fdt); |
Timur Tabi | 3c927cc | 2011-09-20 18:24:34 -0500 | [diff] [blame] | 1449 | ret = fdt_set_phandle(fdt, nodeoffset, phandle); |
| 1450 | if (ret < 0) { |
| 1451 | printf("Can't set phandle %u: %s\n", phandle, |
| 1452 | fdt_strerror(ret)); |
| 1453 | return 0; |
| 1454 | } |
Kumar Gala | 10aeabd | 2011-08-01 00:25:20 -0500 | [diff] [blame] | 1455 | } |
| 1456 | |
| 1457 | return phandle; |
| 1458 | } |
| 1459 | |
Shengzhou Liu | 2a523f5 | 2011-10-14 16:26:05 +0800 | [diff] [blame] | 1460 | /* |
| 1461 | * fdt_set_node_status: Set status for the given node |
| 1462 | * |
| 1463 | * @fdt: ptr to device tree |
| 1464 | * @nodeoffset: node to update |
| 1465 | * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, |
| 1466 | * FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE |
| 1467 | * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE |
| 1468 | */ |
| 1469 | int fdt_set_node_status(void *fdt, int nodeoffset, |
| 1470 | enum fdt_status status, unsigned int error_code) |
| 1471 | { |
| 1472 | char buf[16]; |
| 1473 | int ret = 0; |
| 1474 | |
| 1475 | if (nodeoffset < 0) |
| 1476 | return nodeoffset; |
| 1477 | |
| 1478 | switch (status) { |
| 1479 | case FDT_STATUS_OKAY: |
| 1480 | ret = fdt_setprop_string(fdt, nodeoffset, "status", "okay"); |
| 1481 | break; |
| 1482 | case FDT_STATUS_DISABLED: |
| 1483 | ret = fdt_setprop_string(fdt, nodeoffset, "status", "disabled"); |
| 1484 | break; |
| 1485 | case FDT_STATUS_FAIL: |
| 1486 | ret = fdt_setprop_string(fdt, nodeoffset, "status", "fail"); |
| 1487 | break; |
| 1488 | case FDT_STATUS_FAIL_ERROR_CODE: |
| 1489 | sprintf(buf, "fail-%d", error_code); |
| 1490 | ret = fdt_setprop_string(fdt, nodeoffset, "status", buf); |
| 1491 | break; |
| 1492 | default: |
| 1493 | printf("Invalid fdt status: %x\n", status); |
| 1494 | ret = -1; |
| 1495 | break; |
| 1496 | } |
| 1497 | |
| 1498 | return ret; |
| 1499 | } |
| 1500 | |
| 1501 | /* |
| 1502 | * fdt_set_status_by_alias: Set status for the given node given an alias |
| 1503 | * |
| 1504 | * @fdt: ptr to device tree |
| 1505 | * @alias: alias of node to update |
| 1506 | * @status: FDT_STATUS_OKAY, FDT_STATUS_DISABLED, |
| 1507 | * FDT_STATUS_FAIL, FDT_STATUS_FAIL_ERROR_CODE |
| 1508 | * @error_code: optional, only used if status is FDT_STATUS_FAIL_ERROR_CODE |
| 1509 | */ |
| 1510 | int fdt_set_status_by_alias(void *fdt, const char* alias, |
| 1511 | enum fdt_status status, unsigned int error_code) |
| 1512 | { |
| 1513 | int offset = fdt_path_offset(fdt, alias); |
| 1514 | |
| 1515 | return fdt_set_node_status(fdt, offset, status, error_code); |
| 1516 | } |
| 1517 | |
Tom Wai-Hong Tam | 096eb3f | 2012-12-05 14:46:41 +0000 | [diff] [blame] | 1518 | #if defined(CONFIG_VIDEO) || defined(CONFIG_LCD) |
Anatolij Gustschin | beca5a5 | 2010-08-18 11:25:20 +0200 | [diff] [blame] | 1519 | int fdt_add_edid(void *blob, const char *compat, unsigned char *edid_buf) |
| 1520 | { |
| 1521 | int noff; |
| 1522 | int ret; |
| 1523 | |
| 1524 | noff = fdt_node_offset_by_compatible(blob, -1, compat); |
| 1525 | if (noff != -FDT_ERR_NOTFOUND) { |
| 1526 | debug("%s: %s\n", fdt_get_name(blob, noff, 0), compat); |
| 1527 | add_edid: |
| 1528 | ret = fdt_setprop(blob, noff, "edid", edid_buf, 128); |
| 1529 | if (ret == -FDT_ERR_NOSPACE) { |
| 1530 | ret = fdt_increase_size(blob, 512); |
| 1531 | if (!ret) |
| 1532 | goto add_edid; |
| 1533 | else |
| 1534 | goto err_size; |
| 1535 | } else if (ret < 0) { |
| 1536 | printf("Can't add property: %s\n", fdt_strerror(ret)); |
| 1537 | return ret; |
| 1538 | } |
| 1539 | } |
| 1540 | return 0; |
| 1541 | err_size: |
| 1542 | printf("Can't increase blob size: %s\n", fdt_strerror(ret)); |
| 1543 | return ret; |
| 1544 | } |
| 1545 | #endif |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1546 | |
| 1547 | /* |
| 1548 | * Verify the physical address of device tree node for a given alias |
| 1549 | * |
| 1550 | * This function locates the device tree node of a given alias, and then |
| 1551 | * verifies that the physical address of that device matches the given |
| 1552 | * parameter. It displays a message if there is a mismatch. |
| 1553 | * |
| 1554 | * Returns 1 on success, 0 on failure |
| 1555 | */ |
| 1556 | int fdt_verify_alias_address(void *fdt, int anode, const char *alias, u64 addr) |
| 1557 | { |
| 1558 | const char *path; |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1559 | const fdt32_t *reg; |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1560 | int node, len; |
| 1561 | u64 dt_addr; |
| 1562 | |
| 1563 | path = fdt_getprop(fdt, anode, alias, NULL); |
| 1564 | if (!path) { |
| 1565 | /* If there's no such alias, then it's not a failure */ |
| 1566 | return 1; |
| 1567 | } |
| 1568 | |
| 1569 | node = fdt_path_offset(fdt, path); |
| 1570 | if (node < 0) { |
| 1571 | printf("Warning: device tree alias '%s' points to invalid " |
| 1572 | "node %s.\n", alias, path); |
| 1573 | return 0; |
| 1574 | } |
| 1575 | |
| 1576 | reg = fdt_getprop(fdt, node, "reg", &len); |
| 1577 | if (!reg) { |
| 1578 | printf("Warning: device tree node '%s' has no address.\n", |
| 1579 | path); |
| 1580 | return 0; |
| 1581 | } |
| 1582 | |
| 1583 | dt_addr = fdt_translate_address(fdt, node, reg); |
| 1584 | if (addr != dt_addr) { |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1585 | printf("Warning: U-Boot configured device %s at address %llu,\n" |
| 1586 | "but the device tree has it address %llx.\n", |
| 1587 | alias, addr, dt_addr); |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1588 | return 0; |
| 1589 | } |
| 1590 | |
| 1591 | return 1; |
| 1592 | } |
| 1593 | |
| 1594 | /* |
| 1595 | * Returns the base address of an SOC or PCI node |
| 1596 | */ |
Simon Glass | ec00211 | 2017-05-18 20:09:00 -0600 | [diff] [blame] | 1597 | u64 fdt_get_base_address(const void *fdt, int node) |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1598 | { |
| 1599 | int size; |
Kim Phillips | 8aa5ec6 | 2013-01-16 14:00:11 +0000 | [diff] [blame] | 1600 | const fdt32_t *prop; |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1601 | |
Simon Glass | 336a448 | 2017-07-04 13:31:20 -0600 | [diff] [blame] | 1602 | prop = fdt_getprop(fdt, node, "reg", &size); |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1603 | |
Masahiro Yamada | e3665ba | 2019-06-27 16:39:57 +0900 | [diff] [blame] | 1604 | return prop ? fdt_translate_address(fdt, node, prop) : OF_BAD_ADDR; |
Timur Tabi | bb68200 | 2011-05-03 13:24:07 -0500 | [diff] [blame] | 1605 | } |
Alexander Graf | c48e686 | 2014-04-11 17:09:41 +0200 | [diff] [blame] | 1606 | |
| 1607 | /* |
| 1608 | * Read a property of size <prop_len>. Currently only supports 1 or 2 cells. |
| 1609 | */ |
| 1610 | static int fdt_read_prop(const fdt32_t *prop, int prop_len, int cell_off, |
| 1611 | uint64_t *val, int cells) |
| 1612 | { |
| 1613 | const fdt32_t *prop32 = &prop[cell_off]; |
Jean-Jacques Hiblot | d60ae4c | 2019-10-22 10:05:22 +0200 | [diff] [blame] | 1614 | const unaligned_fdt64_t *prop64 = (const fdt64_t *)&prop[cell_off]; |
Alexander Graf | c48e686 | 2014-04-11 17:09:41 +0200 | [diff] [blame] | 1615 | |
| 1616 | if ((cell_off + cells) > prop_len) |
| 1617 | return -FDT_ERR_NOSPACE; |
| 1618 | |
| 1619 | switch (cells) { |
| 1620 | case 1: |
| 1621 | *val = fdt32_to_cpu(*prop32); |
| 1622 | break; |
| 1623 | case 2: |
| 1624 | *val = fdt64_to_cpu(*prop64); |
| 1625 | break; |
| 1626 | default: |
| 1627 | return -FDT_ERR_NOSPACE; |
| 1628 | } |
| 1629 | |
| 1630 | return 0; |
| 1631 | } |
| 1632 | |
| 1633 | /** |
| 1634 | * fdt_read_range - Read a node's n'th range property |
| 1635 | * |
| 1636 | * @fdt: ptr to device tree |
| 1637 | * @node: offset of node |
| 1638 | * @n: range index |
| 1639 | * @child_addr: pointer to storage for the "child address" field |
| 1640 | * @addr: pointer to storage for the CPU view translated physical start |
| 1641 | * @len: pointer to storage for the range length |
| 1642 | * |
| 1643 | * Convenience function that reads and interprets a specific range out of |
| 1644 | * a number of the "ranges" property array. |
| 1645 | */ |
| 1646 | int fdt_read_range(void *fdt, int node, int n, uint64_t *child_addr, |
| 1647 | uint64_t *addr, uint64_t *len) |
| 1648 | { |
| 1649 | int pnode = fdt_parent_offset(fdt, node); |
| 1650 | const fdt32_t *ranges; |
| 1651 | int pacells; |
| 1652 | int acells; |
| 1653 | int scells; |
| 1654 | int ranges_len; |
| 1655 | int cell = 0; |
| 1656 | int r = 0; |
| 1657 | |
| 1658 | /* |
| 1659 | * The "ranges" property is an array of |
| 1660 | * { <child address> <parent address> <size in child address space> } |
| 1661 | * |
| 1662 | * All 3 elements can span a diffent number of cells. Fetch their size. |
| 1663 | */ |
| 1664 | pacells = fdt_getprop_u32_default_node(fdt, pnode, 0, "#address-cells", 1); |
| 1665 | acells = fdt_getprop_u32_default_node(fdt, node, 0, "#address-cells", 1); |
| 1666 | scells = fdt_getprop_u32_default_node(fdt, node, 0, "#size-cells", 1); |
| 1667 | |
| 1668 | /* Now try to get the ranges property */ |
| 1669 | ranges = fdt_getprop(fdt, node, "ranges", &ranges_len); |
| 1670 | if (!ranges) |
| 1671 | return -FDT_ERR_NOTFOUND; |
| 1672 | ranges_len /= sizeof(uint32_t); |
| 1673 | |
| 1674 | /* Jump to the n'th entry */ |
| 1675 | cell = n * (pacells + acells + scells); |
| 1676 | |
| 1677 | /* Read <child address> */ |
| 1678 | if (child_addr) { |
| 1679 | r = fdt_read_prop(ranges, ranges_len, cell, child_addr, |
| 1680 | acells); |
| 1681 | if (r) |
| 1682 | return r; |
| 1683 | } |
| 1684 | cell += acells; |
| 1685 | |
| 1686 | /* Read <parent address> */ |
| 1687 | if (addr) |
| 1688 | *addr = fdt_translate_address(fdt, node, ranges + cell); |
| 1689 | cell += pacells; |
| 1690 | |
| 1691 | /* Read <size in child address space> */ |
| 1692 | if (len) { |
| 1693 | r = fdt_read_prop(ranges, ranges_len, cell, len, scells); |
| 1694 | if (r) |
| 1695 | return r; |
| 1696 | } |
| 1697 | |
| 1698 | return 0; |
| 1699 | } |
Hans de Goede | d4f495a | 2014-11-17 15:29:11 +0100 | [diff] [blame] | 1700 | |
| 1701 | /** |
| 1702 | * fdt_setup_simplefb_node - Fill and enable a simplefb node |
| 1703 | * |
| 1704 | * @fdt: ptr to device tree |
| 1705 | * @node: offset of the simplefb node |
| 1706 | * @base_address: framebuffer base address |
| 1707 | * @width: width in pixels |
| 1708 | * @height: height in pixels |
| 1709 | * @stride: bytes per line |
| 1710 | * @format: pixel format string |
| 1711 | * |
| 1712 | * Convenience function to fill and enable a simplefb node. |
| 1713 | */ |
| 1714 | int fdt_setup_simplefb_node(void *fdt, int node, u64 base_address, u32 width, |
| 1715 | u32 height, u32 stride, const char *format) |
| 1716 | { |
| 1717 | char name[32]; |
| 1718 | fdt32_t cells[4]; |
| 1719 | int i, addrc, sizec, ret; |
| 1720 | |
Simon Glass | eed3660 | 2017-05-18 20:09:26 -0600 | [diff] [blame] | 1721 | fdt_support_default_count_cells(fdt, fdt_parent_offset(fdt, node), |
| 1722 | &addrc, &sizec); |
Hans de Goede | d4f495a | 2014-11-17 15:29:11 +0100 | [diff] [blame] | 1723 | i = 0; |
| 1724 | if (addrc == 2) |
| 1725 | cells[i++] = cpu_to_fdt32(base_address >> 32); |
| 1726 | cells[i++] = cpu_to_fdt32(base_address); |
| 1727 | if (sizec == 2) |
| 1728 | cells[i++] = 0; |
| 1729 | cells[i++] = cpu_to_fdt32(height * stride); |
| 1730 | |
| 1731 | ret = fdt_setprop(fdt, node, "reg", cells, sizeof(cells[0]) * i); |
| 1732 | if (ret < 0) |
| 1733 | return ret; |
| 1734 | |
Masahiro Yamada | dee37fc | 2018-08-06 20:47:40 +0900 | [diff] [blame] | 1735 | snprintf(name, sizeof(name), "framebuffer@%llx", base_address); |
Hans de Goede | d4f495a | 2014-11-17 15:29:11 +0100 | [diff] [blame] | 1736 | ret = fdt_set_name(fdt, node, name); |
| 1737 | if (ret < 0) |
| 1738 | return ret; |
| 1739 | |
| 1740 | ret = fdt_setprop_u32(fdt, node, "width", width); |
| 1741 | if (ret < 0) |
| 1742 | return ret; |
| 1743 | |
| 1744 | ret = fdt_setprop_u32(fdt, node, "height", height); |
| 1745 | if (ret < 0) |
| 1746 | return ret; |
| 1747 | |
| 1748 | ret = fdt_setprop_u32(fdt, node, "stride", stride); |
| 1749 | if (ret < 0) |
| 1750 | return ret; |
| 1751 | |
| 1752 | ret = fdt_setprop_string(fdt, node, "format", format); |
| 1753 | if (ret < 0) |
| 1754 | return ret; |
| 1755 | |
| 1756 | ret = fdt_setprop_string(fdt, node, "status", "okay"); |
| 1757 | if (ret < 0) |
| 1758 | return ret; |
| 1759 | |
| 1760 | return 0; |
| 1761 | } |
Tim Harvey | 08daa25 | 2015-04-08 11:45:39 -0700 | [diff] [blame] | 1762 | |
| 1763 | /* |
| 1764 | * Update native-mode in display-timings from display environment variable. |
| 1765 | * The node to update are specified by path. |
| 1766 | */ |
| 1767 | int fdt_fixup_display(void *blob, const char *path, const char *display) |
| 1768 | { |
| 1769 | int off, toff; |
| 1770 | |
| 1771 | if (!display || !path) |
| 1772 | return -FDT_ERR_NOTFOUND; |
| 1773 | |
| 1774 | toff = fdt_path_offset(blob, path); |
| 1775 | if (toff >= 0) |
| 1776 | toff = fdt_subnode_offset(blob, toff, "display-timings"); |
| 1777 | if (toff < 0) |
| 1778 | return toff; |
| 1779 | |
| 1780 | for (off = fdt_first_subnode(blob, toff); |
| 1781 | off >= 0; |
| 1782 | off = fdt_next_subnode(blob, off)) { |
| 1783 | uint32_t h = fdt_get_phandle(blob, off); |
| 1784 | debug("%s:0x%x\n", fdt_get_name(blob, off, NULL), |
| 1785 | fdt32_to_cpu(h)); |
| 1786 | if (strcasecmp(fdt_get_name(blob, off, NULL), display) == 0) |
| 1787 | return fdt_setprop_u32(blob, toff, "native-mode", h); |
| 1788 | } |
| 1789 | return toff; |
| 1790 | } |
Pantelis Antoniou | fc7c318 | 2017-09-04 23:12:11 +0300 | [diff] [blame] | 1791 | |
| 1792 | #ifdef CONFIG_OF_LIBFDT_OVERLAY |
| 1793 | /** |
| 1794 | * fdt_overlay_apply_verbose - Apply an overlay with verbose error reporting |
| 1795 | * |
| 1796 | * @fdt: ptr to device tree |
| 1797 | * @fdto: ptr to device tree overlay |
| 1798 | * |
| 1799 | * Convenience function to apply an overlay and display helpful messages |
| 1800 | * in the case of an error |
| 1801 | */ |
| 1802 | int fdt_overlay_apply_verbose(void *fdt, void *fdto) |
| 1803 | { |
| 1804 | int err; |
| 1805 | bool has_symbols; |
| 1806 | |
| 1807 | err = fdt_path_offset(fdt, "/__symbols__"); |
| 1808 | has_symbols = err >= 0; |
| 1809 | |
| 1810 | err = fdt_overlay_apply(fdt, fdto); |
| 1811 | if (err < 0) { |
| 1812 | printf("failed on fdt_overlay_apply(): %s\n", |
| 1813 | fdt_strerror(err)); |
| 1814 | if (!has_symbols) { |
| 1815 | printf("base fdt does did not have a /__symbols__ node\n"); |
| 1816 | printf("make sure you've compiled with -@\n"); |
| 1817 | } |
| 1818 | } |
| 1819 | return err; |
| 1820 | } |
| 1821 | #endif |