Home
last modified time | relevance | path

Searched refs:otyper (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/hw/gpio/
H A Dstm32l4x5_gpio.c66 return extract32(s->otyper, pin, 1) == 1; in is_open_drain()
71 return extract32(s->otyper, pin, 1) == 0; in is_push_pull()
79 s->otyper = 0x00000000; in stm32l4x5_gpio_reset_hold()
275 s->otyper = value & ~RESERVED_BITS_MASK; in stm32l4x5_gpio_write()
354 return s->otyper; in stm32l4x5_gpio_read()
434 VMSTATE_UINT32(otyper, Stm32l4x5GpioState),
/openbmc/qemu/tests/qtest/
H A Dstm32l4x5_gpio-test.c220 uint32_t otyper = gpio_readl(GPIO_A, OTYPER); in test_idr_reset_value() local
227 g_assert_cmphex(otyper, ==, reset(GPIO_A, OTYPER)); in test_idr_reset_value()
235 otyper = gpio_readl(GPIO_B, OTYPER); in test_idr_reset_value()
242 g_assert_cmphex(otyper, ==, reset(GPIO_B, OTYPER)); in test_idr_reset_value()
250 otyper = gpio_readl(GPIO_C, OTYPER); in test_idr_reset_value()
256 g_assert_cmphex(otyper, ==, reset(GPIO_C, OTYPER)); in test_idr_reset_value()
264 otyper = gpio_readl(GPIO_H, OTYPER); in test_idr_reset_value()
270 g_assert_cmphex(otyper, ==, reset(GPIO_H, OTYPER)); in test_idr_reset_value()
/openbmc/qemu/include/hw/gpio/
H A Dstm32l4x5_gpio.h38 uint32_t otyper; member
/openbmc/u-boot/arch/arm/mach-stm32mp/include/mach/
H A Dgpio.h103 u32 otyper; /* GPIO port output type */ member
/openbmc/u-boot/arch/arm/include/asm/arch-stm32/
H A Dgpio.h102 u32 otyper; /* GPIO port output type */ member
/openbmc/u-boot/drivers/pinctrl/
H A Dpinctrl_stm32.c266 clrsetbits_le32(&regs->otyper, OTYPE_MSK << index, ctl->otype << index); in stm32_gpio_config()