2 * Copyright (c) 2015, Sony Mobile Communications AB.
3 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/interrupt.h>
17 #include <linux/mfd/syscon.h>
18 #include <linux/module.h>
19 #include <linux/of_irq.h>
20 #include <linux/of_platform.h>
21 #include <linux/platform_device.h>
22 #include <linux/regmap.h>
23 #include <linux/sched.h>
24 #include <linux/slab.h>
25 #include <linux/soc/qcom/smd.h>
26 #include <linux/soc/qcom/smem.h>
27 #include <linux/wait.h>
30 * The Qualcomm Shared Memory communication solution provides point-to-point
31 * channels for clients to send and receive streaming or packet based data.
33 * Each channel consists of a control item (channel info) and a ring buffer
34 * pair. The channel info carry information related to channel state, flow
35 * control and the offsets within the ring buffer.
37 * All allocated channels are listed in an allocation table, identifying the
38 * pair of items by name, type and remote processor.
40 * Upon creating a new channel the remote processor allocates channel info and
41 * ring buffer items from the smem heap and populate the allocation table. An
42 * interrupt is sent to the other end of the channel and a scan for new
43 * channels should be done. A channel never goes away, it will only change
46 * The remote processor signals it intent for bring up the communication
47 * channel by setting the state of its end of the channel to "opening" and
48 * sends out an interrupt. We detect this change and register a smd device to
49 * consume the channel. Upon finding a consumer we finish the handshake and the
52 * Upon closing a channel, the remote processor will update the state of its
53 * end of the channel and signal us, we will then unregister any attached
54 * device and close our end of the channel.
56 * Devices attached to a channel can use the qcom_smd_send function to push
57 * data to the channel, this is done by copying the data into the tx ring
58 * buffer, updating the pointers in the channel info and signaling the remote
61 * The remote processor does the equivalent when it transfer data and upon
62 * receiving the interrupt we check the channel info for new data and delivers
63 * this to the attached device. If the device is not ready to receive the data
64 * we leave it in the ring buffer for now.
67 struct smd_channel_info
;
68 struct smd_channel_info_pair
;
69 struct smd_channel_info_word
;
70 struct smd_channel_info_word_pair
;
72 #define SMD_ALLOC_TBL_COUNT 2
73 #define SMD_ALLOC_TBL_SIZE 64
76 * This lists the various smem heap items relevant for the allocation table and
77 * smd channel entries.
80 unsigned alloc_tbl_id
;
81 unsigned info_base_id
;
82 unsigned fifo_base_id
;
83 } smem_items
[SMD_ALLOC_TBL_COUNT
] = {
97 * struct qcom_smd_edge - representing a remote processor
98 * @smd: handle to qcom_smd
99 * @of_node: of_node handle for information related to this edge
100 * @edge_id: identifier of this edge
101 * @remote_pid: identifier of remote processor
102 * @irq: interrupt for signals on this edge
103 * @ipc_regmap: regmap handle holding the outgoing ipc register
104 * @ipc_offset: offset within @ipc_regmap of the register for ipc
105 * @ipc_bit: bit in the register at @ipc_offset of @ipc_regmap
106 * @channels: list of all channels detected on this edge
107 * @channels_lock: guard for modifications of @channels
108 * @allocated: array of bitmaps representing already allocated channels
109 * @need_rescan: flag that the @work needs to scan smem for new channels
110 * @smem_available: last available amount of smem triggering a channel scan
111 * @work: work item for edge house keeping
113 struct qcom_smd_edge
{
114 struct qcom_smd
*smd
;
115 struct device_node
*of_node
;
121 struct regmap
*ipc_regmap
;
125 struct list_head channels
;
126 spinlock_t channels_lock
;
128 DECLARE_BITMAP(allocated
[SMD_ALLOC_TBL_COUNT
], SMD_ALLOC_TBL_SIZE
);
131 unsigned smem_available
;
133 struct work_struct work
;
137 * SMD channel states.
139 enum smd_channel_state
{
143 SMD_CHANNEL_FLUSHING
,
146 SMD_CHANNEL_RESET_OPENING
150 * struct qcom_smd_channel - smd channel struct
151 * @edge: qcom_smd_edge this channel is living on
152 * @qsdev: reference to a associated smd client device
153 * @name: name of the channel
154 * @state: local state of the channel
155 * @remote_state: remote state of the channel
156 * @info: byte aligned outgoing/incoming channel info
157 * @info_word: word aligned outgoing/incoming channel info
158 * @tx_lock: lock to make writes to the channel mutually exclusive
159 * @fblockread_event: wakeup event tied to tx fBLOCKREADINTR
160 * @tx_fifo: pointer to the outgoing ring buffer
161 * @rx_fifo: pointer to the incoming ring buffer
162 * @fifo_size: size of each ring buffer
163 * @bounce_buffer: bounce buffer for reading wrapped packets
164 * @cb: callback function registered for this channel
165 * @recv_lock: guard for rx info modifications and cb pointer
166 * @pkt_size: size of the currently handled packet
167 * @list: lite entry for @channels in qcom_smd_edge
169 struct qcom_smd_channel
{
170 struct qcom_smd_edge
*edge
;
172 struct qcom_smd_device
*qsdev
;
175 enum smd_channel_state state
;
176 enum smd_channel_state remote_state
;
178 struct smd_channel_info_pair
*info
;
179 struct smd_channel_info_word_pair
*info_word
;
181 struct mutex tx_lock
;
182 wait_queue_head_t fblockread_event
;
189 int (*cb
)(struct qcom_smd_device
*, const void *, size_t);
191 spinlock_t recv_lock
;
195 struct list_head list
;
199 * struct qcom_smd - smd struct
200 * @dev: device struct
201 * @num_edges: number of entries in @edges
202 * @edges: array of edges to be handled
208 struct qcom_smd_edge edges
[0];
212 * Format of the smd_info smem items, for byte aligned channels.
214 struct smd_channel_info
{
228 struct smd_channel_info_pair
{
229 struct smd_channel_info tx
;
230 struct smd_channel_info rx
;
234 * Format of the smd_info smem items, for word aligned channels.
236 struct smd_channel_info_word
{
245 __le32 fBLOCKREADINTR
;
250 struct smd_channel_info_word_pair
{
251 struct smd_channel_info_word tx
;
252 struct smd_channel_info_word rx
;
255 #define GET_RX_CHANNEL_FLAG(channel, param) \
257 BUILD_BUG_ON(sizeof(channel->info->rx.param) != sizeof(u8)); \
258 channel->info_word ? \
259 le32_to_cpu(channel->info_word->rx.param) : \
260 channel->info->rx.param; \
263 #define GET_RX_CHANNEL_INFO(channel, param) \
265 BUILD_BUG_ON(sizeof(channel->info->rx.param) != sizeof(u32)); \
266 le32_to_cpu(channel->info_word ? \
267 channel->info_word->rx.param : \
268 channel->info->rx.param); \
271 #define SET_RX_CHANNEL_FLAG(channel, param, value) \
273 BUILD_BUG_ON(sizeof(channel->info->rx.param) != sizeof(u8)); \
274 if (channel->info_word) \
275 channel->info_word->rx.param = cpu_to_le32(value); \
277 channel->info->rx.param = value; \
280 #define SET_RX_CHANNEL_INFO(channel, param, value) \
282 BUILD_BUG_ON(sizeof(channel->info->rx.param) != sizeof(u32)); \
283 if (channel->info_word) \
284 channel->info_word->rx.param = cpu_to_le32(value); \
286 channel->info->rx.param = cpu_to_le32(value); \
289 #define GET_TX_CHANNEL_FLAG(channel, param) \
291 BUILD_BUG_ON(sizeof(channel->info->tx.param) != sizeof(u8)); \
292 channel->info_word ? \
293 le32_to_cpu(channel->info_word->tx.param) : \
294 channel->info->tx.param; \
297 #define GET_TX_CHANNEL_INFO(channel, param) \
299 BUILD_BUG_ON(sizeof(channel->info->tx.param) != sizeof(u32)); \
300 le32_to_cpu(channel->info_word ? \
301 channel->info_word->tx.param : \
302 channel->info->tx.param); \
305 #define SET_TX_CHANNEL_FLAG(channel, param, value) \
307 BUILD_BUG_ON(sizeof(channel->info->tx.param) != sizeof(u8)); \
308 if (channel->info_word) \
309 channel->info_word->tx.param = cpu_to_le32(value); \
311 channel->info->tx.param = value; \
314 #define SET_TX_CHANNEL_INFO(channel, param, value) \
316 BUILD_BUG_ON(sizeof(channel->info->tx.param) != sizeof(u32)); \
317 if (channel->info_word) \
318 channel->info_word->tx.param = cpu_to_le32(value); \
320 channel->info->tx.param = cpu_to_le32(value); \
324 * struct qcom_smd_alloc_entry - channel allocation entry
325 * @name: channel name
326 * @cid: channel index
327 * @flags: channel flags and edge id
328 * @ref_count: reference count of the channel
330 struct qcom_smd_alloc_entry
{
337 #define SMD_CHANNEL_FLAGS_EDGE_MASK 0xff
338 #define SMD_CHANNEL_FLAGS_STREAM BIT(8)
339 #define SMD_CHANNEL_FLAGS_PACKET BIT(9)
342 * Each smd packet contains a 20 byte header, with the first 4 being the length
345 #define SMD_PACKET_HEADER_LEN 20
348 * Signal the remote processor associated with 'channel'.
350 static void qcom_smd_signal_channel(struct qcom_smd_channel
*channel
)
352 struct qcom_smd_edge
*edge
= channel
->edge
;
354 regmap_write(edge
->ipc_regmap
, edge
->ipc_offset
, BIT(edge
->ipc_bit
));
358 * Initialize the tx channel info
360 static void qcom_smd_channel_reset(struct qcom_smd_channel
*channel
)
362 SET_TX_CHANNEL_INFO(channel
, state
, SMD_CHANNEL_CLOSED
);
363 SET_TX_CHANNEL_FLAG(channel
, fDSR
, 0);
364 SET_TX_CHANNEL_FLAG(channel
, fCTS
, 0);
365 SET_TX_CHANNEL_FLAG(channel
, fCD
, 0);
366 SET_TX_CHANNEL_FLAG(channel
, fRI
, 0);
367 SET_TX_CHANNEL_FLAG(channel
, fHEAD
, 0);
368 SET_TX_CHANNEL_FLAG(channel
, fTAIL
, 0);
369 SET_TX_CHANNEL_FLAG(channel
, fSTATE
, 1);
370 SET_TX_CHANNEL_FLAG(channel
, fBLOCKREADINTR
, 1);
371 SET_TX_CHANNEL_INFO(channel
, head
, 0);
372 SET_TX_CHANNEL_INFO(channel
, tail
, 0);
374 qcom_smd_signal_channel(channel
);
376 channel
->state
= SMD_CHANNEL_CLOSED
;
377 channel
->pkt_size
= 0;
381 * Calculate the amount of data available in the rx fifo
383 static size_t qcom_smd_channel_get_rx_avail(struct qcom_smd_channel
*channel
)
388 head
= GET_RX_CHANNEL_INFO(channel
, head
);
389 tail
= GET_RX_CHANNEL_INFO(channel
, tail
);
391 return (head
- tail
) & (channel
->fifo_size
- 1);
395 * Set tx channel state and inform the remote processor
397 static void qcom_smd_channel_set_state(struct qcom_smd_channel
*channel
,
400 struct qcom_smd_edge
*edge
= channel
->edge
;
401 bool is_open
= state
== SMD_CHANNEL_OPENED
;
403 if (channel
->state
== state
)
406 dev_dbg(edge
->smd
->dev
, "set_state(%s, %d)\n", channel
->name
, state
);
408 SET_TX_CHANNEL_FLAG(channel
, fDSR
, is_open
);
409 SET_TX_CHANNEL_FLAG(channel
, fCTS
, is_open
);
410 SET_TX_CHANNEL_FLAG(channel
, fCD
, is_open
);
412 SET_TX_CHANNEL_INFO(channel
, state
, state
);
413 SET_TX_CHANNEL_FLAG(channel
, fSTATE
, 1);
415 channel
->state
= state
;
416 qcom_smd_signal_channel(channel
);
420 * Copy count bytes of data using 32bit accesses, if that's required.
422 static void smd_copy_to_fifo(void __iomem
*dst
,
428 __iowrite32_copy(dst
, src
, count
/ sizeof(u32
));
430 memcpy_toio(dst
, src
, count
);
435 * Copy count bytes of data using 32bit accesses, if that is required.
437 static void smd_copy_from_fifo(void *_dst
,
438 const void __iomem
*_src
,
442 u32
*dst
= (u32
*)_dst
;
443 u32
*src
= (u32
*)_src
;
446 count
/= sizeof(u32
);
448 *dst
++ = __raw_readl(src
++);
450 memcpy_fromio(_dst
, _src
, count
);
455 * Read count bytes of data from the rx fifo into buf, but don't advance the
458 static size_t qcom_smd_channel_peek(struct qcom_smd_channel
*channel
,
459 void *buf
, size_t count
)
465 word_aligned
= channel
->info_word
;
466 tail
= GET_RX_CHANNEL_INFO(channel
, tail
);
468 len
= min_t(size_t, count
, channel
->fifo_size
- tail
);
470 smd_copy_from_fifo(buf
,
471 channel
->rx_fifo
+ tail
,
477 smd_copy_from_fifo(buf
+ len
,
487 * Advance the rx tail by count bytes.
489 static void qcom_smd_channel_advance(struct qcom_smd_channel
*channel
,
494 tail
= GET_RX_CHANNEL_INFO(channel
, tail
);
496 tail
&= (channel
->fifo_size
- 1);
497 SET_RX_CHANNEL_INFO(channel
, tail
, tail
);
501 * Read out a single packet from the rx fifo and deliver it to the device
503 static int qcom_smd_channel_recv_single(struct qcom_smd_channel
*channel
)
505 struct qcom_smd_device
*qsdev
= channel
->qsdev
;
514 tail
= GET_RX_CHANNEL_INFO(channel
, tail
);
516 /* Use bounce buffer if the data wraps */
517 if (tail
+ channel
->pkt_size
>= channel
->fifo_size
) {
518 ptr
= channel
->bounce_buffer
;
519 len
= qcom_smd_channel_peek(channel
, ptr
, channel
->pkt_size
);
521 ptr
= channel
->rx_fifo
+ tail
;
522 len
= channel
->pkt_size
;
525 ret
= channel
->cb(qsdev
, ptr
, len
);
529 /* Only forward the tail if the client consumed the data */
530 qcom_smd_channel_advance(channel
, len
);
532 channel
->pkt_size
= 0;
538 * Per channel interrupt handling
540 static bool qcom_smd_channel_intr(struct qcom_smd_channel
*channel
)
542 bool need_state_scan
= false;
548 /* Handle state changes */
549 remote_state
= GET_RX_CHANNEL_INFO(channel
, state
);
550 if (remote_state
!= channel
->remote_state
) {
551 channel
->remote_state
= remote_state
;
552 need_state_scan
= true;
554 /* Indicate that we have seen any state change */
555 SET_RX_CHANNEL_FLAG(channel
, fSTATE
, 0);
557 /* Signal waiting qcom_smd_send() about the interrupt */
558 if (!GET_TX_CHANNEL_FLAG(channel
, fBLOCKREADINTR
))
559 wake_up_interruptible(&channel
->fblockread_event
);
561 /* Don't consume any data until we've opened the channel */
562 if (channel
->state
!= SMD_CHANNEL_OPENED
)
565 /* Indicate that we've seen the new data */
566 SET_RX_CHANNEL_FLAG(channel
, fHEAD
, 0);
570 avail
= qcom_smd_channel_get_rx_avail(channel
);
572 if (!channel
->pkt_size
&& avail
>= SMD_PACKET_HEADER_LEN
) {
573 qcom_smd_channel_peek(channel
, &pktlen
, sizeof(pktlen
));
574 qcom_smd_channel_advance(channel
, SMD_PACKET_HEADER_LEN
);
575 channel
->pkt_size
= le32_to_cpu(pktlen
);
576 } else if (channel
->pkt_size
&& avail
>= channel
->pkt_size
) {
577 ret
= qcom_smd_channel_recv_single(channel
);
585 /* Indicate that we have seen and updated tail */
586 SET_RX_CHANNEL_FLAG(channel
, fTAIL
, 1);
588 /* Signal the remote that we've consumed the data (if requested) */
589 if (!GET_RX_CHANNEL_FLAG(channel
, fBLOCKREADINTR
)) {
590 /* Ensure ordering of channel info updates */
593 qcom_smd_signal_channel(channel
);
597 return need_state_scan
;
601 * The edge interrupts are triggered by the remote processor on state changes,
602 * channel info updates or when new channels are created.
604 static irqreturn_t
qcom_smd_edge_intr(int irq
, void *data
)
606 struct qcom_smd_edge
*edge
= data
;
607 struct qcom_smd_channel
*channel
;
609 bool kick_worker
= false;
612 * Handle state changes or data on each of the channels on this edge
614 spin_lock(&edge
->channels_lock
);
615 list_for_each_entry(channel
, &edge
->channels
, list
) {
616 spin_lock(&channel
->recv_lock
);
617 kick_worker
|= qcom_smd_channel_intr(channel
);
618 spin_unlock(&channel
->recv_lock
);
620 spin_unlock(&edge
->channels_lock
);
623 * Creating a new channel requires allocating an smem entry, so we only
624 * have to scan if the amount of available space in smem have changed
627 available
= qcom_smem_get_free_space(edge
->remote_pid
);
628 if (available
!= edge
->smem_available
) {
629 edge
->smem_available
= available
;
630 edge
->need_rescan
= true;
635 schedule_work(&edge
->work
);
641 * Delivers any outstanding packets in the rx fifo, can be used after probe of
642 * the clients to deliver any packets that wasn't delivered before the client
645 static void qcom_smd_channel_resume(struct qcom_smd_channel
*channel
)
649 spin_lock_irqsave(&channel
->recv_lock
, flags
);
650 qcom_smd_channel_intr(channel
);
651 spin_unlock_irqrestore(&channel
->recv_lock
, flags
);
655 * Calculate how much space is available in the tx fifo.
657 static size_t qcom_smd_get_tx_avail(struct qcom_smd_channel
*channel
)
661 unsigned mask
= channel
->fifo_size
- 1;
663 head
= GET_TX_CHANNEL_INFO(channel
, head
);
664 tail
= GET_TX_CHANNEL_INFO(channel
, tail
);
666 return mask
- ((head
- tail
) & mask
);
670 * Write count bytes of data into channel, possibly wrapping in the ring buffer
672 static int qcom_smd_write_fifo(struct qcom_smd_channel
*channel
,
680 word_aligned
= channel
->info_word
;
681 head
= GET_TX_CHANNEL_INFO(channel
, head
);
683 len
= min_t(size_t, count
, channel
->fifo_size
- head
);
685 smd_copy_to_fifo(channel
->tx_fifo
+ head
,
692 smd_copy_to_fifo(channel
->tx_fifo
,
699 head
&= (channel
->fifo_size
- 1);
700 SET_TX_CHANNEL_INFO(channel
, head
, head
);
706 * qcom_smd_send - write data to smd channel
707 * @channel: channel handle
708 * @data: buffer of data to write
709 * @len: number of bytes to write
711 * This is a blocking write of len bytes into the channel's tx ring buffer and
712 * signal the remote end. It will sleep until there is enough space available
713 * in the tx buffer, utilizing the fBLOCKREADINTR signaling mechanism to avoid
716 int qcom_smd_send(struct qcom_smd_channel
*channel
, const void *data
, int len
)
718 __le32 hdr
[5] = { cpu_to_le32(len
), };
719 int tlen
= sizeof(hdr
) + len
;
722 /* Word aligned channels only accept word size aligned data */
723 if (channel
->info_word
&& len
% 4)
726 /* Reject packets that are too big */
727 if (tlen
>= channel
->fifo_size
)
730 ret
= mutex_lock_interruptible(&channel
->tx_lock
);
734 while (qcom_smd_get_tx_avail(channel
) < tlen
) {
735 if (channel
->state
!= SMD_CHANNEL_OPENED
) {
740 SET_TX_CHANNEL_FLAG(channel
, fBLOCKREADINTR
, 0);
742 ret
= wait_event_interruptible(channel
->fblockread_event
,
743 qcom_smd_get_tx_avail(channel
) >= tlen
||
744 channel
->state
!= SMD_CHANNEL_OPENED
);
748 SET_TX_CHANNEL_FLAG(channel
, fBLOCKREADINTR
, 1);
751 SET_TX_CHANNEL_FLAG(channel
, fTAIL
, 0);
753 qcom_smd_write_fifo(channel
, hdr
, sizeof(hdr
));
754 qcom_smd_write_fifo(channel
, data
, len
);
756 SET_TX_CHANNEL_FLAG(channel
, fHEAD
, 1);
758 /* Ensure ordering of channel info updates */
761 qcom_smd_signal_channel(channel
);
764 mutex_unlock(&channel
->tx_lock
);
768 EXPORT_SYMBOL(qcom_smd_send
);
770 static struct qcom_smd_device
*to_smd_device(struct device
*dev
)
772 return container_of(dev
, struct qcom_smd_device
, dev
);
775 static struct qcom_smd_driver
*to_smd_driver(struct device
*dev
)
777 struct qcom_smd_device
*qsdev
= to_smd_device(dev
);
779 return container_of(qsdev
->dev
.driver
, struct qcom_smd_driver
, driver
);
782 static int qcom_smd_dev_match(struct device
*dev
, struct device_driver
*drv
)
784 struct qcom_smd_device
*qsdev
= to_smd_device(dev
);
785 struct qcom_smd_driver
*qsdrv
= container_of(drv
, struct qcom_smd_driver
, driver
);
786 const struct qcom_smd_id
*match
= qsdrv
->smd_match_table
;
787 const char *name
= qsdev
->channel
->name
;
790 while (match
->name
[0]) {
791 if (!strcmp(match
->name
, name
))
797 return of_driver_match_device(dev
, drv
);
801 * Probe the smd client.
803 * The remote side have indicated that it want the channel to be opened, so
804 * complete the state handshake and probe our client driver.
806 static int qcom_smd_dev_probe(struct device
*dev
)
808 struct qcom_smd_device
*qsdev
= to_smd_device(dev
);
809 struct qcom_smd_driver
*qsdrv
= to_smd_driver(dev
);
810 struct qcom_smd_channel
*channel
= qsdev
->channel
;
815 * Packets are maximum 4k, but reduce if the fifo is smaller
817 bb_size
= min(channel
->fifo_size
, SZ_4K
);
818 channel
->bounce_buffer
= kmalloc(bb_size
, GFP_KERNEL
);
819 if (!channel
->bounce_buffer
)
822 channel
->cb
= qsdrv
->callback
;
824 qcom_smd_channel_set_state(channel
, SMD_CHANNEL_OPENING
);
826 qcom_smd_channel_set_state(channel
, SMD_CHANNEL_OPENED
);
828 ret
= qsdrv
->probe(qsdev
);
832 qcom_smd_channel_resume(channel
);
837 dev_err(&qsdev
->dev
, "probe failed\n");
840 kfree(channel
->bounce_buffer
);
841 channel
->bounce_buffer
= NULL
;
843 qcom_smd_channel_set_state(channel
, SMD_CHANNEL_CLOSED
);
848 * Remove the smd client.
850 * The channel is going away, for some reason, so remove the smd client and
851 * reset the channel state.
853 static int qcom_smd_dev_remove(struct device
*dev
)
855 struct qcom_smd_device
*qsdev
= to_smd_device(dev
);
856 struct qcom_smd_driver
*qsdrv
= to_smd_driver(dev
);
857 struct qcom_smd_channel
*channel
= qsdev
->channel
;
860 qcom_smd_channel_set_state(channel
, SMD_CHANNEL_CLOSING
);
863 * Make sure we don't race with the code receiving data.
865 spin_lock_irqsave(&channel
->recv_lock
, flags
);
867 spin_unlock_irqrestore(&channel
->recv_lock
, flags
);
869 /* Wake up any sleepers in qcom_smd_send() */
870 wake_up_interruptible(&channel
->fblockread_event
);
873 * We expect that the client might block in remove() waiting for any
874 * outstanding calls to qcom_smd_send() to wake up and finish.
877 qsdrv
->remove(qsdev
);
880 * The client is now gone, cleanup and reset the channel state.
882 channel
->qsdev
= NULL
;
883 kfree(channel
->bounce_buffer
);
884 channel
->bounce_buffer
= NULL
;
886 qcom_smd_channel_set_state(channel
, SMD_CHANNEL_CLOSED
);
888 qcom_smd_channel_reset(channel
);
893 static struct bus_type qcom_smd_bus
= {
895 .match
= qcom_smd_dev_match
,
896 .probe
= qcom_smd_dev_probe
,
897 .remove
= qcom_smd_dev_remove
,
901 * Release function for the qcom_smd_device object.
903 static void qcom_smd_release_device(struct device
*dev
)
905 struct qcom_smd_device
*qsdev
= to_smd_device(dev
);
911 * Finds the device_node for the smd child interested in this channel.
913 static struct device_node
*qcom_smd_match_channel(struct device_node
*edge_node
,
916 struct device_node
*child
;
921 for_each_available_child_of_node(edge_node
, child
) {
922 key
= "qcom,smd-channels";
923 ret
= of_property_read_string(child
, key
, &name
);
927 if (strcmp(name
, channel
) == 0)
935 * Create a smd client device for channel that is being opened.
937 static int qcom_smd_create_device(struct qcom_smd_channel
*channel
)
939 struct qcom_smd_device
*qsdev
;
940 struct qcom_smd_edge
*edge
= channel
->edge
;
941 struct device_node
*node
;
942 struct qcom_smd
*smd
= edge
->smd
;
948 dev_dbg(smd
->dev
, "registering '%s'\n", channel
->name
);
950 qsdev
= kzalloc(sizeof(*qsdev
), GFP_KERNEL
);
954 node
= qcom_smd_match_channel(edge
->of_node
, channel
->name
);
955 dev_set_name(&qsdev
->dev
, "%s.%s",
957 node
? node
->name
: channel
->name
);
959 qsdev
->dev
.parent
= smd
->dev
;
960 qsdev
->dev
.bus
= &qcom_smd_bus
;
961 qsdev
->dev
.release
= qcom_smd_release_device
;
962 qsdev
->dev
.of_node
= node
;
964 qsdev
->channel
= channel
;
966 channel
->qsdev
= qsdev
;
968 ret
= device_register(&qsdev
->dev
);
970 dev_err(smd
->dev
, "device_register failed: %d\n", ret
);
971 put_device(&qsdev
->dev
);
978 * Destroy a smd client device for a channel that's going away.
980 static void qcom_smd_destroy_device(struct qcom_smd_channel
*channel
)
984 BUG_ON(!channel
->qsdev
);
986 dev
= &channel
->qsdev
->dev
;
988 device_unregister(dev
);
989 of_node_put(dev
->of_node
);
994 * qcom_smd_driver_register - register a smd driver
995 * @qsdrv: qcom_smd_driver struct
997 int qcom_smd_driver_register(struct qcom_smd_driver
*qsdrv
)
999 qsdrv
->driver
.bus
= &qcom_smd_bus
;
1000 return driver_register(&qsdrv
->driver
);
1002 EXPORT_SYMBOL(qcom_smd_driver_register
);
1005 * qcom_smd_driver_unregister - unregister a smd driver
1006 * @qsdrv: qcom_smd_driver struct
1008 void qcom_smd_driver_unregister(struct qcom_smd_driver
*qsdrv
)
1010 driver_unregister(&qsdrv
->driver
);
1012 EXPORT_SYMBOL(qcom_smd_driver_unregister
);
1015 * Allocate the qcom_smd_channel object for a newly found smd channel,
1016 * retrieving and validating the smem items involved.
1018 static struct qcom_smd_channel
*qcom_smd_create_channel(struct qcom_smd_edge
*edge
,
1019 unsigned smem_info_item
,
1020 unsigned smem_fifo_item
,
1023 struct qcom_smd_channel
*channel
;
1024 struct qcom_smd
*smd
= edge
->smd
;
1031 channel
= devm_kzalloc(smd
->dev
, sizeof(*channel
), GFP_KERNEL
);
1033 return ERR_PTR(-ENOMEM
);
1035 channel
->edge
= edge
;
1036 channel
->name
= devm_kstrdup(smd
->dev
, name
, GFP_KERNEL
);
1038 return ERR_PTR(-ENOMEM
);
1040 mutex_init(&channel
->tx_lock
);
1041 spin_lock_init(&channel
->recv_lock
);
1042 init_waitqueue_head(&channel
->fblockread_event
);
1044 info
= qcom_smem_get(edge
->remote_pid
, smem_info_item
, &info_size
);
1046 ret
= PTR_ERR(info
);
1047 goto free_name_and_channel
;
1051 * Use the size of the item to figure out which channel info struct to
1054 if (info_size
== 2 * sizeof(struct smd_channel_info_word
)) {
1055 channel
->info_word
= info
;
1056 } else if (info_size
== 2 * sizeof(struct smd_channel_info
)) {
1057 channel
->info
= info
;
1060 "channel info of size %zu not supported\n", info_size
);
1062 goto free_name_and_channel
;
1065 fifo_base
= qcom_smem_get(edge
->remote_pid
, smem_fifo_item
, &fifo_size
);
1066 if (IS_ERR(fifo_base
)) {
1067 ret
= PTR_ERR(fifo_base
);
1068 goto free_name_and_channel
;
1071 /* The channel consist of a rx and tx fifo of equal size */
1074 dev_dbg(smd
->dev
, "new channel '%s' info-size: %zu fifo-size: %zu\n",
1075 name
, info_size
, fifo_size
);
1077 channel
->tx_fifo
= fifo_base
;
1078 channel
->rx_fifo
= fifo_base
+ fifo_size
;
1079 channel
->fifo_size
= fifo_size
;
1081 qcom_smd_channel_reset(channel
);
1085 free_name_and_channel
:
1086 devm_kfree(smd
->dev
, channel
->name
);
1087 devm_kfree(smd
->dev
, channel
);
1089 return ERR_PTR(ret
);
1093 * Scans the allocation table for any newly allocated channels, calls
1094 * qcom_smd_create_channel() to create representations of these and add
1095 * them to the edge's list of channels.
1097 static void qcom_discover_channels(struct qcom_smd_edge
*edge
)
1099 struct qcom_smd_alloc_entry
*alloc_tbl
;
1100 struct qcom_smd_alloc_entry
*entry
;
1101 struct qcom_smd_channel
*channel
;
1102 struct qcom_smd
*smd
= edge
->smd
;
1103 unsigned long flags
;
1110 for (tbl
= 0; tbl
< SMD_ALLOC_TBL_COUNT
; tbl
++) {
1111 alloc_tbl
= qcom_smem_get(edge
->remote_pid
,
1112 smem_items
[tbl
].alloc_tbl_id
, NULL
);
1113 if (IS_ERR(alloc_tbl
))
1116 for (i
= 0; i
< SMD_ALLOC_TBL_SIZE
; i
++) {
1117 entry
= &alloc_tbl
[i
];
1118 eflags
= le32_to_cpu(entry
->flags
);
1119 if (test_bit(i
, edge
->allocated
[tbl
]))
1122 if (entry
->ref_count
== 0)
1125 if (!entry
->name
[0])
1128 if (!(eflags
& SMD_CHANNEL_FLAGS_PACKET
))
1131 if ((eflags
& SMD_CHANNEL_FLAGS_EDGE_MASK
) != edge
->edge_id
)
1134 cid
= le32_to_cpu(entry
->cid
);
1135 info_id
= smem_items
[tbl
].info_base_id
+ cid
;
1136 fifo_id
= smem_items
[tbl
].fifo_base_id
+ cid
;
1138 channel
= qcom_smd_create_channel(edge
, info_id
, fifo_id
, entry
->name
);
1139 if (IS_ERR(channel
))
1142 spin_lock_irqsave(&edge
->channels_lock
, flags
);
1143 list_add(&channel
->list
, &edge
->channels
);
1144 spin_unlock_irqrestore(&edge
->channels_lock
, flags
);
1146 dev_dbg(smd
->dev
, "new channel found: '%s'\n", channel
->name
);
1147 set_bit(i
, edge
->allocated
[tbl
]);
1151 schedule_work(&edge
->work
);
1155 * This per edge worker scans smem for any new channels and register these. It
1156 * then scans all registered channels for state changes that should be handled
1157 * by creating or destroying smd client devices for the registered channels.
1159 * LOCKING: edge->channels_lock is not needed to be held during the traversal
1160 * of the channels list as it's done synchronously with the only writer.
1162 static void qcom_channel_state_worker(struct work_struct
*work
)
1164 struct qcom_smd_channel
*channel
;
1165 struct qcom_smd_edge
*edge
= container_of(work
,
1166 struct qcom_smd_edge
,
1168 unsigned remote_state
;
1171 * Rescan smem if we have reason to belive that there are new channels.
1173 if (edge
->need_rescan
) {
1174 edge
->need_rescan
= false;
1175 qcom_discover_channels(edge
);
1179 * Register a device for any closed channel where the remote processor
1180 * is showing interest in opening the channel.
1182 list_for_each_entry(channel
, &edge
->channels
, list
) {
1183 if (channel
->state
!= SMD_CHANNEL_CLOSED
)
1186 remote_state
= GET_RX_CHANNEL_INFO(channel
, state
);
1187 if (remote_state
!= SMD_CHANNEL_OPENING
&&
1188 remote_state
!= SMD_CHANNEL_OPENED
)
1191 qcom_smd_create_device(channel
);
1195 * Unregister the device for any channel that is opened where the
1196 * remote processor is closing the channel.
1198 list_for_each_entry(channel
, &edge
->channels
, list
) {
1199 if (channel
->state
!= SMD_CHANNEL_OPENING
&&
1200 channel
->state
!= SMD_CHANNEL_OPENED
)
1203 remote_state
= GET_RX_CHANNEL_INFO(channel
, state
);
1204 if (remote_state
== SMD_CHANNEL_OPENING
||
1205 remote_state
== SMD_CHANNEL_OPENED
)
1208 qcom_smd_destroy_device(channel
);
1213 * Parses an of_node describing an edge.
1215 static int qcom_smd_parse_edge(struct device
*dev
,
1216 struct device_node
*node
,
1217 struct qcom_smd_edge
*edge
)
1219 struct device_node
*syscon_np
;
1224 INIT_LIST_HEAD(&edge
->channels
);
1225 spin_lock_init(&edge
->channels_lock
);
1227 INIT_WORK(&edge
->work
, qcom_channel_state_worker
);
1229 edge
->of_node
= of_node_get(node
);
1231 irq
= irq_of_parse_and_map(node
, 0);
1233 dev_err(dev
, "required smd interrupt missing\n");
1237 ret
= devm_request_irq(dev
, irq
,
1238 qcom_smd_edge_intr
, IRQF_TRIGGER_RISING
,
1241 dev_err(dev
, "failed to request smd irq\n");
1247 key
= "qcom,smd-edge";
1248 ret
= of_property_read_u32(node
, key
, &edge
->edge_id
);
1250 dev_err(dev
, "edge missing %s property\n", key
);
1254 edge
->remote_pid
= QCOM_SMEM_HOST_ANY
;
1255 key
= "qcom,remote-pid";
1256 of_property_read_u32(node
, key
, &edge
->remote_pid
);
1258 syscon_np
= of_parse_phandle(node
, "qcom,ipc", 0);
1260 dev_err(dev
, "no qcom,ipc node\n");
1264 edge
->ipc_regmap
= syscon_node_to_regmap(syscon_np
);
1265 if (IS_ERR(edge
->ipc_regmap
))
1266 return PTR_ERR(edge
->ipc_regmap
);
1269 ret
= of_property_read_u32_index(node
, key
, 1, &edge
->ipc_offset
);
1271 dev_err(dev
, "no offset in %s\n", key
);
1275 ret
= of_property_read_u32_index(node
, key
, 2, &edge
->ipc_bit
);
1277 dev_err(dev
, "no bit in %s\n", key
);
1284 static int qcom_smd_probe(struct platform_device
*pdev
)
1286 struct qcom_smd_edge
*edge
;
1287 struct device_node
*node
;
1288 struct qcom_smd
*smd
;
1296 p
= qcom_smem_get(QCOM_SMEM_HOST_ANY
, smem_items
[0].alloc_tbl_id
, NULL
);
1297 if (PTR_ERR(p
) == -EPROBE_DEFER
)
1300 num_edges
= of_get_available_child_count(pdev
->dev
.of_node
);
1301 array_size
= sizeof(*smd
) + num_edges
* sizeof(struct qcom_smd_edge
);
1302 smd
= devm_kzalloc(&pdev
->dev
, array_size
, GFP_KERNEL
);
1305 smd
->dev
= &pdev
->dev
;
1307 smd
->num_edges
= num_edges
;
1308 for_each_available_child_of_node(pdev
->dev
.of_node
, node
) {
1309 edge
= &smd
->edges
[i
++];
1312 ret
= qcom_smd_parse_edge(&pdev
->dev
, node
, edge
);
1316 edge
->need_rescan
= true;
1317 schedule_work(&edge
->work
);
1320 platform_set_drvdata(pdev
, smd
);
1326 * Shut down all smd clients by making sure that each edge stops processing
1327 * events and scanning for new channels, then call destroy on the devices.
1329 static int qcom_smd_remove(struct platform_device
*pdev
)
1331 struct qcom_smd_channel
*channel
;
1332 struct qcom_smd_edge
*edge
;
1333 struct qcom_smd
*smd
= platform_get_drvdata(pdev
);
1336 for (i
= 0; i
< smd
->num_edges
; i
++) {
1337 edge
= &smd
->edges
[i
];
1339 disable_irq(edge
->irq
);
1340 cancel_work_sync(&edge
->work
);
1342 list_for_each_entry(channel
, &edge
->channels
, list
) {
1343 if (!channel
->qsdev
)
1346 qcom_smd_destroy_device(channel
);
1353 static const struct of_device_id qcom_smd_of_match
[] = {
1354 { .compatible
= "qcom,smd" },
1357 MODULE_DEVICE_TABLE(of
, qcom_smd_of_match
);
1359 static struct platform_driver qcom_smd_driver
= {
1360 .probe
= qcom_smd_probe
,
1361 .remove
= qcom_smd_remove
,
1364 .of_match_table
= qcom_smd_of_match
,
1368 static int __init
qcom_smd_init(void)
1372 ret
= bus_register(&qcom_smd_bus
);
1374 pr_err("failed to register smd bus: %d\n", ret
);
1378 return platform_driver_register(&qcom_smd_driver
);
1380 postcore_initcall(qcom_smd_init
);
1382 static void __exit
qcom_smd_exit(void)
1384 platform_driver_unregister(&qcom_smd_driver
);
1385 bus_unregister(&qcom_smd_bus
);
1387 module_exit(qcom_smd_exit
);
1389 MODULE_AUTHOR("Bjorn Andersson <bjorn.andersson@sonymobile.com>");
1390 MODULE_DESCRIPTION("Qualcomm Shared Memory Driver");
1391 MODULE_LICENSE("GPL v2");