From: Miquel Raynal Date: Tue, 10 Sep 2024 09:13:59 +0000 (+0200) Subject: pwm: imx: Don't drop the enable bit once set X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=5748aa1e372d2db3db6bf3e863f4571bf2ffedb9;p=u-boot.git pwm: imx: Don't drop the enable bit once set Changing the duty-cycle should not blindly override (and clear) the enable (EN) bit if it has already been set. For instance, a PWM backlight can be enabled and set to a specific intensity using two operations. The order of these operations should not matter. Signed-off-by: Miquel Raynal Reviewed-by: Fabio Estevam --- diff --git a/drivers/pwm/pwm-imx.c b/drivers/pwm/pwm-imx.c index 320ea7c423..bb37b39fa0 100644 --- a/drivers/pwm/pwm-imx.c +++ b/drivers/pwm/pwm-imx.c @@ -20,10 +20,11 @@ int pwm_config_internal(struct pwm_regs *pwm, unsigned long period_cycles, u32 cr; writel(0, &pwm->ir); - cr = PWMCR_PRESCALER(prescale) | + + cr = readl(&pwm->cr) & PWMCR_EN; + cr |= PWMCR_PRESCALER(prescale) | PWMCR_DOZEEN | PWMCR_WAITEN | PWMCR_DBGEN | PWMCR_CLKSRC_IPG_HIGH; - writel(cr, &pwm->cr); /* set duty cycles */ writel(duty_cycles, &pwm->sar);