1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * remote processor messaging bus
4  *
5  * Copyright (C) 2011 Texas Instruments, Inc.
6  * Copyright (C) 2011 Google, Inc.
7  *
8  * Ohad Ben-Cohen <ohad@wizery.com>
9  * Brian Swetland <swetland@google.com>
10  */
11 
12 #define pr_fmt(fmt) "%s: " fmt, __func__
13 
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/rpmsg.h>
17 #include <linux/of_device.h>
18 #include <linux/pm_domain.h>
19 #include <linux/slab.h>
20 
21 #include "rpmsg_internal.h"
22 
23 const struct class rpmsg_class = {
24 	.name = "rpmsg",
25 };
26 EXPORT_SYMBOL(rpmsg_class);
27 
28 /**
29  * rpmsg_create_channel() - create a new rpmsg channel
30  * using its name and address info.
31  * @rpdev: rpmsg device
32  * @chinfo: channel_info to bind
33  *
34  * Return: a pointer to the new rpmsg device on success, or NULL on error.
35  */
36 struct rpmsg_device *rpmsg_create_channel(struct rpmsg_device *rpdev,
37 					  struct rpmsg_channel_info *chinfo)
38 {
39 	if (WARN_ON(!rpdev))
40 		return NULL;
41 	if (!rpdev->ops || !rpdev->ops->create_channel) {
42 		dev_err(&rpdev->dev, "no create_channel ops found\n");
43 		return NULL;
44 	}
45 
46 	return rpdev->ops->create_channel(rpdev, chinfo);
47 }
48 EXPORT_SYMBOL(rpmsg_create_channel);
49 
50 /**
51  * rpmsg_release_channel() - release a rpmsg channel
52  * using its name and address info.
53  * @rpdev: rpmsg device
54  * @chinfo: channel_info to bind
55  *
56  * Return: 0 on success or an appropriate error value.
57  */
58 int rpmsg_release_channel(struct rpmsg_device *rpdev,
59 			  struct rpmsg_channel_info *chinfo)
60 {
61 	if (WARN_ON(!rpdev))
62 		return -EINVAL;
63 	if (!rpdev->ops || !rpdev->ops->release_channel) {
64 		dev_err(&rpdev->dev, "no release_channel ops found\n");
65 		return -ENXIO;
66 	}
67 
68 	return rpdev->ops->release_channel(rpdev, chinfo);
69 }
70 EXPORT_SYMBOL(rpmsg_release_channel);
71 
72 /**
73  * rpmsg_create_ept() - create a new rpmsg_endpoint
74  * @rpdev: rpmsg channel device
75  * @cb: rx callback handler
76  * @priv: private data for the driver's use
77  * @chinfo: channel_info with the local rpmsg address to bind with @cb
78  *
79  * Every rpmsg address in the system is bound to an rx callback (so when
80  * inbound messages arrive, they are dispatched by the rpmsg bus using the
81  * appropriate callback handler) by means of an rpmsg_endpoint struct.
82  *
83  * This function allows drivers to create such an endpoint, and by that,
84  * bind a callback, and possibly some private data too, to an rpmsg address
85  * (either one that is known in advance, or one that will be dynamically
86  * assigned for them).
87  *
88  * Simple rpmsg drivers need not call rpmsg_create_ept, because an endpoint
89  * is already created for them when they are probed by the rpmsg bus
90  * (using the rx callback provided when they registered to the rpmsg bus).
91  *
92  * So things should just work for simple drivers: they already have an
93  * endpoint, their rx callback is bound to their rpmsg address, and when
94  * relevant inbound messages arrive (i.e. messages which their dst address
95  * equals to the src address of their rpmsg channel), the driver's handler
96  * is invoked to process it.
97  *
98  * That said, more complicated drivers might need to allocate
99  * additional rpmsg addresses, and bind them to different rx callbacks.
100  * To accomplish that, those drivers need to call this function.
101  *
102  * Drivers should provide their @rpdev channel (so the new endpoint would belong
103  * to the same remote processor their channel belongs to), an rx callback
104  * function, an optional private data (which is provided back when the
105  * rx callback is invoked), and an address they want to bind with the
106  * callback. If @addr is RPMSG_ADDR_ANY, then rpmsg_create_ept will
107  * dynamically assign them an available rpmsg address (drivers should have
108  * a very good reason why not to always use RPMSG_ADDR_ANY here).
109  *
110  * Return: a pointer to the endpoint on success, or NULL on error.
111  */
112 struct rpmsg_endpoint *rpmsg_create_ept(struct rpmsg_device *rpdev,
113 					rpmsg_rx_cb_t cb, void *priv,
114 					struct rpmsg_channel_info chinfo)
115 {
116 	if (WARN_ON(!rpdev))
117 		return NULL;
118 
119 	return rpdev->ops->create_ept(rpdev, cb, priv, chinfo);
120 }
121 EXPORT_SYMBOL(rpmsg_create_ept);
122 
123 /**
124  * rpmsg_destroy_ept() - destroy an existing rpmsg endpoint
125  * @ept: endpoing to destroy
126  *
127  * Should be used by drivers to destroy an rpmsg endpoint previously
128  * created with rpmsg_create_ept(). As with other types of "free" NULL
129  * is a valid parameter.
130  */
131 void rpmsg_destroy_ept(struct rpmsg_endpoint *ept)
132 {
133 	if (ept && ept->ops)
134 		ept->ops->destroy_ept(ept);
135 }
136 EXPORT_SYMBOL(rpmsg_destroy_ept);
137 
138 /**
139  * rpmsg_send() - send a message across to the remote processor
140  * @ept: the rpmsg endpoint
141  * @data: payload of message
142  * @len: length of payload
143  *
144  * This function sends @data of length @len on the @ept endpoint.
145  * The message will be sent to the remote processor which the @ept
146  * endpoint belongs to, using @ept's address and its associated rpmsg
147  * device destination addresses.
148  * In case there are no TX buffers available, the function will block until
149  * one becomes available, or a timeout of 15 seconds elapses. When the latter
150  * happens, -ERESTARTSYS is returned.
151  *
152  * Can only be called from process context (for now).
153  *
154  * Return: 0 on success and an appropriate error value on failure.
155  */
156 int rpmsg_send(struct rpmsg_endpoint *ept, void *data, int len)
157 {
158 	if (WARN_ON(!ept))
159 		return -EINVAL;
160 	if (!ept->ops->send)
161 		return -ENXIO;
162 
163 	return ept->ops->send(ept, data, len);
164 }
165 EXPORT_SYMBOL(rpmsg_send);
166 
167 /**
168  * rpmsg_sendto() - send a message across to the remote processor, specify dst
169  * @ept: the rpmsg endpoint
170  * @data: payload of message
171  * @len: length of payload
172  * @dst: destination address
173  *
174  * This function sends @data of length @len to the remote @dst address.
175  * The message will be sent to the remote processor which the @ept
176  * endpoint belongs to, using @ept's address as source.
177  * In case there are no TX buffers available, the function will block until
178  * one becomes available, or a timeout of 15 seconds elapses. When the latter
179  * happens, -ERESTARTSYS is returned.
180  *
181  * Can only be called from process context (for now).
182  *
183  * Return: 0 on success and an appropriate error value on failure.
184  */
185 int rpmsg_sendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst)
186 {
187 	if (WARN_ON(!ept))
188 		return -EINVAL;
189 	if (!ept->ops->sendto)
190 		return -ENXIO;
191 
192 	return ept->ops->sendto(ept, data, len, dst);
193 }
194 EXPORT_SYMBOL(rpmsg_sendto);
195 
196 /**
197  * rpmsg_trysend() - send a message across to the remote processor
198  * @ept: the rpmsg endpoint
199  * @data: payload of message
200  * @len: length of payload
201  *
202  * This function sends @data of length @len on the @ept endpoint.
203  * The message will be sent to the remote processor which the @ept
204  * endpoint belongs to, using @ept's address as source and its associated
205  * rpdev's address as destination.
206  * In case there are no TX buffers available, the function will immediately
207  * return -ENOMEM without waiting until one becomes available.
208  *
209  * Can only be called from process context (for now).
210  *
211  * Return: 0 on success and an appropriate error value on failure.
212  */
213 int rpmsg_trysend(struct rpmsg_endpoint *ept, void *data, int len)
214 {
215 	if (WARN_ON(!ept))
216 		return -EINVAL;
217 	if (!ept->ops->trysend)
218 		return -ENXIO;
219 
220 	return ept->ops->trysend(ept, data, len);
221 }
222 EXPORT_SYMBOL(rpmsg_trysend);
223 
224 /**
225  * rpmsg_trysendto() - send a message across to the remote processor, specify dst
226  * @ept: the rpmsg endpoint
227  * @data: payload of message
228  * @len: length of payload
229  * @dst: destination address
230  *
231  * This function sends @data of length @len to the remote @dst address.
232  * The message will be sent to the remote processor which the @ept
233  * endpoint belongs to, using @ept's address as source.
234  * In case there are no TX buffers available, the function will immediately
235  * return -ENOMEM without waiting until one becomes available.
236  *
237  * Can only be called from process context (for now).
238  *
239  * Return: 0 on success and an appropriate error value on failure.
240  */
241 int rpmsg_trysendto(struct rpmsg_endpoint *ept, void *data, int len, u32 dst)
242 {
243 	if (WARN_ON(!ept))
244 		return -EINVAL;
245 	if (!ept->ops->trysendto)
246 		return -ENXIO;
247 
248 	return ept->ops->trysendto(ept, data, len, dst);
249 }
250 EXPORT_SYMBOL(rpmsg_trysendto);
251 
252 /**
253  * rpmsg_poll() - poll the endpoint's send buffers
254  * @ept:	the rpmsg endpoint
255  * @filp:	file for poll_wait()
256  * @wait:	poll_table for poll_wait()
257  *
258  * Return: mask representing the current state of the endpoint's send buffers
259  */
260 __poll_t rpmsg_poll(struct rpmsg_endpoint *ept, struct file *filp,
261 			poll_table *wait)
262 {
263 	if (WARN_ON(!ept))
264 		return 0;
265 	if (!ept->ops->poll)
266 		return 0;
267 
268 	return ept->ops->poll(ept, filp, wait);
269 }
270 EXPORT_SYMBOL(rpmsg_poll);
271 
272 /**
273  * rpmsg_set_flow_control() - request remote to pause/resume transmission
274  * @ept:	the rpmsg endpoint
275  * @pause:	pause transmission
276  * @dst:	destination address of the endpoint
277  *
278  * Return: 0 on success and an appropriate error value on failure.
279  */
280 int rpmsg_set_flow_control(struct rpmsg_endpoint *ept, bool pause, u32 dst)
281 {
282 	if (WARN_ON(!ept))
283 		return -EINVAL;
284 	if (!ept->ops->set_flow_control)
285 		return -EOPNOTSUPP;
286 
287 	return ept->ops->set_flow_control(ept, pause, dst);
288 }
289 EXPORT_SYMBOL_GPL(rpmsg_set_flow_control);
290 
291 /**
292  * rpmsg_get_mtu() - get maximum transmission buffer size for sending message.
293  * @ept: the rpmsg endpoint
294  *
295  * This function returns maximum buffer size available for a single outgoing message.
296  *
297  * Return: the maximum transmission size on success and an appropriate error
298  * value on failure.
299  */
300 
301 ssize_t rpmsg_get_mtu(struct rpmsg_endpoint *ept)
302 {
303 	if (WARN_ON(!ept))
304 		return -EINVAL;
305 	if (!ept->ops->get_mtu)
306 		return -ENOTSUPP;
307 
308 	return ept->ops->get_mtu(ept);
309 }
310 EXPORT_SYMBOL(rpmsg_get_mtu);
311 
312 /*
313  * match a rpmsg channel with a channel info struct.
314  * this is used to make sure we're not creating rpmsg devices for channels
315  * that already exist.
316  */
317 static int rpmsg_device_match(struct device *dev, const void *data)
318 {
319 	const struct rpmsg_channel_info *chinfo = data;
320 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);
321 
322 	if (chinfo->src != RPMSG_ADDR_ANY && chinfo->src != rpdev->src)
323 		return 0;
324 
325 	if (chinfo->dst != RPMSG_ADDR_ANY && chinfo->dst != rpdev->dst)
326 		return 0;
327 
328 	if (strncmp(chinfo->name, rpdev->id.name, RPMSG_NAME_SIZE))
329 		return 0;
330 
331 	/* found a match ! */
332 	return 1;
333 }
334 
335 struct device *rpmsg_find_device(struct device *parent,
336 				 struct rpmsg_channel_info *chinfo)
337 {
338 	return device_find_child(parent, chinfo, rpmsg_device_match);
339 
340 }
341 EXPORT_SYMBOL(rpmsg_find_device);
342 
343 /* sysfs show configuration fields */
344 #define rpmsg_show_attr(field, path, format_string)			\
345 static ssize_t								\
346 field##_show(struct device *dev,					\
347 			struct device_attribute *attr, char *buf)	\
348 {									\
349 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);		\
350 									\
351 	return sprintf(buf, format_string, rpdev->path);		\
352 }									\
353 static DEVICE_ATTR_RO(field);
354 
355 #define rpmsg_string_attr(field, member)				\
356 static ssize_t								\
357 field##_store(struct device *dev, struct device_attribute *attr,	\
358 	      const char *buf, size_t sz)				\
359 {									\
360 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);		\
361 	const char *old;						\
362 	char *new;							\
363 									\
364 	new = kstrndup(buf, sz, GFP_KERNEL);				\
365 	if (!new)							\
366 		return -ENOMEM;						\
367 	new[strcspn(new, "\n")] = '\0';					\
368 									\
369 	device_lock(dev);						\
370 	old = rpdev->member;						\
371 	if (strlen(new)) {						\
372 		rpdev->member = new;					\
373 	} else {							\
374 		kfree(new);						\
375 		rpdev->member = NULL;					\
376 	}								\
377 	device_unlock(dev);						\
378 									\
379 	kfree(old);							\
380 									\
381 	return sz;							\
382 }									\
383 static ssize_t								\
384 field##_show(struct device *dev,					\
385 	     struct device_attribute *attr, char *buf)			\
386 {									\
387 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);		\
388 									\
389 	return sprintf(buf, "%s\n", rpdev->member);			\
390 }									\
391 static DEVICE_ATTR_RW(field)
392 
393 /* for more info, see Documentation/ABI/testing/sysfs-bus-rpmsg */
394 rpmsg_show_attr(name, id.name, "%s\n");
395 rpmsg_show_attr(src, src, "0x%x\n");
396 rpmsg_show_attr(dst, dst, "0x%x\n");
397 rpmsg_show_attr(announce, announce ? "true" : "false", "%s\n");
398 rpmsg_string_attr(driver_override, driver_override);
399 
400 static ssize_t modalias_show(struct device *dev,
401 			     struct device_attribute *attr, char *buf)
402 {
403 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);
404 	ssize_t len;
405 
406 	len = of_device_modalias(dev, buf, PAGE_SIZE);
407 	if (len != -ENODEV)
408 		return len;
409 
410 	return sprintf(buf, RPMSG_DEVICE_MODALIAS_FMT "\n", rpdev->id.name);
411 }
412 static DEVICE_ATTR_RO(modalias);
413 
414 static struct attribute *rpmsg_dev_attrs[] = {
415 	&dev_attr_name.attr,
416 	&dev_attr_modalias.attr,
417 	&dev_attr_dst.attr,
418 	&dev_attr_src.attr,
419 	&dev_attr_announce.attr,
420 	&dev_attr_driver_override.attr,
421 	NULL,
422 };
423 ATTRIBUTE_GROUPS(rpmsg_dev);
424 
425 /* rpmsg devices and drivers are matched using the service name */
426 static inline int rpmsg_id_match(const struct rpmsg_device *rpdev,
427 				  const struct rpmsg_device_id *id)
428 {
429 	return strncmp(id->name, rpdev->id.name, RPMSG_NAME_SIZE) == 0;
430 }
431 
432 /* match rpmsg channel and rpmsg driver */
433 static int rpmsg_dev_match(struct device *dev, const struct device_driver *drv)
434 {
435 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);
436 	const struct rpmsg_driver *rpdrv = to_rpmsg_driver(drv);
437 	const struct rpmsg_device_id *ids = rpdrv->id_table;
438 	unsigned int i;
439 
440 	if (rpdev->driver_override)
441 		return !strcmp(rpdev->driver_override, drv->name);
442 
443 	if (ids)
444 		for (i = 0; ids[i].name[0]; i++)
445 			if (rpmsg_id_match(rpdev, &ids[i])) {
446 				rpdev->id.driver_data = ids[i].driver_data;
447 				return 1;
448 			}
449 
450 	return of_driver_match_device(dev, drv);
451 }
452 
453 static int rpmsg_uevent(const struct device *dev, struct kobj_uevent_env *env)
454 {
455 	const struct rpmsg_device *rpdev = to_rpmsg_device(dev);
456 	int ret;
457 
458 	ret = of_device_uevent_modalias(dev, env);
459 	if (ret != -ENODEV)
460 		return ret;
461 
462 	return add_uevent_var(env, "MODALIAS=" RPMSG_DEVICE_MODALIAS_FMT,
463 					rpdev->id.name);
464 }
465 
466 /*
467  * when an rpmsg driver is probed with a channel, we seamlessly create
468  * it an endpoint, binding its rx callback to a unique local rpmsg
469  * address.
470  *
471  * if we need to, we also announce about this channel to the remote
472  * processor (needed in case the driver is exposing an rpmsg service).
473  */
474 static int rpmsg_dev_probe(struct device *dev)
475 {
476 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);
477 	struct rpmsg_driver *rpdrv = to_rpmsg_driver(rpdev->dev.driver);
478 	struct rpmsg_channel_info chinfo = {};
479 	struct rpmsg_endpoint *ept = NULL;
480 	int err;
481 
482 	err = dev_pm_domain_attach(dev, true);
483 	if (err)
484 		goto out;
485 
486 	if (rpdrv->callback) {
487 		strscpy(chinfo.name, rpdev->id.name, sizeof(chinfo.name));
488 		chinfo.src = rpdev->src;
489 		chinfo.dst = RPMSG_ADDR_ANY;
490 
491 		ept = rpmsg_create_ept(rpdev, rpdrv->callback, NULL, chinfo);
492 		if (!ept) {
493 			dev_err(dev, "failed to create endpoint\n");
494 			err = -ENOMEM;
495 			goto out;
496 		}
497 
498 		rpdev->ept = ept;
499 		rpdev->src = ept->addr;
500 
501 		ept->flow_cb = rpdrv->flowcontrol;
502 	}
503 
504 	err = rpdrv->probe(rpdev);
505 	if (err) {
506 		dev_err(dev, "%s: failed: %d\n", __func__, err);
507 		goto destroy_ept;
508 	}
509 
510 	if (ept && rpdev->ops->announce_create) {
511 		err = rpdev->ops->announce_create(rpdev);
512 		if (err) {
513 			dev_err(dev, "failed to announce creation\n");
514 			goto remove_rpdev;
515 		}
516 	}
517 
518 	return 0;
519 
520 remove_rpdev:
521 	if (rpdrv->remove)
522 		rpdrv->remove(rpdev);
523 destroy_ept:
524 	if (ept)
525 		rpmsg_destroy_ept(ept);
526 out:
527 	return err;
528 }
529 
530 static void rpmsg_dev_remove(struct device *dev)
531 {
532 	struct rpmsg_device *rpdev = to_rpmsg_device(dev);
533 	struct rpmsg_driver *rpdrv = to_rpmsg_driver(rpdev->dev.driver);
534 
535 	if (rpdev->ops->announce_destroy)
536 		rpdev->ops->announce_destroy(rpdev);
537 
538 	if (rpdrv->remove)
539 		rpdrv->remove(rpdev);
540 
541 	dev_pm_domain_detach(dev, true);
542 
543 	if (rpdev->ept)
544 		rpmsg_destroy_ept(rpdev->ept);
545 }
546 
547 static const struct bus_type rpmsg_bus = {
548 	.name		= "rpmsg",
549 	.match		= rpmsg_dev_match,
550 	.dev_groups	= rpmsg_dev_groups,
551 	.uevent		= rpmsg_uevent,
552 	.probe		= rpmsg_dev_probe,
553 	.remove		= rpmsg_dev_remove,
554 };
555 
556 /*
557  * A helper for registering rpmsg device with driver override and name.
558  * Drivers should not be using it, but instead rpmsg_register_device().
559  */
560 int rpmsg_register_device_override(struct rpmsg_device *rpdev,
561 				   const char *driver_override)
562 {
563 	struct device *dev = &rpdev->dev;
564 	int ret;
565 
566 	if (driver_override)
567 		strscpy_pad(rpdev->id.name, driver_override, RPMSG_NAME_SIZE);
568 
569 	dev_set_name(dev, "%s.%s.%d.%d", dev_name(dev->parent),
570 		     rpdev->id.name, rpdev->src, rpdev->dst);
571 
572 	dev->bus = &rpmsg_bus;
573 
574 	device_initialize(dev);
575 	if (driver_override) {
576 		ret = driver_set_override(dev, &rpdev->driver_override,
577 					  driver_override,
578 					  strlen(driver_override));
579 		if (ret) {
580 			dev_err(dev, "device_set_override failed: %d\n", ret);
581 			put_device(dev);
582 			return ret;
583 		}
584 	}
585 
586 	ret = device_add(dev);
587 	if (ret) {
588 		dev_err(dev, "device_add failed: %d\n", ret);
589 		kfree(rpdev->driver_override);
590 		rpdev->driver_override = NULL;
591 		put_device(dev);
592 	}
593 
594 	return ret;
595 }
596 EXPORT_SYMBOL(rpmsg_register_device_override);
597 
598 int rpmsg_register_device(struct rpmsg_device *rpdev)
599 {
600 	return rpmsg_register_device_override(rpdev, NULL);
601 }
602 EXPORT_SYMBOL(rpmsg_register_device);
603 
604 /*
605  * find an existing channel using its name + address properties,
606  * and destroy it
607  */
608 int rpmsg_unregister_device(struct device *parent,
609 			    struct rpmsg_channel_info *chinfo)
610 {
611 	struct device *dev;
612 
613 	dev = rpmsg_find_device(parent, chinfo);
614 	if (!dev)
615 		return -EINVAL;
616 
617 	device_unregister(dev);
618 
619 	put_device(dev);
620 
621 	return 0;
622 }
623 EXPORT_SYMBOL(rpmsg_unregister_device);
624 
625 /**
626  * __register_rpmsg_driver() - register an rpmsg driver with the rpmsg bus
627  * @rpdrv: pointer to a struct rpmsg_driver
628  * @owner: owning module/driver
629  *
630  * Return: 0 on success, and an appropriate error value on failure.
631  */
632 int __register_rpmsg_driver(struct rpmsg_driver *rpdrv, struct module *owner)
633 {
634 	rpdrv->drv.bus = &rpmsg_bus;
635 	rpdrv->drv.owner = owner;
636 	return driver_register(&rpdrv->drv);
637 }
638 EXPORT_SYMBOL(__register_rpmsg_driver);
639 
640 /**
641  * unregister_rpmsg_driver() - unregister an rpmsg driver from the rpmsg bus
642  * @rpdrv: pointer to a struct rpmsg_driver
643  *
644  * Return: 0 on success, and an appropriate error value on failure.
645  */
646 void unregister_rpmsg_driver(struct rpmsg_driver *rpdrv)
647 {
648 	driver_unregister(&rpdrv->drv);
649 }
650 EXPORT_SYMBOL(unregister_rpmsg_driver);
651 
652 
653 static int __init rpmsg_init(void)
654 {
655 	int ret;
656 
657 	ret = class_register(&rpmsg_class);
658 	if (ret) {
659 		pr_err("failed to register rpmsg class\n");
660 		return ret;
661 	}
662 
663 	ret = bus_register(&rpmsg_bus);
664 	if (ret) {
665 		pr_err("failed to register rpmsg bus: %d\n", ret);
666 		class_destroy(&rpmsg_class);
667 	}
668 	return ret;
669 }
670 postcore_initcall(rpmsg_init);
671 
672 static void __exit rpmsg_fini(void)
673 {
674 	bus_unregister(&rpmsg_bus);
675 	class_destroy(&rpmsg_class);
676 }
677 module_exit(rpmsg_fini);
678 
679 MODULE_DESCRIPTION("remote processor messaging bus");
680 MODULE_LICENSE("GPL v2");
681