1 // SPDX-License-Identifier: GPL-2.0
3 * Texas Instruments System Control Interface Protocol Driver
5 * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
9 #define pr_fmt(fmt) "%s: " fmt, __func__
11 #include <linux/bitmap.h>
12 #include <linux/debugfs.h>
13 #include <linux/export.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>
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
);
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
43 struct ti_msgmgr_message tx_message
;
46 struct completion done
;
50 * struct ti_sci_xfers_info - Structure to manage transfer information
51 * @sem_xfer_count: Counting Semaphore for managing max simultaneous
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
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 */
68 * struct ti_sci_rm_type_map - Structure representing TISCI Resource
69 * management representation of dev_ids.
70 * @dev_id: TISCI device ID
71 * @type: Corresponding id as identified by TISCI RM.
73 * Note: This is used only as a work around for using RM range apis
74 * for AM654 SoC. For future SoCs dev_id will be used as type
75 * for RM range APIs. In order to maintain ABI backward compatibility
76 * type is not being changed for AM654 SoC.
78 struct ti_sci_rm_type_map
{
84 * struct ti_sci_desc - Description of SoC integration
85 * @default_host_id: Host identifier representing the compute entity
86 * @max_rx_timeout_ms: Timeout for communication with SoC (in Milliseconds)
87 * @max_msgs: Maximum number of messages that can be pending
88 * simultaneously in the system
89 * @max_msg_size: Maximum size of data per message that can be handled.
90 * @rm_type_map: RM resource type mapping structure.
94 int max_rx_timeout_ms
;
97 struct ti_sci_rm_type_map
*rm_type_map
;
101 * struct ti_sci_info - Structure representing a TI SCI instance
102 * @dev: Device pointer
103 * @desc: SoC description for this instance
104 * @nb: Reboot Notifier block
105 * @d: Debugfs file entry
106 * @debug_region: Memory region where the debug message are available
107 * @debug_region_size: Debug region size
108 * @debug_buffer: Buffer allocated to copy debug messages.
109 * @handle: Instance of TI SCI handle to send to clients.
110 * @cl: Mailbox Client
111 * @chan_tx: Transmit mailbox channel
112 * @chan_rx: Receive mailbox channel
113 * @minfo: Message info
116 * @users: Number of users of this instance
120 struct notifier_block nb
;
121 const struct ti_sci_desc
*desc
;
123 void __iomem
*debug_region
;
125 size_t debug_region_size
;
126 struct ti_sci_handle handle
;
127 struct mbox_client cl
;
128 struct mbox_chan
*chan_tx
;
129 struct mbox_chan
*chan_rx
;
130 struct ti_sci_xfers_info minfo
;
131 struct list_head node
;
133 /* protected by ti_sci_list_mutex */
138 #define cl_to_ti_sci_info(c) container_of(c, struct ti_sci_info, cl)
139 #define handle_to_ti_sci_info(h) container_of(h, struct ti_sci_info, handle)
140 #define reboot_to_ti_sci_info(n) container_of(n, struct ti_sci_info, nb)
142 #ifdef CONFIG_DEBUG_FS
145 * ti_sci_debug_show() - Helper to dump the debug log
146 * @s: sequence file pointer
151 static int ti_sci_debug_show(struct seq_file
*s
, void *unused
)
153 struct ti_sci_info
*info
= s
->private;
155 memcpy_fromio(info
->debug_buffer
, info
->debug_region
,
156 info
->debug_region_size
);
158 * We don't trust firmware to leave NULL terminated last byte (hence
159 * we have allocated 1 extra 0 byte). Since we cannot guarantee any
160 * specific data format for debug messages, We just present the data
161 * in the buffer as is - we expect the messages to be self explanatory.
163 seq_puts(s
, info
->debug_buffer
);
167 /* Provide the log file operations interface*/
168 DEFINE_SHOW_ATTRIBUTE(ti_sci_debug
);
171 * ti_sci_debugfs_create() - Create log debug file
172 * @pdev: platform device pointer
173 * @info: Pointer to SCI entity information
175 * Return: 0 if all went fine, else corresponding error.
177 static int ti_sci_debugfs_create(struct platform_device
*pdev
,
178 struct ti_sci_info
*info
)
180 struct device
*dev
= &pdev
->dev
;
181 struct resource
*res
;
182 char debug_name
[50] = "ti_sci_debug@";
184 /* Debug region is optional */
185 res
= platform_get_resource_byname(pdev
, IORESOURCE_MEM
,
187 info
->debug_region
= devm_ioremap_resource(dev
, res
);
188 if (IS_ERR(info
->debug_region
))
190 info
->debug_region_size
= resource_size(res
);
192 info
->debug_buffer
= devm_kcalloc(dev
, info
->debug_region_size
+ 1,
193 sizeof(char), GFP_KERNEL
);
194 if (!info
->debug_buffer
)
196 /* Setup NULL termination */
197 info
->debug_buffer
[info
->debug_region_size
] = 0;
199 info
->d
= debugfs_create_file(strncat(debug_name
, dev_name(dev
),
201 sizeof("ti_sci_debug@")),
202 0444, NULL
, info
, &ti_sci_debug_fops
);
204 return PTR_ERR(info
->d
);
206 dev_dbg(dev
, "Debug region => %p, size = %zu bytes, resource: %pr\n",
207 info
->debug_region
, info
->debug_region_size
, res
);
212 * ti_sci_debugfs_destroy() - clean up log debug file
213 * @pdev: platform device pointer
214 * @info: Pointer to SCI entity information
216 static void ti_sci_debugfs_destroy(struct platform_device
*pdev
,
217 struct ti_sci_info
*info
)
219 if (IS_ERR(info
->debug_region
))
222 debugfs_remove(info
->d
);
224 #else /* CONFIG_DEBUG_FS */
225 static inline int ti_sci_debugfs_create(struct platform_device
*dev
,
226 struct ti_sci_info
*info
)
231 static inline void ti_sci_debugfs_destroy(struct platform_device
*dev
,
232 struct ti_sci_info
*info
)
235 #endif /* CONFIG_DEBUG_FS */
238 * ti_sci_dump_header_dbg() - Helper to dump a message header.
239 * @dev: Device pointer corresponding to the SCI entity
240 * @hdr: pointer to header.
242 static inline void ti_sci_dump_header_dbg(struct device
*dev
,
243 struct ti_sci_msg_hdr
*hdr
)
245 dev_dbg(dev
, "MSGHDR:type=0x%04x host=0x%02x seq=0x%02x flags=0x%08x\n",
246 hdr
->type
, hdr
->host
, hdr
->seq
, hdr
->flags
);
250 * ti_sci_rx_callback() - mailbox client callback for receive messages
251 * @cl: client pointer
252 * @m: mailbox message
254 * Processes one received message to appropriate transfer information and
255 * signals completion of the transfer.
257 * NOTE: This function will be invoked in IRQ context, hence should be
258 * as optimal as possible.
260 static void ti_sci_rx_callback(struct mbox_client
*cl
, void *m
)
262 struct ti_sci_info
*info
= cl_to_ti_sci_info(cl
);
263 struct device
*dev
= info
->dev
;
264 struct ti_sci_xfers_info
*minfo
= &info
->minfo
;
265 struct ti_msgmgr_message
*mbox_msg
= m
;
266 struct ti_sci_msg_hdr
*hdr
= (struct ti_sci_msg_hdr
*)mbox_msg
->buf
;
267 struct ti_sci_xfer
*xfer
;
273 * Are we even expecting this?
274 * NOTE: barriers were implicit in locks used for modifying the bitmap
276 if (!test_bit(xfer_id
, minfo
->xfer_alloc_table
)) {
277 dev_err(dev
, "Message for %d is not expected!\n", xfer_id
);
281 xfer
= &minfo
->xfer_block
[xfer_id
];
283 /* Is the message of valid length? */
284 if (mbox_msg
->len
> info
->desc
->max_msg_size
) {
285 dev_err(dev
, "Unable to handle %zu xfer(max %d)\n",
286 mbox_msg
->len
, info
->desc
->max_msg_size
);
287 ti_sci_dump_header_dbg(dev
, hdr
);
290 if (mbox_msg
->len
< xfer
->rx_len
) {
291 dev_err(dev
, "Recv xfer %zu < expected %d length\n",
292 mbox_msg
->len
, xfer
->rx_len
);
293 ti_sci_dump_header_dbg(dev
, hdr
);
297 ti_sci_dump_header_dbg(dev
, hdr
);
298 /* Take a copy to the rx buffer.. */
299 memcpy(xfer
->xfer_buf
, mbox_msg
->buf
, xfer
->rx_len
);
300 complete(&xfer
->done
);
304 * ti_sci_get_one_xfer() - Allocate one message
305 * @info: Pointer to SCI entity information
306 * @msg_type: Message type
307 * @msg_flags: Flag to set for the message
308 * @tx_message_size: transmit message size
309 * @rx_message_size: receive message size
311 * Helper function which is used by various command functions that are
312 * exposed to clients of this driver for allocating a message traffic event.
314 * This function can sleep depending on pending requests already in the system
315 * for the SCI entity. Further, this also holds a spinlock to maintain integrity
316 * of internal data structures.
318 * Return: 0 if all went fine, else corresponding error.
320 static struct ti_sci_xfer
*ti_sci_get_one_xfer(struct ti_sci_info
*info
,
321 u16 msg_type
, u32 msg_flags
,
322 size_t tx_message_size
,
323 size_t rx_message_size
)
325 struct ti_sci_xfers_info
*minfo
= &info
->minfo
;
326 struct ti_sci_xfer
*xfer
;
327 struct ti_sci_msg_hdr
*hdr
;
329 unsigned long bit_pos
;
334 /* Ensure we have sane transfer sizes */
335 if (rx_message_size
> info
->desc
->max_msg_size
||
336 tx_message_size
> info
->desc
->max_msg_size
||
337 rx_message_size
< sizeof(*hdr
) || tx_message_size
< sizeof(*hdr
))
338 return ERR_PTR(-ERANGE
);
341 * Ensure we have only controlled number of pending messages.
342 * Ideally, we might just have to wait a single message, be
343 * conservative and wait 5 times that..
345 timeout
= msecs_to_jiffies(info
->desc
->max_rx_timeout_ms
) * 5;
346 ret
= down_timeout(&minfo
->sem_xfer_count
, timeout
);
350 /* Keep the locked section as small as possible */
351 spin_lock_irqsave(&minfo
->xfer_lock
, flags
);
352 bit_pos
= find_first_zero_bit(minfo
->xfer_alloc_table
,
353 info
->desc
->max_msgs
);
354 set_bit(bit_pos
, minfo
->xfer_alloc_table
);
355 spin_unlock_irqrestore(&minfo
->xfer_lock
, flags
);
358 * We already ensured in probe that we can have max messages that can
359 * fit in hdr.seq - NOTE: this improves access latencies
360 * to predictable O(1) access, BUT, it opens us to risk if
361 * remote misbehaves with corrupted message sequence responses.
362 * If that happens, we are going to be messed up anyways..
364 xfer_id
= (u8
)bit_pos
;
366 xfer
= &minfo
->xfer_block
[xfer_id
];
368 hdr
= (struct ti_sci_msg_hdr
*)xfer
->tx_message
.buf
;
369 xfer
->tx_message
.len
= tx_message_size
;
370 xfer
->rx_len
= (u8
)rx_message_size
;
372 reinit_completion(&xfer
->done
);
375 hdr
->type
= msg_type
;
376 hdr
->host
= info
->host_id
;
377 hdr
->flags
= msg_flags
;
383 * ti_sci_put_one_xfer() - Release a message
384 * @minfo: transfer info pointer
385 * @xfer: message that was reserved by ti_sci_get_one_xfer
387 * This holds a spinlock to maintain integrity of internal data structures.
389 static void ti_sci_put_one_xfer(struct ti_sci_xfers_info
*minfo
,
390 struct ti_sci_xfer
*xfer
)
393 struct ti_sci_msg_hdr
*hdr
;
396 hdr
= (struct ti_sci_msg_hdr
*)xfer
->tx_message
.buf
;
400 * Keep the locked section as small as possible
401 * NOTE: we might escape with smp_mb and no lock here..
402 * but just be conservative and symmetric.
404 spin_lock_irqsave(&minfo
->xfer_lock
, flags
);
405 clear_bit(xfer_id
, minfo
->xfer_alloc_table
);
406 spin_unlock_irqrestore(&minfo
->xfer_lock
, flags
);
408 /* Increment the count for the next user to get through */
409 up(&minfo
->sem_xfer_count
);
413 * ti_sci_do_xfer() - Do one transfer
414 * @info: Pointer to SCI entity information
415 * @xfer: Transfer to initiate and wait for response
417 * Return: -ETIMEDOUT in case of no response, if transmit error,
418 * return corresponding error, else if all goes well,
421 static inline int ti_sci_do_xfer(struct ti_sci_info
*info
,
422 struct ti_sci_xfer
*xfer
)
426 struct device
*dev
= info
->dev
;
428 ret
= mbox_send_message(info
->chan_tx
, &xfer
->tx_message
);
434 /* And we wait for the response. */
435 timeout
= msecs_to_jiffies(info
->desc
->max_rx_timeout_ms
);
436 if (!wait_for_completion_timeout(&xfer
->done
, timeout
)) {
437 dev_err(dev
, "Mbox timedout in resp(caller: %pS)\n",
442 * NOTE: we might prefer not to need the mailbox ticker to manage the
443 * transfer queueing since the protocol layer queues things by itself.
444 * Unfortunately, we have to kick the mailbox framework after we have
445 * received our message.
447 mbox_client_txdone(info
->chan_tx
, ret
);
453 * ti_sci_cmd_get_revision() - command to get the revision of the SCI entity
454 * @info: Pointer to SCI entity information
456 * Updates the SCI information in the internal data structure.
458 * Return: 0 if all went fine, else return appropriate error.
460 static int ti_sci_cmd_get_revision(struct ti_sci_info
*info
)
462 struct device
*dev
= info
->dev
;
463 struct ti_sci_handle
*handle
= &info
->handle
;
464 struct ti_sci_version_info
*ver
= &handle
->version
;
465 struct ti_sci_msg_resp_version
*rev_info
;
466 struct ti_sci_xfer
*xfer
;
469 /* No need to setup flags since it is expected to respond */
470 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_VERSION
,
471 0x0, sizeof(struct ti_sci_msg_hdr
),
475 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
479 rev_info
= (struct ti_sci_msg_resp_version
*)xfer
->xfer_buf
;
481 ret
= ti_sci_do_xfer(info
, xfer
);
483 dev_err(dev
, "Mbox send fail %d\n", ret
);
487 ver
->abi_major
= rev_info
->abi_major
;
488 ver
->abi_minor
= rev_info
->abi_minor
;
489 ver
->firmware_revision
= rev_info
->firmware_revision
;
490 strncpy(ver
->firmware_description
, rev_info
->firmware_description
,
491 sizeof(ver
->firmware_description
));
494 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
499 * ti_sci_is_response_ack() - Generic ACK/NACK message checkup
500 * @r: pointer to response buffer
502 * Return: true if the response was an ACK, else returns false.
504 static inline bool ti_sci_is_response_ack(void *r
)
506 struct ti_sci_msg_hdr
*hdr
= r
;
508 return hdr
->flags
& TI_SCI_FLAG_RESP_GENERIC_ACK
? true : false;
512 * ti_sci_set_device_state() - Set device state helper
513 * @handle: pointer to TI SCI handle
514 * @id: Device identifier
515 * @flags: flags to setup for the device
516 * @state: State to move the device to
518 * Return: 0 if all went well, else returns appropriate error value.
520 static int ti_sci_set_device_state(const struct ti_sci_handle
*handle
,
521 u32 id
, u32 flags
, u8 state
)
523 struct ti_sci_info
*info
;
524 struct ti_sci_msg_req_set_device_state
*req
;
525 struct ti_sci_msg_hdr
*resp
;
526 struct ti_sci_xfer
*xfer
;
531 return PTR_ERR(handle
);
535 info
= handle_to_ti_sci_info(handle
);
538 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_SET_DEVICE_STATE
,
539 flags
| TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
540 sizeof(*req
), sizeof(*resp
));
543 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
546 req
= (struct ti_sci_msg_req_set_device_state
*)xfer
->xfer_buf
;
550 ret
= ti_sci_do_xfer(info
, xfer
);
552 dev_err(dev
, "Mbox send fail %d\n", ret
);
556 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
558 ret
= ti_sci_is_response_ack(resp
) ? 0 : -ENODEV
;
561 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
567 * ti_sci_get_device_state() - Get device state helper
568 * @handle: Handle to the device
569 * @id: Device Identifier
570 * @clcnt: Pointer to Context Loss Count
571 * @resets: pointer to resets
572 * @p_state: pointer to p_state
573 * @c_state: pointer to c_state
575 * Return: 0 if all went fine, else return appropriate error.
577 static int ti_sci_get_device_state(const struct ti_sci_handle
*handle
,
578 u32 id
, u32
*clcnt
, u32
*resets
,
579 u8
*p_state
, u8
*c_state
)
581 struct ti_sci_info
*info
;
582 struct ti_sci_msg_req_get_device_state
*req
;
583 struct ti_sci_msg_resp_get_device_state
*resp
;
584 struct ti_sci_xfer
*xfer
;
589 return PTR_ERR(handle
);
593 if (!clcnt
&& !resets
&& !p_state
&& !c_state
)
596 info
= handle_to_ti_sci_info(handle
);
599 /* Response is expected, so need of any flags */
600 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_GET_DEVICE_STATE
,
601 0, sizeof(*req
), sizeof(*resp
));
604 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
607 req
= (struct ti_sci_msg_req_get_device_state
*)xfer
->xfer_buf
;
610 ret
= ti_sci_do_xfer(info
, xfer
);
612 dev_err(dev
, "Mbox send fail %d\n", ret
);
616 resp
= (struct ti_sci_msg_resp_get_device_state
*)xfer
->xfer_buf
;
617 if (!ti_sci_is_response_ack(resp
)) {
623 *clcnt
= resp
->context_loss_count
;
625 *resets
= resp
->resets
;
627 *p_state
= resp
->programmed_state
;
629 *c_state
= resp
->current_state
;
631 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
637 * ti_sci_cmd_get_device() - command to request for device managed by TISCI
638 * @handle: Pointer to TISCI handle as retrieved by *ti_sci_get_handle
639 * @id: Device Identifier
641 * Request for the device - NOTE: the client MUST maintain integrity of
642 * usage count by balancing get_device with put_device. No refcounting is
643 * managed by driver for that purpose.
645 * NOTE: The request is for exclusive access for the processor.
647 * Return: 0 if all went fine, else return appropriate error.
649 static int ti_sci_cmd_get_device(const struct ti_sci_handle
*handle
, u32 id
)
651 return ti_sci_set_device_state(handle
, id
,
652 MSG_FLAG_DEVICE_EXCLUSIVE
,
653 MSG_DEVICE_SW_STATE_ON
);
657 * ti_sci_cmd_idle_device() - Command to idle a device managed by TISCI
658 * @handle: Pointer to TISCI handle as retrieved by *ti_sci_get_handle
659 * @id: Device Identifier
661 * Request for the device - NOTE: the client MUST maintain integrity of
662 * usage count by balancing get_device with put_device. No refcounting is
663 * managed by driver for that purpose.
665 * Return: 0 if all went fine, else return appropriate error.
667 static int ti_sci_cmd_idle_device(const struct ti_sci_handle
*handle
, u32 id
)
669 return ti_sci_set_device_state(handle
, id
,
670 MSG_FLAG_DEVICE_EXCLUSIVE
,
671 MSG_DEVICE_SW_STATE_RETENTION
);
675 * ti_sci_cmd_put_device() - command to release a device managed by TISCI
676 * @handle: Pointer to TISCI handle as retrieved by *ti_sci_get_handle
677 * @id: Device Identifier
679 * Request for the device - NOTE: the client MUST maintain integrity of
680 * usage count by balancing get_device with put_device. No refcounting is
681 * managed by driver for that purpose.
683 * Return: 0 if all went fine, else return appropriate error.
685 static int ti_sci_cmd_put_device(const struct ti_sci_handle
*handle
, u32 id
)
687 return ti_sci_set_device_state(handle
, id
,
688 0, MSG_DEVICE_SW_STATE_AUTO_OFF
);
692 * ti_sci_cmd_dev_is_valid() - Is the device valid
693 * @handle: Pointer to TISCI handle as retrieved by *ti_sci_get_handle
694 * @id: Device Identifier
696 * Return: 0 if all went fine and the device ID is valid, else return
699 static int ti_sci_cmd_dev_is_valid(const struct ti_sci_handle
*handle
, u32 id
)
703 /* check the device state which will also tell us if the ID is valid */
704 return ti_sci_get_device_state(handle
, id
, NULL
, NULL
, NULL
, &unused
);
708 * ti_sci_cmd_dev_get_clcnt() - Get context loss counter
709 * @handle: Pointer to TISCI handle
710 * @id: Device Identifier
711 * @count: Pointer to Context Loss counter to populate
713 * Return: 0 if all went fine, else return appropriate error.
715 static int ti_sci_cmd_dev_get_clcnt(const struct ti_sci_handle
*handle
, u32 id
,
718 return ti_sci_get_device_state(handle
, id
, count
, NULL
, NULL
, NULL
);
722 * ti_sci_cmd_dev_is_idle() - Check if the device is requested to be idle
723 * @handle: Pointer to TISCI handle
724 * @id: Device Identifier
725 * @r_state: true if requested to be idle
727 * Return: 0 if all went fine, else return appropriate error.
729 static int ti_sci_cmd_dev_is_idle(const struct ti_sci_handle
*handle
, u32 id
,
738 ret
= ti_sci_get_device_state(handle
, id
, NULL
, NULL
, &state
, NULL
);
742 *r_state
= (state
== MSG_DEVICE_SW_STATE_RETENTION
);
748 * ti_sci_cmd_dev_is_stop() - Check if the device is requested to be stopped
749 * @handle: Pointer to TISCI handle
750 * @id: Device Identifier
751 * @r_state: true if requested to be stopped
752 * @curr_state: true if currently stopped.
754 * Return: 0 if all went fine, else return appropriate error.
756 static int ti_sci_cmd_dev_is_stop(const struct ti_sci_handle
*handle
, u32 id
,
757 bool *r_state
, bool *curr_state
)
762 if (!r_state
&& !curr_state
)
766 ti_sci_get_device_state(handle
, id
, NULL
, NULL
, &p_state
, &c_state
);
771 *r_state
= (p_state
== MSG_DEVICE_SW_STATE_AUTO_OFF
);
773 *curr_state
= (c_state
== MSG_DEVICE_HW_STATE_OFF
);
779 * ti_sci_cmd_dev_is_on() - Check if the device is requested to be ON
780 * @handle: Pointer to TISCI handle
781 * @id: Device Identifier
782 * @r_state: true if requested to be ON
783 * @curr_state: true if currently ON and active
785 * Return: 0 if all went fine, else return appropriate error.
787 static int ti_sci_cmd_dev_is_on(const struct ti_sci_handle
*handle
, u32 id
,
788 bool *r_state
, bool *curr_state
)
793 if (!r_state
&& !curr_state
)
797 ti_sci_get_device_state(handle
, id
, NULL
, NULL
, &p_state
, &c_state
);
802 *r_state
= (p_state
== MSG_DEVICE_SW_STATE_ON
);
804 *curr_state
= (c_state
== MSG_DEVICE_HW_STATE_ON
);
810 * ti_sci_cmd_dev_is_trans() - Check if the device is currently transitioning
811 * @handle: Pointer to TISCI handle
812 * @id: Device Identifier
813 * @curr_state: true if currently transitioning.
815 * Return: 0 if all went fine, else return appropriate error.
817 static int ti_sci_cmd_dev_is_trans(const struct ti_sci_handle
*handle
, u32 id
,
826 ret
= ti_sci_get_device_state(handle
, id
, NULL
, NULL
, NULL
, &state
);
830 *curr_state
= (state
== MSG_DEVICE_HW_STATE_TRANS
);
836 * ti_sci_cmd_set_device_resets() - command to set resets for device managed
838 * @handle: Pointer to TISCI handle as retrieved by *ti_sci_get_handle
839 * @id: Device Identifier
840 * @reset_state: Device specific reset bit field
842 * Return: 0 if all went fine, else return appropriate error.
844 static int ti_sci_cmd_set_device_resets(const struct ti_sci_handle
*handle
,
845 u32 id
, u32 reset_state
)
847 struct ti_sci_info
*info
;
848 struct ti_sci_msg_req_set_device_resets
*req
;
849 struct ti_sci_msg_hdr
*resp
;
850 struct ti_sci_xfer
*xfer
;
855 return PTR_ERR(handle
);
859 info
= handle_to_ti_sci_info(handle
);
862 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_SET_DEVICE_RESETS
,
863 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
864 sizeof(*req
), sizeof(*resp
));
867 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
870 req
= (struct ti_sci_msg_req_set_device_resets
*)xfer
->xfer_buf
;
872 req
->resets
= reset_state
;
874 ret
= ti_sci_do_xfer(info
, xfer
);
876 dev_err(dev
, "Mbox send fail %d\n", ret
);
880 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
882 ret
= ti_sci_is_response_ack(resp
) ? 0 : -ENODEV
;
885 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
891 * ti_sci_cmd_get_device_resets() - Get reset state for device managed
893 * @handle: Pointer to TISCI handle
894 * @id: Device Identifier
895 * @reset_state: Pointer to reset state to populate
897 * Return: 0 if all went fine, else return appropriate error.
899 static int ti_sci_cmd_get_device_resets(const struct ti_sci_handle
*handle
,
900 u32 id
, u32
*reset_state
)
902 return ti_sci_get_device_state(handle
, id
, NULL
, reset_state
, NULL
,
907 * ti_sci_set_clock_state() - Set clock state helper
908 * @handle: pointer to TI SCI handle
909 * @dev_id: Device identifier this request is for
910 * @clk_id: Clock identifier for the device for this request.
911 * Each device has it's own set of clock inputs. This indexes
912 * which clock input to modify.
913 * @flags: Header flags as needed
914 * @state: State to request for the clock.
916 * Return: 0 if all went well, else returns appropriate error value.
918 static int ti_sci_set_clock_state(const struct ti_sci_handle
*handle
,
919 u32 dev_id
, u8 clk_id
,
922 struct ti_sci_info
*info
;
923 struct ti_sci_msg_req_set_clock_state
*req
;
924 struct ti_sci_msg_hdr
*resp
;
925 struct ti_sci_xfer
*xfer
;
930 return PTR_ERR(handle
);
934 info
= handle_to_ti_sci_info(handle
);
937 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_SET_CLOCK_STATE
,
938 flags
| TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
939 sizeof(*req
), sizeof(*resp
));
942 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
945 req
= (struct ti_sci_msg_req_set_clock_state
*)xfer
->xfer_buf
;
946 req
->dev_id
= dev_id
;
947 req
->clk_id
= clk_id
;
948 req
->request_state
= state
;
950 ret
= ti_sci_do_xfer(info
, xfer
);
952 dev_err(dev
, "Mbox send fail %d\n", ret
);
956 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
958 ret
= ti_sci_is_response_ack(resp
) ? 0 : -ENODEV
;
961 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
967 * ti_sci_cmd_get_clock_state() - Get clock state helper
968 * @handle: pointer to TI SCI handle
969 * @dev_id: Device identifier this request is for
970 * @clk_id: Clock identifier for the device for this request.
971 * Each device has it's own set of clock inputs. This indexes
972 * which clock input to modify.
973 * @programmed_state: State requested for clock to move to
974 * @current_state: State that the clock is currently in
976 * Return: 0 if all went well, else returns appropriate error value.
978 static int ti_sci_cmd_get_clock_state(const struct ti_sci_handle
*handle
,
979 u32 dev_id
, u8 clk_id
,
980 u8
*programmed_state
, u8
*current_state
)
982 struct ti_sci_info
*info
;
983 struct ti_sci_msg_req_get_clock_state
*req
;
984 struct ti_sci_msg_resp_get_clock_state
*resp
;
985 struct ti_sci_xfer
*xfer
;
990 return PTR_ERR(handle
);
994 if (!programmed_state
&& !current_state
)
997 info
= handle_to_ti_sci_info(handle
);
1000 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_GET_CLOCK_STATE
,
1001 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1002 sizeof(*req
), sizeof(*resp
));
1004 ret
= PTR_ERR(xfer
);
1005 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1008 req
= (struct ti_sci_msg_req_get_clock_state
*)xfer
->xfer_buf
;
1009 req
->dev_id
= dev_id
;
1010 req
->clk_id
= clk_id
;
1012 ret
= ti_sci_do_xfer(info
, xfer
);
1014 dev_err(dev
, "Mbox send fail %d\n", ret
);
1018 resp
= (struct ti_sci_msg_resp_get_clock_state
*)xfer
->xfer_buf
;
1020 if (!ti_sci_is_response_ack(resp
)) {
1025 if (programmed_state
)
1026 *programmed_state
= resp
->programmed_state
;
1028 *current_state
= resp
->current_state
;
1031 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1037 * ti_sci_cmd_get_clock() - Get control of a clock from TI SCI
1038 * @handle: pointer to TI SCI handle
1039 * @dev_id: Device identifier this request is for
1040 * @clk_id: Clock identifier for the device for this request.
1041 * Each device has it's own set of clock inputs. This indexes
1042 * which clock input to modify.
1043 * @needs_ssc: 'true' if Spread Spectrum clock is desired, else 'false'
1044 * @can_change_freq: 'true' if frequency change is desired, else 'false'
1045 * @enable_input_term: 'true' if input termination is desired, else 'false'
1047 * Return: 0 if all went well, else returns appropriate error value.
1049 static int ti_sci_cmd_get_clock(const struct ti_sci_handle
*handle
, u32 dev_id
,
1050 u8 clk_id
, bool needs_ssc
, bool can_change_freq
,
1051 bool enable_input_term
)
1055 flags
|= needs_ssc
? MSG_FLAG_CLOCK_ALLOW_SSC
: 0;
1056 flags
|= can_change_freq
? MSG_FLAG_CLOCK_ALLOW_FREQ_CHANGE
: 0;
1057 flags
|= enable_input_term
? MSG_FLAG_CLOCK_INPUT_TERM
: 0;
1059 return ti_sci_set_clock_state(handle
, dev_id
, clk_id
, flags
,
1060 MSG_CLOCK_SW_STATE_REQ
);
1064 * ti_sci_cmd_idle_clock() - Idle a clock which is in our control
1065 * @handle: pointer to TI SCI handle
1066 * @dev_id: Device identifier this request is for
1067 * @clk_id: Clock identifier for the device for this request.
1068 * Each device has it's own set of clock inputs. This indexes
1069 * which clock input to modify.
1071 * NOTE: This clock must have been requested by get_clock previously.
1073 * Return: 0 if all went well, else returns appropriate error value.
1075 static int ti_sci_cmd_idle_clock(const struct ti_sci_handle
*handle
,
1076 u32 dev_id
, u8 clk_id
)
1078 return ti_sci_set_clock_state(handle
, dev_id
, clk_id
, 0,
1079 MSG_CLOCK_SW_STATE_UNREQ
);
1083 * ti_sci_cmd_put_clock() - Release a clock from our control back to TISCI
1084 * @handle: pointer to TI SCI handle
1085 * @dev_id: Device identifier this request is for
1086 * @clk_id: Clock identifier for the device for this request.
1087 * Each device has it's own set of clock inputs. This indexes
1088 * which clock input to modify.
1090 * NOTE: This clock must have been requested by get_clock previously.
1092 * Return: 0 if all went well, else returns appropriate error value.
1094 static int ti_sci_cmd_put_clock(const struct ti_sci_handle
*handle
,
1095 u32 dev_id
, u8 clk_id
)
1097 return ti_sci_set_clock_state(handle
, dev_id
, clk_id
, 0,
1098 MSG_CLOCK_SW_STATE_AUTO
);
1102 * ti_sci_cmd_clk_is_auto() - Is the clock being auto managed
1103 * @handle: pointer to TI SCI handle
1104 * @dev_id: Device identifier this request is for
1105 * @clk_id: Clock identifier for the device for this request.
1106 * Each device has it's own set of clock inputs. This indexes
1107 * which clock input to modify.
1108 * @req_state: state indicating if the clock is auto managed
1110 * Return: 0 if all went well, else returns appropriate error value.
1112 static int ti_sci_cmd_clk_is_auto(const struct ti_sci_handle
*handle
,
1113 u32 dev_id
, u8 clk_id
, bool *req_state
)
1121 ret
= ti_sci_cmd_get_clock_state(handle
, dev_id
, clk_id
, &state
, NULL
);
1125 *req_state
= (state
== MSG_CLOCK_SW_STATE_AUTO
);
1130 * ti_sci_cmd_clk_is_on() - Is the clock ON
1131 * @handle: pointer to TI SCI handle
1132 * @dev_id: Device identifier this request is for
1133 * @clk_id: Clock identifier for the device for this request.
1134 * Each device has it's own set of clock inputs. This indexes
1135 * which clock input to modify.
1136 * @req_state: state indicating if the clock is managed by us and enabled
1137 * @curr_state: state indicating if the clock is ready for operation
1139 * Return: 0 if all went well, else returns appropriate error value.
1141 static int ti_sci_cmd_clk_is_on(const struct ti_sci_handle
*handle
, u32 dev_id
,
1142 u8 clk_id
, bool *req_state
, bool *curr_state
)
1144 u8 c_state
= 0, r_state
= 0;
1147 if (!req_state
&& !curr_state
)
1150 ret
= ti_sci_cmd_get_clock_state(handle
, dev_id
, clk_id
,
1151 &r_state
, &c_state
);
1156 *req_state
= (r_state
== MSG_CLOCK_SW_STATE_REQ
);
1158 *curr_state
= (c_state
== MSG_CLOCK_HW_STATE_READY
);
1163 * ti_sci_cmd_clk_is_off() - Is the clock OFF
1164 * @handle: pointer to TI SCI handle
1165 * @dev_id: Device identifier this request is for
1166 * @clk_id: Clock identifier for the device for this request.
1167 * Each device has it's own set of clock inputs. This indexes
1168 * which clock input to modify.
1169 * @req_state: state indicating if the clock is managed by us and disabled
1170 * @curr_state: state indicating if the clock is NOT ready for operation
1172 * Return: 0 if all went well, else returns appropriate error value.
1174 static int ti_sci_cmd_clk_is_off(const struct ti_sci_handle
*handle
, u32 dev_id
,
1175 u8 clk_id
, bool *req_state
, bool *curr_state
)
1177 u8 c_state
= 0, r_state
= 0;
1180 if (!req_state
&& !curr_state
)
1183 ret
= ti_sci_cmd_get_clock_state(handle
, dev_id
, clk_id
,
1184 &r_state
, &c_state
);
1189 *req_state
= (r_state
== MSG_CLOCK_SW_STATE_UNREQ
);
1191 *curr_state
= (c_state
== MSG_CLOCK_HW_STATE_NOT_READY
);
1196 * ti_sci_cmd_clk_set_parent() - Set the clock source of a specific device clock
1197 * @handle: pointer to TI SCI handle
1198 * @dev_id: Device identifier this request is for
1199 * @clk_id: Clock identifier for the device for this request.
1200 * Each device has it's own set of clock inputs. This indexes
1201 * which clock input to modify.
1202 * @parent_id: Parent clock identifier to set
1204 * Return: 0 if all went well, else returns appropriate error value.
1206 static int ti_sci_cmd_clk_set_parent(const struct ti_sci_handle
*handle
,
1207 u32 dev_id
, u8 clk_id
, u8 parent_id
)
1209 struct ti_sci_info
*info
;
1210 struct ti_sci_msg_req_set_clock_parent
*req
;
1211 struct ti_sci_msg_hdr
*resp
;
1212 struct ti_sci_xfer
*xfer
;
1217 return PTR_ERR(handle
);
1221 info
= handle_to_ti_sci_info(handle
);
1224 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_SET_CLOCK_PARENT
,
1225 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1226 sizeof(*req
), sizeof(*resp
));
1228 ret
= PTR_ERR(xfer
);
1229 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1232 req
= (struct ti_sci_msg_req_set_clock_parent
*)xfer
->xfer_buf
;
1233 req
->dev_id
= dev_id
;
1234 req
->clk_id
= clk_id
;
1235 req
->parent_id
= parent_id
;
1237 ret
= ti_sci_do_xfer(info
, xfer
);
1239 dev_err(dev
, "Mbox send fail %d\n", ret
);
1243 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
1245 ret
= ti_sci_is_response_ack(resp
) ? 0 : -ENODEV
;
1248 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1254 * ti_sci_cmd_clk_get_parent() - Get current parent clock source
1255 * @handle: pointer to TI SCI handle
1256 * @dev_id: Device identifier this request is for
1257 * @clk_id: Clock identifier for the device for this request.
1258 * Each device has it's own set of clock inputs. This indexes
1259 * which clock input to modify.
1260 * @parent_id: Current clock parent
1262 * Return: 0 if all went well, else returns appropriate error value.
1264 static int ti_sci_cmd_clk_get_parent(const struct ti_sci_handle
*handle
,
1265 u32 dev_id
, u8 clk_id
, u8
*parent_id
)
1267 struct ti_sci_info
*info
;
1268 struct ti_sci_msg_req_get_clock_parent
*req
;
1269 struct ti_sci_msg_resp_get_clock_parent
*resp
;
1270 struct ti_sci_xfer
*xfer
;
1275 return PTR_ERR(handle
);
1276 if (!handle
|| !parent_id
)
1279 info
= handle_to_ti_sci_info(handle
);
1282 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_GET_CLOCK_PARENT
,
1283 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1284 sizeof(*req
), sizeof(*resp
));
1286 ret
= PTR_ERR(xfer
);
1287 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1290 req
= (struct ti_sci_msg_req_get_clock_parent
*)xfer
->xfer_buf
;
1291 req
->dev_id
= dev_id
;
1292 req
->clk_id
= clk_id
;
1294 ret
= ti_sci_do_xfer(info
, xfer
);
1296 dev_err(dev
, "Mbox send fail %d\n", ret
);
1300 resp
= (struct ti_sci_msg_resp_get_clock_parent
*)xfer
->xfer_buf
;
1302 if (!ti_sci_is_response_ack(resp
))
1305 *parent_id
= resp
->parent_id
;
1308 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1314 * ti_sci_cmd_clk_get_num_parents() - Get num parents of the current clk source
1315 * @handle: pointer to TI SCI handle
1316 * @dev_id: Device identifier this request is for
1317 * @clk_id: Clock identifier for the device for this request.
1318 * Each device has it's own set of clock inputs. This indexes
1319 * which clock input to modify.
1320 * @num_parents: Returns he number of parents to the current clock.
1322 * Return: 0 if all went well, else returns appropriate error value.
1324 static int ti_sci_cmd_clk_get_num_parents(const struct ti_sci_handle
*handle
,
1325 u32 dev_id
, u8 clk_id
,
1328 struct ti_sci_info
*info
;
1329 struct ti_sci_msg_req_get_clock_num_parents
*req
;
1330 struct ti_sci_msg_resp_get_clock_num_parents
*resp
;
1331 struct ti_sci_xfer
*xfer
;
1336 return PTR_ERR(handle
);
1337 if (!handle
|| !num_parents
)
1340 info
= handle_to_ti_sci_info(handle
);
1343 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_GET_NUM_CLOCK_PARENTS
,
1344 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1345 sizeof(*req
), sizeof(*resp
));
1347 ret
= PTR_ERR(xfer
);
1348 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1351 req
= (struct ti_sci_msg_req_get_clock_num_parents
*)xfer
->xfer_buf
;
1352 req
->dev_id
= dev_id
;
1353 req
->clk_id
= clk_id
;
1355 ret
= ti_sci_do_xfer(info
, xfer
);
1357 dev_err(dev
, "Mbox send fail %d\n", ret
);
1361 resp
= (struct ti_sci_msg_resp_get_clock_num_parents
*)xfer
->xfer_buf
;
1363 if (!ti_sci_is_response_ack(resp
))
1366 *num_parents
= resp
->num_parents
;
1369 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1375 * ti_sci_cmd_clk_get_match_freq() - Find a good match for frequency
1376 * @handle: pointer to TI SCI handle
1377 * @dev_id: Device identifier this request is for
1378 * @clk_id: Clock identifier for the device for this request.
1379 * Each device has it's own set of clock inputs. This indexes
1380 * which clock input to modify.
1381 * @min_freq: The minimum allowable frequency in Hz. This is the minimum
1382 * allowable programmed frequency and does not account for clock
1383 * tolerances and jitter.
1384 * @target_freq: The target clock frequency in Hz. A frequency will be
1385 * processed as close to this target frequency as possible.
1386 * @max_freq: The maximum allowable frequency in Hz. This is the maximum
1387 * allowable programmed frequency and does not account for clock
1388 * tolerances and jitter.
1389 * @match_freq: Frequency match in Hz response.
1391 * Return: 0 if all went well, else returns appropriate error value.
1393 static int ti_sci_cmd_clk_get_match_freq(const struct ti_sci_handle
*handle
,
1394 u32 dev_id
, u8 clk_id
, u64 min_freq
,
1395 u64 target_freq
, u64 max_freq
,
1398 struct ti_sci_info
*info
;
1399 struct ti_sci_msg_req_query_clock_freq
*req
;
1400 struct ti_sci_msg_resp_query_clock_freq
*resp
;
1401 struct ti_sci_xfer
*xfer
;
1406 return PTR_ERR(handle
);
1407 if (!handle
|| !match_freq
)
1410 info
= handle_to_ti_sci_info(handle
);
1413 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_QUERY_CLOCK_FREQ
,
1414 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1415 sizeof(*req
), sizeof(*resp
));
1417 ret
= PTR_ERR(xfer
);
1418 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1421 req
= (struct ti_sci_msg_req_query_clock_freq
*)xfer
->xfer_buf
;
1422 req
->dev_id
= dev_id
;
1423 req
->clk_id
= clk_id
;
1424 req
->min_freq_hz
= min_freq
;
1425 req
->target_freq_hz
= target_freq
;
1426 req
->max_freq_hz
= max_freq
;
1428 ret
= ti_sci_do_xfer(info
, xfer
);
1430 dev_err(dev
, "Mbox send fail %d\n", ret
);
1434 resp
= (struct ti_sci_msg_resp_query_clock_freq
*)xfer
->xfer_buf
;
1436 if (!ti_sci_is_response_ack(resp
))
1439 *match_freq
= resp
->freq_hz
;
1442 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1448 * ti_sci_cmd_clk_set_freq() - Set a frequency for clock
1449 * @handle: pointer to TI SCI handle
1450 * @dev_id: Device identifier this request is for
1451 * @clk_id: Clock identifier for the device for this request.
1452 * Each device has it's own set of clock inputs. This indexes
1453 * which clock input to modify.
1454 * @min_freq: The minimum allowable frequency in Hz. This is the minimum
1455 * allowable programmed frequency and does not account for clock
1456 * tolerances and jitter.
1457 * @target_freq: The target clock frequency in Hz. A frequency will be
1458 * processed as close to this target frequency as possible.
1459 * @max_freq: The maximum allowable frequency in Hz. This is the maximum
1460 * allowable programmed frequency and does not account for clock
1461 * tolerances and jitter.
1463 * Return: 0 if all went well, else returns appropriate error value.
1465 static int ti_sci_cmd_clk_set_freq(const struct ti_sci_handle
*handle
,
1466 u32 dev_id
, u8 clk_id
, u64 min_freq
,
1467 u64 target_freq
, u64 max_freq
)
1469 struct ti_sci_info
*info
;
1470 struct ti_sci_msg_req_set_clock_freq
*req
;
1471 struct ti_sci_msg_hdr
*resp
;
1472 struct ti_sci_xfer
*xfer
;
1477 return PTR_ERR(handle
);
1481 info
= handle_to_ti_sci_info(handle
);
1484 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_SET_CLOCK_FREQ
,
1485 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1486 sizeof(*req
), sizeof(*resp
));
1488 ret
= PTR_ERR(xfer
);
1489 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1492 req
= (struct ti_sci_msg_req_set_clock_freq
*)xfer
->xfer_buf
;
1493 req
->dev_id
= dev_id
;
1494 req
->clk_id
= clk_id
;
1495 req
->min_freq_hz
= min_freq
;
1496 req
->target_freq_hz
= target_freq
;
1497 req
->max_freq_hz
= max_freq
;
1499 ret
= ti_sci_do_xfer(info
, xfer
);
1501 dev_err(dev
, "Mbox send fail %d\n", ret
);
1505 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
1507 ret
= ti_sci_is_response_ack(resp
) ? 0 : -ENODEV
;
1510 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1516 * ti_sci_cmd_clk_get_freq() - Get current frequency
1517 * @handle: pointer to TI SCI handle
1518 * @dev_id: Device identifier this request is for
1519 * @clk_id: Clock identifier for the device for this request.
1520 * Each device has it's own set of clock inputs. This indexes
1521 * which clock input to modify.
1522 * @freq: Currently frequency in Hz
1524 * Return: 0 if all went well, else returns appropriate error value.
1526 static int ti_sci_cmd_clk_get_freq(const struct ti_sci_handle
*handle
,
1527 u32 dev_id
, u8 clk_id
, u64
*freq
)
1529 struct ti_sci_info
*info
;
1530 struct ti_sci_msg_req_get_clock_freq
*req
;
1531 struct ti_sci_msg_resp_get_clock_freq
*resp
;
1532 struct ti_sci_xfer
*xfer
;
1537 return PTR_ERR(handle
);
1538 if (!handle
|| !freq
)
1541 info
= handle_to_ti_sci_info(handle
);
1544 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_GET_CLOCK_FREQ
,
1545 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1546 sizeof(*req
), sizeof(*resp
));
1548 ret
= PTR_ERR(xfer
);
1549 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1552 req
= (struct ti_sci_msg_req_get_clock_freq
*)xfer
->xfer_buf
;
1553 req
->dev_id
= dev_id
;
1554 req
->clk_id
= clk_id
;
1556 ret
= ti_sci_do_xfer(info
, xfer
);
1558 dev_err(dev
, "Mbox send fail %d\n", ret
);
1562 resp
= (struct ti_sci_msg_resp_get_clock_freq
*)xfer
->xfer_buf
;
1564 if (!ti_sci_is_response_ack(resp
))
1567 *freq
= resp
->freq_hz
;
1570 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1575 static int ti_sci_cmd_core_reboot(const struct ti_sci_handle
*handle
)
1577 struct ti_sci_info
*info
;
1578 struct ti_sci_msg_req_reboot
*req
;
1579 struct ti_sci_msg_hdr
*resp
;
1580 struct ti_sci_xfer
*xfer
;
1585 return PTR_ERR(handle
);
1589 info
= handle_to_ti_sci_info(handle
);
1592 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_SYS_RESET
,
1593 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1594 sizeof(*req
), sizeof(*resp
));
1596 ret
= PTR_ERR(xfer
);
1597 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1600 req
= (struct ti_sci_msg_req_reboot
*)xfer
->xfer_buf
;
1602 ret
= ti_sci_do_xfer(info
, xfer
);
1604 dev_err(dev
, "Mbox send fail %d\n", ret
);
1608 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
1610 if (!ti_sci_is_response_ack(resp
))
1616 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1621 static int ti_sci_get_resource_type(struct ti_sci_info
*info
, u16 dev_id
,
1624 struct ti_sci_rm_type_map
*rm_type_map
= info
->desc
->rm_type_map
;
1628 /* If map is not provided then assume dev_id is used as type */
1634 for (i
= 0; rm_type_map
[i
].dev_id
; i
++) {
1635 if (rm_type_map
[i
].dev_id
== dev_id
) {
1636 *type
= rm_type_map
[i
].type
;
1649 * ti_sci_get_resource_range - Helper to get a range of resources assigned
1650 * to a host. Resource is uniquely identified by
1652 * @handle: Pointer to TISCI handle.
1653 * @dev_id: TISCI device ID.
1654 * @subtype: Resource assignment subtype that is being requested
1655 * from the given device.
1656 * @s_host: Host processor ID to which the resources are allocated
1657 * @range_start: Start index of the resource range
1658 * @range_num: Number of resources in the range
1660 * Return: 0 if all went fine, else return appropriate error.
1662 static int ti_sci_get_resource_range(const struct ti_sci_handle
*handle
,
1663 u32 dev_id
, u8 subtype
, u8 s_host
,
1664 u16
*range_start
, u16
*range_num
)
1666 struct ti_sci_msg_resp_get_resource_range
*resp
;
1667 struct ti_sci_msg_req_get_resource_range
*req
;
1668 struct ti_sci_xfer
*xfer
;
1669 struct ti_sci_info
*info
;
1675 return PTR_ERR(handle
);
1679 info
= handle_to_ti_sci_info(handle
);
1682 xfer
= ti_sci_get_one_xfer(info
, TI_SCI_MSG_GET_RESOURCE_RANGE
,
1683 TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1684 sizeof(*req
), sizeof(*resp
));
1686 ret
= PTR_ERR(xfer
);
1687 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1691 ret
= ti_sci_get_resource_type(info
, dev_id
, &type
);
1693 dev_err(dev
, "rm type lookup failed for %u\n", dev_id
);
1697 req
= (struct ti_sci_msg_req_get_resource_range
*)xfer
->xfer_buf
;
1698 req
->secondary_host
= s_host
;
1699 req
->type
= type
& MSG_RM_RESOURCE_TYPE_MASK
;
1700 req
->subtype
= subtype
& MSG_RM_RESOURCE_SUBTYPE_MASK
;
1702 ret
= ti_sci_do_xfer(info
, xfer
);
1704 dev_err(dev
, "Mbox send fail %d\n", ret
);
1708 resp
= (struct ti_sci_msg_resp_get_resource_range
*)xfer
->xfer_buf
;
1710 if (!ti_sci_is_response_ack(resp
)) {
1712 } else if (!resp
->range_start
&& !resp
->range_num
) {
1715 *range_start
= resp
->range_start
;
1716 *range_num
= resp
->range_num
;
1720 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1726 * ti_sci_cmd_get_resource_range - Get a range of resources assigned to host
1727 * that is same as ti sci interface host.
1728 * @handle: Pointer to TISCI handle.
1729 * @dev_id: TISCI device ID.
1730 * @subtype: Resource assignment subtype that is being requested
1731 * from the given device.
1732 * @range_start: Start index of the resource range
1733 * @range_num: Number of resources in the range
1735 * Return: 0 if all went fine, else return appropriate error.
1737 static int ti_sci_cmd_get_resource_range(const struct ti_sci_handle
*handle
,
1738 u32 dev_id
, u8 subtype
,
1739 u16
*range_start
, u16
*range_num
)
1741 return ti_sci_get_resource_range(handle
, dev_id
, subtype
,
1742 TI_SCI_IRQ_SECONDARY_HOST_INVALID
,
1743 range_start
, range_num
);
1747 * ti_sci_cmd_get_resource_range_from_shost - Get a range of resources
1748 * assigned to a specified host.
1749 * @handle: Pointer to TISCI handle.
1750 * @dev_id: TISCI device ID.
1751 * @subtype: Resource assignment subtype that is being requested
1752 * from the given device.
1753 * @s_host: Host processor ID to which the resources are allocated
1754 * @range_start: Start index of the resource range
1755 * @range_num: Number of resources in the range
1757 * Return: 0 if all went fine, else return appropriate error.
1760 int ti_sci_cmd_get_resource_range_from_shost(const struct ti_sci_handle
*handle
,
1761 u32 dev_id
, u8 subtype
, u8 s_host
,
1762 u16
*range_start
, u16
*range_num
)
1764 return ti_sci_get_resource_range(handle
, dev_id
, subtype
, s_host
,
1765 range_start
, range_num
);
1769 * ti_sci_manage_irq() - Helper api to configure/release the irq route between
1770 * the requested source and destination
1771 * @handle: Pointer to TISCI handle.
1772 * @valid_params: Bit fields defining the validity of certain params
1773 * @src_id: Device ID of the IRQ source
1774 * @src_index: IRQ source index within the source device
1775 * @dst_id: Device ID of the IRQ destination
1776 * @dst_host_irq: IRQ number of the destination device
1777 * @ia_id: Device ID of the IA, if the IRQ flows through this IA
1778 * @vint: Virtual interrupt to be used within the IA
1779 * @global_event: Global event number to be used for the requesting event
1780 * @vint_status_bit: Virtual interrupt status bit to be used for the event
1781 * @s_host: Secondary host ID to which the irq/event is being
1783 * @type: Request type irq set or release.
1785 * Return: 0 if all went fine, else return appropriate error.
1787 static int ti_sci_manage_irq(const struct ti_sci_handle
*handle
,
1788 u32 valid_params
, u16 src_id
, u16 src_index
,
1789 u16 dst_id
, u16 dst_host_irq
, u16 ia_id
, u16 vint
,
1790 u16 global_event
, u8 vint_status_bit
, u8 s_host
,
1793 struct ti_sci_msg_req_manage_irq
*req
;
1794 struct ti_sci_msg_hdr
*resp
;
1795 struct ti_sci_xfer
*xfer
;
1796 struct ti_sci_info
*info
;
1801 return PTR_ERR(handle
);
1805 info
= handle_to_ti_sci_info(handle
);
1808 xfer
= ti_sci_get_one_xfer(info
, type
, TI_SCI_FLAG_REQ_ACK_ON_PROCESSED
,
1809 sizeof(*req
), sizeof(*resp
));
1811 ret
= PTR_ERR(xfer
);
1812 dev_err(dev
, "Message alloc failed(%d)\n", ret
);
1815 req
= (struct ti_sci_msg_req_manage_irq
*)xfer
->xfer_buf
;
1816 req
->valid_params
= valid_params
;
1817 req
->src_id
= src_id
;
1818 req
->src_index
= src_index
;
1819 req
->dst_id
= dst_id
;
1820 req
->dst_host_irq
= dst_host_irq
;
1823 req
->global_event
= global_event
;
1824 req
->vint_status_bit
= vint_status_bit
;
1825 req
->secondary_host
= s_host
;
1827 ret
= ti_sci_do_xfer(info
, xfer
);
1829 dev_err(dev
, "Mbox send fail %d\n", ret
);
1833 resp
= (struct ti_sci_msg_hdr
*)xfer
->xfer_buf
;
1835 ret
= ti_sci_is_response_ack(resp
) ? 0 : -ENODEV
;
1838 ti_sci_put_one_xfer(&info
->minfo
, xfer
);
1844 * ti_sci_set_irq() - Helper api to configure the irq route between the
1845 * requested source and destination
1846 * @handle: Pointer to TISCI handle.
1847 * @valid_params: Bit fields defining the validity of certain params
1848 * @src_id: Device ID of the IRQ source
1849 * @src_index: IRQ source index within the source device
1850 * @dst_id: Device ID of the IRQ destination
1851 * @dst_host_irq: IRQ number of the destination device
1852 * @ia_id: Device ID of the IA, if the IRQ flows through this IA
1853 * @vint: Virtual interrupt to be used within the IA
1854 * @global_event: Global event number to be used for the requesting event
1855 * @vint_status_bit: Virtual interrupt status bit to be used for the event
1856 * @s_host: Secondary host ID to which the irq/event is being
1859 * Return: 0 if all went fine, else return appropriate error.
1861 static int ti_sci_set_irq(const struct ti_sci_handle
*handle
, u32 valid_params
,
1862 u16 src_id
, u16 src_index
, u16 dst_id
,
1863 u16 dst_host_irq
, u16 ia_id
, u16 vint
,
1864 u16 global_event
, u8 vint_status_bit
, u8 s_host
)
1866 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",
1867 __func__
, valid_params
, src_id
, src_index
,
1868 dst_id
, dst_host_irq
, ia_id
, vint
, global_event
,
1871 return ti_sci_manage_irq(handle
, valid_params
, src_id
, src_index
,
1872 dst_id
, dst_host_irq
, ia_id
, vint
,
1873 global_event
, vint_status_bit
, s_host
,
1874 TI_SCI_MSG_SET_IRQ
);
1878 * ti_sci_free_irq() - Helper api to free the irq route between the
1879 * requested source and destination
1880 * @handle: Pointer to TISCI handle.
1881 * @valid_params: Bit fields defining the validity of certain params
1882 * @src_id: Device ID of the IRQ source
1883 * @src_index: IRQ source index within the source device
1884 * @dst_id: Device ID of the IRQ destination
1885 * @dst_host_irq: IRQ number of the destination device
1886 * @ia_id: Device ID of the IA, if the IRQ flows through this IA
1887 * @vint: Virtual interrupt to be used within the IA
1888 * @global_event: Global event number to be used for the requesting event
1889 * @vint_status_bit: Virtual interrupt status bit to be used for the event
1890 * @s_host: Secondary host ID to which the irq/event is being
1893 * Return: 0 if all went fine, else return appropriate error.
1895 static int ti_sci_free_irq(const struct ti_sci_handle
*handle
, u32 valid_params
,
1896 u16 src_id
, u16 src_index
, u16 dst_id
,
1897 u16 dst_host_irq
, u16 ia_id
, u16 vint
,
1898 u16 global_event
, u8 vint_status_bit
, u8 s_host
)
1900 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",
1901 __func__
, valid_params
, src_id
, src_index
,
1902 dst_id
, dst_host_irq
, ia_id
, vint
, global_event
,
1905 return ti_sci_manage_irq(handle
, valid_params
, src_id
, src_index
,
1906 dst_id
, dst_host_irq
, ia_id
, vint
,
1907 global_event
, vint_status_bit
, s_host
,
1908 TI_SCI_MSG_FREE_IRQ
);
1912 * ti_sci_cmd_set_irq() - Configure a host irq route between the requested
1913 * source and destination.
1914 * @handle: Pointer to TISCI handle.
1915 * @src_id: Device ID of the IRQ source
1916 * @src_index: IRQ source index within the source device
1917 * @dst_id: Device ID of the IRQ destination
1918 * @dst_host_irq: IRQ number of the destination device
1919 * @vint_irq: Boolean specifying if this interrupt belongs to
1920 * Interrupt Aggregator.
1922 * Return: 0 if all went fine, else return appropriate error.
1924 static int ti_sci_cmd_set_irq(const struct ti_sci_handle
*handle
, u16 src_id
,
1925 u16 src_index
, u16 dst_id
, u16 dst_host_irq
)
1927 u32 valid_params
= MSG_FLAG_DST_ID_VALID
| MSG_FLAG_DST_HOST_IRQ_VALID
;
1929 return ti_sci_set_irq(handle
, valid_params
, src_id
, src_index
, dst_id
,
1930 dst_host_irq
, 0, 0, 0, 0, 0);
1934 * ti_sci_cmd_set_event_map() - Configure an event based irq route between the
1935 * requested source and Interrupt Aggregator.
1936 * @handle: Pointer to TISCI handle.
1937 * @src_id: Device ID of the IRQ source
1938 * @src_index: IRQ source index within the source device
1939 * @ia_id: Device ID of the IA, if the IRQ flows through this IA
1940 * @vint: Virtual interrupt to be used within the IA
1941 * @global_event: Global event number to be used for the requesting event
1942 * @vint_status_bit: Virtual interrupt status bit to be used for the event
1944 * Return: 0 if all went fine, else return appropriate error.
1946 static int ti_sci_cmd_set_event_map(const struct ti_sci_handle
*handle
,
1947 u16 src_id
, u16 src_index
, u16 ia_id
,
1948 u16 vint
, u16 global_event
,
1951 u32 valid_params
= MSG_FLAG_IA_ID_VALID
| MSG_FLAG_VINT_VALID
|
1952 MSG_FLAG_GLB_EVNT_VALID
|
1953 MSG_FLAG_VINT_STS_BIT_VALID
;
1955 return ti_sci_set_irq(handle
, valid_params
, src_id
, src_index
, 0, 0,
1956 ia_id
, vint
, global_event
, vint_status_bit
, 0);
1960 * ti_sci_cmd_free_irq() - Free a host irq route between the between the
1961 * requested source and destination.
1962 * @handle: Pointer to TISCI handle.
1963 * @src_id: Device ID of the IRQ source
1964 * @src_index: IRQ source index within the source device
1965 * @dst_id: Device ID of the IRQ destination
1966 * @dst_host_irq: IRQ number of the destination device
1967 * @vint_irq: Boolean specifying if this interrupt belongs to
1968 * Interrupt Aggregator.
1970 * Return: 0 if all went fine, else return appropriate error.
1972 static int ti_sci_cmd_free_irq(const struct ti_sci_handle
*handle
, u16 src_id
,
1973 u16 src_index
, u16 dst_id
, u16 dst_host_irq
)
1975 u32 valid_params
= MSG_FLAG_DST_ID_VALID
| MSG_FLAG_DST_HOST_IRQ_VALID
;
1977 return ti_sci_free_irq(handle
, valid_params
, src_id
, src_index
, dst_id
,
1978 dst_host_irq
, 0, 0, 0, 0, 0);
1982 * ti_sci_cmd_free_event_map() - Free an event map between the requested source
1983 * and Interrupt Aggregator.
1984 * @handle: Pointer to TISCI handle.
1985 * @src_id: Device ID of the IRQ source
1986 * @src_index: IRQ source index within the source device
1987 * @ia_id: Device ID of the IA, if the IRQ flows through this IA
1988 * @vint: Virtual interrupt to be used within the IA
1989 * @global_event: Global event number to be used for the requesting event
1990 * @vint_status_bit: Virtual interrupt status bit to be used for the event
1992 * Return: 0 if all went fine, else return appropriate error.
1994 static int ti_sci_cmd_free_event_map(const struct ti_sci_handle
*handle
,
1995 u16 src_id
, u16 src_index
, u16 ia_id
,
1996 u16 vint
, u16 global_event
,
1999 u32 valid_params
= MSG_FLAG_IA_ID_VALID
|
2000 MSG_FLAG_VINT_VALID
| MSG_FLAG_GLB_EVNT_VALID
|
2001 MSG_FLAG_VINT_STS_BIT_VALID
;
2003 return ti_sci_free_irq(handle
, valid_params
, src_id
, src_index
, 0, 0,
2004 ia_id
, vint
, global_event
, vint_status_bit
, 0);
2008 * ti_sci_setup_ops() - Setup the operations structures
2009 * @info: pointer to TISCI pointer
2011 static void ti_sci_setup_ops(struct ti_sci_info
*info
)
2013 struct ti_sci_ops
*ops
= &info
->handle
.ops
;
2014 struct ti_sci_core_ops
*core_ops
= &ops
->core_ops
;
2015 struct ti_sci_dev_ops
*dops
= &ops
->dev_ops
;
2016 struct ti_sci_clk_ops
*cops
= &ops
->clk_ops
;
2017 struct ti_sci_rm_core_ops
*rm_core_ops
= &ops
->rm_core_ops
;
2018 struct ti_sci_rm_irq_ops
*iops
= &ops
->rm_irq_ops
;
2020 core_ops
->reboot_device
= ti_sci_cmd_core_reboot
;
2022 dops
->get_device
= ti_sci_cmd_get_device
;
2023 dops
->idle_device
= ti_sci_cmd_idle_device
;
2024 dops
->put_device
= ti_sci_cmd_put_device
;
2026 dops
->is_valid
= ti_sci_cmd_dev_is_valid
;
2027 dops
->get_context_loss_count
= ti_sci_cmd_dev_get_clcnt
;
2028 dops
->is_idle
= ti_sci_cmd_dev_is_idle
;
2029 dops
->is_stop
= ti_sci_cmd_dev_is_stop
;
2030 dops
->is_on
= ti_sci_cmd_dev_is_on
;
2031 dops
->is_transitioning
= ti_sci_cmd_dev_is_trans
;
2032 dops
->set_device_resets
= ti_sci_cmd_set_device_resets
;
2033 dops
->get_device_resets
= ti_sci_cmd_get_device_resets
;
2035 cops
->get_clock
= ti_sci_cmd_get_clock
;
2036 cops
->idle_clock
= ti_sci_cmd_idle_clock
;
2037 cops
->put_clock
= ti_sci_cmd_put_clock
;
2038 cops
->is_auto
= ti_sci_cmd_clk_is_auto
;
2039 cops
->is_on
= ti_sci_cmd_clk_is_on
;
2040 cops
->is_off
= ti_sci_cmd_clk_is_off
;
2042 cops
->set_parent
= ti_sci_cmd_clk_set_parent
;
2043 cops
->get_parent
= ti_sci_cmd_clk_get_parent
;
2044 cops
->get_num_parents
= ti_sci_cmd_clk_get_num_parents
;
2046 cops
->get_best_match_freq
= ti_sci_cmd_clk_get_match_freq
;
2047 cops
->set_freq
= ti_sci_cmd_clk_set_freq
;
2048 cops
->get_freq
= ti_sci_cmd_clk_get_freq
;
2050 rm_core_ops
->get_range
= ti_sci_cmd_get_resource_range
;
2051 rm_core_ops
->get_range_from_shost
=
2052 ti_sci_cmd_get_resource_range_from_shost
;
2054 iops
->set_irq
= ti_sci_cmd_set_irq
;
2055 iops
->set_event_map
= ti_sci_cmd_set_event_map
;
2056 iops
->free_irq
= ti_sci_cmd_free_irq
;
2057 iops
->free_event_map
= ti_sci_cmd_free_event_map
;
2061 * ti_sci_get_handle() - Get the TI SCI handle for a device
2062 * @dev: Pointer to device for which we want SCI handle
2064 * NOTE: The function does not track individual clients of the framework
2065 * and is expected to be maintained by caller of TI SCI protocol library.
2066 * ti_sci_put_handle must be balanced with successful ti_sci_get_handle
2067 * Return: pointer to handle if successful, else:
2068 * -EPROBE_DEFER if the instance is not ready
2069 * -ENODEV if the required node handler is missing
2070 * -EINVAL if invalid conditions are encountered.
2072 const struct ti_sci_handle
*ti_sci_get_handle(struct device
*dev
)
2074 struct device_node
*ti_sci_np
;
2075 struct list_head
*p
;
2076 struct ti_sci_handle
*handle
= NULL
;
2077 struct ti_sci_info
*info
;
2080 pr_err("I need a device pointer\n");
2081 return ERR_PTR(-EINVAL
);
2083 ti_sci_np
= of_get_parent(dev
->of_node
);
2085 dev_err(dev
, "No OF information\n");
2086 return ERR_PTR(-EINVAL
);
2089 mutex_lock(&ti_sci_list_mutex
);
2090 list_for_each(p
, &ti_sci_list
) {
2091 info
= list_entry(p
, struct ti_sci_info
, node
);
2092 if (ti_sci_np
== info
->dev
->of_node
) {
2093 handle
= &info
->handle
;
2098 mutex_unlock(&ti_sci_list_mutex
);
2099 of_node_put(ti_sci_np
);
2102 return ERR_PTR(-EPROBE_DEFER
);
2106 EXPORT_SYMBOL_GPL(ti_sci_get_handle
);
2109 * ti_sci_put_handle() - Release the handle acquired by ti_sci_get_handle
2110 * @handle: Handle acquired by ti_sci_get_handle
2112 * NOTE: The function does not track individual clients of the framework
2113 * and is expected to be maintained by caller of TI SCI protocol library.
2114 * ti_sci_put_handle must be balanced with successful ti_sci_get_handle
2116 * Return: 0 is successfully released
2117 * if an error pointer was passed, it returns the error value back,
2118 * if null was passed, it returns -EINVAL;
2120 int ti_sci_put_handle(const struct ti_sci_handle
*handle
)
2122 struct ti_sci_info
*info
;
2125 return PTR_ERR(handle
);
2129 info
= handle_to_ti_sci_info(handle
);
2130 mutex_lock(&ti_sci_list_mutex
);
2131 if (!WARN_ON(!info
->users
))
2133 mutex_unlock(&ti_sci_list_mutex
);
2137 EXPORT_SYMBOL_GPL(ti_sci_put_handle
);
2139 static void devm_ti_sci_release(struct device
*dev
, void *res
)
2141 const struct ti_sci_handle
**ptr
= res
;
2142 const struct ti_sci_handle
*handle
= *ptr
;
2145 ret
= ti_sci_put_handle(handle
);
2147 dev_err(dev
, "failed to put handle %d\n", ret
);
2151 * devm_ti_sci_get_handle() - Managed get handle
2152 * @dev: device for which we want SCI handle for.
2154 * NOTE: This releases the handle once the device resources are
2155 * no longer needed. MUST NOT BE released with ti_sci_put_handle.
2156 * The function does not track individual clients of the framework
2157 * and is expected to be maintained by caller of TI SCI protocol library.
2159 * Return: 0 if all went fine, else corresponding error.
2161 const struct ti_sci_handle
*devm_ti_sci_get_handle(struct device
*dev
)
2163 const struct ti_sci_handle
**ptr
;
2164 const struct ti_sci_handle
*handle
;
2166 ptr
= devres_alloc(devm_ti_sci_release
, sizeof(*ptr
), GFP_KERNEL
);
2168 return ERR_PTR(-ENOMEM
);
2169 handle
= ti_sci_get_handle(dev
);
2171 if (!IS_ERR(handle
)) {
2173 devres_add(dev
, ptr
);
2180 EXPORT_SYMBOL_GPL(devm_ti_sci_get_handle
);
2183 * ti_sci_get_by_phandle() - Get the TI SCI handle using DT phandle
2185 * @property: property name containing phandle on TISCI node
2187 * NOTE: The function does not track individual clients of the framework
2188 * and is expected to be maintained by caller of TI SCI protocol library.
2189 * ti_sci_put_handle must be balanced with successful ti_sci_get_by_phandle
2190 * Return: pointer to handle if successful, else:
2191 * -EPROBE_DEFER if the instance is not ready
2192 * -ENODEV if the required node handler is missing
2193 * -EINVAL if invalid conditions are encountered.
2195 const struct ti_sci_handle
*ti_sci_get_by_phandle(struct device_node
*np
,
2196 const char *property
)
2198 struct ti_sci_handle
*handle
= NULL
;
2199 struct device_node
*ti_sci_np
;
2200 struct ti_sci_info
*info
;
2201 struct list_head
*p
;
2204 pr_err("I need a device pointer\n");
2205 return ERR_PTR(-EINVAL
);
2208 ti_sci_np
= of_parse_phandle(np
, property
, 0);
2210 return ERR_PTR(-ENODEV
);
2212 mutex_lock(&ti_sci_list_mutex
);
2213 list_for_each(p
, &ti_sci_list
) {
2214 info
= list_entry(p
, struct ti_sci_info
, node
);
2215 if (ti_sci_np
== info
->dev
->of_node
) {
2216 handle
= &info
->handle
;
2221 mutex_unlock(&ti_sci_list_mutex
);
2222 of_node_put(ti_sci_np
);
2225 return ERR_PTR(-EPROBE_DEFER
);
2229 EXPORT_SYMBOL_GPL(ti_sci_get_by_phandle
);
2232 * devm_ti_sci_get_by_phandle() - Managed get handle using phandle
2233 * @dev: Device pointer requesting TISCI handle
2234 * @property: property name containing phandle on TISCI node
2236 * NOTE: This releases the handle once the device resources are
2237 * no longer needed. MUST NOT BE released with ti_sci_put_handle.
2238 * The function does not track individual clients of the framework
2239 * and is expected to be maintained by caller of TI SCI protocol library.
2241 * Return: 0 if all went fine, else corresponding error.
2243 const struct ti_sci_handle
*devm_ti_sci_get_by_phandle(struct device
*dev
,
2244 const char *property
)
2246 const struct ti_sci_handle
*handle
;
2247 const struct ti_sci_handle
**ptr
;
2249 ptr
= devres_alloc(devm_ti_sci_release
, sizeof(*ptr
), GFP_KERNEL
);
2251 return ERR_PTR(-ENOMEM
);
2252 handle
= ti_sci_get_by_phandle(dev_of_node(dev
), property
);
2254 if (!IS_ERR(handle
)) {
2256 devres_add(dev
, ptr
);
2263 EXPORT_SYMBOL_GPL(devm_ti_sci_get_by_phandle
);
2266 * ti_sci_get_free_resource() - Get a free resource from TISCI resource.
2267 * @res: Pointer to the TISCI resource
2269 * Return: resource num if all went ok else TI_SCI_RESOURCE_NULL.
2271 u16
ti_sci_get_free_resource(struct ti_sci_resource
*res
)
2273 unsigned long flags
;
2276 raw_spin_lock_irqsave(&res
->lock
, flags
);
2277 for (set
= 0; set
< res
->sets
; set
++) {
2278 free_bit
= find_first_zero_bit(res
->desc
[set
].res_map
,
2279 res
->desc
[set
].num
);
2280 if (free_bit
!= res
->desc
[set
].num
) {
2281 set_bit(free_bit
, res
->desc
[set
].res_map
);
2282 raw_spin_unlock_irqrestore(&res
->lock
, flags
);
2283 return res
->desc
[set
].start
+ free_bit
;
2286 raw_spin_unlock_irqrestore(&res
->lock
, flags
);
2288 return TI_SCI_RESOURCE_NULL
;
2290 EXPORT_SYMBOL_GPL(ti_sci_get_free_resource
);
2293 * ti_sci_release_resource() - Release a resource from TISCI resource.
2294 * @res: Pointer to the TISCI resource
2295 * @id: Resource id to be released.
2297 void ti_sci_release_resource(struct ti_sci_resource
*res
, u16 id
)
2299 unsigned long flags
;
2302 raw_spin_lock_irqsave(&res
->lock
, flags
);
2303 for (set
= 0; set
< res
->sets
; set
++) {
2304 if (res
->desc
[set
].start
<= id
&&
2305 (res
->desc
[set
].num
+ res
->desc
[set
].start
) > id
)
2306 clear_bit(id
- res
->desc
[set
].start
,
2307 res
->desc
[set
].res_map
);
2309 raw_spin_unlock_irqrestore(&res
->lock
, flags
);
2311 EXPORT_SYMBOL_GPL(ti_sci_release_resource
);
2314 * ti_sci_get_num_resources() - Get the number of resources in TISCI resource
2315 * @res: Pointer to the TISCI resource
2317 * Return: Total number of available resources.
2319 u32
ti_sci_get_num_resources(struct ti_sci_resource
*res
)
2323 for (set
= 0; set
< res
->sets
; set
++)
2324 count
+= res
->desc
[set
].num
;
2328 EXPORT_SYMBOL_GPL(ti_sci_get_num_resources
);
2331 * devm_ti_sci_get_of_resource() - Get a TISCI resource assigned to a device
2332 * @handle: TISCI handle
2333 * @dev: Device pointer to which the resource is assigned
2334 * @dev_id: TISCI device id to which the resource is assigned
2335 * @of_prop: property name by which the resource are represented
2337 * Return: Pointer to ti_sci_resource if all went well else appropriate
2340 struct ti_sci_resource
*
2341 devm_ti_sci_get_of_resource(const struct ti_sci_handle
*handle
,
2342 struct device
*dev
, u32 dev_id
, char *of_prop
)
2344 struct ti_sci_resource
*res
;
2345 u32 resource_subtype
;
2348 res
= devm_kzalloc(dev
, sizeof(*res
), GFP_KERNEL
);
2350 return ERR_PTR(-ENOMEM
);
2352 res
->sets
= of_property_count_elems_of_size(dev_of_node(dev
), of_prop
,
2354 if (res
->sets
< 0) {
2355 dev_err(dev
, "%s resource type ids not available\n", of_prop
);
2356 return ERR_PTR(res
->sets
);
2359 res
->desc
= devm_kcalloc(dev
, res
->sets
, sizeof(*res
->desc
),
2362 return ERR_PTR(-ENOMEM
);
2364 for (i
= 0; i
< res
->sets
; i
++) {
2365 ret
= of_property_read_u32_index(dev_of_node(dev
), of_prop
, i
,
2368 return ERR_PTR(-EINVAL
);
2370 ret
= handle
->ops
.rm_core_ops
.get_range(handle
, dev_id
,
2372 &res
->desc
[i
].start
,
2375 dev_err(dev
, "dev = %d subtype %d not allocated for this host\n",
2376 dev_id
, resource_subtype
);
2377 return ERR_PTR(ret
);
2380 dev_dbg(dev
, "dev = %d, subtype = %d, start = %d, num = %d\n",
2381 dev_id
, resource_subtype
, res
->desc
[i
].start
,
2384 res
->desc
[i
].res_map
=
2385 devm_kzalloc(dev
, BITS_TO_LONGS(res
->desc
[i
].num
) *
2386 sizeof(*res
->desc
[i
].res_map
), GFP_KERNEL
);
2387 if (!res
->desc
[i
].res_map
)
2388 return ERR_PTR(-ENOMEM
);
2390 raw_spin_lock_init(&res
->lock
);
2395 static int tisci_reboot_handler(struct notifier_block
*nb
, unsigned long mode
,
2398 struct ti_sci_info
*info
= reboot_to_ti_sci_info(nb
);
2399 const struct ti_sci_handle
*handle
= &info
->handle
;
2401 ti_sci_cmd_core_reboot(handle
);
2403 /* call fail OR pass, we should not be here in the first place */
2407 /* Description for K2G */
2408 static const struct ti_sci_desc ti_sci_pmmc_k2g_desc
= {
2409 .default_host_id
= 2,
2410 /* Conservative duration */
2411 .max_rx_timeout_ms
= 1000,
2412 /* Limited by MBOX_TX_QUEUE_LEN. K2G can handle upto 128 messages! */
2415 .rm_type_map
= NULL
,
2418 static struct ti_sci_rm_type_map ti_sci_am654_rm_type_map
[] = {
2419 {.dev_id
= 56, .type
= 0x00b}, /* GIC_IRQ */
2420 {.dev_id
= 179, .type
= 0x000}, /* MAIN_NAV_UDMASS_IA0 */
2421 {.dev_id
= 187, .type
= 0x009}, /* MAIN_NAV_RA */
2422 {.dev_id
= 188, .type
= 0x006}, /* MAIN_NAV_UDMAP */
2423 {.dev_id
= 194, .type
= 0x007}, /* MCU_NAV_UDMAP */
2424 {.dev_id
= 195, .type
= 0x00a}, /* MCU_NAV_RA */
2425 {.dev_id
= 0, .type
= 0x000}, /* end of table */
2428 /* Description for AM654 */
2429 static const struct ti_sci_desc ti_sci_pmmc_am654_desc
= {
2430 .default_host_id
= 12,
2431 /* Conservative duration */
2432 .max_rx_timeout_ms
= 10000,
2433 /* Limited by MBOX_TX_QUEUE_LEN. K2G can handle upto 128 messages! */
2436 .rm_type_map
= ti_sci_am654_rm_type_map
,
2439 static const struct of_device_id ti_sci_of_match
[] = {
2440 {.compatible
= "ti,k2g-sci", .data
= &ti_sci_pmmc_k2g_desc
},
2441 {.compatible
= "ti,am654-sci", .data
= &ti_sci_pmmc_am654_desc
},
2444 MODULE_DEVICE_TABLE(of
, ti_sci_of_match
);
2446 static int ti_sci_probe(struct platform_device
*pdev
)
2448 struct device
*dev
= &pdev
->dev
;
2449 const struct of_device_id
*of_id
;
2450 const struct ti_sci_desc
*desc
;
2451 struct ti_sci_xfer
*xfer
;
2452 struct ti_sci_info
*info
= NULL
;
2453 struct ti_sci_xfers_info
*minfo
;
2454 struct mbox_client
*cl
;
2460 of_id
= of_match_device(ti_sci_of_match
, dev
);
2462 dev_err(dev
, "OF data missing\n");
2467 info
= devm_kzalloc(dev
, sizeof(*info
), GFP_KERNEL
);
2473 ret
= of_property_read_u32(dev
->of_node
, "ti,host-id", &h_id
);
2474 /* if the property is not present in DT, use a default from desc */
2476 info
->host_id
= info
->desc
->default_host_id
;
2479 dev_warn(dev
, "Host ID 0 is reserved for firmware\n");
2480 info
->host_id
= info
->desc
->default_host_id
;
2482 info
->host_id
= h_id
;
2486 reboot
= of_property_read_bool(dev
->of_node
,
2487 "ti,system-reboot-controller");
2488 INIT_LIST_HEAD(&info
->node
);
2489 minfo
= &info
->minfo
;
2492 * Pre-allocate messages
2493 * NEVER allocate more than what we can indicate in hdr.seq
2494 * if we have data description bug, force a fix..
2496 if (WARN_ON(desc
->max_msgs
>=
2497 1 << 8 * sizeof(((struct ti_sci_msg_hdr
*)0)->seq
)))
2500 minfo
->xfer_block
= devm_kcalloc(dev
,
2502 sizeof(*minfo
->xfer_block
),
2504 if (!minfo
->xfer_block
)
2507 minfo
->xfer_alloc_table
= devm_kcalloc(dev
,
2508 BITS_TO_LONGS(desc
->max_msgs
),
2509 sizeof(unsigned long),
2511 if (!minfo
->xfer_alloc_table
)
2513 bitmap_zero(minfo
->xfer_alloc_table
, desc
->max_msgs
);
2515 /* Pre-initialize the buffer pointer to pre-allocated buffers */
2516 for (i
= 0, xfer
= minfo
->xfer_block
; i
< desc
->max_msgs
; i
++, xfer
++) {
2517 xfer
->xfer_buf
= devm_kcalloc(dev
, 1, desc
->max_msg_size
,
2519 if (!xfer
->xfer_buf
)
2522 xfer
->tx_message
.buf
= xfer
->xfer_buf
;
2523 init_completion(&xfer
->done
);
2526 ret
= ti_sci_debugfs_create(pdev
, info
);
2528 dev_warn(dev
, "Failed to create debug file\n");
2530 platform_set_drvdata(pdev
, info
);
2534 cl
->tx_block
= false;
2535 cl
->rx_callback
= ti_sci_rx_callback
;
2536 cl
->knows_txdone
= true;
2538 spin_lock_init(&minfo
->xfer_lock
);
2539 sema_init(&minfo
->sem_xfer_count
, desc
->max_msgs
);
2541 info
->chan_rx
= mbox_request_channel_byname(cl
, "rx");
2542 if (IS_ERR(info
->chan_rx
)) {
2543 ret
= PTR_ERR(info
->chan_rx
);
2547 info
->chan_tx
= mbox_request_channel_byname(cl
, "tx");
2548 if (IS_ERR(info
->chan_tx
)) {
2549 ret
= PTR_ERR(info
->chan_tx
);
2552 ret
= ti_sci_cmd_get_revision(info
);
2554 dev_err(dev
, "Unable to communicate with TISCI(%d)\n", ret
);
2558 ti_sci_setup_ops(info
);
2561 info
->nb
.notifier_call
= tisci_reboot_handler
;
2562 info
->nb
.priority
= 128;
2564 ret
= register_restart_handler(&info
->nb
);
2566 dev_err(dev
, "reboot registration fail(%d)\n", ret
);
2571 dev_info(dev
, "ABI: %d.%d (firmware rev 0x%04x '%s')\n",
2572 info
->handle
.version
.abi_major
, info
->handle
.version
.abi_minor
,
2573 info
->handle
.version
.firmware_revision
,
2574 info
->handle
.version
.firmware_description
);
2576 mutex_lock(&ti_sci_list_mutex
);
2577 list_add_tail(&info
->node
, &ti_sci_list
);
2578 mutex_unlock(&ti_sci_list_mutex
);
2580 return of_platform_populate(dev
->of_node
, NULL
, NULL
, dev
);
2582 if (!IS_ERR(info
->chan_tx
))
2583 mbox_free_channel(info
->chan_tx
);
2584 if (!IS_ERR(info
->chan_rx
))
2585 mbox_free_channel(info
->chan_rx
);
2586 debugfs_remove(info
->d
);
2590 static int ti_sci_remove(struct platform_device
*pdev
)
2592 struct ti_sci_info
*info
;
2593 struct device
*dev
= &pdev
->dev
;
2596 of_platform_depopulate(dev
);
2598 info
= platform_get_drvdata(pdev
);
2600 if (info
->nb
.notifier_call
)
2601 unregister_restart_handler(&info
->nb
);
2603 mutex_lock(&ti_sci_list_mutex
);
2607 list_del(&info
->node
);
2608 mutex_unlock(&ti_sci_list_mutex
);
2611 ti_sci_debugfs_destroy(pdev
, info
);
2613 /* Safe to free channels since no more users */
2614 mbox_free_channel(info
->chan_tx
);
2615 mbox_free_channel(info
->chan_rx
);
2621 static struct platform_driver ti_sci_driver
= {
2622 .probe
= ti_sci_probe
,
2623 .remove
= ti_sci_remove
,
2626 .of_match_table
= of_match_ptr(ti_sci_of_match
),
2629 module_platform_driver(ti_sci_driver
);
2631 MODULE_LICENSE("GPL v2");
2632 MODULE_DESCRIPTION("TI System Control Interface(SCI) driver");
2633 MODULE_AUTHOR("Nishanth Menon");
2634 MODULE_ALIAS("platform:ti-sci");