Searched refs:SYSCFG_EXTICR1 (Results 1 – 6 of 6) sorted by relevance
/openbmc/qemu/tests/qtest/ |
H A D | stm32l4x5_syscfg-test.c | 18 #define SYSCFG_EXTICR1 0x08 macro 67 g_assert_cmphex(syscfg_readl(SYSCFG_EXTICR1), ==, 0x00000000); in test_reset() 101 syscfg_writel(SYSCFG_EXTICR1, 0xFFFF0000); in test_reserved_bits() 102 g_assert_cmphex(syscfg_readl(SYSCFG_EXTICR1), ==, 0x00000000); in test_reserved_bits() 133 syscfg_writel(SYSCFG_EXTICR1, 0x0000FFFF); in test_set_and_clear() 134 g_assert_cmphex(syscfg_readl(SYSCFG_EXTICR1), ==, 0x0000FFFF); in test_set_and_clear() 135 syscfg_writel(SYSCFG_EXTICR1, 0x00000000); in test_set_and_clear() 136 g_assert_cmphex(syscfg_readl(SYSCFG_EXTICR1), ==, 0x00000000); in test_set_and_clear() 220 syscfg_writel(SYSCFG_EXTICR1, 0x00000010); in test_interrupt() 230 syscfg_writel(SYSCFG_EXTICR1, 0x00000000); in test_interrupt() [all …]
|
/openbmc/qemu/hw/misc/ |
H A D | stm32f4xx_syscfg.c | 74 case SYSCFG_EXTICR1...SYSCFG_EXTICR4: in stm32f4xx_syscfg_read() 75 return s->syscfg_exticr[addr / 4 - SYSCFG_EXTICR1 / 4]; in stm32f4xx_syscfg_read() 104 case SYSCFG_EXTICR1...SYSCFG_EXTICR4: in stm32f4xx_syscfg_write() 105 s->syscfg_exticr[addr / 4 - SYSCFG_EXTICR1 / 4] = (value & 0xFFFF); in stm32f4xx_syscfg_write()
|
H A D | stm32l4x5_syscfg.c | 37 #define SYSCFG_EXTICR1 0x08 macro 118 case SYSCFG_EXTICR1...SYSCFG_EXTICR4: in stm32l4x5_syscfg_read() 119 return s->exticr[(addr - SYSCFG_EXTICR1) / 4]; in stm32l4x5_syscfg_read() 158 case SYSCFG_EXTICR1...SYSCFG_EXTICR4: in stm32l4x5_syscfg_write() 159 s->exticr[(addr - SYSCFG_EXTICR1) / 4] = in stm32l4x5_syscfg_write()
|
H A D | stm32f2xx_syscfg.c | 67 case SYSCFG_EXTICR1: in stm32f2xx_syscfg_read() 105 case SYSCFG_EXTICR1: in stm32f2xx_syscfg_write()
|
/openbmc/qemu/include/hw/misc/ |
H A D | stm32f2xx_syscfg.h | 33 #define SYSCFG_EXTICR1 0x08 macro
|
H A D | stm32f4xx_syscfg.h | 33 #define SYSCFG_EXTICR1 0x08 macro
|