Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 1 | /* |
| 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 | |
| 32 | static u8 clk_mux_get_parent(struct clk_hw *hw) |
| 33 | { |
| 34 | struct clk_mux *mux = to_clk_mux(hw); |
| 35 | u32 val; |
| 36 | |
| 37 | /* |
| 38 | * FIXME need a mux-specific flag to determine if val is bitwise or numeric |
| 39 | * e.g. sys_clkin_ck's clksel field is 3 bits wide, but ranges from 0x1 |
| 40 | * to 0x7 (index starts at one) |
| 41 | * OTOH, pmd_trace_clk_mux_ck uses a separate bit for each clock, so |
| 42 | * val = 0x4 really means "bit 2, index starts at bit 0" |
| 43 | */ |
| 44 | val = readl(mux->reg) >> mux->shift; |
| 45 | val &= (1 << mux->width) - 1; |
| 46 | |
| 47 | if (val && (mux->flags & CLK_MUX_INDEX_BIT)) |
| 48 | val = ffs(val) - 1; |
| 49 | |
| 50 | if (val && (mux->flags & CLK_MUX_INDEX_ONE)) |
| 51 | val--; |
| 52 | |
| 53 | if (val >= __clk_get_num_parents(hw->clk)) |
| 54 | return -EINVAL; |
| 55 | |
| 56 | return val; |
| 57 | } |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 58 | |
| 59 | static int clk_mux_set_parent(struct clk_hw *hw, u8 index) |
| 60 | { |
| 61 | struct clk_mux *mux = to_clk_mux(hw); |
| 62 | u32 val; |
| 63 | unsigned long flags = 0; |
| 64 | |
| 65 | if (mux->flags & CLK_MUX_INDEX_BIT) |
| 66 | index = (1 << ffs(index)); |
| 67 | |
| 68 | if (mux->flags & CLK_MUX_INDEX_ONE) |
| 69 | index++; |
| 70 | |
| 71 | if (mux->lock) |
| 72 | spin_lock_irqsave(mux->lock, flags); |
| 73 | |
| 74 | val = readl(mux->reg); |
| 75 | val &= ~(((1 << mux->width) - 1) << mux->shift); |
| 76 | val |= index << mux->shift; |
| 77 | writel(val, mux->reg); |
| 78 | |
| 79 | if (mux->lock) |
| 80 | spin_unlock_irqrestore(mux->lock, flags); |
| 81 | |
| 82 | return 0; |
| 83 | } |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 84 | |
Shawn Guo | 822c250 | 2012-03-27 15:23:22 +0800 | [diff] [blame] | 85 | const struct clk_ops clk_mux_ops = { |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 86 | .get_parent = clk_mux_get_parent, |
| 87 | .set_parent = clk_mux_set_parent, |
| 88 | }; |
| 89 | EXPORT_SYMBOL_GPL(clk_mux_ops); |
| 90 | |
| 91 | struct clk *clk_register_mux(struct device *dev, const char *name, |
Mark Brown | d305fb7 | 2012-03-21 20:01:20 +0000 | [diff] [blame] | 92 | const char **parent_names, u8 num_parents, unsigned long flags, |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 93 | void __iomem *reg, u8 shift, u8 width, |
| 94 | u8 clk_mux_flags, spinlock_t *lock) |
| 95 | { |
| 96 | struct clk_mux *mux; |
Mike Turquette | 27d5459 | 2012-03-26 17:51:03 -0700 | [diff] [blame] | 97 | struct clk *clk; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 98 | struct clk_init_data init; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 99 | |
Mike Turquette | 27d5459 | 2012-03-26 17:51:03 -0700 | [diff] [blame] | 100 | /* allocate the mux */ |
Shawn Guo | 10363b5 | 2012-03-27 15:23:20 +0800 | [diff] [blame] | 101 | mux = kzalloc(sizeof(struct clk_mux), GFP_KERNEL); |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 102 | if (!mux) { |
| 103 | pr_err("%s: could not allocate mux clk\n", __func__); |
| 104 | return ERR_PTR(-ENOMEM); |
| 105 | } |
| 106 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 107 | init.name = name; |
| 108 | init.ops = &clk_mux_ops; |
Rajendra Nayak | f7d8caa | 2012-06-01 14:02:47 +0530 | [diff] [blame] | 109 | init.flags = flags | CLK_IS_BASIC; |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 110 | init.parent_names = parent_names; |
| 111 | init.num_parents = num_parents; |
| 112 | |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 113 | /* struct clk_mux assignments */ |
| 114 | mux->reg = reg; |
| 115 | mux->shift = shift; |
| 116 | mux->width = width; |
| 117 | mux->flags = clk_mux_flags; |
| 118 | mux->lock = lock; |
Mike Turquette | 31df9db | 2012-05-06 18:48:11 -0700 | [diff] [blame] | 119 | mux->hw.init = &init; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 120 | |
Saravana Kannan | 0197b3e | 2012-04-25 22:58:56 -0700 | [diff] [blame] | 121 | clk = clk_register(dev, &mux->hw); |
Mike Turquette | 27d5459 | 2012-03-26 17:51:03 -0700 | [diff] [blame] | 122 | |
| 123 | if (IS_ERR(clk)) |
| 124 | kfree(mux); |
| 125 | |
| 126 | return clk; |
Mike Turquette | 9d9f78e | 2012-03-15 23:11:20 -0700 | [diff] [blame] | 127 | } |