blob: 4f96ff3ba728321563cbdc6b728f9a25c65d74c6 [file] [log] [blame]
Mike Turquette9d9f78e2012-03-15 23:11:20 -07001/*
2 * Copyright (C) 2011 Sascha Hauer, Pengutronix <s.hauer@pengutronix.de>
3 * Copyright (C) 2011 Richard Zhao, Linaro <richard.zhao@linaro.org>
4 * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Simple multiplexer clock implementation
11 */
12
13#include <linux/clk.h>
14#include <linux/clk-provider.h>
15#include <linux/module.h>
16#include <linux/slab.h>
17#include <linux/io.h>
18#include <linux/err.h>
19
20/*
21 * DOC: basic adjustable multiplexer clock that cannot gate
22 *
23 * Traits of this clock:
24 * prepare - clk_prepare only ensures that parents are prepared
25 * enable - clk_enable only ensures that parents are enabled
26 * rate - rate is only affected by parent switching. No clk_set_rate support
27 * parent - parent is adjustable through clk_set_parent
28 */
29
30#define to_clk_mux(_hw) container_of(_hw, struct clk_mux, hw)
31
32static u8 clk_mux_get_parent(struct clk_hw *hw)
33{
34 struct clk_mux *mux = to_clk_mux(hw);
Peter De Schrijverce4f3312013-03-22 14:07:53 +020035 int num_parents = __clk_get_num_parents(hw->clk);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070036 u32 val;
37
38 /*
39 * FIXME need a mux-specific flag to determine if val is bitwise or numeric
40 * e.g. sys_clkin_ck's clksel field is 3 bits wide, but ranges from 0x1
41 * to 0x7 (index starts at one)
42 * OTOH, pmd_trace_clk_mux_ck uses a separate bit for each clock, so
43 * val = 0x4 really means "bit 2, index starts at bit 0"
44 */
Gerhard Sittigaa514ce2013-07-22 14:14:40 +020045 val = clk_readl(mux->reg) >> mux->shift;
Peter De Schrijverce4f3312013-03-22 14:07:53 +020046 val &= mux->mask;
47
48 if (mux->table) {
49 int i;
50
51 for (i = 0; i < num_parents; i++)
52 if (mux->table[i] == val)
53 return i;
54 return -EINVAL;
55 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -070056
57 if (val && (mux->flags & CLK_MUX_INDEX_BIT))
58 val = ffs(val) - 1;
59
60 if (val && (mux->flags & CLK_MUX_INDEX_ONE))
61 val--;
62
Peter De Schrijverce4f3312013-03-22 14:07:53 +020063 if (val >= num_parents)
Mike Turquette9d9f78e2012-03-15 23:11:20 -070064 return -EINVAL;
65
66 return val;
67}
Mike Turquette9d9f78e2012-03-15 23:11:20 -070068
69static int clk_mux_set_parent(struct clk_hw *hw, u8 index)
70{
71 struct clk_mux *mux = to_clk_mux(hw);
72 u32 val;
73 unsigned long flags = 0;
74
Peter De Schrijverce4f3312013-03-22 14:07:53 +020075 if (mux->table)
76 index = mux->table[index];
Mike Turquette9d9f78e2012-03-15 23:11:20 -070077
Peter De Schrijverce4f3312013-03-22 14:07:53 +020078 else {
79 if (mux->flags & CLK_MUX_INDEX_BIT)
80 index = (1 << ffs(index));
81
82 if (mux->flags & CLK_MUX_INDEX_ONE)
83 index++;
84 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -070085
86 if (mux->lock)
87 spin_lock_irqsave(mux->lock, flags);
88
Haojian Zhuangba492e92013-06-08 22:47:17 +080089 if (mux->flags & CLK_MUX_HIWORD_MASK) {
90 val = mux->mask << (mux->shift + 16);
91 } else {
Gerhard Sittigaa514ce2013-07-22 14:14:40 +020092 val = clk_readl(mux->reg);
Haojian Zhuangba492e92013-06-08 22:47:17 +080093 val &= ~(mux->mask << mux->shift);
94 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -070095 val |= index << mux->shift;
Gerhard Sittigaa514ce2013-07-22 14:14:40 +020096 clk_writel(val, mux->reg);
Mike Turquette9d9f78e2012-03-15 23:11:20 -070097
98 if (mux->lock)
99 spin_unlock_irqrestore(mux->lock, flags);
100
101 return 0;
102}
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700103
Shawn Guo822c2502012-03-27 15:23:22 +0800104const struct clk_ops clk_mux_ops = {
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700105 .get_parent = clk_mux_get_parent,
106 .set_parent = clk_mux_set_parent,
James Hogane366fdd2013-07-29 12:25:02 +0100107 .determine_rate = __clk_mux_determine_rate,
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700108};
109EXPORT_SYMBOL_GPL(clk_mux_ops);
110
Tomasz Figac57acd12013-07-23 01:49:18 +0200111const struct clk_ops clk_mux_ro_ops = {
112 .get_parent = clk_mux_get_parent,
113};
114EXPORT_SYMBOL_GPL(clk_mux_ro_ops);
115
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200116struct clk *clk_register_mux_table(struct device *dev, const char *name,
Mark Brownd305fb72012-03-21 20:01:20 +0000117 const char **parent_names, u8 num_parents, unsigned long flags,
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200118 void __iomem *reg, u8 shift, u32 mask,
119 u8 clk_mux_flags, u32 *table, spinlock_t *lock)
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700120{
121 struct clk_mux *mux;
Mike Turquette27d54592012-03-26 17:51:03 -0700122 struct clk *clk;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700123 struct clk_init_data init;
Haojian Zhuangba492e92013-06-08 22:47:17 +0800124 u8 width = 0;
125
126 if (clk_mux_flags & CLK_MUX_HIWORD_MASK) {
127 width = fls(mask) - ffs(mask) + 1;
128 if (width + shift > 16) {
129 pr_err("mux value exceeds LOWORD field\n");
130 return ERR_PTR(-EINVAL);
131 }
132 }
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700133
Mike Turquette27d54592012-03-26 17:51:03 -0700134 /* allocate the mux */
Shawn Guo10363b52012-03-27 15:23:20 +0800135 mux = kzalloc(sizeof(struct clk_mux), GFP_KERNEL);
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700136 if (!mux) {
137 pr_err("%s: could not allocate mux clk\n", __func__);
138 return ERR_PTR(-ENOMEM);
139 }
140
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700141 init.name = name;
Tomasz Figac57acd12013-07-23 01:49:18 +0200142 if (clk_mux_flags & CLK_MUX_READ_ONLY)
143 init.ops = &clk_mux_ro_ops;
144 else
145 init.ops = &clk_mux_ops;
Rajendra Nayakf7d8caa2012-06-01 14:02:47 +0530146 init.flags = flags | CLK_IS_BASIC;
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700147 init.parent_names = parent_names;
148 init.num_parents = num_parents;
149
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700150 /* struct clk_mux assignments */
151 mux->reg = reg;
152 mux->shift = shift;
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200153 mux->mask = mask;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700154 mux->flags = clk_mux_flags;
155 mux->lock = lock;
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200156 mux->table = table;
Mike Turquette31df9db2012-05-06 18:48:11 -0700157 mux->hw.init = &init;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700158
Saravana Kannan0197b3e2012-04-25 22:58:56 -0700159 clk = clk_register(dev, &mux->hw);
Mike Turquette27d54592012-03-26 17:51:03 -0700160
161 if (IS_ERR(clk))
162 kfree(mux);
163
164 return clk;
Mike Turquette9d9f78e2012-03-15 23:11:20 -0700165}
Mike Turquette5cfe10b2013-08-15 19:06:29 -0700166EXPORT_SYMBOL_GPL(clk_register_mux_table);
Peter De Schrijverce4f3312013-03-22 14:07:53 +0200167
168struct clk *clk_register_mux(struct device *dev, const char *name,
169 const char **parent_names, u8 num_parents, unsigned long flags,
170 void __iomem *reg, u8 shift, u8 width,
171 u8 clk_mux_flags, spinlock_t *lock)
172{
173 u32 mask = BIT(width) - 1;
174
175 return clk_register_mux_table(dev, name, parent_names, num_parents,
176 flags, reg, shift, mask, clk_mux_flags,
177 NULL, lock);
178}
Mike Turquette5cfe10b2013-08-15 19:06:29 -0700179EXPORT_SYMBOL_GPL(clk_register_mux);