Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 308206
b: refs/heads/master
c: fbc42aa
h: refs/heads/master
v: v3
  • Loading branch information
Viresh Kumar authored and Mike Turquette committed Apr 24, 2012
1 parent 684ece3 commit 5105bde
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 30 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1f73f31ad6e37df0679f6842b7405d96515ec8b1
refs/heads/master: fbc42aab543307e9bfc1dfb029db929f3fafcacd
54 changes: 25 additions & 29 deletions trunk/drivers/clk/clk-gate.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,32 +28,38 @@

#define to_clk_gate(_hw) container_of(_hw, struct clk_gate, hw)

static void clk_gate_set_bit(struct clk_gate *gate)
/*
* It works on following logic:
*
* For enabling clock, enable = 1
* set2dis = 1 -> clear bit -> set = 0
* set2dis = 0 -> set bit -> set = 1
*
* For disabling clock, enable = 0
* set2dis = 1 -> set bit -> set = 1
* set2dis = 0 -> clear bit -> set = 0
*
* So, result is always: enable xor set2dis.
*/
static void clk_gate_endisable(struct clk_hw *hw, int enable)
{
u32 reg;
struct clk_gate *gate = to_clk_gate(hw);
int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
unsigned long flags = 0;
u32 reg;

set ^= enable;

if (gate->lock)
spin_lock_irqsave(gate->lock, flags);

reg = readl(gate->reg);
reg |= BIT(gate->bit_idx);
writel(reg, gate->reg);

if (gate->lock)
spin_unlock_irqrestore(gate->lock, flags);
}

static void clk_gate_clear_bit(struct clk_gate *gate)
{
u32 reg;
unsigned long flags = 0;

if (gate->lock)
spin_lock_irqsave(gate->lock, flags);
if (set)
reg |= BIT(gate->bit_idx);
else
reg &= ~BIT(gate->bit_idx);

reg = readl(gate->reg);
reg &= ~BIT(gate->bit_idx);
writel(reg, gate->reg);

if (gate->lock)
Expand All @@ -62,24 +68,14 @@ static void clk_gate_clear_bit(struct clk_gate *gate)

static int clk_gate_enable(struct clk_hw *hw)
{
struct clk_gate *gate = to_clk_gate(hw);

if (gate->flags & CLK_GATE_SET_TO_DISABLE)
clk_gate_clear_bit(gate);
else
clk_gate_set_bit(gate);
clk_gate_endisable(hw, 1);

return 0;
}

static void clk_gate_disable(struct clk_hw *hw)
{
struct clk_gate *gate = to_clk_gate(hw);

if (gate->flags & CLK_GATE_SET_TO_DISABLE)
clk_gate_set_bit(gate);
else
clk_gate_clear_bit(gate);
clk_gate_endisable(hw, 0);
}

static int clk_gate_is_enabled(struct clk_hw *hw)
Expand Down

0 comments on commit 5105bde

Please sign in to comment.