fixed-partitions.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /**
  2. * @file
  3. * @brief Flash Devicetree macro public API header file.
  4. */
  5. /*
  6. * Copyright (c) 2020, Linaro Ltd.
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DEVICETREE_FIXED_PARTITION_H_
  11. #define ZEPHYR_INCLUDE_DEVICETREE_FIXED_PARTITION_H_
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. /**
  16. * @defgroup devicetree-fixed-partition Devicetree Fixed Partition API
  17. * @ingroup devicetree
  18. * @{
  19. */
  20. /**
  21. * @brief Get a node identifier for a fixed partition with
  22. * a given label property
  23. *
  24. * Example devicetree fragment:
  25. *
  26. * flash@... {
  27. * partitions {
  28. * compatible = "fixed-partitions";
  29. * boot_partition: partition@0 {
  30. * label = "mcuboot";
  31. * };
  32. * slot0_partition: partition@c000 {
  33. * label = "image-0";
  34. * };
  35. * ...
  36. * };
  37. * };
  38. *
  39. * Example usage:
  40. *
  41. * DT_NODE_BY_FIXED_PARTITION_LABEL(mcuboot) // node identifier for boot_partition
  42. * DT_NODE_BY_FIXED_PARTITION_LABEL(image_0) // node identifier for slot0_partition
  43. *
  44. * @param label lowercase-and-underscores label property value
  45. * @return a node identifier for the partition with that label property
  46. */
  47. #define DT_NODE_BY_FIXED_PARTITION_LABEL(label) \
  48. DT_CAT(DT_COMPAT_fixed_partitions_LABEL_, label)
  49. /**
  50. * @brief Test if a fixed partition with a given label property exists
  51. * @param label lowercase-and-underscores label property value
  52. * @return 1 if any "fixed-partitions" child node has the given label,
  53. * 0 otherwise.
  54. */
  55. #define DT_HAS_FIXED_PARTITION_LABEL(label) \
  56. IS_ENABLED(DT_COMPAT_fixed_partitions_LABEL_##label##_EXISTS)
  57. /**
  58. * @brief Get a numeric identifier for a fixed partition
  59. * @param node_id node identifier for a fixed-partitions child node
  60. * @return the partition's ID, a unique zero-based index number
  61. */
  62. #define DT_FIXED_PARTITION_ID(node_id) DT_CAT(node_id, _PARTITION_ID)
  63. /**
  64. * @brief Get the node identifier of the flash device for a partition
  65. * @param node_id node identifier for a fixed-partitions child node
  66. * @return the node identifier of the memory technology device that
  67. * contains the fixed-partitions node.
  68. */
  69. #define DT_MTD_FROM_FIXED_PARTITION(node_id) \
  70. COND_CODE_1(DT_NODE_HAS_COMPAT(DT_GPARENT(node_id), soc_nv_flash), \
  71. (DT_PARENT(DT_GPARENT(node_id))), \
  72. (DT_GPARENT(node_id)))
  73. /**
  74. * @}
  75. */
  76. #ifdef __cplusplus
  77. }
  78. #endif
  79. #endif /* ZEPHYR_INCLUDE_DEVICETREE_FIXED_PARTITION_H_ */