xref: /linux/drivers/pmdomain/qcom/rpmhpd.c (revision f6154d8babbb8a98f0d3ea325aafae2e33bfd8be)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2018, The Linux Foundation. All rights reserved.*/
3 
4 #include <linux/err.h>
5 #include <linux/init.h>
6 #include <linux/kernel.h>
7 #include <linux/module.h>
8 #include <linux/mutex.h>
9 #include <linux/pm_domain.h>
10 #include <linux/slab.h>
11 #include <linux/of.h>
12 #include <linux/platform_device.h>
13 #include <linux/pm_opp.h>
14 #include <soc/qcom/cmd-db.h>
15 #include <soc/qcom/rpmh.h>
16 #include <dt-bindings/power/qcom-rpmpd.h>
17 #include <dt-bindings/power/qcom,rpmhpd.h>
18 
19 #define domain_to_rpmhpd(domain) container_of(domain, struct rpmhpd, pd)
20 
21 #define RPMH_ARC_MAX_LEVELS	16
22 
23 /**
24  * struct rpmhpd - top level RPMh power domain resource data structure
25  * @dev:		rpmh power domain controller device
26  * @pd:			generic_pm_domain corresponding to the power domain
27  * @parent:		generic_pm_domain corresponding to the parent's power domain
28  * @peer:		A peer power domain in case Active only Voting is
29  *			supported
30  * @active_only:	True if it represents an Active only peer
31  * @corner:		current corner
32  * @active_corner:	current active corner
33  * @enable_corner:	lowest non-zero corner
34  * @level:		An array of level (vlvl) to corner (hlvl) mappings
35  *			derived from cmd-db
36  * @level_count:	Number of levels supported by the power domain. max
37  *			being 16 (0 - 15)
38  * @enabled:		true if the power domain is enabled
39  * @res_name:		Resource name used for cmd-db lookup
40  * @addr:		Resource address as looped up using resource name from
41  *			cmd-db
42  * @state_synced:	Indicator that sync_state has been invoked for the rpmhpd resource
43  */
44 struct rpmhpd {
45 	struct device	*dev;
46 	struct generic_pm_domain pd;
47 	struct generic_pm_domain *parent;
48 	struct rpmhpd	*peer;
49 	const bool	active_only;
50 	unsigned int	corner;
51 	unsigned int	active_corner;
52 	unsigned int	enable_corner;
53 	u32		level[RPMH_ARC_MAX_LEVELS];
54 	size_t		level_count;
55 	bool		enabled;
56 	const char	*res_name;
57 	u32		addr;
58 	bool		state_synced;
59 };
60 
61 struct rpmhpd_desc {
62 	struct rpmhpd **rpmhpds;
63 	size_t num_pds;
64 };
65 
66 static DEFINE_MUTEX(rpmhpd_lock);
67 
68 /* RPMH powerdomains */
69 
70 static struct rpmhpd cx_ao;
71 static struct rpmhpd mx;
72 static struct rpmhpd mx_ao;
73 static struct rpmhpd cx = {
74 	.pd = { .name = "cx", },
75 	.peer = &cx_ao,
76 	.res_name = "cx.lvl",
77 };
78 
79 static struct rpmhpd cx_ao = {
80 	.pd = { .name = "cx_ao", },
81 	.active_only = true,
82 	.peer = &cx,
83 	.res_name = "cx.lvl",
84 };
85 
86 static struct rpmhpd cx_ao_w_mx_parent;
87 static struct rpmhpd cx_w_mx_parent = {
88 	.pd = { .name = "cx", },
89 	.peer = &cx_ao_w_mx_parent,
90 	.parent = &mx.pd,
91 	.res_name = "cx.lvl",
92 };
93 
94 static struct rpmhpd cx_ao_w_mx_parent = {
95 	.pd = { .name = "cx_ao", },
96 	.active_only = true,
97 	.peer = &cx_w_mx_parent,
98 	.parent = &mx_ao.pd,
99 	.res_name = "cx.lvl",
100 };
101 
102 static struct rpmhpd ebi = {
103 	.pd = { .name = "ebi", },
104 	.res_name = "ebi.lvl",
105 };
106 
107 static struct rpmhpd gfx = {
108 	.pd = { .name = "gfx", },
109 	.res_name = "gfx.lvl",
110 };
111 
112 static struct rpmhpd lcx = {
113 	.pd = { .name = "lcx", },
114 	.res_name = "lcx.lvl",
115 };
116 
117 static struct rpmhpd lmx = {
118 	.pd = { .name = "lmx", },
119 	.res_name = "lmx.lvl",
120 };
121 
122 static struct rpmhpd mmcx_ao;
123 static struct rpmhpd mmcx = {
124 	.pd = { .name = "mmcx", },
125 	.peer = &mmcx_ao,
126 	.res_name = "mmcx.lvl",
127 };
128 
129 static struct rpmhpd mmcx_ao = {
130 	.pd = { .name = "mmcx_ao", },
131 	.active_only = true,
132 	.peer = &mmcx,
133 	.res_name = "mmcx.lvl",
134 };
135 
136 static struct rpmhpd mmcx_ao_w_cx_parent;
137 static struct rpmhpd mmcx_w_cx_parent = {
138 	.pd = { .name = "mmcx", },
139 	.peer = &mmcx_ao_w_cx_parent,
140 	.parent = &cx.pd,
141 	.res_name = "mmcx.lvl",
142 };
143 
144 static struct rpmhpd mmcx_ao_w_cx_parent = {
145 	.pd = { .name = "mmcx_ao", },
146 	.active_only = true,
147 	.peer = &mmcx_w_cx_parent,
148 	.parent = &cx_ao.pd,
149 	.res_name = "mmcx.lvl",
150 };
151 
152 static struct rpmhpd mss = {
153 	.pd = { .name = "mss", },
154 	.res_name = "mss.lvl",
155 };
156 
157 static struct rpmhpd mx_ao;
158 static struct rpmhpd mx = {
159 	.pd = { .name = "mx", },
160 	.peer = &mx_ao,
161 	.res_name = "mx.lvl",
162 };
163 
164 static struct rpmhpd mx_ao = {
165 	.pd = { .name = "mx_ao", },
166 	.active_only = true,
167 	.peer = &mx,
168 	.res_name = "mx.lvl",
169 };
170 
171 static struct rpmhpd mxc_ao;
172 static struct rpmhpd mxc = {
173 	.pd = { .name = "mxc", },
174 	.peer = &mxc_ao,
175 	.res_name = "mxc.lvl",
176 };
177 
178 static struct rpmhpd mxc_ao = {
179 	.pd = { .name = "mxc_ao", },
180 	.active_only = true,
181 	.peer = &mxc,
182 	.res_name = "mxc.lvl",
183 };
184 
185 static struct rpmhpd nsp = {
186 	.pd = { .name = "nsp", },
187 	.res_name = "nsp.lvl",
188 };
189 
190 static struct rpmhpd nsp0 = {
191 	.pd = { .name = "nsp0", },
192 	.res_name = "nsp0.lvl",
193 };
194 
195 static struct rpmhpd nsp1 = {
196 	.pd = { .name = "nsp1", },
197 	.res_name = "nsp1.lvl",
198 };
199 
200 static struct rpmhpd nsp2 = {
201 	.pd = { .name = "nsp2", },
202 	.res_name = "nsp2.lvl",
203 };
204 
205 static struct rpmhpd qphy = {
206 	.pd = { .name = "qphy", },
207 	.res_name = "qphy.lvl",
208 };
209 
210 static struct rpmhpd gmxc = {
211 	.pd = { .name = "gmxc", },
212 	.res_name = "gmxc.lvl",
213 };
214 
215 /* SA8540P RPMH powerdomains */
216 static struct rpmhpd *sa8540p_rpmhpds[] = {
217 	[SC8280XP_CX] = &cx,
218 	[SC8280XP_CX_AO] = &cx_ao,
219 	[SC8280XP_EBI] = &ebi,
220 	[SC8280XP_GFX] = &gfx,
221 	[SC8280XP_LCX] = &lcx,
222 	[SC8280XP_LMX] = &lmx,
223 	[SC8280XP_MMCX] = &mmcx,
224 	[SC8280XP_MMCX_AO] = &mmcx_ao,
225 	[SC8280XP_MX] = &mx,
226 	[SC8280XP_MX_AO] = &mx_ao,
227 	[SC8280XP_NSP] = &nsp,
228 };
229 
230 static const struct rpmhpd_desc sa8540p_desc = {
231 	.rpmhpds = sa8540p_rpmhpds,
232 	.num_pds = ARRAY_SIZE(sa8540p_rpmhpds),
233 };
234 
235 /* SA8775P RPMH power domains */
236 static struct rpmhpd *sa8775p_rpmhpds[] = {
237 	[SA8775P_CX] = &cx,
238 	[SA8775P_CX_AO] = &cx_ao,
239 	[SA8775P_EBI] = &ebi,
240 	[SA8775P_GFX] = &gfx,
241 	[SA8775P_LCX] = &lcx,
242 	[SA8775P_LMX] = &lmx,
243 	[SA8775P_MMCX] = &mmcx,
244 	[SA8775P_MMCX_AO] = &mmcx_ao,
245 	[SA8775P_MXC] = &mxc,
246 	[SA8775P_MXC_AO] = &mxc_ao,
247 	[SA8775P_MX] = &mx,
248 	[SA8775P_MX_AO] = &mx_ao,
249 	[SA8775P_NSP0] = &nsp0,
250 	[SA8775P_NSP1] = &nsp1,
251 };
252 
253 static const struct rpmhpd_desc sa8775p_desc = {
254 	.rpmhpds = sa8775p_rpmhpds,
255 	.num_pds = ARRAY_SIZE(sa8775p_rpmhpds),
256 };
257 
258 /* SDM670 RPMH powerdomains */
259 static struct rpmhpd *sdm670_rpmhpds[] = {
260 	[SDM670_CX] = &cx_w_mx_parent,
261 	[SDM670_CX_AO] = &cx_ao_w_mx_parent,
262 	[SDM670_GFX] = &gfx,
263 	[SDM670_LCX] = &lcx,
264 	[SDM670_LMX] = &lmx,
265 	[SDM670_MSS] = &mss,
266 	[SDM670_MX] = &mx,
267 	[SDM670_MX_AO] = &mx_ao,
268 };
269 
270 static const struct rpmhpd_desc sdm670_desc = {
271 	.rpmhpds = sdm670_rpmhpds,
272 	.num_pds = ARRAY_SIZE(sdm670_rpmhpds),
273 };
274 
275 /* SDM845 RPMH powerdomains */
276 static struct rpmhpd *sdm845_rpmhpds[] = {
277 	[SDM845_CX] = &cx_w_mx_parent,
278 	[SDM845_CX_AO] = &cx_ao_w_mx_parent,
279 	[SDM845_EBI] = &ebi,
280 	[SDM845_GFX] = &gfx,
281 	[SDM845_LCX] = &lcx,
282 	[SDM845_LMX] = &lmx,
283 	[SDM845_MSS] = &mss,
284 	[SDM845_MX] = &mx,
285 	[SDM845_MX_AO] = &mx_ao,
286 };
287 
288 static const struct rpmhpd_desc sdm845_desc = {
289 	.rpmhpds = sdm845_rpmhpds,
290 	.num_pds = ARRAY_SIZE(sdm845_rpmhpds),
291 };
292 
293 /* SDX55 RPMH powerdomains */
294 static struct rpmhpd *sdx55_rpmhpds[] = {
295 	[SDX55_CX] = &cx_w_mx_parent,
296 	[SDX55_MSS] = &mss,
297 	[SDX55_MX] = &mx,
298 };
299 
300 static const struct rpmhpd_desc sdx55_desc = {
301 	.rpmhpds = sdx55_rpmhpds,
302 	.num_pds = ARRAY_SIZE(sdx55_rpmhpds),
303 };
304 
305 /* SDX65 RPMH powerdomains */
306 static struct rpmhpd *sdx65_rpmhpds[] = {
307 	[SDX65_CX] = &cx_w_mx_parent,
308 	[SDX65_CX_AO] = &cx_ao_w_mx_parent,
309 	[SDX65_MSS] = &mss,
310 	[SDX65_MX] = &mx,
311 	[SDX65_MX_AO] = &mx_ao,
312 	[SDX65_MXC] = &mxc,
313 };
314 
315 static const struct rpmhpd_desc sdx65_desc = {
316 	.rpmhpds = sdx65_rpmhpds,
317 	.num_pds = ARRAY_SIZE(sdx65_rpmhpds),
318 };
319 
320 /* SDX75 RPMH powerdomains */
321 static struct rpmhpd *sdx75_rpmhpds[] = {
322 	[RPMHPD_CX] = &cx,
323 	[RPMHPD_CX_AO] = &cx_ao,
324 	[RPMHPD_MSS] = &mss,
325 	[RPMHPD_MX] = &mx,
326 	[RPMHPD_MX_AO] = &mx_ao,
327 	[RPMHPD_MXC] = &mxc,
328 };
329 
330 static const struct rpmhpd_desc sdx75_desc = {
331 	.rpmhpds = sdx75_rpmhpds,
332 	.num_pds = ARRAY_SIZE(sdx75_rpmhpds),
333 };
334 
335 /* SM6350 RPMH powerdomains */
336 static struct rpmhpd *sm6350_rpmhpds[] = {
337 	[SM6350_CX] = &cx_w_mx_parent,
338 	[SM6350_GFX] = &gfx,
339 	[SM6350_LCX] = &lcx,
340 	[SM6350_LMX] = &lmx,
341 	[SM6350_MSS] = &mss,
342 	[SM6350_MX] = &mx,
343 };
344 
345 static const struct rpmhpd_desc sm6350_desc = {
346 	.rpmhpds = sm6350_rpmhpds,
347 	.num_pds = ARRAY_SIZE(sm6350_rpmhpds),
348 };
349 
350 /* SM7150 RPMH powerdomains */
351 static struct rpmhpd *sm7150_rpmhpds[] = {
352 	[RPMHPD_CX] = &cx_w_mx_parent,
353 	[RPMHPD_CX_AO] = &cx_ao_w_mx_parent,
354 	[RPMHPD_GFX] = &gfx,
355 	[RPMHPD_LCX] = &lcx,
356 	[RPMHPD_LMX] = &lmx,
357 	[RPMHPD_MX] = &mx,
358 	[RPMHPD_MX_AO] = &mx_ao,
359 	[RPMHPD_MSS] = &mss,
360 };
361 
362 static const struct rpmhpd_desc sm7150_desc = {
363 	.rpmhpds = sm7150_rpmhpds,
364 	.num_pds = ARRAY_SIZE(sm7150_rpmhpds),
365 };
366 
367 /* SM8150 RPMH powerdomains */
368 static struct rpmhpd *sm8150_rpmhpds[] = {
369 	[SM8150_CX] = &cx_w_mx_parent,
370 	[SM8150_CX_AO] = &cx_ao_w_mx_parent,
371 	[SM8150_EBI] = &ebi,
372 	[SM8150_GFX] = &gfx,
373 	[SM8150_LCX] = &lcx,
374 	[SM8150_LMX] = &lmx,
375 	[SM8150_MMCX] = &mmcx,
376 	[SM8150_MMCX_AO] = &mmcx_ao,
377 	[SM8150_MSS] = &mss,
378 	[SM8150_MX] = &mx,
379 	[SM8150_MX_AO] = &mx_ao,
380 };
381 
382 static const struct rpmhpd_desc sm8150_desc = {
383 	.rpmhpds = sm8150_rpmhpds,
384 	.num_pds = ARRAY_SIZE(sm8150_rpmhpds),
385 };
386 
387 static struct rpmhpd *sa8155p_rpmhpds[] = {
388 	[SA8155P_CX] = &cx_w_mx_parent,
389 	[SA8155P_CX_AO] = &cx_ao_w_mx_parent,
390 	[SA8155P_EBI] = &ebi,
391 	[SA8155P_GFX] = &gfx,
392 	[SA8155P_MSS] = &mss,
393 	[SA8155P_MX] = &mx,
394 	[SA8155P_MX_AO] = &mx_ao,
395 };
396 
397 static const struct rpmhpd_desc sa8155p_desc = {
398 	.rpmhpds = sa8155p_rpmhpds,
399 	.num_pds = ARRAY_SIZE(sa8155p_rpmhpds),
400 };
401 
402 /* SM8250 RPMH powerdomains */
403 static struct rpmhpd *sm8250_rpmhpds[] = {
404 	[RPMHPD_CX] = &cx_w_mx_parent,
405 	[RPMHPD_CX_AO] = &cx_ao_w_mx_parent,
406 	[RPMHPD_EBI] = &ebi,
407 	[RPMHPD_GFX] = &gfx,
408 	[RPMHPD_LCX] = &lcx,
409 	[RPMHPD_LMX] = &lmx,
410 	[RPMHPD_MMCX] = &mmcx,
411 	[RPMHPD_MMCX_AO] = &mmcx_ao,
412 	[RPMHPD_MX] = &mx,
413 	[RPMHPD_MX_AO] = &mx_ao,
414 };
415 
416 static const struct rpmhpd_desc sm8250_desc = {
417 	.rpmhpds = sm8250_rpmhpds,
418 	.num_pds = ARRAY_SIZE(sm8250_rpmhpds),
419 };
420 
421 /* SM8350 Power domains */
422 static struct rpmhpd *sm8350_rpmhpds[] = {
423 	[RPMHPD_CX] = &cx_w_mx_parent,
424 	[RPMHPD_CX_AO] = &cx_ao_w_mx_parent,
425 	[RPMHPD_EBI] = &ebi,
426 	[RPMHPD_GFX] = &gfx,
427 	[RPMHPD_LCX] = &lcx,
428 	[RPMHPD_LMX] = &lmx,
429 	[RPMHPD_MMCX] = &mmcx,
430 	[RPMHPD_MMCX_AO] = &mmcx_ao,
431 	[RPMHPD_MSS] = &mss,
432 	[RPMHPD_MX] = &mx,
433 	[RPMHPD_MX_AO] = &mx_ao,
434 	[RPMHPD_MXC] = &mxc,
435 	[RPMHPD_MXC_AO] = &mxc_ao,
436 };
437 
438 static const struct rpmhpd_desc sm8350_desc = {
439 	.rpmhpds = sm8350_rpmhpds,
440 	.num_pds = ARRAY_SIZE(sm8350_rpmhpds),
441 };
442 
443 /* SM8450 RPMH powerdomains */
444 static struct rpmhpd *sm8450_rpmhpds[] = {
445 	[RPMHPD_CX] = &cx,
446 	[RPMHPD_CX_AO] = &cx_ao,
447 	[RPMHPD_EBI] = &ebi,
448 	[RPMHPD_GFX] = &gfx,
449 	[RPMHPD_LCX] = &lcx,
450 	[RPMHPD_LMX] = &lmx,
451 	[RPMHPD_MMCX] = &mmcx_w_cx_parent,
452 	[RPMHPD_MMCX_AO] = &mmcx_ao_w_cx_parent,
453 	[RPMHPD_MSS] = &mss,
454 	[RPMHPD_MX] = &mx,
455 	[RPMHPD_MX_AO] = &mx_ao,
456 	[RPMHPD_MXC] = &mxc,
457 	[RPMHPD_MXC_AO] = &mxc_ao,
458 };
459 
460 static const struct rpmhpd_desc sm8450_desc = {
461 	.rpmhpds = sm8450_rpmhpds,
462 	.num_pds = ARRAY_SIZE(sm8450_rpmhpds),
463 };
464 
465 /* SM8550 RPMH powerdomains */
466 static struct rpmhpd *sm8550_rpmhpds[] = {
467 	[RPMHPD_CX] = &cx,
468 	[RPMHPD_CX_AO] = &cx_ao,
469 	[RPMHPD_EBI] = &ebi,
470 	[RPMHPD_GFX] = &gfx,
471 	[RPMHPD_LCX] = &lcx,
472 	[RPMHPD_LMX] = &lmx,
473 	[RPMHPD_MMCX] = &mmcx_w_cx_parent,
474 	[RPMHPD_MMCX_AO] = &mmcx_ao_w_cx_parent,
475 	[RPMHPD_MSS] = &mss,
476 	[RPMHPD_MX] = &mx,
477 	[RPMHPD_MX_AO] = &mx_ao,
478 	[RPMHPD_MXC] = &mxc,
479 	[RPMHPD_MXC_AO] = &mxc_ao,
480 	[RPMHPD_NSP] = &nsp,
481 };
482 
483 static const struct rpmhpd_desc sm8550_desc = {
484 	.rpmhpds = sm8550_rpmhpds,
485 	.num_pds = ARRAY_SIZE(sm8550_rpmhpds),
486 };
487 
488 /* SM8650 RPMH powerdomains */
489 static struct rpmhpd *sm8650_rpmhpds[] = {
490 	[RPMHPD_CX] = &cx,
491 	[RPMHPD_CX_AO] = &cx_ao,
492 	[RPMHPD_EBI] = &ebi,
493 	[RPMHPD_GFX] = &gfx,
494 	[RPMHPD_LCX] = &lcx,
495 	[RPMHPD_LMX] = &lmx,
496 	[RPMHPD_MMCX] = &mmcx_w_cx_parent,
497 	[RPMHPD_MMCX_AO] = &mmcx_ao_w_cx_parent,
498 	[RPMHPD_MSS] = &mss,
499 	[RPMHPD_MX] = &mx,
500 	[RPMHPD_MX_AO] = &mx_ao,
501 	[RPMHPD_MXC] = &mxc,
502 	[RPMHPD_MXC_AO] = &mxc_ao,
503 	[RPMHPD_NSP] = &nsp,
504 	[RPMHPD_NSP2] = &nsp2,
505 };
506 
507 static const struct rpmhpd_desc sm8650_desc = {
508 	.rpmhpds = sm8650_rpmhpds,
509 	.num_pds = ARRAY_SIZE(sm8650_rpmhpds),
510 };
511 
512 /* QDU1000/QRU1000 RPMH powerdomains */
513 static struct rpmhpd *qdu1000_rpmhpds[] = {
514 	[QDU1000_CX] = &cx,
515 	[QDU1000_EBI] = &ebi,
516 	[QDU1000_MSS] = &mss,
517 	[QDU1000_MX] = &mx,
518 };
519 
520 static const struct rpmhpd_desc qdu1000_desc = {
521 	.rpmhpds = qdu1000_rpmhpds,
522 	.num_pds = ARRAY_SIZE(qdu1000_rpmhpds),
523 };
524 
525 /* SC7180 RPMH powerdomains */
526 static struct rpmhpd *sc7180_rpmhpds[] = {
527 	[SC7180_CX] = &cx_w_mx_parent,
528 	[SC7180_CX_AO] = &cx_ao_w_mx_parent,
529 	[SC7180_GFX] = &gfx,
530 	[SC7180_LCX] = &lcx,
531 	[SC7180_LMX] = &lmx,
532 	[SC7180_MSS] = &mss,
533 	[SC7180_MX] = &mx,
534 	[SC7180_MX_AO] = &mx_ao,
535 };
536 
537 static const struct rpmhpd_desc sc7180_desc = {
538 	.rpmhpds = sc7180_rpmhpds,
539 	.num_pds = ARRAY_SIZE(sc7180_rpmhpds),
540 };
541 
542 /* SC7280 RPMH powerdomains */
543 static struct rpmhpd *sc7280_rpmhpds[] = {
544 	[SC7280_CX] = &cx,
545 	[SC7280_CX_AO] = &cx_ao,
546 	[SC7280_EBI] = &ebi,
547 	[SC7280_GFX] = &gfx,
548 	[SC7280_LCX] = &lcx,
549 	[SC7280_LMX] = &lmx,
550 	[SC7280_MSS] = &mss,
551 	[SC7280_MX] = &mx,
552 	[SC7280_MX_AO] = &mx_ao,
553 };
554 
555 static const struct rpmhpd_desc sc7280_desc = {
556 	.rpmhpds = sc7280_rpmhpds,
557 	.num_pds = ARRAY_SIZE(sc7280_rpmhpds),
558 };
559 
560 /* SC8180x RPMH powerdomains */
561 static struct rpmhpd *sc8180x_rpmhpds[] = {
562 	[SC8180X_CX] = &cx_w_mx_parent,
563 	[SC8180X_CX_AO] = &cx_ao_w_mx_parent,
564 	[SC8180X_EBI] = &ebi,
565 	[SC8180X_GFX] = &gfx,
566 	[SC8180X_LCX] = &lcx,
567 	[SC8180X_LMX] = &lmx,
568 	[SC8180X_MMCX] = &mmcx,
569 	[SC8180X_MMCX_AO] = &mmcx_ao,
570 	[SC8180X_MSS] = &mss,
571 	[SC8180X_MX] = &mx,
572 	[SC8180X_MX_AO] = &mx_ao,
573 };
574 
575 static const struct rpmhpd_desc sc8180x_desc = {
576 	.rpmhpds = sc8180x_rpmhpds,
577 	.num_pds = ARRAY_SIZE(sc8180x_rpmhpds),
578 };
579 
580 /* SC8280xp RPMH powerdomains */
581 static struct rpmhpd *sc8280xp_rpmhpds[] = {
582 	[SC8280XP_CX] = &cx,
583 	[SC8280XP_CX_AO] = &cx_ao,
584 	[SC8280XP_EBI] = &ebi,
585 	[SC8280XP_GFX] = &gfx,
586 	[SC8280XP_LCX] = &lcx,
587 	[SC8280XP_LMX] = &lmx,
588 	[SC8280XP_MMCX] = &mmcx,
589 	[SC8280XP_MMCX_AO] = &mmcx_ao,
590 	[SC8280XP_MX] = &mx,
591 	[SC8280XP_MX_AO] = &mx_ao,
592 	[SC8280XP_NSP] = &nsp,
593 	[SC8280XP_QPHY] = &qphy,
594 };
595 
596 static const struct rpmhpd_desc sc8280xp_desc = {
597 	.rpmhpds = sc8280xp_rpmhpds,
598 	.num_pds = ARRAY_SIZE(sc8280xp_rpmhpds),
599 };
600 
601 /* SC8380xp RPMH powerdomains */
602 static struct rpmhpd *sc8380xp_rpmhpds[] = {
603 	[RPMHPD_CX] = &cx,
604 	[RPMHPD_CX_AO] = &cx_ao,
605 	[RPMHPD_EBI] = &ebi,
606 	[RPMHPD_GFX] = &gfx,
607 	[RPMHPD_LCX] = &lcx,
608 	[RPMHPD_LMX] = &lmx,
609 	[RPMHPD_MMCX] = &mmcx,
610 	[RPMHPD_MMCX_AO] = &mmcx_ao,
611 	[RPMHPD_MX] = &mx,
612 	[RPMHPD_MX_AO] = &mx_ao,
613 	[RPMHPD_NSP] = &nsp,
614 	[RPMHPD_MXC] = &mxc,
615 	[RPMHPD_GMXC] = &gmxc,
616 };
617 
618 static const struct rpmhpd_desc sc8380xp_desc = {
619 	.rpmhpds = sc8380xp_rpmhpds,
620 	.num_pds = ARRAY_SIZE(sc8380xp_rpmhpds),
621 };
622 
623 static const struct of_device_id rpmhpd_match_table[] = {
624 	{ .compatible = "qcom,qdu1000-rpmhpd", .data = &qdu1000_desc },
625 	{ .compatible = "qcom,sa8155p-rpmhpd", .data = &sa8155p_desc },
626 	{ .compatible = "qcom,sa8540p-rpmhpd", .data = &sa8540p_desc },
627 	{ .compatible = "qcom,sa8775p-rpmhpd", .data = &sa8775p_desc },
628 	{ .compatible = "qcom,sc7180-rpmhpd", .data = &sc7180_desc },
629 	{ .compatible = "qcom,sc7280-rpmhpd", .data = &sc7280_desc },
630 	{ .compatible = "qcom,sc8180x-rpmhpd", .data = &sc8180x_desc },
631 	{ .compatible = "qcom,sc8280xp-rpmhpd", .data = &sc8280xp_desc },
632 	{ .compatible = "qcom,sc8380xp-rpmhpd", .data = &sc8380xp_desc },
633 	{ .compatible = "qcom,sdm670-rpmhpd", .data = &sdm670_desc },
634 	{ .compatible = "qcom,sdm845-rpmhpd", .data = &sdm845_desc },
635 	{ .compatible = "qcom,sdx55-rpmhpd", .data = &sdx55_desc},
636 	{ .compatible = "qcom,sdx65-rpmhpd", .data = &sdx65_desc},
637 	{ .compatible = "qcom,sdx75-rpmhpd", .data = &sdx75_desc},
638 	{ .compatible = "qcom,sm6350-rpmhpd", .data = &sm6350_desc },
639 	{ .compatible = "qcom,sm7150-rpmhpd", .data = &sm7150_desc },
640 	{ .compatible = "qcom,sm8150-rpmhpd", .data = &sm8150_desc },
641 	{ .compatible = "qcom,sm8250-rpmhpd", .data = &sm8250_desc },
642 	{ .compatible = "qcom,sm8350-rpmhpd", .data = &sm8350_desc },
643 	{ .compatible = "qcom,sm8450-rpmhpd", .data = &sm8450_desc },
644 	{ .compatible = "qcom,sm8550-rpmhpd", .data = &sm8550_desc },
645 	{ .compatible = "qcom,sm8650-rpmhpd", .data = &sm8650_desc },
646 	{ }
647 };
648 MODULE_DEVICE_TABLE(of, rpmhpd_match_table);
649 
650 static int rpmhpd_send_corner(struct rpmhpd *pd, int state,
651 			      unsigned int corner, bool sync)
652 {
653 	struct tcs_cmd cmd = {
654 		.addr = pd->addr,
655 		.data = corner,
656 	};
657 
658 	/*
659 	 * Wait for an ack only when we are increasing the
660 	 * perf state of the power domain
661 	 */
662 	if (sync)
663 		return rpmh_write(pd->dev, state, &cmd, 1);
664 	else
665 		return rpmh_write_async(pd->dev, state, &cmd, 1);
666 }
667 
668 static void to_active_sleep(struct rpmhpd *pd, unsigned int corner,
669 			    unsigned int *active, unsigned int *sleep)
670 {
671 	*active = corner;
672 
673 	if (pd->active_only)
674 		*sleep = 0;
675 	else
676 		*sleep = *active;
677 }
678 
679 /*
680  * This function is used to aggregate the votes across the active only
681  * resources and its peers. The aggregated votes are sent to RPMh as
682  * ACTIVE_ONLY votes (which take effect immediately), as WAKE_ONLY votes
683  * (applied by RPMh on system wakeup) and as SLEEP votes (applied by RPMh
684  * on system sleep).
685  * We send ACTIVE_ONLY votes for resources without any peers. For others,
686  * which have an active only peer, all 3 votes are sent.
687  */
688 static int rpmhpd_aggregate_corner(struct rpmhpd *pd, unsigned int corner)
689 {
690 	int ret;
691 	struct rpmhpd *peer = pd->peer;
692 	unsigned int active_corner, sleep_corner;
693 	unsigned int this_active_corner = 0, this_sleep_corner = 0;
694 	unsigned int peer_active_corner = 0, peer_sleep_corner = 0;
695 
696 	if (pd->state_synced) {
697 		to_active_sleep(pd, corner, &this_active_corner, &this_sleep_corner);
698 	} else {
699 		/* Clamp to highest corner if sync_state hasn't happened */
700 		this_active_corner = pd->level_count - 1;
701 		this_sleep_corner = pd->level_count - 1;
702 	}
703 
704 	if (peer && peer->enabled)
705 		to_active_sleep(peer, peer->corner, &peer_active_corner,
706 				&peer_sleep_corner);
707 
708 	active_corner = max(this_active_corner, peer_active_corner);
709 
710 	ret = rpmhpd_send_corner(pd, RPMH_ACTIVE_ONLY_STATE, active_corner,
711 				 active_corner > pd->active_corner);
712 	if (ret)
713 		return ret;
714 
715 	pd->active_corner = active_corner;
716 
717 	if (peer) {
718 		peer->active_corner = active_corner;
719 
720 		ret = rpmhpd_send_corner(pd, RPMH_WAKE_ONLY_STATE,
721 					 active_corner, false);
722 		if (ret)
723 			return ret;
724 
725 		sleep_corner = max(this_sleep_corner, peer_sleep_corner);
726 
727 		return rpmhpd_send_corner(pd, RPMH_SLEEP_STATE, sleep_corner,
728 					  false);
729 	}
730 
731 	return ret;
732 }
733 
734 static int rpmhpd_power_on(struct generic_pm_domain *domain)
735 {
736 	struct rpmhpd *pd = domain_to_rpmhpd(domain);
737 	unsigned int corner;
738 	int ret;
739 
740 	mutex_lock(&rpmhpd_lock);
741 
742 	corner = max(pd->corner, pd->enable_corner);
743 	ret = rpmhpd_aggregate_corner(pd, corner);
744 	if (!ret)
745 		pd->enabled = true;
746 
747 	mutex_unlock(&rpmhpd_lock);
748 
749 	return ret;
750 }
751 
752 static int rpmhpd_power_off(struct generic_pm_domain *domain)
753 {
754 	struct rpmhpd *pd = domain_to_rpmhpd(domain);
755 	int ret;
756 
757 	mutex_lock(&rpmhpd_lock);
758 
759 	ret = rpmhpd_aggregate_corner(pd, 0);
760 	if (!ret)
761 		pd->enabled = false;
762 
763 	mutex_unlock(&rpmhpd_lock);
764 
765 	return ret;
766 }
767 
768 static int rpmhpd_set_performance_state(struct generic_pm_domain *domain,
769 					unsigned int level)
770 {
771 	struct rpmhpd *pd = domain_to_rpmhpd(domain);
772 	int ret = 0, i;
773 
774 	mutex_lock(&rpmhpd_lock);
775 
776 	for (i = 0; i < pd->level_count; i++)
777 		if (level <= pd->level[i])
778 			break;
779 
780 	/*
781 	 * If the level requested is more than that supported by the
782 	 * max corner, just set it to max anyway.
783 	 */
784 	if (i == pd->level_count)
785 		i--;
786 
787 	if (pd->enabled) {
788 		/* Ensure that the domain isn't turn off */
789 		if (i < pd->enable_corner)
790 			i = pd->enable_corner;
791 
792 		ret = rpmhpd_aggregate_corner(pd, i);
793 		if (ret)
794 			goto out;
795 	}
796 
797 	pd->corner = i;
798 out:
799 	mutex_unlock(&rpmhpd_lock);
800 
801 	return ret;
802 }
803 
804 static int rpmhpd_update_level_mapping(struct rpmhpd *rpmhpd)
805 {
806 	int i;
807 	const u16 *buf;
808 
809 	buf = cmd_db_read_aux_data(rpmhpd->res_name, &rpmhpd->level_count);
810 	if (IS_ERR(buf))
811 		return PTR_ERR(buf);
812 
813 	/* 2 bytes used for each command DB aux data entry */
814 	rpmhpd->level_count >>= 1;
815 
816 	if (rpmhpd->level_count > RPMH_ARC_MAX_LEVELS)
817 		return -EINVAL;
818 
819 	for (i = 0; i < rpmhpd->level_count; i++) {
820 		rpmhpd->level[i] = buf[i];
821 
822 		/* Remember the first corner with non-zero level */
823 		if (!rpmhpd->level[rpmhpd->enable_corner] && rpmhpd->level[i])
824 			rpmhpd->enable_corner = i;
825 
826 		/*
827 		 * The AUX data may be zero padded.  These 0 valued entries at
828 		 * the end of the map must be ignored.
829 		 */
830 		if (i > 0 && rpmhpd->level[i] == 0) {
831 			rpmhpd->level_count = i;
832 			break;
833 		}
834 		pr_debug("%s: ARC hlvl=%2d --> vlvl=%4u\n", rpmhpd->res_name, i,
835 			 rpmhpd->level[i]);
836 	}
837 
838 	return 0;
839 }
840 
841 static int rpmhpd_probe(struct platform_device *pdev)
842 {
843 	int i, ret;
844 	size_t num_pds;
845 	struct device *dev = &pdev->dev;
846 	struct genpd_onecell_data *data;
847 	struct rpmhpd **rpmhpds;
848 	const struct rpmhpd_desc *desc;
849 
850 	desc = of_device_get_match_data(dev);
851 	if (!desc)
852 		return -EINVAL;
853 
854 	rpmhpds = desc->rpmhpds;
855 	num_pds = desc->num_pds;
856 
857 	data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL);
858 	if (!data)
859 		return -ENOMEM;
860 
861 	data->domains = devm_kcalloc(dev, num_pds, sizeof(*data->domains),
862 				     GFP_KERNEL);
863 	if (!data->domains)
864 		return -ENOMEM;
865 
866 	data->num_domains = num_pds;
867 
868 	for (i = 0; i < num_pds; i++) {
869 		if (!rpmhpds[i])
870 			continue;
871 
872 		rpmhpds[i]->dev = dev;
873 		rpmhpds[i]->addr = cmd_db_read_addr(rpmhpds[i]->res_name);
874 		if (!rpmhpds[i]->addr) {
875 			dev_err(dev, "Could not find RPMh address for resource %s\n",
876 				rpmhpds[i]->res_name);
877 			return -ENODEV;
878 		}
879 
880 		ret = cmd_db_read_slave_id(rpmhpds[i]->res_name);
881 		if (ret != CMD_DB_HW_ARC) {
882 			dev_err(dev, "RPMh slave ID mismatch\n");
883 			return -EINVAL;
884 		}
885 
886 		ret = rpmhpd_update_level_mapping(rpmhpds[i]);
887 		if (ret)
888 			return ret;
889 
890 		rpmhpds[i]->pd.power_off = rpmhpd_power_off;
891 		rpmhpds[i]->pd.power_on = rpmhpd_power_on;
892 		rpmhpds[i]->pd.set_performance_state = rpmhpd_set_performance_state;
893 		pm_genpd_init(&rpmhpds[i]->pd, NULL, true);
894 
895 		data->domains[i] = &rpmhpds[i]->pd;
896 	}
897 
898 	/* Add subdomains */
899 	for (i = 0; i < num_pds; i++) {
900 		if (!rpmhpds[i])
901 			continue;
902 		if (rpmhpds[i]->parent)
903 			pm_genpd_add_subdomain(rpmhpds[i]->parent,
904 					       &rpmhpds[i]->pd);
905 	}
906 
907 	return of_genpd_add_provider_onecell(pdev->dev.of_node, data);
908 }
909 
910 static void rpmhpd_sync_state(struct device *dev)
911 {
912 	const struct rpmhpd_desc *desc = of_device_get_match_data(dev);
913 	struct rpmhpd **rpmhpds = desc->rpmhpds;
914 	unsigned int corner;
915 	struct rpmhpd *pd;
916 	unsigned int i;
917 	int ret;
918 
919 	mutex_lock(&rpmhpd_lock);
920 	for (i = 0; i < desc->num_pds; i++) {
921 		pd = rpmhpds[i];
922 		if (!pd)
923 			continue;
924 
925 		pd->state_synced = true;
926 		if (pd->enabled)
927 			corner = max(pd->corner, pd->enable_corner);
928 		else
929 			corner = 0;
930 
931 		ret = rpmhpd_aggregate_corner(pd, corner);
932 		if (ret)
933 			dev_err(dev, "failed to sync %s\n", pd->res_name);
934 	}
935 	mutex_unlock(&rpmhpd_lock);
936 }
937 
938 static struct platform_driver rpmhpd_driver = {
939 	.driver = {
940 		.name = "qcom-rpmhpd",
941 		.of_match_table = rpmhpd_match_table,
942 		.suppress_bind_attrs = true,
943 		.sync_state = rpmhpd_sync_state,
944 	},
945 	.probe = rpmhpd_probe,
946 };
947 
948 static int __init rpmhpd_init(void)
949 {
950 	return platform_driver_register(&rpmhpd_driver);
951 }
952 core_initcall(rpmhpd_init);
953 
954 MODULE_DESCRIPTION("Qualcomm Technologies, Inc. RPMh Power Domain Driver");
955 MODULE_LICENSE("GPL v2");
956