blob: d6214cb660262155877b3ba7d7ed56bdc073b976 [file] [log] [blame]
Suman Anna136200f2018-05-31 12:11:03 -05001// SPDX-License-Identifier: GPL-2.0
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -08002/*
3 * Copyright (c) 2016, Linaro Ltd.
4 * Copyright (c) 2012, Michal Simek <monstr@monstr.eu>
5 * Copyright (c) 2012, PetaLogix
6 * Copyright (c) 2011, Texas Instruments, Inc.
7 * Copyright (c) 2011, Google, Inc.
8 *
9 * Based on rpmsg performance statistics driver by Michal Simek, which in turn
10 * was based on TI & Google OMX rpmsg driver.
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -080011 */
Arnaud Pouliquenc5727242021-11-08 14:59:45 +010012
13#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -080015#include <linux/cdev.h>
16#include <linux/device.h>
17#include <linux/fs.h>
18#include <linux/idr.h>
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/poll.h>
22#include <linux/rpmsg.h>
23#include <linux/skbuff.h>
24#include <linux/slab.h>
25#include <linux/uaccess.h>
26#include <uapi/linux/rpmsg.h>
27
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -080028#define RPMSG_DEV_MAX (MINORMASK + 1)
29
30static dev_t rpmsg_major;
31static struct class *rpmsg_class;
32
33static DEFINE_IDA(rpmsg_ctrl_ida);
34static DEFINE_IDA(rpmsg_ept_ida);
35static DEFINE_IDA(rpmsg_minor_ida);
36
37#define dev_to_eptdev(dev) container_of(dev, struct rpmsg_eptdev, dev)
38#define cdev_to_eptdev(i_cdev) container_of(i_cdev, struct rpmsg_eptdev, cdev)
39
40#define dev_to_ctrldev(dev) container_of(dev, struct rpmsg_ctrldev, dev)
41#define cdev_to_ctrldev(i_cdev) container_of(i_cdev, struct rpmsg_ctrldev, cdev)
42
43/**
44 * struct rpmsg_ctrldev - control device for instantiating endpoint devices
45 * @rpdev: underlaying rpmsg device
46 * @cdev: cdev for the ctrl device
47 * @dev: device for the ctrl device
48 */
49struct rpmsg_ctrldev {
50 struct rpmsg_device *rpdev;
51 struct cdev cdev;
52 struct device dev;
53};
54
55/**
56 * struct rpmsg_eptdev - endpoint device context
57 * @dev: endpoint device
58 * @cdev: cdev for the endpoint device
59 * @rpdev: underlaying rpmsg device
60 * @chinfo: info used to open the endpoint
61 * @ept_lock: synchronization of @ept modifications
62 * @ept: rpmsg endpoint reference, when open
63 * @queue_lock: synchronization of @queue operations
64 * @queue: incoming message queue
65 * @readq: wait object for incoming queue
66 */
67struct rpmsg_eptdev {
68 struct device dev;
69 struct cdev cdev;
70
71 struct rpmsg_device *rpdev;
72 struct rpmsg_channel_info chinfo;
73
74 struct mutex ept_lock;
75 struct rpmsg_endpoint *ept;
76
77 spinlock_t queue_lock;
78 struct sk_buff_head queue;
79 wait_queue_head_t readq;
80};
81
82static int rpmsg_eptdev_destroy(struct device *dev, void *data)
83{
84 struct rpmsg_eptdev *eptdev = dev_to_eptdev(dev);
85
86 mutex_lock(&eptdev->ept_lock);
87 if (eptdev->ept) {
88 rpmsg_destroy_ept(eptdev->ept);
89 eptdev->ept = NULL;
90 }
91 mutex_unlock(&eptdev->ept_lock);
92
93 /* wake up any blocked readers */
94 wake_up_interruptible(&eptdev->readq);
95
96 device_del(&eptdev->dev);
97 put_device(&eptdev->dev);
98
99 return 0;
100}
101
102static int rpmsg_ept_cb(struct rpmsg_device *rpdev, void *buf, int len,
103 void *priv, u32 addr)
104{
105 struct rpmsg_eptdev *eptdev = priv;
106 struct sk_buff *skb;
107
108 skb = alloc_skb(len, GFP_ATOMIC);
109 if (!skb)
110 return -ENOMEM;
111
Johannes Berg59ae1d12017-06-16 14:29:20 +0200112 skb_put_data(skb, buf, len);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800113
114 spin_lock(&eptdev->queue_lock);
115 skb_queue_tail(&eptdev->queue, skb);
116 spin_unlock(&eptdev->queue_lock);
117
118 /* wake up any blocking processes, waiting for new data */
119 wake_up_interruptible(&eptdev->readq);
120
121 return 0;
122}
123
124static int rpmsg_eptdev_open(struct inode *inode, struct file *filp)
125{
126 struct rpmsg_eptdev *eptdev = cdev_to_eptdev(inode->i_cdev);
127 struct rpmsg_endpoint *ept;
128 struct rpmsg_device *rpdev = eptdev->rpdev;
129 struct device *dev = &eptdev->dev;
130
Arnaud Pouliquen964e8be2021-03-11 15:04:13 +0100131 if (eptdev->ept)
132 return -EBUSY;
133
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800134 get_device(dev);
135
136 ept = rpmsg_create_ept(rpdev, rpmsg_ept_cb, eptdev, eptdev->chinfo);
137 if (!ept) {
138 dev_err(dev, "failed to open %s\n", eptdev->chinfo.name);
139 put_device(dev);
140 return -EINVAL;
141 }
142
143 eptdev->ept = ept;
144 filp->private_data = eptdev;
145
146 return 0;
147}
148
149static int rpmsg_eptdev_release(struct inode *inode, struct file *filp)
150{
151 struct rpmsg_eptdev *eptdev = cdev_to_eptdev(inode->i_cdev);
152 struct device *dev = &eptdev->dev;
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800153
154 /* Close the endpoint, if it's not already destroyed by the parent */
155 mutex_lock(&eptdev->ept_lock);
156 if (eptdev->ept) {
157 rpmsg_destroy_ept(eptdev->ept);
158 eptdev->ept = NULL;
159 }
160 mutex_unlock(&eptdev->ept_lock);
161
162 /* Discard all SKBs */
Christophe JAILLETbb06a5c2019-10-29 07:09:14 +0100163 skb_queue_purge(&eptdev->queue);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800164
165 put_device(dev);
166
167 return 0;
168}
169
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700170static ssize_t rpmsg_eptdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800171{
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700172 struct file *filp = iocb->ki_filp;
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800173 struct rpmsg_eptdev *eptdev = filp->private_data;
174 unsigned long flags;
175 struct sk_buff *skb;
176 int use;
177
178 if (!eptdev->ept)
179 return -EPIPE;
180
181 spin_lock_irqsave(&eptdev->queue_lock, flags);
182
183 /* Wait for data in the queue */
184 if (skb_queue_empty(&eptdev->queue)) {
185 spin_unlock_irqrestore(&eptdev->queue_lock, flags);
186
187 if (filp->f_flags & O_NONBLOCK)
188 return -EAGAIN;
189
190 /* Wait until we get data or the endpoint goes away */
191 if (wait_event_interruptible(eptdev->readq,
192 !skb_queue_empty(&eptdev->queue) ||
193 !eptdev->ept))
194 return -ERESTARTSYS;
195
196 /* We lost the endpoint while waiting */
197 if (!eptdev->ept)
198 return -EPIPE;
199
200 spin_lock_irqsave(&eptdev->queue_lock, flags);
201 }
202
203 skb = skb_dequeue(&eptdev->queue);
Dan Carpenter0abd6bd2017-01-21 07:53:40 +0300204 spin_unlock_irqrestore(&eptdev->queue_lock, flags);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800205 if (!skb)
206 return -EFAULT;
207
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700208 use = min_t(size_t, iov_iter_count(to), skb->len);
209 if (copy_to_iter(skb->data, use, to) != use)
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800210 use = -EFAULT;
211
212 kfree_skb(skb);
213
214 return use;
215}
216
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700217static ssize_t rpmsg_eptdev_write_iter(struct kiocb *iocb,
218 struct iov_iter *from)
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800219{
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700220 struct file *filp = iocb->ki_filp;
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800221 struct rpmsg_eptdev *eptdev = filp->private_data;
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700222 size_t len = iov_iter_count(from);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800223 void *kbuf;
224 int ret;
225
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700226 kbuf = kzalloc(len, GFP_KERNEL);
227 if (!kbuf)
228 return -ENOMEM;
229
Navid Emamdoostbbe692e2019-09-16 22:31:23 -0500230 if (!copy_from_iter_full(kbuf, len, from)) {
231 ret = -EFAULT;
232 goto free_kbuf;
233 }
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800234
235 if (mutex_lock_interruptible(&eptdev->ept_lock)) {
236 ret = -ERESTARTSYS;
237 goto free_kbuf;
238 }
239
240 if (!eptdev->ept) {
241 ret = -EPIPE;
242 goto unlock_eptdev;
243 }
244
245 if (filp->f_flags & O_NONBLOCK)
Arnaud Pouliquenb4ce7e22021-03-11 15:04:11 +0100246 ret = rpmsg_trysendto(eptdev->ept, kbuf, len, eptdev->chinfo.dst);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800247 else
Arnaud Pouliquenb4ce7e22021-03-11 15:04:11 +0100248 ret = rpmsg_sendto(eptdev->ept, kbuf, len, eptdev->chinfo.dst);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800249
250unlock_eptdev:
251 mutex_unlock(&eptdev->ept_lock);
252
253free_kbuf:
254 kfree(kbuf);
255 return ret < 0 ? ret : len;
256}
257
Al Viroafc9a422017-07-03 06:39:46 -0400258static __poll_t rpmsg_eptdev_poll(struct file *filp, poll_table *wait)
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800259{
260 struct rpmsg_eptdev *eptdev = filp->private_data;
Al Viroafc9a422017-07-03 06:39:46 -0400261 __poll_t mask = 0;
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800262
263 if (!eptdev->ept)
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800264 return EPOLLERR;
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800265
266 poll_wait(filp, &eptdev->readq, wait);
267
268 if (!skb_queue_empty(&eptdev->queue))
Linus Torvaldsa9a08842018-02-11 14:34:03 -0800269 mask |= EPOLLIN | EPOLLRDNORM;
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800270
271 mask |= rpmsg_poll(eptdev->ept, filp, wait);
272
273 return mask;
274}
275
276static long rpmsg_eptdev_ioctl(struct file *fp, unsigned int cmd,
277 unsigned long arg)
278{
279 struct rpmsg_eptdev *eptdev = fp->private_data;
280
281 if (cmd != RPMSG_DESTROY_EPT_IOCTL)
282 return -EINVAL;
283
284 return rpmsg_eptdev_destroy(&eptdev->dev, NULL);
285}
286
287static const struct file_operations rpmsg_eptdev_fops = {
288 .owner = THIS_MODULE,
289 .open = rpmsg_eptdev_open,
290 .release = rpmsg_eptdev_release,
Bjorn Anderssonccf45b12018-08-07 00:14:24 -0700291 .read_iter = rpmsg_eptdev_read_iter,
292 .write_iter = rpmsg_eptdev_write_iter,
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800293 .poll = rpmsg_eptdev_poll,
294 .unlocked_ioctl = rpmsg_eptdev_ioctl,
Arnd Bergmann1832f2d2018-09-11 21:59:08 +0200295 .compat_ioctl = compat_ptr_ioctl,
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800296};
297
298static ssize_t name_show(struct device *dev, struct device_attribute *attr,
299 char *buf)
300{
301 struct rpmsg_eptdev *eptdev = dev_get_drvdata(dev);
302
303 return sprintf(buf, "%s\n", eptdev->chinfo.name);
304}
305static DEVICE_ATTR_RO(name);
306
307static ssize_t src_show(struct device *dev, struct device_attribute *attr,
308 char *buf)
309{
310 struct rpmsg_eptdev *eptdev = dev_get_drvdata(dev);
311
312 return sprintf(buf, "%d\n", eptdev->chinfo.src);
313}
314static DEVICE_ATTR_RO(src);
315
316static ssize_t dst_show(struct device *dev, struct device_attribute *attr,
317 char *buf)
318{
319 struct rpmsg_eptdev *eptdev = dev_get_drvdata(dev);
320
321 return sprintf(buf, "%d\n", eptdev->chinfo.dst);
322}
323static DEVICE_ATTR_RO(dst);
324
325static struct attribute *rpmsg_eptdev_attrs[] = {
326 &dev_attr_name.attr,
327 &dev_attr_src.attr,
328 &dev_attr_dst.attr,
329 NULL
330};
331ATTRIBUTE_GROUPS(rpmsg_eptdev);
332
333static void rpmsg_eptdev_release_device(struct device *dev)
334{
335 struct rpmsg_eptdev *eptdev = dev_to_eptdev(dev);
336
337 ida_simple_remove(&rpmsg_ept_ida, dev->id);
338 ida_simple_remove(&rpmsg_minor_ida, MINOR(eptdev->dev.devt));
339 cdev_del(&eptdev->cdev);
340 kfree(eptdev);
341}
342
343static int rpmsg_eptdev_create(struct rpmsg_ctrldev *ctrldev,
344 struct rpmsg_channel_info chinfo)
345{
346 struct rpmsg_device *rpdev = ctrldev->rpdev;
347 struct rpmsg_eptdev *eptdev;
348 struct device *dev;
349 int ret;
350
351 eptdev = kzalloc(sizeof(*eptdev), GFP_KERNEL);
352 if (!eptdev)
353 return -ENOMEM;
354
355 dev = &eptdev->dev;
356 eptdev->rpdev = rpdev;
357 eptdev->chinfo = chinfo;
358
359 mutex_init(&eptdev->ept_lock);
360 spin_lock_init(&eptdev->queue_lock);
361 skb_queue_head_init(&eptdev->queue);
362 init_waitqueue_head(&eptdev->readq);
363
364 device_initialize(dev);
365 dev->class = rpmsg_class;
366 dev->parent = &ctrldev->dev;
367 dev->groups = rpmsg_eptdev_groups;
368 dev_set_drvdata(dev, eptdev);
369
370 cdev_init(&eptdev->cdev, &rpmsg_eptdev_fops);
371 eptdev->cdev.owner = THIS_MODULE;
372
373 ret = ida_simple_get(&rpmsg_minor_ida, 0, RPMSG_DEV_MAX, GFP_KERNEL);
374 if (ret < 0)
375 goto free_eptdev;
376 dev->devt = MKDEV(MAJOR(rpmsg_major), ret);
377
378 ret = ida_simple_get(&rpmsg_ept_ida, 0, 0, GFP_KERNEL);
379 if (ret < 0)
380 goto free_minor_ida;
381 dev->id = ret;
382 dev_set_name(dev, "rpmsg%d", ret);
383
384 ret = cdev_add(&eptdev->cdev, dev->devt, 1);
385 if (ret)
386 goto free_ept_ida;
387
388 /* We can now rely on the release function for cleanup */
389 dev->release = rpmsg_eptdev_release_device;
390
391 ret = device_add(dev);
392 if (ret) {
Henri Roosenf61752942017-06-02 13:36:04 +0200393 dev_err(dev, "device_add failed: %d\n", ret);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800394 put_device(dev);
395 }
396
397 return ret;
398
399free_ept_ida:
400 ida_simple_remove(&rpmsg_ept_ida, dev->id);
401free_minor_ida:
402 ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt));
403free_eptdev:
404 put_device(dev);
405 kfree(eptdev);
406
407 return ret;
408}
409
410static int rpmsg_ctrldev_open(struct inode *inode, struct file *filp)
411{
412 struct rpmsg_ctrldev *ctrldev = cdev_to_ctrldev(inode->i_cdev);
413
414 get_device(&ctrldev->dev);
415 filp->private_data = ctrldev;
416
417 return 0;
418}
419
420static int rpmsg_ctrldev_release(struct inode *inode, struct file *filp)
421{
422 struct rpmsg_ctrldev *ctrldev = cdev_to_ctrldev(inode->i_cdev);
423
424 put_device(&ctrldev->dev);
425
426 return 0;
427}
428
429static long rpmsg_ctrldev_ioctl(struct file *fp, unsigned int cmd,
430 unsigned long arg)
431{
432 struct rpmsg_ctrldev *ctrldev = fp->private_data;
433 void __user *argp = (void __user *)arg;
434 struct rpmsg_endpoint_info eptinfo;
435 struct rpmsg_channel_info chinfo;
436
437 if (cmd != RPMSG_CREATE_EPT_IOCTL)
438 return -EINVAL;
439
440 if (copy_from_user(&eptinfo, argp, sizeof(eptinfo)))
441 return -EFAULT;
442
443 memcpy(chinfo.name, eptinfo.name, RPMSG_NAME_SIZE);
444 chinfo.name[RPMSG_NAME_SIZE-1] = '\0';
445 chinfo.src = eptinfo.src;
446 chinfo.dst = eptinfo.dst;
447
448 return rpmsg_eptdev_create(ctrldev, chinfo);
449};
450
451static const struct file_operations rpmsg_ctrldev_fops = {
452 .owner = THIS_MODULE,
453 .open = rpmsg_ctrldev_open,
454 .release = rpmsg_ctrldev_release,
455 .unlocked_ioctl = rpmsg_ctrldev_ioctl,
Arnd Bergmann1832f2d2018-09-11 21:59:08 +0200456 .compat_ioctl = compat_ptr_ioctl,
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800457};
458
459static void rpmsg_ctrldev_release_device(struct device *dev)
460{
461 struct rpmsg_ctrldev *ctrldev = dev_to_ctrldev(dev);
462
463 ida_simple_remove(&rpmsg_ctrl_ida, dev->id);
464 ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt));
465 cdev_del(&ctrldev->cdev);
466 kfree(ctrldev);
467}
468
469static int rpmsg_chrdev_probe(struct rpmsg_device *rpdev)
470{
471 struct rpmsg_ctrldev *ctrldev;
472 struct device *dev;
473 int ret;
474
475 ctrldev = kzalloc(sizeof(*ctrldev), GFP_KERNEL);
476 if (!ctrldev)
477 return -ENOMEM;
478
479 ctrldev->rpdev = rpdev;
480
481 dev = &ctrldev->dev;
482 device_initialize(dev);
483 dev->parent = &rpdev->dev;
484 dev->class = rpmsg_class;
485
486 cdev_init(&ctrldev->cdev, &rpmsg_ctrldev_fops);
487 ctrldev->cdev.owner = THIS_MODULE;
488
489 ret = ida_simple_get(&rpmsg_minor_ida, 0, RPMSG_DEV_MAX, GFP_KERNEL);
490 if (ret < 0)
491 goto free_ctrldev;
492 dev->devt = MKDEV(MAJOR(rpmsg_major), ret);
493
494 ret = ida_simple_get(&rpmsg_ctrl_ida, 0, 0, GFP_KERNEL);
495 if (ret < 0)
496 goto free_minor_ida;
497 dev->id = ret;
498 dev_set_name(&ctrldev->dev, "rpmsg_ctrl%d", ret);
499
500 ret = cdev_add(&ctrldev->cdev, dev->devt, 1);
501 if (ret)
502 goto free_ctrl_ida;
503
504 /* We can now rely on the release function for cleanup */
505 dev->release = rpmsg_ctrldev_release_device;
506
507 ret = device_add(dev);
508 if (ret) {
Henri Roosenf61752942017-06-02 13:36:04 +0200509 dev_err(&rpdev->dev, "device_add failed: %d\n", ret);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800510 put_device(dev);
511 }
512
513 dev_set_drvdata(&rpdev->dev, ctrldev);
514
515 return ret;
516
517free_ctrl_ida:
518 ida_simple_remove(&rpmsg_ctrl_ida, dev->id);
519free_minor_ida:
520 ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt));
521free_ctrldev:
522 put_device(dev);
523 kfree(ctrldev);
524
525 return ret;
526}
527
528static void rpmsg_chrdev_remove(struct rpmsg_device *rpdev)
529{
530 struct rpmsg_ctrldev *ctrldev = dev_get_drvdata(&rpdev->dev);
531 int ret;
532
533 /* Destroy all endpoints */
534 ret = device_for_each_child(&ctrldev->dev, NULL, rpmsg_eptdev_destroy);
535 if (ret)
536 dev_warn(&rpdev->dev, "failed to nuke endpoints: %d\n", ret);
537
538 device_del(&ctrldev->dev);
539 put_device(&ctrldev->dev);
540}
541
542static struct rpmsg_driver rpmsg_chrdev_driver = {
543 .probe = rpmsg_chrdev_probe,
544 .remove = rpmsg_chrdev_remove,
545 .drv = {
546 .name = "rpmsg_chrdev",
547 },
548};
549
Arnaud Pouliquen60d7b222021-03-11 15:04:08 +0100550static int rpmsg_chrdev_init(void)
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800551{
552 int ret;
553
554 ret = alloc_chrdev_region(&rpmsg_major, 0, RPMSG_DEV_MAX, "rpmsg");
555 if (ret < 0) {
Arnaud Pouliquenc5727242021-11-08 14:59:45 +0100556 pr_err("failed to allocate char dev region\n");
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800557 return ret;
558 }
559
560 rpmsg_class = class_create(THIS_MODULE, "rpmsg");
561 if (IS_ERR(rpmsg_class)) {
562 pr_err("failed to create rpmsg class\n");
563 unregister_chrdev_region(rpmsg_major, RPMSG_DEV_MAX);
564 return PTR_ERR(rpmsg_class);
565 }
566
567 ret = register_rpmsg_driver(&rpmsg_chrdev_driver);
568 if (ret < 0) {
Arnaud Pouliquenc5727242021-11-08 14:59:45 +0100569 pr_err("failed to register rpmsg driver\n");
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800570 class_destroy(rpmsg_class);
571 unregister_chrdev_region(rpmsg_major, RPMSG_DEV_MAX);
572 }
573
574 return ret;
575}
Arnaud Pouliquen60d7b222021-03-11 15:04:08 +0100576postcore_initcall(rpmsg_chrdev_init);
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800577
578static void rpmsg_chrdev_exit(void)
579{
580 unregister_rpmsg_driver(&rpmsg_chrdev_driver);
581 class_destroy(rpmsg_class);
582 unregister_chrdev_region(rpmsg_major, RPMSG_DEV_MAX);
583}
584module_exit(rpmsg_chrdev_exit);
Ramon Fried93dd4e72018-03-23 00:09:12 -0400585
586MODULE_ALIAS("rpmsg:rpmsg_chrdev");
Bjorn Anderssonc0cdc192017-01-11 06:35:12 -0800587MODULE_LICENSE("GPL v2");