Home
last modified time | relevance | path

Searched refs:DT_CLOCKS_CELL_BY_NAME (Results 1 – 7 of 7) sorted by relevance

/Zephyr-latest/include/zephyr/devicetree/
Dclocks.h243 #define DT_CLOCKS_CELL_BY_NAME(node_id, name, cell) \ macro
339 DT_CLOCKS_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
/Zephyr-latest/soc/nuvoton/npcx/common/
Dsoc_dt.h92 .bus = DT_CLOCKS_CELL_BY_NAME(DT_DRV_INST(inst), name, bus), \
93 .ctrl = DT_CLOCKS_CELL_BY_NAME(DT_DRV_INST(inst), name, ctl), \
94 .bit = DT_CLOCKS_CELL_BY_NAME(DT_DRV_INST(inst), name, bit), \
/Zephyr-latest/drivers/watchdog/
Dwdt_rts5912.c240 .clk_grp = DT_CLOCKS_CELL_BY_NAME(DT_NODELABEL(wdog), watchdog, clk_grp),
241 .clk_idx = DT_CLOCKS_CELL_BY_NAME(DT_NODELABEL(wdog), watchdog, clk_idx),
/Zephyr-latest/drivers/can/
Dcan_renesas_ra.c1039 .op_subsys = {.mstp = DT_CLOCKS_CELL_BY_NAME(DT_INST(0, renesas_ra_canfd_global), opclk,
1041 .stop_bit = DT_CLOCKS_CELL_BY_NAME(DT_INST(0, renesas_ra_canfd_global), opclk,
1043 .ram_subsys = {.mstp = DT_CLOCKS_CELL_BY_NAME(DT_INST(0, renesas_ra_canfd_global), ramclk,
1045 .stop_bit = DT_CLOCKS_CELL_BY_NAME(DT_INST(0, renesas_ra_canfd_global),
/Zephyr-latest/drivers/flash/
Dflash_stm32_ospi.c2585 .pclken = {.bus = DT_CLOCKS_CELL_BY_NAME(STM32_OSPI_NODE, ospix, bus),
2586 .enr = DT_CLOCKS_CELL_BY_NAME(STM32_OSPI_NODE, ospix, bits)},
2588 .pclken_ker = {.bus = DT_CLOCKS_CELL_BY_NAME(STM32_OSPI_NODE, ospi_ker, bus),
2589 .enr = DT_CLOCKS_CELL_BY_NAME(STM32_OSPI_NODE, ospi_ker, bits)},
2592 .pclken_mgr = {.bus = DT_CLOCKS_CELL_BY_NAME(STM32_OSPI_NODE, ospi_mgr, bus),
2593 .enr = DT_CLOCKS_CELL_BY_NAME(STM32_OSPI_NODE, ospi_mgr, bits)},
/Zephyr-latest/doc/build/dts/
Dphandles.rst361 - :c:macro:`DT_CLOCKS_CELL_BY_NAME`
/Zephyr-latest/tests/lib/devicetree/api/src/
Dmain.c2259 zassert_equal(DT_CLOCKS_CELL_BY_NAME(TEST_TEMP, clk_a, bits), 7, ""); in ZTEST()
2260 zassert_equal(DT_CLOCKS_CELL_BY_NAME(TEST_TEMP, clk_b, bus), 8, ""); in ZTEST()