xref: /linux/drivers/firmware/arm_scmi/perf.c (revision eb7cca1faf9883d7b4da792281147dbedc449238)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * System Control and Management Interface (SCMI) Performance Protocol
4  *
5  * Copyright (C) 2018-2023 ARM Ltd.
6  */
7 
8 #define pr_fmt(fmt) "SCMI Notifications PERF - " fmt
9 
10 #include <linux/bits.h>
11 #include <linux/hashtable.h>
12 #include <linux/io.h>
13 #include <linux/log2.h>
14 #include <linux/module.h>
15 #include <linux/of.h>
16 #include <linux/platform_device.h>
17 #include <linux/pm_opp.h>
18 #include <linux/scmi_protocol.h>
19 #include <linux/sort.h>
20 #include <linux/xarray.h>
21 
22 #include <trace/events/scmi.h>
23 
24 #include "protocols.h"
25 #include "notify.h"
26 
27 /* Updated only after ALL the mandatory features for that version are merged */
28 #define SCMI_PROTOCOL_SUPPORTED_VERSION		0x40000
29 
30 #define MAX_OPPS		32
31 
32 enum scmi_performance_protocol_cmd {
33 	PERF_DOMAIN_ATTRIBUTES = 0x3,
34 	PERF_DESCRIBE_LEVELS = 0x4,
35 	PERF_LIMITS_SET = 0x5,
36 	PERF_LIMITS_GET = 0x6,
37 	PERF_LEVEL_SET = 0x7,
38 	PERF_LEVEL_GET = 0x8,
39 	PERF_NOTIFY_LIMITS = 0x9,
40 	PERF_NOTIFY_LEVEL = 0xa,
41 	PERF_DESCRIBE_FASTCHANNEL = 0xb,
42 	PERF_DOMAIN_NAME_GET = 0xc,
43 };
44 
45 enum {
46 	PERF_FC_LEVEL,
47 	PERF_FC_LIMIT,
48 	PERF_FC_MAX,
49 };
50 
51 struct scmi_opp {
52 	u32 perf;
53 	u32 power;
54 	u32 trans_latency_us;
55 	u32 indicative_freq;
56 	u32 level_index;
57 	struct hlist_node hash;
58 };
59 
60 struct scmi_msg_resp_perf_attributes {
61 	__le16 num_domains;
62 	__le16 flags;
63 #define POWER_SCALE_IN_MILLIWATT(x)	((x) & BIT(0))
64 #define POWER_SCALE_IN_MICROWATT(x)	((x) & BIT(1))
65 	__le32 stats_addr_low;
66 	__le32 stats_addr_high;
67 	__le32 stats_size;
68 };
69 
70 struct scmi_msg_resp_perf_domain_attributes {
71 	__le32 flags;
72 #define SUPPORTS_SET_LIMITS(x)		((x) & BIT(31))
73 #define SUPPORTS_SET_PERF_LVL(x)	((x) & BIT(30))
74 #define SUPPORTS_PERF_LIMIT_NOTIFY(x)	((x) & BIT(29))
75 #define SUPPORTS_PERF_LEVEL_NOTIFY(x)	((x) & BIT(28))
76 #define SUPPORTS_PERF_FASTCHANNELS(x)	((x) & BIT(27))
77 #define SUPPORTS_EXTENDED_NAMES(x)	((x) & BIT(26))
78 #define SUPPORTS_LEVEL_INDEXING(x)	((x) & BIT(25))
79 	__le32 rate_limit_us;
80 	__le32 sustained_freq_khz;
81 	__le32 sustained_perf_level;
82 	    u8 name[SCMI_SHORT_NAME_MAX_SIZE];
83 };
84 
85 struct scmi_msg_perf_describe_levels {
86 	__le32 domain;
87 	__le32 level_index;
88 };
89 
90 struct scmi_perf_set_limits {
91 	__le32 domain;
92 	__le32 max_level;
93 	__le32 min_level;
94 };
95 
96 struct scmi_perf_get_limits {
97 	__le32 max_level;
98 	__le32 min_level;
99 };
100 
101 struct scmi_perf_set_level {
102 	__le32 domain;
103 	__le32 level;
104 };
105 
106 struct scmi_perf_notify_level_or_limits {
107 	__le32 domain;
108 	__le32 notify_enable;
109 };
110 
111 struct scmi_perf_limits_notify_payld {
112 	__le32 agent_id;
113 	__le32 domain_id;
114 	__le32 range_max;
115 	__le32 range_min;
116 };
117 
118 struct scmi_perf_level_notify_payld {
119 	__le32 agent_id;
120 	__le32 domain_id;
121 	__le32 performance_level;
122 };
123 
124 struct scmi_msg_resp_perf_describe_levels {
125 	__le16 num_returned;
126 	__le16 num_remaining;
127 	struct {
128 		__le32 perf_val;
129 		__le32 power;
130 		__le16 transition_latency_us;
131 		__le16 reserved;
132 	} opp[];
133 };
134 
135 struct scmi_msg_resp_perf_describe_levels_v4 {
136 	__le16 num_returned;
137 	__le16 num_remaining;
138 	struct {
139 		__le32 perf_val;
140 		__le32 power;
141 		__le16 transition_latency_us;
142 		__le16 reserved;
143 		__le32 indicative_freq;
144 		__le32 level_index;
145 	} opp[];
146 };
147 
148 struct perf_dom_info {
149 	u32 id;
150 	bool set_limits;
151 	bool perf_limit_notify;
152 	bool perf_level_notify;
153 	bool perf_fastchannels;
154 	bool level_indexing_mode;
155 	u32 opp_count;
156 	u32 rate_limit_us;
157 	u32 sustained_freq_khz;
158 	u32 sustained_perf_level;
159 	unsigned long mult_factor;
160 	struct scmi_perf_domain_info info;
161 	struct scmi_opp opp[MAX_OPPS];
162 	struct scmi_fc_info *fc_info;
163 	struct xarray opps_by_idx;
164 	struct xarray opps_by_lvl;
165 	DECLARE_HASHTABLE(opps_by_freq, ilog2(MAX_OPPS));
166 };
167 
168 #define LOOKUP_BY_FREQ(__htp, __freq)					\
169 ({									\
170 		/* u32 cast is needed to pick right hash func */	\
171 		u32 f_ = (u32)(__freq);					\
172 		struct scmi_opp *_opp;					\
173 									\
174 		hash_for_each_possible((__htp), _opp, hash, f_)		\
175 			if (_opp->indicative_freq == f_)		\
176 				break;					\
177 		_opp;							\
178 })
179 
180 struct scmi_perf_info {
181 	u32 version;
182 	u16 num_domains;
183 	enum scmi_power_scale power_scale;
184 	u64 stats_addr;
185 	u32 stats_size;
186 	bool notify_lvl_cmd;
187 	bool notify_lim_cmd;
188 	struct perf_dom_info *dom_info;
189 };
190 
191 static enum scmi_performance_protocol_cmd evt_2_cmd[] = {
192 	PERF_NOTIFY_LIMITS,
193 	PERF_NOTIFY_LEVEL,
194 };
195 
196 static int scmi_perf_attributes_get(const struct scmi_protocol_handle *ph,
197 				    struct scmi_perf_info *pi)
198 {
199 	int ret;
200 	struct scmi_xfer *t;
201 	struct scmi_msg_resp_perf_attributes *attr;
202 
203 	ret = ph->xops->xfer_get_init(ph, PROTOCOL_ATTRIBUTES, 0,
204 				      sizeof(*attr), &t);
205 	if (ret)
206 		return ret;
207 
208 	attr = t->rx.buf;
209 
210 	ret = ph->xops->do_xfer(ph, t);
211 	if (!ret) {
212 		u16 flags = le16_to_cpu(attr->flags);
213 
214 		pi->num_domains = le16_to_cpu(attr->num_domains);
215 
216 		if (POWER_SCALE_IN_MILLIWATT(flags))
217 			pi->power_scale = SCMI_POWER_MILLIWATTS;
218 		if (PROTOCOL_REV_MAJOR(pi->version) >= 0x3)
219 			if (POWER_SCALE_IN_MICROWATT(flags))
220 				pi->power_scale = SCMI_POWER_MICROWATTS;
221 
222 		pi->stats_addr = le32_to_cpu(attr->stats_addr_low) |
223 				(u64)le32_to_cpu(attr->stats_addr_high) << 32;
224 		pi->stats_size = le32_to_cpu(attr->stats_size);
225 	}
226 
227 	ph->xops->xfer_put(ph, t);
228 
229 	if (!ret) {
230 		if (!ph->hops->protocol_msg_check(ph, PERF_NOTIFY_LEVEL, NULL))
231 			pi->notify_lvl_cmd = true;
232 
233 		if (!ph->hops->protocol_msg_check(ph, PERF_NOTIFY_LIMITS, NULL))
234 			pi->notify_lim_cmd = true;
235 	}
236 
237 	return ret;
238 }
239 
240 static void scmi_perf_xa_destroy(void *data)
241 {
242 	int domain;
243 	struct scmi_perf_info *pinfo = data;
244 
245 	for (domain = 0; domain < pinfo->num_domains; domain++) {
246 		xa_destroy(&((pinfo->dom_info + domain)->opps_by_idx));
247 		xa_destroy(&((pinfo->dom_info + domain)->opps_by_lvl));
248 	}
249 }
250 
251 static int
252 scmi_perf_domain_attributes_get(const struct scmi_protocol_handle *ph,
253 				struct perf_dom_info *dom_info,
254 				bool notify_lim_cmd, bool notify_lvl_cmd,
255 				u32 version)
256 {
257 	int ret;
258 	u32 flags;
259 	struct scmi_xfer *t;
260 	struct scmi_msg_resp_perf_domain_attributes *attr;
261 
262 	ret = ph->xops->xfer_get_init(ph, PERF_DOMAIN_ATTRIBUTES,
263 				      sizeof(dom_info->id), sizeof(*attr), &t);
264 	if (ret)
265 		return ret;
266 
267 	put_unaligned_le32(dom_info->id, t->tx.buf);
268 	attr = t->rx.buf;
269 
270 	ret = ph->xops->do_xfer(ph, t);
271 	if (!ret) {
272 		flags = le32_to_cpu(attr->flags);
273 
274 		dom_info->set_limits = SUPPORTS_SET_LIMITS(flags);
275 		dom_info->info.set_perf = SUPPORTS_SET_PERF_LVL(flags);
276 		if (notify_lim_cmd)
277 			dom_info->perf_limit_notify =
278 				SUPPORTS_PERF_LIMIT_NOTIFY(flags);
279 		if (notify_lvl_cmd)
280 			dom_info->perf_level_notify =
281 				SUPPORTS_PERF_LEVEL_NOTIFY(flags);
282 		dom_info->perf_fastchannels = SUPPORTS_PERF_FASTCHANNELS(flags);
283 		if (PROTOCOL_REV_MAJOR(version) >= 0x4)
284 			dom_info->level_indexing_mode =
285 				SUPPORTS_LEVEL_INDEXING(flags);
286 		dom_info->rate_limit_us = le32_to_cpu(attr->rate_limit_us) &
287 						GENMASK(19, 0);
288 		dom_info->sustained_freq_khz =
289 					le32_to_cpu(attr->sustained_freq_khz);
290 		dom_info->sustained_perf_level =
291 					le32_to_cpu(attr->sustained_perf_level);
292 		/*
293 		 * sustained_freq_khz = mult_factor * sustained_perf_level
294 		 * mult_factor must be non zero positive integer(not fraction)
295 		 */
296 		if (!dom_info->sustained_freq_khz ||
297 		    !dom_info->sustained_perf_level ||
298 		    dom_info->level_indexing_mode) {
299 			/* CPUFreq converts to kHz, hence default 1000 */
300 			dom_info->mult_factor =	1000;
301 		} else {
302 			dom_info->mult_factor =
303 					(dom_info->sustained_freq_khz * 1000UL)
304 					/ dom_info->sustained_perf_level;
305 			if ((dom_info->sustained_freq_khz * 1000UL) %
306 			    dom_info->sustained_perf_level)
307 				dev_warn(ph->dev,
308 					 "multiplier for domain %d rounded\n",
309 					 dom_info->id);
310 		}
311 		if (!dom_info->mult_factor)
312 			dev_warn(ph->dev,
313 			         "Wrong sustained perf/frequency(domain %d)\n",
314 				 dom_info->id);
315 
316 		strscpy(dom_info->info.name, attr->name,
317 			SCMI_SHORT_NAME_MAX_SIZE);
318 	}
319 
320 	ph->xops->xfer_put(ph, t);
321 
322 	/*
323 	 * If supported overwrite short name with the extended one;
324 	 * on error just carry on and use already provided short name.
325 	 */
326 	if (!ret && PROTOCOL_REV_MAJOR(version) >= 0x3 &&
327 	    SUPPORTS_EXTENDED_NAMES(flags))
328 		ph->hops->extended_name_get(ph, PERF_DOMAIN_NAME_GET,
329 					    dom_info->id, NULL, dom_info->info.name,
330 					    SCMI_MAX_STR_SIZE);
331 
332 	xa_init(&dom_info->opps_by_lvl);
333 	if (dom_info->level_indexing_mode) {
334 		xa_init(&dom_info->opps_by_idx);
335 		hash_init(dom_info->opps_by_freq);
336 	}
337 
338 	return ret;
339 }
340 
341 static int opp_cmp_func(const void *opp1, const void *opp2)
342 {
343 	const struct scmi_opp *t1 = opp1, *t2 = opp2;
344 
345 	return t1->perf - t2->perf;
346 }
347 
348 struct scmi_perf_ipriv {
349 	u32 version;
350 	struct perf_dom_info *perf_dom;
351 };
352 
353 static void iter_perf_levels_prepare_message(void *message,
354 					     unsigned int desc_index,
355 					     const void *priv)
356 {
357 	struct scmi_msg_perf_describe_levels *msg = message;
358 	const struct scmi_perf_ipriv *p = priv;
359 
360 	msg->domain = cpu_to_le32(p->perf_dom->id);
361 	/* Set the number of OPPs to be skipped/already read */
362 	msg->level_index = cpu_to_le32(desc_index);
363 }
364 
365 static int iter_perf_levels_update_state(struct scmi_iterator_state *st,
366 					 const void *response, void *priv)
367 {
368 	const struct scmi_msg_resp_perf_describe_levels *r = response;
369 
370 	st->num_returned = le16_to_cpu(r->num_returned);
371 	st->num_remaining = le16_to_cpu(r->num_remaining);
372 
373 	return 0;
374 }
375 
376 static inline void
377 process_response_opp(struct device *dev, struct perf_dom_info *dom,
378 		     struct scmi_opp *opp, unsigned int loop_idx,
379 		     const struct scmi_msg_resp_perf_describe_levels *r)
380 {
381 	int ret;
382 
383 	opp->perf = le32_to_cpu(r->opp[loop_idx].perf_val);
384 	opp->power = le32_to_cpu(r->opp[loop_idx].power);
385 	opp->trans_latency_us =
386 		le16_to_cpu(r->opp[loop_idx].transition_latency_us);
387 
388 	ret = xa_insert(&dom->opps_by_lvl, opp->perf, opp, GFP_KERNEL);
389 	if (ret)
390 		dev_warn(dev, "Failed to add opps_by_lvl at %d - ret:%d\n",
391 			 opp->perf, ret);
392 }
393 
394 static inline void
395 process_response_opp_v4(struct device *dev, struct perf_dom_info *dom,
396 			struct scmi_opp *opp, unsigned int loop_idx,
397 			const struct scmi_msg_resp_perf_describe_levels_v4 *r)
398 {
399 	int ret;
400 
401 	opp->perf = le32_to_cpu(r->opp[loop_idx].perf_val);
402 	opp->power = le32_to_cpu(r->opp[loop_idx].power);
403 	opp->trans_latency_us =
404 		le16_to_cpu(r->opp[loop_idx].transition_latency_us);
405 
406 	ret = xa_insert(&dom->opps_by_lvl, opp->perf, opp, GFP_KERNEL);
407 	if (ret)
408 		dev_warn(dev, "Failed to add opps_by_lvl at %d - ret:%d\n",
409 			 opp->perf, ret);
410 
411 	/* Note that PERF v4 reports always five 32-bit words */
412 	opp->indicative_freq = le32_to_cpu(r->opp[loop_idx].indicative_freq);
413 	if (dom->level_indexing_mode) {
414 		opp->level_index = le32_to_cpu(r->opp[loop_idx].level_index);
415 
416 		ret = xa_insert(&dom->opps_by_idx, opp->level_index, opp,
417 				GFP_KERNEL);
418 		if (ret)
419 			dev_warn(dev,
420 				 "Failed to add opps_by_idx at %d - ret:%d\n",
421 				 opp->level_index, ret);
422 
423 		hash_add(dom->opps_by_freq, &opp->hash, opp->indicative_freq);
424 	}
425 }
426 
427 static int
428 iter_perf_levels_process_response(const struct scmi_protocol_handle *ph,
429 				  const void *response,
430 				  struct scmi_iterator_state *st, void *priv)
431 {
432 	struct scmi_opp *opp;
433 	struct scmi_perf_ipriv *p = priv;
434 
435 	opp = &p->perf_dom->opp[st->desc_index + st->loop_idx];
436 	if (PROTOCOL_REV_MAJOR(p->version) <= 0x3)
437 		process_response_opp(ph->dev, p->perf_dom, opp, st->loop_idx,
438 				     response);
439 	else
440 		process_response_opp_v4(ph->dev, p->perf_dom, opp, st->loop_idx,
441 					response);
442 	p->perf_dom->opp_count++;
443 
444 	dev_dbg(ph->dev, "Level %d Power %d Latency %dus Ifreq %d Index %d\n",
445 		opp->perf, opp->power, opp->trans_latency_us,
446 		opp->indicative_freq, opp->level_index);
447 
448 	return 0;
449 }
450 
451 static int
452 scmi_perf_describe_levels_get(const struct scmi_protocol_handle *ph,
453 			      struct perf_dom_info *perf_dom, u32 version)
454 {
455 	int ret;
456 	void *iter;
457 	struct scmi_iterator_ops ops = {
458 		.prepare_message = iter_perf_levels_prepare_message,
459 		.update_state = iter_perf_levels_update_state,
460 		.process_response = iter_perf_levels_process_response,
461 	};
462 	struct scmi_perf_ipriv ppriv = {
463 		.version = version,
464 		.perf_dom = perf_dom,
465 	};
466 
467 	iter = ph->hops->iter_response_init(ph, &ops, MAX_OPPS,
468 					    PERF_DESCRIBE_LEVELS,
469 					    sizeof(struct scmi_msg_perf_describe_levels),
470 					    &ppriv);
471 	if (IS_ERR(iter))
472 		return PTR_ERR(iter);
473 
474 	ret = ph->hops->iter_response_run(iter);
475 	if (ret)
476 		return ret;
477 
478 	if (perf_dom->opp_count)
479 		sort(perf_dom->opp, perf_dom->opp_count,
480 		     sizeof(struct scmi_opp), opp_cmp_func, NULL);
481 
482 	return ret;
483 }
484 
485 static int scmi_perf_num_domains_get(const struct scmi_protocol_handle *ph)
486 {
487 	struct scmi_perf_info *pi = ph->get_priv(ph);
488 
489 	return pi->num_domains;
490 }
491 
492 static inline struct perf_dom_info *
493 scmi_perf_domain_lookup(const struct scmi_protocol_handle *ph, u32 domain)
494 {
495 	struct scmi_perf_info *pi = ph->get_priv(ph);
496 
497 	if (domain >= pi->num_domains)
498 		return ERR_PTR(-EINVAL);
499 
500 	return pi->dom_info + domain;
501 }
502 
503 static const struct scmi_perf_domain_info *
504 scmi_perf_info_get(const struct scmi_protocol_handle *ph, u32 domain)
505 {
506 	struct perf_dom_info *dom;
507 
508 	dom = scmi_perf_domain_lookup(ph, domain);
509 	if (IS_ERR(dom))
510 		return ERR_PTR(-EINVAL);
511 
512 	return &dom->info;
513 }
514 
515 static int scmi_perf_msg_limits_set(const struct scmi_protocol_handle *ph,
516 				    u32 domain, u32 max_perf, u32 min_perf)
517 {
518 	int ret;
519 	struct scmi_xfer *t;
520 	struct scmi_perf_set_limits *limits;
521 
522 	ret = ph->xops->xfer_get_init(ph, PERF_LIMITS_SET,
523 				      sizeof(*limits), 0, &t);
524 	if (ret)
525 		return ret;
526 
527 	limits = t->tx.buf;
528 	limits->domain = cpu_to_le32(domain);
529 	limits->max_level = cpu_to_le32(max_perf);
530 	limits->min_level = cpu_to_le32(min_perf);
531 
532 	ret = ph->xops->do_xfer(ph, t);
533 
534 	ph->xops->xfer_put(ph, t);
535 	return ret;
536 }
537 
538 static int __scmi_perf_limits_set(const struct scmi_protocol_handle *ph,
539 				  struct perf_dom_info *dom, u32 max_perf,
540 				  u32 min_perf)
541 {
542 	if (dom->fc_info && dom->fc_info[PERF_FC_LIMIT].set_addr) {
543 		struct scmi_fc_info *fci = &dom->fc_info[PERF_FC_LIMIT];
544 
545 		trace_scmi_fc_call(SCMI_PROTOCOL_PERF, PERF_LIMITS_SET,
546 				   dom->id, min_perf, max_perf);
547 		iowrite32(max_perf, fci->set_addr);
548 		iowrite32(min_perf, fci->set_addr + 4);
549 		ph->hops->fastchannel_db_ring(fci->set_db);
550 		return 0;
551 	}
552 
553 	return scmi_perf_msg_limits_set(ph, dom->id, max_perf, min_perf);
554 }
555 
556 static int scmi_perf_limits_set(const struct scmi_protocol_handle *ph,
557 				u32 domain, u32 max_perf, u32 min_perf)
558 {
559 	struct scmi_perf_info *pi = ph->get_priv(ph);
560 	struct perf_dom_info *dom;
561 
562 	dom = scmi_perf_domain_lookup(ph, domain);
563 	if (IS_ERR(dom))
564 		return PTR_ERR(dom);
565 
566 	if (!dom->set_limits)
567 		return -EOPNOTSUPP;
568 
569 	if (PROTOCOL_REV_MAJOR(pi->version) >= 0x3 && !max_perf && !min_perf)
570 		return -EINVAL;
571 
572 	if (dom->level_indexing_mode) {
573 		struct scmi_opp *opp;
574 
575 		if (min_perf) {
576 			opp = xa_load(&dom->opps_by_lvl, min_perf);
577 			if (!opp)
578 				return -EIO;
579 
580 			min_perf = opp->level_index;
581 		}
582 
583 		if (max_perf) {
584 			opp = xa_load(&dom->opps_by_lvl, max_perf);
585 			if (!opp)
586 				return -EIO;
587 
588 			max_perf = opp->level_index;
589 		}
590 	}
591 
592 	return __scmi_perf_limits_set(ph, dom, max_perf, min_perf);
593 }
594 
595 static int scmi_perf_msg_limits_get(const struct scmi_protocol_handle *ph,
596 				    u32 domain, u32 *max_perf, u32 *min_perf)
597 {
598 	int ret;
599 	struct scmi_xfer *t;
600 	struct scmi_perf_get_limits *limits;
601 
602 	ret = ph->xops->xfer_get_init(ph, PERF_LIMITS_GET,
603 				      sizeof(__le32), 0, &t);
604 	if (ret)
605 		return ret;
606 
607 	put_unaligned_le32(domain, t->tx.buf);
608 
609 	ret = ph->xops->do_xfer(ph, t);
610 	if (!ret) {
611 		limits = t->rx.buf;
612 
613 		*max_perf = le32_to_cpu(limits->max_level);
614 		*min_perf = le32_to_cpu(limits->min_level);
615 	}
616 
617 	ph->xops->xfer_put(ph, t);
618 	return ret;
619 }
620 
621 static int __scmi_perf_limits_get(const struct scmi_protocol_handle *ph,
622 				  struct perf_dom_info *dom, u32 *max_perf,
623 				  u32 *min_perf)
624 {
625 	if (dom->fc_info && dom->fc_info[PERF_FC_LIMIT].get_addr) {
626 		struct scmi_fc_info *fci = &dom->fc_info[PERF_FC_LIMIT];
627 
628 		*max_perf = ioread32(fci->get_addr);
629 		*min_perf = ioread32(fci->get_addr + 4);
630 		trace_scmi_fc_call(SCMI_PROTOCOL_PERF, PERF_LIMITS_GET,
631 				   dom->id, *min_perf, *max_perf);
632 		return 0;
633 	}
634 
635 	return scmi_perf_msg_limits_get(ph, dom->id, max_perf, min_perf);
636 }
637 
638 static int scmi_perf_limits_get(const struct scmi_protocol_handle *ph,
639 				u32 domain, u32 *max_perf, u32 *min_perf)
640 {
641 	int ret;
642 	struct perf_dom_info *dom;
643 
644 	dom = scmi_perf_domain_lookup(ph, domain);
645 	if (IS_ERR(dom))
646 		return PTR_ERR(dom);
647 
648 	ret = __scmi_perf_limits_get(ph, dom, max_perf, min_perf);
649 	if (ret)
650 		return ret;
651 
652 	if (dom->level_indexing_mode) {
653 		struct scmi_opp *opp;
654 
655 		opp = xa_load(&dom->opps_by_idx, *min_perf);
656 		if (!opp)
657 			return -EIO;
658 
659 		*min_perf = opp->perf;
660 
661 		opp = xa_load(&dom->opps_by_idx, *max_perf);
662 		if (!opp)
663 			return -EIO;
664 
665 		*max_perf = opp->perf;
666 	}
667 
668 	return 0;
669 }
670 
671 static int scmi_perf_msg_level_set(const struct scmi_protocol_handle *ph,
672 				   u32 domain, u32 level, bool poll)
673 {
674 	int ret;
675 	struct scmi_xfer *t;
676 	struct scmi_perf_set_level *lvl;
677 
678 	ret = ph->xops->xfer_get_init(ph, PERF_LEVEL_SET, sizeof(*lvl), 0, &t);
679 	if (ret)
680 		return ret;
681 
682 	t->hdr.poll_completion = poll;
683 	lvl = t->tx.buf;
684 	lvl->domain = cpu_to_le32(domain);
685 	lvl->level = cpu_to_le32(level);
686 
687 	ret = ph->xops->do_xfer(ph, t);
688 
689 	ph->xops->xfer_put(ph, t);
690 	return ret;
691 }
692 
693 static int __scmi_perf_level_set(const struct scmi_protocol_handle *ph,
694 				 struct perf_dom_info *dom, u32 level,
695 				 bool poll)
696 {
697 	if (dom->fc_info && dom->fc_info[PERF_FC_LEVEL].set_addr) {
698 		struct scmi_fc_info *fci = &dom->fc_info[PERF_FC_LEVEL];
699 
700 		trace_scmi_fc_call(SCMI_PROTOCOL_PERF, PERF_LEVEL_SET,
701 				   dom->id, level, 0);
702 		iowrite32(level, fci->set_addr);
703 		ph->hops->fastchannel_db_ring(fci->set_db);
704 		return 0;
705 	}
706 
707 	return scmi_perf_msg_level_set(ph, dom->id, level, poll);
708 }
709 
710 static int scmi_perf_level_set(const struct scmi_protocol_handle *ph,
711 			       u32 domain, u32 level, bool poll)
712 {
713 	struct perf_dom_info *dom;
714 
715 	dom = scmi_perf_domain_lookup(ph, domain);
716 	if (IS_ERR(dom))
717 		return PTR_ERR(dom);
718 
719 	if (!dom->info.set_perf)
720 		return -EOPNOTSUPP;
721 
722 	if (dom->level_indexing_mode) {
723 		struct scmi_opp *opp;
724 
725 		opp = xa_load(&dom->opps_by_lvl, level);
726 		if (!opp)
727 			return -EIO;
728 
729 		level = opp->level_index;
730 	}
731 
732 	return __scmi_perf_level_set(ph, dom, level, poll);
733 }
734 
735 static int scmi_perf_msg_level_get(const struct scmi_protocol_handle *ph,
736 				   u32 domain, u32 *level, bool poll)
737 {
738 	int ret;
739 	struct scmi_xfer *t;
740 
741 	ret = ph->xops->xfer_get_init(ph, PERF_LEVEL_GET,
742 				     sizeof(u32), sizeof(u32), &t);
743 	if (ret)
744 		return ret;
745 
746 	t->hdr.poll_completion = poll;
747 	put_unaligned_le32(domain, t->tx.buf);
748 
749 	ret = ph->xops->do_xfer(ph, t);
750 	if (!ret)
751 		*level = get_unaligned_le32(t->rx.buf);
752 
753 	ph->xops->xfer_put(ph, t);
754 	return ret;
755 }
756 
757 static int __scmi_perf_level_get(const struct scmi_protocol_handle *ph,
758 				 struct perf_dom_info *dom, u32 *level,
759 				 bool poll)
760 {
761 	if (dom->fc_info && dom->fc_info[PERF_FC_LEVEL].get_addr) {
762 		*level = ioread32(dom->fc_info[PERF_FC_LEVEL].get_addr);
763 		trace_scmi_fc_call(SCMI_PROTOCOL_PERF, PERF_LEVEL_GET,
764 				   dom->id, *level, 0);
765 		return 0;
766 	}
767 
768 	return scmi_perf_msg_level_get(ph, dom->id, level, poll);
769 }
770 
771 static int scmi_perf_level_get(const struct scmi_protocol_handle *ph,
772 			       u32 domain, u32 *level, bool poll)
773 {
774 	int ret;
775 	struct perf_dom_info *dom;
776 
777 	dom = scmi_perf_domain_lookup(ph, domain);
778 	if (IS_ERR(dom))
779 		return PTR_ERR(dom);
780 
781 	ret = __scmi_perf_level_get(ph, dom, level, poll);
782 	if (ret)
783 		return ret;
784 
785 	if (dom->level_indexing_mode) {
786 		struct scmi_opp *opp;
787 
788 		opp = xa_load(&dom->opps_by_idx, *level);
789 		if (!opp)
790 			return -EIO;
791 
792 		*level = opp->perf;
793 	}
794 
795 	return 0;
796 }
797 
798 static int scmi_perf_level_limits_notify(const struct scmi_protocol_handle *ph,
799 					 u32 domain, int message_id,
800 					 bool enable)
801 {
802 	int ret;
803 	struct scmi_xfer *t;
804 	struct scmi_perf_notify_level_or_limits *notify;
805 
806 	ret = ph->xops->xfer_get_init(ph, message_id, sizeof(*notify), 0, &t);
807 	if (ret)
808 		return ret;
809 
810 	notify = t->tx.buf;
811 	notify->domain = cpu_to_le32(domain);
812 	notify->notify_enable = enable ? cpu_to_le32(BIT(0)) : 0;
813 
814 	ret = ph->xops->do_xfer(ph, t);
815 
816 	ph->xops->xfer_put(ph, t);
817 	return ret;
818 }
819 
820 static void scmi_perf_domain_init_fc(const struct scmi_protocol_handle *ph,
821 				     struct perf_dom_info *dom)
822 {
823 	struct scmi_fc_info *fc;
824 
825 	fc = devm_kcalloc(ph->dev, PERF_FC_MAX, sizeof(*fc), GFP_KERNEL);
826 	if (!fc)
827 		return;
828 
829 	ph->hops->fastchannel_init(ph, PERF_DESCRIBE_FASTCHANNEL,
830 				   PERF_LEVEL_GET, 4, dom->id,
831 				   &fc[PERF_FC_LEVEL].get_addr, NULL,
832 				   &fc[PERF_FC_LEVEL].rate_limit);
833 
834 	ph->hops->fastchannel_init(ph, PERF_DESCRIBE_FASTCHANNEL,
835 				   PERF_LIMITS_GET, 8, dom->id,
836 				   &fc[PERF_FC_LIMIT].get_addr, NULL,
837 				   &fc[PERF_FC_LIMIT].rate_limit);
838 
839 	if (dom->info.set_perf)
840 		ph->hops->fastchannel_init(ph, PERF_DESCRIBE_FASTCHANNEL,
841 					   PERF_LEVEL_SET, 4, dom->id,
842 					   &fc[PERF_FC_LEVEL].set_addr,
843 					   &fc[PERF_FC_LEVEL].set_db,
844 					   &fc[PERF_FC_LEVEL].rate_limit);
845 
846 	if (dom->set_limits)
847 		ph->hops->fastchannel_init(ph, PERF_DESCRIBE_FASTCHANNEL,
848 					   PERF_LIMITS_SET, 8, dom->id,
849 					   &fc[PERF_FC_LIMIT].set_addr,
850 					   &fc[PERF_FC_LIMIT].set_db,
851 					   &fc[PERF_FC_LIMIT].rate_limit);
852 
853 	dom->fc_info = fc;
854 }
855 
856 static int scmi_dvfs_device_opps_add(const struct scmi_protocol_handle *ph,
857 				     struct device *dev, u32 domain)
858 {
859 	int idx, ret;
860 	unsigned long freq;
861 	struct dev_pm_opp_data data = {};
862 	struct perf_dom_info *dom;
863 
864 	dom = scmi_perf_domain_lookup(ph, domain);
865 	if (IS_ERR(dom))
866 		return PTR_ERR(dom);
867 
868 	for (idx = 0; idx < dom->opp_count; idx++) {
869 		if (!dom->level_indexing_mode)
870 			freq = dom->opp[idx].perf * dom->mult_factor;
871 		else
872 			freq = dom->opp[idx].indicative_freq * dom->mult_factor;
873 
874 		data.level = dom->opp[idx].perf;
875 		data.freq = freq;
876 
877 		ret = dev_pm_opp_add_dynamic(dev, &data);
878 		if (ret) {
879 			dev_warn(dev, "failed to add opp %luHz\n", freq);
880 			dev_pm_opp_remove_all_dynamic(dev);
881 			return ret;
882 		}
883 
884 		dev_dbg(dev, "[%d][%s]:: Registered OPP[%d] %lu\n",
885 			domain, dom->info.name, idx, freq);
886 	}
887 	return 0;
888 }
889 
890 static int
891 scmi_dvfs_transition_latency_get(const struct scmi_protocol_handle *ph,
892 				 u32 domain)
893 {
894 	struct perf_dom_info *dom;
895 
896 	dom = scmi_perf_domain_lookup(ph, domain);
897 	if (IS_ERR(dom))
898 		return PTR_ERR(dom);
899 
900 	/* uS to nS */
901 	return dom->opp[dom->opp_count - 1].trans_latency_us * 1000;
902 }
903 
904 static int
905 scmi_dvfs_rate_limit_get(const struct scmi_protocol_handle *ph,
906 			 u32 domain, u32 *rate_limit)
907 {
908 	struct perf_dom_info *dom;
909 
910 	if (!rate_limit)
911 		return -EINVAL;
912 
913 	dom = scmi_perf_domain_lookup(ph, domain);
914 	if (IS_ERR(dom))
915 		return PTR_ERR(dom);
916 
917 	*rate_limit = dom->rate_limit_us;
918 	return 0;
919 }
920 
921 static int scmi_dvfs_freq_set(const struct scmi_protocol_handle *ph, u32 domain,
922 			      unsigned long freq, bool poll)
923 {
924 	unsigned int level;
925 	struct perf_dom_info *dom;
926 
927 	dom = scmi_perf_domain_lookup(ph, domain);
928 	if (IS_ERR(dom))
929 		return PTR_ERR(dom);
930 
931 	if (!dom->level_indexing_mode) {
932 		level = freq / dom->mult_factor;
933 	} else {
934 		struct scmi_opp *opp;
935 
936 		opp = LOOKUP_BY_FREQ(dom->opps_by_freq,
937 				     freq / dom->mult_factor);
938 		if (!opp)
939 			return -EIO;
940 
941 		level = opp->level_index;
942 	}
943 
944 	return __scmi_perf_level_set(ph, dom, level, poll);
945 }
946 
947 static int scmi_dvfs_freq_get(const struct scmi_protocol_handle *ph, u32 domain,
948 			      unsigned long *freq, bool poll)
949 {
950 	int ret;
951 	u32 level;
952 	struct perf_dom_info *dom;
953 
954 	dom = scmi_perf_domain_lookup(ph, domain);
955 	if (IS_ERR(dom))
956 		return PTR_ERR(dom);
957 
958 	ret = __scmi_perf_level_get(ph, dom, &level, poll);
959 	if (ret)
960 		return ret;
961 
962 	if (!dom->level_indexing_mode) {
963 		*freq = level * dom->mult_factor;
964 	} else {
965 		struct scmi_opp *opp;
966 
967 		opp = xa_load(&dom->opps_by_idx, level);
968 		if (!opp)
969 			return -EIO;
970 
971 		*freq = opp->indicative_freq * dom->mult_factor;
972 	}
973 
974 	return ret;
975 }
976 
977 static int scmi_dvfs_est_power_get(const struct scmi_protocol_handle *ph,
978 				   u32 domain, unsigned long *freq,
979 				   unsigned long *power)
980 {
981 	struct perf_dom_info *dom;
982 	unsigned long opp_freq;
983 	int idx, ret = -EINVAL;
984 	struct scmi_opp *opp;
985 
986 	dom = scmi_perf_domain_lookup(ph, domain);
987 	if (IS_ERR(dom))
988 		return PTR_ERR(dom);
989 
990 	for (opp = dom->opp, idx = 0; idx < dom->opp_count; idx++, opp++) {
991 		if (!dom->level_indexing_mode)
992 			opp_freq = opp->perf * dom->mult_factor;
993 		else
994 			opp_freq = opp->indicative_freq * dom->mult_factor;
995 
996 		if (opp_freq < *freq)
997 			continue;
998 
999 		*freq = opp_freq;
1000 		*power = opp->power;
1001 		ret = 0;
1002 		break;
1003 	}
1004 
1005 	return ret;
1006 }
1007 
1008 static bool scmi_fast_switch_possible(const struct scmi_protocol_handle *ph,
1009 				      u32 domain)
1010 {
1011 	struct perf_dom_info *dom;
1012 
1013 	dom = scmi_perf_domain_lookup(ph, domain);
1014 	if (IS_ERR(dom))
1015 		return false;
1016 
1017 	return dom->fc_info && dom->fc_info[PERF_FC_LEVEL].set_addr;
1018 }
1019 
1020 static int scmi_fast_switch_rate_limit(const struct scmi_protocol_handle *ph,
1021 				       u32 domain, u32 *rate_limit)
1022 {
1023 	struct perf_dom_info *dom;
1024 
1025 	if (!rate_limit)
1026 		return -EINVAL;
1027 
1028 	dom = scmi_perf_domain_lookup(ph, domain);
1029 	if (IS_ERR(dom))
1030 		return PTR_ERR(dom);
1031 
1032 	if (!dom->fc_info)
1033 		return -EINVAL;
1034 
1035 	*rate_limit = dom->fc_info[PERF_FC_LEVEL].rate_limit;
1036 	return 0;
1037 }
1038 
1039 static enum scmi_power_scale
1040 scmi_power_scale_get(const struct scmi_protocol_handle *ph)
1041 {
1042 	struct scmi_perf_info *pi = ph->get_priv(ph);
1043 
1044 	return pi->power_scale;
1045 }
1046 
1047 static const struct scmi_perf_proto_ops perf_proto_ops = {
1048 	.num_domains_get = scmi_perf_num_domains_get,
1049 	.info_get = scmi_perf_info_get,
1050 	.limits_set = scmi_perf_limits_set,
1051 	.limits_get = scmi_perf_limits_get,
1052 	.level_set = scmi_perf_level_set,
1053 	.level_get = scmi_perf_level_get,
1054 	.transition_latency_get = scmi_dvfs_transition_latency_get,
1055 	.rate_limit_get = scmi_dvfs_rate_limit_get,
1056 	.device_opps_add = scmi_dvfs_device_opps_add,
1057 	.freq_set = scmi_dvfs_freq_set,
1058 	.freq_get = scmi_dvfs_freq_get,
1059 	.est_power_get = scmi_dvfs_est_power_get,
1060 	.fast_switch_possible = scmi_fast_switch_possible,
1061 	.fast_switch_rate_limit = scmi_fast_switch_rate_limit,
1062 	.power_scale_get = scmi_power_scale_get,
1063 };
1064 
1065 static bool scmi_perf_notify_supported(const struct scmi_protocol_handle *ph,
1066 				       u8 evt_id, u32 src_id)
1067 {
1068 	bool supported;
1069 	struct perf_dom_info *dom;
1070 
1071 	if (evt_id >= ARRAY_SIZE(evt_2_cmd))
1072 		return false;
1073 
1074 	dom = scmi_perf_domain_lookup(ph, src_id);
1075 	if (IS_ERR(dom))
1076 		return false;
1077 
1078 	if (evt_id == SCMI_EVENT_PERFORMANCE_LIMITS_CHANGED)
1079 		supported = dom->perf_limit_notify;
1080 	else
1081 		supported = dom->perf_level_notify;
1082 
1083 	return supported;
1084 }
1085 
1086 static int scmi_perf_set_notify_enabled(const struct scmi_protocol_handle *ph,
1087 					u8 evt_id, u32 src_id, bool enable)
1088 {
1089 	int ret, cmd_id;
1090 
1091 	if (evt_id >= ARRAY_SIZE(evt_2_cmd))
1092 		return -EINVAL;
1093 
1094 	cmd_id = evt_2_cmd[evt_id];
1095 	ret = scmi_perf_level_limits_notify(ph, src_id, cmd_id, enable);
1096 	if (ret)
1097 		pr_debug("FAIL_ENABLED - evt[%X] dom[%d] - ret:%d\n",
1098 			 evt_id, src_id, ret);
1099 
1100 	return ret;
1101 }
1102 
1103 static int
1104 scmi_perf_xlate_opp_to_freq(struct perf_dom_info *dom,
1105 			    unsigned int index, unsigned long *freq)
1106 {
1107 	struct scmi_opp *opp;
1108 
1109 	if (!dom || !freq)
1110 		return -EINVAL;
1111 
1112 	if (!dom->level_indexing_mode) {
1113 		opp = xa_load(&dom->opps_by_lvl, index);
1114 		if (!opp)
1115 			return -ENODEV;
1116 
1117 		*freq = opp->perf * dom->mult_factor;
1118 	} else {
1119 		opp = xa_load(&dom->opps_by_idx, index);
1120 		if (!opp)
1121 			return -ENODEV;
1122 
1123 		*freq = opp->indicative_freq * dom->mult_factor;
1124 	}
1125 
1126 	return 0;
1127 }
1128 
1129 static void *scmi_perf_fill_custom_report(const struct scmi_protocol_handle *ph,
1130 					  u8 evt_id, ktime_t timestamp,
1131 					  const void *payld, size_t payld_sz,
1132 					  void *report, u32 *src_id)
1133 {
1134 	int ret;
1135 	void *rep = NULL;
1136 	struct perf_dom_info *dom;
1137 
1138 	switch (evt_id) {
1139 	case SCMI_EVENT_PERFORMANCE_LIMITS_CHANGED:
1140 	{
1141 		const struct scmi_perf_limits_notify_payld *p = payld;
1142 		struct scmi_perf_limits_report *r = report;
1143 		unsigned long freq_min, freq_max;
1144 
1145 		if (sizeof(*p) != payld_sz)
1146 			break;
1147 
1148 		r->timestamp = timestamp;
1149 		r->agent_id = le32_to_cpu(p->agent_id);
1150 		r->domain_id = le32_to_cpu(p->domain_id);
1151 		r->range_max = le32_to_cpu(p->range_max);
1152 		r->range_min = le32_to_cpu(p->range_min);
1153 		/* Check if the reported domain exist at all */
1154 		dom = scmi_perf_domain_lookup(ph, r->domain_id);
1155 		if (IS_ERR(dom))
1156 			break;
1157 		/*
1158 		 * Event will be reported from this point on...
1159 		 * ...even if, later, xlated frequencies were not retrieved.
1160 		 */
1161 		*src_id = r->domain_id;
1162 		rep = r;
1163 
1164 		ret = scmi_perf_xlate_opp_to_freq(dom, r->range_max, &freq_max);
1165 		if (ret)
1166 			break;
1167 
1168 		ret = scmi_perf_xlate_opp_to_freq(dom, r->range_min, &freq_min);
1169 		if (ret)
1170 			break;
1171 
1172 		/* Report translated freqs ONLY if both available */
1173 		r->range_max_freq = freq_max;
1174 		r->range_min_freq = freq_min;
1175 
1176 		break;
1177 	}
1178 	case SCMI_EVENT_PERFORMANCE_LEVEL_CHANGED:
1179 	{
1180 		const struct scmi_perf_level_notify_payld *p = payld;
1181 		struct scmi_perf_level_report *r = report;
1182 		unsigned long freq;
1183 
1184 		if (sizeof(*p) != payld_sz)
1185 			break;
1186 
1187 		r->timestamp = timestamp;
1188 		r->agent_id = le32_to_cpu(p->agent_id);
1189 		r->domain_id = le32_to_cpu(p->domain_id);
1190 		/* Report translated freqs ONLY if available */
1191 		r->performance_level = le32_to_cpu(p->performance_level);
1192 		/* Check if the reported domain exist at all */
1193 		dom = scmi_perf_domain_lookup(ph, r->domain_id);
1194 		if (IS_ERR(dom))
1195 			break;
1196 		/*
1197 		 * Event will be reported from this point on...
1198 		 * ...even if, later, xlated frequencies were not retrieved.
1199 		 */
1200 		*src_id = r->domain_id;
1201 		rep = r;
1202 
1203 		/* Report translated freqs ONLY if available */
1204 		ret = scmi_perf_xlate_opp_to_freq(dom, r->performance_level,
1205 						  &freq);
1206 		if (ret)
1207 			break;
1208 
1209 		r->performance_level_freq = freq;
1210 
1211 		break;
1212 	}
1213 	default:
1214 		break;
1215 	}
1216 
1217 	return rep;
1218 }
1219 
1220 static int scmi_perf_get_num_sources(const struct scmi_protocol_handle *ph)
1221 {
1222 	struct scmi_perf_info *pi = ph->get_priv(ph);
1223 
1224 	if (!pi)
1225 		return -EINVAL;
1226 
1227 	return pi->num_domains;
1228 }
1229 
1230 static const struct scmi_event perf_events[] = {
1231 	{
1232 		.id = SCMI_EVENT_PERFORMANCE_LIMITS_CHANGED,
1233 		.max_payld_sz = sizeof(struct scmi_perf_limits_notify_payld),
1234 		.max_report_sz = sizeof(struct scmi_perf_limits_report),
1235 	},
1236 	{
1237 		.id = SCMI_EVENT_PERFORMANCE_LEVEL_CHANGED,
1238 		.max_payld_sz = sizeof(struct scmi_perf_level_notify_payld),
1239 		.max_report_sz = sizeof(struct scmi_perf_level_report),
1240 	},
1241 };
1242 
1243 static const struct scmi_event_ops perf_event_ops = {
1244 	.is_notify_supported = scmi_perf_notify_supported,
1245 	.get_num_sources = scmi_perf_get_num_sources,
1246 	.set_notify_enabled = scmi_perf_set_notify_enabled,
1247 	.fill_custom_report = scmi_perf_fill_custom_report,
1248 };
1249 
1250 static const struct scmi_protocol_events perf_protocol_events = {
1251 	.queue_sz = SCMI_PROTO_QUEUE_SZ,
1252 	.ops = &perf_event_ops,
1253 	.evts = perf_events,
1254 	.num_events = ARRAY_SIZE(perf_events),
1255 };
1256 
1257 static int scmi_perf_protocol_init(const struct scmi_protocol_handle *ph)
1258 {
1259 	int domain, ret;
1260 	u32 version;
1261 	struct scmi_perf_info *pinfo;
1262 
1263 	ret = ph->xops->version_get(ph, &version);
1264 	if (ret)
1265 		return ret;
1266 
1267 	dev_dbg(ph->dev, "Performance Version %d.%d\n",
1268 		PROTOCOL_REV_MAJOR(version), PROTOCOL_REV_MINOR(version));
1269 
1270 	pinfo = devm_kzalloc(ph->dev, sizeof(*pinfo), GFP_KERNEL);
1271 	if (!pinfo)
1272 		return -ENOMEM;
1273 
1274 	pinfo->version = version;
1275 
1276 	ret = scmi_perf_attributes_get(ph, pinfo);
1277 	if (ret)
1278 		return ret;
1279 
1280 	pinfo->dom_info = devm_kcalloc(ph->dev, pinfo->num_domains,
1281 				       sizeof(*pinfo->dom_info), GFP_KERNEL);
1282 	if (!pinfo->dom_info)
1283 		return -ENOMEM;
1284 
1285 	for (domain = 0; domain < pinfo->num_domains; domain++) {
1286 		struct perf_dom_info *dom = pinfo->dom_info + domain;
1287 
1288 		dom->id = domain;
1289 		scmi_perf_domain_attributes_get(ph, dom, pinfo->notify_lim_cmd,
1290 						pinfo->notify_lvl_cmd, version);
1291 		scmi_perf_describe_levels_get(ph, dom, version);
1292 
1293 		if (dom->perf_fastchannels)
1294 			scmi_perf_domain_init_fc(ph, dom);
1295 	}
1296 
1297 	ret = devm_add_action_or_reset(ph->dev, scmi_perf_xa_destroy, pinfo);
1298 	if (ret)
1299 		return ret;
1300 
1301 	return ph->set_priv(ph, pinfo, version);
1302 }
1303 
1304 static const struct scmi_protocol scmi_perf = {
1305 	.id = SCMI_PROTOCOL_PERF,
1306 	.owner = THIS_MODULE,
1307 	.instance_init = &scmi_perf_protocol_init,
1308 	.ops = &perf_proto_ops,
1309 	.events = &perf_protocol_events,
1310 	.supported_version = SCMI_PROTOCOL_SUPPORTED_VERSION,
1311 };
1312 
1313 DEFINE_SCMI_PROTOCOL_REGISTER_UNREGISTER(perf, scmi_perf)
1314