Home
last modified time | relevance | path

Searched refs:pha (Results 1 – 3 of 3) sorted by relevance

/Zephyr-Core-3.6.0/include/zephyr/
Ddevicetree.h1359 #define DT_PHA_BY_IDX(node_id, pha, idx, cell) \ argument
1360 DT_CAT7(node_id, _P_, pha, _IDX_, idx, _VAL_, cell)
1385 #define DT_PHA_BY_IDX_OR(node_id, pha, idx, cell, default_value) \ argument
1386 DT_PROP_OR(node_id, DT_CAT5(pha, _IDX_, idx, _VAL_, cell), default_value)
1395 #define DT_PHA(node_id, pha, cell) DT_PHA_BY_IDX(node_id, pha, 0, cell) argument
1411 #define DT_PHA_OR(node_id, pha, cell, default_value) \ argument
1412 DT_PHA_BY_IDX_OR(node_id, pha, 0, cell, default_value)
1454 #define DT_PHA_BY_NAME(node_id, pha, name, cell) \ argument
1455 DT_CAT7(node_id, _P_, pha, _NAME_, name, _VAL_, cell)
1478 #define DT_PHA_BY_NAME_OR(node_id, pha, name, cell, default_value) \ argument
[all …]
/Zephyr-Core-3.6.0/drivers/display/
Ddisplay_nrf_led_matrix.c57 #define CHECK_PIXEL(node_id, pha, idx) \ argument
528 #define GET_PIN_INFO(node_id, pha, idx) \ argument
529 (DT_GPIO_PIN_BY_IDX(node_id, pha, idx) | \
530 (DT_PROP_BY_PHANDLE_IDX(node_id, pha, idx, port) << 5) | \
531 ((DT_GPIO_FLAGS_BY_IDX(node_id, pha, idx) & GPIO_ACTIVE_LOW) ? \
535 #define FILL_ROW_WITH_FF(node_id, pha, idx) LISTIFY(COL_COUNT, ADD_FF, (,)), argument
536 #define GET_PIXEL_ORDINAL(node_id, pha, idx) \ argument
/Zephyr-Core-3.6.0/tests/lib/devicetree/api/
Dapp.overlay71 pha-gpios = <&test_gpio_1 50 60>, <0>, <&test_gpio_3 70>, <&test_gpio_2 80 90>;