Lines Matching refs:DT_PROP
47 (DT_PROP(node, drive_push_pull) ? (4 + DT_PROP(node, silabs_alternate_port_control)) \
48 : DT_PROP(node, drive_open_source) ? (6 + DT_PROP(node, bias_pull_down)) \
49 : DT_PROP(node, drive_open_drain) \
50 ? (8 + DT_PROP(node, silabs_input_filter) + 2 * DT_PROP(node, bias_pull_up) + \
51 4 * DT_PROP(node, silabs_alternate_port_control)) \
52 : DT_PROP(node, input_enable) \
53 ? ((DT_PROP(node, bias_pull_down) || DT_PROP(node, bias_pull_up)) \
54 ? (2 + DT_PROP(node, silabs_input_filter)) \
59 (DT_PROP(node, drive_push_pull) ? DT_PROP(node, output_high) \
60 : DT_PROP(node, drive_open_drain) ? 1 \
61 : DT_PROP(node, input_enable) \
62 ? ((DT_PROP(node, bias_pull_down) || DT_PROP(node, bias_pull_up)) \
63 ? DT_PROP(node, bias_pull_up) \
64 : DT_PROP(node, silabs_input_filter)) \
65 : DT_PROP(node, input_disable) ? DT_PROP(node, bias_pull_up) \