Home
last modified time | relevance | path

Searched refs:GPIO_FLAGS_BIT_DIR_SET (Results 1 – 2 of 2) sorted by relevance

/optee_os/core/include/drivers/
H A Dgpio.h35 #define GPIO_FLAGS_BIT_DIR_SET BIT(0) macro
51 GPIO_IN = GPIO_FLAGS_BIT_DIR_SET,
52 GPIO_OUT_LOW = GPIO_FLAGS_BIT_DIR_SET | GPIO_FLAGS_BIT_DIR_OUT,
53 GPIO_OUT_HIGH = GPIO_FLAGS_BIT_DIR_SET | GPIO_FLAGS_BIT_DIR_OUT |
/optee_os/core/drivers/gpio/
H A Dgpio.c83 if (flags & GPIO_FLAGS_BIT_DIR_SET) { in gpio_configure()