fdt_wrappers.h 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright (c) 2018-2024, Arm Limited and Contributors. All rights reserved.
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. */
  6. /* Helper functions to offer easier navigation of Device Tree Blob */
  7. #ifndef FDT_WRAPPERS_H
  8. #define FDT_WRAPPERS_H
  9. #include <libfdt_env.h>
  10. #include <libfdt.h>
  11. /* Number of cells, given total length in bytes. Each cell is 4 bytes long */
  12. #define NCELLS(len) ((len) / 4U)
  13. int fdt_read_uint32(const void *dtb, int node, const char *prop_name,
  14. uint32_t *value);
  15. uint32_t fdt_read_uint32_default(const void *dtb, int node,
  16. const char *prop_name, uint32_t dflt_value);
  17. int fdt_read_uint64(const void *dtb, int node, const char *prop_name,
  18. uint64_t *value);
  19. uint64_t fdt_read_uint64_default(const void *dtb, int node,
  20. const char *prop_name, uint64_t dflt_value);
  21. int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name,
  22. unsigned int cells, uint32_t *value);
  23. int fdtw_read_string(const void *dtb, int node, const char *prop,
  24. char *str, size_t size);
  25. int fdtw_read_uuid(const void *dtb, int node, const char *prop,
  26. unsigned int length, uint8_t *uuid);
  27. int fdtw_write_inplace_cells(void *dtb, int node, const char *prop,
  28. unsigned int cells, void *value);
  29. int fdtw_read_bytes(const void *dtb, int node, const char *prop,
  30. unsigned int length, void *value);
  31. int fdtw_write_inplace_bytes(void *dtb, int node, const char *prop,
  32. unsigned int length, const void *data);
  33. int fdt_get_reg_props_by_index(const void *dtb, int node, int index,
  34. uintptr_t *base, size_t *size);
  35. int fdt_get_reg_props_by_name(const void *dtb, int node, const char *name,
  36. uintptr_t *base, size_t *size);
  37. int fdt_get_stdout_node_offset(const void *dtb);
  38. uint64_t fdtw_translate_address(const void *dtb, int bus_node,
  39. uint64_t base_address);
  40. int fdtw_for_each_cpu(const void *fdt,
  41. int (*callback)(const void *dtb, int node, uintptr_t mpidr));
  42. int fdtw_find_or_add_subnode(void *fdt, int parentoffset, const char *name);
  43. static inline uint32_t fdt_blob_size(const void *dtb)
  44. {
  45. const uint32_t *dtb_header = (const uint32_t *)dtb;
  46. return fdt32_to_cpu(dtb_header[1]);
  47. }
  48. static inline bool fdt_node_is_enabled(const void *fdt, int node)
  49. {
  50. int len;
  51. const void *prop = fdt_getprop(fdt, node, "status", &len);
  52. /* A non-existing status property means the device is enabled. */
  53. return (prop == NULL) || (len == 5 && strcmp((const char *)prop,
  54. "okay") == 0);
  55. }
  56. #define fdt_for_each_compatible_node(dtb, node, compatible_str) \
  57. for (node = fdt_node_offset_by_compatible(dtb, -1, compatible_str); \
  58. node >= 0; \
  59. node = fdt_node_offset_by_compatible(dtb, node, compatible_str))
  60. #endif /* FDT_WRAPPERS_H */