Lines Matching +full:prop +full:- +full:1
3 * SPDX-License-Identifier: Apache-2.0
21 uint32_t p_reg: 1;
23 uint32_t pmc_reg: 1;
26 uint32_t rsel_reg: 1;
35 #define Z_PINCTRL_STATE_PIN_INIT(node_id, prop, idx) \ argument
37 .port_pin = RZT_GET_PORT_PIN(DT_PROP_BY_IDX(node_id, prop, idx)), \
41 .pm_reg = DT_PROP(node_id, input_enable) == 1 \
42 ? 1U \
43 : (DT_PROP(node_id, output_enable) == 1 ? 2U \
45 .pmc_reg = 1, \
46 .pfc_reg = RZT_GET_FUNC(DT_PROP_BY_IDX(node_id, prop, idx)), \
49 ((DT_PROP(node_id, bias_pull_up) == 1 \
50 ? 1U \
51 : (DT_PROP(node_id, bias_pull_down) == 1 ? 2U \
56 .rsel_reg = 1, \
60 #define Z_PINCTRL_STATE_PINS_INIT(node_id, prop) \ argument
61 {DT_FOREACH_CHILD_VARGS(DT_PHANDLE(node_id, prop), DT_FOREACH_PROP_ELEM, pinmux, \