devicetree_regions.h 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (c) 2021, Commonwealth Scientific and Industrial Research
  3. * Organisation (CSIRO) ABN 41 687 119 230.
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. *
  7. * Generate memory regions from devicetree nodes.
  8. */
  9. /* Declare a memory region */
  10. #define _REGION_DECLARE(name, attr, node) name(attr) : \
  11. ORIGIN = DT_REG_ADDR(node), \
  12. LENGTH = DT_REG_SIZE(node)
  13. /**
  14. * @brief Generate a linker memory region from a devicetree node
  15. *
  16. * If @p node_id refers to a node with status "okay", then this declares
  17. * a linker memory region named @p name with attributes from @p attr.
  18. *
  19. * Otherwise, it doesn't expand to anything.
  20. *
  21. * @param name name of the generated memory region
  22. * @param attr region attributes to use (rx, rw, ...)
  23. * @param node_id devicetree node identifier with a \<reg\> property
  24. * defining region location and size.
  25. */
  26. #define LINKER_DT_REGION_FROM_NODE(name, attr, node_id) \
  27. COND_CODE_1(DT_NODE_HAS_STATUS(node_id, okay), \
  28. (_REGION_DECLARE(name, attr, node_id)), \
  29. ())