676dbf170b3185333fe3fa02e4835a224d6a6441
[firefly-linux-kernel-4.4.55.git] / drivers / clk / ti / clk.c
1 /*
2  * TI clock support
3  *
4  * Copyright (C) 2013 Texas Instruments, Inc.
5  *
6  * Tero Kristo <t-kristo@ti.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 as
10  * published by the Free Software Foundation.
11  *
12  * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13  * kind, whether express or implied; without even the implied warranty
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  */
17
18 #include <linux/clk-provider.h>
19 #include <linux/clkdev.h>
20 #include <linux/clk/ti.h>
21 #include <linux/of.h>
22 #include <linux/of_address.h>
23 #include <linux/list.h>
24
25 #include "clock.h"
26
27 #undef pr_fmt
28 #define pr_fmt(fmt) "%s: " fmt, __func__
29
30 struct ti_clk_ll_ops *ti_clk_ll_ops;
31 static struct device_node *clocks_node_ptr[CLK_MAX_MEMMAPS];
32
33 /**
34  * ti_dt_clocks_register - register DT alias clocks during boot
35  * @oclks: list of clocks to register
36  *
37  * Register alias or non-standard DT clock entries during boot. By
38  * default, DT clocks are found based on their node name. If any
39  * additional con-id / dev-id -> clock mapping is required, use this
40  * function to list these.
41  */
42 void __init ti_dt_clocks_register(struct ti_dt_clk oclks[])
43 {
44         struct ti_dt_clk *c;
45         struct device_node *node;
46         struct clk *clk;
47         struct of_phandle_args clkspec;
48
49         for (c = oclks; c->node_name != NULL; c++) {
50                 node = of_find_node_by_name(NULL, c->node_name);
51                 clkspec.np = node;
52                 clk = of_clk_get_from_provider(&clkspec);
53
54                 if (!IS_ERR(clk)) {
55                         c->lk.clk = clk;
56                         clkdev_add(&c->lk);
57                 } else {
58                         pr_warn("failed to lookup clock node %s\n",
59                                 c->node_name);
60                 }
61         }
62 }
63
64 struct clk_init_item {
65         struct device_node *node;
66         struct clk_hw *hw;
67         ti_of_clk_init_cb_t func;
68         struct list_head link;
69 };
70
71 static LIST_HEAD(retry_list);
72
73 /**
74  * ti_clk_retry_init - retries a failed clock init at later phase
75  * @node: device not for the clock
76  * @hw: partially initialized clk_hw struct for the clock
77  * @func: init function to be called for the clock
78  *
79  * Adds a failed clock init to the retry list. The retry list is parsed
80  * once all the other clocks have been initialized.
81  */
82 int __init ti_clk_retry_init(struct device_node *node, struct clk_hw *hw,
83                               ti_of_clk_init_cb_t func)
84 {
85         struct clk_init_item *retry;
86
87         pr_debug("%s: adding to retry list...\n", node->name);
88         retry = kzalloc(sizeof(*retry), GFP_KERNEL);
89         if (!retry)
90                 return -ENOMEM;
91
92         retry->node = node;
93         retry->func = func;
94         retry->hw = hw;
95         list_add(&retry->link, &retry_list);
96
97         return 0;
98 }
99
100 /**
101  * ti_clk_get_reg_addr - get register address for a clock register
102  * @node: device node for the clock
103  * @index: register index from the clock node
104  *
105  * Builds clock register address from device tree information. This
106  * is a struct of type clk_omap_reg.
107  */
108 void __iomem *ti_clk_get_reg_addr(struct device_node *node, int index)
109 {
110         struct clk_omap_reg *reg;
111         u32 val;
112         u32 tmp;
113         int i;
114
115         reg = (struct clk_omap_reg *)&tmp;
116
117         for (i = 0; i < CLK_MAX_MEMMAPS; i++) {
118                 if (clocks_node_ptr[i] == node->parent)
119                         break;
120         }
121
122         if (i == CLK_MAX_MEMMAPS) {
123                 pr_err("clk-provider not found for %s!\n", node->name);
124                 return NULL;
125         }
126
127         reg->index = i;
128
129         if (of_property_read_u32_index(node, "reg", index, &val)) {
130                 pr_err("%s must have reg[%d]!\n", node->name, index);
131                 return NULL;
132         }
133
134         reg->offset = val;
135
136         return (void __iomem *)tmp;
137 }
138
139 /**
140  * ti_dt_clk_init_provider - init master clock provider
141  * @parent: master node
142  * @index: internal index for clk_reg_ops
143  *
144  * Initializes a master clock IP block. This basically sets up the
145  * mapping from clocks node to the memory map index. All the clocks
146  * are then initialized through the common of_clk_init call, and the
147  * clocks will access their memory maps based on the node layout.
148  */
149 void ti_dt_clk_init_provider(struct device_node *parent, int index)
150 {
151         struct device_node *clocks;
152
153         /* get clocks for this parent */
154         clocks = of_get_child_by_name(parent, "clocks");
155         if (!clocks) {
156                 pr_err("%s missing 'clocks' child node.\n", parent->name);
157                 return;
158         }
159
160         /* add clocks node info */
161         clocks_node_ptr[index] = clocks;
162 }
163
164 /**
165  * ti_dt_clk_init_retry_clks - init clocks from the retry list
166  *
167  * Initializes any clocks that have failed to initialize before,
168  * reasons being missing parent node(s) during earlier init. This
169  * typically happens only for DPLLs which need to have both of their
170  * parent clocks ready during init.
171  */
172 void ti_dt_clk_init_retry_clks(void)
173 {
174         struct clk_init_item *retry;
175         struct clk_init_item *tmp;
176         int retries = 5;
177
178         while (!list_empty(&retry_list) && retries) {
179                 list_for_each_entry_safe(retry, tmp, &retry_list, link) {
180                         pr_debug("retry-init: %s\n", retry->node->name);
181                         retry->func(retry->hw, retry->node);
182                         list_del(&retry->link);
183                         kfree(retry);
184                 }
185                 retries--;
186         }
187 }
188
189 void __init ti_clk_patch_legacy_clks(struct ti_clk **patch)
190 {
191         while (*patch) {
192                 memcpy((*patch)->patch, *patch, sizeof(**patch));
193                 patch++;
194         }
195 }
196
197 struct clk __init *ti_clk_register_clk(struct ti_clk *setup)
198 {
199         struct clk *clk;
200         struct ti_clk_fixed *fixed;
201         struct ti_clk_fixed_factor *fixed_factor;
202         struct clk_hw *clk_hw;
203
204         if (setup->clk)
205                 return setup->clk;
206
207         switch (setup->type) {
208         case TI_CLK_FIXED:
209                 fixed = setup->data;
210
211                 clk = clk_register_fixed_rate(NULL, setup->name, NULL,
212                                               CLK_IS_ROOT, fixed->frequency);
213                 break;
214         case TI_CLK_MUX:
215                 clk = ti_clk_register_mux(setup);
216                 break;
217         case TI_CLK_FIXED_FACTOR:
218                 fixed_factor = setup->data;
219
220                 clk = clk_register_fixed_factor(NULL, setup->name,
221                                                 fixed_factor->parent,
222                                                 0, fixed_factor->mult,
223                                                 fixed_factor->div);
224                 break;
225         case TI_CLK_GATE:
226                 clk = ti_clk_register_gate(setup);
227                 break;
228         default:
229                 pr_err("bad type for %s!\n", setup->name);
230                 clk = ERR_PTR(-EINVAL);
231         }
232
233         if (!IS_ERR(clk)) {
234                 setup->clk = clk;
235                 if (setup->clkdm_name) {
236                         if (__clk_get_flags(clk) & CLK_IS_BASIC) {
237                                 pr_warn("can't setup clkdm for basic clk %s\n",
238                                         setup->name);
239                         } else {
240                                 clk_hw = __clk_get_hw(clk);
241                                 to_clk_hw_omap(clk_hw)->clkdm_name =
242                                         setup->clkdm_name;
243                                 omap2_init_clk_clkdm(clk_hw);
244                         }
245                 }
246         }
247
248         return clk;
249 }
250
251 int __init ti_clk_register_legacy_clks(struct ti_clk_alias *clks)
252 {
253         struct clk *clk;
254         bool retry;
255         struct ti_clk_alias *retry_clk;
256         struct ti_clk_alias *tmp;
257
258         while (clks->clk) {
259                 clk = ti_clk_register_clk(clks->clk);
260                 if (IS_ERR(clk)) {
261                         if (PTR_ERR(clk) == -EAGAIN) {
262                                 list_add(&clks->link, &retry_list);
263                         } else {
264                                 pr_err("register for %s failed: %ld\n",
265                                        clks->clk->name, PTR_ERR(clk));
266                                 return PTR_ERR(clk);
267                         }
268                 } else {
269                         clks->lk.clk = clk;
270                         clkdev_add(&clks->lk);
271                 }
272                 clks++;
273         }
274
275         retry = true;
276
277         while (!list_empty(&retry_list) && retry) {
278                 retry = false;
279                 list_for_each_entry_safe(retry_clk, tmp, &retry_list, link) {
280                         pr_debug("retry-init: %s\n", retry_clk->clk->name);
281                         clk = ti_clk_register_clk(retry_clk->clk);
282                         if (IS_ERR(clk)) {
283                                 if (PTR_ERR(clk) == -EAGAIN) {
284                                         continue;
285                                 } else {
286                                         pr_err("register for %s failed: %ld\n",
287                                                retry_clk->clk->name,
288                                                PTR_ERR(clk));
289                                         return PTR_ERR(clk);
290                                 }
291                         } else {
292                                 retry = true;
293                                 retry_clk->lk.clk = clk;
294                                 clkdev_add(&retry_clk->lk);
295                                 list_del(&retry_clk->link);
296                         }
297                 }
298         }
299
300         return 0;
301 }