Merge branch 'v4.3-topic/clk-samsung' of git://git.kernel.org/pub/scm/linux/kernel...
[firefly-linux-kernel-4.4.55.git] / drivers / clk / versatile / clk-sp810.c
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License version 2 as
4  * published by the Free Software Foundation.
5  *
6  * This program is distributed in the hope that it will be useful,
7  * but WITHOUT ANY WARRANTY; without even the implied warranty of
8  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9  * GNU General Public License for more details.
10  *
11  * Copyright (C) 2013 ARM Limited
12  */
13
14 #include <linux/amba/sp810.h>
15 #include <linux/slab.h>
16 #include <linux/clk.h>
17 #include <linux/clk-provider.h>
18 #include <linux/err.h>
19 #include <linux/of.h>
20 #include <linux/of_address.h>
21
22 #define to_clk_sp810_timerclken(_hw) \
23                 container_of(_hw, struct clk_sp810_timerclken, hw)
24
25 struct clk_sp810;
26
27 struct clk_sp810_timerclken {
28         struct clk_hw hw;
29         struct clk *clk;
30         struct clk_sp810 *sp810;
31         int channel;
32 };
33
34 struct clk_sp810 {
35         struct device_node *node;
36         int refclk_index, timclk_index;
37         void __iomem *base;
38         spinlock_t lock;
39         struct clk_sp810_timerclken timerclken[4];
40         struct clk *refclk;
41         struct clk *timclk;
42 };
43
44 static u8 clk_sp810_timerclken_get_parent(struct clk_hw *hw)
45 {
46         struct clk_sp810_timerclken *timerclken = to_clk_sp810_timerclken(hw);
47         u32 val = readl(timerclken->sp810->base + SCCTRL);
48
49         return !!(val & (1 << SCCTRL_TIMERENnSEL_SHIFT(timerclken->channel)));
50 }
51
52 static int clk_sp810_timerclken_set_parent(struct clk_hw *hw, u8 index)
53 {
54         struct clk_sp810_timerclken *timerclken = to_clk_sp810_timerclken(hw);
55         struct clk_sp810 *sp810 = timerclken->sp810;
56         u32 val, shift = SCCTRL_TIMERENnSEL_SHIFT(timerclken->channel);
57         unsigned long flags = 0;
58
59         if (WARN_ON(index > 1))
60                 return -EINVAL;
61
62         spin_lock_irqsave(&sp810->lock, flags);
63
64         val = readl(sp810->base + SCCTRL);
65         val &= ~(1 << shift);
66         val |= index << shift;
67         writel(val, sp810->base + SCCTRL);
68
69         spin_unlock_irqrestore(&sp810->lock, flags);
70
71         return 0;
72 }
73
74 /*
75  * FIXME - setting the parent every time .prepare is invoked is inefficient.
76  * This is better handled by a dedicated clock tree configuration mechanism at
77  * init-time.  Revisit this later when such a mechanism exists
78  */
79 static int clk_sp810_timerclken_prepare(struct clk_hw *hw)
80 {
81         struct clk_sp810_timerclken *timerclken = to_clk_sp810_timerclken(hw);
82         struct clk_sp810 *sp810 = timerclken->sp810;
83         struct clk *old_parent = __clk_get_parent(hw->clk);
84         struct clk *new_parent;
85
86         if (!sp810->refclk)
87                 sp810->refclk = of_clk_get(sp810->node, sp810->refclk_index);
88
89         if (!sp810->timclk)
90                 sp810->timclk = of_clk_get(sp810->node, sp810->timclk_index);
91
92         if (WARN_ON(IS_ERR(sp810->refclk) || IS_ERR(sp810->timclk)))
93                 return -ENOENT;
94
95         /* Select fastest parent */
96         if (clk_get_rate(sp810->refclk) > clk_get_rate(sp810->timclk))
97                 new_parent = sp810->refclk;
98         else
99                 new_parent = sp810->timclk;
100
101         /* Switch the parent if necessary */
102         if (old_parent != new_parent) {
103                 clk_prepare(new_parent);
104                 clk_set_parent(hw->clk, new_parent);
105                 clk_unprepare(old_parent);
106         }
107
108         return 0;
109 }
110
111 static void clk_sp810_timerclken_unprepare(struct clk_hw *hw)
112 {
113         struct clk_sp810_timerclken *timerclken = to_clk_sp810_timerclken(hw);
114         struct clk_sp810 *sp810 = timerclken->sp810;
115
116         clk_put(sp810->timclk);
117         clk_put(sp810->refclk);
118 }
119
120 static const struct clk_ops clk_sp810_timerclken_ops = {
121         .prepare = clk_sp810_timerclken_prepare,
122         .unprepare = clk_sp810_timerclken_unprepare,
123         .get_parent = clk_sp810_timerclken_get_parent,
124         .set_parent = clk_sp810_timerclken_set_parent,
125 };
126
127 static struct clk *clk_sp810_timerclken_of_get(struct of_phandle_args *clkspec,
128                 void *data)
129 {
130         struct clk_sp810 *sp810 = data;
131
132         if (WARN_ON(clkspec->args_count != 1 || clkspec->args[0] >
133                         ARRAY_SIZE(sp810->timerclken)))
134                 return NULL;
135
136         return sp810->timerclken[clkspec->args[0]].clk;
137 }
138
139 static void __init clk_sp810_of_setup(struct device_node *node)
140 {
141         struct clk_sp810 *sp810 = kzalloc(sizeof(*sp810), GFP_KERNEL);
142         const char *parent_names[2];
143         char name[12];
144         struct clk_init_data init;
145         int i;
146
147         if (!sp810) {
148                 pr_err("Failed to allocate memory for SP810!\n");
149                 return;
150         }
151
152         sp810->refclk_index = of_property_match_string(node, "clock-names",
153                         "refclk");
154         parent_names[0] = of_clk_get_parent_name(node, sp810->refclk_index);
155
156         sp810->timclk_index = of_property_match_string(node, "clock-names",
157                         "timclk");
158         parent_names[1] = of_clk_get_parent_name(node, sp810->timclk_index);
159
160         if (!parent_names[0] || !parent_names[1]) {
161                 pr_warn("Failed to obtain parent clocks for SP810!\n");
162                 return;
163         }
164
165         sp810->node = node;
166         sp810->base = of_iomap(node, 0);
167         spin_lock_init(&sp810->lock);
168
169         init.name = name;
170         init.ops = &clk_sp810_timerclken_ops;
171         init.flags = CLK_IS_BASIC;
172         init.parent_names = parent_names;
173         init.num_parents = ARRAY_SIZE(parent_names);
174
175         for (i = 0; i < ARRAY_SIZE(sp810->timerclken); i++) {
176                 snprintf(name, ARRAY_SIZE(name), "timerclken%d", i);
177
178                 sp810->timerclken[i].sp810 = sp810;
179                 sp810->timerclken[i].channel = i;
180                 sp810->timerclken[i].hw.init = &init;
181
182                 sp810->timerclken[i].clk = clk_register(NULL,
183                                 &sp810->timerclken[i].hw);
184                 WARN_ON(IS_ERR(sp810->timerclken[i].clk));
185         }
186
187         of_clk_add_provider(node, clk_sp810_timerclken_of_get, sp810);
188 }
189 CLK_OF_DECLARE(sp810, "arm,sp810", clk_sp810_of_setup);