ordinals.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. #ifndef ZEPHYR_INCLUDE_DEVICETREE_ORDINALS_H_
  6. #define ZEPHYR_INCLUDE_DEVICETREE_ORDINALS_H_
  7. /**
  8. * @file
  9. * @brief Devicetree node dependency ordinals
  10. */
  11. /**
  12. * @defgroup devicetree-dep-ord Dependency tracking
  13. * @ingroup devicetree
  14. * @{
  15. */
  16. /**
  17. * @brief Get a node's dependency ordinal
  18. * @param node_id Node identifier
  19. * @return the node's dependency ordinal as an integer literal
  20. */
  21. #define DT_DEP_ORD(node_id) DT_CAT(node_id, _ORD)
  22. /**
  23. * @brief Get a list of dependency ordinals of a node's direct dependencies
  24. *
  25. * There is a comma after each ordinal in the expansion, **including**
  26. * the last one:
  27. *
  28. * DT_REQUIRES_DEP_ORDS(my_node) // required_ord_1, ..., required_ord_n,
  29. *
  30. * The one case DT_REQUIRES_DEP_ORDS() expands to nothing is when
  31. * given the root node identifier @p DT_ROOT as argument. The root has
  32. * no direct dependencies; every other node at least depends on its
  33. * parent.
  34. *
  35. * @param node_id Node identifier
  36. * @return a list of dependency ordinals, with each ordinal followed
  37. * by a comma (<tt>,</tt>), or an empty expansion
  38. */
  39. #define DT_REQUIRES_DEP_ORDS(node_id) DT_CAT(node_id, _REQUIRES_ORDS)
  40. /**
  41. * @brief Get a list of dependency ordinals of what depends directly on a node
  42. *
  43. * There is a comma after each ordinal in the expansion, **including**
  44. * the last one:
  45. *
  46. * DT_SUPPORTS_DEP_ORDS(my_node) // supported_ord_1, ..., supported_ord_n,
  47. *
  48. * DT_SUPPORTS_DEP_ORDS() may expand to nothing. This happens when @p node_id
  49. * refers to a leaf node that nothing else depends on.
  50. *
  51. * @param node_id Node identifier
  52. * @return a list of dependency ordinals, with each ordinal followed
  53. * by a comma (<tt>,</tt>), or an empty expansion
  54. */
  55. #define DT_SUPPORTS_DEP_ORDS(node_id) DT_CAT(node_id, _SUPPORTS_ORDS)
  56. /**
  57. * @brief Get a DT_DRV_COMPAT instance's dependency ordinal
  58. *
  59. * Equivalent to DT_DEP_ORD(DT_DRV_INST(inst)).
  60. *
  61. * @param inst instance number
  62. * @return The instance's dependency ordinal
  63. */
  64. #define DT_INST_DEP_ORD(inst) DT_DEP_ORD(DT_DRV_INST(inst))
  65. /**
  66. * @brief Get a list of dependency ordinals of a DT_DRV_COMPAT instance's
  67. * direct dependencies
  68. *
  69. * Equivalent to DT_REQUIRES_DEP_ORDS(DT_DRV_INST(inst)).
  70. *
  71. * @param inst instance number
  72. * @return a list of dependency ordinals for the nodes the instance depends
  73. * on directly
  74. */
  75. #define DT_INST_REQUIRES_DEP_ORDS(inst) DT_REQUIRES_DEP_ORDS(DT_DRV_INST(inst))
  76. /**
  77. * @brief Get a list of dependency ordinals of what depends directly on a
  78. * DT_DRV_COMPAT instance
  79. *
  80. * Equivalent to DT_SUPPORTS_DEP_ORDS(DT_DRV_INST(inst)).
  81. *
  82. * @param inst instance number
  83. * @return a list of node identifiers for the nodes that depend directly
  84. * on the instance
  85. */
  86. #define DT_INST_SUPPORTS_DEP_ORDS(inst) DT_SUPPORTS_DEP_ORDS(DT_DRV_INST(inst))
  87. /**
  88. * @}
  89. */
  90. #endif /* ZEPHYR_INCLUDE_DEVICETREE_ORDINALS_H_ */