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 int clk_periph_enable(struct clk_hw
*hw
)
53 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
54 unsigned long flags
= 0;
56 spin_lock_irqsave(&periph_ref_lock
, flags
);
58 gate
->enable_refcnt
[gate
->clk_num
]++;
59 if (gate
->enable_refcnt
[gate
->clk_num
] > 1) {
60 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
64 write_enb_set(periph_clk_to_bit(gate
), gate
);
67 if (!(gate
->flags
& TEGRA_PERIPH_NO_RESET
) &&
68 !(gate
->flags
& TEGRA_PERIPH_MANUAL_RESET
)) {
69 if (read_rst(gate
) & periph_clk_to_bit(gate
)) {
70 udelay(5); /* reset propogation delay */
71 write_rst_clr(periph_clk_to_bit(gate
), gate
);
75 if (gate
->flags
& TEGRA_PERIPH_WAR_1005168
) {
76 writel_relaxed(0, gate
->clk_base
+ LVL2_CLK_GATE_OVRE
);
77 writel_relaxed(BIT(22), gate
->clk_base
+ LVL2_CLK_GATE_OVRE
);
79 writel_relaxed(0, gate
->clk_base
+ LVL2_CLK_GATE_OVRE
);
82 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
87 static void clk_periph_disable(struct clk_hw
*hw
)
89 struct tegra_clk_periph_gate
*gate
= to_clk_periph_gate(hw
);
90 unsigned long flags
= 0;
92 spin_lock_irqsave(&periph_ref_lock
, flags
);
94 gate
->enable_refcnt
[gate
->clk_num
]--;
95 if (gate
->enable_refcnt
[gate
->clk_num
] > 0) {
96 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
101 * If peripheral is in the APB bus then read the APB bus to
102 * flush the write operation in apb bus. This will avoid the
103 * peripheral access after disabling clock
105 if (gate
->flags
& TEGRA_PERIPH_ON_APB
)
108 write_enb_clr(periph_clk_to_bit(gate
), gate
);
110 spin_unlock_irqrestore(&periph_ref_lock
, flags
);
113 const struct clk_ops tegra_clk_periph_gate_ops
= {
114 .is_enabled
= clk_periph_is_enabled
,
115 .enable
= clk_periph_enable
,
116 .disable
= clk_periph_disable
,
119 struct clk
*tegra_clk_register_periph_gate(const char *name
,
120 const char *parent_name
, u8 gate_flags
, void __iomem
*clk_base
,
121 unsigned long flags
, int clk_num
, int *enable_refcnt
)
123 struct tegra_clk_periph_gate
*gate
;
125 struct clk_init_data init
;
126 const struct tegra_clk_periph_regs
*pregs
;
128 pregs
= get_reg_bank(clk_num
);
130 return ERR_PTR(-EINVAL
);
132 gate
= kzalloc(sizeof(*gate
), GFP_KERNEL
);
134 pr_err("%s: could not allocate periph gate clk\n", __func__
);
135 return ERR_PTR(-ENOMEM
);
140 init
.parent_names
= parent_name
? &parent_name
: NULL
;
141 init
.num_parents
= parent_name
? 1 : 0;
142 init
.ops
= &tegra_clk_periph_gate_ops
;
144 gate
->magic
= TEGRA_CLK_PERIPH_GATE_MAGIC
;
145 gate
->clk_base
= clk_base
;
146 gate
->clk_num
= clk_num
;
147 gate
->flags
= gate_flags
;
148 gate
->enable_refcnt
= enable_refcnt
;
151 if (read_enb(gate
) & periph_clk_to_bit(gate
))
152 enable_refcnt
[clk_num
]++;
154 /* Data in .init is copied by clk_register(), so stack variable OK */
155 gate
->hw
.init
= &init
;
157 clk
= clk_register(NULL
, &gate
->hw
);