diff options
author | Seungwhan Youn <sw.youn@samsung.com> | 2010-10-19 18:10:53 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2010-10-25 16:10:37 +0900 |
commit | 313068fd3c23f5a6126e8dc8add84c018473e5ce (patch) | |
tree | cdb6890e8705ba9129be53551726c575d47f6748 /arch/arm/mach-s5pv210 | |
parent | 06185c07621263ee1665d4a4e27a9782a677bcf9 (diff) |
ARM: S5PV210: Add DMA operation clock
This patch adds DMA operation clock which is disabled as default.
Signed-off-by: Seungwhan Youn <sw.youn@samsung.com>
Acked-by: Jassi Brar <jassi.brar@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-s5pv210')
-rw-r--r-- | arch/arm/mach-s5pv210/clock.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pv210/clock.c b/arch/arm/mach-s5pv210/clock.c index 38ad7e55ab1..019c3a69b0e 100644 --- a/arch/arm/mach-s5pv210/clock.c +++ b/arch/arm/mach-s5pv210/clock.c @@ -311,6 +311,18 @@ static struct clk_ops clk_fout_apll_ops = { static struct clk init_clocks_disable[] = { { + .name = "pdma", + .id = 0, + .parent = &clk_hclk_psys.clk, + .enable = s5pv210_clk_ip0_ctrl, + .ctrlbit = (1 << 3), + }, { + .name = "pdma", + .id = 1, + .parent = &clk_hclk_psys.clk, + .enable = s5pv210_clk_ip0_ctrl, + .ctrlbit = (1 << 4), + }, { .name = "rot", .id = -1, .parent = &clk_hclk_dsys.clk, |