Lines Matching refs:rtsr
256 unsigned int type, u32 *rtsr, u32 *ftsr) in stm32_exti_set_type() argument
262 *rtsr |= mask; in stm32_exti_set_type()
266 *rtsr &= ~mask; in stm32_exti_set_type()
270 *rtsr |= mask; in stm32_exti_set_type()
321 u32 rtsr, ftsr; in stm32_irq_set_type() local
330 rtsr = irq_reg_readl(gc, stm32_bank->rtsr_ofst); in stm32_irq_set_type()
333 err = stm32_exti_set_type(d, type, &rtsr, &ftsr); in stm32_irq_set_type()
337 irq_reg_writel(gc, rtsr, stm32_bank->rtsr_ofst); in stm32_irq_set_type()
508 u32 rtsr, ftsr; in stm32_exti_h_set_type() local
517 rtsr = readl_relaxed(base + stm32_bank->rtsr_ofst); in stm32_exti_h_set_type()
520 err = stm32_exti_set_type(d, type, &rtsr, &ftsr); in stm32_exti_h_set_type()
524 writel_relaxed(rtsr, base + stm32_bank->rtsr_ofst); in stm32_exti_h_set_type()