diff mbox

[2/2] ARM: at91: clock: fix PLLA overclocked warning

Message ID 1341825375-9143-1-git-send-email-jiri.prchal@aksignal.cz (mailing list archive)
State New, archived
Headers show

Commit Message

Jiri Prchal July 9, 2012, 9:16 a.m. UTC
This patch fix false warning "PLLA overclocked". Maximum frequency for sam9260 is 210MHz as stated in atmel's datasheet. Originally there was plus 4.5%, so I add this 4.5% to new value too.

Signed-off-by: Jiri Prchal <jiri.prchal@aksignal.cz>
---
 arch/arm/mach-at91/clock.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Nicolas Ferre July 9, 2012, 2:52 p.m. UTC | #1
Hi Jiri,

On 07/09/2012 11:16 AM, Jiri Prchal :
> This patch fix false warning "PLLA overclocked". Maximum frequency
> for sam9260 is 210MHz as stated in atmel's datasheet. Originally there was
> plus 4.5%, so I add this 4.5% to new value too.

Well, I do not see this 4.5% in addition. It is true that Maximum
frequency had been indicated as higher but current value is 210MHz if
VDD core is @ 1.8V (for industrial temperature range).

> Signed-off-by: Jiri Prchal <jiri.prchal@aksignal.cz>
> ---
>  arch/arm/mach-at91/clock.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/mach-at91/clock.c b/arch/arm/mach-at91/clock.c
> index de2ec6b..e004308 100644
> --- a/arch/arm/mach-at91/clock.c
> +++ b/arch/arm/mach-at91/clock.c
> @@ -707,7 +707,7 @@ static int __init at91_pmc_init(unsigned long main_clock)
>  		if (plla.rate_hz > 800000000)
>  			pll_overclock = true;
>  	} else {
> -		if (plla.rate_hz > 209000000)
> +		if (plla.rate_hz > 219000000)

Well, I rework this patch using 210 MHz as stated in datasheet. We shall
keep this 209 MHz test because at91rm9200 is still using this value.
Moreover, I add a new category for 240 MHz.

>  			pll_overclock = true;
>  	}
>  	if (pll_overclock)

Thanks, best regards,
diff mbox

Patch

diff --git a/arch/arm/mach-at91/clock.c b/arch/arm/mach-at91/clock.c
index de2ec6b..e004308 100644
--- a/arch/arm/mach-at91/clock.c
+++ b/arch/arm/mach-at91/clock.c
@@ -707,7 +707,7 @@  static int __init at91_pmc_init(unsigned long main_clock)
 		if (plla.rate_hz > 800000000)
 			pll_overclock = true;
 	} else {
-		if (plla.rate_hz > 209000000)
+		if (plla.rate_hz > 219000000)
 			pll_overclock = true;
 	}
 	if (pll_overclock)