util.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright (c) 2013 Google, Inc
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __DM_UTIL_H
  7. #define __DM_UTIL_H
  8. #ifdef CONFIG_DM_WARN
  9. void dm_warn(const char *fmt, ...);
  10. #else
  11. static inline void dm_warn(const char *fmt, ...)
  12. {
  13. }
  14. #endif
  15. #ifdef DEBUG
  16. void dm_dbg(const char *fmt, ...);
  17. #else
  18. static inline void dm_dbg(const char *fmt, ...)
  19. {
  20. }
  21. #endif
  22. struct list_head;
  23. /**
  24. * list_count_items() - Count number of items in a list
  25. *
  26. * @param head: Head of list
  27. * @return number of items, or 0 if empty
  28. */
  29. int list_count_items(struct list_head *head);
  30. /* Dump out a tree of all devices */
  31. void dm_dump_all(void);
  32. /* Dump out a list of uclasses and their devices */
  33. void dm_dump_uclass(void);
  34. #ifdef CONFIG_DEBUG_DEVRES
  35. /* Dump out a list of device resources */
  36. void dm_dump_devres(void);
  37. #else
  38. static inline void dm_dump_devres(void)
  39. {
  40. }
  41. #endif
  42. /**
  43. * Check if a dt node should be or was bound before relocation.
  44. *
  45. * Devicetree nodes can be marked as needed to be bound
  46. * in the loader stages via special devicetree properties.
  47. *
  48. * Before relocation this function can be used to check if nodes
  49. * are required in either SPL or TPL stages.
  50. *
  51. * After relocation and jumping into the real U-Boot binary
  52. * it is possible to determine if a node was bound in one of
  53. * SPL/TPL stages.
  54. *
  55. * There are 3 settings currently in use
  56. * -
  57. * - u-boot,dm-pre-reloc: legacy and indicates any of TPL or SPL
  58. * Existing platforms only use it to indicate nodes needee in
  59. * SPL. Should probably be replaced by u-boot,dm-spl for
  60. * existing platforms.
  61. * @blob: devicetree
  62. * @offset: node offset
  63. *
  64. * Returns true if node is needed in SPL/TL, false otherwise.
  65. */
  66. int dm_fdt_pre_reloc(const void *blob, int offset);
  67. #endif