1 /* arch/arm/plat-s5pc1xx/include/plat/pll.h
3 * Copyright 2009 Samsung Electronics Co.
4 * Byungho Min <bhmin@samsung.com>
8 * Based on plat-s3c64xx/include/plat/pll.h
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #define S5P_PLL_MDIV_MASK ((1 << (25-16+1)) - 1)
16 #define S5P_PLL_PDIV_MASK ((1 << (13-8+1)) - 1)
17 #define S5P_PLL_SDIV_MASK ((1 << (2-0+1)) - 1)
18 #define S5P_PLL_MDIV_SHIFT (16)
19 #define S5P_PLL_PDIV_SHIFT (8)
20 #define S5P_PLL_SDIV_SHIFT (0)
22 #include <asm/div64.h>
24 static inline unsigned long s5pc1xx_get_pll(unsigned long baseclk
,
30 mdiv
= (pllcon
>> S5P_PLL_MDIV_SHIFT
) & S5P_PLL_MDIV_MASK
;
31 pdiv
= (pllcon
>> S5P_PLL_PDIV_SHIFT
) & S5P_PLL_PDIV_MASK
;
32 sdiv
= (pllcon
>> S5P_PLL_SDIV_SHIFT
) & S5P_PLL_SDIV_MASK
;
35 do_div(fvco
, (pdiv
<< sdiv
));
37 return (unsigned long)fvco
;