linux-clk.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Gregory CLEMENT <gregory.clement@bootlin.com>
To: Richard Genoud <richard.genoud@gmail.com>
Cc: Stephen Boyd <sboyd@kernel.org>,
	 Michael Turquette <mturquette@baylibre.com>,
	 Gregory CLEMENT <gregory.clement@free-electrons.com>,
	 Ralph Sennhauser <ralph.sennhauser@gmail.com>,
	 linux-clk@vger.kernel.org,  linux-kernel@vger.kernel.org
Subject: Re: [PATCH] clk: mvebu: armada-38x: add support for missing clocks
Date: Thu, 08 Mar 2018 14:23:43 +0100	[thread overview]
Message-ID: <877eqm4s68.fsf@bootlin.com> (raw)
In-Reply-To: <87h8pq4s92.fsf@bootlin.com> (Gregory CLEMENT's message of "Thu, 08 Mar 2018 14:22:01 +0100")

Hi,
 
 On jeu., mars 08 2018, Gregory CLEMENT <gregory.clement@bootlin.com> wrote:

> Hi Richard,
>  
>  On jeu., mars 08 2018, Richard Genoud <richard.genoud@gmail.com> wrote:
>
>> Clearfog boards can come with a CPU clocked at 1600MHz (commercial)
>> or 1333MHz (industrial).
>>
>> They have also some dip-switches to select a different clock (666, 800,
>> 1066, 1200).
>
> The patch looks goo and it will also be usefull for any other board
> using these frequencies, thanks for this. I have only one small comment,
> see below.


I forgot to mention that you can add my

Acked-by: Gregory CLEMENT <gregory.clement@bootlin.com>

Thanks,

Gregory

>
>
>>
>> The funny thing is that the recovery button is on the MPP34 fq selector.
>> So, when booting an industrial board with this button down, the frequency
>> 666MHz is selected (and the kernel didn't boot).
>>
>> This patch add all the missing clocks.
>>
>> The only mode I didn't test is 2GHz (uboot found 4294MHz instead :/ ).
>>
>> Signed-off-by: Richard Genoud <richard.genoud@gmail.com>
>> ---
>>  drivers/clk/mvebu/armada-38x.c | 14 +++++++-------
>>  1 file changed, 7 insertions(+), 7 deletions(-)
>>
>> diff --git a/drivers/clk/mvebu/armada-38x.c b/drivers/clk/mvebu/armada-38x.c
>> index 394aa6f03f01..9ff4ea63932d 100644
>> --- a/drivers/clk/mvebu/armada-38x.c
>> +++ b/drivers/clk/mvebu/armada-38x.c
>> @@ -46,11 +46,11 @@ static u32 __init armada_38x_get_tclk_freq(void __iomem *sar)
>>  }
>>  
>>  static const u32 armada_38x_cpu_frequencies[] __initconst = {
>> -	0, 0, 0, 0,
>> -	1066 * 1000 * 1000, 0, 0, 0,
>> +	666 * 1000 * 1000,  0, 800 * 1000 * 1000, 0,
>> +	1066 * 1000 * 1000, 0, 1200 * 1000 * 1000, 0,
>>  	1332 * 1000 * 1000, 0, 0, 0,
>>  	1600 * 1000 * 1000, 0, 0, 0,
>> -	1866 * 1000 * 1000,
>> +	1866 * 1000 * 1000, 0, 0, 2000 * 1000 * 1000,
>
> Maybe you could add a comment here to say that the 2GHz mode didn't have
> been tested.
>
> Thanks,
> Gregory
>
>
>>  };
>>  
>>  static u32 __init armada_38x_get_cpu_freq(void __iomem *sar)
>> @@ -76,11 +76,11 @@ static const struct coreclk_ratio armada_38x_coreclk_ratios[] __initconst = {
>>  };
>>  
>>  static const int armada_38x_cpu_l2_ratios[32][2] __initconst = {
>> -	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>> -	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>> -	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>> +	{1, 2}, {0, 1}, {1, 2}, {0, 1},
>> +	{1, 2}, {0, 1}, {1, 2}, {0, 1},
>>  	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>>  	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>> +	{1, 2}, {0, 1}, {0, 1}, {1, 2},
>>  	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>>  	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>>  	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>> @@ -91,7 +91,7 @@ static const int armada_38x_cpu_ddr_ratios[32][2] __initconst = {
>>  	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>>  	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>>  	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>> -	{1, 2}, {0, 1}, {0, 1}, {0, 1},
>> +	{1, 2}, {0, 1}, {0, 1}, {7, 15},
>>  	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>>  	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>>  	{0, 1}, {0, 1}, {0, 1}, {0, 1},
>
> -- 
> Gregory Clement, Bootlin (formerly Free Electrons)
> Embedded Linux and Kernel engineering
> http://bootlin.com

-- 
Gregory Clement, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
http://bootlin.com

  reply	other threads:[~2018-03-08 13:23 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-08  9:03 [PATCH] clk: mvebu: armada-38x: add support for missing clocks Richard Genoud
2018-03-08 13:22 ` Gregory CLEMENT
2018-03-08 13:23   ` Gregory CLEMENT [this message]
2018-03-13 10:20     ` Richard Genoud
2018-03-13 10:32       ` Gregory CLEMENT

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=877eqm4s68.fsf@bootlin.com \
    --to=gregory.clement@bootlin.com \
    --cc=gregory.clement@free-electrons.com \
    --cc=linux-clk@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=ralph.sennhauser@gmail.com \
    --cc=richard.genoud@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;
as well as URLs for NNTP newsgroup(s).