diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2011-12-20 03:52:06 -0500 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-01-08 20:24:15 -0500 |
commit | b5813c73860687ccc634d463416c377fc96b257e (patch) | |
tree | 23056bb54c3c5d7e3b00ed5aa5d2ade8fc8bac3f /arch/arm/mach-shmobile/clock-r8a7779.c | |
parent | db5eb994d3e84f3b008f03e589602f7f639f318c (diff) |
ARM: mach-shmobile: clock-r8a7779: add DIV4 clock support
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/arm/mach-shmobile/clock-r8a7779.c')
-rw-r--r-- | arch/arm/mach-shmobile/clock-r8a7779.c | 76 |
1 files changed, 59 insertions, 17 deletions
diff --git a/arch/arm/mach-shmobile/clock-r8a7779.c b/arch/arm/mach-shmobile/clock-r8a7779.c index 8a901068a53c..29c33063dc92 100644 --- a/arch/arm/mach-shmobile/clock-r8a7779.c +++ b/arch/arm/mach-shmobile/clock-r8a7779.c | |||
@@ -45,36 +45,75 @@ static struct clk_mapping cpg_mapping = { | |||
45 | .len = 0x80, | 45 | .len = 0x80, |
46 | }; | 46 | }; |
47 | 47 | ||
48 | static struct clk clkp = { | 48 | /* |
49 | .rate = 62500000, /* FIXME: shortcut */ | 49 | * Default rate for the root input clock, reset this with clk_set_rate() |
50 | .flags = CLK_ENABLE_ON_INIT, | 50 | * from the platform code. |
51 | .mapping = &cpg_mapping, | 51 | */ |
52 | static struct clk plla_clk = { | ||
53 | .rate = 1500000000, | ||
54 | .mapping = &cpg_mapping, | ||
52 | }; | 55 | }; |
53 | 56 | ||
54 | static struct clk *main_clks[] = { | 57 | static struct clk *main_clks[] = { |
55 | &clkp, | 58 | &plla_clk, |
59 | }; | ||
60 | |||
61 | static int divisors[] = { 0, 0, 0, 6, 8, 12, 16, 0, 24, 32, 36, 0, 0, 0, 0, 0 }; | ||
62 | |||
63 | static struct clk_div_mult_table div4_div_mult_table = { | ||
64 | .divisors = divisors, | ||
65 | .nr_divisors = ARRAY_SIZE(divisors), | ||
66 | }; | ||
67 | |||
68 | static struct clk_div4_table div4_table = { | ||
69 | .div_mult_table = &div4_div_mult_table, | ||
70 | }; | ||
71 | |||
72 | enum { DIV4_S, DIV4_OUT, DIV4_S4, DIV4_S3, DIV4_S1, DIV4_P, DIV4_NR }; | ||
73 | |||
74 | static struct clk div4_clks[DIV4_NR] = { | ||
75 | [DIV4_S] = SH_CLK_DIV4(&plla_clk, FRQMR, 20, | ||
76 | 0x0018, CLK_ENABLE_ON_INIT), | ||
77 | [DIV4_OUT] = SH_CLK_DIV4(&plla_clk, FRQMR, 16, | ||
78 | 0x0700, CLK_ENABLE_ON_INIT), | ||
79 | [DIV4_S4] = SH_CLK_DIV4(&plla_clk, FRQMR, 12, | ||
80 | 0x0040, CLK_ENABLE_ON_INIT), | ||
81 | [DIV4_S3] = SH_CLK_DIV4(&plla_clk, FRQMR, 8, | ||
82 | 0x0010, CLK_ENABLE_ON_INIT), | ||
83 | [DIV4_S1] = SH_CLK_DIV4(&plla_clk, FRQMR, 4, | ||
84 | 0x0060, CLK_ENABLE_ON_INIT), | ||
85 | [DIV4_P] = SH_CLK_DIV4(&plla_clk, FRQMR, 0, | ||
86 | 0x0300, CLK_ENABLE_ON_INIT), | ||
56 | }; | 87 | }; |
57 | 88 | ||
58 | enum { MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021, | 89 | enum { MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021, |
59 | MSTP016, MSTP015, MSTP014, | 90 | MSTP016, MSTP015, MSTP014, |
60 | MSTP_NR }; | 91 | MSTP_NR }; |
61 | 92 | ||
62 | #define MSTP(_parent, _reg, _bit, _flags) \ | ||
63 | SH_CLK_MSTP32(_parent, _reg, _bit, _flags) | ||
64 | |||
65 | static struct clk mstp_clks[MSTP_NR] = { | 93 | static struct clk mstp_clks[MSTP_NR] = { |
66 | [MSTP026] = MSTP(&clkp, MSTPCR0, 26, 0), /* SCIF0 */ | 94 | [MSTP026] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 26, 0), /* SCIF0 */ |
67 | [MSTP025] = MSTP(&clkp, MSTPCR0, 25, 0), /* SCIF1 */ | 95 | [MSTP025] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 25, 0), /* SCIF1 */ |
68 | [MSTP024] = MSTP(&clkp, MSTPCR0, 24, 0), /* SCIF2 */ | 96 | [MSTP024] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 24, 0), /* SCIF2 */ |
69 | [MSTP023] = MSTP(&clkp, MSTPCR0, 23, 0), /* SCIF3 */ | 97 | [MSTP023] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 23, 0), /* SCIF3 */ |
70 | [MSTP022] = MSTP(&clkp, MSTPCR0, 22, 0), /* SCIF4 */ | 98 | [MSTP022] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 22, 0), /* SCIF4 */ |
71 | [MSTP021] = MSTP(&clkp, MSTPCR0, 21, 0), /* SCIF5 */ | 99 | [MSTP021] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 21, 0), /* SCIF5 */ |
72 | [MSTP016] = MSTP(&clkp, MSTPCR0, 16, 0), /* TMU0 */ | 100 | [MSTP016] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 16, 0), /* TMU0 */ |
73 | [MSTP015] = MSTP(&clkp, MSTPCR0, 15, 0), /* TMU1 */ | 101 | [MSTP015] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 15, 0), /* TMU1 */ |
74 | [MSTP014] = MSTP(&clkp, MSTPCR0, 14, 0), /* TMU2 */ | 102 | [MSTP014] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 14, 0), /* TMU2 */ |
75 | }; | 103 | }; |
76 | 104 | ||
77 | static struct clk_lookup lookups[] = { | 105 | static struct clk_lookup lookups[] = { |
106 | /* main clocks */ | ||
107 | CLKDEV_CON_ID("plla_clk", &plla_clk), | ||
108 | |||
109 | /* DIV4 clocks */ | ||
110 | CLKDEV_CON_ID("shyway_clk", &div4_clks[DIV4_S]), | ||
111 | CLKDEV_CON_ID("bus_clk", &div4_clks[DIV4_OUT]), | ||
112 | CLKDEV_CON_ID("shyway4_clk", &div4_clks[DIV4_S4]), | ||
113 | CLKDEV_CON_ID("shyway3_clk", &div4_clks[DIV4_S3]), | ||
114 | CLKDEV_CON_ID("shyway1_clk", &div4_clks[DIV4_S1]), | ||
115 | CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]), | ||
116 | |||
78 | /* MSTP32 clocks */ | 117 | /* MSTP32 clocks */ |
79 | CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */ | 118 | CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */ |
80 | CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */ | 119 | CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */ |
@@ -94,6 +133,9 @@ void __init r8a7779_clock_init(void) | |||
94 | ret = clk_register(main_clks[k]); | 133 | ret = clk_register(main_clks[k]); |
95 | 134 | ||
96 | if (!ret) | 135 | if (!ret) |
136 | ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table); | ||
137 | |||
138 | if (!ret) | ||
97 | ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR); | 139 | ret = sh_clk_mstp32_register(mstp_clks, MSTP_NR); |
98 | 140 | ||
99 | clkdev_add_table(lookups, ARRAY_SIZE(lookups)); | 141 | clkdev_add_table(lookups, ARRAY_SIZE(lookups)); |