diff mbox

[U-Boot] powerpc/85xx: Fix determining Fman freq on P1023

Message ID 1300030264-3492-1-git-send-email-galak@kernel.crashing.org
State Accepted
Commit 939cdcdc622840d43dd01b6a9509abcb6f4c24f6
Delegated to: Kumar Gala
Headers show

Commit Message

Kumar Gala March 13, 2011, 3:31 p.m. UTC
On the P1023 the Fman freq is equivalent to the system bus freq, not 1/2
of it.  Also we only have one Fman so no need for the code to deal with
a second.

Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
 arch/powerpc/cpu/mpc85xx/speed.c |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

Comments

Kumar Gala March 25, 2011, 1:59 p.m. UTC | #1
On Mar 13, 2011, at 10:31 AM, Kumar Gala wrote:

> On the P1023 the Fman freq is equivalent to the system bus freq, not 1/2
> of it.  Also we only have one Fman so no need for the code to deal with
> a second.
> 
> Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
> ---
> arch/powerpc/cpu/mpc85xx/speed.c |    5 +----
> 1 files changed, 1 insertions(+), 4 deletions(-)

applied to 85xx next

- k
diff mbox

Patch

diff --git a/arch/powerpc/cpu/mpc85xx/speed.c b/arch/powerpc/cpu/mpc85xx/speed.c
index 2caff4b..c4c156d 100644
--- a/arch/powerpc/cpu/mpc85xx/speed.c
+++ b/arch/powerpc/cpu/mpc85xx/speed.c
@@ -196,10 +196,7 @@  void get_sys_info (sys_info_t * sysInfo)
 #endif
 
 #ifdef CONFIG_SYS_DPAA_FMAN
-		sysInfo->freqFMan[0] = sysInfo->freqSystemBus / 2;
-#if (CONFIG_SYS_NUM_FMAN) == 2
-		sysInfo->freqFMan[1] = sysInfo->freqSystemBus / 2;
-#endif
+		sysInfo->freqFMan[0] = sysInfo->freqSystemBus;
 #endif
 
 #endif /* CONFIG_FSL_CORENET */