Home
last modified time | relevance | path

Searched refs:STM32_LPTIM_PRESC (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/pwm/
H A Dpwm-stm32-lp.c111 presc = FIELD_GET(STM32_LPTIM_PRESC, cfgr); in stm32_pwm_lp_compare_channel_apply()
202 if ((FIELD_GET(STM32_LPTIM_PRESC, cfgr) != presc) || (arr != prd - 1)) in stm32_pwm_lp_apply()
213 if ((FIELD_GET(STM32_LPTIM_PRESC, cfgr) != presc) || in stm32_pwm_lp_apply()
215 val = FIELD_PREP(STM32_LPTIM_PRESC, presc); in stm32_pwm_lp_apply()
216 mask = STM32_LPTIM_PRESC; in stm32_pwm_lp_apply()
325 presc = FIELD_GET(STM32_LPTIM_PRESC, val); in stm32_pwm_lp_get_state()
/linux/include/linux/mfd/
H A Dstm32-lptimer.h55 #define STM32_LPTIM_PRESC GENMASK(11, 9) macro