Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wirel...
[sfrench/cifs-2.6.git] / arch / arm / mach-shmobile / clock-r8a7779.c
1 /*
2  * r8a7779 clock framework support
3  *
4  * Copyright (C) 2011  Renesas Solutions Corp.
5  * Copyright (C) 2011  Magnus Damm
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/io.h>
23 #include <linux/sh_clk.h>
24 #include <linux/clkdev.h>
25 #include <mach/common.h>
26
27 #define FRQMR           IOMEM(0xffc80014)
28 #define MSTPCR0         IOMEM(0xffc80030)
29 #define MSTPCR1         IOMEM(0xffc80034)
30 #define MSTPCR3         IOMEM(0xffc8003c)
31 #define MSTPSR1         IOMEM(0xffc80044)
32 #define MSTPSR4         IOMEM(0xffc80048)
33 #define MSTPSR6         IOMEM(0xffc8004c)
34 #define MSTPCR4         IOMEM(0xffc80050)
35 #define MSTPCR5         IOMEM(0xffc80054)
36 #define MSTPCR6         IOMEM(0xffc80058)
37 #define MSTPCR7         IOMEM(0xffc80040)
38
39 /* ioremap() through clock mapping mandatory to avoid
40  * collision with ARM coherent DMA virtual memory range.
41  */
42
43 static struct clk_mapping cpg_mapping = {
44         .phys   = 0xffc80000,
45         .len    = 0x80,
46 };
47
48 /*
49  * Default rate for the root input clock, reset this with clk_set_rate()
50  * from the platform code.
51  */
52 static struct clk plla_clk = {
53         .rate           = 1500000000,
54         .mapping        = &cpg_mapping,
55 };
56
57 static struct clk *main_clks[] = {
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),
87 };
88
89 enum { MSTP323, MSTP322, MSTP321, MSTP320,
90         MSTP026, MSTP025, MSTP024, MSTP023, MSTP022, MSTP021,
91         MSTP016, MSTP015, MSTP014,
92         MSTP_NR };
93
94 static struct clk mstp_clks[MSTP_NR] = {
95         [MSTP323] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 23, 0), /* SDHI0 */
96         [MSTP322] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 22, 0), /* SDHI1 */
97         [MSTP321] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 21, 0), /* SDHI2 */
98         [MSTP320] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR3, 20, 0), /* SDHI3 */
99         [MSTP026] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 26, 0), /* SCIF0 */
100         [MSTP025] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 25, 0), /* SCIF1 */
101         [MSTP024] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 24, 0), /* SCIF2 */
102         [MSTP023] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 23, 0), /* SCIF3 */
103         [MSTP022] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 22, 0), /* SCIF4 */
104         [MSTP021] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 21, 0), /* SCIF5 */
105         [MSTP016] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 16, 0), /* TMU0 */
106         [MSTP015] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 15, 0), /* TMU1 */
107         [MSTP014] = SH_CLK_MSTP32(&div4_clks[DIV4_P], MSTPCR0, 14, 0), /* TMU2 */
108 };
109
110 static unsigned long mul4_recalc(struct clk *clk)
111 {
112         return clk->parent->rate * 4;
113 }
114
115 static struct sh_clk_ops mul4_clk_ops = {
116         .recalc         = mul4_recalc,
117 };
118
119 struct clk clkz_clk = {
120         .ops            = &mul4_clk_ops,
121         .parent         = &div4_clks[DIV4_S],
122 };
123
124 struct clk clkzs_clk = {
125         /* clks x 4 / 4 = clks */
126         .parent         = &div4_clks[DIV4_S],
127 };
128
129 static struct clk *late_main_clks[] = {
130         &clkz_clk,
131         &clkzs_clk,
132 };
133
134 static struct clk_lookup lookups[] = {
135         /* main clocks */
136         CLKDEV_CON_ID("plla_clk", &plla_clk),
137         CLKDEV_CON_ID("clkz_clk", &clkz_clk),
138         CLKDEV_CON_ID("clkzs_clk", &clkzs_clk),
139
140         /* DIV4 clocks */
141         CLKDEV_CON_ID("shyway_clk",     &div4_clks[DIV4_S]),
142         CLKDEV_CON_ID("bus_clk",        &div4_clks[DIV4_OUT]),
143         CLKDEV_CON_ID("shyway4_clk",    &div4_clks[DIV4_S4]),
144         CLKDEV_CON_ID("shyway3_clk",    &div4_clks[DIV4_S3]),
145         CLKDEV_CON_ID("shyway1_clk",    &div4_clks[DIV4_S1]),
146         CLKDEV_CON_ID("peripheral_clk", &div4_clks[DIV4_P]),
147
148         /* MSTP32 clocks */
149         CLKDEV_DEV_ID("sh_tmu.0", &mstp_clks[MSTP016]), /* TMU00 */
150         CLKDEV_DEV_ID("sh_tmu.1", &mstp_clks[MSTP016]), /* TMU01 */
151         CLKDEV_DEV_ID("sh-sci.0", &mstp_clks[MSTP026]), /* SCIF0 */
152         CLKDEV_DEV_ID("sh-sci.1", &mstp_clks[MSTP025]), /* SCIF1 */
153         CLKDEV_DEV_ID("sh-sci.2", &mstp_clks[MSTP024]), /* SCIF2 */
154         CLKDEV_DEV_ID("sh-sci.3", &mstp_clks[MSTP023]), /* SCIF3 */
155         CLKDEV_DEV_ID("sh-sci.4", &mstp_clks[MSTP022]), /* SCIF4 */
156         CLKDEV_DEV_ID("sh-sci.5", &mstp_clks[MSTP021]), /* SCIF6 */
157         CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[MSTP323]), /* SDHI0 */
158         CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[MSTP322]), /* SDHI1 */
159         CLKDEV_DEV_ID("sh_mobile_sdhi.2", &mstp_clks[MSTP321]), /* SDHI2 */
160         CLKDEV_DEV_ID("sh_mobile_sdhi.3", &mstp_clks[MSTP320]), /* SDHI3 */
161 };
162
163 void __init r8a7779_clock_init(void)
164 {
165         int k, ret = 0;
166
167         for (k = 0; !ret && (k < ARRAY_SIZE(main_clks)); k++)
168                 ret = clk_register(main_clks[k]);
169
170         if (!ret)
171                 ret = sh_clk_div4_register(div4_clks, DIV4_NR, &div4_table);
172
173         if (!ret)
174                 ret = sh_clk_mstp_register(mstp_clks, MSTP_NR);
175
176         for (k = 0; !ret && (k < ARRAY_SIZE(late_main_clks)); k++)
177                 ret = clk_register(late_main_clks[k]);
178
179         clkdev_add_table(lookups, ARRAY_SIZE(lookups));
180
181         if (!ret)
182                 shmobile_clk_init();
183         else
184                 panic("failed to setup r8a7779 clocks\n");
185 }