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