Lines Matching refs:rtsr
248 unsigned int type, u32 *rtsr, u32 *ftsr) in stm32_exti_set_type() argument
254 *rtsr |= mask; in stm32_exti_set_type()
258 *rtsr &= ~mask; in stm32_exti_set_type()
262 *rtsr |= mask; in stm32_exti_set_type()
277 u32 rtsr, ftsr; in stm32_irq_set_type() local
282 rtsr = irq_reg_readl(gc, stm32_bank->rtsr_ofst); in stm32_irq_set_type()
285 err = stm32_exti_set_type(d, type, &rtsr, &ftsr); in stm32_irq_set_type()
291 irq_reg_writel(gc, rtsr, stm32_bank->rtsr_ofst); in stm32_irq_set_type()
459 u32 rtsr, ftsr; in stm32_exti_h_set_type() local
463 rtsr = readl_relaxed(base + stm32_bank->rtsr_ofst); in stm32_exti_h_set_type()
466 err = stm32_exti_set_type(d, type, &rtsr, &ftsr); in stm32_exti_h_set_type()
472 writel_relaxed(rtsr, base + stm32_bank->rtsr_ofst); in stm32_exti_h_set_type()