hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// SPDX-License-Identifier: GPL-2.0+
//
// OWL gate clock driver
//
// Copyright (c) 2014 Actions Semi Inc.
// Author: David Liu <liuwei@actions-semi.com>
//
// Copyright (c) 2018 Linaro Ltd.
// Author: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
 
#include <linux/clk-provider.h>
#include <linux/regmap.h>
 
#include "owl-gate.h"
 
void owl_gate_set(const struct owl_clk_common *common,
        const struct owl_gate_hw *gate_hw, bool enable)
{
   int set = gate_hw->gate_flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
   u32 reg;
 
   set ^= enable;
 
   regmap_read(common->regmap, gate_hw->reg, &reg);
 
   if (set)
       reg |= BIT(gate_hw->bit_idx);
   else
       reg &= ~BIT(gate_hw->bit_idx);
 
   regmap_write(common->regmap, gate_hw->reg, reg);
}
 
static void owl_gate_disable(struct clk_hw *hw)
{
   struct owl_gate *gate = hw_to_owl_gate(hw);
   struct owl_clk_common *common = &gate->common;
 
   owl_gate_set(common, &gate->gate_hw, false);
}
 
static int owl_gate_enable(struct clk_hw *hw)
{
   struct owl_gate *gate = hw_to_owl_gate(hw);
   struct owl_clk_common *common = &gate->common;
 
   owl_gate_set(common, &gate->gate_hw, true);
 
   return 0;
}
 
int owl_gate_clk_is_enabled(const struct owl_clk_common *common,
          const struct owl_gate_hw *gate_hw)
{
   u32 reg;
 
   regmap_read(common->regmap, gate_hw->reg, &reg);
 
   if (gate_hw->gate_flags & CLK_GATE_SET_TO_DISABLE)
       reg ^= BIT(gate_hw->bit_idx);
 
   return !!(reg & BIT(gate_hw->bit_idx));
}
 
static int owl_gate_is_enabled(struct clk_hw *hw)
{
   struct owl_gate *gate = hw_to_owl_gate(hw);
   struct owl_clk_common *common = &gate->common;
 
   return owl_gate_clk_is_enabled(common, &gate->gate_hw);
}
 
const struct clk_ops owl_gate_ops = {
   .disable    = owl_gate_disable,
   .enable        = owl_gate_enable,
   .is_enabled    = owl_gate_is_enabled,
};