Searched refs:DT_DEP_ORD (Results 1 – 16 of 16) sorted by relevance
/Zephyr-latest/drivers/clock_control/ |
D | clock_control_ifx_cat1.c | 17 #define GET_CLK_SOURCE_ORD(N) DT_DEP_ORD(DT_CLOCKS_CTLR_BY_IDX(DT_NODELABEL(N), 0)) 146 [INFINEON_CAT1_CLOCK_IMO] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(clk_imo)) }, 150 [INFINEON_CAT1_CLOCK_IHO] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(clk_iho)) }, 154 [INFINEON_CAT1_CLOCK_PATHMUX0] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(path_mux0)) }, 158 [INFINEON_CAT1_CLOCK_PATHMUX1] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(path_mux1)) }, 162 [INFINEON_CAT1_CLOCK_PATHMUX2] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(path_mux2)) }, 166 [INFINEON_CAT1_CLOCK_PATHMUX3] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(path_mux3)) }, 170 [INFINEON_CAT1_CLOCK_PATHMUX4] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(path_mux4)) }, 174 [INFINEON_CAT1_CLOCK_HF0] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(clk_hf0)) }, 178 [INFINEON_CAT1_CLOCK_HF1] = { .dt_ord = DT_DEP_ORD(DT_NODELABEL(clk_hf1)) }, [all …]
|
D | clock_control_smartbond.c | 398 case DT_DEP_ORD(DT_NODELABEL(rc32k)): in smartbond_dt_ord_to_clock() 400 case DT_DEP_ORD(DT_NODELABEL(rcx)): in smartbond_dt_ord_to_clock() 402 case DT_DEP_ORD(DT_NODELABEL(xtal32k)): in smartbond_dt_ord_to_clock() 404 case DT_DEP_ORD(DT_NODELABEL(rc32m)): in smartbond_dt_ord_to_clock() 406 case DT_DEP_ORD(DT_NODELABEL(xtal32m)): in smartbond_dt_ord_to_clock() 408 case DT_DEP_ORD(DT_NODELABEL(pll)): in smartbond_dt_ord_to_clock() 573 #define ENABLE_OSC(clock) smartbond_clock_control_on_by_ord(dev, DT_DEP_ORD(clock)) in smartbond_clocks_init() 575 smartbond_clock_control_off_by_ord(dev, DT_DEP_ORD(clock)); \ in smartbond_clocks_init() 590 clk_id = DT_DEP_ORD(DT_PROP(DT_NODELABEL(lp_clk), clock_src)); in smartbond_clocks_init() 594 clk_id = DT_DEP_ORD(DT_PROP(DT_NODELABEL(sys_clk), clock_src)); in smartbond_clocks_init()
|
/Zephyr-latest/include/zephyr/devicetree/ |
D | ordinals.h | 25 #define DT_DEP_ORD(node_id) DT_CAT(node_id, _ORD) macro 78 #define DT_INST_DEP_ORD(inst) DT_DEP_ORD(DT_DRV_INST(inst))
|
/Zephyr-latest/soc/nxp/imxrt/imxrt10xx/ |
D | linker.ld | 10 #define IS_CHOSEN_SRAM(x) (DT_DEP_ORD(DT_NODELABEL(x)) == DT_DEP_ORD(DT_CHOSEN(zephyr_sram)))
|
/Zephyr-latest/soc/nxp/imxrt/imxrt11xx/ |
D | linker.ld | 10 #define IS_CHOSEN_SRAM(x) (DT_DEP_ORD(DT_NODELABEL(x)) == DT_DEP_ORD(DT_CHOSEN(zephyr_sram)))
|
/Zephyr-latest/soc/nxp/imxrt/imxrt118x/ |
D | linker.ld | 10 #define IS_CHOSEN_SRAM(x) (DT_DEP_ORD(DT_NODELABEL(x)) == DT_DEP_ORD(DT_CHOSEN(zephyr_sram)))
|
/Zephyr-latest/drivers/regulator/ |
D | regulator_fake.c | 88 #define FAKE_DATA_NAME(node_id) _CONCAT(data_, DT_DEP_ORD(node_id)) 89 #define FAKE_CONF_NAME(node_id) _CONCAT(config_, DT_DEP_ORD(node_id))
|
/Zephyr-latest/include/zephyr/storage/ |
D | flash_map.h | 433 #define FIXED_PARTITION_1(node) FIXED_PARTITION_0(DT_DEP_ORD(node)) 437 #define DECLARE_PARTITION(node) DECLARE_PARTITION_0(DT_DEP_ORD(node))
|
/Zephyr-latest/include/zephyr/modem/ |
D | pipelink.h | 116 _CONCAT_4(__modem_pipelink_, DT_DEP_ORD(node_id), _, name)
|
/Zephyr-latest/subsys/storage/flash_map/ |
D | flash_map_default.c | 50 #define DEFINE_PARTITION(part) DEFINE_PARTITION_1(part, DT_DEP_ORD(part))
|
/Zephyr-latest/tests/lib/devicetree/api/src/ |
D | main.c | 2097 zassert_equal(DT_DEP_ORD(DT_SPI_DEV_CS_GPIOS_CTLR(TEST_SPI_DEV_0)), in ZTEST() 2098 DT_DEP_ORD(DT_NODELABEL(test_gpio_1)), in ZTEST() 2744 #define DEP_ORD_AND_COMMA(node_id) DT_DEP_ORD(node_id), 2749 DT_DEP_ORD(node_id), \ 2750 DT_DEP_ORD(DT_PARENT(node_id)), \ 2765 unsigned int root_ord = DT_DEP_ORD(DT_ROOT), in ZTEST() 2766 test_ord = DT_DEP_ORD(DT_PATH(test)), in ZTEST() 2781 zassert_true(DT_DEP_ORD(DT_NODELABEL(test_child_a)) > in ZTEST() 2782 DT_DEP_ORD(DT_NODELABEL(test_children)), ""); in ZTEST() 2783 zassert_true(DT_DEP_ORD(DT_NODELABEL(test_irq)) > in ZTEST() [all …]
|
/Zephyr-latest/include/zephyr/ |
D | device.h | 104 #define Z_DEVICE_DT_DEV_ID(node_id) _CONCAT(dts_ord_, DT_DEP_ORD(node_id)) 873 (DT_DEP_ORD(node_id), DT_REQUIRES_DEP_ORDS(node_id)), \
|
D | devicetree.h | 683 (DT_DEP_ORD(node_id1) == (DT_DEP_ORD(node_id2)))
|
/Zephyr-latest/include/zephyr/drivers/pcie/ |
D | pcie.h | 66 #define Z_DEVICE_PCIE_NAME(node_id) _CONCAT(pcie_dev_, DT_DEP_ORD(node_id))
|
/Zephyr-latest/tests/lib/devicetree/devices/src/ |
D | main.c | 53 NULL, NULL, POST_KERNEL, 70, NULL, DT_DEP_ORD(TEST_DEVB), 999);
|
/Zephyr-latest/doc/releases/ |
D | release-notes-2.5.rst | 802 - :c:macro:`DT_DEP_ORD`, :c:macro:`DT_INST_DEP_ORD`
|