This flag was historically used to indicate that a clk is a "basic" type of clk like a mux, divider, gate, etc. This never turned out to be very useful though because it was hard to cleanly split "basic" clks from other clks in a system. This one flag was a way for type introspection and it just didn't scale. If anything, it was used by the TI clk driver to indicate that a clk_hw wasn't contained in the SoC specific clk structure. We can get rid of this define now that TI is finding those clks a different way. Cc: Tero Kristo <t-kristo@ti.com> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Paul Burton <paul.burton@mips.com> Cc: James Hogan <jhogan@kernel.org> Cc: <linux-mips@vger.kernel.org> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Kevin Hilman <khilman@baylibre.com> Cc: <linux-pwm@vger.kernel.org> Cc: <linux-amlogic@lists.infradead.org> Acked-by: Thierry Reding <treding@nvidia.com> Signed-off-by: Stephen Boyd <sboyd@kernel.org>
		
			
				
	
	
		
			131 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			131 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * mmp gate clock operation source file
 | |
|  *
 | |
|  * Copyright (C) 2014 Marvell
 | |
|  * Chao Xie <chao.xie@marvell.com>
 | |
|  *
 | |
|  * This file is licensed under the terms of the GNU General Public
 | |
|  * License version 2. This program is licensed "as is" without any
 | |
|  * warranty of any kind, whether express or implied.
 | |
|  */
 | |
| 
 | |
| #include <linux/clk-provider.h>
 | |
| #include <linux/slab.h>
 | |
| #include <linux/io.h>
 | |
| #include <linux/err.h>
 | |
| #include <linux/delay.h>
 | |
| 
 | |
| #include "clk.h"
 | |
| 
 | |
| /*
 | |
|  * Some clocks will have mutiple bits to enable the clocks, and
 | |
|  * the bits to disable the clock is not same as enabling bits.
 | |
|  */
 | |
| 
 | |
| #define to_clk_mmp_gate(hw)	container_of(hw, struct mmp_clk_gate, hw)
 | |
| 
 | |
| static int mmp_clk_gate_enable(struct clk_hw *hw)
 | |
| {
 | |
| 	struct mmp_clk_gate *gate = to_clk_mmp_gate(hw);
 | |
| 	unsigned long flags = 0;
 | |
| 	unsigned long rate;
 | |
| 	u32 tmp;
 | |
| 
 | |
| 	if (gate->lock)
 | |
| 		spin_lock_irqsave(gate->lock, flags);
 | |
| 
 | |
| 	tmp = readl(gate->reg);
 | |
| 	tmp &= ~gate->mask;
 | |
| 	tmp |= gate->val_enable;
 | |
| 	writel(tmp, gate->reg);
 | |
| 
 | |
| 	if (gate->lock)
 | |
| 		spin_unlock_irqrestore(gate->lock, flags);
 | |
| 
 | |
| 	if (gate->flags & MMP_CLK_GATE_NEED_DELAY) {
 | |
| 		rate = clk_hw_get_rate(hw);
 | |
| 		/* Need delay 2 cycles. */
 | |
| 		udelay(2000000/rate);
 | |
| 	}
 | |
| 
 | |
| 	return 0;
 | |
| }
 | |
| 
 | |
| static void mmp_clk_gate_disable(struct clk_hw *hw)
 | |
| {
 | |
| 	struct mmp_clk_gate *gate = to_clk_mmp_gate(hw);
 | |
| 	unsigned long flags = 0;
 | |
| 	u32 tmp;
 | |
| 
 | |
| 	if (gate->lock)
 | |
| 		spin_lock_irqsave(gate->lock, flags);
 | |
| 
 | |
| 	tmp = readl(gate->reg);
 | |
| 	tmp &= ~gate->mask;
 | |
| 	tmp |= gate->val_disable;
 | |
| 	writel(tmp, gate->reg);
 | |
| 
 | |
| 	if (gate->lock)
 | |
| 		spin_unlock_irqrestore(gate->lock, flags);
 | |
| }
 | |
| 
 | |
| static int mmp_clk_gate_is_enabled(struct clk_hw *hw)
 | |
| {
 | |
| 	struct mmp_clk_gate *gate = to_clk_mmp_gate(hw);
 | |
| 	unsigned long flags = 0;
 | |
| 	u32 tmp;
 | |
| 
 | |
| 	if (gate->lock)
 | |
| 		spin_lock_irqsave(gate->lock, flags);
 | |
| 
 | |
| 	tmp = readl(gate->reg);
 | |
| 
 | |
| 	if (gate->lock)
 | |
| 		spin_unlock_irqrestore(gate->lock, flags);
 | |
| 
 | |
| 	return (tmp & gate->mask) == gate->val_enable;
 | |
| }
 | |
| 
 | |
| const struct clk_ops mmp_clk_gate_ops = {
 | |
| 	.enable = mmp_clk_gate_enable,
 | |
| 	.disable = mmp_clk_gate_disable,
 | |
| 	.is_enabled = mmp_clk_gate_is_enabled,
 | |
| };
 | |
| 
 | |
| struct clk *mmp_clk_register_gate(struct device *dev, const char *name,
 | |
| 		const char *parent_name, unsigned long flags,
 | |
| 		void __iomem *reg, u32 mask, u32 val_enable, u32 val_disable,
 | |
| 		unsigned int gate_flags, spinlock_t *lock)
 | |
| {
 | |
| 	struct mmp_clk_gate *gate;
 | |
| 	struct clk *clk;
 | |
| 	struct clk_init_data init;
 | |
| 
 | |
| 	/* allocate the gate */
 | |
| 	gate = kzalloc(sizeof(*gate), GFP_KERNEL);
 | |
| 	if (!gate)
 | |
| 		return ERR_PTR(-ENOMEM);
 | |
| 
 | |
| 	init.name = name;
 | |
| 	init.ops = &mmp_clk_gate_ops;
 | |
| 	init.flags = flags;
 | |
| 	init.parent_names = (parent_name ? &parent_name : NULL);
 | |
| 	init.num_parents = (parent_name ? 1 : 0);
 | |
| 
 | |
| 	/* struct clk_gate assignments */
 | |
| 	gate->reg = reg;
 | |
| 	gate->mask = mask;
 | |
| 	gate->val_enable = val_enable;
 | |
| 	gate->val_disable = val_disable;
 | |
| 	gate->flags = gate_flags;
 | |
| 	gate->lock = lock;
 | |
| 	gate->hw.init = &init;
 | |
| 
 | |
| 	clk = clk_register(dev, &gate->hw);
 | |
| 
 | |
| 	if (IS_ERR(clk))
 | |
| 		kfree(gate);
 | |
| 
 | |
| 	return clk;
 | |
| }
 |