From: Kumar Gala <galak@kernel.crashing.org>
Date: Thu, 10 Mar 2011 12:09:20 +0000 (-0600)
Subject: powerpc/85xx: Fix determining Fman freq on P1023
X-Git-Tag: v2025.01-rc5-pxa1908~19589^2~10
X-Git-Url: http://git.dujemihanovic.xyz/img/%7B%7B%20.RelPermalink%20%7D%7D?a=commitdiff_plain;h=939cdcdc622840d43dd01b6a9509abcb6f4c24f6;p=u-boot.git

powerpc/85xx: Fix determining Fman freq on P1023

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>
---

diff --git a/arch/powerpc/cpu/mpc85xx/speed.c b/arch/powerpc/cpu/mpc85xx/speed.c
index f26de6cd3e..e530494102 100644
--- a/arch/powerpc/cpu/mpc85xx/speed.c
+++ b/arch/powerpc/cpu/mpc85xx/speed.c
@@ -190,10 +190,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 */