[media] dvbdev: add support for interfaces
[deliverable/linux.git] / include / media / media-device.h
CommitLineData
176fb0d1
LP
1/*
2 * Media device
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#ifndef _MEDIA_DEVICE_H
24#define _MEDIA_DEVICE_H
25
176fb0d1 26#include <linux/list.h>
503c3d82 27#include <linux/mutex.h>
53e269c1 28#include <linux/spinlock.h>
176fb0d1
LP
29
30#include <media/media-devnode.h>
53e269c1 31#include <media/media-entity.h>
176fb0d1 32
313162d0
PG
33struct device;
34
176fb0d1
LP
35/**
36 * struct media_device - Media device
37 * @dev: Parent device
38 * @devnode: Media device node
39 * @model: Device model name
40 * @serial: Device serial number (optional)
41 * @bus_info: Unique and stable device location identifier
42 * @hw_revision: Hardware device revision
43 * @driver_version: Device driver version
bfab2aac 44 * @entity_id: Unique ID used on the last entity registered
18710dc6 45 * @pad_id: Unique ID used on the last pad registered
6b6a4278 46 * @link_id: Unique ID used on the last link registered
27e543fa 47 * @intf_devnode_id: Unique ID used on the last interface devnode registered
53e269c1
LP
48 * @entities: List of registered entities
49 * @lock: Entities list lock
503c3d82 50 * @graph_mutex: Entities graph operation lock
813f5c0a 51 * @link_notify: Link state change notification callback
176fb0d1
LP
52 *
53 * This structure represents an abstract high-level media device. It allows easy
54 * access to entities and provides basic media device-level support. The
55 * structure can be allocated directly or embedded in a larger structure.
56 *
57 * The parent @dev is a physical device. It must be set before registering the
58 * media device.
59 *
60 * @model is a descriptive model name exported through sysfs. It doesn't have to
61 * be unique.
62 */
63struct media_device {
64 /* dev->driver_data points to this struct. */
65 struct device *dev;
66 struct media_devnode devnode;
67
68 char model[32];
69 char serial[40];
70 char bus_info[32];
71 u32 hw_revision;
72 u32 driver_version;
53e269c1
LP
73
74 u32 entity_id;
18710dc6 75 u32 pad_id;
6b6a4278 76 u32 link_id;
27e543fa 77 u32 intf_devnode_id;
bfab2aac 78
53e269c1
LP
79 struct list_head entities;
80
81 /* Protects the entities list */
82 spinlock_t lock;
503c3d82
LP
83 /* Serializes graph operations. */
84 struct mutex graph_mutex;
97548ed4 85
813f5c0a
SN
86 int (*link_notify)(struct media_link *link, u32 flags,
87 unsigned int notification);
176fb0d1
LP
88};
89
e576d60b
SK
90#ifdef CONFIG_MEDIA_CONTROLLER
91
813f5c0a
SN
92/* Supported link_notify @notification values. */
93#define MEDIA_DEV_NOTIFY_PRE_LINK_CH 0
94#define MEDIA_DEV_NOTIFY_POST_LINK_CH 1
95
176fb0d1
LP
96/* media_devnode to media_device */
97#define to_media_device(node) container_of(node, struct media_device, devnode)
98
85de721c
SA
99int __must_check __media_device_register(struct media_device *mdev,
100 struct module *owner);
101#define media_device_register(mdev) __media_device_register(mdev, THIS_MODULE)
176fb0d1
LP
102void media_device_unregister(struct media_device *mdev);
103
53e269c1
LP
104int __must_check media_device_register_entity(struct media_device *mdev,
105 struct media_entity *entity);
106void media_device_unregister_entity(struct media_entity *entity);
d062f911
SK
107struct media_device *media_device_get_devres(struct device *dev);
108struct media_device *media_device_find_devres(struct device *dev);
53e269c1
LP
109
110/* Iterate over all entities. */
111#define media_device_for_each_entity(entity, mdev) \
112 list_for_each_entry(entity, &(mdev)->entities, list)
113
e576d60b
SK
114#else
115static inline int media_device_register(struct media_device *mdev)
116{
117 return 0;
118}
119static inline void media_device_unregister(struct media_device *mdev)
120{
121}
122static inline int media_device_register_entity(struct media_device *mdev,
123 struct media_entity *entity)
124{
125 return 0;
126}
127static inline void media_device_unregister_entity(struct media_entity *entity)
128{
129}
130static inline struct media_device *media_device_get_devres(struct device *dev)
131{
132 return NULL;
133}
134static inline struct media_device *media_device_find_devres(struct device *dev)
135{
136 return NULL;
137}
138#endif /* CONFIG_MEDIA_CONTROLLER */
176fb0d1 139#endif
This page took 0.300792 seconds and 5 git commands to generate.