Lines Matching +full:rx +full:- +full:region

5  * SPDX-License-Identifier: Apache-2.0
18 * @brief Get the linker memory-region name in a token form
20 * This attempts to use the zephyr,memory-region property (with
21 * non-alphanumeric characters replaced with underscores) returning a token.
29 * zephyr,memory-region = "MY_NAME";
32 * zephyr,memory-region = "MY@OTHER@NAME";
46 * @return the name of the memory memory region the node will generate
52 * @brief Get the linker memory-region name
54 * This attempts to use the zephyr,memory-region property (with
55 * non-alphanumeric characters replaced with underscores).
63 * zephyr,memory-region = "MY_NAME";
66 * zephyr,memory-region = "MY@OTHER@NAME";
80 * @return the name of the memory memory region the node will generate
97 * @brief Get the linker memory-region flags with parentheses.
99 * This attempts to return the zephyr,memory-region-flags property
108 * rx: memory@2000000 {
109 * zephyr,memory-region = "READ_EXEC";
110 * zephyr,memory-region-flags = "rx";
113 * zephyr,memory-region = "READ_EXEC_NOT_WRITE";
114 * zephyr,memory-region-flags = "rx!w";
117 * zephyr,memory-region = "NO_FLAGS";
126 * LINKER_DT_NODE_REGION_FLAGS(DT_NODELABEL(rx)) // (rx)
127 * LINKER_DT_NODE_REGION_FLAGS(DT_NODELABEL(rx_not_w)) // (rx!w)
132 * @return the value of the memory region flag specified in the device tree
156 * @brief Declare a memory region
162 * compatible = "zephyr,memory-region", "mmio-sram";
164 * zephyr,memory-region = "FOOBAR";
165 * zephyr,memory-region-flags = "rw";
176 * @param attr region attributes
186 * compatible 'zephyr,memory-region'
192 * compatible = "zephyr,memory-region", "mmio-sram";
194 * zephyr,memory-region = "FOOBAR";
208 * __FOOBAR_size = __FOOBAR_end - __FOOBAR_start;
222 _DT_SECTION_SIZE(node_id) = _DT_SECTION_END(node_id) - _DT_SECTION_START(node_id); \
229 * compatible 'zephyr,memory-region'
240 * compatible 'zephyr,memory-region'