blob: df12b53071752955d533f20391d1a26a2a4dcd1e [file] [log] [blame]
Martin Fuzzey75f83d02013-04-23 20:16:59 +08001#include <linux/clk.h>
2#include <linux/err.h>
3#include <linux/of.h>
4#include <linux/slab.h>
Sascha Hauer3a84d172012-09-11 08:50:00 +02005#include <linux/spinlock.h>
Fabio Estevam41921c12013-03-25 09:20:38 -03006#include "clk.h"
Sascha Hauer3a84d172012-09-11 08:50:00 +02007
8DEFINE_SPINLOCK(imx_ccm_lock);
Martin Fuzzey75f83d02013-04-23 20:16:59 +08009
Alexander Shiyan229be9c2014-06-10 19:40:26 +040010void __init imx_check_clocks(struct clk *clks[], unsigned int count)
11{
12 unsigned i;
13
14 for (i = 0; i < count; i++)
15 if (IS_ERR(clks[i]))
16 pr_err("i.MX clk %u: register failed with %ld\n",
17 i, PTR_ERR(clks[i]));
18}
19
Martin Fuzzey75f83d02013-04-23 20:16:59 +080020static struct clk * __init imx_obtain_fixed_clock_from_dt(const char *name)
21{
Fabio Estevamcc27cce2013-05-24 16:55:42 -030022 struct of_phandle_args phandle;
Martin Fuzzey75f83d02013-04-23 20:16:59 +080023 struct clk *clk = ERR_PTR(-ENODEV);
24 char *path;
25
26 path = kasprintf(GFP_KERNEL, "/clocks/%s", name);
27 if (!path)
28 return ERR_PTR(-ENOMEM);
29
30 phandle.np = of_find_node_by_path(path);
31 kfree(path);
32
33 if (phandle.np) {
34 clk = of_clk_get_from_provider(&phandle);
35 of_node_put(phandle.np);
36 }
37 return clk;
38}
39
40struct clk * __init imx_obtain_fixed_clock(
41 const char *name, unsigned long rate)
42{
43 struct clk *clk;
44
45 clk = imx_obtain_fixed_clock_from_dt(name);
46 if (IS_ERR(clk))
47 clk = imx_clk_fixed(name, rate);
48 return clk;
49}
Liu Yingdfd87142013-07-04 17:57:17 +080050
51/*
52 * This fixups the register CCM_CSCMR1 write value.
53 * The write/read/divider values of the aclk_podf field
54 * of that register have the relationship described by
55 * the following table:
56 *
57 * write value read value divider
58 * 3b'000 3b'110 7
59 * 3b'001 3b'111 8
60 * 3b'010 3b'100 5
61 * 3b'011 3b'101 6
62 * 3b'100 3b'010 3
63 * 3b'101 3b'011 4
64 * 3b'110 3b'000 1
65 * 3b'111 3b'001 2(default)
66 *
67 * That's why we do the xor operation below.
68 */
69#define CSCMR1_FIXUP 0x00600000
70
71void imx_cscmr1_fixup(u32 *val)
72{
73 *val ^= CSCMR1_FIXUP;
74 return;
75}