xref: /openbmc/linux/drivers/firmware/ti_sci.c (revision 9b98e02a)
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Texas Instruments System Control Interface Protocol Driver
4  *
5  * Copyright (C) 2015-2016 Texas Instruments Incorporated - https://www.ti.com/
6  *	Nishanth Menon
7  */
8 
9 #define pr_fmt(fmt) "%s: " fmt, __func__
10 
11 #include <linux/bitmap.h>
12 #include <linux/debugfs.h>
13 #include <linux/export.h>
14 #include <linux/io.h>
15 #include <linux/kernel.h>
16 #include <linux/mailbox_client.h>
17 #include <linux/module.h>
18 #include <linux/of_device.h>
19 #include <linux/semaphore.h>
20 #include <linux/slab.h>
21 #include <linux/soc/ti/ti-msgmgr.h>
22 #include <linux/soc/ti/ti_sci_protocol.h>
23 #include <linux/reboot.h>
24 
25 #include "ti_sci.h"
26 
27 /* List of all TI SCI devices active in system */
28 static LIST_HEAD(ti_sci_list);
29 /* Protection for the entire list */
30 static DEFINE_MUTEX(ti_sci_list_mutex);
31 
32 /**
33  * struct ti_sci_xfer - Structure representing a message flow
34  * @tx_message:	Transmit message
35  * @rx_len:	Receive message length
36  * @xfer_buf:	Preallocated buffer to store receive message
37  *		Since we work with request-ACK protocol, we can
38  *		reuse the same buffer for the rx path as we
39  *		use for the tx path.
40  * @done:	completion event
41  */
42 struct ti_sci_xfer {
43 	struct ti_msgmgr_message tx_message;
44 	u8 rx_len;
45 	u8 *xfer_buf;
46 	struct completion done;
47 };
48 
49 /**
50  * struct ti_sci_xfers_info - Structure to manage transfer information
51  * @sem_xfer_count:	Counting Semaphore for managing max simultaneous
52  *			Messages.
53  * @xfer_block:		Preallocated Message array
54  * @xfer_alloc_table:	Bitmap table for allocated messages.
55  *			Index of this bitmap table is also used for message
56  *			sequence identifier.
57  * @xfer_lock:		Protection for message allocation
58  */
59 struct ti_sci_xfers_info {
60 	struct semaphore sem_xfer_count;
61 	struct ti_sci_xfer *xfer_block;
62 	unsigned long *xfer_alloc_table;
63 	/* protect transfer allocation */
64 	spinlock_t xfer_lock;
65 };
66 
67 /**
68  * struct ti_sci_desc - Description of SoC integration
69  * @default_host_id:	Host identifier representing the compute entity
70  * @max_rx_timeout_ms:	Timeout for communication with SoC (in Milliseconds)
71  * @max_msgs: Maximum number of messages that can be pending
72  *		  simultaneously in the system
73  * @max_msg_size: Maximum size of data per message that can be handled.
74  */
75 struct ti_sci_desc {
76 	u8 default_host_id;
77 	int max_rx_timeout_ms;
78 	int max_msgs;
79 	int max_msg_size;
80 };
81 
82 /**
83  * struct ti_sci_info - Structure representing a TI SCI instance
84  * @dev:	Device pointer
85  * @desc:	SoC description for this instance
86  * @nb:	Reboot Notifier block
87  * @d:		Debugfs file entry
88  * @debug_region: Memory region where the debug message are available
89  * @debug_region_size: Debug region size
90  * @debug_buffer: Buffer allocated to copy debug messages.
91  * @handle:	Instance of TI SCI handle to send to clients.
92  * @cl:		Mailbox Client
93  * @chan_tx:	Transmit mailbox channel
94  * @chan_rx:	Receive mailbox channel
95  * @minfo:	Message info
96  * @node:	list head
97  * @host_id:	Host ID
98  * @users:	Number of users of this instance
99  */
100 struct ti_sci_info {
101 	struct device *dev;
102 	struct notifier_block nb;
103 	const struct ti_sci_desc *desc;
104 	struct dentry *d;
105 	void __iomem *debug_region;
106 	char *debug_buffer;
107 	size_t debug_region_size;
108 	struct ti_sci_handle handle;
109 	struct mbox_client cl;
110 	struct mbox_chan *chan_tx;
111 	struct mbox_chan *chan_rx;
112 	struct ti_sci_xfers_info minfo;
113 	struct list_head node;
114 	u8 host_id;
115 	/* protected by ti_sci_list_mutex */
116 	int users;
117 
118 };
119 
120 #define cl_to_ti_sci_info(c)	container_of(c, struct ti_sci_info, cl)
121 #define handle_to_ti_sci_info(h) container_of(h, struct ti_sci_info, handle)
122 #define reboot_to_ti_sci_info(n) container_of(n, struct ti_sci_info, nb)
123 
124 #ifdef CONFIG_DEBUG_FS
125 
126 /**
127  * ti_sci_debug_show() - Helper to dump the debug log
128  * @s:	sequence file pointer
129  * @unused:	unused.
130  *
131  * Return: 0
132  */
133 static int ti_sci_debug_show(struct seq_file *s, void *unused)
134 {
135 	struct ti_sci_info *info = s->private;
136 
137 	memcpy_fromio(info->debug_buffer, info->debug_region,
138 		      info->debug_region_size);
139 	/*
140 	 * We don't trust firmware to leave NULL terminated last byte (hence
141 	 * we have allocated 1 extra 0 byte). Since we cannot guarantee any
142 	 * specific data format for debug messages, We just present the data
143 	 * in the buffer as is - we expect the messages to be self explanatory.
144 	 */
145 	seq_puts(s, info->debug_buffer);
146 	return 0;
147 }
148 
149 /* Provide the log file operations interface*/
150 DEFINE_SHOW_ATTRIBUTE(ti_sci_debug);
151 
152 /**
153  * ti_sci_debugfs_create() - Create log debug file
154  * @pdev:	platform device pointer
155  * @info:	Pointer to SCI entity information
156  *
157  * Return: 0 if all went fine, else corresponding error.
158  */
159 static int ti_sci_debugfs_create(struct platform_device *pdev,
160 				 struct ti_sci_info *info)
161 {
162 	struct device *dev = &pdev->dev;
163 	struct resource *res;
164 	char debug_name[50] = "ti_sci_debug@";
165 
166 	/* Debug region is optional */
167 	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
168 					   "debug_messages");
169 	info->debug_region = devm_ioremap_resource(dev, res);
170 	if (IS_ERR(info->debug_region))
171 		return 0;
172 	info->debug_region_size = resource_size(res);
173 
174 	info->debug_buffer = devm_kcalloc(dev, info->debug_region_size + 1,
175 					  sizeof(char), GFP_KERNEL);
176 	if (!info->debug_buffer)
177 		return -ENOMEM;
178 	/* Setup NULL termination */
179 	info->debug_buffer[info->debug_region_size] = 0;
180 
181 	info->d = debugfs_create_file(strncat(debug_name, dev_name(dev),
182 					      sizeof(debug_name) -
183 					      sizeof("ti_sci_debug@")),
184 				      0444, NULL, info, &ti_sci_debug_fops);
185 	if (IS_ERR(info->d))
186 		return PTR_ERR(info->d);
187 
188 	dev_dbg(dev, "Debug region => %p, size = %zu bytes, resource: %pr\n",
189 		info->debug_region, info->debug_region_size, res);
190 	return 0;
191 }
192 
193 /**
194  * ti_sci_debugfs_destroy() - clean up log debug file
195  * @pdev:	platform device pointer
196  * @info:	Pointer to SCI entity information
197  */
198 static void ti_sci_debugfs_destroy(struct platform_device *pdev,
199 				   struct ti_sci_info *info)
200 {
201 	if (IS_ERR(info->debug_region))
202 		return;
203 
204 	debugfs_remove(info->d);
205 }
206 #else /* CONFIG_DEBUG_FS */
207 static inline int ti_sci_debugfs_create(struct platform_device *dev,
208 					struct ti_sci_info *info)
209 {
210 	return 0;
211 }
212 
213 static inline void ti_sci_debugfs_destroy(struct platform_device *dev,
214 					  struct ti_sci_info *info)
215 {
216 }
217 #endif /* CONFIG_DEBUG_FS */
218 
219 /**
220  * ti_sci_dump_header_dbg() - Helper to dump a message header.
221  * @dev:	Device pointer corresponding to the SCI entity
222  * @hdr:	pointer to header.
223  */
224 static inline void ti_sci_dump_header_dbg(struct device *dev,
225 					  struct ti_sci_msg_hdr *hdr)
226 {
227 	dev_dbg(dev, "MSGHDR:type=0x%04x host=0x%02x seq=0x%02x flags=0x%08x\n",
228 		hdr->type, hdr->host, hdr->seq, hdr->flags);
229 }
230 
231 /**
232  * ti_sci_rx_callback() - mailbox client callback for receive messages
233  * @cl:	client pointer
234  * @m:	mailbox message
235  *
236  * Processes one received message to appropriate transfer information and
237  * signals completion of the transfer.
238  *
239  * NOTE: This function will be invoked in IRQ context, hence should be
240  * as optimal as possible.
241  */
242 static void ti_sci_rx_callback(struct mbox_client *cl, void *m)
243 {
244 	struct ti_sci_info *info = cl_to_ti_sci_info(cl);
245 	struct device *dev = info->dev;
246 	struct ti_sci_xfers_info *minfo = &info->minfo;
247 	struct ti_msgmgr_message *mbox_msg = m;
248 	struct ti_sci_msg_hdr *hdr = (struct ti_sci_msg_hdr *)mbox_msg->buf;
249 	struct ti_sci_xfer *xfer;
250 	u8 xfer_id;
251 
252 	xfer_id = hdr->seq;
253 
254 	/*
255 	 * Are we even expecting this?
256 	 * NOTE: barriers were implicit in locks used for modifying the bitmap
257 	 */
258 	if (!test_bit(xfer_id, minfo->xfer_alloc_table)) {
259 		dev_err(dev, "Message for %d is not expected!\n", xfer_id);
260 		return;
261 	}
262 
263 	xfer = &minfo->xfer_block[xfer_id];
264 
265 	/* Is the message of valid length? */
266 	if (mbox_msg->len > info->desc->max_msg_size) {
267 		dev_err(dev, "Unable to handle %zu xfer(max %d)\n",
268 			mbox_msg->len, info->desc->max_msg_size);
269 		ti_sci_dump_header_dbg(dev, hdr);
270 		return;
271 	}
272 	if (mbox_msg->len < xfer->rx_len) {
273 		dev_err(dev, "Recv xfer %zu < expected %d length\n",
274 			mbox_msg->len, xfer->rx_len);
275 		ti_sci_dump_header_dbg(dev, hdr);
276 		return;
277 	}
278 
279 	ti_sci_dump_header_dbg(dev, hdr);
280 	/* Take a copy to the rx buffer.. */
281 	memcpy(xfer->xfer_buf, mbox_msg->buf, xfer->rx_len);
282 	complete(&xfer->done);
283 }
284 
285 /**
286  * ti_sci_get_one_xfer() - Allocate one message
287  * @info:	Pointer to SCI entity information
288  * @msg_type:	Message type
289  * @msg_flags:	Flag to set for the message
290  * @tx_message_size: transmit message size
291  * @rx_message_size: receive message size
292  *
293  * Helper function which is used by various command functions that are
294  * exposed to clients of this driver for allocating a message traffic event.
295  *
296  * This function can sleep depending on pending requests already in the system
297  * for the SCI entity. Further, this also holds a spinlock to maintain integrity
298  * of internal data structures.
299  *
300  * Return: 0 if all went fine, else corresponding error.
301  */
302 static struct ti_sci_xfer *ti_sci_get_one_xfer(struct ti_sci_info *info,
303 					       u16 msg_type, u32 msg_flags,
304 					       size_t tx_message_size,
305 					       size_t rx_message_size)
306 {
307 	struct ti_sci_xfers_info *minfo = &info->minfo;
308 	struct ti_sci_xfer *xfer;
309 	struct ti_sci_msg_hdr *hdr;
310 	unsigned long flags;
311 	unsigned long bit_pos;
312 	u8 xfer_id;
313 	int ret;
314 	int timeout;
315 
316 	/* Ensure we have sane transfer sizes */
317 	if (rx_message_size > info->desc->max_msg_size ||
318 	    tx_message_size > info->desc->max_msg_size ||
319 	    rx_message_size < sizeof(*hdr) || tx_message_size < sizeof(*hdr))
320 		return ERR_PTR(-ERANGE);
321 
322 	/*
323 	 * Ensure we have only controlled number of pending messages.
324 	 * Ideally, we might just have to wait a single message, be
325 	 * conservative and wait 5 times that..
326 	 */
327 	timeout = msecs_to_jiffies(info->desc->max_rx_timeout_ms) * 5;
328 	ret = down_timeout(&minfo->sem_xfer_count, timeout);
329 	if (ret < 0)
330 		return ERR_PTR(ret);
331 
332 	/* Keep the locked section as small as possible */
333 	spin_lock_irqsave(&minfo->xfer_lock, flags);
334 	bit_pos = find_first_zero_bit(minfo->xfer_alloc_table,
335 				      info->desc->max_msgs);
336 	set_bit(bit_pos, minfo->xfer_alloc_table);
337 	spin_unlock_irqrestore(&minfo->xfer_lock, flags);
338 
339 	/*
340 	 * We already ensured in probe that we can have max messages that can
341 	 * fit in  hdr.seq - NOTE: this improves access latencies
342 	 * to predictable O(1) access, BUT, it opens us to risk if
343 	 * remote misbehaves with corrupted message sequence responses.
344 	 * If that happens, we are going to be messed up anyways..
345 	 */
346 	xfer_id = (u8)bit_pos;
347 
348 	xfer = &minfo->xfer_block[xfer_id];
349 
350 	hdr = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
351 	xfer->tx_message.len = tx_message_size;
352 	xfer->rx_len = (u8)rx_message_size;
353 
354 	reinit_completion(&xfer->done);
355 
356 	hdr->seq = xfer_id;
357 	hdr->type = msg_type;
358 	hdr->host = info->host_id;
359 	hdr->flags = msg_flags;
360 
361 	return xfer;
362 }
363 
364 /**
365  * ti_sci_put_one_xfer() - Release a message
366  * @minfo:	transfer info pointer
367  * @xfer:	message that was reserved by ti_sci_get_one_xfer
368  *
369  * This holds a spinlock to maintain integrity of internal data structures.
370  */
371 static void ti_sci_put_one_xfer(struct ti_sci_xfers_info *minfo,
372 				struct ti_sci_xfer *xfer)
373 {
374 	unsigned long flags;
375 	struct ti_sci_msg_hdr *hdr;
376 	u8 xfer_id;
377 
378 	hdr = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
379 	xfer_id = hdr->seq;
380 
381 	/*
382 	 * Keep the locked section as small as possible
383 	 * NOTE: we might escape with smp_mb and no lock here..
384 	 * but just be conservative and symmetric.
385 	 */
386 	spin_lock_irqsave(&minfo->xfer_lock, flags);
387 	clear_bit(xfer_id, minfo->xfer_alloc_table);
388 	spin_unlock_irqrestore(&minfo->xfer_lock, flags);
389 
390 	/* Increment the count for the next user to get through */
391 	up(&minfo->sem_xfer_count);
392 }
393 
394 /**
395  * ti_sci_do_xfer() - Do one transfer
396  * @info:	Pointer to SCI entity information
397  * @xfer:	Transfer to initiate and wait for response
398  *
399  * Return: -ETIMEDOUT in case of no response, if transmit error,
400  *	   return corresponding error, else if all goes well,
401  *	   return 0.
402  */
403 static inline int ti_sci_do_xfer(struct ti_sci_info *info,
404 				 struct ti_sci_xfer *xfer)
405 {
406 	int ret;
407 	int timeout;
408 	struct device *dev = info->dev;
409 
410 	ret = mbox_send_message(info->chan_tx, &xfer->tx_message);
411 	if (ret < 0)
412 		return ret;
413 
414 	ret = 0;
415 
416 	/* And we wait for the response. */
417 	timeout = msecs_to_jiffies(info->desc->max_rx_timeout_ms);
418 	if (!wait_for_completion_timeout(&xfer->done, timeout)) {
419 		dev_err(dev, "Mbox timedout in resp(caller: %pS)\n",
420 			(void *)_RET_IP_);
421 		ret = -ETIMEDOUT;
422 	}
423 	/*
424 	 * NOTE: we might prefer not to need the mailbox ticker to manage the
425 	 * transfer queueing since the protocol layer queues things by itself.
426 	 * Unfortunately, we have to kick the mailbox framework after we have
427 	 * received our message.
428 	 */
429 	mbox_client_txdone(info->chan_tx, ret);
430 
431 	return ret;
432 }
433 
434 /**
435  * ti_sci_cmd_get_revision() - command to get the revision of the SCI entity
436  * @info:	Pointer to SCI entity information
437  *
438  * Updates the SCI information in the internal data structure.
439  *
440  * Return: 0 if all went fine, else return appropriate error.
441  */
442 static int ti_sci_cmd_get_revision(struct ti_sci_info *info)
443 {
444 	struct device *dev = info->dev;
445 	struct ti_sci_handle *handle = &info->handle;
446 	struct ti_sci_version_info *ver = &handle->version;
447 	struct ti_sci_msg_resp_version *rev_info;
448 	struct ti_sci_xfer *xfer;
449 	int ret;
450 
451 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_VERSION,
452 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
453 				   sizeof(struct ti_sci_msg_hdr),
454 				   sizeof(*rev_info));
455 	if (IS_ERR(xfer)) {
456 		ret = PTR_ERR(xfer);
457 		dev_err(dev, "Message alloc failed(%d)\n", ret);
458 		return ret;
459 	}
460 
461 	rev_info = (struct ti_sci_msg_resp_version *)xfer->xfer_buf;
462 
463 	ret = ti_sci_do_xfer(info, xfer);
464 	if (ret) {
465 		dev_err(dev, "Mbox send fail %d\n", ret);
466 		goto fail;
467 	}
468 
469 	ver->abi_major = rev_info->abi_major;
470 	ver->abi_minor = rev_info->abi_minor;
471 	ver->firmware_revision = rev_info->firmware_revision;
472 	strncpy(ver->firmware_description, rev_info->firmware_description,
473 		sizeof(ver->firmware_description));
474 
475 fail:
476 	ti_sci_put_one_xfer(&info->minfo, xfer);
477 	return ret;
478 }
479 
480 /**
481  * ti_sci_is_response_ack() - Generic ACK/NACK message checkup
482  * @r:	pointer to response buffer
483  *
484  * Return: true if the response was an ACK, else returns false.
485  */
486 static inline bool ti_sci_is_response_ack(void *r)
487 {
488 	struct ti_sci_msg_hdr *hdr = r;
489 
490 	return hdr->flags & TI_SCI_FLAG_RESP_GENERIC_ACK ? true : false;
491 }
492 
493 /**
494  * ti_sci_set_device_state() - Set device state helper
495  * @handle:	pointer to TI SCI handle
496  * @id:		Device identifier
497  * @flags:	flags to setup for the device
498  * @state:	State to move the device to
499  *
500  * Return: 0 if all went well, else returns appropriate error value.
501  */
502 static int ti_sci_set_device_state(const struct ti_sci_handle *handle,
503 				   u32 id, u32 flags, u8 state)
504 {
505 	struct ti_sci_info *info;
506 	struct ti_sci_msg_req_set_device_state *req;
507 	struct ti_sci_msg_hdr *resp;
508 	struct ti_sci_xfer *xfer;
509 	struct device *dev;
510 	int ret = 0;
511 
512 	if (IS_ERR(handle))
513 		return PTR_ERR(handle);
514 	if (!handle)
515 		return -EINVAL;
516 
517 	info = handle_to_ti_sci_info(handle);
518 	dev = info->dev;
519 
520 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_DEVICE_STATE,
521 				   flags | TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
522 				   sizeof(*req), sizeof(*resp));
523 	if (IS_ERR(xfer)) {
524 		ret = PTR_ERR(xfer);
525 		dev_err(dev, "Message alloc failed(%d)\n", ret);
526 		return ret;
527 	}
528 	req = (struct ti_sci_msg_req_set_device_state *)xfer->xfer_buf;
529 	req->id = id;
530 	req->state = state;
531 
532 	ret = ti_sci_do_xfer(info, xfer);
533 	if (ret) {
534 		dev_err(dev, "Mbox send fail %d\n", ret);
535 		goto fail;
536 	}
537 
538 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
539 
540 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
541 
542 fail:
543 	ti_sci_put_one_xfer(&info->minfo, xfer);
544 
545 	return ret;
546 }
547 
548 /**
549  * ti_sci_get_device_state() - Get device state helper
550  * @handle:	Handle to the device
551  * @id:		Device Identifier
552  * @clcnt:	Pointer to Context Loss Count
553  * @resets:	pointer to resets
554  * @p_state:	pointer to p_state
555  * @c_state:	pointer to c_state
556  *
557  * Return: 0 if all went fine, else return appropriate error.
558  */
559 static int ti_sci_get_device_state(const struct ti_sci_handle *handle,
560 				   u32 id,  u32 *clcnt,  u32 *resets,
561 				    u8 *p_state,  u8 *c_state)
562 {
563 	struct ti_sci_info *info;
564 	struct ti_sci_msg_req_get_device_state *req;
565 	struct ti_sci_msg_resp_get_device_state *resp;
566 	struct ti_sci_xfer *xfer;
567 	struct device *dev;
568 	int ret = 0;
569 
570 	if (IS_ERR(handle))
571 		return PTR_ERR(handle);
572 	if (!handle)
573 		return -EINVAL;
574 
575 	if (!clcnt && !resets && !p_state && !c_state)
576 		return -EINVAL;
577 
578 	info = handle_to_ti_sci_info(handle);
579 	dev = info->dev;
580 
581 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_DEVICE_STATE,
582 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
583 				   sizeof(*req), sizeof(*resp));
584 	if (IS_ERR(xfer)) {
585 		ret = PTR_ERR(xfer);
586 		dev_err(dev, "Message alloc failed(%d)\n", ret);
587 		return ret;
588 	}
589 	req = (struct ti_sci_msg_req_get_device_state *)xfer->xfer_buf;
590 	req->id = id;
591 
592 	ret = ti_sci_do_xfer(info, xfer);
593 	if (ret) {
594 		dev_err(dev, "Mbox send fail %d\n", ret);
595 		goto fail;
596 	}
597 
598 	resp = (struct ti_sci_msg_resp_get_device_state *)xfer->xfer_buf;
599 	if (!ti_sci_is_response_ack(resp)) {
600 		ret = -ENODEV;
601 		goto fail;
602 	}
603 
604 	if (clcnt)
605 		*clcnt = resp->context_loss_count;
606 	if (resets)
607 		*resets = resp->resets;
608 	if (p_state)
609 		*p_state = resp->programmed_state;
610 	if (c_state)
611 		*c_state = resp->current_state;
612 fail:
613 	ti_sci_put_one_xfer(&info->minfo, xfer);
614 
615 	return ret;
616 }
617 
618 /**
619  * ti_sci_cmd_get_device() - command to request for device managed by TISCI
620  *			     that can be shared with other hosts.
621  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
622  * @id:		Device Identifier
623  *
624  * Request for the device - NOTE: the client MUST maintain integrity of
625  * usage count by balancing get_device with put_device. No refcounting is
626  * managed by driver for that purpose.
627  *
628  * Return: 0 if all went fine, else return appropriate error.
629  */
630 static int ti_sci_cmd_get_device(const struct ti_sci_handle *handle, u32 id)
631 {
632 	return ti_sci_set_device_state(handle, id, 0,
633 				       MSG_DEVICE_SW_STATE_ON);
634 }
635 
636 /**
637  * ti_sci_cmd_get_device_exclusive() - command to request for device managed by
638  *				       TISCI that is exclusively owned by the
639  *				       requesting host.
640  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
641  * @id:		Device Identifier
642  *
643  * Request for the device - NOTE: the client MUST maintain integrity of
644  * usage count by balancing get_device with put_device. No refcounting is
645  * managed by driver for that purpose.
646  *
647  * Return: 0 if all went fine, else return appropriate error.
648  */
649 static int ti_sci_cmd_get_device_exclusive(const struct ti_sci_handle *handle,
650 					   u32 id)
651 {
652 	return ti_sci_set_device_state(handle, id,
653 				       MSG_FLAG_DEVICE_EXCLUSIVE,
654 				       MSG_DEVICE_SW_STATE_ON);
655 }
656 
657 /**
658  * ti_sci_cmd_idle_device() - Command to idle a device managed by TISCI
659  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
660  * @id:		Device Identifier
661  *
662  * Request for the device - NOTE: the client MUST maintain integrity of
663  * usage count by balancing get_device with put_device. No refcounting is
664  * managed by driver for that purpose.
665  *
666  * Return: 0 if all went fine, else return appropriate error.
667  */
668 static int ti_sci_cmd_idle_device(const struct ti_sci_handle *handle, u32 id)
669 {
670 	return ti_sci_set_device_state(handle, id, 0,
671 				       MSG_DEVICE_SW_STATE_RETENTION);
672 }
673 
674 /**
675  * ti_sci_cmd_idle_device_exclusive() - Command to idle a device managed by
676  *					TISCI that is exclusively owned by
677  *					requesting host.
678  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
679  * @id:		Device Identifier
680  *
681  * Request for the device - NOTE: the client MUST maintain integrity of
682  * usage count by balancing get_device with put_device. No refcounting is
683  * managed by driver for that purpose.
684  *
685  * Return: 0 if all went fine, else return appropriate error.
686  */
687 static int ti_sci_cmd_idle_device_exclusive(const struct ti_sci_handle *handle,
688 					    u32 id)
689 {
690 	return ti_sci_set_device_state(handle, id,
691 				       MSG_FLAG_DEVICE_EXCLUSIVE,
692 				       MSG_DEVICE_SW_STATE_RETENTION);
693 }
694 
695 /**
696  * ti_sci_cmd_put_device() - command to release a device managed by TISCI
697  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
698  * @id:		Device Identifier
699  *
700  * Request for the device - NOTE: the client MUST maintain integrity of
701  * usage count by balancing get_device with put_device. No refcounting is
702  * managed by driver for that purpose.
703  *
704  * Return: 0 if all went fine, else return appropriate error.
705  */
706 static int ti_sci_cmd_put_device(const struct ti_sci_handle *handle, u32 id)
707 {
708 	return ti_sci_set_device_state(handle, id,
709 				       0, MSG_DEVICE_SW_STATE_AUTO_OFF);
710 }
711 
712 /**
713  * ti_sci_cmd_dev_is_valid() - Is the device valid
714  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
715  * @id:		Device Identifier
716  *
717  * Return: 0 if all went fine and the device ID is valid, else return
718  * appropriate error.
719  */
720 static int ti_sci_cmd_dev_is_valid(const struct ti_sci_handle *handle, u32 id)
721 {
722 	u8 unused;
723 
724 	/* check the device state which will also tell us if the ID is valid */
725 	return ti_sci_get_device_state(handle, id, NULL, NULL, NULL, &unused);
726 }
727 
728 /**
729  * ti_sci_cmd_dev_get_clcnt() - Get context loss counter
730  * @handle:	Pointer to TISCI handle
731  * @id:		Device Identifier
732  * @count:	Pointer to Context Loss counter to populate
733  *
734  * Return: 0 if all went fine, else return appropriate error.
735  */
736 static int ti_sci_cmd_dev_get_clcnt(const struct ti_sci_handle *handle, u32 id,
737 				    u32 *count)
738 {
739 	return ti_sci_get_device_state(handle, id, count, NULL, NULL, NULL);
740 }
741 
742 /**
743  * ti_sci_cmd_dev_is_idle() - Check if the device is requested to be idle
744  * @handle:	Pointer to TISCI handle
745  * @id:		Device Identifier
746  * @r_state:	true if requested to be idle
747  *
748  * Return: 0 if all went fine, else return appropriate error.
749  */
750 static int ti_sci_cmd_dev_is_idle(const struct ti_sci_handle *handle, u32 id,
751 				  bool *r_state)
752 {
753 	int ret;
754 	u8 state;
755 
756 	if (!r_state)
757 		return -EINVAL;
758 
759 	ret = ti_sci_get_device_state(handle, id, NULL, NULL, &state, NULL);
760 	if (ret)
761 		return ret;
762 
763 	*r_state = (state == MSG_DEVICE_SW_STATE_RETENTION);
764 
765 	return 0;
766 }
767 
768 /**
769  * ti_sci_cmd_dev_is_stop() - Check if the device is requested to be stopped
770  * @handle:	Pointer to TISCI handle
771  * @id:		Device Identifier
772  * @r_state:	true if requested to be stopped
773  * @curr_state:	true if currently stopped.
774  *
775  * Return: 0 if all went fine, else return appropriate error.
776  */
777 static int ti_sci_cmd_dev_is_stop(const struct ti_sci_handle *handle, u32 id,
778 				  bool *r_state,  bool *curr_state)
779 {
780 	int ret;
781 	u8 p_state, c_state;
782 
783 	if (!r_state && !curr_state)
784 		return -EINVAL;
785 
786 	ret =
787 	    ti_sci_get_device_state(handle, id, NULL, NULL, &p_state, &c_state);
788 	if (ret)
789 		return ret;
790 
791 	if (r_state)
792 		*r_state = (p_state == MSG_DEVICE_SW_STATE_AUTO_OFF);
793 	if (curr_state)
794 		*curr_state = (c_state == MSG_DEVICE_HW_STATE_OFF);
795 
796 	return 0;
797 }
798 
799 /**
800  * ti_sci_cmd_dev_is_on() - Check if the device is requested to be ON
801  * @handle:	Pointer to TISCI handle
802  * @id:		Device Identifier
803  * @r_state:	true if requested to be ON
804  * @curr_state:	true if currently ON and active
805  *
806  * Return: 0 if all went fine, else return appropriate error.
807  */
808 static int ti_sci_cmd_dev_is_on(const struct ti_sci_handle *handle, u32 id,
809 				bool *r_state,  bool *curr_state)
810 {
811 	int ret;
812 	u8 p_state, c_state;
813 
814 	if (!r_state && !curr_state)
815 		return -EINVAL;
816 
817 	ret =
818 	    ti_sci_get_device_state(handle, id, NULL, NULL, &p_state, &c_state);
819 	if (ret)
820 		return ret;
821 
822 	if (r_state)
823 		*r_state = (p_state == MSG_DEVICE_SW_STATE_ON);
824 	if (curr_state)
825 		*curr_state = (c_state == MSG_DEVICE_HW_STATE_ON);
826 
827 	return 0;
828 }
829 
830 /**
831  * ti_sci_cmd_dev_is_trans() - Check if the device is currently transitioning
832  * @handle:	Pointer to TISCI handle
833  * @id:		Device Identifier
834  * @curr_state:	true if currently transitioning.
835  *
836  * Return: 0 if all went fine, else return appropriate error.
837  */
838 static int ti_sci_cmd_dev_is_trans(const struct ti_sci_handle *handle, u32 id,
839 				   bool *curr_state)
840 {
841 	int ret;
842 	u8 state;
843 
844 	if (!curr_state)
845 		return -EINVAL;
846 
847 	ret = ti_sci_get_device_state(handle, id, NULL, NULL, NULL, &state);
848 	if (ret)
849 		return ret;
850 
851 	*curr_state = (state == MSG_DEVICE_HW_STATE_TRANS);
852 
853 	return 0;
854 }
855 
856 /**
857  * ti_sci_cmd_set_device_resets() - command to set resets for device managed
858  *				    by TISCI
859  * @handle:	Pointer to TISCI handle as retrieved by *ti_sci_get_handle
860  * @id:		Device Identifier
861  * @reset_state: Device specific reset bit field
862  *
863  * Return: 0 if all went fine, else return appropriate error.
864  */
865 static int ti_sci_cmd_set_device_resets(const struct ti_sci_handle *handle,
866 					u32 id, u32 reset_state)
867 {
868 	struct ti_sci_info *info;
869 	struct ti_sci_msg_req_set_device_resets *req;
870 	struct ti_sci_msg_hdr *resp;
871 	struct ti_sci_xfer *xfer;
872 	struct device *dev;
873 	int ret = 0;
874 
875 	if (IS_ERR(handle))
876 		return PTR_ERR(handle);
877 	if (!handle)
878 		return -EINVAL;
879 
880 	info = handle_to_ti_sci_info(handle);
881 	dev = info->dev;
882 
883 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_DEVICE_RESETS,
884 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
885 				   sizeof(*req), sizeof(*resp));
886 	if (IS_ERR(xfer)) {
887 		ret = PTR_ERR(xfer);
888 		dev_err(dev, "Message alloc failed(%d)\n", ret);
889 		return ret;
890 	}
891 	req = (struct ti_sci_msg_req_set_device_resets *)xfer->xfer_buf;
892 	req->id = id;
893 	req->resets = reset_state;
894 
895 	ret = ti_sci_do_xfer(info, xfer);
896 	if (ret) {
897 		dev_err(dev, "Mbox send fail %d\n", ret);
898 		goto fail;
899 	}
900 
901 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
902 
903 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
904 
905 fail:
906 	ti_sci_put_one_xfer(&info->minfo, xfer);
907 
908 	return ret;
909 }
910 
911 /**
912  * ti_sci_cmd_get_device_resets() - Get reset state for device managed
913  *				    by TISCI
914  * @handle:		Pointer to TISCI handle
915  * @id:			Device Identifier
916  * @reset_state:	Pointer to reset state to populate
917  *
918  * Return: 0 if all went fine, else return appropriate error.
919  */
920 static int ti_sci_cmd_get_device_resets(const struct ti_sci_handle *handle,
921 					u32 id, u32 *reset_state)
922 {
923 	return ti_sci_get_device_state(handle, id, NULL, reset_state, NULL,
924 				       NULL);
925 }
926 
927 /**
928  * ti_sci_set_clock_state() - Set clock state helper
929  * @handle:	pointer to TI SCI handle
930  * @dev_id:	Device identifier this request is for
931  * @clk_id:	Clock identifier for the device for this request.
932  *		Each device has it's own set of clock inputs. This indexes
933  *		which clock input to modify.
934  * @flags:	Header flags as needed
935  * @state:	State to request for the clock.
936  *
937  * Return: 0 if all went well, else returns appropriate error value.
938  */
939 static int ti_sci_set_clock_state(const struct ti_sci_handle *handle,
940 				  u32 dev_id, u32 clk_id,
941 				  u32 flags, u8 state)
942 {
943 	struct ti_sci_info *info;
944 	struct ti_sci_msg_req_set_clock_state *req;
945 	struct ti_sci_msg_hdr *resp;
946 	struct ti_sci_xfer *xfer;
947 	struct device *dev;
948 	int ret = 0;
949 
950 	if (IS_ERR(handle))
951 		return PTR_ERR(handle);
952 	if (!handle)
953 		return -EINVAL;
954 
955 	info = handle_to_ti_sci_info(handle);
956 	dev = info->dev;
957 
958 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_CLOCK_STATE,
959 				   flags | TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
960 				   sizeof(*req), sizeof(*resp));
961 	if (IS_ERR(xfer)) {
962 		ret = PTR_ERR(xfer);
963 		dev_err(dev, "Message alloc failed(%d)\n", ret);
964 		return ret;
965 	}
966 	req = (struct ti_sci_msg_req_set_clock_state *)xfer->xfer_buf;
967 	req->dev_id = dev_id;
968 	if (clk_id < 255) {
969 		req->clk_id = clk_id;
970 	} else {
971 		req->clk_id = 255;
972 		req->clk_id_32 = clk_id;
973 	}
974 	req->request_state = state;
975 
976 	ret = ti_sci_do_xfer(info, xfer);
977 	if (ret) {
978 		dev_err(dev, "Mbox send fail %d\n", ret);
979 		goto fail;
980 	}
981 
982 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
983 
984 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
985 
986 fail:
987 	ti_sci_put_one_xfer(&info->minfo, xfer);
988 
989 	return ret;
990 }
991 
992 /**
993  * ti_sci_cmd_get_clock_state() - Get clock state helper
994  * @handle:	pointer to TI SCI handle
995  * @dev_id:	Device identifier this request is for
996  * @clk_id:	Clock identifier for the device for this request.
997  *		Each device has it's own set of clock inputs. This indexes
998  *		which clock input to modify.
999  * @programmed_state:	State requested for clock to move to
1000  * @current_state:	State that the clock is currently in
1001  *
1002  * Return: 0 if all went well, else returns appropriate error value.
1003  */
1004 static int ti_sci_cmd_get_clock_state(const struct ti_sci_handle *handle,
1005 				      u32 dev_id, u32 clk_id,
1006 				      u8 *programmed_state, u8 *current_state)
1007 {
1008 	struct ti_sci_info *info;
1009 	struct ti_sci_msg_req_get_clock_state *req;
1010 	struct ti_sci_msg_resp_get_clock_state *resp;
1011 	struct ti_sci_xfer *xfer;
1012 	struct device *dev;
1013 	int ret = 0;
1014 
1015 	if (IS_ERR(handle))
1016 		return PTR_ERR(handle);
1017 	if (!handle)
1018 		return -EINVAL;
1019 
1020 	if (!programmed_state && !current_state)
1021 		return -EINVAL;
1022 
1023 	info = handle_to_ti_sci_info(handle);
1024 	dev = info->dev;
1025 
1026 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_CLOCK_STATE,
1027 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1028 				   sizeof(*req), sizeof(*resp));
1029 	if (IS_ERR(xfer)) {
1030 		ret = PTR_ERR(xfer);
1031 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1032 		return ret;
1033 	}
1034 	req = (struct ti_sci_msg_req_get_clock_state *)xfer->xfer_buf;
1035 	req->dev_id = dev_id;
1036 	if (clk_id < 255) {
1037 		req->clk_id = clk_id;
1038 	} else {
1039 		req->clk_id = 255;
1040 		req->clk_id_32 = clk_id;
1041 	}
1042 
1043 	ret = ti_sci_do_xfer(info, xfer);
1044 	if (ret) {
1045 		dev_err(dev, "Mbox send fail %d\n", ret);
1046 		goto fail;
1047 	}
1048 
1049 	resp = (struct ti_sci_msg_resp_get_clock_state *)xfer->xfer_buf;
1050 
1051 	if (!ti_sci_is_response_ack(resp)) {
1052 		ret = -ENODEV;
1053 		goto fail;
1054 	}
1055 
1056 	if (programmed_state)
1057 		*programmed_state = resp->programmed_state;
1058 	if (current_state)
1059 		*current_state = resp->current_state;
1060 
1061 fail:
1062 	ti_sci_put_one_xfer(&info->minfo, xfer);
1063 
1064 	return ret;
1065 }
1066 
1067 /**
1068  * ti_sci_cmd_get_clock() - Get control of a clock from TI SCI
1069  * @handle:	pointer to TI SCI handle
1070  * @dev_id:	Device identifier this request is for
1071  * @clk_id:	Clock identifier for the device for this request.
1072  *		Each device has it's own set of clock inputs. This indexes
1073  *		which clock input to modify.
1074  * @needs_ssc: 'true' if Spread Spectrum clock is desired, else 'false'
1075  * @can_change_freq: 'true' if frequency change is desired, else 'false'
1076  * @enable_input_term: 'true' if input termination is desired, else 'false'
1077  *
1078  * Return: 0 if all went well, else returns appropriate error value.
1079  */
1080 static int ti_sci_cmd_get_clock(const struct ti_sci_handle *handle, u32 dev_id,
1081 				u32 clk_id, bool needs_ssc,
1082 				bool can_change_freq, bool enable_input_term)
1083 {
1084 	u32 flags = 0;
1085 
1086 	flags |= needs_ssc ? MSG_FLAG_CLOCK_ALLOW_SSC : 0;
1087 	flags |= can_change_freq ? MSG_FLAG_CLOCK_ALLOW_FREQ_CHANGE : 0;
1088 	flags |= enable_input_term ? MSG_FLAG_CLOCK_INPUT_TERM : 0;
1089 
1090 	return ti_sci_set_clock_state(handle, dev_id, clk_id, flags,
1091 				      MSG_CLOCK_SW_STATE_REQ);
1092 }
1093 
1094 /**
1095  * ti_sci_cmd_idle_clock() - Idle a clock which is in our control
1096  * @handle:	pointer to TI SCI handle
1097  * @dev_id:	Device identifier this request is for
1098  * @clk_id:	Clock identifier for the device for this request.
1099  *		Each device has it's own set of clock inputs. This indexes
1100  *		which clock input to modify.
1101  *
1102  * NOTE: This clock must have been requested by get_clock previously.
1103  *
1104  * Return: 0 if all went well, else returns appropriate error value.
1105  */
1106 static int ti_sci_cmd_idle_clock(const struct ti_sci_handle *handle,
1107 				 u32 dev_id, u32 clk_id)
1108 {
1109 	return ti_sci_set_clock_state(handle, dev_id, clk_id, 0,
1110 				      MSG_CLOCK_SW_STATE_UNREQ);
1111 }
1112 
1113 /**
1114  * ti_sci_cmd_put_clock() - Release a clock from our control back to TISCI
1115  * @handle:	pointer to TI SCI handle
1116  * @dev_id:	Device identifier this request is for
1117  * @clk_id:	Clock identifier for the device for this request.
1118  *		Each device has it's own set of clock inputs. This indexes
1119  *		which clock input to modify.
1120  *
1121  * NOTE: This clock must have been requested by get_clock previously.
1122  *
1123  * Return: 0 if all went well, else returns appropriate error value.
1124  */
1125 static int ti_sci_cmd_put_clock(const struct ti_sci_handle *handle,
1126 				u32 dev_id, u32 clk_id)
1127 {
1128 	return ti_sci_set_clock_state(handle, dev_id, clk_id, 0,
1129 				      MSG_CLOCK_SW_STATE_AUTO);
1130 }
1131 
1132 /**
1133  * ti_sci_cmd_clk_is_auto() - Is the clock being auto managed
1134  * @handle:	pointer to TI SCI handle
1135  * @dev_id:	Device identifier this request is for
1136  * @clk_id:	Clock identifier for the device for this request.
1137  *		Each device has it's own set of clock inputs. This indexes
1138  *		which clock input to modify.
1139  * @req_state: state indicating if the clock is auto managed
1140  *
1141  * Return: 0 if all went well, else returns appropriate error value.
1142  */
1143 static int ti_sci_cmd_clk_is_auto(const struct ti_sci_handle *handle,
1144 				  u32 dev_id, u32 clk_id, bool *req_state)
1145 {
1146 	u8 state = 0;
1147 	int ret;
1148 
1149 	if (!req_state)
1150 		return -EINVAL;
1151 
1152 	ret = ti_sci_cmd_get_clock_state(handle, dev_id, clk_id, &state, NULL);
1153 	if (ret)
1154 		return ret;
1155 
1156 	*req_state = (state == MSG_CLOCK_SW_STATE_AUTO);
1157 	return 0;
1158 }
1159 
1160 /**
1161  * ti_sci_cmd_clk_is_on() - Is the clock ON
1162  * @handle:	pointer to TI SCI handle
1163  * @dev_id:	Device identifier this request is for
1164  * @clk_id:	Clock identifier for the device for this request.
1165  *		Each device has it's own set of clock inputs. This indexes
1166  *		which clock input to modify.
1167  * @req_state: state indicating if the clock is managed by us and enabled
1168  * @curr_state: state indicating if the clock is ready for operation
1169  *
1170  * Return: 0 if all went well, else returns appropriate error value.
1171  */
1172 static int ti_sci_cmd_clk_is_on(const struct ti_sci_handle *handle, u32 dev_id,
1173 				u32 clk_id, bool *req_state, bool *curr_state)
1174 {
1175 	u8 c_state = 0, r_state = 0;
1176 	int ret;
1177 
1178 	if (!req_state && !curr_state)
1179 		return -EINVAL;
1180 
1181 	ret = ti_sci_cmd_get_clock_state(handle, dev_id, clk_id,
1182 					 &r_state, &c_state);
1183 	if (ret)
1184 		return ret;
1185 
1186 	if (req_state)
1187 		*req_state = (r_state == MSG_CLOCK_SW_STATE_REQ);
1188 	if (curr_state)
1189 		*curr_state = (c_state == MSG_CLOCK_HW_STATE_READY);
1190 	return 0;
1191 }
1192 
1193 /**
1194  * ti_sci_cmd_clk_is_off() - Is the clock OFF
1195  * @handle:	pointer to TI SCI handle
1196  * @dev_id:	Device identifier this request is for
1197  * @clk_id:	Clock identifier for the device for this request.
1198  *		Each device has it's own set of clock inputs. This indexes
1199  *		which clock input to modify.
1200  * @req_state: state indicating if the clock is managed by us and disabled
1201  * @curr_state: state indicating if the clock is NOT ready for operation
1202  *
1203  * Return: 0 if all went well, else returns appropriate error value.
1204  */
1205 static int ti_sci_cmd_clk_is_off(const struct ti_sci_handle *handle, u32 dev_id,
1206 				 u32 clk_id, bool *req_state, bool *curr_state)
1207 {
1208 	u8 c_state = 0, r_state = 0;
1209 	int ret;
1210 
1211 	if (!req_state && !curr_state)
1212 		return -EINVAL;
1213 
1214 	ret = ti_sci_cmd_get_clock_state(handle, dev_id, clk_id,
1215 					 &r_state, &c_state);
1216 	if (ret)
1217 		return ret;
1218 
1219 	if (req_state)
1220 		*req_state = (r_state == MSG_CLOCK_SW_STATE_UNREQ);
1221 	if (curr_state)
1222 		*curr_state = (c_state == MSG_CLOCK_HW_STATE_NOT_READY);
1223 	return 0;
1224 }
1225 
1226 /**
1227  * ti_sci_cmd_clk_set_parent() - Set the clock source of a specific device clock
1228  * @handle:	pointer to TI SCI handle
1229  * @dev_id:	Device identifier this request is for
1230  * @clk_id:	Clock identifier for the device for this request.
1231  *		Each device has it's own set of clock inputs. This indexes
1232  *		which clock input to modify.
1233  * @parent_id:	Parent clock identifier to set
1234  *
1235  * Return: 0 if all went well, else returns appropriate error value.
1236  */
1237 static int ti_sci_cmd_clk_set_parent(const struct ti_sci_handle *handle,
1238 				     u32 dev_id, u32 clk_id, u32 parent_id)
1239 {
1240 	struct ti_sci_info *info;
1241 	struct ti_sci_msg_req_set_clock_parent *req;
1242 	struct ti_sci_msg_hdr *resp;
1243 	struct ti_sci_xfer *xfer;
1244 	struct device *dev;
1245 	int ret = 0;
1246 
1247 	if (IS_ERR(handle))
1248 		return PTR_ERR(handle);
1249 	if (!handle)
1250 		return -EINVAL;
1251 
1252 	info = handle_to_ti_sci_info(handle);
1253 	dev = info->dev;
1254 
1255 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_CLOCK_PARENT,
1256 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1257 				   sizeof(*req), sizeof(*resp));
1258 	if (IS_ERR(xfer)) {
1259 		ret = PTR_ERR(xfer);
1260 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1261 		return ret;
1262 	}
1263 	req = (struct ti_sci_msg_req_set_clock_parent *)xfer->xfer_buf;
1264 	req->dev_id = dev_id;
1265 	if (clk_id < 255) {
1266 		req->clk_id = clk_id;
1267 	} else {
1268 		req->clk_id = 255;
1269 		req->clk_id_32 = clk_id;
1270 	}
1271 	if (parent_id < 255) {
1272 		req->parent_id = parent_id;
1273 	} else {
1274 		req->parent_id = 255;
1275 		req->parent_id_32 = parent_id;
1276 	}
1277 
1278 	ret = ti_sci_do_xfer(info, xfer);
1279 	if (ret) {
1280 		dev_err(dev, "Mbox send fail %d\n", ret);
1281 		goto fail;
1282 	}
1283 
1284 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
1285 
1286 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
1287 
1288 fail:
1289 	ti_sci_put_one_xfer(&info->minfo, xfer);
1290 
1291 	return ret;
1292 }
1293 
1294 /**
1295  * ti_sci_cmd_clk_get_parent() - Get current parent clock source
1296  * @handle:	pointer to TI SCI handle
1297  * @dev_id:	Device identifier this request is for
1298  * @clk_id:	Clock identifier for the device for this request.
1299  *		Each device has it's own set of clock inputs. This indexes
1300  *		which clock input to modify.
1301  * @parent_id:	Current clock parent
1302  *
1303  * Return: 0 if all went well, else returns appropriate error value.
1304  */
1305 static int ti_sci_cmd_clk_get_parent(const struct ti_sci_handle *handle,
1306 				     u32 dev_id, u32 clk_id, u32 *parent_id)
1307 {
1308 	struct ti_sci_info *info;
1309 	struct ti_sci_msg_req_get_clock_parent *req;
1310 	struct ti_sci_msg_resp_get_clock_parent *resp;
1311 	struct ti_sci_xfer *xfer;
1312 	struct device *dev;
1313 	int ret = 0;
1314 
1315 	if (IS_ERR(handle))
1316 		return PTR_ERR(handle);
1317 	if (!handle || !parent_id)
1318 		return -EINVAL;
1319 
1320 	info = handle_to_ti_sci_info(handle);
1321 	dev = info->dev;
1322 
1323 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_CLOCK_PARENT,
1324 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1325 				   sizeof(*req), sizeof(*resp));
1326 	if (IS_ERR(xfer)) {
1327 		ret = PTR_ERR(xfer);
1328 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1329 		return ret;
1330 	}
1331 	req = (struct ti_sci_msg_req_get_clock_parent *)xfer->xfer_buf;
1332 	req->dev_id = dev_id;
1333 	if (clk_id < 255) {
1334 		req->clk_id = clk_id;
1335 	} else {
1336 		req->clk_id = 255;
1337 		req->clk_id_32 = clk_id;
1338 	}
1339 
1340 	ret = ti_sci_do_xfer(info, xfer);
1341 	if (ret) {
1342 		dev_err(dev, "Mbox send fail %d\n", ret);
1343 		goto fail;
1344 	}
1345 
1346 	resp = (struct ti_sci_msg_resp_get_clock_parent *)xfer->xfer_buf;
1347 
1348 	if (!ti_sci_is_response_ack(resp)) {
1349 		ret = -ENODEV;
1350 	} else {
1351 		if (resp->parent_id < 255)
1352 			*parent_id = resp->parent_id;
1353 		else
1354 			*parent_id = resp->parent_id_32;
1355 	}
1356 
1357 fail:
1358 	ti_sci_put_one_xfer(&info->minfo, xfer);
1359 
1360 	return ret;
1361 }
1362 
1363 /**
1364  * ti_sci_cmd_clk_get_num_parents() - Get num parents of the current clk source
1365  * @handle:	pointer to TI SCI handle
1366  * @dev_id:	Device identifier this request is for
1367  * @clk_id:	Clock identifier for the device for this request.
1368  *		Each device has it's own set of clock inputs. This indexes
1369  *		which clock input to modify.
1370  * @num_parents: Returns he number of parents to the current clock.
1371  *
1372  * Return: 0 if all went well, else returns appropriate error value.
1373  */
1374 static int ti_sci_cmd_clk_get_num_parents(const struct ti_sci_handle *handle,
1375 					  u32 dev_id, u32 clk_id,
1376 					  u32 *num_parents)
1377 {
1378 	struct ti_sci_info *info;
1379 	struct ti_sci_msg_req_get_clock_num_parents *req;
1380 	struct ti_sci_msg_resp_get_clock_num_parents *resp;
1381 	struct ti_sci_xfer *xfer;
1382 	struct device *dev;
1383 	int ret = 0;
1384 
1385 	if (IS_ERR(handle))
1386 		return PTR_ERR(handle);
1387 	if (!handle || !num_parents)
1388 		return -EINVAL;
1389 
1390 	info = handle_to_ti_sci_info(handle);
1391 	dev = info->dev;
1392 
1393 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_NUM_CLOCK_PARENTS,
1394 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1395 				   sizeof(*req), sizeof(*resp));
1396 	if (IS_ERR(xfer)) {
1397 		ret = PTR_ERR(xfer);
1398 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1399 		return ret;
1400 	}
1401 	req = (struct ti_sci_msg_req_get_clock_num_parents *)xfer->xfer_buf;
1402 	req->dev_id = dev_id;
1403 	if (clk_id < 255) {
1404 		req->clk_id = clk_id;
1405 	} else {
1406 		req->clk_id = 255;
1407 		req->clk_id_32 = clk_id;
1408 	}
1409 
1410 	ret = ti_sci_do_xfer(info, xfer);
1411 	if (ret) {
1412 		dev_err(dev, "Mbox send fail %d\n", ret);
1413 		goto fail;
1414 	}
1415 
1416 	resp = (struct ti_sci_msg_resp_get_clock_num_parents *)xfer->xfer_buf;
1417 
1418 	if (!ti_sci_is_response_ack(resp)) {
1419 		ret = -ENODEV;
1420 	} else {
1421 		if (resp->num_parents < 255)
1422 			*num_parents = resp->num_parents;
1423 		else
1424 			*num_parents = resp->num_parents_32;
1425 	}
1426 
1427 fail:
1428 	ti_sci_put_one_xfer(&info->minfo, xfer);
1429 
1430 	return ret;
1431 }
1432 
1433 /**
1434  * ti_sci_cmd_clk_get_match_freq() - Find a good match for frequency
1435  * @handle:	pointer to TI SCI handle
1436  * @dev_id:	Device identifier this request is for
1437  * @clk_id:	Clock identifier for the device for this request.
1438  *		Each device has it's own set of clock inputs. This indexes
1439  *		which clock input to modify.
1440  * @min_freq:	The minimum allowable frequency in Hz. This is the minimum
1441  *		allowable programmed frequency and does not account for clock
1442  *		tolerances and jitter.
1443  * @target_freq: The target clock frequency in Hz. A frequency will be
1444  *		processed as close to this target frequency as possible.
1445  * @max_freq:	The maximum allowable frequency in Hz. This is the maximum
1446  *		allowable programmed frequency and does not account for clock
1447  *		tolerances and jitter.
1448  * @match_freq:	Frequency match in Hz response.
1449  *
1450  * Return: 0 if all went well, else returns appropriate error value.
1451  */
1452 static int ti_sci_cmd_clk_get_match_freq(const struct ti_sci_handle *handle,
1453 					 u32 dev_id, u32 clk_id, u64 min_freq,
1454 					 u64 target_freq, u64 max_freq,
1455 					 u64 *match_freq)
1456 {
1457 	struct ti_sci_info *info;
1458 	struct ti_sci_msg_req_query_clock_freq *req;
1459 	struct ti_sci_msg_resp_query_clock_freq *resp;
1460 	struct ti_sci_xfer *xfer;
1461 	struct device *dev;
1462 	int ret = 0;
1463 
1464 	if (IS_ERR(handle))
1465 		return PTR_ERR(handle);
1466 	if (!handle || !match_freq)
1467 		return -EINVAL;
1468 
1469 	info = handle_to_ti_sci_info(handle);
1470 	dev = info->dev;
1471 
1472 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_QUERY_CLOCK_FREQ,
1473 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1474 				   sizeof(*req), sizeof(*resp));
1475 	if (IS_ERR(xfer)) {
1476 		ret = PTR_ERR(xfer);
1477 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1478 		return ret;
1479 	}
1480 	req = (struct ti_sci_msg_req_query_clock_freq *)xfer->xfer_buf;
1481 	req->dev_id = dev_id;
1482 	if (clk_id < 255) {
1483 		req->clk_id = clk_id;
1484 	} else {
1485 		req->clk_id = 255;
1486 		req->clk_id_32 = clk_id;
1487 	}
1488 	req->min_freq_hz = min_freq;
1489 	req->target_freq_hz = target_freq;
1490 	req->max_freq_hz = max_freq;
1491 
1492 	ret = ti_sci_do_xfer(info, xfer);
1493 	if (ret) {
1494 		dev_err(dev, "Mbox send fail %d\n", ret);
1495 		goto fail;
1496 	}
1497 
1498 	resp = (struct ti_sci_msg_resp_query_clock_freq *)xfer->xfer_buf;
1499 
1500 	if (!ti_sci_is_response_ack(resp))
1501 		ret = -ENODEV;
1502 	else
1503 		*match_freq = resp->freq_hz;
1504 
1505 fail:
1506 	ti_sci_put_one_xfer(&info->minfo, xfer);
1507 
1508 	return ret;
1509 }
1510 
1511 /**
1512  * ti_sci_cmd_clk_set_freq() - Set a frequency for clock
1513  * @handle:	pointer to TI SCI handle
1514  * @dev_id:	Device identifier this request is for
1515  * @clk_id:	Clock identifier for the device for this request.
1516  *		Each device has it's own set of clock inputs. This indexes
1517  *		which clock input to modify.
1518  * @min_freq:	The minimum allowable frequency in Hz. This is the minimum
1519  *		allowable programmed frequency and does not account for clock
1520  *		tolerances and jitter.
1521  * @target_freq: The target clock frequency in Hz. A frequency will be
1522  *		processed as close to this target frequency as possible.
1523  * @max_freq:	The maximum allowable frequency in Hz. This is the maximum
1524  *		allowable programmed frequency and does not account for clock
1525  *		tolerances and jitter.
1526  *
1527  * Return: 0 if all went well, else returns appropriate error value.
1528  */
1529 static int ti_sci_cmd_clk_set_freq(const struct ti_sci_handle *handle,
1530 				   u32 dev_id, u32 clk_id, u64 min_freq,
1531 				   u64 target_freq, u64 max_freq)
1532 {
1533 	struct ti_sci_info *info;
1534 	struct ti_sci_msg_req_set_clock_freq *req;
1535 	struct ti_sci_msg_hdr *resp;
1536 	struct ti_sci_xfer *xfer;
1537 	struct device *dev;
1538 	int ret = 0;
1539 
1540 	if (IS_ERR(handle))
1541 		return PTR_ERR(handle);
1542 	if (!handle)
1543 		return -EINVAL;
1544 
1545 	info = handle_to_ti_sci_info(handle);
1546 	dev = info->dev;
1547 
1548 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_CLOCK_FREQ,
1549 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1550 				   sizeof(*req), sizeof(*resp));
1551 	if (IS_ERR(xfer)) {
1552 		ret = PTR_ERR(xfer);
1553 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1554 		return ret;
1555 	}
1556 	req = (struct ti_sci_msg_req_set_clock_freq *)xfer->xfer_buf;
1557 	req->dev_id = dev_id;
1558 	if (clk_id < 255) {
1559 		req->clk_id = clk_id;
1560 	} else {
1561 		req->clk_id = 255;
1562 		req->clk_id_32 = clk_id;
1563 	}
1564 	req->min_freq_hz = min_freq;
1565 	req->target_freq_hz = target_freq;
1566 	req->max_freq_hz = max_freq;
1567 
1568 	ret = ti_sci_do_xfer(info, xfer);
1569 	if (ret) {
1570 		dev_err(dev, "Mbox send fail %d\n", ret);
1571 		goto fail;
1572 	}
1573 
1574 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
1575 
1576 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
1577 
1578 fail:
1579 	ti_sci_put_one_xfer(&info->minfo, xfer);
1580 
1581 	return ret;
1582 }
1583 
1584 /**
1585  * ti_sci_cmd_clk_get_freq() - Get current frequency
1586  * @handle:	pointer to TI SCI handle
1587  * @dev_id:	Device identifier this request is for
1588  * @clk_id:	Clock identifier for the device for this request.
1589  *		Each device has it's own set of clock inputs. This indexes
1590  *		which clock input to modify.
1591  * @freq:	Currently frequency in Hz
1592  *
1593  * Return: 0 if all went well, else returns appropriate error value.
1594  */
1595 static int ti_sci_cmd_clk_get_freq(const struct ti_sci_handle *handle,
1596 				   u32 dev_id, u32 clk_id, u64 *freq)
1597 {
1598 	struct ti_sci_info *info;
1599 	struct ti_sci_msg_req_get_clock_freq *req;
1600 	struct ti_sci_msg_resp_get_clock_freq *resp;
1601 	struct ti_sci_xfer *xfer;
1602 	struct device *dev;
1603 	int ret = 0;
1604 
1605 	if (IS_ERR(handle))
1606 		return PTR_ERR(handle);
1607 	if (!handle || !freq)
1608 		return -EINVAL;
1609 
1610 	info = handle_to_ti_sci_info(handle);
1611 	dev = info->dev;
1612 
1613 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_CLOCK_FREQ,
1614 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1615 				   sizeof(*req), sizeof(*resp));
1616 	if (IS_ERR(xfer)) {
1617 		ret = PTR_ERR(xfer);
1618 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1619 		return ret;
1620 	}
1621 	req = (struct ti_sci_msg_req_get_clock_freq *)xfer->xfer_buf;
1622 	req->dev_id = dev_id;
1623 	if (clk_id < 255) {
1624 		req->clk_id = clk_id;
1625 	} else {
1626 		req->clk_id = 255;
1627 		req->clk_id_32 = clk_id;
1628 	}
1629 
1630 	ret = ti_sci_do_xfer(info, xfer);
1631 	if (ret) {
1632 		dev_err(dev, "Mbox send fail %d\n", ret);
1633 		goto fail;
1634 	}
1635 
1636 	resp = (struct ti_sci_msg_resp_get_clock_freq *)xfer->xfer_buf;
1637 
1638 	if (!ti_sci_is_response_ack(resp))
1639 		ret = -ENODEV;
1640 	else
1641 		*freq = resp->freq_hz;
1642 
1643 fail:
1644 	ti_sci_put_one_xfer(&info->minfo, xfer);
1645 
1646 	return ret;
1647 }
1648 
1649 static int ti_sci_cmd_core_reboot(const struct ti_sci_handle *handle)
1650 {
1651 	struct ti_sci_info *info;
1652 	struct ti_sci_msg_req_reboot *req;
1653 	struct ti_sci_msg_hdr *resp;
1654 	struct ti_sci_xfer *xfer;
1655 	struct device *dev;
1656 	int ret = 0;
1657 
1658 	if (IS_ERR(handle))
1659 		return PTR_ERR(handle);
1660 	if (!handle)
1661 		return -EINVAL;
1662 
1663 	info = handle_to_ti_sci_info(handle);
1664 	dev = info->dev;
1665 
1666 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SYS_RESET,
1667 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1668 				   sizeof(*req), sizeof(*resp));
1669 	if (IS_ERR(xfer)) {
1670 		ret = PTR_ERR(xfer);
1671 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1672 		return ret;
1673 	}
1674 	req = (struct ti_sci_msg_req_reboot *)xfer->xfer_buf;
1675 
1676 	ret = ti_sci_do_xfer(info, xfer);
1677 	if (ret) {
1678 		dev_err(dev, "Mbox send fail %d\n", ret);
1679 		goto fail;
1680 	}
1681 
1682 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
1683 
1684 	if (!ti_sci_is_response_ack(resp))
1685 		ret = -ENODEV;
1686 	else
1687 		ret = 0;
1688 
1689 fail:
1690 	ti_sci_put_one_xfer(&info->minfo, xfer);
1691 
1692 	return ret;
1693 }
1694 
1695 /**
1696  * ti_sci_get_resource_range - Helper to get a range of resources assigned
1697  *			       to a host. Resource is uniquely identified by
1698  *			       type and subtype.
1699  * @handle:		Pointer to TISCI handle.
1700  * @dev_id:		TISCI device ID.
1701  * @subtype:		Resource assignment subtype that is being requested
1702  *			from the given device.
1703  * @s_host:		Host processor ID to which the resources are allocated
1704  * @range_start:	Start index of the resource range
1705  * @range_num:		Number of resources in the range
1706  *
1707  * Return: 0 if all went fine, else return appropriate error.
1708  */
1709 static int ti_sci_get_resource_range(const struct ti_sci_handle *handle,
1710 				     u32 dev_id, u8 subtype, u8 s_host,
1711 				     u16 *range_start, u16 *range_num)
1712 {
1713 	struct ti_sci_msg_resp_get_resource_range *resp;
1714 	struct ti_sci_msg_req_get_resource_range *req;
1715 	struct ti_sci_xfer *xfer;
1716 	struct ti_sci_info *info;
1717 	struct device *dev;
1718 	int ret = 0;
1719 
1720 	if (IS_ERR(handle))
1721 		return PTR_ERR(handle);
1722 	if (!handle)
1723 		return -EINVAL;
1724 
1725 	info = handle_to_ti_sci_info(handle);
1726 	dev = info->dev;
1727 
1728 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_RESOURCE_RANGE,
1729 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1730 				   sizeof(*req), sizeof(*resp));
1731 	if (IS_ERR(xfer)) {
1732 		ret = PTR_ERR(xfer);
1733 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1734 		return ret;
1735 	}
1736 
1737 	req = (struct ti_sci_msg_req_get_resource_range *)xfer->xfer_buf;
1738 	req->secondary_host = s_host;
1739 	req->type = dev_id & MSG_RM_RESOURCE_TYPE_MASK;
1740 	req->subtype = subtype & MSG_RM_RESOURCE_SUBTYPE_MASK;
1741 
1742 	ret = ti_sci_do_xfer(info, xfer);
1743 	if (ret) {
1744 		dev_err(dev, "Mbox send fail %d\n", ret);
1745 		goto fail;
1746 	}
1747 
1748 	resp = (struct ti_sci_msg_resp_get_resource_range *)xfer->xfer_buf;
1749 
1750 	if (!ti_sci_is_response_ack(resp)) {
1751 		ret = -ENODEV;
1752 	} else if (!resp->range_start && !resp->range_num) {
1753 		ret = -ENODEV;
1754 	} else {
1755 		*range_start = resp->range_start;
1756 		*range_num = resp->range_num;
1757 	};
1758 
1759 fail:
1760 	ti_sci_put_one_xfer(&info->minfo, xfer);
1761 
1762 	return ret;
1763 }
1764 
1765 /**
1766  * ti_sci_cmd_get_resource_range - Get a range of resources assigned to host
1767  *				   that is same as ti sci interface host.
1768  * @handle:		Pointer to TISCI handle.
1769  * @dev_id:		TISCI device ID.
1770  * @subtype:		Resource assignment subtype that is being requested
1771  *			from the given device.
1772  * @range_start:	Start index of the resource range
1773  * @range_num:		Number of resources in the range
1774  *
1775  * Return: 0 if all went fine, else return appropriate error.
1776  */
1777 static int ti_sci_cmd_get_resource_range(const struct ti_sci_handle *handle,
1778 					 u32 dev_id, u8 subtype,
1779 					 u16 *range_start, u16 *range_num)
1780 {
1781 	return ti_sci_get_resource_range(handle, dev_id, subtype,
1782 					 TI_SCI_IRQ_SECONDARY_HOST_INVALID,
1783 					 range_start, range_num);
1784 }
1785 
1786 /**
1787  * ti_sci_cmd_get_resource_range_from_shost - Get a range of resources
1788  *					      assigned to a specified host.
1789  * @handle:		Pointer to TISCI handle.
1790  * @dev_id:		TISCI device ID.
1791  * @subtype:		Resource assignment subtype that is being requested
1792  *			from the given device.
1793  * @s_host:		Host processor ID to which the resources are allocated
1794  * @range_start:	Start index of the resource range
1795  * @range_num:		Number of resources in the range
1796  *
1797  * Return: 0 if all went fine, else return appropriate error.
1798  */
1799 static
1800 int ti_sci_cmd_get_resource_range_from_shost(const struct ti_sci_handle *handle,
1801 					     u32 dev_id, u8 subtype, u8 s_host,
1802 					     u16 *range_start, u16 *range_num)
1803 {
1804 	return ti_sci_get_resource_range(handle, dev_id, subtype, s_host,
1805 					 range_start, range_num);
1806 }
1807 
1808 /**
1809  * ti_sci_manage_irq() - Helper api to configure/release the irq route between
1810  *			 the requested source and destination
1811  * @handle:		Pointer to TISCI handle.
1812  * @valid_params:	Bit fields defining the validity of certain params
1813  * @src_id:		Device ID of the IRQ source
1814  * @src_index:		IRQ source index within the source device
1815  * @dst_id:		Device ID of the IRQ destination
1816  * @dst_host_irq:	IRQ number of the destination device
1817  * @ia_id:		Device ID of the IA, if the IRQ flows through this IA
1818  * @vint:		Virtual interrupt to be used within the IA
1819  * @global_event:	Global event number to be used for the requesting event
1820  * @vint_status_bit:	Virtual interrupt status bit to be used for the event
1821  * @s_host:		Secondary host ID to which the irq/event is being
1822  *			requested for.
1823  * @type:		Request type irq set or release.
1824  *
1825  * Return: 0 if all went fine, else return appropriate error.
1826  */
1827 static int ti_sci_manage_irq(const struct ti_sci_handle *handle,
1828 			     u32 valid_params, u16 src_id, u16 src_index,
1829 			     u16 dst_id, u16 dst_host_irq, u16 ia_id, u16 vint,
1830 			     u16 global_event, u8 vint_status_bit, u8 s_host,
1831 			     u16 type)
1832 {
1833 	struct ti_sci_msg_req_manage_irq *req;
1834 	struct ti_sci_msg_hdr *resp;
1835 	struct ti_sci_xfer *xfer;
1836 	struct ti_sci_info *info;
1837 	struct device *dev;
1838 	int ret = 0;
1839 
1840 	if (IS_ERR(handle))
1841 		return PTR_ERR(handle);
1842 	if (!handle)
1843 		return -EINVAL;
1844 
1845 	info = handle_to_ti_sci_info(handle);
1846 	dev = info->dev;
1847 
1848 	xfer = ti_sci_get_one_xfer(info, type, TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
1849 				   sizeof(*req), sizeof(*resp));
1850 	if (IS_ERR(xfer)) {
1851 		ret = PTR_ERR(xfer);
1852 		dev_err(dev, "Message alloc failed(%d)\n", ret);
1853 		return ret;
1854 	}
1855 	req = (struct ti_sci_msg_req_manage_irq *)xfer->xfer_buf;
1856 	req->valid_params = valid_params;
1857 	req->src_id = src_id;
1858 	req->src_index = src_index;
1859 	req->dst_id = dst_id;
1860 	req->dst_host_irq = dst_host_irq;
1861 	req->ia_id = ia_id;
1862 	req->vint = vint;
1863 	req->global_event = global_event;
1864 	req->vint_status_bit = vint_status_bit;
1865 	req->secondary_host = s_host;
1866 
1867 	ret = ti_sci_do_xfer(info, xfer);
1868 	if (ret) {
1869 		dev_err(dev, "Mbox send fail %d\n", ret);
1870 		goto fail;
1871 	}
1872 
1873 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
1874 
1875 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
1876 
1877 fail:
1878 	ti_sci_put_one_xfer(&info->minfo, xfer);
1879 
1880 	return ret;
1881 }
1882 
1883 /**
1884  * ti_sci_set_irq() - Helper api to configure the irq route between the
1885  *		      requested source and destination
1886  * @handle:		Pointer to TISCI handle.
1887  * @valid_params:	Bit fields defining the validity of certain params
1888  * @src_id:		Device ID of the IRQ source
1889  * @src_index:		IRQ source index within the source device
1890  * @dst_id:		Device ID of the IRQ destination
1891  * @dst_host_irq:	IRQ number of the destination device
1892  * @ia_id:		Device ID of the IA, if the IRQ flows through this IA
1893  * @vint:		Virtual interrupt to be used within the IA
1894  * @global_event:	Global event number to be used for the requesting event
1895  * @vint_status_bit:	Virtual interrupt status bit to be used for the event
1896  * @s_host:		Secondary host ID to which the irq/event is being
1897  *			requested for.
1898  *
1899  * Return: 0 if all went fine, else return appropriate error.
1900  */
1901 static int ti_sci_set_irq(const struct ti_sci_handle *handle, u32 valid_params,
1902 			  u16 src_id, u16 src_index, u16 dst_id,
1903 			  u16 dst_host_irq, u16 ia_id, u16 vint,
1904 			  u16 global_event, u8 vint_status_bit, u8 s_host)
1905 {
1906 	pr_debug("%s: IRQ set with valid_params = 0x%x from src = %d, index = %d, to dst = %d, irq = %d,via ia_id = %d, vint = %d, global event = %d,status_bit = %d\n",
1907 		 __func__, valid_params, src_id, src_index,
1908 		 dst_id, dst_host_irq, ia_id, vint, global_event,
1909 		 vint_status_bit);
1910 
1911 	return ti_sci_manage_irq(handle, valid_params, src_id, src_index,
1912 				 dst_id, dst_host_irq, ia_id, vint,
1913 				 global_event, vint_status_bit, s_host,
1914 				 TI_SCI_MSG_SET_IRQ);
1915 }
1916 
1917 /**
1918  * ti_sci_free_irq() - Helper api to free the irq route between the
1919  *			   requested source and destination
1920  * @handle:		Pointer to TISCI handle.
1921  * @valid_params:	Bit fields defining the validity of certain params
1922  * @src_id:		Device ID of the IRQ source
1923  * @src_index:		IRQ source index within the source device
1924  * @dst_id:		Device ID of the IRQ destination
1925  * @dst_host_irq:	IRQ number of the destination device
1926  * @ia_id:		Device ID of the IA, if the IRQ flows through this IA
1927  * @vint:		Virtual interrupt to be used within the IA
1928  * @global_event:	Global event number to be used for the requesting event
1929  * @vint_status_bit:	Virtual interrupt status bit to be used for the event
1930  * @s_host:		Secondary host ID to which the irq/event is being
1931  *			requested for.
1932  *
1933  * Return: 0 if all went fine, else return appropriate error.
1934  */
1935 static int ti_sci_free_irq(const struct ti_sci_handle *handle, u32 valid_params,
1936 			   u16 src_id, u16 src_index, u16 dst_id,
1937 			   u16 dst_host_irq, u16 ia_id, u16 vint,
1938 			   u16 global_event, u8 vint_status_bit, u8 s_host)
1939 {
1940 	pr_debug("%s: IRQ release with valid_params = 0x%x from src = %d, index = %d, to dst = %d, irq = %d,via ia_id = %d, vint = %d, global event = %d,status_bit = %d\n",
1941 		 __func__, valid_params, src_id, src_index,
1942 		 dst_id, dst_host_irq, ia_id, vint, global_event,
1943 		 vint_status_bit);
1944 
1945 	return ti_sci_manage_irq(handle, valid_params, src_id, src_index,
1946 				 dst_id, dst_host_irq, ia_id, vint,
1947 				 global_event, vint_status_bit, s_host,
1948 				 TI_SCI_MSG_FREE_IRQ);
1949 }
1950 
1951 /**
1952  * ti_sci_cmd_set_irq() - Configure a host irq route between the requested
1953  *			  source and destination.
1954  * @handle:		Pointer to TISCI handle.
1955  * @src_id:		Device ID of the IRQ source
1956  * @src_index:		IRQ source index within the source device
1957  * @dst_id:		Device ID of the IRQ destination
1958  * @dst_host_irq:	IRQ number of the destination device
1959  * @vint_irq:		Boolean specifying if this interrupt belongs to
1960  *			Interrupt Aggregator.
1961  *
1962  * Return: 0 if all went fine, else return appropriate error.
1963  */
1964 static int ti_sci_cmd_set_irq(const struct ti_sci_handle *handle, u16 src_id,
1965 			      u16 src_index, u16 dst_id, u16 dst_host_irq)
1966 {
1967 	u32 valid_params = MSG_FLAG_DST_ID_VALID | MSG_FLAG_DST_HOST_IRQ_VALID;
1968 
1969 	return ti_sci_set_irq(handle, valid_params, src_id, src_index, dst_id,
1970 			      dst_host_irq, 0, 0, 0, 0, 0);
1971 }
1972 
1973 /**
1974  * ti_sci_cmd_set_event_map() - Configure an event based irq route between the
1975  *				requested source and Interrupt Aggregator.
1976  * @handle:		Pointer to TISCI handle.
1977  * @src_id:		Device ID of the IRQ source
1978  * @src_index:		IRQ source index within the source device
1979  * @ia_id:		Device ID of the IA, if the IRQ flows through this IA
1980  * @vint:		Virtual interrupt to be used within the IA
1981  * @global_event:	Global event number to be used for the requesting event
1982  * @vint_status_bit:	Virtual interrupt status bit to be used for the event
1983  *
1984  * Return: 0 if all went fine, else return appropriate error.
1985  */
1986 static int ti_sci_cmd_set_event_map(const struct ti_sci_handle *handle,
1987 				    u16 src_id, u16 src_index, u16 ia_id,
1988 				    u16 vint, u16 global_event,
1989 				    u8 vint_status_bit)
1990 {
1991 	u32 valid_params = MSG_FLAG_IA_ID_VALID | MSG_FLAG_VINT_VALID |
1992 			   MSG_FLAG_GLB_EVNT_VALID |
1993 			   MSG_FLAG_VINT_STS_BIT_VALID;
1994 
1995 	return ti_sci_set_irq(handle, valid_params, src_id, src_index, 0, 0,
1996 			      ia_id, vint, global_event, vint_status_bit, 0);
1997 }
1998 
1999 /**
2000  * ti_sci_cmd_free_irq() - Free a host irq route between the between the
2001  *			   requested source and destination.
2002  * @handle:		Pointer to TISCI handle.
2003  * @src_id:		Device ID of the IRQ source
2004  * @src_index:		IRQ source index within the source device
2005  * @dst_id:		Device ID of the IRQ destination
2006  * @dst_host_irq:	IRQ number of the destination device
2007  * @vint_irq:		Boolean specifying if this interrupt belongs to
2008  *			Interrupt Aggregator.
2009  *
2010  * Return: 0 if all went fine, else return appropriate error.
2011  */
2012 static int ti_sci_cmd_free_irq(const struct ti_sci_handle *handle, u16 src_id,
2013 			       u16 src_index, u16 dst_id, u16 dst_host_irq)
2014 {
2015 	u32 valid_params = MSG_FLAG_DST_ID_VALID | MSG_FLAG_DST_HOST_IRQ_VALID;
2016 
2017 	return ti_sci_free_irq(handle, valid_params, src_id, src_index, dst_id,
2018 			       dst_host_irq, 0, 0, 0, 0, 0);
2019 }
2020 
2021 /**
2022  * ti_sci_cmd_free_event_map() - Free an event map between the requested source
2023  *				 and Interrupt Aggregator.
2024  * @handle:		Pointer to TISCI handle.
2025  * @src_id:		Device ID of the IRQ source
2026  * @src_index:		IRQ source index within the source device
2027  * @ia_id:		Device ID of the IA, if the IRQ flows through this IA
2028  * @vint:		Virtual interrupt to be used within the IA
2029  * @global_event:	Global event number to be used for the requesting event
2030  * @vint_status_bit:	Virtual interrupt status bit to be used for the event
2031  *
2032  * Return: 0 if all went fine, else return appropriate error.
2033  */
2034 static int ti_sci_cmd_free_event_map(const struct ti_sci_handle *handle,
2035 				     u16 src_id, u16 src_index, u16 ia_id,
2036 				     u16 vint, u16 global_event,
2037 				     u8 vint_status_bit)
2038 {
2039 	u32 valid_params = MSG_FLAG_IA_ID_VALID |
2040 			   MSG_FLAG_VINT_VALID | MSG_FLAG_GLB_EVNT_VALID |
2041 			   MSG_FLAG_VINT_STS_BIT_VALID;
2042 
2043 	return ti_sci_free_irq(handle, valid_params, src_id, src_index, 0, 0,
2044 			       ia_id, vint, global_event, vint_status_bit, 0);
2045 }
2046 
2047 /**
2048  * ti_sci_cmd_ring_config() - configure RA ring
2049  * @handle:		Pointer to TI SCI handle.
2050  * @valid_params:	Bitfield defining validity of ring configuration
2051  *			parameters
2052  * @nav_id:		Device ID of Navigator Subsystem from which the ring is
2053  *			allocated
2054  * @index:		Ring index
2055  * @addr_lo:		The ring base address lo 32 bits
2056  * @addr_hi:		The ring base address hi 32 bits
2057  * @count:		Number of ring elements
2058  * @mode:		The mode of the ring
2059  * @size:		The ring element size.
2060  * @order_id:		Specifies the ring's bus order ID
2061  *
2062  * Return: 0 if all went well, else returns appropriate error value.
2063  *
2064  * See @ti_sci_msg_rm_ring_cfg_req for more info.
2065  */
2066 static int ti_sci_cmd_ring_config(const struct ti_sci_handle *handle,
2067 				  u32 valid_params, u16 nav_id, u16 index,
2068 				  u32 addr_lo, u32 addr_hi, u32 count,
2069 				  u8 mode, u8 size, u8 order_id)
2070 {
2071 	struct ti_sci_msg_rm_ring_cfg_req *req;
2072 	struct ti_sci_msg_hdr *resp;
2073 	struct ti_sci_xfer *xfer;
2074 	struct ti_sci_info *info;
2075 	struct device *dev;
2076 	int ret = 0;
2077 
2078 	if (IS_ERR_OR_NULL(handle))
2079 		return -EINVAL;
2080 
2081 	info = handle_to_ti_sci_info(handle);
2082 	dev = info->dev;
2083 
2084 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_RM_RING_CFG,
2085 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2086 				   sizeof(*req), sizeof(*resp));
2087 	if (IS_ERR(xfer)) {
2088 		ret = PTR_ERR(xfer);
2089 		dev_err(dev, "RM_RA:Message config failed(%d)\n", ret);
2090 		return ret;
2091 	}
2092 	req = (struct ti_sci_msg_rm_ring_cfg_req *)xfer->xfer_buf;
2093 	req->valid_params = valid_params;
2094 	req->nav_id = nav_id;
2095 	req->index = index;
2096 	req->addr_lo = addr_lo;
2097 	req->addr_hi = addr_hi;
2098 	req->count = count;
2099 	req->mode = mode;
2100 	req->size = size;
2101 	req->order_id = order_id;
2102 
2103 	ret = ti_sci_do_xfer(info, xfer);
2104 	if (ret) {
2105 		dev_err(dev, "RM_RA:Mbox config send fail %d\n", ret);
2106 		goto fail;
2107 	}
2108 
2109 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
2110 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
2111 
2112 fail:
2113 	ti_sci_put_one_xfer(&info->minfo, xfer);
2114 	dev_dbg(dev, "RM_RA:config ring %u ret:%d\n", index, ret);
2115 	return ret;
2116 }
2117 
2118 /**
2119  * ti_sci_cmd_ring_get_config() - get RA ring configuration
2120  * @handle:	Pointer to TI SCI handle.
2121  * @nav_id:	Device ID of Navigator Subsystem from which the ring is
2122  *		allocated
2123  * @index:	Ring index
2124  * @addr_lo:	Returns ring's base address lo 32 bits
2125  * @addr_hi:	Returns ring's base address hi 32 bits
2126  * @count:	Returns number of ring elements
2127  * @mode:	Returns mode of the ring
2128  * @size:	Returns ring element size
2129  * @order_id:	Returns ring's bus order ID
2130  *
2131  * Return: 0 if all went well, else returns appropriate error value.
2132  *
2133  * See @ti_sci_msg_rm_ring_get_cfg_req for more info.
2134  */
2135 static int ti_sci_cmd_ring_get_config(const struct ti_sci_handle *handle,
2136 				      u32 nav_id, u32 index, u8 *mode,
2137 				      u32 *addr_lo, u32 *addr_hi,
2138 				      u32 *count, u8 *size, u8 *order_id)
2139 {
2140 	struct ti_sci_msg_rm_ring_get_cfg_resp *resp;
2141 	struct ti_sci_msg_rm_ring_get_cfg_req *req;
2142 	struct ti_sci_xfer *xfer;
2143 	struct ti_sci_info *info;
2144 	struct device *dev;
2145 	int ret = 0;
2146 
2147 	if (IS_ERR_OR_NULL(handle))
2148 		return -EINVAL;
2149 
2150 	info = handle_to_ti_sci_info(handle);
2151 	dev = info->dev;
2152 
2153 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_RM_RING_GET_CFG,
2154 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2155 				   sizeof(*req), sizeof(*resp));
2156 	if (IS_ERR(xfer)) {
2157 		ret = PTR_ERR(xfer);
2158 		dev_err(dev,
2159 			"RM_RA:Message get config failed(%d)\n", ret);
2160 		return ret;
2161 	}
2162 	req = (struct ti_sci_msg_rm_ring_get_cfg_req *)xfer->xfer_buf;
2163 	req->nav_id = nav_id;
2164 	req->index = index;
2165 
2166 	ret = ti_sci_do_xfer(info, xfer);
2167 	if (ret) {
2168 		dev_err(dev, "RM_RA:Mbox get config send fail %d\n", ret);
2169 		goto fail;
2170 	}
2171 
2172 	resp = (struct ti_sci_msg_rm_ring_get_cfg_resp *)xfer->xfer_buf;
2173 
2174 	if (!ti_sci_is_response_ack(resp)) {
2175 		ret = -ENODEV;
2176 	} else {
2177 		if (mode)
2178 			*mode = resp->mode;
2179 		if (addr_lo)
2180 			*addr_lo = resp->addr_lo;
2181 		if (addr_hi)
2182 			*addr_hi = resp->addr_hi;
2183 		if (count)
2184 			*count = resp->count;
2185 		if (size)
2186 			*size = resp->size;
2187 		if (order_id)
2188 			*order_id = resp->order_id;
2189 	};
2190 
2191 fail:
2192 	ti_sci_put_one_xfer(&info->minfo, xfer);
2193 	dev_dbg(dev, "RM_RA:get config ring %u ret:%d\n", index, ret);
2194 	return ret;
2195 }
2196 
2197 /**
2198  * ti_sci_cmd_rm_psil_pair() - Pair PSI-L source to destination thread
2199  * @handle:	Pointer to TI SCI handle.
2200  * @nav_id:	Device ID of Navigator Subsystem which should be used for
2201  *		pairing
2202  * @src_thread:	Source PSI-L thread ID
2203  * @dst_thread: Destination PSI-L thread ID
2204  *
2205  * Return: 0 if all went well, else returns appropriate error value.
2206  */
2207 static int ti_sci_cmd_rm_psil_pair(const struct ti_sci_handle *handle,
2208 				   u32 nav_id, u32 src_thread, u32 dst_thread)
2209 {
2210 	struct ti_sci_msg_psil_pair *req;
2211 	struct ti_sci_msg_hdr *resp;
2212 	struct ti_sci_xfer *xfer;
2213 	struct ti_sci_info *info;
2214 	struct device *dev;
2215 	int ret = 0;
2216 
2217 	if (IS_ERR(handle))
2218 		return PTR_ERR(handle);
2219 	if (!handle)
2220 		return -EINVAL;
2221 
2222 	info = handle_to_ti_sci_info(handle);
2223 	dev = info->dev;
2224 
2225 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_RM_PSIL_PAIR,
2226 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2227 				   sizeof(*req), sizeof(*resp));
2228 	if (IS_ERR(xfer)) {
2229 		ret = PTR_ERR(xfer);
2230 		dev_err(dev, "RM_PSIL:Message reconfig failed(%d)\n", ret);
2231 		return ret;
2232 	}
2233 	req = (struct ti_sci_msg_psil_pair *)xfer->xfer_buf;
2234 	req->nav_id = nav_id;
2235 	req->src_thread = src_thread;
2236 	req->dst_thread = dst_thread;
2237 
2238 	ret = ti_sci_do_xfer(info, xfer);
2239 	if (ret) {
2240 		dev_err(dev, "RM_PSIL:Mbox send fail %d\n", ret);
2241 		goto fail;
2242 	}
2243 
2244 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
2245 	ret = ti_sci_is_response_ack(resp) ? 0 : -EINVAL;
2246 
2247 fail:
2248 	ti_sci_put_one_xfer(&info->minfo, xfer);
2249 
2250 	return ret;
2251 }
2252 
2253 /**
2254  * ti_sci_cmd_rm_psil_unpair() - Unpair PSI-L source from destination thread
2255  * @handle:	Pointer to TI SCI handle.
2256  * @nav_id:	Device ID of Navigator Subsystem which should be used for
2257  *		unpairing
2258  * @src_thread:	Source PSI-L thread ID
2259  * @dst_thread:	Destination PSI-L thread ID
2260  *
2261  * Return: 0 if all went well, else returns appropriate error value.
2262  */
2263 static int ti_sci_cmd_rm_psil_unpair(const struct ti_sci_handle *handle,
2264 				     u32 nav_id, u32 src_thread, u32 dst_thread)
2265 {
2266 	struct ti_sci_msg_psil_unpair *req;
2267 	struct ti_sci_msg_hdr *resp;
2268 	struct ti_sci_xfer *xfer;
2269 	struct ti_sci_info *info;
2270 	struct device *dev;
2271 	int ret = 0;
2272 
2273 	if (IS_ERR(handle))
2274 		return PTR_ERR(handle);
2275 	if (!handle)
2276 		return -EINVAL;
2277 
2278 	info = handle_to_ti_sci_info(handle);
2279 	dev = info->dev;
2280 
2281 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_RM_PSIL_UNPAIR,
2282 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2283 				   sizeof(*req), sizeof(*resp));
2284 	if (IS_ERR(xfer)) {
2285 		ret = PTR_ERR(xfer);
2286 		dev_err(dev, "RM_PSIL:Message reconfig failed(%d)\n", ret);
2287 		return ret;
2288 	}
2289 	req = (struct ti_sci_msg_psil_unpair *)xfer->xfer_buf;
2290 	req->nav_id = nav_id;
2291 	req->src_thread = src_thread;
2292 	req->dst_thread = dst_thread;
2293 
2294 	ret = ti_sci_do_xfer(info, xfer);
2295 	if (ret) {
2296 		dev_err(dev, "RM_PSIL:Mbox send fail %d\n", ret);
2297 		goto fail;
2298 	}
2299 
2300 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
2301 	ret = ti_sci_is_response_ack(resp) ? 0 : -EINVAL;
2302 
2303 fail:
2304 	ti_sci_put_one_xfer(&info->minfo, xfer);
2305 
2306 	return ret;
2307 }
2308 
2309 /**
2310  * ti_sci_cmd_rm_udmap_tx_ch_cfg() - Configure a UDMAP TX channel
2311  * @handle:	Pointer to TI SCI handle.
2312  * @params:	Pointer to ti_sci_msg_rm_udmap_tx_ch_cfg TX channel config
2313  *		structure
2314  *
2315  * Return: 0 if all went well, else returns appropriate error value.
2316  *
2317  * See @ti_sci_msg_rm_udmap_tx_ch_cfg and @ti_sci_msg_rm_udmap_tx_ch_cfg_req for
2318  * more info.
2319  */
2320 static int ti_sci_cmd_rm_udmap_tx_ch_cfg(const struct ti_sci_handle *handle,
2321 			const struct ti_sci_msg_rm_udmap_tx_ch_cfg *params)
2322 {
2323 	struct ti_sci_msg_rm_udmap_tx_ch_cfg_req *req;
2324 	struct ti_sci_msg_hdr *resp;
2325 	struct ti_sci_xfer *xfer;
2326 	struct ti_sci_info *info;
2327 	struct device *dev;
2328 	int ret = 0;
2329 
2330 	if (IS_ERR_OR_NULL(handle))
2331 		return -EINVAL;
2332 
2333 	info = handle_to_ti_sci_info(handle);
2334 	dev = info->dev;
2335 
2336 	xfer = ti_sci_get_one_xfer(info, TISCI_MSG_RM_UDMAP_TX_CH_CFG,
2337 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2338 				   sizeof(*req), sizeof(*resp));
2339 	if (IS_ERR(xfer)) {
2340 		ret = PTR_ERR(xfer);
2341 		dev_err(dev, "Message TX_CH_CFG alloc failed(%d)\n", ret);
2342 		return ret;
2343 	}
2344 	req = (struct ti_sci_msg_rm_udmap_tx_ch_cfg_req *)xfer->xfer_buf;
2345 	req->valid_params = params->valid_params;
2346 	req->nav_id = params->nav_id;
2347 	req->index = params->index;
2348 	req->tx_pause_on_err = params->tx_pause_on_err;
2349 	req->tx_filt_einfo = params->tx_filt_einfo;
2350 	req->tx_filt_pswords = params->tx_filt_pswords;
2351 	req->tx_atype = params->tx_atype;
2352 	req->tx_chan_type = params->tx_chan_type;
2353 	req->tx_supr_tdpkt = params->tx_supr_tdpkt;
2354 	req->tx_fetch_size = params->tx_fetch_size;
2355 	req->tx_credit_count = params->tx_credit_count;
2356 	req->txcq_qnum = params->txcq_qnum;
2357 	req->tx_priority = params->tx_priority;
2358 	req->tx_qos = params->tx_qos;
2359 	req->tx_orderid = params->tx_orderid;
2360 	req->fdepth = params->fdepth;
2361 	req->tx_sched_priority = params->tx_sched_priority;
2362 	req->tx_burst_size = params->tx_burst_size;
2363 
2364 	ret = ti_sci_do_xfer(info, xfer);
2365 	if (ret) {
2366 		dev_err(dev, "Mbox send TX_CH_CFG fail %d\n", ret);
2367 		goto fail;
2368 	}
2369 
2370 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
2371 	ret = ti_sci_is_response_ack(resp) ? 0 : -EINVAL;
2372 
2373 fail:
2374 	ti_sci_put_one_xfer(&info->minfo, xfer);
2375 	dev_dbg(dev, "TX_CH_CFG: chn %u ret:%u\n", params->index, ret);
2376 	return ret;
2377 }
2378 
2379 /**
2380  * ti_sci_cmd_rm_udmap_rx_ch_cfg() - Configure a UDMAP RX channel
2381  * @handle:	Pointer to TI SCI handle.
2382  * @params:	Pointer to ti_sci_msg_rm_udmap_rx_ch_cfg RX channel config
2383  *		structure
2384  *
2385  * Return: 0 if all went well, else returns appropriate error value.
2386  *
2387  * See @ti_sci_msg_rm_udmap_rx_ch_cfg and @ti_sci_msg_rm_udmap_rx_ch_cfg_req for
2388  * more info.
2389  */
2390 static int ti_sci_cmd_rm_udmap_rx_ch_cfg(const struct ti_sci_handle *handle,
2391 			const struct ti_sci_msg_rm_udmap_rx_ch_cfg *params)
2392 {
2393 	struct ti_sci_msg_rm_udmap_rx_ch_cfg_req *req;
2394 	struct ti_sci_msg_hdr *resp;
2395 	struct ti_sci_xfer *xfer;
2396 	struct ti_sci_info *info;
2397 	struct device *dev;
2398 	int ret = 0;
2399 
2400 	if (IS_ERR_OR_NULL(handle))
2401 		return -EINVAL;
2402 
2403 	info = handle_to_ti_sci_info(handle);
2404 	dev = info->dev;
2405 
2406 	xfer = ti_sci_get_one_xfer(info, TISCI_MSG_RM_UDMAP_RX_CH_CFG,
2407 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2408 				   sizeof(*req), sizeof(*resp));
2409 	if (IS_ERR(xfer)) {
2410 		ret = PTR_ERR(xfer);
2411 		dev_err(dev, "Message RX_CH_CFG alloc failed(%d)\n", ret);
2412 		return ret;
2413 	}
2414 	req = (struct ti_sci_msg_rm_udmap_rx_ch_cfg_req *)xfer->xfer_buf;
2415 	req->valid_params = params->valid_params;
2416 	req->nav_id = params->nav_id;
2417 	req->index = params->index;
2418 	req->rx_fetch_size = params->rx_fetch_size;
2419 	req->rxcq_qnum = params->rxcq_qnum;
2420 	req->rx_priority = params->rx_priority;
2421 	req->rx_qos = params->rx_qos;
2422 	req->rx_orderid = params->rx_orderid;
2423 	req->rx_sched_priority = params->rx_sched_priority;
2424 	req->flowid_start = params->flowid_start;
2425 	req->flowid_cnt = params->flowid_cnt;
2426 	req->rx_pause_on_err = params->rx_pause_on_err;
2427 	req->rx_atype = params->rx_atype;
2428 	req->rx_chan_type = params->rx_chan_type;
2429 	req->rx_ignore_short = params->rx_ignore_short;
2430 	req->rx_ignore_long = params->rx_ignore_long;
2431 	req->rx_burst_size = params->rx_burst_size;
2432 
2433 	ret = ti_sci_do_xfer(info, xfer);
2434 	if (ret) {
2435 		dev_err(dev, "Mbox send RX_CH_CFG fail %d\n", ret);
2436 		goto fail;
2437 	}
2438 
2439 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
2440 	ret = ti_sci_is_response_ack(resp) ? 0 : -EINVAL;
2441 
2442 fail:
2443 	ti_sci_put_one_xfer(&info->minfo, xfer);
2444 	dev_dbg(dev, "RX_CH_CFG: chn %u ret:%d\n", params->index, ret);
2445 	return ret;
2446 }
2447 
2448 /**
2449  * ti_sci_cmd_rm_udmap_rx_flow_cfg() - Configure UDMAP RX FLOW
2450  * @handle:	Pointer to TI SCI handle.
2451  * @params:	Pointer to ti_sci_msg_rm_udmap_flow_cfg RX FLOW config
2452  *		structure
2453  *
2454  * Return: 0 if all went well, else returns appropriate error value.
2455  *
2456  * See @ti_sci_msg_rm_udmap_flow_cfg and @ti_sci_msg_rm_udmap_flow_cfg_req for
2457  * more info.
2458  */
2459 static int ti_sci_cmd_rm_udmap_rx_flow_cfg(const struct ti_sci_handle *handle,
2460 			const struct ti_sci_msg_rm_udmap_flow_cfg *params)
2461 {
2462 	struct ti_sci_msg_rm_udmap_flow_cfg_req *req;
2463 	struct ti_sci_msg_hdr *resp;
2464 	struct ti_sci_xfer *xfer;
2465 	struct ti_sci_info *info;
2466 	struct device *dev;
2467 	int ret = 0;
2468 
2469 	if (IS_ERR_OR_NULL(handle))
2470 		return -EINVAL;
2471 
2472 	info = handle_to_ti_sci_info(handle);
2473 	dev = info->dev;
2474 
2475 	xfer = ti_sci_get_one_xfer(info, TISCI_MSG_RM_UDMAP_FLOW_CFG,
2476 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2477 				   sizeof(*req), sizeof(*resp));
2478 	if (IS_ERR(xfer)) {
2479 		ret = PTR_ERR(xfer);
2480 		dev_err(dev, "RX_FL_CFG: Message alloc failed(%d)\n", ret);
2481 		return ret;
2482 	}
2483 	req = (struct ti_sci_msg_rm_udmap_flow_cfg_req *)xfer->xfer_buf;
2484 	req->valid_params = params->valid_params;
2485 	req->nav_id = params->nav_id;
2486 	req->flow_index = params->flow_index;
2487 	req->rx_einfo_present = params->rx_einfo_present;
2488 	req->rx_psinfo_present = params->rx_psinfo_present;
2489 	req->rx_error_handling = params->rx_error_handling;
2490 	req->rx_desc_type = params->rx_desc_type;
2491 	req->rx_sop_offset = params->rx_sop_offset;
2492 	req->rx_dest_qnum = params->rx_dest_qnum;
2493 	req->rx_src_tag_hi = params->rx_src_tag_hi;
2494 	req->rx_src_tag_lo = params->rx_src_tag_lo;
2495 	req->rx_dest_tag_hi = params->rx_dest_tag_hi;
2496 	req->rx_dest_tag_lo = params->rx_dest_tag_lo;
2497 	req->rx_src_tag_hi_sel = params->rx_src_tag_hi_sel;
2498 	req->rx_src_tag_lo_sel = params->rx_src_tag_lo_sel;
2499 	req->rx_dest_tag_hi_sel = params->rx_dest_tag_hi_sel;
2500 	req->rx_dest_tag_lo_sel = params->rx_dest_tag_lo_sel;
2501 	req->rx_fdq0_sz0_qnum = params->rx_fdq0_sz0_qnum;
2502 	req->rx_fdq1_qnum = params->rx_fdq1_qnum;
2503 	req->rx_fdq2_qnum = params->rx_fdq2_qnum;
2504 	req->rx_fdq3_qnum = params->rx_fdq3_qnum;
2505 	req->rx_ps_location = params->rx_ps_location;
2506 
2507 	ret = ti_sci_do_xfer(info, xfer);
2508 	if (ret) {
2509 		dev_err(dev, "RX_FL_CFG: Mbox send fail %d\n", ret);
2510 		goto fail;
2511 	}
2512 
2513 	resp = (struct ti_sci_msg_hdr *)xfer->xfer_buf;
2514 	ret = ti_sci_is_response_ack(resp) ? 0 : -EINVAL;
2515 
2516 fail:
2517 	ti_sci_put_one_xfer(&info->minfo, xfer);
2518 	dev_dbg(info->dev, "RX_FL_CFG: %u ret:%d\n", params->flow_index, ret);
2519 	return ret;
2520 }
2521 
2522 /**
2523  * ti_sci_cmd_proc_request() - Command to request a physical processor control
2524  * @handle:	Pointer to TI SCI handle
2525  * @proc_id:	Processor ID this request is for
2526  *
2527  * Return: 0 if all went well, else returns appropriate error value.
2528  */
2529 static int ti_sci_cmd_proc_request(const struct ti_sci_handle *handle,
2530 				   u8 proc_id)
2531 {
2532 	struct ti_sci_msg_req_proc_request *req;
2533 	struct ti_sci_msg_hdr *resp;
2534 	struct ti_sci_info *info;
2535 	struct ti_sci_xfer *xfer;
2536 	struct device *dev;
2537 	int ret = 0;
2538 
2539 	if (!handle)
2540 		return -EINVAL;
2541 	if (IS_ERR(handle))
2542 		return PTR_ERR(handle);
2543 
2544 	info = handle_to_ti_sci_info(handle);
2545 	dev = info->dev;
2546 
2547 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_PROC_REQUEST,
2548 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2549 				   sizeof(*req), sizeof(*resp));
2550 	if (IS_ERR(xfer)) {
2551 		ret = PTR_ERR(xfer);
2552 		dev_err(dev, "Message alloc failed(%d)\n", ret);
2553 		return ret;
2554 	}
2555 	req = (struct ti_sci_msg_req_proc_request *)xfer->xfer_buf;
2556 	req->processor_id = proc_id;
2557 
2558 	ret = ti_sci_do_xfer(info, xfer);
2559 	if (ret) {
2560 		dev_err(dev, "Mbox send fail %d\n", ret);
2561 		goto fail;
2562 	}
2563 
2564 	resp = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
2565 
2566 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
2567 
2568 fail:
2569 	ti_sci_put_one_xfer(&info->minfo, xfer);
2570 
2571 	return ret;
2572 }
2573 
2574 /**
2575  * ti_sci_cmd_proc_release() - Command to release a physical processor control
2576  * @handle:	Pointer to TI SCI handle
2577  * @proc_id:	Processor ID this request is for
2578  *
2579  * Return: 0 if all went well, else returns appropriate error value.
2580  */
2581 static int ti_sci_cmd_proc_release(const struct ti_sci_handle *handle,
2582 				   u8 proc_id)
2583 {
2584 	struct ti_sci_msg_req_proc_release *req;
2585 	struct ti_sci_msg_hdr *resp;
2586 	struct ti_sci_info *info;
2587 	struct ti_sci_xfer *xfer;
2588 	struct device *dev;
2589 	int ret = 0;
2590 
2591 	if (!handle)
2592 		return -EINVAL;
2593 	if (IS_ERR(handle))
2594 		return PTR_ERR(handle);
2595 
2596 	info = handle_to_ti_sci_info(handle);
2597 	dev = info->dev;
2598 
2599 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_PROC_RELEASE,
2600 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2601 				   sizeof(*req), sizeof(*resp));
2602 	if (IS_ERR(xfer)) {
2603 		ret = PTR_ERR(xfer);
2604 		dev_err(dev, "Message alloc failed(%d)\n", ret);
2605 		return ret;
2606 	}
2607 	req = (struct ti_sci_msg_req_proc_release *)xfer->xfer_buf;
2608 	req->processor_id = proc_id;
2609 
2610 	ret = ti_sci_do_xfer(info, xfer);
2611 	if (ret) {
2612 		dev_err(dev, "Mbox send fail %d\n", ret);
2613 		goto fail;
2614 	}
2615 
2616 	resp = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
2617 
2618 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
2619 
2620 fail:
2621 	ti_sci_put_one_xfer(&info->minfo, xfer);
2622 
2623 	return ret;
2624 }
2625 
2626 /**
2627  * ti_sci_cmd_proc_handover() - Command to handover a physical processor
2628  *				control to a host in the processor's access
2629  *				control list.
2630  * @handle:	Pointer to TI SCI handle
2631  * @proc_id:	Processor ID this request is for
2632  * @host_id:	Host ID to get the control of the processor
2633  *
2634  * Return: 0 if all went well, else returns appropriate error value.
2635  */
2636 static int ti_sci_cmd_proc_handover(const struct ti_sci_handle *handle,
2637 				    u8 proc_id, u8 host_id)
2638 {
2639 	struct ti_sci_msg_req_proc_handover *req;
2640 	struct ti_sci_msg_hdr *resp;
2641 	struct ti_sci_info *info;
2642 	struct ti_sci_xfer *xfer;
2643 	struct device *dev;
2644 	int ret = 0;
2645 
2646 	if (!handle)
2647 		return -EINVAL;
2648 	if (IS_ERR(handle))
2649 		return PTR_ERR(handle);
2650 
2651 	info = handle_to_ti_sci_info(handle);
2652 	dev = info->dev;
2653 
2654 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_PROC_HANDOVER,
2655 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2656 				   sizeof(*req), sizeof(*resp));
2657 	if (IS_ERR(xfer)) {
2658 		ret = PTR_ERR(xfer);
2659 		dev_err(dev, "Message alloc failed(%d)\n", ret);
2660 		return ret;
2661 	}
2662 	req = (struct ti_sci_msg_req_proc_handover *)xfer->xfer_buf;
2663 	req->processor_id = proc_id;
2664 	req->host_id = host_id;
2665 
2666 	ret = ti_sci_do_xfer(info, xfer);
2667 	if (ret) {
2668 		dev_err(dev, "Mbox send fail %d\n", ret);
2669 		goto fail;
2670 	}
2671 
2672 	resp = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
2673 
2674 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
2675 
2676 fail:
2677 	ti_sci_put_one_xfer(&info->minfo, xfer);
2678 
2679 	return ret;
2680 }
2681 
2682 /**
2683  * ti_sci_cmd_proc_set_config() - Command to set the processor boot
2684  *				    configuration flags
2685  * @handle:		Pointer to TI SCI handle
2686  * @proc_id:		Processor ID this request is for
2687  * @config_flags_set:	Configuration flags to be set
2688  * @config_flags_clear:	Configuration flags to be cleared.
2689  *
2690  * Return: 0 if all went well, else returns appropriate error value.
2691  */
2692 static int ti_sci_cmd_proc_set_config(const struct ti_sci_handle *handle,
2693 				      u8 proc_id, u64 bootvector,
2694 				      u32 config_flags_set,
2695 				      u32 config_flags_clear)
2696 {
2697 	struct ti_sci_msg_req_set_config *req;
2698 	struct ti_sci_msg_hdr *resp;
2699 	struct ti_sci_info *info;
2700 	struct ti_sci_xfer *xfer;
2701 	struct device *dev;
2702 	int ret = 0;
2703 
2704 	if (!handle)
2705 		return -EINVAL;
2706 	if (IS_ERR(handle))
2707 		return PTR_ERR(handle);
2708 
2709 	info = handle_to_ti_sci_info(handle);
2710 	dev = info->dev;
2711 
2712 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_CONFIG,
2713 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2714 				   sizeof(*req), sizeof(*resp));
2715 	if (IS_ERR(xfer)) {
2716 		ret = PTR_ERR(xfer);
2717 		dev_err(dev, "Message alloc failed(%d)\n", ret);
2718 		return ret;
2719 	}
2720 	req = (struct ti_sci_msg_req_set_config *)xfer->xfer_buf;
2721 	req->processor_id = proc_id;
2722 	req->bootvector_low = bootvector & TI_SCI_ADDR_LOW_MASK;
2723 	req->bootvector_high = (bootvector & TI_SCI_ADDR_HIGH_MASK) >>
2724 				TI_SCI_ADDR_HIGH_SHIFT;
2725 	req->config_flags_set = config_flags_set;
2726 	req->config_flags_clear = config_flags_clear;
2727 
2728 	ret = ti_sci_do_xfer(info, xfer);
2729 	if (ret) {
2730 		dev_err(dev, "Mbox send fail %d\n", ret);
2731 		goto fail;
2732 	}
2733 
2734 	resp = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
2735 
2736 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
2737 
2738 fail:
2739 	ti_sci_put_one_xfer(&info->minfo, xfer);
2740 
2741 	return ret;
2742 }
2743 
2744 /**
2745  * ti_sci_cmd_proc_set_control() - Command to set the processor boot
2746  *				     control flags
2747  * @handle:			Pointer to TI SCI handle
2748  * @proc_id:			Processor ID this request is for
2749  * @control_flags_set:		Control flags to be set
2750  * @control_flags_clear:	Control flags to be cleared
2751  *
2752  * Return: 0 if all went well, else returns appropriate error value.
2753  */
2754 static int ti_sci_cmd_proc_set_control(const struct ti_sci_handle *handle,
2755 				       u8 proc_id, u32 control_flags_set,
2756 				       u32 control_flags_clear)
2757 {
2758 	struct ti_sci_msg_req_set_ctrl *req;
2759 	struct ti_sci_msg_hdr *resp;
2760 	struct ti_sci_info *info;
2761 	struct ti_sci_xfer *xfer;
2762 	struct device *dev;
2763 	int ret = 0;
2764 
2765 	if (!handle)
2766 		return -EINVAL;
2767 	if (IS_ERR(handle))
2768 		return PTR_ERR(handle);
2769 
2770 	info = handle_to_ti_sci_info(handle);
2771 	dev = info->dev;
2772 
2773 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_SET_CTRL,
2774 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2775 				   sizeof(*req), sizeof(*resp));
2776 	if (IS_ERR(xfer)) {
2777 		ret = PTR_ERR(xfer);
2778 		dev_err(dev, "Message alloc failed(%d)\n", ret);
2779 		return ret;
2780 	}
2781 	req = (struct ti_sci_msg_req_set_ctrl *)xfer->xfer_buf;
2782 	req->processor_id = proc_id;
2783 	req->control_flags_set = control_flags_set;
2784 	req->control_flags_clear = control_flags_clear;
2785 
2786 	ret = ti_sci_do_xfer(info, xfer);
2787 	if (ret) {
2788 		dev_err(dev, "Mbox send fail %d\n", ret);
2789 		goto fail;
2790 	}
2791 
2792 	resp = (struct ti_sci_msg_hdr *)xfer->tx_message.buf;
2793 
2794 	ret = ti_sci_is_response_ack(resp) ? 0 : -ENODEV;
2795 
2796 fail:
2797 	ti_sci_put_one_xfer(&info->minfo, xfer);
2798 
2799 	return ret;
2800 }
2801 
2802 /**
2803  * ti_sci_cmd_get_boot_status() - Command to get the processor boot status
2804  * @handle:	Pointer to TI SCI handle
2805  * @proc_id:	Processor ID this request is for
2806  *
2807  * Return: 0 if all went well, else returns appropriate error value.
2808  */
2809 static int ti_sci_cmd_proc_get_status(const struct ti_sci_handle *handle,
2810 				      u8 proc_id, u64 *bv, u32 *cfg_flags,
2811 				      u32 *ctrl_flags, u32 *sts_flags)
2812 {
2813 	struct ti_sci_msg_resp_get_status *resp;
2814 	struct ti_sci_msg_req_get_status *req;
2815 	struct ti_sci_info *info;
2816 	struct ti_sci_xfer *xfer;
2817 	struct device *dev;
2818 	int ret = 0;
2819 
2820 	if (!handle)
2821 		return -EINVAL;
2822 	if (IS_ERR(handle))
2823 		return PTR_ERR(handle);
2824 
2825 	info = handle_to_ti_sci_info(handle);
2826 	dev = info->dev;
2827 
2828 	xfer = ti_sci_get_one_xfer(info, TI_SCI_MSG_GET_STATUS,
2829 				   TI_SCI_FLAG_REQ_ACK_ON_PROCESSED,
2830 				   sizeof(*req), sizeof(*resp));
2831 	if (IS_ERR(xfer)) {
2832 		ret = PTR_ERR(xfer);
2833 		dev_err(dev, "Message alloc failed(%d)\n", ret);
2834 		return ret;
2835 	}
2836 	req = (struct ti_sci_msg_req_get_status *)xfer->xfer_buf;
2837 	req->processor_id = proc_id;
2838 
2839 	ret = ti_sci_do_xfer(info, xfer);
2840 	if (ret) {
2841 		dev_err(dev, "Mbox send fail %d\n", ret);
2842 		goto fail;
2843 	}
2844 
2845 	resp = (struct ti_sci_msg_resp_get_status *)xfer->tx_message.buf;
2846 
2847 	if (!ti_sci_is_response_ack(resp)) {
2848 		ret = -ENODEV;
2849 	} else {
2850 		*bv = (resp->bootvector_low & TI_SCI_ADDR_LOW_MASK) |
2851 		      (((u64)resp->bootvector_high << TI_SCI_ADDR_HIGH_SHIFT) &
2852 		       TI_SCI_ADDR_HIGH_MASK);
2853 		*cfg_flags = resp->config_flags;
2854 		*ctrl_flags = resp->control_flags;
2855 		*sts_flags = resp->status_flags;
2856 	}
2857 
2858 fail:
2859 	ti_sci_put_one_xfer(&info->minfo, xfer);
2860 
2861 	return ret;
2862 }
2863 
2864 /*
2865  * ti_sci_setup_ops() - Setup the operations structures
2866  * @info:	pointer to TISCI pointer
2867  */
2868 static void ti_sci_setup_ops(struct ti_sci_info *info)
2869 {
2870 	struct ti_sci_ops *ops = &info->handle.ops;
2871 	struct ti_sci_core_ops *core_ops = &ops->core_ops;
2872 	struct ti_sci_dev_ops *dops = &ops->dev_ops;
2873 	struct ti_sci_clk_ops *cops = &ops->clk_ops;
2874 	struct ti_sci_rm_core_ops *rm_core_ops = &ops->rm_core_ops;
2875 	struct ti_sci_rm_irq_ops *iops = &ops->rm_irq_ops;
2876 	struct ti_sci_rm_ringacc_ops *rops = &ops->rm_ring_ops;
2877 	struct ti_sci_rm_psil_ops *psilops = &ops->rm_psil_ops;
2878 	struct ti_sci_rm_udmap_ops *udmap_ops = &ops->rm_udmap_ops;
2879 	struct ti_sci_proc_ops *pops = &ops->proc_ops;
2880 
2881 	core_ops->reboot_device = ti_sci_cmd_core_reboot;
2882 
2883 	dops->get_device = ti_sci_cmd_get_device;
2884 	dops->get_device_exclusive = ti_sci_cmd_get_device_exclusive;
2885 	dops->idle_device = ti_sci_cmd_idle_device;
2886 	dops->idle_device_exclusive = ti_sci_cmd_idle_device_exclusive;
2887 	dops->put_device = ti_sci_cmd_put_device;
2888 
2889 	dops->is_valid = ti_sci_cmd_dev_is_valid;
2890 	dops->get_context_loss_count = ti_sci_cmd_dev_get_clcnt;
2891 	dops->is_idle = ti_sci_cmd_dev_is_idle;
2892 	dops->is_stop = ti_sci_cmd_dev_is_stop;
2893 	dops->is_on = ti_sci_cmd_dev_is_on;
2894 	dops->is_transitioning = ti_sci_cmd_dev_is_trans;
2895 	dops->set_device_resets = ti_sci_cmd_set_device_resets;
2896 	dops->get_device_resets = ti_sci_cmd_get_device_resets;
2897 
2898 	cops->get_clock = ti_sci_cmd_get_clock;
2899 	cops->idle_clock = ti_sci_cmd_idle_clock;
2900 	cops->put_clock = ti_sci_cmd_put_clock;
2901 	cops->is_auto = ti_sci_cmd_clk_is_auto;
2902 	cops->is_on = ti_sci_cmd_clk_is_on;
2903 	cops->is_off = ti_sci_cmd_clk_is_off;
2904 
2905 	cops->set_parent = ti_sci_cmd_clk_set_parent;
2906 	cops->get_parent = ti_sci_cmd_clk_get_parent;
2907 	cops->get_num_parents = ti_sci_cmd_clk_get_num_parents;
2908 
2909 	cops->get_best_match_freq = ti_sci_cmd_clk_get_match_freq;
2910 	cops->set_freq = ti_sci_cmd_clk_set_freq;
2911 	cops->get_freq = ti_sci_cmd_clk_get_freq;
2912 
2913 	rm_core_ops->get_range = ti_sci_cmd_get_resource_range;
2914 	rm_core_ops->get_range_from_shost =
2915 				ti_sci_cmd_get_resource_range_from_shost;
2916 
2917 	iops->set_irq = ti_sci_cmd_set_irq;
2918 	iops->set_event_map = ti_sci_cmd_set_event_map;
2919 	iops->free_irq = ti_sci_cmd_free_irq;
2920 	iops->free_event_map = ti_sci_cmd_free_event_map;
2921 
2922 	rops->config = ti_sci_cmd_ring_config;
2923 	rops->get_config = ti_sci_cmd_ring_get_config;
2924 
2925 	psilops->pair = ti_sci_cmd_rm_psil_pair;
2926 	psilops->unpair = ti_sci_cmd_rm_psil_unpair;
2927 
2928 	udmap_ops->tx_ch_cfg = ti_sci_cmd_rm_udmap_tx_ch_cfg;
2929 	udmap_ops->rx_ch_cfg = ti_sci_cmd_rm_udmap_rx_ch_cfg;
2930 	udmap_ops->rx_flow_cfg = ti_sci_cmd_rm_udmap_rx_flow_cfg;
2931 
2932 	pops->request = ti_sci_cmd_proc_request;
2933 	pops->release = ti_sci_cmd_proc_release;
2934 	pops->handover = ti_sci_cmd_proc_handover;
2935 	pops->set_config = ti_sci_cmd_proc_set_config;
2936 	pops->set_control = ti_sci_cmd_proc_set_control;
2937 	pops->get_status = ti_sci_cmd_proc_get_status;
2938 }
2939 
2940 /**
2941  * ti_sci_get_handle() - Get the TI SCI handle for a device
2942  * @dev:	Pointer to device for which we want SCI handle
2943  *
2944  * NOTE: The function does not track individual clients of the framework
2945  * and is expected to be maintained by caller of TI SCI protocol library.
2946  * ti_sci_put_handle must be balanced with successful ti_sci_get_handle
2947  * Return: pointer to handle if successful, else:
2948  * -EPROBE_DEFER if the instance is not ready
2949  * -ENODEV if the required node handler is missing
2950  * -EINVAL if invalid conditions are encountered.
2951  */
2952 const struct ti_sci_handle *ti_sci_get_handle(struct device *dev)
2953 {
2954 	struct device_node *ti_sci_np;
2955 	struct list_head *p;
2956 	struct ti_sci_handle *handle = NULL;
2957 	struct ti_sci_info *info;
2958 
2959 	if (!dev) {
2960 		pr_err("I need a device pointer\n");
2961 		return ERR_PTR(-EINVAL);
2962 	}
2963 	ti_sci_np = of_get_parent(dev->of_node);
2964 	if (!ti_sci_np) {
2965 		dev_err(dev, "No OF information\n");
2966 		return ERR_PTR(-EINVAL);
2967 	}
2968 
2969 	mutex_lock(&ti_sci_list_mutex);
2970 	list_for_each(p, &ti_sci_list) {
2971 		info = list_entry(p, struct ti_sci_info, node);
2972 		if (ti_sci_np == info->dev->of_node) {
2973 			handle = &info->handle;
2974 			info->users++;
2975 			break;
2976 		}
2977 	}
2978 	mutex_unlock(&ti_sci_list_mutex);
2979 	of_node_put(ti_sci_np);
2980 
2981 	if (!handle)
2982 		return ERR_PTR(-EPROBE_DEFER);
2983 
2984 	return handle;
2985 }
2986 EXPORT_SYMBOL_GPL(ti_sci_get_handle);
2987 
2988 /**
2989  * ti_sci_put_handle() - Release the handle acquired by ti_sci_get_handle
2990  * @handle:	Handle acquired by ti_sci_get_handle
2991  *
2992  * NOTE: The function does not track individual clients of the framework
2993  * and is expected to be maintained by caller of TI SCI protocol library.
2994  * ti_sci_put_handle must be balanced with successful ti_sci_get_handle
2995  *
2996  * Return: 0 is successfully released
2997  * if an error pointer was passed, it returns the error value back,
2998  * if null was passed, it returns -EINVAL;
2999  */
3000 int ti_sci_put_handle(const struct ti_sci_handle *handle)
3001 {
3002 	struct ti_sci_info *info;
3003 
3004 	if (IS_ERR(handle))
3005 		return PTR_ERR(handle);
3006 	if (!handle)
3007 		return -EINVAL;
3008 
3009 	info = handle_to_ti_sci_info(handle);
3010 	mutex_lock(&ti_sci_list_mutex);
3011 	if (!WARN_ON(!info->users))
3012 		info->users--;
3013 	mutex_unlock(&ti_sci_list_mutex);
3014 
3015 	return 0;
3016 }
3017 EXPORT_SYMBOL_GPL(ti_sci_put_handle);
3018 
3019 static void devm_ti_sci_release(struct device *dev, void *res)
3020 {
3021 	const struct ti_sci_handle **ptr = res;
3022 	const struct ti_sci_handle *handle = *ptr;
3023 	int ret;
3024 
3025 	ret = ti_sci_put_handle(handle);
3026 	if (ret)
3027 		dev_err(dev, "failed to put handle %d\n", ret);
3028 }
3029 
3030 /**
3031  * devm_ti_sci_get_handle() - Managed get handle
3032  * @dev:	device for which we want SCI handle for.
3033  *
3034  * NOTE: This releases the handle once the device resources are
3035  * no longer needed. MUST NOT BE released with ti_sci_put_handle.
3036  * The function does not track individual clients of the framework
3037  * and is expected to be maintained by caller of TI SCI protocol library.
3038  *
3039  * Return: 0 if all went fine, else corresponding error.
3040  */
3041 const struct ti_sci_handle *devm_ti_sci_get_handle(struct device *dev)
3042 {
3043 	const struct ti_sci_handle **ptr;
3044 	const struct ti_sci_handle *handle;
3045 
3046 	ptr = devres_alloc(devm_ti_sci_release, sizeof(*ptr), GFP_KERNEL);
3047 	if (!ptr)
3048 		return ERR_PTR(-ENOMEM);
3049 	handle = ti_sci_get_handle(dev);
3050 
3051 	if (!IS_ERR(handle)) {
3052 		*ptr = handle;
3053 		devres_add(dev, ptr);
3054 	} else {
3055 		devres_free(ptr);
3056 	}
3057 
3058 	return handle;
3059 }
3060 EXPORT_SYMBOL_GPL(devm_ti_sci_get_handle);
3061 
3062 /**
3063  * ti_sci_get_by_phandle() - Get the TI SCI handle using DT phandle
3064  * @np:		device node
3065  * @property:	property name containing phandle on TISCI node
3066  *
3067  * NOTE: The function does not track individual clients of the framework
3068  * and is expected to be maintained by caller of TI SCI protocol library.
3069  * ti_sci_put_handle must be balanced with successful ti_sci_get_by_phandle
3070  * Return: pointer to handle if successful, else:
3071  * -EPROBE_DEFER if the instance is not ready
3072  * -ENODEV if the required node handler is missing
3073  * -EINVAL if invalid conditions are encountered.
3074  */
3075 const struct ti_sci_handle *ti_sci_get_by_phandle(struct device_node *np,
3076 						  const char *property)
3077 {
3078 	struct ti_sci_handle *handle = NULL;
3079 	struct device_node *ti_sci_np;
3080 	struct ti_sci_info *info;
3081 	struct list_head *p;
3082 
3083 	if (!np) {
3084 		pr_err("I need a device pointer\n");
3085 		return ERR_PTR(-EINVAL);
3086 	}
3087 
3088 	ti_sci_np = of_parse_phandle(np, property, 0);
3089 	if (!ti_sci_np)
3090 		return ERR_PTR(-ENODEV);
3091 
3092 	mutex_lock(&ti_sci_list_mutex);
3093 	list_for_each(p, &ti_sci_list) {
3094 		info = list_entry(p, struct ti_sci_info, node);
3095 		if (ti_sci_np == info->dev->of_node) {
3096 			handle = &info->handle;
3097 			info->users++;
3098 			break;
3099 		}
3100 	}
3101 	mutex_unlock(&ti_sci_list_mutex);
3102 	of_node_put(ti_sci_np);
3103 
3104 	if (!handle)
3105 		return ERR_PTR(-EPROBE_DEFER);
3106 
3107 	return handle;
3108 }
3109 EXPORT_SYMBOL_GPL(ti_sci_get_by_phandle);
3110 
3111 /**
3112  * devm_ti_sci_get_by_phandle() - Managed get handle using phandle
3113  * @dev:	Device pointer requesting TISCI handle
3114  * @property:	property name containing phandle on TISCI node
3115  *
3116  * NOTE: This releases the handle once the device resources are
3117  * no longer needed. MUST NOT BE released with ti_sci_put_handle.
3118  * The function does not track individual clients of the framework
3119  * and is expected to be maintained by caller of TI SCI protocol library.
3120  *
3121  * Return: 0 if all went fine, else corresponding error.
3122  */
3123 const struct ti_sci_handle *devm_ti_sci_get_by_phandle(struct device *dev,
3124 						       const char *property)
3125 {
3126 	const struct ti_sci_handle *handle;
3127 	const struct ti_sci_handle **ptr;
3128 
3129 	ptr = devres_alloc(devm_ti_sci_release, sizeof(*ptr), GFP_KERNEL);
3130 	if (!ptr)
3131 		return ERR_PTR(-ENOMEM);
3132 	handle = ti_sci_get_by_phandle(dev_of_node(dev), property);
3133 
3134 	if (!IS_ERR(handle)) {
3135 		*ptr = handle;
3136 		devres_add(dev, ptr);
3137 	} else {
3138 		devres_free(ptr);
3139 	}
3140 
3141 	return handle;
3142 }
3143 EXPORT_SYMBOL_GPL(devm_ti_sci_get_by_phandle);
3144 
3145 /**
3146  * ti_sci_get_free_resource() - Get a free resource from TISCI resource.
3147  * @res:	Pointer to the TISCI resource
3148  *
3149  * Return: resource num if all went ok else TI_SCI_RESOURCE_NULL.
3150  */
3151 u16 ti_sci_get_free_resource(struct ti_sci_resource *res)
3152 {
3153 	unsigned long flags;
3154 	u16 set, free_bit;
3155 
3156 	raw_spin_lock_irqsave(&res->lock, flags);
3157 	for (set = 0; set < res->sets; set++) {
3158 		free_bit = find_first_zero_bit(res->desc[set].res_map,
3159 					       res->desc[set].num);
3160 		if (free_bit != res->desc[set].num) {
3161 			set_bit(free_bit, res->desc[set].res_map);
3162 			raw_spin_unlock_irqrestore(&res->lock, flags);
3163 			return res->desc[set].start + free_bit;
3164 		}
3165 	}
3166 	raw_spin_unlock_irqrestore(&res->lock, flags);
3167 
3168 	return TI_SCI_RESOURCE_NULL;
3169 }
3170 EXPORT_SYMBOL_GPL(ti_sci_get_free_resource);
3171 
3172 /**
3173  * ti_sci_release_resource() - Release a resource from TISCI resource.
3174  * @res:	Pointer to the TISCI resource
3175  * @id:		Resource id to be released.
3176  */
3177 void ti_sci_release_resource(struct ti_sci_resource *res, u16 id)
3178 {
3179 	unsigned long flags;
3180 	u16 set;
3181 
3182 	raw_spin_lock_irqsave(&res->lock, flags);
3183 	for (set = 0; set < res->sets; set++) {
3184 		if (res->desc[set].start <= id &&
3185 		    (res->desc[set].num + res->desc[set].start) > id)
3186 			clear_bit(id - res->desc[set].start,
3187 				  res->desc[set].res_map);
3188 	}
3189 	raw_spin_unlock_irqrestore(&res->lock, flags);
3190 }
3191 EXPORT_SYMBOL_GPL(ti_sci_release_resource);
3192 
3193 /**
3194  * ti_sci_get_num_resources() - Get the number of resources in TISCI resource
3195  * @res:	Pointer to the TISCI resource
3196  *
3197  * Return: Total number of available resources.
3198  */
3199 u32 ti_sci_get_num_resources(struct ti_sci_resource *res)
3200 {
3201 	u32 set, count = 0;
3202 
3203 	for (set = 0; set < res->sets; set++)
3204 		count += res->desc[set].num;
3205 
3206 	return count;
3207 }
3208 EXPORT_SYMBOL_GPL(ti_sci_get_num_resources);
3209 
3210 /**
3211  * devm_ti_sci_get_of_resource() - Get a TISCI resource assigned to a device
3212  * @handle:	TISCI handle
3213  * @dev:	Device pointer to which the resource is assigned
3214  * @dev_id:	TISCI device id to which the resource is assigned
3215  * @of_prop:	property name by which the resource are represented
3216  *
3217  * Return: Pointer to ti_sci_resource if all went well else appropriate
3218  *	   error pointer.
3219  */
3220 struct ti_sci_resource *
3221 devm_ti_sci_get_of_resource(const struct ti_sci_handle *handle,
3222 			    struct device *dev, u32 dev_id, char *of_prop)
3223 {
3224 	struct ti_sci_resource *res;
3225 	bool valid_set = false;
3226 	u32 resource_subtype;
3227 	int i, ret;
3228 
3229 	res = devm_kzalloc(dev, sizeof(*res), GFP_KERNEL);
3230 	if (!res)
3231 		return ERR_PTR(-ENOMEM);
3232 
3233 	ret = of_property_count_elems_of_size(dev_of_node(dev), of_prop,
3234 					      sizeof(u32));
3235 	if (ret < 0) {
3236 		dev_err(dev, "%s resource type ids not available\n", of_prop);
3237 		return ERR_PTR(ret);
3238 	}
3239 	res->sets = ret;
3240 
3241 	res->desc = devm_kcalloc(dev, res->sets, sizeof(*res->desc),
3242 				 GFP_KERNEL);
3243 	if (!res->desc)
3244 		return ERR_PTR(-ENOMEM);
3245 
3246 	for (i = 0; i < res->sets; i++) {
3247 		ret = of_property_read_u32_index(dev_of_node(dev), of_prop, i,
3248 						 &resource_subtype);
3249 		if (ret)
3250 			return ERR_PTR(-EINVAL);
3251 
3252 		ret = handle->ops.rm_core_ops.get_range(handle, dev_id,
3253 							resource_subtype,
3254 							&res->desc[i].start,
3255 							&res->desc[i].num);
3256 		if (ret) {
3257 			dev_dbg(dev, "dev = %d subtype %d not allocated for this host\n",
3258 				dev_id, resource_subtype);
3259 			res->desc[i].start = 0;
3260 			res->desc[i].num = 0;
3261 			continue;
3262 		}
3263 
3264 		dev_dbg(dev, "dev = %d, subtype = %d, start = %d, num = %d\n",
3265 			dev_id, resource_subtype, res->desc[i].start,
3266 			res->desc[i].num);
3267 
3268 		valid_set = true;
3269 		res->desc[i].res_map =
3270 			devm_kzalloc(dev, BITS_TO_LONGS(res->desc[i].num) *
3271 				     sizeof(*res->desc[i].res_map), GFP_KERNEL);
3272 		if (!res->desc[i].res_map)
3273 			return ERR_PTR(-ENOMEM);
3274 	}
3275 	raw_spin_lock_init(&res->lock);
3276 
3277 	if (valid_set)
3278 		return res;
3279 
3280 	return ERR_PTR(-EINVAL);
3281 }
3282 
3283 static int tisci_reboot_handler(struct notifier_block *nb, unsigned long mode,
3284 				void *cmd)
3285 {
3286 	struct ti_sci_info *info = reboot_to_ti_sci_info(nb);
3287 	const struct ti_sci_handle *handle = &info->handle;
3288 
3289 	ti_sci_cmd_core_reboot(handle);
3290 
3291 	/* call fail OR pass, we should not be here in the first place */
3292 	return NOTIFY_BAD;
3293 }
3294 
3295 /* Description for K2G */
3296 static const struct ti_sci_desc ti_sci_pmmc_k2g_desc = {
3297 	.default_host_id = 2,
3298 	/* Conservative duration */
3299 	.max_rx_timeout_ms = 1000,
3300 	/* Limited by MBOX_TX_QUEUE_LEN. K2G can handle upto 128 messages! */
3301 	.max_msgs = 20,
3302 	.max_msg_size = 64,
3303 };
3304 
3305 /* Description for AM654 */
3306 static const struct ti_sci_desc ti_sci_pmmc_am654_desc = {
3307 	.default_host_id = 12,
3308 	/* Conservative duration */
3309 	.max_rx_timeout_ms = 10000,
3310 	/* Limited by MBOX_TX_QUEUE_LEN. K2G can handle upto 128 messages! */
3311 	.max_msgs = 20,
3312 	.max_msg_size = 60,
3313 };
3314 
3315 static const struct of_device_id ti_sci_of_match[] = {
3316 	{.compatible = "ti,k2g-sci", .data = &ti_sci_pmmc_k2g_desc},
3317 	{.compatible = "ti,am654-sci", .data = &ti_sci_pmmc_am654_desc},
3318 	{ /* Sentinel */ },
3319 };
3320 MODULE_DEVICE_TABLE(of, ti_sci_of_match);
3321 
3322 static int ti_sci_probe(struct platform_device *pdev)
3323 {
3324 	struct device *dev = &pdev->dev;
3325 	const struct of_device_id *of_id;
3326 	const struct ti_sci_desc *desc;
3327 	struct ti_sci_xfer *xfer;
3328 	struct ti_sci_info *info = NULL;
3329 	struct ti_sci_xfers_info *minfo;
3330 	struct mbox_client *cl;
3331 	int ret = -EINVAL;
3332 	int i;
3333 	int reboot = 0;
3334 	u32 h_id;
3335 
3336 	of_id = of_match_device(ti_sci_of_match, dev);
3337 	if (!of_id) {
3338 		dev_err(dev, "OF data missing\n");
3339 		return -EINVAL;
3340 	}
3341 	desc = of_id->data;
3342 
3343 	info = devm_kzalloc(dev, sizeof(*info), GFP_KERNEL);
3344 	if (!info)
3345 		return -ENOMEM;
3346 
3347 	info->dev = dev;
3348 	info->desc = desc;
3349 	ret = of_property_read_u32(dev->of_node, "ti,host-id", &h_id);
3350 	/* if the property is not present in DT, use a default from desc */
3351 	if (ret < 0) {
3352 		info->host_id = info->desc->default_host_id;
3353 	} else {
3354 		if (!h_id) {
3355 			dev_warn(dev, "Host ID 0 is reserved for firmware\n");
3356 			info->host_id = info->desc->default_host_id;
3357 		} else {
3358 			info->host_id = h_id;
3359 		}
3360 	}
3361 
3362 	reboot = of_property_read_bool(dev->of_node,
3363 				       "ti,system-reboot-controller");
3364 	INIT_LIST_HEAD(&info->node);
3365 	minfo = &info->minfo;
3366 
3367 	/*
3368 	 * Pre-allocate messages
3369 	 * NEVER allocate more than what we can indicate in hdr.seq
3370 	 * if we have data description bug, force a fix..
3371 	 */
3372 	if (WARN_ON(desc->max_msgs >=
3373 		    1 << 8 * sizeof(((struct ti_sci_msg_hdr *)0)->seq)))
3374 		return -EINVAL;
3375 
3376 	minfo->xfer_block = devm_kcalloc(dev,
3377 					 desc->max_msgs,
3378 					 sizeof(*minfo->xfer_block),
3379 					 GFP_KERNEL);
3380 	if (!minfo->xfer_block)
3381 		return -ENOMEM;
3382 
3383 	minfo->xfer_alloc_table = devm_kcalloc(dev,
3384 					       BITS_TO_LONGS(desc->max_msgs),
3385 					       sizeof(unsigned long),
3386 					       GFP_KERNEL);
3387 	if (!minfo->xfer_alloc_table)
3388 		return -ENOMEM;
3389 	bitmap_zero(minfo->xfer_alloc_table, desc->max_msgs);
3390 
3391 	/* Pre-initialize the buffer pointer to pre-allocated buffers */
3392 	for (i = 0, xfer = minfo->xfer_block; i < desc->max_msgs; i++, xfer++) {
3393 		xfer->xfer_buf = devm_kcalloc(dev, 1, desc->max_msg_size,
3394 					      GFP_KERNEL);
3395 		if (!xfer->xfer_buf)
3396 			return -ENOMEM;
3397 
3398 		xfer->tx_message.buf = xfer->xfer_buf;
3399 		init_completion(&xfer->done);
3400 	}
3401 
3402 	ret = ti_sci_debugfs_create(pdev, info);
3403 	if (ret)
3404 		dev_warn(dev, "Failed to create debug file\n");
3405 
3406 	platform_set_drvdata(pdev, info);
3407 
3408 	cl = &info->cl;
3409 	cl->dev = dev;
3410 	cl->tx_block = false;
3411 	cl->rx_callback = ti_sci_rx_callback;
3412 	cl->knows_txdone = true;
3413 
3414 	spin_lock_init(&minfo->xfer_lock);
3415 	sema_init(&minfo->sem_xfer_count, desc->max_msgs);
3416 
3417 	info->chan_rx = mbox_request_channel_byname(cl, "rx");
3418 	if (IS_ERR(info->chan_rx)) {
3419 		ret = PTR_ERR(info->chan_rx);
3420 		goto out;
3421 	}
3422 
3423 	info->chan_tx = mbox_request_channel_byname(cl, "tx");
3424 	if (IS_ERR(info->chan_tx)) {
3425 		ret = PTR_ERR(info->chan_tx);
3426 		goto out;
3427 	}
3428 	ret = ti_sci_cmd_get_revision(info);
3429 	if (ret) {
3430 		dev_err(dev, "Unable to communicate with TISCI(%d)\n", ret);
3431 		goto out;
3432 	}
3433 
3434 	ti_sci_setup_ops(info);
3435 
3436 	if (reboot) {
3437 		info->nb.notifier_call = tisci_reboot_handler;
3438 		info->nb.priority = 128;
3439 
3440 		ret = register_restart_handler(&info->nb);
3441 		if (ret) {
3442 			dev_err(dev, "reboot registration fail(%d)\n", ret);
3443 			return ret;
3444 		}
3445 	}
3446 
3447 	dev_info(dev, "ABI: %d.%d (firmware rev 0x%04x '%s')\n",
3448 		 info->handle.version.abi_major, info->handle.version.abi_minor,
3449 		 info->handle.version.firmware_revision,
3450 		 info->handle.version.firmware_description);
3451 
3452 	mutex_lock(&ti_sci_list_mutex);
3453 	list_add_tail(&info->node, &ti_sci_list);
3454 	mutex_unlock(&ti_sci_list_mutex);
3455 
3456 	return of_platform_populate(dev->of_node, NULL, NULL, dev);
3457 out:
3458 	if (!IS_ERR(info->chan_tx))
3459 		mbox_free_channel(info->chan_tx);
3460 	if (!IS_ERR(info->chan_rx))
3461 		mbox_free_channel(info->chan_rx);
3462 	debugfs_remove(info->d);
3463 	return ret;
3464 }
3465 
3466 static int ti_sci_remove(struct platform_device *pdev)
3467 {
3468 	struct ti_sci_info *info;
3469 	struct device *dev = &pdev->dev;
3470 	int ret = 0;
3471 
3472 	of_platform_depopulate(dev);
3473 
3474 	info = platform_get_drvdata(pdev);
3475 
3476 	if (info->nb.notifier_call)
3477 		unregister_restart_handler(&info->nb);
3478 
3479 	mutex_lock(&ti_sci_list_mutex);
3480 	if (info->users)
3481 		ret = -EBUSY;
3482 	else
3483 		list_del(&info->node);
3484 	mutex_unlock(&ti_sci_list_mutex);
3485 
3486 	if (!ret) {
3487 		ti_sci_debugfs_destroy(pdev, info);
3488 
3489 		/* Safe to free channels since no more users */
3490 		mbox_free_channel(info->chan_tx);
3491 		mbox_free_channel(info->chan_rx);
3492 	}
3493 
3494 	return ret;
3495 }
3496 
3497 static struct platform_driver ti_sci_driver = {
3498 	.probe = ti_sci_probe,
3499 	.remove = ti_sci_remove,
3500 	.driver = {
3501 		   .name = "ti-sci",
3502 		   .of_match_table = of_match_ptr(ti_sci_of_match),
3503 	},
3504 };
3505 module_platform_driver(ti_sci_driver);
3506 
3507 MODULE_LICENSE("GPL v2");
3508 MODULE_DESCRIPTION("TI System Control Interface(SCI) driver");
3509 MODULE_AUTHOR("Nishanth Menon");
3510 MODULE_ALIAS("platform:ti-sci");
3511