linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: ben.dooks@codethink.co.uk (Ben Dooks)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/5] clk: mvebu: Add core-divider clock
Date: Thu, 26 Sep 2013 17:55:34 +0100	[thread overview]
Message-ID: <52446706.2060909@codethink.co.uk> (raw)
In-Reply-To: <20130926151240.GB4583@localhost>

On 26/09/13 16:12, Ezequiel Garcia wrote:
> On Thu, Sep 26, 2013 at 10:24:04AM +0200, Andrew Lunn wrote:
>> Hi Ezequiel
>>
>>> +static int clk_corediv_enable(struct clk_hw *hwclk)
>>> +{
>>> +	struct clk_corediv *corediv = to_corediv_clk(hwclk);
>>> +	struct clk_corediv_desc *desc =&corediv->desc;
>>> +	u32 reg;
>>> +
>>> +	reg = readl(corediv->reg);
>>> +	reg |= (BIT(desc->fieldbit)<<  CORE_CLOCK_DIVIDER_ENABLE_OFFSET);
>>> +	writel(reg, corediv->reg);
>>> +	return 0;
>>> +}
>>
>> Shouldn't there be spinlocks around these register accesses? At least
>> the core gate clk driver has a spinlock.
>>
>
> Indeed.
>
>>> +static long clk_corediv_round_rate(struct clk_hw *hwclk, unsigned long rate,
>>> +	     				          unsigned long *parent_rate)
>>> +{
>>> +	/* Valid ratio are 1:4, 1:5, 1:6 and 1:8 */
>>> +	u32 div;
>>> +
>>> +	div = *parent_rate / rate;
>>> +	if (div<= 4)
>>> +	   div = 4;
>>> +	   else if (div<= 5)
>>> +	   	div = 5;
>>> +		else if (div<= 6)
>>> +		     div = 6;
>>> +		     else
>>> +			div = 8;
>>> +
>>> +	return *parent_rate / div;
>>> +}
>>
>> This looks odd. Is not the following clearer?
>>
>> 	div = *parent_rate / rate;
>> 	if (div<  5)
>> 	   div = 4;
>> 	   else if (div>  6)
>> 		div = 8;
>>
>> The CodingStyle might require some {} here?
>>
>
> Mmmm... no, it's not at all clearer to me.
> IMHO, the original construction explicitly show the possible ratios:
>
> 	/* If it's smaller than or equal to 4, set to 4 */
> 	if (div<= 4)
> 		div = 4;
>
> 	/* Otherwise, if it's between 4 and 5, set to 5 */
> 	else if (div<= 5)
> 	 	div = 5;

how can an integer be between 4 and 5? surely it is 4 or 5.

> 	/* Otherwise, if it's between 5 and 6, set to 6 */
> 	else if (div<= 6)
> 		div = 6;

see above.

> 	/* Otherwise, if it's bigger than 6, set to 8 */
> 	else
> 		div = 8;
>
> (And I don't think we need any braces).
>
> Is this not clear?
>
>> +   /*
>> +    * Wait for clocks to settle down, and then clear all the
>> +     * ratios request and the reload request.
>> +      */
>> +      udelay(1000);
>> +      reg&= ~(CORE_CLOCK_DIVIDER_RATIO_MASK | CORE_CLOCK_DIVIDER_RATIO_RELOAD);
>> +      writel(reg, corediv->reg);
>> +      udelay(1000);
>>
>>
>> Documentation/timers/timers-howto.txt says:
>>
>>         SLEEPING FOR ~USECS OR SMALL MSECS ( 10us - 20ms):
>>         		* Use usleep_range
>>
>
> Right, forgot about that as well...
>
> Thanks for the feedback!


-- 
Ben Dooks				http://www.codethink.co.uk/
Senior Engineer				Codethink - Providing Genius

  parent reply	other threads:[~2013-09-26 16:55 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-09-25 21:28 [PATCH 0/5] Add Core Divider clock support for Armada 370/XP Ezequiel Garcia
2013-09-25 21:28 ` [PATCH 1/5] clk: mvebu: Add core-divider clock Ezequiel Garcia
2013-09-25 21:28 ` [PATCH 2/5] ARM: mvebu: Add Core Divider clock device-tree binding Ezequiel Garcia
2013-09-25 21:28 ` [PATCH 3/5] ARM: mvebu: Add a 2 GHz fixed-clock Armada 370/XP Ezequiel Garcia
2013-09-25 21:28 ` [PATCH 4/5] ARM: mvebu: Add the core-divider clock to " Ezequiel Garcia
2013-09-25 21:28 ` [PATCH 5/5] ARM: mvebu: Add NAND " Ezequiel Garcia
2013-09-25 21:37 ` [PATCH 0/5] Add Core Divider clock support for " Ezequiel Garcia
2013-09-26  7:38   ` Gregory CLEMENT
2013-09-26 15:26     ` Ezequiel Garcia
2013-09-26 15:47       ` Thomas Petazzoni
2013-09-26 16:00         ` Ezequiel Garcia
2013-09-26 16:12           ` Thomas Petazzoni
2013-09-26  8:24   ` [PATCH 1/5] clk: mvebu: Add core-divider clock Andrew Lunn
2013-09-26 15:12     ` Ezequiel Garcia
2013-09-26 15:56       ` Andrew Lunn
2013-09-26 16:55       ` Ben Dooks [this message]
2013-09-26 18:29     ` Ezequiel Garcia
2013-09-26  8:36   ` [PATCH 2/5] ARM: mvebu: Add Core Divider clock device-tree binding Andrew Lunn
2013-09-26 15:04     ` Ezequiel Garcia

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=52446706.2060909@codethink.co.uk \
    --to=ben.dooks@codethink.co.uk \
    --cc=linux-arm-kernel@lists.infradead.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).