diff options
author | Eric Miao <eric.y.miao@gmail.com> | 2010-11-21 21:49:55 -0500 |
---|---|---|
committer | Eric Miao <eric.y.miao@gmail.com> | 2010-12-16 01:31:19 -0500 |
commit | 4029813c89926ae5d78cc2dff49d845d934424f6 (patch) | |
tree | eaa7e075d3f369aa710ae4e26fdf80ab9cdd588b /arch/arm/mach-pxa/clock-pxa2xx.c | |
parent | 2e8581e756ddbd0dea8b0d4059e9a82d2929de01 (diff) |
ARM: pxa: separate the clock support into clock-{pxa2xx,pxa3xx}.c
Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
Diffstat (limited to 'arch/arm/mach-pxa/clock-pxa2xx.c')
-rw-r--r-- | arch/arm/mach-pxa/clock-pxa2xx.c | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/arch/arm/mach-pxa/clock-pxa2xx.c b/arch/arm/mach-pxa/clock-pxa2xx.c new file mode 100644 index 000000000000..416b3f06efb7 --- /dev/null +++ b/arch/arm/mach-pxa/clock-pxa2xx.c | |||
@@ -0,0 +1,30 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/mach-pxa/clock-pxa2xx.c | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License version 2 as | ||
6 | * published by the Free Software Foundation. | ||
7 | */ | ||
8 | |||
9 | #include <linux/module.h> | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/init.h> | ||
12 | |||
13 | #include <mach/pxa2xx-regs.h> | ||
14 | |||
15 | #include "clock.h" | ||
16 | |||
17 | void clk_pxa2xx_cken_enable(struct clk *clk) | ||
18 | { | ||
19 | CKEN |= 1 << clk->cken; | ||
20 | } | ||
21 | |||
22 | void clk_pxa2xx_cken_disable(struct clk *clk) | ||
23 | { | ||
24 | CKEN &= ~(1 << clk->cken); | ||
25 | } | ||
26 | |||
27 | const struct clkops clk_pxa2xx_cken_ops = { | ||
28 | .enable = clk_pxa2xx_cken_enable, | ||
29 | .disable = clk_pxa2xx_cken_disable, | ||
30 | }; | ||