1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2012, NVIDIA CORPORATION. All rights reserved.
6 #include <linux/clk-provider.h>
7 #include <linux/slab.h>
9 #include <linux/delay.h>
10 #include <linux/err.h>
12 #include <soc/tegra/fuse.h>
16 static DEFINE_SPINLOCK(periph_ref_lock
);
18 /* Macros to assist peripheral gate clock */
19 #define read_enb(gate) \
20 readl_relaxed(gate->clk_base + (gate->regs->enb_reg))
21 #define write_enb_set(val, gate) \
22 writel_relaxed(val, gate->clk_base + (gate->regs->enb_set_reg))
23 #define write_enb_clr(val, gate) \
24 writel_relaxed(val, gate->clk_base + (gate->regs->enb_clr_reg))
26 #define read_rst(gate) \
27 readl_relaxed(gate->clk_base + (gate->regs->rst_reg))
28 #define write_rst_clr(val, gate) \
29 writel_relaxed(val, gate->clk_base + (gate->regs->rst_clr_reg))
31 #define periph_clk_to_bit(gate) (1 << (gate->clk_num % 32))
33 #define LVL2_CLK_GATE_OVRE 0x554
35 /* Peripheral gate clock ops */
36 static int clk_periph_is_enabled(struct clk_hw
*hw
)
38 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
41 if (!(read_enb(gate
) & periph_clk_to_bit(gate
)))
44 if (!(gate
->flags
& TEGRA_PERIPH_NO_RESET
))
45 if (read_rst(gate
) & periph_clk_to_bit(gate
))
51 static void clk_periph_enable_locked(struct clk_hw
*hw
)
53 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
55 write_enb_set(periph_clk_to_bit(gate
), gate
);
58 if (gate
->flags
& TEGRA_PERIPH_WAR_1005168
) {
59 writel_relaxed(0, gate
->clk_base
+ LVL2_CLK_GATE_OVRE
);
60 writel_relaxed(BIT(22), gate
->clk_base
+ LVL2_CLK_GATE_OVRE
);
62 writel_relaxed(0, gate
->clk_base
+ LVL2_CLK_GATE_OVRE
);
66 static void clk_periph_disable_locked(struct clk_hw
*hw
)
68 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
71 * If peripheral is in the APB bus then read the APB bus to
72 * flush the write operation in apb bus. This will avoid the
73 * peripheral access after disabling clock
75 if (gate
->flags
& TEGRA_PERIPH_ON_APB
)
78 write_enb_clr(periph_clk_to_bit(gate
), gate
);
81 static int clk_periph_enable(struct clk_hw
*hw
)
83 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
84 unsigned long flags
= 0;
86 spin_lock_irqsave(&periph_ref_lock
, flags
);
88 if (!gate
->enable_refcnt
[gate
->clk_num
]++)
89 clk_periph_enable_locked(hw
);
91 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
96 static void clk_periph_disable(struct clk_hw
*hw
)
98 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
99 unsigned long flags
= 0;
101 spin_lock_irqsave(&periph_ref_lock
, flags
);
103 WARN_ON(!gate
->enable_refcnt
[gate
->clk_num
]);
105 if (--gate
->enable_refcnt
[gate
->clk_num
] == 0)
106 clk_periph_disable_locked(hw
);
108 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
111 static void clk_periph_disable_unused(struct clk_hw
*hw
)
113 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
114 unsigned long flags
= 0;
116 spin_lock_irqsave(&periph_ref_lock
, flags
);
119 * Some clocks are duplicated and some of them are marked as critical,
120 * like fuse and fuse_burn for example, thus the enable_refcnt will
121 * be non-zero here if the "unused" duplicate is disabled by CCF.
123 if (!gate
->enable_refcnt
[gate
->clk_num
])
124 clk_periph_disable_locked(hw
);
126 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
129 const struct clk_ops tegra_clk_periph_gate_ops
= {
130 .is_enabled
= clk_periph_is_enabled
,
131 .enable
= clk_periph_enable
,
132 .disable
= clk_periph_disable
,
133 .disable_unused
= clk_periph_disable_unused
,
136 struct clk
*tegra_clk_register_periph_gate(const char *name
,
137 const char *parent_name
, u8 gate_flags
, void __iomem
*clk_base
,
138 unsigned long flags
, int clk_num
, int *enable_refcnt
)
140 struct tegra_clk_periph_gate
*gate
;
142 struct clk_init_data init
;
143 const struct tegra_clk_periph_regs
*pregs
;
145 pregs
= get_reg_bank(clk_num
);
147 return ERR_PTR(-EINVAL
);
149 gate
= kzalloc(sizeof(*gate
), GFP_KERNEL
);
151 pr_err("%s: could not allocate periph gate clk\n", __func__
);
152 return ERR_PTR(-ENOMEM
);
157 init
.parent_names
= parent_name
? &parent_name
: NULL
;
158 init
.num_parents
= parent_name
? 1 : 0;
159 init
.ops
= &tegra_clk_periph_gate_ops
;
161 gate
->magic
= TEGRA_CLK_PERIPH_GATE_MAGIC
;
162 gate
->clk_base
= clk_base
;
163 gate
->clk_num
= clk_num
;
164 gate
->flags
= gate_flags
;
165 gate
->enable_refcnt
= enable_refcnt
;
168 /* Data in .init is copied by clk_register(), so stack variable OK */
169 gate
->hw
.init
= &init
;
171 clk
= clk_register(NULL
, &gate
->hw
);