2 * linux/arch/arm/mach-exynos4/clock-exynos4212.c
4 * Copyright (c) 2011 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * EXYNOS4212 - Clock support
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/kernel.h>
15 #include <linux/err.h>
16 #include <linux/clk.h>
18 #include <linux/syscore_ops.h>
20 #include <plat/cpu-freq.h>
21 #include <plat/clock.h>
24 #include <plat/s5p-clock.h>
25 #include <plat/clock-clksrc.h>
28 #include <mach/hardware.h>
30 #include <mach/regs-clock.h>
31 #include <mach/exynos4-clock.h>
35 #ifdef CONFIG_PM_SLEEP
36 static struct sleep_save exynos4212_clock_save
[] = {
37 SAVE_ITEM(S5P_CLKSRC_IMAGE
),
38 SAVE_ITEM(S5P_CLKDIV_IMAGE
),
39 SAVE_ITEM(S5P_CLKGATE_IP_IMAGE_4212
),
40 SAVE_ITEM(S5P_CLKGATE_IP_PERIR_4212
),
44 static struct clk
*clk_src_mpll_user_list
[] = {
46 [1] = &clk_mout_mpll
.clk
,
49 static struct clksrc_sources clk_src_mpll_user
= {
50 .sources
= clk_src_mpll_user_list
,
51 .nr_sources
= ARRAY_SIZE(clk_src_mpll_user_list
),
54 static struct clksrc_clk clk_mout_mpll_user
= {
56 .name
= "mout_mpll_user",
58 .sources
= &clk_src_mpll_user
,
59 .reg_src
= { .reg
= S5P_CLKSRC_CPU
, .shift
= 24, .size
= 1 },
62 static struct clksrc_clk
*sysclks
[] = {
66 static struct clksrc_clk clksrcs
[] = {
67 /* nothing here yet */
70 static struct clk init_clocks_off
[] = {
71 /* nothing here yet */
74 #ifdef CONFIG_PM_SLEEP
75 static int exynos4212_clock_suspend(void)
77 s3c_pm_do_save(exynos4212_clock_save
, ARRAY_SIZE(exynos4212_clock_save
));
82 static void exynos4212_clock_resume(void)
84 s3c_pm_do_restore_core(exynos4212_clock_save
, ARRAY_SIZE(exynos4212_clock_save
));
88 #define exynos4212_clock_suspend NULL
89 #define exynos4212_clock_resume NULL
92 struct syscore_ops exynos4212_clock_syscore_ops
= {
93 .suspend
= exynos4212_clock_suspend
,
94 .resume
= exynos4212_clock_resume
,
97 void __init
exynos4212_register_clocks(void)
101 /* usbphy1 is removed */
102 clkset_group_list
[4] = NULL
;
104 /* mout_mpll_user is used */
105 clkset_group_list
[6] = &clk_mout_mpll_user
.clk
;
106 clkset_aclk_top_list
[0] = &clk_mout_mpll_user
.clk
;
108 clk_mout_mpll
.reg_src
.reg
= S5P_CLKSRC_DMC
;
109 clk_mout_mpll
.reg_src
.shift
= 12;
110 clk_mout_mpll
.reg_src
.size
= 1;
112 for (ptr
= 0; ptr
< ARRAY_SIZE(sysclks
); ptr
++)
113 s3c_register_clksrc(sysclks
[ptr
], 1);
115 s3c_register_clksrc(clksrcs
, ARRAY_SIZE(clksrcs
));
117 s3c_register_clocks(init_clocks_off
, ARRAY_SIZE(init_clocks_off
));
118 s3c_disable_clocks(init_clocks_off
, ARRAY_SIZE(init_clocks_off
));
120 register_syscore_ops(&exynos4212_clock_syscore_ops
);