Searched refs:GPIOF_OUTPUT (Results 1 – 25 of 31) sorted by relevance
12
| /OK3568_Linux_fs/u-boot/drivers/gpio/ |
| H A D | sandbox.c | 17 #define GPIOF_OUTPUT (1 << 0) /* Currently set as an output */ macro 65 if (get_gpio_flag(dev, offset, GPIOF_OUTPUT)) in sandbox_gpio_get_value() 87 return get_gpio_flag(dev, offset, GPIOF_OUTPUT); in sandbox_gpio_get_direction() 92 return set_gpio_flag(dev, offset, GPIOF_OUTPUT, output); in sandbox_gpio_set_direction() 163 if (get_gpio_flag(dev, offset, GPIOF_OUTPUT)) in sb_gpio_get_function() 164 return GPIOF_OUTPUT; in sb_gpio_get_function()
|
| H A D | msm_gpio.c | 83 return GPIOF_OUTPUT; in msm_gpio_get_function()
|
| H A D | gpio-uniphier.c | 80 GPIOF_INPUT : GPIOF_OUTPUT; in uniphier_gpio_get_function()
|
| H A D | bcm6345_gpio.c | 77 return GPIOF_OUTPUT; in bcm6345_gpio_get_function()
|
| H A D | mvebu_gpio.c | 65 return GPIOF_OUTPUT; in mvebu_gpio_get_function()
|
| H A D | vybrid_gpio.c | 77 return GPIOF_OUTPUT; in vybrid_gpio_get_function()
|
| H A D | pic32_gpio.c | 107 ret = GPIOF_OUTPUT; in pic32_gpio_get_function()
|
| H A D | 74x164_gpio.c | 105 return GPIOF_OUTPUT; in gen_74x164_get_function()
|
| H A D | bcm2835_gpio.c | 92 return GPIOF_OUTPUT; in bcm2835_gpio_get_function()
|
| H A D | imx_rgpio2p.c | 122 return GPIOF_OUTPUT; in imx_rgpio2p_get_function()
|
| H A D | intel_broadwell_gpio.c | 114 return GPIOF_OUTPUT; in broadwell_gpio_get_function()
|
| H A D | lpc32xx_gpio.c | 264 gpio_priv->function[offset] = GPIOF_OUTPUT; in lpc32xx_gpio_direction_output()
|
| H A D | omap_gpio.c | 274 return GPIOF_OUTPUT; in omap_gpio_get_function()
|
| H A D | rk_gpio.c | 122 return is_output ? GPIOF_OUTPUT : GPIOF_INPUT; in rockchip_gpio_get_function()
|
| H A D | intel_ich6_gpio.c | 214 return GPIOF_OUTPUT; in ich6_gpio_get_function()
|
| H A D | tegra186_gpio.c | 136 return GPIOF_OUTPUT; in tegra186_gpio_get_function()
|
| H A D | pm8916_gpio.c | 133 return GPIOF_OUTPUT; in pm8916_gpio_get_function()
|
| H A D | mpc85xx_gpio.c | 163 return dir ? GPIOF_OUTPUT : GPIOF_INPUT; in mpc85xx_gpio_get_function()
|
| H A D | mxc_gpio.c | 258 return GPIOF_OUTPUT; in mxc_gpio_get_function()
|
| H A D | sunxi_gpio.c | 212 return GPIOF_OUTPUT; in sunxi_gpio_get_function()
|
| H A D | s5p_gpio.c | 271 return GPIOF_OUTPUT; in exynos_gpio_get_function()
|
| H A D | atmel_pio4.c | 265 ATMEL_PIO_DIR_MASK) ? GPIOF_OUTPUT : GPIOF_INPUT; in atmel_pio4_get_function()
|
| H A D | tegra_gpio.c | 233 return GPIOF_OUTPUT; in tegra_gpio_get_function()
|
| /OK3568_Linux_fs/u-boot/test/dm/ |
| H A D | gpio.c | 237 ut_asserteq(GPIOF_OUTPUT, gpio_get_function(gpio_a, 1, NULL)); in dm_test_gpio_phandles() 244 ut_asserteq(GPIOF_OUTPUT, gpio_get_function(gpio_b, 8, NULL)); in dm_test_gpio_phandles() 246 ut_asserteq(GPIOF_OUTPUT, gpio_get_function(gpio_b, 9, NULL)); in dm_test_gpio_phandles()
|
| /OK3568_Linux_fs/u-boot/include/asm-generic/ |
| H A D | gpio.h | 107 GPIOF_OUTPUT, enumerator
|
12