diff options
author | Chander Kashyap <chander.kashyap@linaro.org> | 2012-09-20 22:06:00 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-09-20 22:06:00 -0400 |
commit | 377acfbbcfd4abecdf837350e2c2906cc0a0e001 (patch) | |
tree | 8b194cc4ea5ad6afd097d9c8e5fcebc5754b832e /arch/arm/mach-exynos | |
parent | a5e0c15dc85d8dd12d25b914c0c06cc86302d7f3 (diff) |
ARM: EXYNOS: Put PCM, Slimbus, Spdif clocks to off state
The clocks for PCM, Slimbus, Spdif added to off list in order
to turn them off at boot time.
Signed-off-by: Chander Kashyap <chander.kashyap@linaro.org>
Acked-by: Thomas Abraham <thomas.abraham@linaro.org>
Acked-by: Sangbeom Kim <sbkim73@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r-- | arch/arm/mach-exynos/clock-exynos4.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos/clock-exynos4.c b/arch/arm/mach-exynos/clock-exynos4.c index 7cc5491e22b..6a45c9a9abe 100644 --- a/arch/arm/mach-exynos/clock-exynos4.c +++ b/arch/arm/mach-exynos/clock-exynos4.c | |||
@@ -627,6 +627,25 @@ static struct clk exynos4_init_clocks_off[] = { | |||
627 | .enable = exynos4_clk_ip_peril_ctrl, | 627 | .enable = exynos4_clk_ip_peril_ctrl, |
628 | .ctrlbit = (1 << 21), | 628 | .ctrlbit = (1 << 21), |
629 | }, { | 629 | }, { |
630 | .name = "pcm", | ||
631 | .devname = "samsung-pcm.1", | ||
632 | .enable = exynos4_clk_ip_peril_ctrl, | ||
633 | .ctrlbit = (1 << 22), | ||
634 | }, { | ||
635 | .name = "pcm", | ||
636 | .devname = "samsung-pcm.2", | ||
637 | .enable = exynos4_clk_ip_peril_ctrl, | ||
638 | .ctrlbit = (1 << 23), | ||
639 | }, { | ||
640 | .name = "slimbus", | ||
641 | .enable = exynos4_clk_ip_peril_ctrl, | ||
642 | .ctrlbit = (1 << 25), | ||
643 | }, { | ||
644 | .name = "spdif", | ||
645 | .devname = "samsung-spdif", | ||
646 | .enable = exynos4_clk_ip_peril_ctrl, | ||
647 | .ctrlbit = (1 << 26), | ||
648 | }, { | ||
630 | .name = "ac97", | 649 | .name = "ac97", |
631 | .devname = "samsung-ac97", | 650 | .devname = "samsung-ac97", |
632 | .enable = exynos4_clk_ip_peril_ctrl, | 651 | .enable = exynos4_clk_ip_peril_ctrl, |