All of lore.kernel.org
 help / color / mirror / Atom feed
From: Manivannan Sadhasivam <mani@kernel.org>
To: "Jonathan Neuschäfer" <j.neuschaefer@gmx.net>
Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-mips@vger.kernel.org,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Andreas Färber" <afaerber@suse.de>,
	"Saravanan Sekar" <sravanhome@gmail.com>,
	"Parthiban Nallathambi" <pn@denx.de>,
	linux-actions@lists.infradead.org
Subject: Re: [PATCH v2 1/4] clk: actions: Terminate clk_div_table with sentinel element
Date: Thu, 3 Feb 2022 21:42:10 +0530	[thread overview]
Message-ID: <20220203161210.GA138829@thinkpad> (raw)
In-Reply-To: <20220203142153.260720-2-j.neuschaefer@gmx.net>

On Thu, Feb 03, 2022 at 03:21:50PM +0100, Jonathan Neuschäfer wrote:
> In order that the end of a clk_div_table can be detected, it must be
> terminated with a sentinel element (.div = 0).
> 
> Fixes: d47317ca4ade1 ("clk: actions: Add S700 SoC clock support")
> Fixes: d85d20053e195 ("clk: actions: Add S900 SoC clock support")
> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> ---
> 
> I'm not so sure about usb3_mac_div_table. Maybe the { 0, 8 } element was
> meant to be { 0, 0 }? I'd appreciate if someone with access to the
> datasheet or hardware could verify what's correct.

USB3 factor table is not documented in the datasheet I have access to. But by
looking at the value, it looks to be a typo. So please change the last entry.
With that,

Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>

Thanks,
Mani

> 
> v2:
> - Add Fixes tags
> ---
>  drivers/clk/actions/owl-s700.c | 1 +
>  drivers/clk/actions/owl-s900.c | 4 ++--
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/actions/owl-s700.c b/drivers/clk/actions/owl-s700.c
> index a2f34d13fb543..617174644f728 100644
> --- a/drivers/clk/actions/owl-s700.c
> +++ b/drivers/clk/actions/owl-s700.c
> @@ -162,6 +162,7 @@ static struct clk_div_table hdmia_div_table[] = {
> 
>  static struct clk_div_table rmii_div_table[] = {
>  	{0, 4},   {1, 10},
> +	{0, 0},
>  };
> 
>  /* divider clocks */
> diff --git a/drivers/clk/actions/owl-s900.c b/drivers/clk/actions/owl-s900.c
> index 790890978424a..f6f49100a865b 100644
> --- a/drivers/clk/actions/owl-s900.c
> +++ b/drivers/clk/actions/owl-s900.c
> @@ -139,8 +139,8 @@ static struct clk_div_table rmii_ref_div_table[] = {
>  };
> 
>  static struct clk_div_table usb3_mac_div_table[] = {
> -	{ 1, 2 }, { 2, 3 }, { 3, 4 },
> -	{ 0, 8 },
> +	{ 1, 2 }, { 2, 3 }, { 3, 4 }, { 0, 8 },
> +	{ 0, 0 },
>  };
> 
>  static struct clk_div_table i2s_div_table[] = {
> --
> 2.34.1
> 

WARNING: multiple messages have this Message-ID (diff)
From: Manivannan Sadhasivam <mani@kernel.org>
To: "Jonathan Neuschäfer" <j.neuschaefer@gmx.net>
Cc: linux-clk@vger.kernel.org, linux-kernel@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, linux-mips@vger.kernel.org,
	"Michael Turquette" <mturquette@baylibre.com>,
	"Stephen Boyd" <sboyd@kernel.org>,
	"Andreas Färber" <afaerber@suse.de>,
	"Saravanan Sekar" <sravanhome@gmail.com>,
	"Parthiban Nallathambi" <pn@denx.de>,
	linux-actions@lists.infradead.org
Subject: Re: [PATCH v2 1/4] clk: actions: Terminate clk_div_table with sentinel element
Date: Thu, 3 Feb 2022 21:42:10 +0530	[thread overview]
Message-ID: <20220203161210.GA138829@thinkpad> (raw)
In-Reply-To: <20220203142153.260720-2-j.neuschaefer@gmx.net>

On Thu, Feb 03, 2022 at 03:21:50PM +0100, Jonathan Neuschäfer wrote:
> In order that the end of a clk_div_table can be detected, it must be
> terminated with a sentinel element (.div = 0).
> 
> Fixes: d47317ca4ade1 ("clk: actions: Add S700 SoC clock support")
> Fixes: d85d20053e195 ("clk: actions: Add S900 SoC clock support")
> Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
> ---
> 
> I'm not so sure about usb3_mac_div_table. Maybe the { 0, 8 } element was
> meant to be { 0, 0 }? I'd appreciate if someone with access to the
> datasheet or hardware could verify what's correct.

USB3 factor table is not documented in the datasheet I have access to. But by
looking at the value, it looks to be a typo. So please change the last entry.
With that,

Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>

Thanks,
Mani

> 
> v2:
> - Add Fixes tags
> ---
>  drivers/clk/actions/owl-s700.c | 1 +
>  drivers/clk/actions/owl-s900.c | 4 ++--
>  2 files changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/clk/actions/owl-s700.c b/drivers/clk/actions/owl-s700.c
> index a2f34d13fb543..617174644f728 100644
> --- a/drivers/clk/actions/owl-s700.c
> +++ b/drivers/clk/actions/owl-s700.c
> @@ -162,6 +162,7 @@ static struct clk_div_table hdmia_div_table[] = {
> 
>  static struct clk_div_table rmii_div_table[] = {
>  	{0, 4},   {1, 10},
> +	{0, 0},
>  };
> 
>  /* divider clocks */
> diff --git a/drivers/clk/actions/owl-s900.c b/drivers/clk/actions/owl-s900.c
> index 790890978424a..f6f49100a865b 100644
> --- a/drivers/clk/actions/owl-s900.c
> +++ b/drivers/clk/actions/owl-s900.c
> @@ -139,8 +139,8 @@ static struct clk_div_table rmii_ref_div_table[] = {
>  };
> 
>  static struct clk_div_table usb3_mac_div_table[] = {
> -	{ 1, 2 }, { 2, 3 }, { 3, 4 },
> -	{ 0, 8 },
> +	{ 1, 2 }, { 2, 3 }, { 3, 4 }, { 0, 8 },
> +	{ 0, 0 },
>  };
> 
>  static struct clk_div_table i2s_div_table[] = {
> --
> 2.34.1
> 

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  reply	other threads:[~2022-02-03 16:12 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-02-03 14:21 [PATCH v2 0/4] clk drivers: Terminate clk_div_table with sentinel element Jonathan Neuschäfer
2022-02-03 14:21 ` Jonathan Neuschäfer
2022-02-03 14:21 ` [PATCH v2 1/4] clk: actions: " Jonathan Neuschäfer
2022-02-03 14:21   ` Jonathan Neuschäfer
2022-02-03 16:12   ` Manivannan Sadhasivam [this message]
2022-02-03 16:12     ` Manivannan Sadhasivam
2022-02-04 23:57     ` Jonathan Neuschäfer
2022-02-04 23:57       ` Jonathan Neuschäfer
2022-02-03 14:21 ` [PATCH v2 2/4] clk: loongson1: " Jonathan Neuschäfer
2022-02-03 14:21   ` Jonathan Neuschäfer
2022-02-03 14:21 ` [PATCH v2 3/4] clk: hisilicon: " Jonathan Neuschäfer
2022-02-03 14:21   ` Jonathan Neuschäfer
2022-02-03 14:21 ` [PATCH v2 4/4] clk: clps711x: " Jonathan Neuschäfer
2022-02-03 14:21   ` Jonathan Neuschäfer

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=20220203161210.GA138829@thinkpad \
    --to=mani@kernel.org \
    --cc=afaerber@suse.de \
    --cc=j.neuschaefer@gmx.net \
    --cc=linux-actions@lists.infradead.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=pn@denx.de \
    --cc=sboyd@kernel.org \
    --cc=sravanhome@gmail.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.