Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2017 Google, Inc |
| 3 | * Written by Simon Glass <sjg@chromium.org> |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <dm.h> |
| 10 | #include <fdtdec.h> |
| 11 | #include <fdt_support.h> |
| 12 | #include <libfdt.h> |
| 13 | #include <dm/of_access.h> |
Simon Glass | 049ae1b | 2017-05-18 20:09:01 -0600 | [diff] [blame] | 14 | #include <dm/of_addr.h> |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 15 | #include <dm/ofnode.h> |
| 16 | #include <linux/err.h> |
Simon Glass | f7bfcc4 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 17 | #include <linux/ioport.h> |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 18 | |
| 19 | int ofnode_read_u32(ofnode node, const char *propname, u32 *outp) |
| 20 | { |
| 21 | assert(ofnode_valid(node)); |
| 22 | debug("%s: %s: ", __func__, propname); |
| 23 | |
| 24 | if (ofnode_is_np(node)) { |
| 25 | return of_read_u32(ofnode_to_np(node), propname, outp); |
| 26 | } else { |
Masahiro Yamada | 5c5991e | 2017-06-22 17:57:50 +0900 | [diff] [blame] | 27 | const fdt32_t *cell; |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 28 | int len; |
| 29 | |
| 30 | cell = fdt_getprop(gd->fdt_blob, ofnode_to_offset(node), |
| 31 | propname, &len); |
| 32 | if (!cell || len < sizeof(int)) { |
| 33 | debug("(not found)\n"); |
| 34 | return -EINVAL; |
| 35 | } |
| 36 | *outp = fdt32_to_cpu(cell[0]); |
| 37 | } |
| 38 | debug("%#x (%d)\n", *outp, *outp); |
| 39 | |
| 40 | return 0; |
| 41 | } |
| 42 | |
| 43 | int ofnode_read_u32_default(ofnode node, const char *propname, u32 def) |
| 44 | { |
| 45 | assert(ofnode_valid(node)); |
| 46 | ofnode_read_u32(node, propname, &def); |
| 47 | |
| 48 | return def; |
| 49 | } |
| 50 | |
| 51 | int ofnode_read_s32_default(ofnode node, const char *propname, s32 def) |
| 52 | { |
| 53 | assert(ofnode_valid(node)); |
| 54 | ofnode_read_u32(node, propname, (u32 *)&def); |
| 55 | |
| 56 | return def; |
| 57 | } |
| 58 | |
| 59 | bool ofnode_read_bool(ofnode node, const char *propname) |
| 60 | { |
Masahiro Yamada | 5d43445 | 2017-06-22 16:54:07 +0900 | [diff] [blame] | 61 | const void *prop; |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 62 | |
| 63 | assert(ofnode_valid(node)); |
| 64 | debug("%s: %s: ", __func__, propname); |
| 65 | |
Masahiro Yamada | 5d43445 | 2017-06-22 16:54:07 +0900 | [diff] [blame] | 66 | prop = ofnode_get_property(node, propname, NULL); |
| 67 | |
| 68 | debug("%s\n", prop ? "true" : "false"); |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 69 | |
Masahiro Yamada | 5d43445 | 2017-06-22 16:54:07 +0900 | [diff] [blame] | 70 | return prop ? true : false; |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | const char *ofnode_read_string(ofnode node, const char *propname) |
| 74 | { |
| 75 | const char *str = NULL; |
| 76 | int len = -1; |
| 77 | |
| 78 | assert(ofnode_valid(node)); |
| 79 | debug("%s: %s: ", __func__, propname); |
| 80 | |
| 81 | if (ofnode_is_np(node)) { |
| 82 | struct property *prop = of_find_property( |
| 83 | ofnode_to_np(node), propname, NULL); |
| 84 | |
| 85 | if (prop) { |
| 86 | str = prop->value; |
| 87 | len = prop->length; |
| 88 | } |
| 89 | } else { |
| 90 | str = fdt_getprop(gd->fdt_blob, ofnode_to_offset(node), |
| 91 | propname, &len); |
| 92 | } |
| 93 | if (!str) { |
| 94 | debug("<not found>\n"); |
| 95 | return NULL; |
| 96 | } |
| 97 | if (strnlen(str, len) >= len) { |
| 98 | debug("<invalid>\n"); |
| 99 | return NULL; |
| 100 | } |
| 101 | debug("%s\n", str); |
| 102 | |
| 103 | return str; |
| 104 | } |
| 105 | |
| 106 | ofnode ofnode_find_subnode(ofnode node, const char *subnode_name) |
| 107 | { |
| 108 | ofnode subnode; |
| 109 | |
| 110 | assert(ofnode_valid(node)); |
| 111 | debug("%s: %s: ", __func__, subnode_name); |
| 112 | |
| 113 | if (ofnode_is_np(node)) { |
| 114 | const struct device_node *np = ofnode_to_np(node); |
| 115 | |
| 116 | for (np = np->child; np; np = np->sibling) { |
| 117 | if (!strcmp(subnode_name, np->name)) |
| 118 | break; |
| 119 | } |
| 120 | subnode = np_to_ofnode(np); |
| 121 | } else { |
| 122 | int ooffset = fdt_subnode_offset(gd->fdt_blob, |
| 123 | ofnode_to_offset(node), subnode_name); |
| 124 | subnode = offset_to_ofnode(ooffset); |
| 125 | } |
| 126 | debug("%s\n", ofnode_valid(subnode) ? |
| 127 | ofnode_get_name(subnode) : "<none>"); |
| 128 | |
| 129 | return subnode; |
| 130 | } |
| 131 | |
| 132 | int ofnode_read_u32_array(ofnode node, const char *propname, |
| 133 | u32 *out_values, size_t sz) |
| 134 | { |
| 135 | assert(ofnode_valid(node)); |
| 136 | debug("%s: %s: ", __func__, propname); |
| 137 | |
| 138 | if (ofnode_is_np(node)) { |
| 139 | return of_read_u32_array(ofnode_to_np(node), propname, |
| 140 | out_values, sz); |
| 141 | } else { |
| 142 | return fdtdec_get_int_array(gd->fdt_blob, |
| 143 | ofnode_to_offset(node), propname, |
| 144 | out_values, sz); |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | ofnode ofnode_first_subnode(ofnode node) |
| 149 | { |
| 150 | assert(ofnode_valid(node)); |
| 151 | if (ofnode_is_np(node)) |
| 152 | return np_to_ofnode(node.np->child); |
| 153 | |
| 154 | return offset_to_ofnode( |
| 155 | fdt_first_subnode(gd->fdt_blob, ofnode_to_offset(node))); |
| 156 | } |
| 157 | |
| 158 | ofnode ofnode_next_subnode(ofnode node) |
| 159 | { |
| 160 | assert(ofnode_valid(node)); |
| 161 | if (ofnode_is_np(node)) |
| 162 | return np_to_ofnode(node.np->sibling); |
| 163 | |
| 164 | return offset_to_ofnode( |
| 165 | fdt_next_subnode(gd->fdt_blob, ofnode_to_offset(node))); |
| 166 | } |
| 167 | |
| 168 | const char *ofnode_get_name(ofnode node) |
| 169 | { |
| 170 | assert(ofnode_valid(node)); |
| 171 | if (ofnode_is_np(node)) |
| 172 | return strrchr(node.np->full_name, '/') + 1; |
| 173 | |
| 174 | return fdt_get_name(gd->fdt_blob, ofnode_to_offset(node), NULL); |
| 175 | } |
| 176 | |
| 177 | int ofnode_read_size(ofnode node, const char *propname) |
| 178 | { |
| 179 | int len; |
| 180 | |
| 181 | if (ofnode_is_np(node)) { |
| 182 | struct property *prop = of_find_property( |
| 183 | ofnode_to_np(node), propname, NULL); |
| 184 | |
| 185 | if (prop) |
| 186 | return prop->length; |
| 187 | } else { |
| 188 | if (fdt_getprop(gd->fdt_blob, ofnode_to_offset(node), propname, |
| 189 | &len)) |
| 190 | return len; |
| 191 | } |
| 192 | |
| 193 | return -EINVAL; |
| 194 | } |
| 195 | |
Simon Glass | 049ae1b | 2017-05-18 20:09:01 -0600 | [diff] [blame] | 196 | fdt_addr_t ofnode_get_addr_index(ofnode node, int index) |
| 197 | { |
| 198 | if (ofnode_is_np(node)) { |
| 199 | const __be32 *prop_val; |
| 200 | uint flags; |
| 201 | u64 size; |
Simon Glass | 76a6666 | 2017-07-25 08:29:56 -0600 | [diff] [blame] | 202 | int na; |
Simon Glass | 049ae1b | 2017-05-18 20:09:01 -0600 | [diff] [blame] | 203 | |
Simon Glass | 76a6666 | 2017-07-25 08:29:56 -0600 | [diff] [blame] | 204 | prop_val = of_get_address(ofnode_to_np(node), index, &size, |
| 205 | &flags); |
Simon Glass | 049ae1b | 2017-05-18 20:09:01 -0600 | [diff] [blame] | 206 | if (!prop_val) |
| 207 | return FDT_ADDR_T_NONE; |
Mario Six | d007ebc | 2017-12-20 09:52:12 +0100 | [diff] [blame] | 208 | |
| 209 | if (IS_ENABLED(CONFIG_OF_TRANSLATE)) { |
| 210 | return of_translate_address(ofnode_to_np(node), prop_val); |
| 211 | } else { |
| 212 | na = of_n_addr_cells(ofnode_to_np(node)); |
| 213 | return of_read_number(prop_val, na); |
| 214 | } |
Simon Glass | 049ae1b | 2017-05-18 20:09:01 -0600 | [diff] [blame] | 215 | } else { |
| 216 | return fdt_get_base_address(gd->fdt_blob, |
| 217 | ofnode_to_offset(node)); |
| 218 | } |
| 219 | |
| 220 | return FDT_ADDR_T_NONE; |
| 221 | } |
| 222 | |
| 223 | fdt_addr_t ofnode_get_addr(ofnode node) |
| 224 | { |
| 225 | return ofnode_get_addr_index(node, 0); |
| 226 | } |
| 227 | |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 228 | int ofnode_stringlist_search(ofnode node, const char *property, |
| 229 | const char *string) |
| 230 | { |
| 231 | if (ofnode_is_np(node)) { |
| 232 | return of_property_match_string(ofnode_to_np(node), |
| 233 | property, string); |
| 234 | } else { |
| 235 | int ret; |
| 236 | |
| 237 | ret = fdt_stringlist_search(gd->fdt_blob, |
| 238 | ofnode_to_offset(node), property, |
| 239 | string); |
| 240 | if (ret == -FDT_ERR_NOTFOUND) |
| 241 | return -ENODATA; |
| 242 | else if (ret < 0) |
| 243 | return -EINVAL; |
| 244 | |
| 245 | return ret; |
| 246 | } |
| 247 | } |
| 248 | |
| 249 | int ofnode_read_string_index(ofnode node, const char *property, int index, |
| 250 | const char **outp) |
| 251 | { |
| 252 | if (ofnode_is_np(node)) { |
| 253 | return of_property_read_string_index(ofnode_to_np(node), |
| 254 | property, index, outp); |
| 255 | } else { |
| 256 | int len; |
| 257 | |
| 258 | *outp = fdt_stringlist_get(gd->fdt_blob, ofnode_to_offset(node), |
| 259 | property, index, &len); |
| 260 | if (len < 0) |
| 261 | return -EINVAL; |
| 262 | return 0; |
| 263 | } |
| 264 | } |
| 265 | |
Simon Glass | 5fdb005 | 2017-06-12 06:21:28 -0600 | [diff] [blame] | 266 | int ofnode_read_string_count(ofnode node, const char *property) |
| 267 | { |
| 268 | if (ofnode_is_np(node)) { |
| 269 | return of_property_count_strings(ofnode_to_np(node), property); |
| 270 | } else { |
| 271 | return fdt_stringlist_count(gd->fdt_blob, |
| 272 | ofnode_to_offset(node), property); |
| 273 | } |
| 274 | } |
| 275 | |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 276 | static void ofnode_from_fdtdec_phandle_args(struct fdtdec_phandle_args *in, |
| 277 | struct ofnode_phandle_args *out) |
| 278 | { |
| 279 | assert(OF_MAX_PHANDLE_ARGS == MAX_PHANDLE_ARGS); |
| 280 | out->node = offset_to_ofnode(in->node); |
| 281 | out->args_count = in->args_count; |
| 282 | memcpy(out->args, in->args, sizeof(out->args)); |
| 283 | } |
| 284 | |
| 285 | static void ofnode_from_of_phandle_args(struct of_phandle_args *in, |
| 286 | struct ofnode_phandle_args *out) |
| 287 | { |
| 288 | assert(OF_MAX_PHANDLE_ARGS == MAX_PHANDLE_ARGS); |
| 289 | out->node = np_to_ofnode(in->np); |
| 290 | out->args_count = in->args_count; |
| 291 | memcpy(out->args, in->args, sizeof(out->args)); |
| 292 | } |
| 293 | |
| 294 | int ofnode_parse_phandle_with_args(ofnode node, const char *list_name, |
| 295 | const char *cells_name, int cell_count, |
| 296 | int index, |
| 297 | struct ofnode_phandle_args *out_args) |
| 298 | { |
| 299 | if (ofnode_is_np(node)) { |
| 300 | struct of_phandle_args args; |
| 301 | int ret; |
| 302 | |
| 303 | ret = of_parse_phandle_with_args(ofnode_to_np(node), |
| 304 | list_name, cells_name, index, &args); |
| 305 | if (ret) |
| 306 | return ret; |
| 307 | ofnode_from_of_phandle_args(&args, out_args); |
| 308 | } else { |
| 309 | struct fdtdec_phandle_args args; |
| 310 | int ret; |
| 311 | |
| 312 | ret = fdtdec_parse_phandle_with_args(gd->fdt_blob, |
| 313 | ofnode_to_offset(node), list_name, cells_name, |
| 314 | cell_count, index, &args); |
| 315 | if (ret) |
| 316 | return ret; |
| 317 | ofnode_from_fdtdec_phandle_args(&args, out_args); |
| 318 | } |
| 319 | |
| 320 | return 0; |
| 321 | } |
| 322 | |
Patrice Chotard | be7dd60 | 2017-07-18 11:57:08 +0200 | [diff] [blame] | 323 | int ofnode_count_phandle_with_args(ofnode node, const char *list_name, |
| 324 | const char *cells_name) |
| 325 | { |
| 326 | if (ofnode_is_np(node)) |
| 327 | return of_count_phandle_with_args(ofnode_to_np(node), |
| 328 | list_name, cells_name); |
| 329 | else |
| 330 | return fdtdec_parse_phandle_with_args(gd->fdt_blob, |
| 331 | ofnode_to_offset(node), list_name, cells_name, |
| 332 | 0, -1, NULL); |
| 333 | } |
| 334 | |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 335 | ofnode ofnode_path(const char *path) |
| 336 | { |
| 337 | if (of_live_active()) |
| 338 | return np_to_ofnode(of_find_node_by_path(path)); |
| 339 | else |
| 340 | return offset_to_ofnode(fdt_path_offset(gd->fdt_blob, path)); |
| 341 | } |
| 342 | |
| 343 | const char *ofnode_get_chosen_prop(const char *name) |
| 344 | { |
| 345 | ofnode chosen_node; |
| 346 | |
| 347 | chosen_node = ofnode_path("/chosen"); |
| 348 | |
| 349 | return ofnode_read_string(chosen_node, name); |
| 350 | } |
| 351 | |
| 352 | ofnode ofnode_get_chosen_node(const char *name) |
| 353 | { |
| 354 | const char *prop; |
| 355 | |
| 356 | prop = ofnode_get_chosen_prop(name); |
| 357 | if (!prop) |
| 358 | return ofnode_null(); |
| 359 | |
| 360 | return ofnode_path(prop); |
| 361 | } |
| 362 | |
| 363 | static int decode_timing_property(ofnode node, const char *name, |
| 364 | struct timing_entry *result) |
| 365 | { |
| 366 | int length, ret = 0; |
| 367 | |
| 368 | length = ofnode_read_size(node, name); |
| 369 | if (length < 0) { |
| 370 | debug("%s: could not find property %s\n", |
| 371 | ofnode_get_name(node), name); |
| 372 | return length; |
| 373 | } |
| 374 | |
| 375 | if (length == sizeof(u32)) { |
| 376 | result->typ = ofnode_read_u32_default(node, name, 0); |
| 377 | result->min = result->typ; |
| 378 | result->max = result->typ; |
| 379 | } else { |
| 380 | ret = ofnode_read_u32_array(node, name, &result->min, 3); |
| 381 | } |
| 382 | |
| 383 | return ret; |
| 384 | } |
| 385 | |
| 386 | int ofnode_decode_display_timing(ofnode parent, int index, |
| 387 | struct display_timing *dt) |
| 388 | { |
| 389 | int i; |
| 390 | ofnode timings, node; |
| 391 | u32 val = 0; |
| 392 | int ret = 0; |
| 393 | |
| 394 | timings = ofnode_find_subnode(parent, "display-timings"); |
| 395 | if (!ofnode_valid(timings)) |
| 396 | return -EINVAL; |
| 397 | |
Simon Glass | 2852976 | 2017-08-05 15:45:54 -0600 | [diff] [blame] | 398 | i = 0; |
| 399 | ofnode_for_each_subnode(node, timings) { |
| 400 | if (i++ == index) |
| 401 | break; |
| 402 | } |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 403 | |
| 404 | if (!ofnode_valid(node)) |
| 405 | return -EINVAL; |
| 406 | |
| 407 | memset(dt, 0, sizeof(*dt)); |
| 408 | |
| 409 | ret |= decode_timing_property(node, "hback-porch", &dt->hback_porch); |
| 410 | ret |= decode_timing_property(node, "hfront-porch", &dt->hfront_porch); |
| 411 | ret |= decode_timing_property(node, "hactive", &dt->hactive); |
| 412 | ret |= decode_timing_property(node, "hsync-len", &dt->hsync_len); |
| 413 | ret |= decode_timing_property(node, "vback-porch", &dt->vback_porch); |
| 414 | ret |= decode_timing_property(node, "vfront-porch", &dt->vfront_porch); |
| 415 | ret |= decode_timing_property(node, "vactive", &dt->vactive); |
| 416 | ret |= decode_timing_property(node, "vsync-len", &dt->vsync_len); |
| 417 | ret |= decode_timing_property(node, "clock-frequency", &dt->pixelclock); |
| 418 | |
| 419 | dt->flags = 0; |
| 420 | val = ofnode_read_u32_default(node, "vsync-active", -1); |
| 421 | if (val != -1) { |
| 422 | dt->flags |= val ? DISPLAY_FLAGS_VSYNC_HIGH : |
| 423 | DISPLAY_FLAGS_VSYNC_LOW; |
| 424 | } |
| 425 | val = ofnode_read_u32_default(node, "hsync-active", -1); |
| 426 | if (val != -1) { |
| 427 | dt->flags |= val ? DISPLAY_FLAGS_HSYNC_HIGH : |
| 428 | DISPLAY_FLAGS_HSYNC_LOW; |
| 429 | } |
| 430 | val = ofnode_read_u32_default(node, "de-active", -1); |
| 431 | if (val != -1) { |
| 432 | dt->flags |= val ? DISPLAY_FLAGS_DE_HIGH : |
| 433 | DISPLAY_FLAGS_DE_LOW; |
| 434 | } |
| 435 | val = ofnode_read_u32_default(node, "pixelclk-active", -1); |
| 436 | if (val != -1) { |
| 437 | dt->flags |= val ? DISPLAY_FLAGS_PIXDATA_POSEDGE : |
| 438 | DISPLAY_FLAGS_PIXDATA_NEGEDGE; |
| 439 | } |
| 440 | |
| 441 | if (ofnode_read_bool(node, "interlaced")) |
| 442 | dt->flags |= DISPLAY_FLAGS_INTERLACED; |
| 443 | if (ofnode_read_bool(node, "doublescan")) |
| 444 | dt->flags |= DISPLAY_FLAGS_DOUBLESCAN; |
| 445 | if (ofnode_read_bool(node, "doubleclk")) |
| 446 | dt->flags |= DISPLAY_FLAGS_DOUBLECLK; |
| 447 | |
| 448 | return ret; |
| 449 | } |
| 450 | |
Masahiro Yamada | 9cf85cb | 2017-06-22 16:54:05 +0900 | [diff] [blame] | 451 | const void *ofnode_get_property(ofnode node, const char *propname, int *lenp) |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 452 | { |
Masahiro Yamada | 5052f1b | 2017-06-22 16:54:04 +0900 | [diff] [blame] | 453 | if (ofnode_is_np(node)) |
| 454 | return of_get_property(ofnode_to_np(node), propname, lenp); |
| 455 | else |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 456 | return fdt_getprop(gd->fdt_blob, ofnode_to_offset(node), |
| 457 | propname, lenp); |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 458 | } |
| 459 | |
| 460 | bool ofnode_is_available(ofnode node) |
| 461 | { |
| 462 | if (ofnode_is_np(node)) |
| 463 | return of_device_is_available(ofnode_to_np(node)); |
| 464 | else |
| 465 | return fdtdec_get_is_enabled(gd->fdt_blob, |
| 466 | ofnode_to_offset(node)); |
| 467 | } |
| 468 | |
| 469 | fdt_addr_t ofnode_get_addr_size(ofnode node, const char *property, |
| 470 | fdt_size_t *sizep) |
| 471 | { |
| 472 | if (ofnode_is_np(node)) { |
| 473 | int na, ns; |
| 474 | int psize; |
| 475 | const struct device_node *np = ofnode_to_np(node); |
Klaus Goger | af4b021 | 2017-09-20 13:50:41 +0200 | [diff] [blame] | 476 | const __be32 *prop = of_get_property(np, property, &psize); |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 477 | |
Klaus Goger | af4b021 | 2017-09-20 13:50:41 +0200 | [diff] [blame] | 478 | if (!prop) |
| 479 | return FDT_ADDR_T_NONE; |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 480 | na = of_n_addr_cells(np); |
| 481 | ns = of_n_addr_cells(np); |
Simon Glass | a67cc63 | 2017-05-18 20:09:27 -0600 | [diff] [blame] | 482 | *sizep = of_read_number(prop + na, ns); |
| 483 | return of_read_number(prop, na); |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 484 | } else { |
| 485 | return fdtdec_get_addr_size(gd->fdt_blob, |
| 486 | ofnode_to_offset(node), property, |
| 487 | sizep); |
| 488 | } |
| 489 | } |
| 490 | |
| 491 | const uint8_t *ofnode_read_u8_array_ptr(ofnode node, const char *propname, |
| 492 | size_t sz) |
| 493 | { |
| 494 | if (ofnode_is_np(node)) { |
| 495 | const struct device_node *np = ofnode_to_np(node); |
| 496 | int psize; |
| 497 | const __be32 *prop = of_get_property(np, propname, &psize); |
| 498 | |
| 499 | if (!prop || sz != psize) |
| 500 | return NULL; |
| 501 | return (uint8_t *)prop; |
| 502 | |
| 503 | } else { |
| 504 | return fdtdec_locate_byte_array(gd->fdt_blob, |
| 505 | ofnode_to_offset(node), propname, sz); |
| 506 | } |
| 507 | } |
| 508 | |
| 509 | int ofnode_read_pci_addr(ofnode node, enum fdt_pci_space type, |
| 510 | const char *propname, struct fdt_pci_addr *addr) |
| 511 | { |
Masahiro Yamada | 5c5991e | 2017-06-22 17:57:50 +0900 | [diff] [blame] | 512 | const fdt32_t *cell; |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 513 | int len; |
| 514 | int ret = -ENOENT; |
| 515 | |
| 516 | debug("%s: %s: ", __func__, propname); |
| 517 | |
| 518 | /* |
| 519 | * If we follow the pci bus bindings strictly, we should check |
| 520 | * the value of the node's parent node's #address-cells and |
| 521 | * #size-cells. They need to be 3 and 2 accordingly. However, |
| 522 | * for simplicity we skip the check here. |
| 523 | */ |
Masahiro Yamada | 9cf85cb | 2017-06-22 16:54:05 +0900 | [diff] [blame] | 524 | cell = ofnode_get_property(node, propname, &len); |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 525 | if (!cell) |
| 526 | goto fail; |
| 527 | |
| 528 | if ((len % FDT_PCI_REG_SIZE) == 0) { |
| 529 | int num = len / FDT_PCI_REG_SIZE; |
| 530 | int i; |
| 531 | |
| 532 | for (i = 0; i < num; i++) { |
| 533 | debug("pci address #%d: %08lx %08lx %08lx\n", i, |
| 534 | (ulong)fdt32_to_cpu(cell[0]), |
| 535 | (ulong)fdt32_to_cpu(cell[1]), |
| 536 | (ulong)fdt32_to_cpu(cell[2])); |
| 537 | if ((fdt32_to_cpu(*cell) & type) == type) { |
| 538 | addr->phys_hi = fdt32_to_cpu(cell[0]); |
| 539 | addr->phys_mid = fdt32_to_cpu(cell[1]); |
| 540 | addr->phys_lo = fdt32_to_cpu(cell[1]); |
| 541 | break; |
| 542 | } else { |
| 543 | cell += (FDT_PCI_ADDR_CELLS + |
| 544 | FDT_PCI_SIZE_CELLS); |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | if (i == num) { |
| 549 | ret = -ENXIO; |
| 550 | goto fail; |
| 551 | } |
| 552 | |
| 553 | return 0; |
| 554 | } else { |
| 555 | ret = -EINVAL; |
| 556 | } |
| 557 | |
| 558 | fail: |
| 559 | debug("(not found)\n"); |
| 560 | return ret; |
| 561 | } |
| 562 | |
| 563 | int ofnode_read_addr_cells(ofnode node) |
| 564 | { |
| 565 | if (ofnode_is_np(node)) |
| 566 | return of_n_addr_cells(ofnode_to_np(node)); |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 567 | else /* NOTE: this call should walk up the parent stack */ |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 568 | return fdt_address_cells(gd->fdt_blob, ofnode_to_offset(node)); |
| 569 | } |
| 570 | |
| 571 | int ofnode_read_size_cells(ofnode node) |
| 572 | { |
| 573 | if (ofnode_is_np(node)) |
| 574 | return of_n_size_cells(ofnode_to_np(node)); |
Simon Glass | 4191dc1 | 2017-06-12 06:21:31 -0600 | [diff] [blame] | 575 | else /* NOTE: this call should walk up the parent stack */ |
| 576 | return fdt_size_cells(gd->fdt_blob, ofnode_to_offset(node)); |
| 577 | } |
| 578 | |
| 579 | int ofnode_read_simple_addr_cells(ofnode node) |
| 580 | { |
| 581 | if (ofnode_is_np(node)) |
| 582 | return of_simple_addr_cells(ofnode_to_np(node)); |
| 583 | else |
| 584 | return fdt_address_cells(gd->fdt_blob, ofnode_to_offset(node)); |
| 585 | } |
| 586 | |
| 587 | int ofnode_read_simple_size_cells(ofnode node) |
| 588 | { |
| 589 | if (ofnode_is_np(node)) |
| 590 | return of_simple_size_cells(ofnode_to_np(node)); |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 591 | else |
| 592 | return fdt_size_cells(gd->fdt_blob, ofnode_to_offset(node)); |
| 593 | } |
| 594 | |
| 595 | bool ofnode_pre_reloc(ofnode node) |
| 596 | { |
Masahiro Yamada | 6a61dd9 | 2017-06-22 16:54:03 +0900 | [diff] [blame] | 597 | if (ofnode_read_bool(node, "u-boot,dm-pre-reloc")) |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 598 | return true; |
| 599 | |
| 600 | #ifdef CONFIG_TPL_BUILD |
Masahiro Yamada | 6a61dd9 | 2017-06-22 16:54:03 +0900 | [diff] [blame] | 601 | if (ofnode_read_bool(node, "u-boot,dm-tpl")) |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 602 | return true; |
| 603 | #elif defined(CONFIG_SPL_BUILD) |
Masahiro Yamada | 6a61dd9 | 2017-06-22 16:54:03 +0900 | [diff] [blame] | 604 | if (ofnode_read_bool(node, "u-boot,dm-spl")) |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 605 | return true; |
| 606 | #else |
| 607 | /* |
| 608 | * In regular builds individual spl and tpl handling both |
| 609 | * count as handled pre-relocation for later second init. |
| 610 | */ |
Masahiro Yamada | 6a61dd9 | 2017-06-22 16:54:03 +0900 | [diff] [blame] | 611 | if (ofnode_read_bool(node, "u-boot,dm-spl") || |
| 612 | ofnode_read_bool(node, "u-boot,dm-tpl")) |
Simon Glass | c4fc562 | 2017-05-18 20:08:58 -0600 | [diff] [blame] | 613 | return true; |
| 614 | #endif |
| 615 | |
| 616 | return false; |
| 617 | } |
Simon Glass | f7bfcc4 | 2017-07-25 08:29:55 -0600 | [diff] [blame] | 618 | |
| 619 | int ofnode_read_resource(ofnode node, uint index, struct resource *res) |
| 620 | { |
| 621 | if (ofnode_is_np(node)) { |
| 622 | return of_address_to_resource(ofnode_to_np(node), index, res); |
| 623 | } else { |
| 624 | struct fdt_resource fres; |
| 625 | int ret; |
| 626 | |
| 627 | ret = fdt_get_resource(gd->fdt_blob, ofnode_to_offset(node), |
| 628 | "reg", index, &fres); |
| 629 | if (ret < 0) |
| 630 | return -EINVAL; |
| 631 | memset(res, '\0', sizeof(*res)); |
| 632 | res->start = fres.start; |
| 633 | res->end = fres.end; |
| 634 | |
| 635 | return 0; |
| 636 | } |
| 637 | } |
Masahiro Yamada | 4dada2c | 2017-08-26 01:12:30 +0900 | [diff] [blame] | 638 | |
| 639 | int ofnode_read_resource_byname(ofnode node, const char *name, |
| 640 | struct resource *res) |
| 641 | { |
| 642 | int index; |
| 643 | |
| 644 | index = ofnode_stringlist_search(node, "reg-names", name); |
| 645 | if (index < 0) |
| 646 | return index; |
| 647 | |
| 648 | return ofnode_read_resource(node, index, res); |
| 649 | } |