blob: e9985503165ce87a1e1aabd179e49281ce22f145 [file] [log] [blame]
Carlo Caione28b9fcd2015-06-01 13:13:55 +02001/*
Paul Gortmakera718ce32016-07-04 17:12:11 -04002 * AmLogic S805 / Meson8b Clock Controller Driver
3 *
Carlo Caione28b9fcd2015-06-01 13:13:55 +02004 * Copyright (c) 2015 Endless Mobile, Inc.
5 * Author: Carlo Caione <carlo@endlessm.com>
6 *
Michael Turquette796b9aa2016-05-11 11:11:18 -07007 * Copyright (c) 2016 BayLibre, Inc.
8 * Michael Turquette <mturquette@baylibre.com>
9 *
Carlo Caione28b9fcd2015-06-01 13:13:55 +020010 * This program is free software; you can redistribute it and/or modify it
11 * under the terms and conditions of the GNU General Public License,
12 * version 2, as published by the Free Software Foundation.
13 *
14 * This program is distributed in the hope it will be useful, but WITHOUT
15 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
17 * more details.
18 *
19 * You should have received a copy of the GNU General Public License along with
20 * this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
Michael Turquette55d42c42016-04-30 12:47:36 -070023#include <linux/clk.h>
Carlo Caione28b9fcd2015-06-01 13:13:55 +020024#include <linux/clk-provider.h>
Carlo Caione28b9fcd2015-06-01 13:13:55 +020025#include <linux/of_address.h>
Michael Turquette796b9aa2016-05-11 11:11:18 -070026#include <linux/platform_device.h>
Paul Gortmakera718ce32016-07-04 17:12:11 -040027#include <linux/init.h>
Carlo Caione28b9fcd2015-06-01 13:13:55 +020028
29#include "clkc.h"
Alexander Müllerd0c175d2016-08-27 19:40:50 +020030#include "meson8b.h"
Carlo Caione28b9fcd2015-06-01 13:13:55 +020031
Michael Turquettec0daa3e2016-04-28 12:01:51 -070032static DEFINE_SPINLOCK(clk_lock);
33
Carlo Caione28b9fcd2015-06-01 13:13:55 +020034static const struct pll_rate_table sys_pll_rate_table[] = {
35 PLL_RATE(312000000, 52, 1, 2),
36 PLL_RATE(336000000, 56, 1, 2),
37 PLL_RATE(360000000, 60, 1, 2),
38 PLL_RATE(384000000, 64, 1, 2),
39 PLL_RATE(408000000, 68, 1, 2),
40 PLL_RATE(432000000, 72, 1, 2),
41 PLL_RATE(456000000, 76, 1, 2),
42 PLL_RATE(480000000, 80, 1, 2),
43 PLL_RATE(504000000, 84, 1, 2),
44 PLL_RATE(528000000, 88, 1, 2),
45 PLL_RATE(552000000, 92, 1, 2),
46 PLL_RATE(576000000, 96, 1, 2),
47 PLL_RATE(600000000, 50, 1, 1),
48 PLL_RATE(624000000, 52, 1, 1),
49 PLL_RATE(648000000, 54, 1, 1),
50 PLL_RATE(672000000, 56, 1, 1),
51 PLL_RATE(696000000, 58, 1, 1),
52 PLL_RATE(720000000, 60, 1, 1),
53 PLL_RATE(744000000, 62, 1, 1),
54 PLL_RATE(768000000, 64, 1, 1),
55 PLL_RATE(792000000, 66, 1, 1),
56 PLL_RATE(816000000, 68, 1, 1),
57 PLL_RATE(840000000, 70, 1, 1),
58 PLL_RATE(864000000, 72, 1, 1),
59 PLL_RATE(888000000, 74, 1, 1),
60 PLL_RATE(912000000, 76, 1, 1),
61 PLL_RATE(936000000, 78, 1, 1),
62 PLL_RATE(960000000, 80, 1, 1),
63 PLL_RATE(984000000, 82, 1, 1),
64 PLL_RATE(1008000000, 84, 1, 1),
65 PLL_RATE(1032000000, 86, 1, 1),
66 PLL_RATE(1056000000, 88, 1, 1),
67 PLL_RATE(1080000000, 90, 1, 1),
68 PLL_RATE(1104000000, 92, 1, 1),
69 PLL_RATE(1128000000, 94, 1, 1),
70 PLL_RATE(1152000000, 96, 1, 1),
71 PLL_RATE(1176000000, 98, 1, 1),
72 PLL_RATE(1200000000, 50, 1, 0),
73 PLL_RATE(1224000000, 51, 1, 0),
74 PLL_RATE(1248000000, 52, 1, 0),
75 PLL_RATE(1272000000, 53, 1, 0),
76 PLL_RATE(1296000000, 54, 1, 0),
77 PLL_RATE(1320000000, 55, 1, 0),
78 PLL_RATE(1344000000, 56, 1, 0),
79 PLL_RATE(1368000000, 57, 1, 0),
80 PLL_RATE(1392000000, 58, 1, 0),
81 PLL_RATE(1416000000, 59, 1, 0),
82 PLL_RATE(1440000000, 60, 1, 0),
83 PLL_RATE(1464000000, 61, 1, 0),
84 PLL_RATE(1488000000, 62, 1, 0),
85 PLL_RATE(1512000000, 63, 1, 0),
86 PLL_RATE(1536000000, 64, 1, 0),
87 { /* sentinel */ },
88};
89
90static const struct clk_div_table cpu_div_table[] = {
91 { .val = 1, .div = 1 },
92 { .val = 2, .div = 2 },
93 { .val = 3, .div = 3 },
94 { .val = 2, .div = 4 },
95 { .val = 3, .div = 6 },
96 { .val = 4, .div = 8 },
97 { .val = 5, .div = 10 },
98 { .val = 6, .div = 12 },
99 { .val = 7, .div = 14 },
100 { .val = 8, .div = 16 },
101 { /* sentinel */ },
102};
103
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700104static struct clk_fixed_rate meson8b_xtal = {
105 .fixed_rate = 24000000,
106 .hw.init = &(struct clk_init_data){
107 .name = "xtal",
108 .num_parents = 0,
109 .ops = &clk_fixed_rate_ops,
110 },
111};
112
Michael Turquetteec623f22016-04-28 12:01:42 -0700113static struct meson_clk_pll meson8b_fixed_pll = {
114 .m = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200115 .reg_off = HHI_MPLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700116 .shift = 0,
117 .width = 9,
118 },
119 .n = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200120 .reg_off = HHI_MPLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700121 .shift = 9,
122 .width = 5,
123 },
124 .od = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200125 .reg_off = HHI_MPLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700126 .shift = 16,
127 .width = 2,
128 },
129 .lock = &clk_lock,
130 .hw.init = &(struct clk_init_data){
131 .name = "fixed_pll",
132 .ops = &meson_clk_pll_ro_ops,
133 .parent_names = (const char *[]){ "xtal" },
134 .num_parents = 1,
135 .flags = CLK_GET_RATE_NOCACHE,
136 },
137};
138
139static struct meson_clk_pll meson8b_vid_pll = {
140 .m = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200141 .reg_off = HHI_VID_PLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700142 .shift = 0,
143 .width = 9,
144 },
145 .n = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200146 .reg_off = HHI_VID_PLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700147 .shift = 9,
148 .width = 5,
149 },
150 .od = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200151 .reg_off = HHI_VID_PLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700152 .shift = 16,
153 .width = 2,
154 },
155 .lock = &clk_lock,
156 .hw.init = &(struct clk_init_data){
157 .name = "vid_pll",
158 .ops = &meson_clk_pll_ro_ops,
159 .parent_names = (const char *[]){ "xtal" },
160 .num_parents = 1,
161 .flags = CLK_GET_RATE_NOCACHE,
162 },
163};
164
165static struct meson_clk_pll meson8b_sys_pll = {
166 .m = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200167 .reg_off = HHI_SYS_PLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700168 .shift = 0,
169 .width = 9,
170 },
171 .n = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200172 .reg_off = HHI_SYS_PLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700173 .shift = 9,
174 .width = 5,
175 },
176 .od = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200177 .reg_off = HHI_SYS_PLL_CNTL,
Michael Turquetteec623f22016-04-28 12:01:42 -0700178 .shift = 16,
179 .width = 2,
180 },
181 .rate_table = sys_pll_rate_table,
182 .rate_count = ARRAY_SIZE(sys_pll_rate_table),
183 .lock = &clk_lock,
184 .hw.init = &(struct clk_init_data){
185 .name = "sys_pll",
186 .ops = &meson_clk_pll_ops,
187 .parent_names = (const char *[]){ "xtal" },
188 .num_parents = 1,
189 .flags = CLK_GET_RATE_NOCACHE,
190 },
191};
192
Michael Turquette6282a2d2016-04-28 12:01:58 -0700193static struct clk_fixed_factor meson8b_fclk_div2 = {
194 .mult = 1,
195 .div = 2,
196 .hw.init = &(struct clk_init_data){
197 .name = "fclk_div2",
198 .ops = &clk_fixed_factor_ops,
199 .parent_names = (const char *[]){ "fixed_pll" },
200 .num_parents = 1,
201 },
202};
203
204static struct clk_fixed_factor meson8b_fclk_div3 = {
205 .mult = 1,
206 .div = 3,
207 .hw.init = &(struct clk_init_data){
208 .name = "fclk_div3",
209 .ops = &clk_fixed_factor_ops,
210 .parent_names = (const char *[]){ "fixed_pll" },
211 .num_parents = 1,
212 },
213};
214
215static struct clk_fixed_factor meson8b_fclk_div4 = {
216 .mult = 1,
217 .div = 4,
218 .hw.init = &(struct clk_init_data){
219 .name = "fclk_div4",
220 .ops = &clk_fixed_factor_ops,
221 .parent_names = (const char *[]){ "fixed_pll" },
222 .num_parents = 1,
223 },
224};
225
226static struct clk_fixed_factor meson8b_fclk_div5 = {
227 .mult = 1,
228 .div = 5,
229 .hw.init = &(struct clk_init_data){
230 .name = "fclk_div5",
231 .ops = &clk_fixed_factor_ops,
232 .parent_names = (const char *[]){ "fixed_pll" },
233 .num_parents = 1,
234 },
235};
236
237static struct clk_fixed_factor meson8b_fclk_div7 = {
238 .mult = 1,
239 .div = 7,
240 .hw.init = &(struct clk_init_data){
241 .name = "fclk_div7",
242 .ops = &clk_fixed_factor_ops,
243 .parent_names = (const char *[]){ "fixed_pll" },
244 .num_parents = 1,
245 },
246};
247
Jerome Brunetb778f742017-03-09 11:41:52 +0100248static struct meson_clk_mpll meson8b_mpll0 = {
249 .sdm = {
250 .reg_off = HHI_MPLL_CNTL7,
251 .shift = 0,
252 .width = 14,
253 },
254 .sdm_en = {
255 .reg_off = HHI_MPLL_CNTL7,
256 .shift = 15,
257 .width = 1,
258 },
259 .n2 = {
260 .reg_off = HHI_MPLL_CNTL7,
261 .shift = 16,
262 .width = 9,
263 },
264 .en = {
265 .reg_off = HHI_MPLL_CNTL7,
266 .shift = 14,
267 .width = 1,
268 },
269 .lock = &clk_lock,
270 .hw.init = &(struct clk_init_data){
271 .name = "mpll0",
272 .ops = &meson_clk_mpll_ops,
273 .parent_names = (const char *[]){ "fixed_pll" },
274 .num_parents = 1,
275 },
276};
277
278static struct meson_clk_mpll meson8b_mpll1 = {
279 .sdm = {
280 .reg_off = HHI_MPLL_CNTL8,
281 .shift = 0,
282 .width = 14,
283 },
284 .sdm_en = {
285 .reg_off = HHI_MPLL_CNTL8,
286 .shift = 15,
287 .width = 1,
288 },
289 .n2 = {
290 .reg_off = HHI_MPLL_CNTL8,
291 .shift = 16,
292 .width = 9,
293 },
294 .en = {
295 .reg_off = HHI_MPLL_CNTL8,
296 .shift = 14,
297 .width = 1,
298 },
299 .lock = &clk_lock,
300 .hw.init = &(struct clk_init_data){
301 .name = "mpll1",
302 .ops = &meson_clk_mpll_ops,
303 .parent_names = (const char *[]){ "fixed_pll" },
304 .num_parents = 1,
305 },
306};
307
308static struct meson_clk_mpll meson8b_mpll2 = {
309 .sdm = {
310 .reg_off = HHI_MPLL_CNTL9,
311 .shift = 0,
312 .width = 14,
313 },
314 .sdm_en = {
315 .reg_off = HHI_MPLL_CNTL9,
316 .shift = 15,
317 .width = 1,
318 },
319 .n2 = {
320 .reg_off = HHI_MPLL_CNTL9,
321 .shift = 16,
322 .width = 9,
323 },
324 .en = {
325 .reg_off = HHI_MPLL_CNTL9,
326 .shift = 14,
327 .width = 1,
328 },
329 .lock = &clk_lock,
330 .hw.init = &(struct clk_init_data){
331 .name = "mpll2",
332 .ops = &meson_clk_mpll_ops,
333 .parent_names = (const char *[]){ "fixed_pll" },
334 .num_parents = 1,
335 },
336};
337
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700338/*
339 * FIXME cpu clocks and the legacy composite clocks (e.g. clk81) are both PLL
340 * post-dividers and should be modeled with their respective PLLs via the
341 * forthcoming coordinated clock rates feature
342 */
Michael Turquette55d42c42016-04-30 12:47:36 -0700343static struct meson_clk_cpu meson8b_cpu_clk = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200344 .reg_off = HHI_SYS_CPU_CLK_CNTL1,
Michael Turquette55d42c42016-04-30 12:47:36 -0700345 .div_table = cpu_div_table,
346 .clk_nb.notifier_call = meson_clk_cpu_notifier_cb,
347 .hw.init = &(struct clk_init_data){
348 .name = "cpu_clk",
349 .ops = &meson_clk_cpu_ops,
350 .parent_names = (const char *[]){ "sys_pll" },
351 .num_parents = 1,
352 },
353};
354
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700355static u32 mux_table_clk81[] = { 6, 5, 7 };
356
357struct clk_mux meson8b_mpeg_clk_sel = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200358 .reg = (void *)HHI_MPEG_CLK_CNTL,
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700359 .mask = 0x7,
360 .shift = 12,
361 .flags = CLK_MUX_READ_ONLY,
362 .table = mux_table_clk81,
363 .lock = &clk_lock,
364 .hw.init = &(struct clk_init_data){
365 .name = "mpeg_clk_sel",
366 .ops = &clk_mux_ro_ops,
367 /*
368 * FIXME bits 14:12 selects from 8 possible parents:
369 * xtal, 1'b0 (wtf), fclk_div7, mpll_clkout1, mpll_clkout2,
370 * fclk_div4, fclk_div3, fclk_div5
371 */
372 .parent_names = (const char *[]){ "fclk_div3", "fclk_div4",
373 "fclk_div5" },
374 .num_parents = 3,
375 .flags = (CLK_SET_RATE_NO_REPARENT | CLK_IGNORE_UNUSED),
376 },
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200377};
378
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700379struct clk_divider meson8b_mpeg_clk_div = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200380 .reg = (void *)HHI_MPEG_CLK_CNTL,
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700381 .shift = 0,
382 .width = 7,
383 .lock = &clk_lock,
384 .hw.init = &(struct clk_init_data){
385 .name = "mpeg_clk_div",
386 .ops = &clk_divider_ops,
387 .parent_names = (const char *[]){ "mpeg_clk_sel" },
388 .num_parents = 1,
389 .flags = (CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED),
390 },
391};
392
393struct clk_gate meson8b_clk81 = {
Alexander Müllere0818a32016-08-27 19:40:51 +0200394 .reg = (void *)HHI_MPEG_CLK_CNTL,
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700395 .bit_idx = 7,
396 .lock = &clk_lock,
397 .hw.init = &(struct clk_init_data){
398 .name = "clk81",
399 .ops = &clk_gate_ops,
400 .parent_names = (const char *[]){ "mpeg_clk_div" },
401 .num_parents = 1,
402 .flags = (CLK_SET_RATE_PARENT | CLK_IGNORE_UNUSED),
403 },
404};
405
Alexander Müllere31a1902016-08-27 19:40:54 +0200406/* Everything Else (EE) domain gates */
407
408static MESON_GATE(meson8b_ddr, HHI_GCLK_MPEG0, 0);
409static MESON_GATE(meson8b_dos, HHI_GCLK_MPEG0, 1);
410static MESON_GATE(meson8b_isa, HHI_GCLK_MPEG0, 5);
411static MESON_GATE(meson8b_pl301, HHI_GCLK_MPEG0, 6);
412static MESON_GATE(meson8b_periphs, HHI_GCLK_MPEG0, 7);
413static MESON_GATE(meson8b_spicc, HHI_GCLK_MPEG0, 8);
414static MESON_GATE(meson8b_i2c, HHI_GCLK_MPEG0, 9);
415static MESON_GATE(meson8b_sar_adc, HHI_GCLK_MPEG0, 10);
416static MESON_GATE(meson8b_smart_card, HHI_GCLK_MPEG0, 11);
417static MESON_GATE(meson8b_rng0, HHI_GCLK_MPEG0, 12);
418static MESON_GATE(meson8b_uart0, HHI_GCLK_MPEG0, 13);
419static MESON_GATE(meson8b_sdhc, HHI_GCLK_MPEG0, 14);
420static MESON_GATE(meson8b_stream, HHI_GCLK_MPEG0, 15);
421static MESON_GATE(meson8b_async_fifo, HHI_GCLK_MPEG0, 16);
422static MESON_GATE(meson8b_sdio, HHI_GCLK_MPEG0, 17);
423static MESON_GATE(meson8b_abuf, HHI_GCLK_MPEG0, 18);
424static MESON_GATE(meson8b_hiu_iface, HHI_GCLK_MPEG0, 19);
425static MESON_GATE(meson8b_assist_misc, HHI_GCLK_MPEG0, 23);
426static MESON_GATE(meson8b_spi, HHI_GCLK_MPEG0, 30);
427
428static MESON_GATE(meson8b_i2s_spdif, HHI_GCLK_MPEG1, 2);
429static MESON_GATE(meson8b_eth, HHI_GCLK_MPEG1, 3);
430static MESON_GATE(meson8b_demux, HHI_GCLK_MPEG1, 4);
431static MESON_GATE(meson8b_aiu_glue, HHI_GCLK_MPEG1, 6);
432static MESON_GATE(meson8b_iec958, HHI_GCLK_MPEG1, 7);
433static MESON_GATE(meson8b_i2s_out, HHI_GCLK_MPEG1, 8);
434static MESON_GATE(meson8b_amclk, HHI_GCLK_MPEG1, 9);
435static MESON_GATE(meson8b_aififo2, HHI_GCLK_MPEG1, 10);
436static MESON_GATE(meson8b_mixer, HHI_GCLK_MPEG1, 11);
437static MESON_GATE(meson8b_mixer_iface, HHI_GCLK_MPEG1, 12);
438static MESON_GATE(meson8b_adc, HHI_GCLK_MPEG1, 13);
439static MESON_GATE(meson8b_blkmv, HHI_GCLK_MPEG1, 14);
440static MESON_GATE(meson8b_aiu, HHI_GCLK_MPEG1, 15);
441static MESON_GATE(meson8b_uart1, HHI_GCLK_MPEG1, 16);
442static MESON_GATE(meson8b_g2d, HHI_GCLK_MPEG1, 20);
443static MESON_GATE(meson8b_usb0, HHI_GCLK_MPEG1, 21);
444static MESON_GATE(meson8b_usb1, HHI_GCLK_MPEG1, 22);
445static MESON_GATE(meson8b_reset, HHI_GCLK_MPEG1, 23);
446static MESON_GATE(meson8b_nand, HHI_GCLK_MPEG1, 24);
447static MESON_GATE(meson8b_dos_parser, HHI_GCLK_MPEG1, 25);
448static MESON_GATE(meson8b_usb, HHI_GCLK_MPEG1, 26);
449static MESON_GATE(meson8b_vdin1, HHI_GCLK_MPEG1, 28);
450static MESON_GATE(meson8b_ahb_arb0, HHI_GCLK_MPEG1, 29);
451static MESON_GATE(meson8b_efuse, HHI_GCLK_MPEG1, 30);
452static MESON_GATE(meson8b_boot_rom, HHI_GCLK_MPEG1, 31);
453
454static MESON_GATE(meson8b_ahb_data_bus, HHI_GCLK_MPEG2, 1);
455static MESON_GATE(meson8b_ahb_ctrl_bus, HHI_GCLK_MPEG2, 2);
456static MESON_GATE(meson8b_hdmi_intr_sync, HHI_GCLK_MPEG2, 3);
457static MESON_GATE(meson8b_hdmi_pclk, HHI_GCLK_MPEG2, 4);
458static MESON_GATE(meson8b_usb1_ddr_bridge, HHI_GCLK_MPEG2, 8);
459static MESON_GATE(meson8b_usb0_ddr_bridge, HHI_GCLK_MPEG2, 9);
460static MESON_GATE(meson8b_mmc_pclk, HHI_GCLK_MPEG2, 11);
461static MESON_GATE(meson8b_dvin, HHI_GCLK_MPEG2, 12);
462static MESON_GATE(meson8b_uart2, HHI_GCLK_MPEG2, 15);
463static MESON_GATE(meson8b_sana, HHI_GCLK_MPEG2, 22);
464static MESON_GATE(meson8b_vpu_intr, HHI_GCLK_MPEG2, 25);
465static MESON_GATE(meson8b_sec_ahb_ahb3_bridge, HHI_GCLK_MPEG2, 26);
466static MESON_GATE(meson8b_clk81_a9, HHI_GCLK_MPEG2, 29);
467
468static MESON_GATE(meson8b_vclk2_venci0, HHI_GCLK_OTHER, 1);
469static MESON_GATE(meson8b_vclk2_venci1, HHI_GCLK_OTHER, 2);
470static MESON_GATE(meson8b_vclk2_vencp0, HHI_GCLK_OTHER, 3);
471static MESON_GATE(meson8b_vclk2_vencp1, HHI_GCLK_OTHER, 4);
472static MESON_GATE(meson8b_gclk_venci_int, HHI_GCLK_OTHER, 8);
473static MESON_GATE(meson8b_gclk_vencp_int, HHI_GCLK_OTHER, 9);
474static MESON_GATE(meson8b_dac_clk, HHI_GCLK_OTHER, 10);
475static MESON_GATE(meson8b_aoclk_gate, HHI_GCLK_OTHER, 14);
476static MESON_GATE(meson8b_iec958_gate, HHI_GCLK_OTHER, 16);
477static MESON_GATE(meson8b_enc480p, HHI_GCLK_OTHER, 20);
478static MESON_GATE(meson8b_rng1, HHI_GCLK_OTHER, 21);
479static MESON_GATE(meson8b_gclk_vencl_int, HHI_GCLK_OTHER, 22);
480static MESON_GATE(meson8b_vclk2_venclmcc, HHI_GCLK_OTHER, 24);
481static MESON_GATE(meson8b_vclk2_vencl, HHI_GCLK_OTHER, 25);
482static MESON_GATE(meson8b_vclk2_other, HHI_GCLK_OTHER, 26);
483static MESON_GATE(meson8b_edp, HHI_GCLK_OTHER, 31);
484
485/* Always On (AO) domain gates */
486
487static MESON_GATE(meson8b_ao_media_cpu, HHI_GCLK_AO, 0);
488static MESON_GATE(meson8b_ao_ahb_sram, HHI_GCLK_AO, 1);
489static MESON_GATE(meson8b_ao_ahb_bus, HHI_GCLK_AO, 2);
490static MESON_GATE(meson8b_ao_iface, HHI_GCLK_AO, 3);
491
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700492static struct clk_hw_onecell_data meson8b_hw_onecell_data = {
493 .hws = {
494 [CLKID_XTAL] = &meson8b_xtal.hw,
Michael Turquetteec623f22016-04-28 12:01:42 -0700495 [CLKID_PLL_FIXED] = &meson8b_fixed_pll.hw,
496 [CLKID_PLL_VID] = &meson8b_vid_pll.hw,
497 [CLKID_PLL_SYS] = &meson8b_sys_pll.hw,
Michael Turquette6282a2d2016-04-28 12:01:58 -0700498 [CLKID_FCLK_DIV2] = &meson8b_fclk_div2.hw,
499 [CLKID_FCLK_DIV3] = &meson8b_fclk_div3.hw,
500 [CLKID_FCLK_DIV4] = &meson8b_fclk_div4.hw,
501 [CLKID_FCLK_DIV5] = &meson8b_fclk_div5.hw,
502 [CLKID_FCLK_DIV7] = &meson8b_fclk_div7.hw,
Michael Turquette55d42c42016-04-30 12:47:36 -0700503 [CLKID_CPUCLK] = &meson8b_cpu_clk.hw,
Michael Turquettec0daa3e2016-04-28 12:01:51 -0700504 [CLKID_MPEG_SEL] = &meson8b_mpeg_clk_sel.hw,
505 [CLKID_MPEG_DIV] = &meson8b_mpeg_clk_div.hw,
506 [CLKID_CLK81] = &meson8b_clk81.hw,
Alexander Müllere31a1902016-08-27 19:40:54 +0200507 [CLKID_DDR] = &meson8b_ddr.hw,
508 [CLKID_DOS] = &meson8b_dos.hw,
509 [CLKID_ISA] = &meson8b_isa.hw,
510 [CLKID_PL301] = &meson8b_pl301.hw,
511 [CLKID_PERIPHS] = &meson8b_periphs.hw,
512 [CLKID_SPICC] = &meson8b_spicc.hw,
513 [CLKID_I2C] = &meson8b_i2c.hw,
514 [CLKID_SAR_ADC] = &meson8b_sar_adc.hw,
515 [CLKID_SMART_CARD] = &meson8b_smart_card.hw,
516 [CLKID_RNG0] = &meson8b_rng0.hw,
517 [CLKID_UART0] = &meson8b_uart0.hw,
518 [CLKID_SDHC] = &meson8b_sdhc.hw,
519 [CLKID_STREAM] = &meson8b_stream.hw,
520 [CLKID_ASYNC_FIFO] = &meson8b_async_fifo.hw,
521 [CLKID_SDIO] = &meson8b_sdio.hw,
522 [CLKID_ABUF] = &meson8b_abuf.hw,
523 [CLKID_HIU_IFACE] = &meson8b_hiu_iface.hw,
524 [CLKID_ASSIST_MISC] = &meson8b_assist_misc.hw,
525 [CLKID_SPI] = &meson8b_spi.hw,
526 [CLKID_I2S_SPDIF] = &meson8b_i2s_spdif.hw,
527 [CLKID_ETH] = &meson8b_eth.hw,
528 [CLKID_DEMUX] = &meson8b_demux.hw,
529 [CLKID_AIU_GLUE] = &meson8b_aiu_glue.hw,
530 [CLKID_IEC958] = &meson8b_iec958.hw,
531 [CLKID_I2S_OUT] = &meson8b_i2s_out.hw,
532 [CLKID_AMCLK] = &meson8b_amclk.hw,
533 [CLKID_AIFIFO2] = &meson8b_aififo2.hw,
534 [CLKID_MIXER] = &meson8b_mixer.hw,
535 [CLKID_MIXER_IFACE] = &meson8b_mixer_iface.hw,
536 [CLKID_ADC] = &meson8b_adc.hw,
537 [CLKID_BLKMV] = &meson8b_blkmv.hw,
538 [CLKID_AIU] = &meson8b_aiu.hw,
539 [CLKID_UART1] = &meson8b_uart1.hw,
540 [CLKID_G2D] = &meson8b_g2d.hw,
541 [CLKID_USB0] = &meson8b_usb0.hw,
542 [CLKID_USB1] = &meson8b_usb1.hw,
543 [CLKID_RESET] = &meson8b_reset.hw,
544 [CLKID_NAND] = &meson8b_nand.hw,
545 [CLKID_DOS_PARSER] = &meson8b_dos_parser.hw,
546 [CLKID_USB] = &meson8b_usb.hw,
547 [CLKID_VDIN1] = &meson8b_vdin1.hw,
548 [CLKID_AHB_ARB0] = &meson8b_ahb_arb0.hw,
549 [CLKID_EFUSE] = &meson8b_efuse.hw,
550 [CLKID_BOOT_ROM] = &meson8b_boot_rom.hw,
551 [CLKID_AHB_DATA_BUS] = &meson8b_ahb_data_bus.hw,
552 [CLKID_AHB_CTRL_BUS] = &meson8b_ahb_ctrl_bus.hw,
553 [CLKID_HDMI_INTR_SYNC] = &meson8b_hdmi_intr_sync.hw,
554 [CLKID_HDMI_PCLK] = &meson8b_hdmi_pclk.hw,
555 [CLKID_USB1_DDR_BRIDGE] = &meson8b_usb1_ddr_bridge.hw,
556 [CLKID_USB0_DDR_BRIDGE] = &meson8b_usb0_ddr_bridge.hw,
557 [CLKID_MMC_PCLK] = &meson8b_mmc_pclk.hw,
558 [CLKID_DVIN] = &meson8b_dvin.hw,
559 [CLKID_UART2] = &meson8b_uart2.hw,
560 [CLKID_SANA] = &meson8b_sana.hw,
561 [CLKID_VPU_INTR] = &meson8b_vpu_intr.hw,
562 [CLKID_SEC_AHB_AHB3_BRIDGE] = &meson8b_sec_ahb_ahb3_bridge.hw,
563 [CLKID_CLK81_A9] = &meson8b_clk81_a9.hw,
564 [CLKID_VCLK2_VENCI0] = &meson8b_vclk2_venci0.hw,
565 [CLKID_VCLK2_VENCI1] = &meson8b_vclk2_venci1.hw,
566 [CLKID_VCLK2_VENCP0] = &meson8b_vclk2_vencp0.hw,
567 [CLKID_VCLK2_VENCP1] = &meson8b_vclk2_vencp1.hw,
568 [CLKID_GCLK_VENCI_INT] = &meson8b_gclk_venci_int.hw,
Arnd Bergmann0d5aa652016-09-06 15:01:10 +0200569 [CLKID_GCLK_VENCP_INT] = &meson8b_gclk_vencp_int.hw,
Alexander Müllere31a1902016-08-27 19:40:54 +0200570 [CLKID_DAC_CLK] = &meson8b_dac_clk.hw,
571 [CLKID_AOCLK_GATE] = &meson8b_aoclk_gate.hw,
572 [CLKID_IEC958_GATE] = &meson8b_iec958_gate.hw,
573 [CLKID_ENC480P] = &meson8b_enc480p.hw,
574 [CLKID_RNG1] = &meson8b_rng1.hw,
575 [CLKID_GCLK_VENCL_INT] = &meson8b_gclk_vencl_int.hw,
576 [CLKID_VCLK2_VENCLMCC] = &meson8b_vclk2_venclmcc.hw,
577 [CLKID_VCLK2_VENCL] = &meson8b_vclk2_vencl.hw,
578 [CLKID_VCLK2_OTHER] = &meson8b_vclk2_other.hw,
579 [CLKID_EDP] = &meson8b_edp.hw,
580 [CLKID_AO_MEDIA_CPU] = &meson8b_ao_media_cpu.hw,
581 [CLKID_AO_AHB_SRAM] = &meson8b_ao_ahb_sram.hw,
582 [CLKID_AO_AHB_BUS] = &meson8b_ao_ahb_bus.hw,
583 [CLKID_AO_IFACE] = &meson8b_ao_iface.hw,
Jerome Brunetb778f742017-03-09 11:41:52 +0100584 [CLKID_MPLL0] = &meson8b_mpll0.hw,
585 [CLKID_MPLL1] = &meson8b_mpll1.hw,
586 [CLKID_MPLL2] = &meson8b_mpll2.hw,
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700587 },
588 .num = CLK_NR_CLKS,
589};
590
Michael Turquetteec623f22016-04-28 12:01:42 -0700591static struct meson_clk_pll *const meson8b_clk_plls[] = {
592 &meson8b_fixed_pll,
593 &meson8b_vid_pll,
594 &meson8b_sys_pll,
595};
596
Jerome Brunetb778f742017-03-09 11:41:52 +0100597static struct meson_clk_mpll *const meson8b_clk_mplls[] = {
598 &meson8b_mpll0,
599 &meson8b_mpll1,
600 &meson8b_mpll2,
601};
602
Jerome Brunetf7e3a822017-03-09 11:41:47 +0100603static struct clk_gate *const meson8b_clk_gates[] = {
Alexander Müllere31a1902016-08-27 19:40:54 +0200604 &meson8b_clk81,
605 &meson8b_ddr,
606 &meson8b_dos,
607 &meson8b_isa,
608 &meson8b_pl301,
609 &meson8b_periphs,
610 &meson8b_spicc,
611 &meson8b_i2c,
612 &meson8b_sar_adc,
613 &meson8b_smart_card,
614 &meson8b_rng0,
615 &meson8b_uart0,
616 &meson8b_sdhc,
617 &meson8b_stream,
618 &meson8b_async_fifo,
619 &meson8b_sdio,
620 &meson8b_abuf,
621 &meson8b_hiu_iface,
622 &meson8b_assist_misc,
623 &meson8b_spi,
624 &meson8b_i2s_spdif,
625 &meson8b_eth,
626 &meson8b_demux,
627 &meson8b_aiu_glue,
628 &meson8b_iec958,
629 &meson8b_i2s_out,
630 &meson8b_amclk,
631 &meson8b_aififo2,
632 &meson8b_mixer,
633 &meson8b_mixer_iface,
634 &meson8b_adc,
635 &meson8b_blkmv,
636 &meson8b_aiu,
637 &meson8b_uart1,
638 &meson8b_g2d,
639 &meson8b_usb0,
640 &meson8b_usb1,
641 &meson8b_reset,
642 &meson8b_nand,
643 &meson8b_dos_parser,
644 &meson8b_usb,
645 &meson8b_vdin1,
646 &meson8b_ahb_arb0,
647 &meson8b_efuse,
648 &meson8b_boot_rom,
649 &meson8b_ahb_data_bus,
650 &meson8b_ahb_ctrl_bus,
651 &meson8b_hdmi_intr_sync,
652 &meson8b_hdmi_pclk,
653 &meson8b_usb1_ddr_bridge,
654 &meson8b_usb0_ddr_bridge,
655 &meson8b_mmc_pclk,
656 &meson8b_dvin,
657 &meson8b_uart2,
658 &meson8b_sana,
659 &meson8b_vpu_intr,
660 &meson8b_sec_ahb_ahb3_bridge,
661 &meson8b_clk81_a9,
662 &meson8b_vclk2_venci0,
663 &meson8b_vclk2_venci1,
664 &meson8b_vclk2_vencp0,
665 &meson8b_vclk2_vencp1,
666 &meson8b_gclk_venci_int,
667 &meson8b_gclk_vencp_int,
668 &meson8b_dac_clk,
669 &meson8b_aoclk_gate,
670 &meson8b_iec958_gate,
671 &meson8b_enc480p,
672 &meson8b_rng1,
673 &meson8b_gclk_vencl_int,
674 &meson8b_vclk2_venclmcc,
675 &meson8b_vclk2_vencl,
676 &meson8b_vclk2_other,
677 &meson8b_edp,
678 &meson8b_ao_media_cpu,
679 &meson8b_ao_ahb_sram,
680 &meson8b_ao_ahb_bus,
681 &meson8b_ao_iface,
682};
683
Jerome Brunete988aae2017-03-09 11:41:48 +0100684static struct clk_mux *const meson8b_clk_muxes[] = {
685 &meson8b_mpeg_clk_sel,
686};
687
688static struct clk_divider *const meson8b_clk_dividers[] = {
689 &meson8b_mpeg_clk_div,
690};
691
Michael Turquette796b9aa2016-05-11 11:11:18 -0700692static int meson8b_clkc_probe(struct platform_device *pdev)
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200693{
694 void __iomem *clk_base;
Michael Turquetteec623f22016-04-28 12:01:42 -0700695 int ret, clkid, i;
Michael Turquette55d42c42016-04-30 12:47:36 -0700696 struct clk_hw *parent_hw;
697 struct clk *parent_clk;
Michael Turquette796b9aa2016-05-11 11:11:18 -0700698 struct device *dev = &pdev->dev;
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200699
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200700 /* Generic clocks and PLLs */
Michael Turquette796b9aa2016-05-11 11:11:18 -0700701 clk_base = of_iomap(dev->of_node, 1);
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200702 if (!clk_base) {
703 pr_err("%s: Unable to map clk base\n", __func__);
Michael Turquette796b9aa2016-05-11 11:11:18 -0700704 return -ENXIO;
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200705 }
706
Michael Turquetteec623f22016-04-28 12:01:42 -0700707 /* Populate base address for PLLs */
708 for (i = 0; i < ARRAY_SIZE(meson8b_clk_plls); i++)
709 meson8b_clk_plls[i]->base = clk_base;
710
Jerome Brunetb778f742017-03-09 11:41:52 +0100711 /* Populate base address for MPLLs */
712 for (i = 0; i < ARRAY_SIZE(meson8b_clk_mplls); i++)
713 meson8b_clk_mplls[i]->base = clk_base;
714
Michael Turquette55d42c42016-04-30 12:47:36 -0700715 /* Populate the base address for CPU clk */
716 meson8b_cpu_clk.base = clk_base;
717
Alexander Müllere31a1902016-08-27 19:40:54 +0200718 /* Populate base address for gates */
719 for (i = 0; i < ARRAY_SIZE(meson8b_clk_gates); i++)
720 meson8b_clk_gates[i]->reg = clk_base +
721 (u32)meson8b_clk_gates[i]->reg;
722
Jerome Brunete988aae2017-03-09 11:41:48 +0100723 /* Populate base address for muxes */
724 for (i = 0; i < ARRAY_SIZE(meson8b_clk_muxes); i++)
725 meson8b_clk_muxes[i]->reg = clk_base +
726 (u32)meson8b_clk_muxes[i]->reg;
727
728 /* Populate base address for dividers */
729 for (i = 0; i < ARRAY_SIZE(meson8b_clk_dividers); i++)
730 meson8b_clk_dividers[i]->reg = clk_base +
731 (u32)meson8b_clk_dividers[i]->reg;
732
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700733 /*
734 * register all clks
735 * CLKID_UNUSED = 0, so skip it and start with CLKID_XTAL = 1
736 */
737 for (clkid = CLKID_XTAL; clkid < CLK_NR_CLKS; clkid++) {
738 /* array might be sparse */
739 if (!meson8b_hw_onecell_data.hws[clkid])
740 continue;
741
742 /* FIXME convert to devm_clk_register */
Michael Turquette796b9aa2016-05-11 11:11:18 -0700743 ret = devm_clk_hw_register(dev, meson8b_hw_onecell_data.hws[clkid]);
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700744 if (ret)
Michael Turquette796b9aa2016-05-11 11:11:18 -0700745 goto iounmap;
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700746 }
747
Michael Turquette55d42c42016-04-30 12:47:36 -0700748 /*
749 * Register CPU clk notifier
750 *
751 * FIXME this is wrong for a lot of reasons. First, the muxes should be
752 * struct clk_hw objects. Second, we shouldn't program the muxes in
753 * notifier handlers. The tricky programming sequence will be handled
754 * by the forthcoming coordinated clock rates mechanism once that
755 * feature is released.
756 *
757 * Furthermore, looking up the parent this way is terrible. At some
758 * point we will stop allocating a default struct clk when registering
759 * a new clk_hw, and this hack will no longer work. Releasing the ccr
760 * feature before that time solves the problem :-)
761 */
762 parent_hw = clk_hw_get_parent(&meson8b_cpu_clk.hw);
763 parent_clk = parent_hw->clk;
764 ret = clk_notifier_register(parent_clk, &meson8b_cpu_clk.clk_nb);
765 if (ret) {
766 pr_err("%s: failed to register clock notifier for cpu_clk\n",
767 __func__);
Michael Turquette796b9aa2016-05-11 11:11:18 -0700768 goto iounmap;
Michael Turquette55d42c42016-04-30 12:47:36 -0700769 }
770
Michael Turquette796b9aa2016-05-11 11:11:18 -0700771 return of_clk_add_hw_provider(dev->of_node, of_clk_hw_onecell_get,
772 &meson8b_hw_onecell_data);
Michael Turquettee92f7cc2016-04-28 12:00:52 -0700773
Michael Turquette796b9aa2016-05-11 11:11:18 -0700774iounmap:
775 iounmap(clk_base);
776 return ret;
Carlo Caione28b9fcd2015-06-01 13:13:55 +0200777}
Michael Turquette796b9aa2016-05-11 11:11:18 -0700778
779static const struct of_device_id meson8b_clkc_match_table[] = {
780 { .compatible = "amlogic,meson8b-clkc" },
781 { }
782};
Michael Turquette796b9aa2016-05-11 11:11:18 -0700783
784static struct platform_driver meson8b_driver = {
785 .probe = meson8b_clkc_probe,
786 .driver = {
787 .name = "meson8b-clkc",
788 .of_match_table = meson8b_clkc_match_table,
789 },
790};
791
Wei Yongjun8edeae52016-09-10 12:02:49 +0000792builtin_platform_driver(meson8b_driver);