-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ARM] S3C24XX: Split pll code out of regs-clock.h
Move the PLL calculation code into it's own header file for re-use with the other plat-s3c24xx based systems such as the S3C24A0. Note, we change the name of s3c2410_get_pll to the more generically named s3c24xx_get_pll as well as the related defintions. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
- Loading branch information
Ben Dooks
committed
Dec 15, 2008
1 parent
93bc6b6
commit e24b864
Showing
7 changed files
with
49 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
/* linux/arch/arm/plat-s3c24xx/include/plat/pll.h | ||
* | ||
* Copyright 2008 Simtec Electronics | ||
* Ben Dooks <ben@simtec.co.uk> | ||
* http://armlinux.simtec.co.uk/ | ||
* | ||
* S3C24xx - common pll registers and code | ||
*/ | ||
|
||
#define S3C24XX_PLLCON_MDIVSHIFT 12 | ||
#define S3C24XX_PLLCON_PDIVSHIFT 4 | ||
#define S3C24XX_PLLCON_SDIVSHIFT 0 | ||
#define S3C24XX_PLLCON_MDIVMASK ((1<<(1+(19-12)))-1) | ||
#define S3C24XX_PLLCON_PDIVMASK ((1<<5)-1) | ||
#define S3C24XX_PLLCON_SDIVMASK 3 | ||
|
||
#include <asm/div64.h> | ||
|
||
static inline unsigned int | ||
s3c24xx_get_pll(unsigned int pllval, unsigned int baseclk) | ||
{ | ||
unsigned int mdiv, pdiv, sdiv; | ||
uint64_t fvco; | ||
|
||
mdiv = pllval >> S3C24XX_PLLCON_MDIVSHIFT; | ||
pdiv = pllval >> S3C24XX_PLLCON_PDIVSHIFT; | ||
sdiv = pllval >> S3C24XX_PLLCON_SDIVSHIFT; | ||
|
||
mdiv &= S3C24XX_PLLCON_MDIVMASK; | ||
pdiv &= S3C24XX_PLLCON_PDIVMASK; | ||
sdiv &= S3C24XX_PLLCON_SDIVMASK; | ||
|
||
fvco = (uint64_t)baseclk * (mdiv + 8); | ||
do_div(fvco, (pdiv + 2) << sdiv); | ||
|
||
return (unsigned int)fvco; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters