linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Re: [PATCH] [RFC] pwm: sun4i: Move pwm_calculate out of spin_lock
       [not found] <20200109233106.17060-1-peron.clem@gmail.com>
@ 2020-01-10  7:13 ` Uwe Kleine-König
  0 siblings, 0 replies; only message in thread
From: Uwe Kleine-König @ 2020-01-10  7:13 UTC (permalink / raw)
  To: Clément Péron
  Cc: Thierry Reding, linux-pwm, linux-arm-kernel, Alex Mobigo,
	Vasily Khoruzhick, Michael Turquette, Stephen Boyd, linux-clk

Hello Clément,

On Fri, Jan 10, 2020 at 12:31:06AM +0100, Clément Péron wrote:
> pwm_calculate calls clk_get_rate while holding a spin_lock.
> 
> This create an issue as clk_get_rate() may sleep.

Slightly orthogonal to this issue, it might be a good idea to add a
might_sleep() to clk_get_rate(). (Added clk maintainers to Cc: for this
suggestion.)

> Move pwm_calculate out of this spin_lock.
> 
> Fixes: c32c5c50d4fe ("pwm: sun4i: Switch to atomic PWM")
> Reported-by: Alex Mobigo <alex.mobigo@gmail.com>
> Suggested-by: Vasily Khoruzhick <anarsoul@gmail.com>
> Signed-off-by: Clément Péron <peron.clem@gmail.com>
> ---
> 
> Hi,
> 
> this issue has been reported on linux-sunxi Google groups.
> 
> I don't have a board with PWM to confirm it.
> 
> Please wait a tested-by.
> 
> Thanks,
> Clément
> 
>  drivers/pwm/pwm-sun4i.c | 7 +++----
>  1 file changed, 3 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/pwm/pwm-sun4i.c b/drivers/pwm/pwm-sun4i.c
> index 1afd41ebd3fd..6b230029dc49 100644
> --- a/drivers/pwm/pwm-sun4i.c
> +++ b/drivers/pwm/pwm-sun4i.c
> @@ -248,19 +248,18 @@ static int sun4i_pwm_apply(struct pwm_chip *chip, struct pwm_device *pwm,
>  		}
>  	}
>  
> -	spin_lock(&sun4i_pwm->ctrl_lock);
> -	ctrl = sun4i_pwm_readl(sun4i_pwm, PWM_CTRL_REG);
> -
>  	ret = sun4i_pwm_calculate(sun4i_pwm, state, &duty, &period, &prescaler,
>  				  &bypass);
>  	if (ret) {
>  		dev_err(chip->dev, "period exceeds the maximum value\n");
> -		spin_unlock(&sun4i_pwm->ctrl_lock);
>  		if (!cstate.enabled)
>  			clk_disable_unprepare(sun4i_pwm->clk);
>  		return ret;
>  	}
>  
> +	spin_lock(&sun4i_pwm->ctrl_lock);
> +	ctrl = sun4i_pwm_readl(sun4i_pwm, PWM_CTRL_REG);
> +
>  	if (sun4i_pwm->data->has_direct_mod_clk_output) {
>  		if (bypass) {
>  			ctrl |= BIT_CH(PWM_BYPASS, pwm->hwpwm);

As sun4i_pwm_calculate does nothing that depends on (or modifies)
hardware state (apart from clk_get_rate(sun4i_pwm->clk) which can be
assumed to be constant) the change looks good.

Reviewed-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>

Best regards
Uwe

-- 
Pengutronix e.K.                           | Uwe Kleine-König            |
Industrial Linux Solutions                 | https://www.pengutronix.de/ |

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-01-10  7:13 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20200109233106.17060-1-peron.clem@gmail.com>
2020-01-10  7:13 ` [PATCH] [RFC] pwm: sun4i: Move pwm_calculate out of spin_lock Uwe Kleine-König

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).