Prepare v2023.10
[platform/kernel/u-boot.git] / drivers / clk / clk-gate.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (C) 2010-2011 Canonical Ltd <jeremy.kerr@canonical.com>
4  * Copyright (C) 2011-2012 Mike Turquette, Linaro Ltd <mturquette@linaro.org>
5  * Copyright 2019 NXP
6  *
7  * Gated clock implementation
8  */
9
10 #define LOG_CATEGORY UCLASS_CLK
11
12 #include <common.h>
13 #include <clk.h>
14 #include <log.h>
15 #include <clk-uclass.h>
16 #include <malloc.h>
17 #include <asm/io.h>
18 #include <dm/device.h>
19 #include <dm/device_compat.h>
20 #include <dm/devres.h>
21 #include <linux/bitops.h>
22 #include <linux/clk-provider.h>
23 #include <linux/err.h>
24
25 #include "clk.h"
26
27 #define UBOOT_DM_CLK_GATE "clk_gate"
28
29 /**
30  * DOC: basic gatable clock which can gate and ungate it's output
31  *
32  * Traits of this clock:
33  * prepare - clk_(un)prepare only ensures parent is (un)prepared
34  * enable - clk_enable and clk_disable are functional & control gating
35  * rate - inherits rate from parent.  No clk_set_rate support
36  * parent - fixed parent.  No clk_set_parent support
37  */
38
39 /*
40  * It works on following logic:
41  *
42  * For enabling clock, enable = 1
43  *      set2dis = 1     -> clear bit    -> set = 0
44  *      set2dis = 0     -> set bit      -> set = 1
45  *
46  * For disabling clock, enable = 0
47  *      set2dis = 1     -> set bit      -> set = 1
48  *      set2dis = 0     -> clear bit    -> set = 0
49  *
50  * So, result is always: enable xor set2dis.
51  */
52 static void clk_gate_endisable(struct clk *clk, int enable)
53 {
54         struct clk_gate *gate = to_clk_gate(clk);
55         int set = gate->flags & CLK_GATE_SET_TO_DISABLE ? 1 : 0;
56         u32 reg;
57
58         set ^= enable;
59
60         if (gate->flags & CLK_GATE_HIWORD_MASK) {
61                 reg = BIT(gate->bit_idx + 16);
62                 if (set)
63                         reg |= BIT(gate->bit_idx);
64         } else {
65 #if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
66                 reg = gate->io_gate_val;
67 #else
68                 reg = readl(gate->reg);
69 #endif
70
71                 if (set)
72                         reg |= BIT(gate->bit_idx);
73                 else
74                         reg &= ~BIT(gate->bit_idx);
75         }
76
77         writel(reg, gate->reg);
78 }
79
80 static int clk_gate_enable(struct clk *clk)
81 {
82         clk_gate_endisable(clk, 1);
83
84         return 0;
85 }
86
87 static int clk_gate_disable(struct clk *clk)
88 {
89         clk_gate_endisable(clk, 0);
90
91         return 0;
92 }
93
94 int clk_gate_is_enabled(struct clk *clk)
95 {
96         struct clk_gate *gate = to_clk_gate(clk);
97         u32 reg;
98
99 #if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
100         reg = gate->io_gate_val;
101 #else
102         reg = readl(gate->reg);
103 #endif
104
105         /* if a set bit disables this clk, flip it before masking */
106         if (gate->flags & CLK_GATE_SET_TO_DISABLE)
107                 reg ^= BIT(gate->bit_idx);
108
109         reg &= BIT(gate->bit_idx);
110
111         return reg ? 1 : 0;
112 }
113
114 const struct clk_ops clk_gate_ops = {
115         .enable = clk_gate_enable,
116         .disable = clk_gate_disable,
117         .get_rate = clk_generic_get_rate,
118 };
119
120 struct clk *clk_register_gate(struct device *dev, const char *name,
121                               const char *parent_name, unsigned long flags,
122                               void __iomem *reg, u8 bit_idx,
123                               u8 clk_gate_flags, spinlock_t *lock)
124 {
125         struct clk_gate *gate;
126         struct clk *clk;
127         int ret;
128
129         if (clk_gate_flags & CLK_GATE_HIWORD_MASK) {
130                 if (bit_idx > 15) {
131                         dev_err(dev, "gate bit exceeds LOWORD field\n");
132                         return ERR_PTR(-EINVAL);
133                 }
134         }
135
136         /* allocate the gate */
137         gate = kzalloc(sizeof(*gate), GFP_KERNEL);
138         if (!gate)
139                 return ERR_PTR(-ENOMEM);
140
141         /* struct clk_gate assignments */
142         gate->reg = reg;
143         gate->bit_idx = bit_idx;
144         gate->flags = clk_gate_flags;
145 #if IS_ENABLED(CONFIG_SANDBOX_CLK_CCF)
146         gate->io_gate_val = *(u32 *)reg;
147 #endif
148
149         clk = &gate->clk;
150         clk->flags = flags;
151
152         ret = clk_register(clk, UBOOT_DM_CLK_GATE, name, parent_name);
153         if (ret) {
154                 kfree(gate);
155                 return ERR_PTR(ret);
156         }
157
158         return clk;
159 }
160
161 U_BOOT_DRIVER(clk_gate) = {
162         .name   = UBOOT_DM_CLK_GATE,
163         .id     = UCLASS_CLK,
164         .ops    = &clk_gate_ops,
165         .flags = DM_FLAG_PRE_RELOC,
166 };