zephyr.h 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright (c) 2020 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Zephyr-specific devicetree /chosen properties
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DEVICETREE_ZEPHYR_H_
  11. #define ZEPHYR_INCLUDE_DEVICETREE_ZEPHYR_H_
  12. /**
  13. * @defgroup devicetree-zephyr Zephyr's /chosen nodes
  14. * @ingroup devicetree
  15. * @{
  16. */
  17. /*
  18. * This file is currently deliberately not defining macros for some
  19. * existing zephyr,foo chosen nodes, such as zephyr,sram, until there
  20. * are users for them. Feel free to extend it as needed.
  21. *
  22. * Getting doxygen to play along with all the dts-specific ifdeffery
  23. * proved too complex for DT_CHOSEN_ZEPHYR_ENTROPY_LABEL, so we document
  24. * everything under a DT_DOXYGEN define.
  25. */
  26. #ifdef DT_DOXYGEN
  27. /**
  28. * @def DT_CHOSEN_ZEPHYR_ENTROPY_LABEL
  29. *
  30. * @brief If there is a chosen node zephyr,entropy property which has
  31. * a label property, that property's value. Undefined otherwise.
  32. */
  33. #define DT_CHOSEN_ZEPHYR_ENTROPY_LABEL ""
  34. /**
  35. * @def DT_CHOSEN_ZEPHYR_FLASH_CONTROLLER_LABEL
  36. *
  37. * @brief If there is a chosen node zephyr,flash-controller property which has
  38. * a label property, that property's value. Undefined otherwise.
  39. */
  40. #define DT_CHOSEN_ZEPHYR_FLASH_CONTROLLER_LABEL ""
  41. /**
  42. * @def DT_CHOSEN_ZEPHYR_CAN_PRIMARY_LABEL
  43. *
  44. * @brief If there is a chosen node zephyr,can-primary property which has
  45. * a label property, that property's value. Undefined otherwise.
  46. */
  47. #define DT_CHOSEN_ZEPHYR_CAN_PRIMARY_LABEL ""
  48. #endif /* DT_DOXYGEN */
  49. #if DT_NODE_HAS_PROP(DT_CHOSEN(zephyr_entropy), label)
  50. #define DT_CHOSEN_ZEPHYR_ENTROPY_LABEL DT_LABEL(DT_CHOSEN(zephyr_entropy))
  51. #endif
  52. #if DT_NODE_HAS_PROP(DT_CHOSEN(zephyr_flash_controller), label)
  53. #define DT_CHOSEN_ZEPHYR_FLASH_CONTROLLER_LABEL \
  54. DT_LABEL(DT_CHOSEN(zephyr_flash_controller))
  55. #endif
  56. #if DT_NODE_HAS_PROP(DT_CHOSEN(zephyr_can_primary), label)
  57. #define DT_CHOSEN_ZEPHYR_CAN_PRIMARY_LABEL \
  58. DT_LABEL(DT_CHOSEN(zephyr_can_primary))
  59. #endif
  60. /**
  61. * @}
  62. */
  63. #endif