Searched refs:GPIOF_OUTPUT (Results 1 – 25 of 42) sorted by relevance
12
/openbmc/u-boot/drivers/gpio/ |
H A D | sandbox.c | 15 #define GPIOF_OUTPUT (1 << 0) /* Currently set as an output */ macro 63 if (get_gpio_flag(dev, offset, GPIOF_OUTPUT)) in sandbox_gpio_get_value() 85 return get_gpio_flag(dev, offset, GPIOF_OUTPUT); in sandbox_gpio_get_direction() 90 return set_gpio_flag(dev, offset, GPIOF_OUTPUT, output); in sandbox_gpio_set_direction() 161 if (get_gpio_flag(dev, offset, GPIOF_OUTPUT)) in sb_gpio_get_function() 162 return GPIOF_OUTPUT; in sb_gpio_get_function()
|
H A D | bcm6345_gpio.c | 74 return GPIOF_OUTPUT; in bcm6345_gpio_get_function()
|
H A D | mvebu_gpio.c | 62 return GPIOF_OUTPUT; in mvebu_gpio_get_function()
|
H A D | msm_gpio.c | 82 return GPIOF_OUTPUT; in msm_gpio_get_function()
|
H A D | vybrid_gpio.c | 76 return GPIOF_OUTPUT; in vybrid_gpio_get_function()
|
H A D | mt7621_gpio.c | 99 return GPIOF_OUTPUT; in mediatek_gpio_get_function()
|
H A D | bcm2835_gpio.c | 86 return GPIOF_OUTPUT; in bcm2835_gpio_get_function()
|
H A D | gpio-uniphier.c | 98 GPIOF_INPUT : GPIOF_OUTPUT; in uniphier_gpio_get_function()
|
H A D | pic32_gpio.c | 106 ret = GPIOF_OUTPUT; in pic32_gpio_get_function()
|
H A D | 74x164_gpio.c | 104 return GPIOF_OUTPUT; in gen_74x164_get_function()
|
H A D | rk_gpio.c | 90 return is_output ? GPIOF_OUTPUT : GPIOF_INPUT; in rockchip_gpio_get_function()
|
H A D | gpio-rcar.c | 112 return GPIOF_OUTPUT; in rcar_gpio_get_function()
|
H A D | imx_rgpio2p.c | 119 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 | 263 gpio_priv->function[offset] = GPIOF_OUTPUT; in lpc32xx_gpio_direction_output()
|
H A D | stm32f7_gpio.c | 133 return GPIOF_OUTPUT; in stm32_gpio_get_function()
|
H A D | dwapb_gpio.c | 94 return GPIOF_OUTPUT; in dwapb_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 | 133 return GPIOF_OUTPUT; in tegra186_gpio_get_function()
|
H A D | pm8916_gpio.c | 130 return GPIOF_OUTPUT; in pm8916_gpio_get_function()
|
H A D | omap_gpio.c | 273 return GPIOF_OUTPUT; in omap_gpio_get_function()
|
H A D | mpc8xxx_gpio.c | 173 return dir ? GPIOF_OUTPUT : GPIOF_INPUT; in mpc8xxx_gpio_get_function()
|
H A D | aspeed_gpio.c | 260 return GPIOF_OUTPUT; in aspeed_gpio_get_function()
|
/openbmc/u-boot/test/dm/ |
H A D | gpio.c | 234 ut_asserteq(GPIOF_OUTPUT, gpio_get_function(gpio_a, 1, NULL)); in dm_test_gpio_phandles() 241 ut_asserteq(GPIOF_OUTPUT, gpio_get_function(gpio_b, 8, NULL)); in dm_test_gpio_phandles() 243 ut_asserteq(GPIOF_OUTPUT, gpio_get_function(gpio_b, 9, NULL)); in dm_test_gpio_phandles()
|
/openbmc/u-boot/include/asm-generic/ |
H A D | gpio.h | 107 GPIOF_OUTPUT, enumerator
|
12