Re: [U-Boot] [PATCH] Origen: Correct equation to calculate PLL output frequency

2013-07-01 Thread Minkyu Kang
On 01/07/13 17:41, Rajeshwari Birje wrote: > Hi Minkyu Kang, > > As per the user manual I have for EXYNOS5 it is > FOUT = MDIV * FIN / (PDIV * 2^SDIV) What is your version of manual? If possible, could you please send it to me? > > Regards, > Rajeshwari Shinde. > > On Mon, Jul 1, 2013 at 1:56

Re: [U-Boot] [PATCH] Origen: Correct equation to calculate PLL output frequency

2013-07-01 Thread Rajeshwari Birje
Hi Minkyu Kang, As per the user manual I have for EXYNOS5 it is FOUT = MDIV * FIN / (PDIV * 2^SDIV) Regards, Rajeshwari Shinde. On Mon, Jul 1, 2013 at 1:56 PM, Minkyu Kang wrote: > On 01/07/13 16:42, Rajeshwari Shinde wrote: >> EXYNOS4 user manual equation for calculating PLL output is >> FOUT=

Re: [U-Boot] [PATCH] Origen: Correct equation to calculate PLL output frequency

2013-07-01 Thread Minkyu Kang
On 01/07/13 16:42, Rajeshwari Shinde wrote: > EXYNOS4 user manual equation for calculating PLL output is > FOUT= MDIV x FIN/(PDIV x 2^(SDIV -1)) > hence updating accordingly. > > Signed-off-by: Rajeshwari Shinde > --- > arch/arm/cpu/armv7/exynos/clock.c | 11 +-- > 1 files changed, 9 i

[U-Boot] [PATCH] Origen: Correct equation to calculate PLL output frequency

2013-07-01 Thread Rajeshwari Shinde
EXYNOS4 user manual equation for calculating PLL output is FOUT= MDIV x FIN/(PDIV x 2^(SDIV -1)) hence updating accordingly. Signed-off-by: Rajeshwari Shinde --- arch/arm/cpu/armv7/exynos/clock.c | 11 +-- 1 files changed, 9 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv