4 * Copyright (C) 2013 Texas Instruments, Inc.
6 * Tero Kristo <t-kristo@ti.com>
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.
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.
18 #include <linux/clk.h>
19 #include <linux/clk-provider.h>
20 #include <linux/clkdev.h>
21 #include <linux/clk/ti.h>
23 #include <linux/of_address.h>
24 #include <linux/list.h>
25 #include <linux/regmap.h>
26 #include <linux/bootmem.h>
31 #define pr_fmt(fmt) "%s: " fmt, __func__
33 struct ti_clk_ll_ops
*ti_clk_ll_ops
;
34 static struct device_node
*clocks_node_ptr
[CLK_MAX_MEMMAPS
];
36 static struct ti_clk_features ti_clk_features
;
39 struct regmap
*regmap
;
43 static struct clk_iomap
*clk_memmaps
[CLK_MAX_MEMMAPS
];
45 static void clk_memmap_writel(u32 val
, void __iomem
*reg
)
47 struct clk_omap_reg
*r
= (struct clk_omap_reg
*)®
;
48 struct clk_iomap
*io
= clk_memmaps
[r
->index
];
51 regmap_write(io
->regmap
, r
->offset
, val
);
53 writel_relaxed(val
, io
->mem
+ r
->offset
);
56 static u32
clk_memmap_readl(void __iomem
*reg
)
59 struct clk_omap_reg
*r
= (struct clk_omap_reg
*)®
;
60 struct clk_iomap
*io
= clk_memmaps
[r
->index
];
63 regmap_read(io
->regmap
, r
->offset
, &val
);
65 val
= readl_relaxed(io
->mem
+ r
->offset
);
71 * ti_clk_setup_ll_ops - setup low level clock operations
72 * @ops: low level clock ops descriptor
74 * Sets up low level clock operations for TI clock driver. This is used
75 * to provide various callbacks for the clock driver towards platform
76 * specific code. Returns 0 on success, -EBUSY if ll_ops have been
79 int ti_clk_setup_ll_ops(struct ti_clk_ll_ops
*ops
)
82 pr_err("Attempt to register ll_ops multiple times.\n");
87 ops
->clk_readl
= clk_memmap_readl
;
88 ops
->clk_writel
= clk_memmap_writel
;
94 * ti_dt_clocks_register - register DT alias clocks during boot
95 * @oclks: list of clocks to register
97 * Register alias or non-standard DT clock entries during boot. By
98 * default, DT clocks are found based on their node name. If any
99 * additional con-id / dev-id -> clock mapping is required, use this
100 * function to list these.
102 void __init
ti_dt_clocks_register(struct ti_dt_clk oclks
[])
105 struct device_node
*node
;
107 struct of_phandle_args clkspec
;
109 for (c
= oclks
; c
->node_name
!= NULL
; c
++) {
110 node
= of_find_node_by_name(NULL
, c
->node_name
);
112 clk
= of_clk_get_from_provider(&clkspec
);
118 pr_warn("failed to lookup clock node %s\n",
124 struct clk_init_item
{
125 struct device_node
*node
;
127 ti_of_clk_init_cb_t func
;
128 struct list_head link
;
131 static LIST_HEAD(retry_list
);
134 * ti_clk_retry_init - retries a failed clock init at later phase
135 * @node: device not for the clock
136 * @hw: partially initialized clk_hw struct for the clock
137 * @func: init function to be called for the clock
139 * Adds a failed clock init to the retry list. The retry list is parsed
140 * once all the other clocks have been initialized.
142 int __init
ti_clk_retry_init(struct device_node
*node
, struct clk_hw
*hw
,
143 ti_of_clk_init_cb_t func
)
145 struct clk_init_item
*retry
;
147 pr_debug("%s: adding to retry list...\n", node
->name
);
148 retry
= kzalloc(sizeof(*retry
), GFP_KERNEL
);
155 list_add(&retry
->link
, &retry_list
);
161 * ti_clk_get_reg_addr - get register address for a clock register
162 * @node: device node for the clock
163 * @index: register index from the clock node
165 * Builds clock register address from device tree information. This
166 * is a struct of type clk_omap_reg. Returns a pointer to the register
167 * address, or a pointer error value in failure.
169 void __iomem
*ti_clk_get_reg_addr(struct device_node
*node
, int index
)
171 struct clk_omap_reg
*reg
;
176 reg
= (struct clk_omap_reg
*)&tmp
;
178 for (i
= 0; i
< CLK_MAX_MEMMAPS
; i
++) {
179 if (clocks_node_ptr
[i
] == node
->parent
)
183 if (i
== CLK_MAX_MEMMAPS
) {
184 pr_err("clk-provider not found for %s!\n", node
->name
);
185 return IOMEM_ERR_PTR(-ENOENT
);
190 if (of_property_read_u32_index(node
, "reg", index
, &val
)) {
191 pr_err("%s must have reg[%d]!\n", node
->name
, index
);
192 return IOMEM_ERR_PTR(-EINVAL
);
197 return (__force
void __iomem
*)tmp
;
201 * omap2_clk_provider_init - init master clock provider
202 * @parent: master node
203 * @index: internal index for clk_reg_ops
204 * @syscon: syscon regmap pointer for accessing clock registers
205 * @mem: iomem pointer for the clock provider memory area, only used if
206 * syscon is not provided
208 * Initializes a master clock IP block. This basically sets up the
209 * mapping from clocks node to the memory map index. All the clocks
210 * are then initialized through the common of_clk_init call, and the
211 * clocks will access their memory maps based on the node layout.
212 * Returns 0 in success.
214 int __init
omap2_clk_provider_init(struct device_node
*parent
, int index
,
215 struct regmap
*syscon
, void __iomem
*mem
)
217 struct device_node
*clocks
;
218 struct clk_iomap
*io
;
220 /* get clocks for this parent */
221 clocks
= of_get_child_by_name(parent
, "clocks");
223 pr_err("%s missing 'clocks' child node.\n", parent
->name
);
227 /* add clocks node info */
228 clocks_node_ptr
[index
] = clocks
;
230 io
= kzalloc(sizeof(*io
), GFP_KERNEL
);
237 clk_memmaps
[index
] = io
;
243 * omap2_clk_legacy_provider_init - initialize a legacy clock provider
244 * @index: index for the clock provider
245 * @mem: iomem pointer for the clock provider memory area
247 * Initializes a legacy clock provider memory mapping.
249 void __init
omap2_clk_legacy_provider_init(int index
, void __iomem
*mem
)
251 struct clk_iomap
*io
;
253 io
= memblock_virt_alloc(sizeof(*io
), 0);
257 clk_memmaps
[index
] = io
;
261 * ti_dt_clk_init_retry_clks - init clocks from the retry list
263 * Initializes any clocks that have failed to initialize before,
264 * reasons being missing parent node(s) during earlier init. This
265 * typically happens only for DPLLs which need to have both of their
266 * parent clocks ready during init.
268 void ti_dt_clk_init_retry_clks(void)
270 struct clk_init_item
*retry
;
271 struct clk_init_item
*tmp
;
274 while (!list_empty(&retry_list
) && retries
) {
275 list_for_each_entry_safe(retry
, tmp
, &retry_list
, link
) {
276 pr_debug("retry-init: %s\n", retry
->node
->name
);
277 retry
->func(retry
->hw
, retry
->node
);
278 list_del(&retry
->link
);
285 #if defined(CONFIG_ARCH_OMAP3) && defined(CONFIG_ATAGS)
286 void __init
ti_clk_patch_legacy_clks(struct ti_clk
**patch
)
289 memcpy((*patch
)->patch
, *patch
, sizeof(**patch
));
294 struct clk __init
*ti_clk_register_clk(struct ti_clk
*setup
)
297 struct ti_clk_fixed
*fixed
;
298 struct ti_clk_fixed_factor
*fixed_factor
;
299 struct clk_hw
*clk_hw
;
304 switch (setup
->type
) {
308 clk
= clk_register_fixed_rate(NULL
, setup
->name
, NULL
, 0,
312 clk
= ti_clk_register_mux(setup
);
315 clk
= ti_clk_register_divider(setup
);
317 case TI_CLK_COMPOSITE
:
318 clk
= ti_clk_register_composite(setup
);
320 case TI_CLK_FIXED_FACTOR
:
321 fixed_factor
= setup
->data
;
323 clk
= clk_register_fixed_factor(NULL
, setup
->name
,
324 fixed_factor
->parent
,
325 0, fixed_factor
->mult
,
329 clk
= ti_clk_register_gate(setup
);
332 clk
= ti_clk_register_dpll(setup
);
335 pr_err("bad type for %s!\n", setup
->name
);
336 clk
= ERR_PTR(-EINVAL
);
341 if (setup
->clkdm_name
) {
342 clk_hw
= __clk_get_hw(clk
);
343 if (clk_hw_get_flags(clk_hw
) & CLK_IS_BASIC
) {
344 pr_warn("can't setup clkdm for basic clk %s\n",
347 to_clk_hw_omap(clk_hw
)->clkdm_name
=
349 omap2_init_clk_clkdm(clk_hw
);
357 int __init
ti_clk_register_legacy_clks(struct ti_clk_alias
*clks
)
361 struct ti_clk_alias
*retry_clk
;
362 struct ti_clk_alias
*tmp
;
365 clk
= ti_clk_register_clk(clks
->clk
);
367 if (PTR_ERR(clk
) == -EAGAIN
) {
368 list_add(&clks
->link
, &retry_list
);
370 pr_err("register for %s failed: %ld\n",
371 clks
->clk
->name
, PTR_ERR(clk
));
376 clkdev_add(&clks
->lk
);
383 while (!list_empty(&retry_list
) && retry
) {
385 list_for_each_entry_safe(retry_clk
, tmp
, &retry_list
, link
) {
386 pr_debug("retry-init: %s\n", retry_clk
->clk
->name
);
387 clk
= ti_clk_register_clk(retry_clk
->clk
);
389 if (PTR_ERR(clk
) == -EAGAIN
) {
392 pr_err("register for %s failed: %ld\n",
393 retry_clk
->clk
->name
,
399 retry_clk
->lk
.clk
= clk
;
400 clkdev_add(&retry_clk
->lk
);
401 list_del(&retry_clk
->link
);
411 * ti_clk_setup_features - setup clock features flags
412 * @features: features definition to use
414 * Initializes the clock driver features flags based on platform
415 * provided data. No return value.
417 void __init
ti_clk_setup_features(struct ti_clk_features
*features
)
419 memcpy(&ti_clk_features
, features
, sizeof(*features
));
423 * ti_clk_get_features - get clock driver features flags
425 * Get TI clock driver features description. Returns a pointer
426 * to the current feature setup.
428 const struct ti_clk_features
*ti_clk_get_features(void)
430 return &ti_clk_features
;
434 * omap2_clk_enable_init_clocks - prepare & enable a list of clocks
435 * @clk_names: ptr to an array of strings of clock names to enable
436 * @num_clocks: number of clock names in @clk_names
438 * Prepare and enable a list of clocks, named by @clk_names. No
439 * return value. XXX Deprecated; only needed until these clocks are
440 * properly claimed and enabled by the drivers or core code that uses
441 * them. XXX What code disables & calls clk_put on these clocks?
443 void omap2_clk_enable_init_clocks(const char **clk_names
, u8 num_clocks
)
445 struct clk
*init_clk
;
448 for (i
= 0; i
< num_clocks
; i
++) {
449 init_clk
= clk_get(NULL
, clk_names
[i
]);
450 if (WARN(IS_ERR(init_clk
), "could not find init clock %s\n",
453 clk_prepare_enable(init_clk
);