blob: 5bb3b0e86d73b5c14d2eb6ed301ac9e82ac6f9d7 [file] [log] [blame]
Laurent Pinchartcf4b9212009-12-09 08:39:56 -03001/*
2 * Media device node
3 *
4 * Copyright (C) 2010 Nokia Corporation
5 *
6 * Contacts: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7 * Sakari Ailus <sakari.ailus@iki.fi>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * --
23 *
24 * Common functions for media-related drivers to register and unregister media
25 * device nodes.
26 */
27
28#ifndef _MEDIA_DEVNODE_H
29#define _MEDIA_DEVNODE_H
30
31#include <linux/poll.h>
32#include <linux/fs.h>
33#include <linux/device.h>
34#include <linux/cdev.h>
35
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -030036struct media_device;
37
Laurent Pinchartcf4b9212009-12-09 08:39:56 -030038/*
39 * Flag to mark the media_devnode struct as registered. Drivers must not touch
40 * this flag directly, it will be set and cleared by media_devnode_register and
41 * media_devnode_unregister.
42 */
43#define MEDIA_FLAG_REGISTERED 0
44
Mauro Carvalho Chehab75c7e292015-12-13 09:00:00 -020045/**
46 * struct media_file_operations - Media device file operations
47 *
48 * @owner: should be filled with %THIS_MODULE
49 * @read: pointer to the function that implements read() syscall
50 * @write: pointer to the function that implements write() syscall
51 * @poll: pointer to the function that implements poll() syscall
52 * @ioctl: pointer to the function that implements ioctl() syscall
53 * @compat_ioctl: pointer to the function that will handle 32 bits userspace
54 * calls to the the ioctl() syscall on a Kernel compiled with 64 bits.
55 * @open: pointer to the function that implements open() syscall
56 * @release: pointer to the function that will release the resources allocated
57 * by the @open function.
58 */
Laurent Pinchartcf4b9212009-12-09 08:39:56 -030059struct media_file_operations {
60 struct module *owner;
61 ssize_t (*read) (struct file *, char __user *, size_t, loff_t *);
62 ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *);
63 unsigned int (*poll) (struct file *, struct poll_table_struct *);
64 long (*ioctl) (struct file *, unsigned int, unsigned long);
Sakari Ailusc6c1d502013-01-22 12:27:55 -030065 long (*compat_ioctl) (struct file *, unsigned int, unsigned long);
Laurent Pinchartcf4b9212009-12-09 08:39:56 -030066 int (*open) (struct file *);
67 int (*release) (struct file *);
68};
69
70/**
71 * struct media_devnode - Media device node
Mauro Carvalho Chehab75c7e292015-12-13 09:00:00 -020072 * @fops: pointer to struct &media_file_operations with media device ops
Mauro Carvalho Chehabec0255c2015-08-22 04:45:03 -030073 * @dev: struct device pointer for the media controller device
74 * @cdev: struct cdev pointer character device
Laurent Pinchartcf4b9212009-12-09 08:39:56 -030075 * @parent: parent device
76 * @minor: device node minor number
77 * @flags: flags, combination of the MEDIA_FLAG_* constants
Mauro Carvalho Chehabec0255c2015-08-22 04:45:03 -030078 * @release: release callback called at the end of media_devnode_release()
Laurent Pinchartcf4b9212009-12-09 08:39:56 -030079 *
80 * This structure represents a media-related device node.
81 *
82 * The @parent is a physical device. It must be set by core or device drivers
83 * before registering the node.
84 */
85struct media_devnode {
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -030086 struct media_device *media_dev;
87
Laurent Pinchartcf4b9212009-12-09 08:39:56 -030088 /* device ops */
89 const struct media_file_operations *fops;
90
91 /* sysfs */
92 struct device dev; /* media device */
93 struct cdev cdev; /* character device */
94 struct device *parent; /* device parent */
95
96 /* device info */
97 int minor;
98 unsigned long flags; /* Use bitops to access flags */
99
100 /* callbacks */
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300101 void (*release)(struct media_devnode *devnode);
Laurent Pinchartcf4b9212009-12-09 08:39:56 -0300102};
103
104/* dev to media_devnode */
105#define to_media_devnode(cd) container_of(cd, struct media_devnode, dev)
106
Mauro Carvalho Chehabfe3c5652015-12-13 08:40:45 -0200107/**
108 * media_devnode_register - register a media device node
109 *
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300110 * @media_dev: struct media_device we want to register a device node
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300111 * @devnode: media device node structure we want to register
Mauro Carvalho Chehabfe3c5652015-12-13 08:40:45 -0200112 * @owner: should be filled with %THIS_MODULE
113 *
114 * The registration code assigns minor numbers and registers the new device node
115 * with the kernel. An error is returned if no free minor number can be found,
116 * or if the registration of the device node fails.
117 *
118 * Zero is returned on success.
119 *
120 * Note that if the media_devnode_register call fails, the release() callback of
121 * the media_devnode structure is *not* called, so the caller is responsible for
122 * freeing any data.
123 */
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300124int __must_check media_devnode_register(struct media_device *mdev,
125 struct media_devnode *devnode,
Sakari Ailus85de7212013-12-12 12:38:17 -0300126 struct module *owner);
Mauro Carvalho Chehabfe3c5652015-12-13 08:40:45 -0200127
128/**
129 * media_devnode_unregister - unregister a media device node
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300130 * @devnode: the device node to unregister
Mauro Carvalho Chehabfe3c5652015-12-13 08:40:45 -0200131 *
132 * This unregisters the passed device. Future open calls will be met with
133 * errors.
134 *
135 * This function can safely be called if the device node has never been
136 * registered or has already been unregistered.
137 */
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300138void media_devnode_unregister(struct media_devnode *devnode);
Laurent Pinchartcf4b9212009-12-09 08:39:56 -0300139
Mauro Carvalho Chehab75c7e292015-12-13 09:00:00 -0200140/**
141 * media_devnode_data - returns a pointer to the &media_devnode
142 *
143 * @filp: pointer to struct &file
144 */
Laurent Pinchartcf4b9212009-12-09 08:39:56 -0300145static inline struct media_devnode *media_devnode_data(struct file *filp)
146{
147 return filp->private_data;
148}
149
Mauro Carvalho Chehab75c7e292015-12-13 09:00:00 -0200150/**
151 * media_devnode_is_registered - returns true if &media_devnode is registered;
152 * false otherwise.
153 *
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300154 * @devnode: pointer to struct &media_devnode.
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300155 *
156 * Note: If mdev is NULL, it also returns false.
Mauro Carvalho Chehab75c7e292015-12-13 09:00:00 -0200157 */
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300158static inline int media_devnode_is_registered(struct media_devnode *devnode)
Laurent Pinchartcf4b9212009-12-09 08:39:56 -0300159{
Mauro Carvalho Chehaba087ce72016-04-27 19:28:26 -0300160 if (!devnode)
161 return false;
162
Mauro Carvalho Chehab163f1e92016-03-23 11:22:57 -0300163 return test_bit(MEDIA_FLAG_REGISTERED, &devnode->flags);
Laurent Pinchartcf4b9212009-12-09 08:39:56 -0300164}
165
166#endif /* _MEDIA_DEVNODE_H */