diff options
author | Werner Almesberger <werner@openmoko.org> | 2009-03-04 22:43:13 -0500 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-07 06:14:27 -0400 |
commit | a03f7daf6df31b4d849031c51a3c10b8ba78ce67 (patch) | |
tree | 1a9d4d5fd2a3a28d892374c2bb5fea0eb53e2c40 /arch/arm/plat-s3c64xx/clock.c | |
parent | e2c977dca2901012ddabdc2a7b3c47a80c94d431 (diff) |
[ARM] S3C64XX: Add HCLKx2
Add doubled HCLK to S3C64xx.
Signed-off-by: Werner Almesberger <werner@openmoko.org>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c64xx/clock.c')
-rw-r--r-- | arch/arm/plat-s3c64xx/clock.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c64xx/clock.c b/arch/arm/plat-s3c64xx/clock.c index ad1b9682c9c3..679076f5071a 100644 --- a/arch/arm/plat-s3c64xx/clock.c +++ b/arch/arm/plat-s3c64xx/clock.c | |||
@@ -27,6 +27,12 @@ | |||
27 | #include <plat/devs.h> | 27 | #include <plat/devs.h> |
28 | #include <plat/clock.h> | 28 | #include <plat/clock.h> |
29 | 29 | ||
30 | struct clk clk_h2 = { | ||
31 | .name = "hclk2", | ||
32 | .id = -1, | ||
33 | .rate = 0, | ||
34 | }; | ||
35 | |||
30 | struct clk clk_27m = { | 36 | struct clk clk_27m = { |
31 | .name = "clk_27m", | 37 | .name = "clk_27m", |
32 | .id = -1, | 38 | .id = -1, |
@@ -246,6 +252,7 @@ static struct clk *clks[] __initdata = { | |||
246 | &clk_epll, | 252 | &clk_epll, |
247 | &clk_27m, | 253 | &clk_27m, |
248 | &clk_48m, | 254 | &clk_48m, |
255 | &clk_h2, | ||
249 | }; | 256 | }; |
250 | 257 | ||
251 | void __init s3c64xx_register_clocks(void) | 258 | void __init s3c64xx_register_clocks(void) |