Home
last modified time | relevance | path

Searched refs:DT_PHA (Results 1 – 10 of 10) sorted by relevance

/Zephyr-Core-3.5.0/soc/arm/nuvoton_npcx/common/
Dsoc_dt.h64 DT_PHA(DT_DRV_INST(inst), clocks, bus)), \
65 .ctrl = DT_PHA(DT_DRV_INST(inst), clocks, ctl), \
66 .bit = DT_PHA(DT_DRV_INST(inst), clocks, bit), \
149 .group = DT_PHA(NPCX_DT_PHANDLE_FROM_WUI_NAME(inst, name), miwus, \
151 .bit = DT_PHA(NPCX_DT_PHANDLE_FROM_WUI_NAME(inst, name), miwus, \
176 .group = DT_PHA(NPCX_DT_PHANDLE_FROM_WUI_MAPS(inst, i), miwus, \
178 .bit = DT_PHA(NPCX_DT_PHANDLE_FROM_WUI_MAPS(inst, i), miwus, bit), \
297 .group = DT_PHA(NPCX_DT_PHANDLE_VW_WUI(name), miwus, group), \
298 .bit = DT_PHA(NPCX_DT_PHANDLE_VW_WUI(name), miwus, bit), \
344 DT_PHA(DT_NODELABEL(lvol_none), lvols, ctrl)
[all …]
Dpinctrl_soc.h180 .cfg.periph.group = DT_PHA(DT_PROP(node_id, prop), alts, group), \
181 .cfg.periph.bit = DT_PHA(DT_PROP(node_id, prop), alts, bit), \
182 .cfg.periph.inverted = DT_PHA(DT_PROP(node_id, prop), alts, inv), \
242 .cfg.psl_in.pol_group = DT_PHA(DT_PROP(node_id, prop), alts, group), \
243 .cfg.psl_in.pol_bit = DT_PHA(DT_PROP(node_id, prop), alts, bit), \
Dscfg.c37 .group = DT_PHA(DT_PROP_BY_IDX(node_id, prop, idx), alts, group), \
38 .bit = DT_PHA(DT_PROP_BY_IDX(node_id, prop, idx), alts, bit), \
39 .inverted = DT_PHA(DT_PROP_BY_IDX(node_id, prop, idx), alts, inv), \
/Zephyr-Core-3.5.0/samples/bluetooth/mesh/src/
Dboard.c37 #define LED0_PIN DT_PHA(LED0, gpios, pin)
38 #define LED0_FLAGS DT_PHA(LED0, gpios, flags)
45 #define BUTTON0_PIN DT_PHA(BUTTON0, gpios, pin)
46 #define BUTTON0_FLAGS DT_PHA(BUTTON0, gpios, flags)
/Zephyr-Core-3.5.0/soc/riscv/riscv-ite/common/
Dpinctrl_soc.h143 DT_PHA(node_id, pinmuxs, pin)
150 DT_PHA(node_id, pinmuxs, alt_func)
Dsoc_dt.h16 DT_PHA(IT8XXX2_DT_INST_WUCCTRL(inst, idx), wucs, mask)
/Zephyr-Core-3.5.0/soc/arm/cypress/common/
Dcypress_psoc6_dt.h116 DT_PHA(DT_INST_PINCTRL_0(inst, i), cypress_pins, pin)
120 DT_PHA(DT_INST_PINCTRL_0(inst, i), cypress_pins, hsiom)
/Zephyr-Core-3.5.0/include/zephyr/
Ddevicetree.h1405 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) macro
/Zephyr-Core-3.5.0/doc/build/dts/
Dapi-usage.rst315 general purpose APIs for this are :c:func:`DT_PHA_BY_IDX` and :c:func:`DT_PHA`.
/Zephyr-Core-3.5.0/tests/lib/devicetree/api/src/
Dmain.c889 zassert_equal(DT_PHA(TEST_PH, gpios, pin), 10, ""); in ZTEST()
890 zassert_equal(DT_PHA(TEST_PH, gpios, flags), 20, ""); in ZTEST()