1 // SPDX-License-Identifier: GPL-2.0
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.
9 * Based on rpmsg performance statistics driver by Michal Simek, which in turn
10 * was based on TI & Google OMX rpmsg driver.
12 #include <linux/cdev.h>
13 #include <linux/device.h>
15 #include <linux/idr.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
18 #include <linux/poll.h>
19 #include <linux/rpmsg.h>
20 #include <linux/skbuff.h>
21 #include <linux/slab.h>
22 #include <linux/uaccess.h>
23 #include <uapi/linux/rpmsg.h>
25 #include "rpmsg_internal.h"
27 #define RPMSG_DEV_MAX (MINORMASK + 1)
29 static dev_t rpmsg_major;
30 static struct class *rpmsg_class;
32 static DEFINE_IDA(rpmsg_ctrl_ida);
33 static DEFINE_IDA(rpmsg_ept_ida);
34 static DEFINE_IDA(rpmsg_minor_ida);
36 #define dev_to_eptdev(dev) container_of(dev, struct rpmsg_eptdev, dev)
37 #define cdev_to_eptdev(i_cdev) container_of(i_cdev, struct rpmsg_eptdev, cdev)
39 #define dev_to_ctrldev(dev) container_of(dev, struct rpmsg_ctrldev, dev)
40 #define cdev_to_ctrldev(i_cdev) container_of(i_cdev, struct rpmsg_ctrldev, cdev)
43 * struct rpmsg_ctrldev - control device for instantiating endpoint devices
44 * @rpdev: underlaying rpmsg device
45 * @cdev: cdev for the ctrl device
46 * @dev: device for the ctrl device
48 struct rpmsg_ctrldev {
49 struct rpmsg_device *rpdev;
55 * struct rpmsg_eptdev - endpoint device context
56 * @dev: endpoint device
57 * @cdev: cdev for the endpoint device
58 * @rpdev: underlaying rpmsg device
59 * @chinfo: info used to open the endpoint
60 * @ept_lock: synchronization of @ept modifications
61 * @ept: rpmsg endpoint reference, when open
62 * @queue_lock: synchronization of @queue operations
63 * @queue: incoming message queue
64 * @readq: wait object for incoming queue
70 struct rpmsg_device *rpdev;
71 struct rpmsg_channel_info chinfo;
73 struct mutex ept_lock;
74 struct rpmsg_endpoint *ept;
76 spinlock_t queue_lock;
77 struct sk_buff_head queue;
78 wait_queue_head_t readq;
81 static int rpmsg_eptdev_destroy(struct device *dev, void *data)
83 struct rpmsg_eptdev *eptdev = dev_to_eptdev(dev);
85 mutex_lock(&eptdev->ept_lock);
87 rpmsg_destroy_ept(eptdev->ept);
90 mutex_unlock(&eptdev->ept_lock);
92 /* wake up any blocked readers */
93 wake_up_interruptible(&eptdev->readq);
95 device_del(&eptdev->dev);
96 put_device(&eptdev->dev);
101 static int rpmsg_ept_cb(struct rpmsg_device *rpdev, void *buf, int len,
102 void *priv, u32 addr)
104 struct rpmsg_eptdev *eptdev = priv;
107 skb = alloc_skb(len, GFP_ATOMIC);
111 skb_put_data(skb, buf, len);
113 spin_lock(&eptdev->queue_lock);
114 skb_queue_tail(&eptdev->queue, skb);
115 spin_unlock(&eptdev->queue_lock);
117 /* wake up any blocking processes, waiting for new data */
118 wake_up_interruptible(&eptdev->readq);
123 static int rpmsg_eptdev_open(struct inode *inode, struct file *filp)
125 struct rpmsg_eptdev *eptdev = cdev_to_eptdev(inode->i_cdev);
126 struct rpmsg_endpoint *ept;
127 struct rpmsg_device *rpdev = eptdev->rpdev;
128 struct device *dev = &eptdev->dev;
135 ept = rpmsg_create_ept(rpdev, rpmsg_ept_cb, eptdev, eptdev->chinfo);
137 dev_err(dev, "failed to open %s\n", eptdev->chinfo.name);
143 filp->private_data = eptdev;
148 static int rpmsg_eptdev_release(struct inode *inode, struct file *filp)
150 struct rpmsg_eptdev *eptdev = cdev_to_eptdev(inode->i_cdev);
151 struct device *dev = &eptdev->dev;
153 /* Close the endpoint, if it's not already destroyed by the parent */
154 mutex_lock(&eptdev->ept_lock);
156 rpmsg_destroy_ept(eptdev->ept);
159 mutex_unlock(&eptdev->ept_lock);
161 /* Discard all SKBs */
162 skb_queue_purge(&eptdev->queue);
169 static ssize_t rpmsg_eptdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
171 struct file *filp = iocb->ki_filp;
172 struct rpmsg_eptdev *eptdev = filp->private_data;
180 spin_lock_irqsave(&eptdev->queue_lock, flags);
182 /* Wait for data in the queue */
183 if (skb_queue_empty(&eptdev->queue)) {
184 spin_unlock_irqrestore(&eptdev->queue_lock, flags);
186 if (filp->f_flags & O_NONBLOCK)
189 /* Wait until we get data or the endpoint goes away */
190 if (wait_event_interruptible(eptdev->readq,
191 !skb_queue_empty(&eptdev->queue) ||
195 /* We lost the endpoint while waiting */
199 spin_lock_irqsave(&eptdev->queue_lock, flags);
202 skb = skb_dequeue(&eptdev->queue);
203 spin_unlock_irqrestore(&eptdev->queue_lock, flags);
207 use = min_t(size_t, iov_iter_count(to), skb->len);
208 if (copy_to_iter(skb->data, use, to) != use)
216 static ssize_t rpmsg_eptdev_write_iter(struct kiocb *iocb,
217 struct iov_iter *from)
219 struct file *filp = iocb->ki_filp;
220 struct rpmsg_eptdev *eptdev = filp->private_data;
221 size_t len = iov_iter_count(from);
225 kbuf = kzalloc(len, GFP_KERNEL);
229 if (!copy_from_iter_full(kbuf, len, from)) {
234 if (mutex_lock_interruptible(&eptdev->ept_lock)) {
244 if (filp->f_flags & O_NONBLOCK)
245 ret = rpmsg_trysendto(eptdev->ept, kbuf, len, eptdev->chinfo.dst);
247 ret = rpmsg_sendto(eptdev->ept, kbuf, len, eptdev->chinfo.dst);
250 mutex_unlock(&eptdev->ept_lock);
254 return ret < 0 ? ret : len;
257 static __poll_t rpmsg_eptdev_poll(struct file *filp, poll_table *wait)
259 struct rpmsg_eptdev *eptdev = filp->private_data;
265 poll_wait(filp, &eptdev->readq, wait);
267 if (!skb_queue_empty(&eptdev->queue))
268 mask |= EPOLLIN | EPOLLRDNORM;
270 mask |= rpmsg_poll(eptdev->ept, filp, wait);
275 static long rpmsg_eptdev_ioctl(struct file *fp, unsigned int cmd,
278 struct rpmsg_eptdev *eptdev = fp->private_data;
280 if (cmd != RPMSG_DESTROY_EPT_IOCTL)
283 return rpmsg_eptdev_destroy(&eptdev->dev, NULL);
286 static const struct file_operations rpmsg_eptdev_fops = {
287 .owner = THIS_MODULE,
288 .open = rpmsg_eptdev_open,
289 .release = rpmsg_eptdev_release,
290 .read_iter = rpmsg_eptdev_read_iter,
291 .write_iter = rpmsg_eptdev_write_iter,
292 .poll = rpmsg_eptdev_poll,
293 .unlocked_ioctl = rpmsg_eptdev_ioctl,
294 .compat_ioctl = compat_ptr_ioctl,
297 static ssize_t name_show(struct device *dev, struct device_attribute *attr,
300 struct rpmsg_eptdev *eptdev = dev_get_drvdata(dev);
302 return sprintf(buf, "%s\n", eptdev->chinfo.name);
304 static DEVICE_ATTR_RO(name);
306 static ssize_t src_show(struct device *dev, struct device_attribute *attr,
309 struct rpmsg_eptdev *eptdev = dev_get_drvdata(dev);
311 return sprintf(buf, "%d\n", eptdev->chinfo.src);
313 static DEVICE_ATTR_RO(src);
315 static ssize_t dst_show(struct device *dev, struct device_attribute *attr,
318 struct rpmsg_eptdev *eptdev = dev_get_drvdata(dev);
320 return sprintf(buf, "%d\n", eptdev->chinfo.dst);
322 static DEVICE_ATTR_RO(dst);
324 static struct attribute *rpmsg_eptdev_attrs[] = {
330 ATTRIBUTE_GROUPS(rpmsg_eptdev);
332 static void rpmsg_eptdev_release_device(struct device *dev)
334 struct rpmsg_eptdev *eptdev = dev_to_eptdev(dev);
336 ida_simple_remove(&rpmsg_ept_ida, dev->id);
337 ida_simple_remove(&rpmsg_minor_ida, MINOR(eptdev->dev.devt));
338 cdev_del(&eptdev->cdev);
342 static int rpmsg_eptdev_create(struct rpmsg_ctrldev *ctrldev,
343 struct rpmsg_channel_info chinfo)
345 struct rpmsg_device *rpdev = ctrldev->rpdev;
346 struct rpmsg_eptdev *eptdev;
350 eptdev = kzalloc(sizeof(*eptdev), GFP_KERNEL);
355 eptdev->rpdev = rpdev;
356 eptdev->chinfo = chinfo;
358 mutex_init(&eptdev->ept_lock);
359 spin_lock_init(&eptdev->queue_lock);
360 skb_queue_head_init(&eptdev->queue);
361 init_waitqueue_head(&eptdev->readq);
363 device_initialize(dev);
364 dev->class = rpmsg_class;
365 dev->parent = &ctrldev->dev;
366 dev->groups = rpmsg_eptdev_groups;
367 dev_set_drvdata(dev, eptdev);
369 cdev_init(&eptdev->cdev, &rpmsg_eptdev_fops);
370 eptdev->cdev.owner = THIS_MODULE;
372 ret = ida_simple_get(&rpmsg_minor_ida, 0, RPMSG_DEV_MAX, GFP_KERNEL);
375 dev->devt = MKDEV(MAJOR(rpmsg_major), ret);
377 ret = ida_simple_get(&rpmsg_ept_ida, 0, 0, GFP_KERNEL);
381 dev_set_name(dev, "rpmsg%d", ret);
383 ret = cdev_add(&eptdev->cdev, dev->devt, 1);
387 /* We can now rely on the release function for cleanup */
388 dev->release = rpmsg_eptdev_release_device;
390 ret = device_add(dev);
392 dev_err(dev, "device_add failed: %d\n", ret);
399 ida_simple_remove(&rpmsg_ept_ida, dev->id);
401 ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt));
409 static int rpmsg_ctrldev_open(struct inode *inode, struct file *filp)
411 struct rpmsg_ctrldev *ctrldev = cdev_to_ctrldev(inode->i_cdev);
413 get_device(&ctrldev->dev);
414 filp->private_data = ctrldev;
419 static int rpmsg_ctrldev_release(struct inode *inode, struct file *filp)
421 struct rpmsg_ctrldev *ctrldev = cdev_to_ctrldev(inode->i_cdev);
423 put_device(&ctrldev->dev);
428 static long rpmsg_ctrldev_ioctl(struct file *fp, unsigned int cmd,
431 struct rpmsg_ctrldev *ctrldev = fp->private_data;
432 void __user *argp = (void __user *)arg;
433 struct rpmsg_endpoint_info eptinfo;
434 struct rpmsg_channel_info chinfo;
436 if (cmd != RPMSG_CREATE_EPT_IOCTL)
439 if (copy_from_user(&eptinfo, argp, sizeof(eptinfo)))
442 memcpy(chinfo.name, eptinfo.name, RPMSG_NAME_SIZE);
443 chinfo.name[RPMSG_NAME_SIZE-1] = '\0';
444 chinfo.src = eptinfo.src;
445 chinfo.dst = eptinfo.dst;
447 return rpmsg_eptdev_create(ctrldev, chinfo);
450 static const struct file_operations rpmsg_ctrldev_fops = {
451 .owner = THIS_MODULE,
452 .open = rpmsg_ctrldev_open,
453 .release = rpmsg_ctrldev_release,
454 .unlocked_ioctl = rpmsg_ctrldev_ioctl,
455 .compat_ioctl = compat_ptr_ioctl,
458 static void rpmsg_ctrldev_release_device(struct device *dev)
460 struct rpmsg_ctrldev *ctrldev = dev_to_ctrldev(dev);
462 ida_simple_remove(&rpmsg_ctrl_ida, dev->id);
463 ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt));
464 cdev_del(&ctrldev->cdev);
468 static int rpmsg_chrdev_probe(struct rpmsg_device *rpdev)
470 struct rpmsg_ctrldev *ctrldev;
474 ctrldev = kzalloc(sizeof(*ctrldev), GFP_KERNEL);
478 ctrldev->rpdev = rpdev;
481 device_initialize(dev);
482 dev->parent = &rpdev->dev;
483 dev->class = rpmsg_class;
485 cdev_init(&ctrldev->cdev, &rpmsg_ctrldev_fops);
486 ctrldev->cdev.owner = THIS_MODULE;
488 ret = ida_simple_get(&rpmsg_minor_ida, 0, RPMSG_DEV_MAX, GFP_KERNEL);
491 dev->devt = MKDEV(MAJOR(rpmsg_major), ret);
493 ret = ida_simple_get(&rpmsg_ctrl_ida, 0, 0, GFP_KERNEL);
497 dev_set_name(&ctrldev->dev, "rpmsg_ctrl%d", ret);
499 ret = cdev_add(&ctrldev->cdev, dev->devt, 1);
503 /* We can now rely on the release function for cleanup */
504 dev->release = rpmsg_ctrldev_release_device;
506 ret = device_add(dev);
508 dev_err(&rpdev->dev, "device_add failed: %d\n", ret);
512 dev_set_drvdata(&rpdev->dev, ctrldev);
517 ida_simple_remove(&rpmsg_ctrl_ida, dev->id);
519 ida_simple_remove(&rpmsg_minor_ida, MINOR(dev->devt));
527 static void rpmsg_chrdev_remove(struct rpmsg_device *rpdev)
529 struct rpmsg_ctrldev *ctrldev = dev_get_drvdata(&rpdev->dev);
532 /* Destroy all endpoints */
533 ret = device_for_each_child(&ctrldev->dev, NULL, rpmsg_eptdev_destroy);
535 dev_warn(&rpdev->dev, "failed to nuke endpoints: %d\n", ret);
537 device_del(&ctrldev->dev);
538 put_device(&ctrldev->dev);
541 static struct rpmsg_driver rpmsg_chrdev_driver = {
542 .probe = rpmsg_chrdev_probe,
543 .remove = rpmsg_chrdev_remove,
545 .name = "rpmsg_chrdev",
549 static int rpmsg_chrdev_init(void)
553 ret = alloc_chrdev_region(&rpmsg_major, 0, RPMSG_DEV_MAX, "rpmsg");
555 pr_err("rpmsg: failed to allocate char dev region\n");
559 rpmsg_class = class_create(THIS_MODULE, "rpmsg");
560 if (IS_ERR(rpmsg_class)) {
561 pr_err("failed to create rpmsg class\n");
562 unregister_chrdev_region(rpmsg_major, RPMSG_DEV_MAX);
563 return PTR_ERR(rpmsg_class);
566 ret = register_rpmsg_driver(&rpmsg_chrdev_driver);
568 pr_err("rpmsgchr: failed to register rpmsg driver\n");
569 class_destroy(rpmsg_class);
570 unregister_chrdev_region(rpmsg_major, RPMSG_DEV_MAX);
575 postcore_initcall(rpmsg_chrdev_init);
577 static void rpmsg_chrdev_exit(void)
579 unregister_rpmsg_driver(&rpmsg_chrdev_driver);
580 class_destroy(rpmsg_class);
581 unregister_chrdev_region(rpmsg_major, RPMSG_DEV_MAX);
583 module_exit(rpmsg_chrdev_exit);
585 MODULE_ALIAS("rpmsg:rpmsg_chrdev");
586 MODULE_LICENSE("GPL v2");