mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	clk: gate: add CLK_GATE_HIWORD_MASK
In Rockchip Cortex-A9 based chips, they don't use paradigm of reading-changing-writing the register contents. Instead they use a hiword mask to indicate the changed bits. When b1 should be set as gate, it also needs to indicate the change by setting hiword mask (b1 << 16). The patch adds gate flag for this usage. Signed-off-by: Heiko Stuebner <heiko@sntech.de> Signed-off-by: Haojian Zhuang <haojian.zhuang@linaro.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
This commit is contained in:
		
							parent
							
								
									d57dfe7508
								
							
						
					
					
						commit
						045779942c
					
				
					 2 changed files with 23 additions and 5 deletions
				
			
		| 
						 | 
					@ -53,12 +53,18 @@ static void clk_gate_endisable(struct clk_hw *hw, int enable)
 | 
				
			||||||
	if (gate->lock)
 | 
						if (gate->lock)
 | 
				
			||||||
		spin_lock_irqsave(gate->lock, flags);
 | 
							spin_lock_irqsave(gate->lock, flags);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	reg = readl(gate->reg);
 | 
						if (gate->flags & CLK_GATE_HIWORD_MASK) {
 | 
				
			||||||
 | 
							reg = BIT(gate->bit_idx + 16);
 | 
				
			||||||
 | 
							if (set)
 | 
				
			||||||
 | 
								reg |= BIT(gate->bit_idx);
 | 
				
			||||||
 | 
						} else {
 | 
				
			||||||
 | 
							reg = readl(gate->reg);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (set)
 | 
							if (set)
 | 
				
			||||||
		reg |= BIT(gate->bit_idx);
 | 
								reg |= BIT(gate->bit_idx);
 | 
				
			||||||
	else
 | 
							else
 | 
				
			||||||
		reg &= ~BIT(gate->bit_idx);
 | 
								reg &= ~BIT(gate->bit_idx);
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	writel(reg, gate->reg);
 | 
						writel(reg, gate->reg);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -121,6 +127,13 @@ struct clk *clk_register_gate(struct device *dev, const char *name,
 | 
				
			||||||
	struct clk *clk;
 | 
						struct clk *clk;
 | 
				
			||||||
	struct clk_init_data init;
 | 
						struct clk_init_data init;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
 | 
				
			||||||
 | 
							if (bit_idx > 16) {
 | 
				
			||||||
 | 
								pr_err("gate bit exceeds LOWORD field\n");
 | 
				
			||||||
 | 
								return ERR_PTR(-EINVAL);
 | 
				
			||||||
 | 
							}
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* allocate the gate */
 | 
						/* allocate the gate */
 | 
				
			||||||
	gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL);
 | 
						gate = kzalloc(sizeof(struct clk_gate), GFP_KERNEL);
 | 
				
			||||||
	if (!gate) {
 | 
						if (!gate) {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -210,6 +210,10 @@ void of_fixed_clk_setup(struct device_node *np);
 | 
				
			||||||
 * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to
 | 
					 * CLK_GATE_SET_TO_DISABLE - by default this clock sets the bit at bit_idx to
 | 
				
			||||||
 * 	enable the clock.  Setting this flag does the opposite: setting the bit
 | 
					 * 	enable the clock.  Setting this flag does the opposite: setting the bit
 | 
				
			||||||
 * 	disable the clock and clearing it enables the clock
 | 
					 * 	disable the clock and clearing it enables the clock
 | 
				
			||||||
 | 
					 * CLK_GATE_HIWORD_MASK - The gate settings are only in lower 16-bit
 | 
				
			||||||
 | 
					 *   of this register, and mask of gate bits are in higher 16-bit of this
 | 
				
			||||||
 | 
					 *   register.  While setting the gate bits, higher 16-bit should also be
 | 
				
			||||||
 | 
					 *   updated to indicate changing gate bits.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
struct clk_gate {
 | 
					struct clk_gate {
 | 
				
			||||||
	struct clk_hw hw;
 | 
						struct clk_hw hw;
 | 
				
			||||||
| 
						 | 
					@ -220,6 +224,7 @@ struct clk_gate {
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define CLK_GATE_SET_TO_DISABLE		BIT(0)
 | 
					#define CLK_GATE_SET_TO_DISABLE		BIT(0)
 | 
				
			||||||
 | 
					#define CLK_GATE_HIWORD_MASK		BIT(1)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern const struct clk_ops clk_gate_ops;
 | 
					extern const struct clk_ops clk_gate_ops;
 | 
				
			||||||
struct clk *clk_register_gate(struct device *dev, const char *name,
 | 
					struct clk *clk_register_gate(struct device *dev, const char *name,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue