diff options
author | Minkyu Kang <mk7.kang@samsung.com> | 2010-08-24 15:51:55 +0900 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2010-08-30 14:44:16 +0900 |
commit | f70409aff3a10e22ff9c66f87e9cbc3de7cbd7f7 (patch) | |
tree | c8b7d4b4127f3d908b403d230940a9c122ed44e8 /arch/arm/include/asm | |
parent | 545dabbeef56ffea33cedee56067edacd9fb90f0 (diff) | |
download | u-boot-imx-f70409aff3a10e22ff9c66f87e9cbc3de7cbd7f7.zip u-boot-imx-f70409aff3a10e22ff9c66f87e9cbc3de7cbd7f7.tar.gz u-boot-imx-f70409aff3a10e22ff9c66f87e9cbc3de7cbd7f7.tar.bz2 |
ARMV7: S5P: separate the peripheral clocks
Because of peripheral devices can select clock sources,
separate the peripheral clocks. (pwm, uart and so on)
It just return the pclk at s5pc1xx SoC,
but s5pc210 SoC must be calculated by own clock register setting.
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Diffstat (limited to 'arch/arm/include/asm')
-rw-r--r-- | arch/arm/include/asm/arch-s5pc1xx/clk.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/include/asm/arch-s5pc1xx/clk.h b/arch/arm/include/asm/arch-s5pc1xx/clk.h index c25e17a..3488eb7 100644 --- a/arch/arm/include/asm/arch-s5pc1xx/clk.h +++ b/arch/arm/include/asm/arch-s5pc1xx/clk.h @@ -33,6 +33,7 @@ void s5p_clock_init(void); extern unsigned long (*get_pll_clk)(int pllreg); extern unsigned long (*get_arm_clk)(void); -extern unsigned long (*get_pclk)(void); +extern unsigned long (*get_pwm_clk)(void); +extern unsigned long (*get_uart_clk)(int dev_index); #endif |