2 * r8a7779 Core CPG Clocks
4 * Copyright (C) 2013, 2014 Horms Solutions Ltd.
6 * Contact: Simon Horman <horms@verge.net.au>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
13 #include <linux/clk-provider.h>
14 #include <linux/clk/renesas.h>
15 #include <linux/init.h>
16 #include <linux/kernel.h>
18 #include <linux/of_address.h>
19 #include <linux/slab.h>
20 #include <linux/spinlock.h>
22 #include <dt-bindings/clock/r8a7779-clock.h>
24 #define CPG_NUM_CLOCKS (R8A7779_CLK_OUT + 1)
27 struct clk_onecell_data data
;
32 /* -----------------------------------------------------------------------------
38 * (PLLA = 1500) (PLLA = 1600)
40 *------------------------------------------------+--------------------
41 * clkz 1000 (2/3) 800 (1/2)
42 * clkzs 250 (1/6) 200 (1/8)
43 * clki 750 (1/2) 800 (1/2)
44 * clks 250 (1/6) 200 (1/8)
45 * clks1 125 (1/12) 100 (1/16)
46 * clks3 187.5 (1/8) 200 (1/8)
47 * clks4 93.7 (1/16) 100 (1/16)
48 * clkp 62.5 (1/24) 50 (1/32)
49 * clkg 62.5 (1/24) 66.6 (1/24)
51 * (MD2 = 0) 62.5 (1/24) 66.6 (1/24)
52 * (MD2 = 1) 41.6 (1/36) 50 (1/32)
55 #define CPG_CLK_CONFIG_INDEX(md) (((md) & (BIT(2)|BIT(1))) >> 1)
57 struct cpg_clk_config
{
60 unsigned int zs_and_s_div
;
63 unsigned int b_and_out_div
;
66 static const struct cpg_clk_config cpg_clk_configs
[4] __initconst
= {
67 { 1, 2, 8, 16, 32, 24 },
68 { 2, 3, 6, 12, 24, 24 },
69 { 1, 2, 8, 16, 32, 32 },
70 { 2, 3, 6, 12, 24, 36 },
76 *------------------------
83 #define CPG_PLLA_MULT_INDEX(md) (((md) & (BIT(12)|BIT(11))) >> 11)
85 static const unsigned int cpg_plla_mult
[4] __initconst
= { 42, 48, 56, 64 };
87 /* -----------------------------------------------------------------------------
91 static u32 cpg_mode __initdata
;
93 static struct clk
* __init
94 r8a7779_cpg_register_clock(struct device_node
*np
, struct r8a7779_cpg
*cpg
,
95 const struct cpg_clk_config
*config
,
96 unsigned int plla_mult
, const char *name
)
98 const char *parent_name
= "plla";
99 unsigned int mult
= 1;
100 unsigned int div
= 1;
102 if (!strcmp(name
, "plla")) {
103 parent_name
= of_clk_get_parent_name(np
, 0);
105 } else if (!strcmp(name
, "z")) {
107 mult
= config
->z_mult
;
108 } else if (!strcmp(name
, "zs") || !strcmp(name
, "s")) {
109 div
= config
->zs_and_s_div
;
110 } else if (!strcmp(name
, "s1")) {
111 div
= config
->s1_div
;
112 } else if (!strcmp(name
, "p")) {
114 } else if (!strcmp(name
, "b") || !strcmp(name
, "out")) {
115 div
= config
->b_and_out_div
;
117 return ERR_PTR(-EINVAL
);
120 return clk_register_fixed_factor(NULL
, name
, parent_name
, 0, mult
, div
);
123 static void __init
r8a7779_cpg_clocks_init(struct device_node
*np
)
125 const struct cpg_clk_config
*config
;
126 struct r8a7779_cpg
*cpg
;
128 unsigned int i
, plla_mult
;
131 num_clks
= of_property_count_strings(np
, "clock-output-names");
133 pr_err("%s: failed to count clocks\n", __func__
);
137 cpg
= kzalloc(sizeof(*cpg
), GFP_KERNEL
);
138 clks
= kzalloc(CPG_NUM_CLOCKS
* sizeof(*clks
), GFP_KERNEL
);
139 if (cpg
== NULL
|| clks
== NULL
) {
140 /* We're leaking memory on purpose, there's no point in cleaning
141 * up as the system won't boot anyway.
146 spin_lock_init(&cpg
->lock
);
148 cpg
->data
.clks
= clks
;
149 cpg
->data
.clk_num
= num_clks
;
151 config
= &cpg_clk_configs
[CPG_CLK_CONFIG_INDEX(cpg_mode
)];
152 plla_mult
= cpg_plla_mult
[CPG_PLLA_MULT_INDEX(cpg_mode
)];
154 for (i
= 0; i
< num_clks
; ++i
) {
158 of_property_read_string_index(np
, "clock-output-names", i
,
161 clk
= r8a7779_cpg_register_clock(np
, cpg
, config
,
164 pr_err("%s: failed to register %s %s clock (%ld)\n",
165 __func__
, np
->name
, name
, PTR_ERR(clk
));
167 cpg
->data
.clks
[i
] = clk
;
170 of_clk_add_provider(np
, of_clk_src_onecell_get
, &cpg
->data
);
172 cpg_mstp_add_clk_domain(np
);
174 CLK_OF_DECLARE(r8a7779_cpg_clks
, "renesas,r8a7779-cpg-clocks",
175 r8a7779_cpg_clocks_init
);
177 void __init
r8a7779_clocks_init(u32 mode
)