public inbox for linux-clk@vger.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Marek Vasut <marek.vasut@gmail.com>
Cc: linux-clk@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
	Marek Vasut <marek.vasut+renesas@gmail.com>,
	Alexey Firago <alexey_firago@mentor.com>,
	Stephen Boyd <sboyd@kernel.org>
Subject: Re: [PATCH] clk: vc5: Abort clock configuration without upstream clock
Date: Sun, 16 Dec 2018 09:19:16 +0200	[thread overview]
Message-ID: <13438812.kSL9ZioSIq@avalon> (raw)
In-Reply-To: <20181215005519.3695-1-marek.vasut+renesas@gmail.com>

Hi Marek,

Thank you for the patch.

On Saturday, 15 December 2018 02:55:19 EET Marek Vasut wrote:
> In case the upstream clock are not set, which can happen in case the
> VC5 has no valid upstream clock, the $src variable is used uninited
> by regmap_update_bits(). Check for this condition and return -EINVAL
> in such case.

Note that the probe() function will fail in this case, so vc5_mux_set_parent() 
won't be reached.

> Note that in case the VC5 has no valid upstream clock, the VC5 can
> not operate correctly. That is a hardware property of the VC5. The
> internal oscilator present in some VC5 models is also considered
> upstream clock.
> 
> Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
> Cc: Alexey Firago <alexey_firago@mentor.com>
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Stephen Boyd <sboyd@kernel.org>
> Cc: linux-renesas-soc@vger.kernel.org
> ---
> NOTE: This is an updated version of:
>       https://patchwork.kernel.org/patch/10731699/
> ---
>  drivers/clk/clk-versaclock5.c | 4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/clk-versaclock5.c b/drivers/clk/clk-versaclock5.c
> index 5b393e711e94..b10801506518 100644
> --- a/drivers/clk/clk-versaclock5.c
> +++ b/drivers/clk/clk-versaclock5.c
> @@ -262,8 +262,10 @@ static int vc5_mux_set_parent(struct clk_hw *hw, u8
> index)
> 
>  		if (vc5->clk_mux_ins == VC5_MUX_IN_XIN)
>  			src = VC5_PRIM_SRC_SHDN_EN_XTAL;
> -		if (vc5->clk_mux_ins == VC5_MUX_IN_CLKIN)
> +		else if (vc5->clk_mux_ins == VC5_MUX_IN_CLKIN)
>  			src = VC5_PRIM_SRC_SHDN_EN_CLKIN;
> +		else
> +			return -EINVAL;
>  	}

I'd rather go for Stephen's approach if the goal is just to silence a warning 
for a condition that can't happen in practice.

>  	return regmap_update_bits(vc5->regmap, VC5_PRIM_SRC_SHDN, mask, src);

-- 
Regards,

Laurent Pinchart




  reply	other threads:[~2018-12-16  7:18 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-15  0:55 [PATCH] clk: vc5: Abort clock configuration without upstream clock Marek Vasut
2018-12-16  7:19 ` Laurent Pinchart [this message]
2018-12-16 17:14   ` Marek Vasut
2018-12-28 22:30     ` Stephen Boyd
2018-12-29 16:34       ` Laurent Pinchart
2019-01-09 18:49         ` Stephen Boyd
2019-01-09 18:54 ` Stephen Boyd

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=13438812.kSL9ZioSIq@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=alexey_firago@mentor.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=marek.vasut+renesas@gmail.com \
    --cc=marek.vasut@gmail.com \
    --cc=sboyd@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox