2 * Virtio-based remote processor messaging bus
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Copyright (C) 2011 Google, Inc.
7 * Ohad Ben-Cohen <ohad@wizery.com>
8 * Brian Swetland <swetland@google.com>
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
20 #define pr_fmt(fmt) "%s: " fmt, __func__
22 #include <linux/kernel.h>
23 #include <linux/module.h>
24 #include <linux/virtio.h>
25 #include <linux/virtio_ids.h>
26 #include <linux/virtio_config.h>
27 #include <linux/scatterlist.h>
28 #include <linux/dma-mapping.h>
29 #include <linux/slab.h>
30 #include <linux/idr.h>
31 #include <linux/jiffies.h>
32 #include <linux/sched.h>
33 #include <linux/wait.h>
34 #include <linux/rpmsg.h>
35 #include <linux/mutex.h>
38 * struct virtproc_info - virtual remote processor state
39 * @vdev: the virtio device
42 * @rbufs: kernel address of rx buffers
43 * @sbufs: kernel address of tx buffers
44 * @num_bufs: total number of buffers for rx and tx
45 * @last_sbuf: index of last tx buffer used
46 * @bufs_dma: dma base addr of the buffers
47 * @tx_lock: protects svq, sbufs and sleepers, to allow concurrent senders.
48 * sending a message might require waking up a dozing remote
49 * processor, which involves sleeping, hence the mutex.
50 * @endpoints: idr of local endpoints, allows fast retrieval
51 * @endpoints_lock: lock of the endpoints set
52 * @sendq: wait queue of sending contexts waiting for a tx buffers
53 * @sleepers: number of senders that are waiting for a tx buffer
54 * @ns_ept: the bus's name service endpoint
56 * This structure stores the rpmsg state of a given virtio remote processor
57 * device (there might be several virtio proc devices for each physical
60 struct virtproc_info
{
61 struct virtio_device
*vdev
;
62 struct virtqueue
*rvq
, *svq
;
64 unsigned int num_bufs
;
69 struct mutex endpoints_lock
;
70 wait_queue_head_t sendq
;
72 struct rpmsg_endpoint
*ns_ept
;
76 * struct rpmsg_channel_info - internal channel info representation
77 * @name: name of service
79 * @dst: destination address
81 struct rpmsg_channel_info
{
82 char name
[RPMSG_NAME_SIZE
];
87 #define to_rpmsg_channel(d) container_of(d, struct rpmsg_channel, dev)
88 #define to_rpmsg_driver(d) container_of(d, struct rpmsg_driver, drv)
91 * We're allocating buffers of 512 bytes each for communications. The
92 * number of buffers will be computed from the number of buffers supported
93 * by the vring, upto a maximum of 512 buffers (256 in each direction).
95 * Each buffer will have 16 bytes for the msg header and 496 bytes for
98 * This will utilize a maximum total space of 256KB for the buffers.
100 * We might also want to add support for user-provided buffers in time.
101 * This will allow bigger buffer size flexibility, and can also be used
102 * to achieve zero-copy messaging.
104 * Note that these numbers are purely a decision of this driver - we
105 * can change this without changing anything in the firmware of the remote
108 #define MAX_RPMSG_NUM_BUFS (512)
109 #define RPMSG_BUF_SIZE (512)
112 * Local addresses are dynamically allocated on-demand.
113 * We do not dynamically assign addresses from the low 1024 range,
114 * in order to reserve that address range for predefined services.
116 #define RPMSG_RESERVED_ADDRESSES (1024)
118 /* Address 53 is reserved for advertising remote services */
119 #define RPMSG_NS_ADDR (53)
121 /* sysfs show configuration fields */
122 #define rpmsg_show_attr(field, path, format_string) \
124 field##_show(struct device *dev, \
125 struct device_attribute *attr, char *buf) \
127 struct rpmsg_channel *rpdev = to_rpmsg_channel(dev); \
129 return sprintf(buf, format_string, rpdev->path); \
132 /* for more info, see Documentation/ABI/testing/sysfs-bus-rpmsg */
133 rpmsg_show_attr(name
, id
.name
, "%s\n");
134 rpmsg_show_attr(src
, src
, "0x%x\n");
135 rpmsg_show_attr(dst
, dst
, "0x%x\n");
136 rpmsg_show_attr(announce
, announce
? "true" : "false", "%s\n");
139 * Unique (and free running) index for rpmsg devices.
141 * Yeah, we're not recycling those numbers (yet?). will be easy
142 * to change if/when we want to.
144 static unsigned int rpmsg_dev_index
;
146 static ssize_t
modalias_show(struct device
*dev
,
147 struct device_attribute
*attr
, char *buf
)
149 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
151 return sprintf(buf
, RPMSG_DEVICE_MODALIAS_FMT
"\n", rpdev
->id
.name
);
154 static struct device_attribute rpmsg_dev_attrs
[] = {
163 /* rpmsg devices and drivers are matched using the service name */
164 static inline int rpmsg_id_match(const struct rpmsg_channel
*rpdev
,
165 const struct rpmsg_device_id
*id
)
167 return strncmp(id
->name
, rpdev
->id
.name
, RPMSG_NAME_SIZE
) == 0;
170 /* match rpmsg channel and rpmsg driver */
171 static int rpmsg_dev_match(struct device
*dev
, struct device_driver
*drv
)
173 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
174 struct rpmsg_driver
*rpdrv
= to_rpmsg_driver(drv
);
175 const struct rpmsg_device_id
*ids
= rpdrv
->id_table
;
178 for (i
= 0; ids
[i
].name
[0]; i
++)
179 if (rpmsg_id_match(rpdev
, &ids
[i
]))
185 static int rpmsg_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
187 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
189 return add_uevent_var(env
, "MODALIAS=" RPMSG_DEVICE_MODALIAS_FMT
,
194 * __ept_release() - deallocate an rpmsg endpoint
195 * @kref: the ept's reference count
197 * This function deallocates an ept, and is invoked when its @kref refcount
200 * Never invoke this function directly!
202 static void __ept_release(struct kref
*kref
)
204 struct rpmsg_endpoint
*ept
= container_of(kref
, struct rpmsg_endpoint
,
207 * At this point no one holds a reference to ept anymore,
208 * so we can directly free it
213 /* for more info, see below documentation of rpmsg_create_ept() */
214 static struct rpmsg_endpoint
*__rpmsg_create_ept(struct virtproc_info
*vrp
,
215 struct rpmsg_channel
*rpdev
, rpmsg_rx_cb_t cb
,
216 void *priv
, u32 addr
)
218 int id_min
, id_max
, id
;
219 struct rpmsg_endpoint
*ept
;
220 struct device
*dev
= rpdev
? &rpdev
->dev
: &vrp
->vdev
->dev
;
222 ept
= kzalloc(sizeof(*ept
), GFP_KERNEL
);
224 dev_err(dev
, "failed to kzalloc a new ept\n");
228 kref_init(&ept
->refcount
);
229 mutex_init(&ept
->cb_lock
);
235 /* do we need to allocate a local address ? */
236 if (addr
== RPMSG_ADDR_ANY
) {
237 id_min
= RPMSG_RESERVED_ADDRESSES
;
244 mutex_lock(&vrp
->endpoints_lock
);
246 /* bind the endpoint to an rpmsg address (and allocate one if needed) */
247 id
= idr_alloc(&vrp
->endpoints
, ept
, id_min
, id_max
, GFP_KERNEL
);
249 dev_err(dev
, "idr_alloc failed: %d\n", id
);
254 mutex_unlock(&vrp
->endpoints_lock
);
259 mutex_unlock(&vrp
->endpoints_lock
);
260 kref_put(&ept
->refcount
, __ept_release
);
265 * rpmsg_create_ept() - create a new rpmsg_endpoint
266 * @rpdev: rpmsg channel device
267 * @cb: rx callback handler
268 * @priv: private data for the driver's use
269 * @addr: local rpmsg address to bind with @cb
271 * Every rpmsg address in the system is bound to an rx callback (so when
272 * inbound messages arrive, they are dispatched by the rpmsg bus using the
273 * appropriate callback handler) by means of an rpmsg_endpoint struct.
275 * This function allows drivers to create such an endpoint, and by that,
276 * bind a callback, and possibly some private data too, to an rpmsg address
277 * (either one that is known in advance, or one that will be dynamically
278 * assigned for them).
280 * Simple rpmsg drivers need not call rpmsg_create_ept, because an endpoint
281 * is already created for them when they are probed by the rpmsg bus
282 * (using the rx callback provided when they registered to the rpmsg bus).
284 * So things should just work for simple drivers: they already have an
285 * endpoint, their rx callback is bound to their rpmsg address, and when
286 * relevant inbound messages arrive (i.e. messages which their dst address
287 * equals to the src address of their rpmsg channel), the driver's handler
288 * is invoked to process it.
290 * That said, more complicated drivers might do need to allocate
291 * additional rpmsg addresses, and bind them to different rx callbacks.
292 * To accomplish that, those drivers need to call this function.
294 * Drivers should provide their @rpdev channel (so the new endpoint would belong
295 * to the same remote processor their channel belongs to), an rx callback
296 * function, an optional private data (which is provided back when the
297 * rx callback is invoked), and an address they want to bind with the
298 * callback. If @addr is RPMSG_ADDR_ANY, then rpmsg_create_ept will
299 * dynamically assign them an available rpmsg address (drivers should have
300 * a very good reason why not to always use RPMSG_ADDR_ANY here).
302 * Returns a pointer to the endpoint on success, or NULL on error.
304 struct rpmsg_endpoint
*rpmsg_create_ept(struct rpmsg_channel
*rpdev
,
305 rpmsg_rx_cb_t cb
, void *priv
, u32 addr
)
307 return __rpmsg_create_ept(rpdev
->vrp
, rpdev
, cb
, priv
, addr
);
309 EXPORT_SYMBOL(rpmsg_create_ept
);
312 * __rpmsg_destroy_ept() - destroy an existing rpmsg endpoint
313 * @vrp: virtproc which owns this ept
314 * @ept: endpoing to destroy
316 * An internal function which destroy an ept without assuming it is
317 * bound to an rpmsg channel. This is needed for handling the internal
318 * name service endpoint, which isn't bound to an rpmsg channel.
319 * See also __rpmsg_create_ept().
322 __rpmsg_destroy_ept(struct virtproc_info
*vrp
, struct rpmsg_endpoint
*ept
)
324 /* make sure new inbound messages can't find this ept anymore */
325 mutex_lock(&vrp
->endpoints_lock
);
326 idr_remove(&vrp
->endpoints
, ept
->addr
);
327 mutex_unlock(&vrp
->endpoints_lock
);
329 /* make sure in-flight inbound messages won't invoke cb anymore */
330 mutex_lock(&ept
->cb_lock
);
332 mutex_unlock(&ept
->cb_lock
);
334 kref_put(&ept
->refcount
, __ept_release
);
338 * rpmsg_destroy_ept() - destroy an existing rpmsg endpoint
339 * @ept: endpoing to destroy
341 * Should be used by drivers to destroy an rpmsg endpoint previously
342 * created with rpmsg_create_ept().
344 void rpmsg_destroy_ept(struct rpmsg_endpoint
*ept
)
346 __rpmsg_destroy_ept(ept
->rpdev
->vrp
, ept
);
348 EXPORT_SYMBOL(rpmsg_destroy_ept
);
351 * when an rpmsg driver is probed with a channel, we seamlessly create
352 * it an endpoint, binding its rx callback to a unique local rpmsg
355 * if we need to, we also announce about this channel to the remote
356 * processor (needed in case the driver is exposing an rpmsg service).
358 static int rpmsg_dev_probe(struct device
*dev
)
360 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
361 struct rpmsg_driver
*rpdrv
= to_rpmsg_driver(rpdev
->dev
.driver
);
362 struct virtproc_info
*vrp
= rpdev
->vrp
;
363 struct rpmsg_endpoint
*ept
;
366 ept
= rpmsg_create_ept(rpdev
, rpdrv
->callback
, NULL
, rpdev
->src
);
368 dev_err(dev
, "failed to create endpoint\n");
374 rpdev
->src
= ept
->addr
;
376 err
= rpdrv
->probe(rpdev
);
378 dev_err(dev
, "%s: failed: %d\n", __func__
, err
);
379 rpmsg_destroy_ept(ept
);
383 /* need to tell remote processor's name service about this channel ? */
384 if (rpdev
->announce
&&
385 virtio_has_feature(vrp
->vdev
, VIRTIO_RPMSG_F_NS
)) {
386 struct rpmsg_ns_msg nsm
;
388 strncpy(nsm
.name
, rpdev
->id
.name
, RPMSG_NAME_SIZE
);
389 nsm
.addr
= rpdev
->src
;
390 nsm
.flags
= RPMSG_NS_CREATE
;
392 err
= rpmsg_sendto(rpdev
, &nsm
, sizeof(nsm
), RPMSG_NS_ADDR
);
394 dev_err(dev
, "failed to announce service %d\n", err
);
401 static int rpmsg_dev_remove(struct device
*dev
)
403 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
404 struct rpmsg_driver
*rpdrv
= to_rpmsg_driver(rpdev
->dev
.driver
);
405 struct virtproc_info
*vrp
= rpdev
->vrp
;
408 /* tell remote processor's name service we're removing this channel */
409 if (rpdev
->announce
&&
410 virtio_has_feature(vrp
->vdev
, VIRTIO_RPMSG_F_NS
)) {
411 struct rpmsg_ns_msg nsm
;
413 strncpy(nsm
.name
, rpdev
->id
.name
, RPMSG_NAME_SIZE
);
414 nsm
.addr
= rpdev
->src
;
415 nsm
.flags
= RPMSG_NS_DESTROY
;
417 err
= rpmsg_sendto(rpdev
, &nsm
, sizeof(nsm
), RPMSG_NS_ADDR
);
419 dev_err(dev
, "failed to announce service %d\n", err
);
422 rpdrv
->remove(rpdev
);
424 rpmsg_destroy_ept(rpdev
->ept
);
429 static struct bus_type rpmsg_bus
= {
431 .match
= rpmsg_dev_match
,
432 .dev_attrs
= rpmsg_dev_attrs
,
433 .uevent
= rpmsg_uevent
,
434 .probe
= rpmsg_dev_probe
,
435 .remove
= rpmsg_dev_remove
,
439 * register_rpmsg_driver() - register an rpmsg driver with the rpmsg bus
440 * @rpdrv: pointer to a struct rpmsg_driver
442 * Returns 0 on success, and an appropriate error value on failure.
444 int register_rpmsg_driver(struct rpmsg_driver
*rpdrv
)
446 rpdrv
->drv
.bus
= &rpmsg_bus
;
447 return driver_register(&rpdrv
->drv
);
449 EXPORT_SYMBOL(register_rpmsg_driver
);
452 * unregister_rpmsg_driver() - unregister an rpmsg driver from the rpmsg bus
453 * @rpdrv: pointer to a struct rpmsg_driver
455 * Returns 0 on success, and an appropriate error value on failure.
457 void unregister_rpmsg_driver(struct rpmsg_driver
*rpdrv
)
459 driver_unregister(&rpdrv
->drv
);
461 EXPORT_SYMBOL(unregister_rpmsg_driver
);
463 static void rpmsg_release_device(struct device
*dev
)
465 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
471 * match an rpmsg channel with a channel info struct.
472 * this is used to make sure we're not creating rpmsg devices for channels
473 * that already exist.
475 static int rpmsg_channel_match(struct device
*dev
, void *data
)
477 struct rpmsg_channel_info
*chinfo
= data
;
478 struct rpmsg_channel
*rpdev
= to_rpmsg_channel(dev
);
480 if (chinfo
->src
!= RPMSG_ADDR_ANY
&& chinfo
->src
!= rpdev
->src
)
483 if (chinfo
->dst
!= RPMSG_ADDR_ANY
&& chinfo
->dst
!= rpdev
->dst
)
486 if (strncmp(chinfo
->name
, rpdev
->id
.name
, RPMSG_NAME_SIZE
))
489 /* found a match ! */
494 * create an rpmsg channel using its name and address info.
495 * this function will be used to create both static and dynamic
498 static struct rpmsg_channel
*rpmsg_create_channel(struct virtproc_info
*vrp
,
499 struct rpmsg_channel_info
*chinfo
)
501 struct rpmsg_channel
*rpdev
;
502 struct device
*tmp
, *dev
= &vrp
->vdev
->dev
;
505 /* make sure a similar channel doesn't already exist */
506 tmp
= device_find_child(dev
, chinfo
, rpmsg_channel_match
);
508 /* decrement the matched device's refcount back */
510 dev_err(dev
, "channel %s:%x:%x already exist\n",
511 chinfo
->name
, chinfo
->src
, chinfo
->dst
);
515 rpdev
= kzalloc(sizeof(struct rpmsg_channel
), GFP_KERNEL
);
517 pr_err("kzalloc failed\n");
522 rpdev
->src
= chinfo
->src
;
523 rpdev
->dst
= chinfo
->dst
;
526 * rpmsg server channels has predefined local address (for now),
527 * and their existence needs to be announced remotely
529 rpdev
->announce
= rpdev
->src
!= RPMSG_ADDR_ANY
? true : false;
531 strncpy(rpdev
->id
.name
, chinfo
->name
, RPMSG_NAME_SIZE
);
533 /* very simple device indexing plumbing which is enough for now */
534 dev_set_name(&rpdev
->dev
, "rpmsg%d", rpmsg_dev_index
++);
536 rpdev
->dev
.parent
= &vrp
->vdev
->dev
;
537 rpdev
->dev
.bus
= &rpmsg_bus
;
538 rpdev
->dev
.release
= rpmsg_release_device
;
540 ret
= device_register(&rpdev
->dev
);
542 dev_err(dev
, "device_register failed: %d\n", ret
);
543 put_device(&rpdev
->dev
);
551 * find an existing channel using its name + address properties,
554 static int rpmsg_destroy_channel(struct virtproc_info
*vrp
,
555 struct rpmsg_channel_info
*chinfo
)
557 struct virtio_device
*vdev
= vrp
->vdev
;
560 dev
= device_find_child(&vdev
->dev
, chinfo
, rpmsg_channel_match
);
564 device_unregister(dev
);
571 /* super simple buffer "allocator" that is just enough for now */
572 static void *get_a_tx_buf(struct virtproc_info
*vrp
)
577 /* support multiple concurrent senders */
578 mutex_lock(&vrp
->tx_lock
);
581 * either pick the next unused tx buffer
582 * (half of our buffers are used for sending messages)
584 if (vrp
->last_sbuf
< vrp
->num_bufs
/ 2)
585 ret
= vrp
->sbufs
+ RPMSG_BUF_SIZE
* vrp
->last_sbuf
++;
586 /* or recycle a used one */
588 ret
= virtqueue_get_buf(vrp
->svq
, &len
);
590 mutex_unlock(&vrp
->tx_lock
);
596 * rpmsg_upref_sleepers() - enable "tx-complete" interrupts, if needed
597 * @vrp: virtual remote processor state
599 * This function is called before a sender is blocked, waiting for
600 * a tx buffer to become available.
602 * If we already have blocking senders, this function merely increases
603 * the "sleepers" reference count, and exits.
605 * Otherwise, if this is the first sender to block, we also enable
606 * virtio's tx callbacks, so we'd be immediately notified when a tx
607 * buffer is consumed (we rely on virtio's tx callback in order
608 * to wake up sleeping senders as soon as a tx buffer is used by the
611 static void rpmsg_upref_sleepers(struct virtproc_info
*vrp
)
613 /* support multiple concurrent senders */
614 mutex_lock(&vrp
->tx_lock
);
616 /* are we the first sleeping context waiting for tx buffers ? */
617 if (atomic_inc_return(&vrp
->sleepers
) == 1)
618 /* enable "tx-complete" interrupts before dozing off */
619 virtqueue_enable_cb(vrp
->svq
);
621 mutex_unlock(&vrp
->tx_lock
);
625 * rpmsg_downref_sleepers() - disable "tx-complete" interrupts, if needed
626 * @vrp: virtual remote processor state
628 * This function is called after a sender, that waited for a tx buffer
629 * to become available, is unblocked.
631 * If we still have blocking senders, this function merely decreases
632 * the "sleepers" reference count, and exits.
634 * Otherwise, if there are no more blocking senders, we also disable
635 * virtio's tx callbacks, to avoid the overhead incurred with handling
636 * those (now redundant) interrupts.
638 static void rpmsg_downref_sleepers(struct virtproc_info
*vrp
)
640 /* support multiple concurrent senders */
641 mutex_lock(&vrp
->tx_lock
);
643 /* are we the last sleeping context waiting for tx buffers ? */
644 if (atomic_dec_and_test(&vrp
->sleepers
))
645 /* disable "tx-complete" interrupts */
646 virtqueue_disable_cb(vrp
->svq
);
648 mutex_unlock(&vrp
->tx_lock
);
652 * rpmsg_send_offchannel_raw() - send a message across to the remote processor
653 * @rpdev: the rpmsg channel
654 * @src: source address
655 * @dst: destination address
656 * @data: payload of message
657 * @len: length of payload
658 * @wait: indicates whether caller should block in case no TX buffers available
660 * This function is the base implementation for all of the rpmsg sending API.
662 * It will send @data of length @len to @dst, and say it's from @src. The
663 * message will be sent to the remote processor which the @rpdev channel
666 * The message is sent using one of the TX buffers that are available for
667 * communication with this remote processor.
669 * If @wait is true, the caller will be blocked until either a TX buffer is
670 * available, or 15 seconds elapses (we don't want callers to
671 * sleep indefinitely due to misbehaving remote processors), and in that
672 * case -ERESTARTSYS is returned. The number '15' itself was picked
673 * arbitrarily; there's little point in asking drivers to provide a timeout
676 * Otherwise, if @wait is false, and there are no TX buffers available,
677 * the function will immediately fail, and -ENOMEM will be returned.
679 * Normally drivers shouldn't use this function directly; instead, drivers
680 * should use the appropriate rpmsg_{try}send{to, _offchannel} API
681 * (see include/linux/rpmsg.h).
683 * Returns 0 on success and an appropriate error value on failure.
685 int rpmsg_send_offchannel_raw(struct rpmsg_channel
*rpdev
, u32 src
, u32 dst
,
686 void *data
, int len
, bool wait
)
688 struct virtproc_info
*vrp
= rpdev
->vrp
;
689 struct device
*dev
= &rpdev
->dev
;
690 struct scatterlist sg
;
691 struct rpmsg_hdr
*msg
;
694 /* bcasting isn't allowed */
695 if (src
== RPMSG_ADDR_ANY
|| dst
== RPMSG_ADDR_ANY
) {
696 dev_err(dev
, "invalid addr (src 0x%x, dst 0x%x)\n", src
, dst
);
701 * We currently use fixed-sized buffers, and therefore the payload
704 * One of the possible improvements here is either to support
705 * user-provided buffers (and then we can also support zero-copy
706 * messaging), or to improve the buffer allocator, to support
707 * variable-length buffer sizes.
709 if (len
> RPMSG_BUF_SIZE
- sizeof(struct rpmsg_hdr
)) {
710 dev_err(dev
, "message is too big (%d)\n", len
);
715 msg
= get_a_tx_buf(vrp
);
719 /* no free buffer ? wait for one (but bail after 15 seconds) */
721 /* enable "tx-complete" interrupts, if not already enabled */
722 rpmsg_upref_sleepers(vrp
);
725 * sleep until a free buffer is available or 15 secs elapse.
726 * the timeout period is not configurable because there's
727 * little point in asking drivers to specify that.
728 * if later this happens to be required, it'd be easy to add.
730 err
= wait_event_interruptible_timeout(vrp
->sendq
,
731 (msg
= get_a_tx_buf(vrp
)),
732 msecs_to_jiffies(15000));
734 /* disable "tx-complete" interrupts if we're the last sleeper */
735 rpmsg_downref_sleepers(vrp
);
739 dev_err(dev
, "timeout waiting for a tx buffer\n");
749 memcpy(msg
->data
, data
, len
);
751 dev_dbg(dev
, "TX From 0x%x, To 0x%x, Len %d, Flags %d, Reserved %d\n",
752 msg
->src
, msg
->dst
, msg
->len
,
753 msg
->flags
, msg
->reserved
);
754 print_hex_dump(KERN_DEBUG
, "rpmsg_virtio TX: ", DUMP_PREFIX_NONE
, 16, 1,
755 msg
, sizeof(*msg
) + msg
->len
, true);
757 sg_init_one(&sg
, msg
, sizeof(*msg
) + len
);
759 mutex_lock(&vrp
->tx_lock
);
761 /* add message to the remote processor's virtqueue */
762 err
= virtqueue_add_outbuf(vrp
->svq
, &sg
, 1, msg
, GFP_KERNEL
);
765 * need to reclaim the buffer here, otherwise it's lost
766 * (memory won't leak, but rpmsg won't use it again for TX).
767 * this will wait for a buffer management overhaul.
769 dev_err(dev
, "virtqueue_add_outbuf failed: %d\n", err
);
773 /* tell the remote processor it has a pending message to read */
774 virtqueue_kick(vrp
->svq
);
776 mutex_unlock(&vrp
->tx_lock
);
779 EXPORT_SYMBOL(rpmsg_send_offchannel_raw
);
781 static int rpmsg_recv_single(struct virtproc_info
*vrp
, struct device
*dev
,
782 struct rpmsg_hdr
*msg
, unsigned int len
)
784 struct rpmsg_endpoint
*ept
;
785 struct scatterlist sg
;
788 dev_dbg(dev
, "From: 0x%x, To: 0x%x, Len: %d, Flags: %d, Reserved: %d\n",
789 msg
->src
, msg
->dst
, msg
->len
,
790 msg
->flags
, msg
->reserved
);
791 print_hex_dump(KERN_DEBUG
, "rpmsg_virtio RX: ", DUMP_PREFIX_NONE
, 16, 1,
792 msg
, sizeof(*msg
) + msg
->len
, true);
795 * We currently use fixed-sized buffers, so trivially sanitize
796 * the reported payload length.
798 if (len
> RPMSG_BUF_SIZE
||
799 msg
->len
> (len
- sizeof(struct rpmsg_hdr
))) {
800 dev_warn(dev
, "inbound msg too big: (%d, %d)\n", len
, msg
->len
);
804 /* use the dst addr to fetch the callback of the appropriate user */
805 mutex_lock(&vrp
->endpoints_lock
);
807 ept
= idr_find(&vrp
->endpoints
, msg
->dst
);
809 /* let's make sure no one deallocates ept while we use it */
811 kref_get(&ept
->refcount
);
813 mutex_unlock(&vrp
->endpoints_lock
);
816 /* make sure ept->cb doesn't go away while we use it */
817 mutex_lock(&ept
->cb_lock
);
820 ept
->cb(ept
->rpdev
, msg
->data
, msg
->len
, ept
->priv
,
823 mutex_unlock(&ept
->cb_lock
);
825 /* farewell, ept, we don't need you anymore */
826 kref_put(&ept
->refcount
, __ept_release
);
828 dev_warn(dev
, "msg received with no recipient\n");
830 /* publish the real size of the buffer */
831 sg_init_one(&sg
, msg
, RPMSG_BUF_SIZE
);
833 /* add the buffer back to the remote processor's virtqueue */
834 err
= virtqueue_add_inbuf(vrp
->rvq
, &sg
, 1, msg
, GFP_KERNEL
);
836 dev_err(dev
, "failed to add a virtqueue buffer: %d\n", err
);
843 /* called when an rx buffer is used, and it's time to digest a message */
844 static void rpmsg_recv_done(struct virtqueue
*rvq
)
846 struct virtproc_info
*vrp
= rvq
->vdev
->priv
;
847 struct device
*dev
= &rvq
->vdev
->dev
;
848 struct rpmsg_hdr
*msg
;
849 unsigned int len
, msgs_received
= 0;
852 msg
= virtqueue_get_buf(rvq
, &len
);
854 dev_err(dev
, "uhm, incoming signal, but no used buffer ?\n");
859 err
= rpmsg_recv_single(vrp
, dev
, msg
, len
);
865 msg
= virtqueue_get_buf(rvq
, &len
);
868 dev_dbg(dev
, "Received %u messages\n", msgs_received
);
870 /* tell the remote processor we added another available rx buffer */
872 virtqueue_kick(vrp
->rvq
);
876 * This is invoked whenever the remote processor completed processing
877 * a TX msg we just sent it, and the buffer is put back to the used ring.
879 * Normally, though, we suppress this "tx complete" interrupt in order to
880 * avoid the incurred overhead.
882 static void rpmsg_xmit_done(struct virtqueue
*svq
)
884 struct virtproc_info
*vrp
= svq
->vdev
->priv
;
886 dev_dbg(&svq
->vdev
->dev
, "%s\n", __func__
);
888 /* wake up potential senders that are waiting for a tx buffer */
889 wake_up_interruptible(&vrp
->sendq
);
892 /* invoked when a name service announcement arrives */
893 static void rpmsg_ns_cb(struct rpmsg_channel
*rpdev
, void *data
, int len
,
896 struct rpmsg_ns_msg
*msg
= data
;
897 struct rpmsg_channel
*newch
;
898 struct rpmsg_channel_info chinfo
;
899 struct virtproc_info
*vrp
= priv
;
900 struct device
*dev
= &vrp
->vdev
->dev
;
903 print_hex_dump(KERN_DEBUG
, "NS announcement: ",
904 DUMP_PREFIX_NONE
, 16, 1,
907 if (len
!= sizeof(*msg
)) {
908 dev_err(dev
, "malformed ns msg (%d)\n", len
);
913 * the name service ept does _not_ belong to a real rpmsg channel,
914 * and is handled by the rpmsg bus itself.
915 * for sanity reasons, make sure a valid rpdev has _not_ sneaked
919 dev_err(dev
, "anomaly: ns ept has an rpdev handle\n");
923 /* don't trust the remote processor for null terminating the name */
924 msg
->name
[RPMSG_NAME_SIZE
- 1] = '\0';
926 dev_info(dev
, "%sing channel %s addr 0x%x\n",
927 msg
->flags
& RPMSG_NS_DESTROY
? "destroy" : "creat",
928 msg
->name
, msg
->addr
);
930 strncpy(chinfo
.name
, msg
->name
, sizeof(chinfo
.name
));
931 chinfo
.src
= RPMSG_ADDR_ANY
;
932 chinfo
.dst
= msg
->addr
;
934 if (msg
->flags
& RPMSG_NS_DESTROY
) {
935 ret
= rpmsg_destroy_channel(vrp
, &chinfo
);
937 dev_err(dev
, "rpmsg_destroy_channel failed: %d\n", ret
);
939 newch
= rpmsg_create_channel(vrp
, &chinfo
);
941 dev_err(dev
, "rpmsg_create_channel failed\n");
945 static int rpmsg_probe(struct virtio_device
*vdev
)
947 vq_callback_t
*vq_cbs
[] = { rpmsg_recv_done
, rpmsg_xmit_done
};
948 const char *names
[] = { "input", "output" };
949 struct virtqueue
*vqs
[2];
950 struct virtproc_info
*vrp
;
953 size_t total_buf_space
;
956 vrp
= kzalloc(sizeof(*vrp
), GFP_KERNEL
);
962 idr_init(&vrp
->endpoints
);
963 mutex_init(&vrp
->endpoints_lock
);
964 mutex_init(&vrp
->tx_lock
);
965 init_waitqueue_head(&vrp
->sendq
);
967 /* We expect two virtqueues, rx and tx (and in this order) */
968 err
= vdev
->config
->find_vqs(vdev
, 2, vqs
, vq_cbs
, names
);
975 /* we expect symmetric tx/rx vrings */
976 WARN_ON(virtqueue_get_vring_size(vrp
->rvq
) !=
977 virtqueue_get_vring_size(vrp
->svq
));
979 /* we need less buffers if vrings are small */
980 if (virtqueue_get_vring_size(vrp
->rvq
) < MAX_RPMSG_NUM_BUFS
/ 2)
981 vrp
->num_bufs
= virtqueue_get_vring_size(vrp
->rvq
) * 2;
983 vrp
->num_bufs
= MAX_RPMSG_NUM_BUFS
;
985 total_buf_space
= vrp
->num_bufs
* RPMSG_BUF_SIZE
;
987 /* allocate coherent memory for the buffers */
988 bufs_va
= dma_alloc_coherent(vdev
->dev
.parent
->parent
,
989 total_buf_space
, &vrp
->bufs_dma
,
996 dev_dbg(&vdev
->dev
, "buffers: va %p, dma 0x%llx\n", bufs_va
,
997 (unsigned long long)vrp
->bufs_dma
);
999 /* half of the buffers is dedicated for RX */
1000 vrp
->rbufs
= bufs_va
;
1002 /* and half is dedicated for TX */
1003 vrp
->sbufs
= bufs_va
+ total_buf_space
/ 2;
1005 /* set up the receive buffers */
1006 for (i
= 0; i
< vrp
->num_bufs
/ 2; i
++) {
1007 struct scatterlist sg
;
1008 void *cpu_addr
= vrp
->rbufs
+ i
* RPMSG_BUF_SIZE
;
1010 sg_init_one(&sg
, cpu_addr
, RPMSG_BUF_SIZE
);
1012 err
= virtqueue_add_inbuf(vrp
->rvq
, &sg
, 1, cpu_addr
,
1014 WARN_ON(err
); /* sanity check; this can't really happen */
1017 /* suppress "tx-complete" interrupts */
1018 virtqueue_disable_cb(vrp
->svq
);
1022 /* if supported by the remote processor, enable the name service */
1023 if (virtio_has_feature(vdev
, VIRTIO_RPMSG_F_NS
)) {
1024 /* a dedicated endpoint handles the name service msgs */
1025 vrp
->ns_ept
= __rpmsg_create_ept(vrp
, NULL
, rpmsg_ns_cb
,
1026 vrp
, RPMSG_NS_ADDR
);
1028 dev_err(&vdev
->dev
, "failed to create the ns ept\n");
1035 * Prepare to kick but don't notify yet - we can't do this before
1038 notify
= virtqueue_kick_prepare(vrp
->rvq
);
1040 /* From this point on, we can notify and get callbacks. */
1041 virtio_device_ready(vdev
);
1043 /* tell the remote processor it can start sending messages */
1045 * this might be concurrent with callbacks, but we are only
1046 * doing notify, not a full kick here, so that's ok.
1049 virtqueue_notify(vrp
->rvq
);
1051 dev_info(&vdev
->dev
, "rpmsg host is online\n");
1056 dma_free_coherent(vdev
->dev
.parent
->parent
, total_buf_space
,
1057 bufs_va
, vrp
->bufs_dma
);
1059 vdev
->config
->del_vqs(vrp
->vdev
);
1065 static int rpmsg_remove_device(struct device
*dev
, void *data
)
1067 device_unregister(dev
);
1072 static void rpmsg_remove(struct virtio_device
*vdev
)
1074 struct virtproc_info
*vrp
= vdev
->priv
;
1075 size_t total_buf_space
= vrp
->num_bufs
* RPMSG_BUF_SIZE
;
1078 vdev
->config
->reset(vdev
);
1080 ret
= device_for_each_child(&vdev
->dev
, NULL
, rpmsg_remove_device
);
1082 dev_warn(&vdev
->dev
, "can't remove rpmsg device: %d\n", ret
);
1085 __rpmsg_destroy_ept(vrp
, vrp
->ns_ept
);
1087 idr_destroy(&vrp
->endpoints
);
1089 vdev
->config
->del_vqs(vrp
->vdev
);
1091 dma_free_coherent(vdev
->dev
.parent
->parent
, total_buf_space
,
1092 vrp
->rbufs
, vrp
->bufs_dma
);
1097 static struct virtio_device_id id_table
[] = {
1098 { VIRTIO_ID_RPMSG
, VIRTIO_DEV_ANY_ID
},
1102 static unsigned int features
[] = {
1106 static struct virtio_driver virtio_ipc_driver
= {
1107 .feature_table
= features
,
1108 .feature_table_size
= ARRAY_SIZE(features
),
1109 .driver
.name
= KBUILD_MODNAME
,
1110 .driver
.owner
= THIS_MODULE
,
1111 .id_table
= id_table
,
1112 .probe
= rpmsg_probe
,
1113 .remove
= rpmsg_remove
,
1116 static int __init
rpmsg_init(void)
1120 ret
= bus_register(&rpmsg_bus
);
1122 pr_err("failed to register rpmsg bus: %d\n", ret
);
1126 ret
= register_virtio_driver(&virtio_ipc_driver
);
1128 pr_err("failed to register virtio driver: %d\n", ret
);
1129 bus_unregister(&rpmsg_bus
);
1134 subsys_initcall(rpmsg_init
);
1136 static void __exit
rpmsg_fini(void)
1138 unregister_virtio_driver(&virtio_ipc_driver
);
1139 bus_unregister(&rpmsg_bus
);
1141 module_exit(rpmsg_fini
);
1143 MODULE_DEVICE_TABLE(virtio
, id_table
);
1144 MODULE_DESCRIPTION("Virtio-based remote processor messaging bus");
1145 MODULE_LICENSE("GPL v2");