1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (c) 2012-2020, NVIDIA CORPORATION. All rights reserved.
4 */
5
6 #ifndef __LINUX_CLK_TEGRA_H_
7 #define __LINUX_CLK_TEGRA_H_
8
9 #include <linux/types.h>
10 #include <linux/bug.h>
11
12 /*
13 * Tegra CPU clock and reset control ops
14 *
15 * wait_for_reset:
16 * keep waiting until the CPU in reset state
17 * put_in_reset:
18 * put the CPU in reset state
19 * out_of_reset:
20 * release the CPU from reset state
21 * enable_clock:
22 * CPU clock un-gate
23 * disable_clock:
24 * CPU clock gate
25 * rail_off_ready:
26 * CPU is ready for rail off
27 * suspend:
28 * save the clock settings when CPU go into low-power state
29 * resume:
30 * restore the clock settings when CPU exit low-power state
31 */
32 struct tegra_cpu_car_ops {
33 void (*wait_for_reset)(u32 cpu);
34 void (*put_in_reset)(u32 cpu);
35 void (*out_of_reset)(u32 cpu);
36 void (*enable_clock)(u32 cpu);
37 void (*disable_clock)(u32 cpu);
38 #ifdef CONFIG_PM_SLEEP
39 bool (*rail_off_ready)(void);
40 void (*suspend)(void);
41 void (*resume)(void);
42 #endif
43 };
44
45 extern struct tegra_cpu_car_ops *tegra_cpu_car_ops;
46
tegra_wait_cpu_in_reset(u32 cpu)47 static inline void tegra_wait_cpu_in_reset(u32 cpu)
48 {
49 if (WARN_ON(!tegra_cpu_car_ops->wait_for_reset))
50 return;
51
52 tegra_cpu_car_ops->wait_for_reset(cpu);
53 }
54
tegra_put_cpu_in_reset(u32 cpu)55 static inline void tegra_put_cpu_in_reset(u32 cpu)
56 {
57 if (WARN_ON(!tegra_cpu_car_ops->put_in_reset))
58 return;
59
60 tegra_cpu_car_ops->put_in_reset(cpu);
61 }
62
tegra_cpu_out_of_reset(u32 cpu)63 static inline void tegra_cpu_out_of_reset(u32 cpu)
64 {
65 if (WARN_ON(!tegra_cpu_car_ops->out_of_reset))
66 return;
67
68 tegra_cpu_car_ops->out_of_reset(cpu);
69 }
70
tegra_enable_cpu_clock(u32 cpu)71 static inline void tegra_enable_cpu_clock(u32 cpu)
72 {
73 if (WARN_ON(!tegra_cpu_car_ops->enable_clock))
74 return;
75
76 tegra_cpu_car_ops->enable_clock(cpu);
77 }
78
tegra_disable_cpu_clock(u32 cpu)79 static inline void tegra_disable_cpu_clock(u32 cpu)
80 {
81 if (WARN_ON(!tegra_cpu_car_ops->disable_clock))
82 return;
83
84 tegra_cpu_car_ops->disable_clock(cpu);
85 }
86
87 #ifdef CONFIG_PM_SLEEP
tegra_cpu_rail_off_ready(void)88 static inline bool tegra_cpu_rail_off_ready(void)
89 {
90 if (WARN_ON(!tegra_cpu_car_ops->rail_off_ready))
91 return false;
92
93 return tegra_cpu_car_ops->rail_off_ready();
94 }
95
tegra_cpu_clock_suspend(void)96 static inline void tegra_cpu_clock_suspend(void)
97 {
98 if (WARN_ON(!tegra_cpu_car_ops->suspend))
99 return;
100
101 tegra_cpu_car_ops->suspend();
102 }
103
tegra_cpu_clock_resume(void)104 static inline void tegra_cpu_clock_resume(void)
105 {
106 if (WARN_ON(!tegra_cpu_car_ops->resume))
107 return;
108
109 tegra_cpu_car_ops->resume();
110 }
111 #else
tegra_cpu_rail_off_ready(void)112 static inline bool tegra_cpu_rail_off_ready(void)
113 {
114 return false;
115 }
116
tegra_cpu_clock_suspend(void)117 static inline void tegra_cpu_clock_suspend(void)
118 {
119 }
120
tegra_cpu_clock_resume(void)121 static inline void tegra_cpu_clock_resume(void)
122 {
123 }
124 #endif
125
126 struct clk;
127 struct tegra_emc;
128
129 typedef long (tegra20_clk_emc_round_cb)(unsigned long rate,
130 unsigned long min_rate,
131 unsigned long max_rate,
132 void *arg);
133 typedef int (tegra124_emc_prepare_timing_change_cb)(struct tegra_emc *emc,
134 unsigned long rate);
135 typedef void (tegra124_emc_complete_timing_change_cb)(struct tegra_emc *emc,
136 unsigned long rate);
137
138 struct tegra210_clk_emc_config {
139 unsigned long rate;
140 bool same_freq;
141 u32 value;
142
143 unsigned long parent_rate;
144 u8 parent;
145 };
146
147 struct tegra210_clk_emc_provider {
148 struct module *owner;
149 struct device *dev;
150
151 struct tegra210_clk_emc_config *configs;
152 unsigned int num_configs;
153
154 int (*set_rate)(struct device *dev,
155 const struct tegra210_clk_emc_config *config);
156 };
157
158 #if defined(CONFIG_ARCH_TEGRA_2x_SOC) || defined(CONFIG_ARCH_TEGRA_3x_SOC)
159 void tegra20_clk_set_emc_round_callback(tegra20_clk_emc_round_cb *round_cb,
160 void *cb_arg);
161 int tegra20_clk_prepare_emc_mc_same_freq(struct clk *emc_clk, bool same);
162 #else
163 static inline void
tegra20_clk_set_emc_round_callback(tegra20_clk_emc_round_cb * round_cb,void * cb_arg)164 tegra20_clk_set_emc_round_callback(tegra20_clk_emc_round_cb *round_cb,
165 void *cb_arg)
166 {
167 }
168
169 static inline int
tegra20_clk_prepare_emc_mc_same_freq(struct clk * emc_clk,bool same)170 tegra20_clk_prepare_emc_mc_same_freq(struct clk *emc_clk, bool same)
171 {
172 return 0;
173 }
174 #endif
175
176 #ifdef CONFIG_TEGRA124_CLK_EMC
177 void tegra124_clk_set_emc_callbacks(tegra124_emc_prepare_timing_change_cb *prep_cb,
178 tegra124_emc_complete_timing_change_cb *complete_cb);
179 #else
180 static inline void
tegra124_clk_set_emc_callbacks(tegra124_emc_prepare_timing_change_cb * prep_cb,tegra124_emc_complete_timing_change_cb * complete_cb)181 tegra124_clk_set_emc_callbacks(tegra124_emc_prepare_timing_change_cb *prep_cb,
182 tegra124_emc_complete_timing_change_cb *complete_cb)
183 {
184 }
185 #endif
186
187 #ifdef CONFIG_ARCH_TEGRA_210_SOC
188 int tegra210_plle_hw_sequence_start(void);
189 bool tegra210_plle_hw_sequence_is_enabled(void);
190 void tegra210_xusb_pll_hw_control_enable(void);
191 void tegra210_xusb_pll_hw_sequence_start(void);
192 void tegra210_sata_pll_hw_control_enable(void);
193 void tegra210_sata_pll_hw_sequence_start(void);
194 void tegra210_set_sata_pll_seq_sw(bool state);
195 void tegra210_put_utmipll_in_iddq(void);
196 void tegra210_put_utmipll_out_iddq(void);
197 int tegra210_clk_handle_mbist_war(unsigned int id);
198 void tegra210_clk_emc_dll_enable(bool flag);
199 void tegra210_clk_emc_dll_update_setting(u32 emc_dll_src_value);
200 void tegra210_clk_emc_update_setting(u32 emc_src_value);
201
202 int tegra210_clk_emc_attach(struct clk *clk,
203 struct tegra210_clk_emc_provider *provider);
204 void tegra210_clk_emc_detach(struct clk *clk);
205 #else
tegra210_plle_hw_sequence_start(void)206 static inline int tegra210_plle_hw_sequence_start(void)
207 {
208 return 0;
209 }
210
tegra210_plle_hw_sequence_is_enabled(void)211 static inline bool tegra210_plle_hw_sequence_is_enabled(void)
212 {
213 return false;
214 }
215
tegra210_clk_handle_mbist_war(unsigned int id)216 static inline int tegra210_clk_handle_mbist_war(unsigned int id)
217 {
218 return 0;
219 }
220
221 static inline int
tegra210_clk_emc_attach(struct clk * clk,struct tegra210_clk_emc_provider * provider)222 tegra210_clk_emc_attach(struct clk *clk,
223 struct tegra210_clk_emc_provider *provider)
224 {
225 return 0;
226 }
227
tegra210_xusb_pll_hw_control_enable(void)228 static inline void tegra210_xusb_pll_hw_control_enable(void) {}
tegra210_xusb_pll_hw_sequence_start(void)229 static inline void tegra210_xusb_pll_hw_sequence_start(void) {}
tegra210_sata_pll_hw_control_enable(void)230 static inline void tegra210_sata_pll_hw_control_enable(void) {}
tegra210_sata_pll_hw_sequence_start(void)231 static inline void tegra210_sata_pll_hw_sequence_start(void) {}
tegra210_set_sata_pll_seq_sw(bool state)232 static inline void tegra210_set_sata_pll_seq_sw(bool state) {}
tegra210_put_utmipll_in_iddq(void)233 static inline void tegra210_put_utmipll_in_iddq(void) {}
tegra210_put_utmipll_out_iddq(void)234 static inline void tegra210_put_utmipll_out_iddq(void) {}
tegra210_clk_emc_dll_enable(bool flag)235 static inline void tegra210_clk_emc_dll_enable(bool flag) {}
tegra210_clk_emc_dll_update_setting(u32 emc_dll_src_value)236 static inline void tegra210_clk_emc_dll_update_setting(u32 emc_dll_src_value) {}
tegra210_clk_emc_update_setting(u32 emc_src_value)237 static inline void tegra210_clk_emc_update_setting(u32 emc_src_value) {}
tegra210_clk_emc_detach(struct clk * clk)238 static inline void tegra210_clk_emc_detach(struct clk *clk) {}
239 #endif
240
241 #endif /* __LINUX_CLK_TEGRA_H_ */
242