blob: 9493721f630ecf0f8121e0c91555917bd11e1cb0 [file] [log] [blame]
Laurent Pinchart176fb0d2009-12-09 08:39:58 -03001/*
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
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030026#include <linux/list.h>
Laurent Pinchart503c3d822010-03-07 15:04:59 -030027#include <linux/mutex.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030028#include <linux/spinlock.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030029
30#include <media/media-devnode.h>
Laurent Pinchart53e269c2009-12-09 08:40:00 -030031#include <media/media-entity.h>
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030032
Paul Gortmaker313162d2012-01-30 11:46:54 -050033struct device;
34
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030035/**
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
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -030044 * @entity_id: Unique ID used on the last entity registered
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -030045 * @pad_id: Unique ID used on the last pad registered
Laurent Pinchart53e269c2009-12-09 08:40:00 -030046 * @entities: List of registered entities
47 * @lock: Entities list lock
Laurent Pinchart503c3d822010-03-07 15:04:59 -030048 * @graph_mutex: Entities graph operation lock
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -030049 * @link_notify: Link state change notification callback
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030050 *
51 * This structure represents an abstract high-level media device. It allows easy
52 * access to entities and provides basic media device-level support. The
53 * structure can be allocated directly or embedded in a larger structure.
54 *
55 * The parent @dev is a physical device. It must be set before registering the
56 * media device.
57 *
58 * @model is a descriptive model name exported through sysfs. It doesn't have to
59 * be unique.
60 */
61struct media_device {
62 /* dev->driver_data points to this struct. */
63 struct device *dev;
64 struct media_devnode devnode;
65
66 char model[32];
67 char serial[40];
68 char bus_info[32];
69 u32 hw_revision;
70 u32 driver_version;
Laurent Pinchart53e269c2009-12-09 08:40:00 -030071
72 u32 entity_id;
Mauro Carvalho Chehab18710dc2015-08-14 12:50:08 -030073 u32 pad_id;
Mauro Carvalho Chehabbfab2aac2015-08-14 12:47:48 -030074
Laurent Pinchart53e269c2009-12-09 08:40:00 -030075 struct list_head entities;
76
77 /* Protects the entities list */
78 spinlock_t lock;
Laurent Pinchart503c3d822010-03-07 15:04:59 -030079 /* Serializes graph operations. */
80 struct mutex graph_mutex;
Laurent Pinchart97548ed2009-12-09 08:40:03 -030081
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -030082 int (*link_notify)(struct media_link *link, u32 flags,
83 unsigned int notification);
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030084};
85
Shuah Khane576d602015-06-05 17:11:54 -030086#ifdef CONFIG_MEDIA_CONTROLLER
87
Sylwester Nawrocki813f5c02013-05-31 10:37:26 -030088/* Supported link_notify @notification values. */
89#define MEDIA_DEV_NOTIFY_PRE_LINK_CH 0
90#define MEDIA_DEV_NOTIFY_POST_LINK_CH 1
91
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030092/* media_devnode to media_device */
93#define to_media_device(node) container_of(node, struct media_device, devnode)
94
Sakari Ailus85de7212013-12-12 12:38:17 -030095int __must_check __media_device_register(struct media_device *mdev,
96 struct module *owner);
97#define media_device_register(mdev) __media_device_register(mdev, THIS_MODULE)
Laurent Pinchart176fb0d2009-12-09 08:39:58 -030098void media_device_unregister(struct media_device *mdev);
99
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300100int __must_check media_device_register_entity(struct media_device *mdev,
101 struct media_entity *entity);
102void media_device_unregister_entity(struct media_entity *entity);
Shuah Khand062f912015-06-03 12:12:53 -0300103struct media_device *media_device_get_devres(struct device *dev);
104struct media_device *media_device_find_devres(struct device *dev);
Laurent Pinchart53e269c2009-12-09 08:40:00 -0300105
106/* Iterate over all entities. */
107#define media_device_for_each_entity(entity, mdev) \
108 list_for_each_entry(entity, &(mdev)->entities, list)
109
Shuah Khane576d602015-06-05 17:11:54 -0300110#else
111static inline int media_device_register(struct media_device *mdev)
112{
113 return 0;
114}
115static inline void media_device_unregister(struct media_device *mdev)
116{
117}
118static inline int media_device_register_entity(struct media_device *mdev,
119 struct media_entity *entity)
120{
121 return 0;
122}
123static inline void media_device_unregister_entity(struct media_entity *entity)
124{
125}
126static inline struct media_device *media_device_get_devres(struct device *dev)
127{
128 return NULL;
129}
130static inline struct media_device *media_device_find_devres(struct device *dev)
131{
132 return NULL;
133}
134#endif /* CONFIG_MEDIA_CONTROLLER */
Laurent Pinchart176fb0d2009-12-09 08:39:58 -0300135#endif