Home
last modified time | relevance | path

Searched refs:DT_CLOCKS_CELL_BY_IDX (Results 1 – 9 of 9) sorted by relevance

/Zephyr-latest/include/zephyr/drivers/clock_control/
Datmel_sam_pmc.h22 .clock_type = DT_CLOCKS_CELL_BY_IDX(node_id, clock_id, clock_type), \
23 .peripheral_id = DT_CLOCKS_CELL_BY_IDX(node_id, clock_id, peripheral_id)\
Dstm32_clock_control.h446 .enr = DT_CLOCKS_CELL_BY_IDX(node_id, clk_index, bits), \
447 .bus = DT_CLOCKS_CELL_BY_IDX(node_id, clk_index, bus) & \
449 .div = DT_CLOCKS_CELL_BY_IDX(node_id, clk_index, bus) >> \
/Zephyr-latest/include/zephyr/devicetree/
Dclocks.h207 #define DT_CLOCKS_CELL_BY_IDX(node_id, idx, cell) \ macro
253 #define DT_CLOCKS_CELL(node_id, cell) DT_CLOCKS_CELL_BY_IDX(node_id, 0, cell)
327 DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
/Zephyr-latest/soc/nuvoton/npcx/common/
Dsoc_dt.h78 .bus = DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), i, bus), \
79 .ctrl = DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), i, ctl), \
80 .bit = DT_CLOCKS_CELL_BY_IDX(DT_DRV_INST(inst), i, bit), \
/Zephyr-latest/tests/drivers/clock_control/stm32_clock_configuration/stm32h7_devices/src/
Dtest_stm32_clock_configuration.c86 perclk_dt_domain_clk = DT_CLOCKS_CELL_BY_IDX(DT_NODELABEL(perck), 0, bus); in ZTEST()
/Zephyr-latest/drivers/mdio/
Dmdio_nxp_enet.c252 .clock_subsys = (void *) DT_CLOCKS_CELL_BY_IDX( \
/Zephyr-latest/drivers/serial/
Duart_renesas_ra.c665 .mstp = DT_CLOCKS_CELL_BY_IDX(DT_INST_PARENT(n), 0, mstp), \
666 .stop_bit = DT_CLOCKS_CELL_BY_IDX(DT_INST_PARENT(n), 0, stop_bit), \
/Zephyr-latest/drivers/ethernet/nxp_enet/
Deth_nxp_enet.c1002 .clock_subsys = (void *)DT_CLOCKS_CELL_BY_IDX( \
1080 .clock_subsys = (void *) DT_CLOCKS_CELL_BY_IDX( \
1101 .clock_subsys = (void *) DT_CLOCKS_CELL_BY_IDX( \
/Zephyr-latest/tests/lib/devicetree/api/src/
Dmain.c2268 zassert_equal(DT_CLOCKS_CELL_BY_IDX(TEST_TEMP, 2, bits), 2, ""); in ZTEST()
2269 zassert_equal(DT_CLOCKS_CELL_BY_IDX(TEST_TEMP, 2, bus), 8, ""); in ZTEST()