1 // SPDX-License-Identifier: GPL-2.0
3 * r8a7779 Core CPG Clocks
5 * Copyright (C) 2013, 2014 Horms Solutions Ltd.
10 #include <linux/clk-provider.h>
11 #include <linux/clk/renesas.h>
12 #include <linux/init.h>
13 #include <linux/kernel.h>
15 #include <linux/of_address.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/soc/renesas/rcar-rst.h>
20 #include <dt-bindings/clock/r8a7779-clock.h>
22 #define CPG_NUM_CLOCKS (R8A7779_CLK_OUT + 1)
25 struct clk_onecell_data data;
30 /* -----------------------------------------------------------------------------
36 * (PLLA = 1500) (PLLA = 1600)
38 *------------------------------------------------+--------------------
39 * clkz 1000 (2/3) 800 (1/2)
40 * clkzs 250 (1/6) 200 (1/8)
41 * clki 750 (1/2) 800 (1/2)
42 * clks 250 (1/6) 200 (1/8)
43 * clks1 125 (1/12) 100 (1/16)
44 * clks3 187.5 (1/8) 200 (1/8)
45 * clks4 93.7 (1/16) 100 (1/16)
46 * clkp 62.5 (1/24) 50 (1/32)
47 * clkg 62.5 (1/24) 66.6 (1/24)
49 * (MD2 = 0) 62.5 (1/24) 66.6 (1/24)
50 * (MD2 = 1) 41.6 (1/36) 50 (1/32)
53 #define CPG_CLK_CONFIG_INDEX(md) (((md) & (BIT(2)|BIT(1))) >> 1)
55 struct cpg_clk_config {
58 unsigned int zs_and_s_div;
61 unsigned int b_and_out_div;
64 static const struct cpg_clk_config cpg_clk_configs[4] __initconst = {
65 { 1, 2, 8, 16, 32, 24 },
66 { 2, 3, 6, 12, 24, 24 },
67 { 1, 2, 8, 16, 32, 32 },
68 { 2, 3, 6, 12, 24, 36 },
74 *------------------------
81 #define CPG_PLLA_MULT_INDEX(md) (((md) & (BIT(12)|BIT(11))) >> 11)
83 static const unsigned int cpg_plla_mult[4] __initconst = { 42, 48, 56, 64 };
85 /* -----------------------------------------------------------------------------
89 static struct clk * __init
90 r8a7779_cpg_register_clock(struct device_node *np, struct r8a7779_cpg *cpg,
91 const struct cpg_clk_config *config,
92 unsigned int plla_mult, const char *name)
94 const char *parent_name = "plla";
95 unsigned int mult = 1;
98 if (!strcmp(name, "plla")) {
99 parent_name = of_clk_get_parent_name(np, 0);
101 } else if (!strcmp(name, "z")) {
103 mult = config->z_mult;
104 } else if (!strcmp(name, "zs") || !strcmp(name, "s")) {
105 div = config->zs_and_s_div;
106 } else if (!strcmp(name, "s1")) {
107 div = config->s1_div;
108 } else if (!strcmp(name, "p")) {
110 } else if (!strcmp(name, "b") || !strcmp(name, "out")) {
111 div = config->b_and_out_div;
113 return ERR_PTR(-EINVAL);
116 return clk_register_fixed_factor(NULL, name, parent_name, 0, mult, div);
119 static void __init r8a7779_cpg_clocks_init(struct device_node *np)
121 const struct cpg_clk_config *config;
122 struct r8a7779_cpg *cpg;
124 unsigned int i, plla_mult;
128 if (rcar_rst_read_mode_pins(&mode))
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 = kcalloc(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(mode)];
152 plla_mult = cpg_plla_mult[CPG_PLLA_MULT_INDEX(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 %pOFn %s clock (%ld)\n",
165 __func__, np, 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);