diff options
Diffstat (limited to 'include/media')
31 files changed, 1234 insertions, 171 deletions
diff --git a/include/media/davinci/dm355_ccdc.h b/include/media/davinci/dm355_ccdc.h index df8a7b107477..adf2fe4bf0bb 100644 --- a/include/media/davinci/dm355_ccdc.h +++ b/include/media/davinci/dm355_ccdc.h | |||
| @@ -193,7 +193,7 @@ struct ccdc_dft_corr_mem_ctl { | |||
| 193 | #define CCDC_DFT_TABLE_SIZE 16 | 193 | #define CCDC_DFT_TABLE_SIZE 16 |
| 194 | /* | 194 | /* |
| 195 | * Main Structure for vertical defect correction. Vertical defect | 195 | * Main Structure for vertical defect correction. Vertical defect |
| 196 | * correction can correct upto 16 defects if defects less than 16 | 196 | * correction can correct up to 16 defects if defects less than 16 |
| 197 | * then pad the rest with 0 | 197 | * then pad the rest with 0 |
| 198 | */ | 198 | */ |
| 199 | struct ccdc_vertical_dft { | 199 | struct ccdc_vertical_dft { |
diff --git a/include/media/davinci/isif.h b/include/media/davinci/isif.h index b0b74ad618cc..7f3d76a4b9e3 100644 --- a/include/media/davinci/isif.h +++ b/include/media/davinci/isif.h | |||
| @@ -199,7 +199,7 @@ struct isif_black_clamp { | |||
| 199 | }; | 199 | }; |
| 200 | 200 | ||
| 201 | /************************************************************************* | 201 | /************************************************************************* |
| 202 | ** Color Space Convertion (CSC) | 202 | ** Color Space Conversion (CSC) |
| 203 | *************************************************************************/ | 203 | *************************************************************************/ |
| 204 | #define ISIF_CSC_NUM_COEFF 16 | 204 | #define ISIF_CSC_NUM_COEFF 16 |
| 205 | struct isif_color_space_conv { | 205 | struct isif_color_space_conv { |
diff --git a/include/media/lirc.h b/include/media/lirc.h index 6678a169fd9e..4b3ab2966b5a 100644 --- a/include/media/lirc.h +++ b/include/media/lirc.h | |||
| @@ -137,7 +137,7 @@ | |||
| 137 | */ | 137 | */ |
| 138 | #define LIRC_SET_REC_FILTER_SPACE _IOW('i', 0x0000001b, __u32) | 138 | #define LIRC_SET_REC_FILTER_SPACE _IOW('i', 0x0000001b, __u32) |
| 139 | /* | 139 | /* |
| 140 | * if filter cannot be set independantly for pulse/space, this should | 140 | * if filter cannot be set independently for pulse/space, this should |
| 141 | * be used | 141 | * be used |
| 142 | */ | 142 | */ |
| 143 | #define LIRC_SET_REC_FILTER _IOW('i', 0x0000001c, __u32) | 143 | #define LIRC_SET_REC_FILTER _IOW('i', 0x0000001c, __u32) |
diff --git a/include/media/media-device.h b/include/media/media-device.h new file mode 100644 index 000000000000..6a27d916c250 --- /dev/null +++ b/include/media/media-device.h | |||
| @@ -0,0 +1,95 @@ | |||
| 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 | |||
| 26 | #include <linux/device.h> | ||
| 27 | #include <linux/list.h> | ||
| 28 | #include <linux/mutex.h> | ||
| 29 | #include <linux/spinlock.h> | ||
| 30 | |||
| 31 | #include <media/media-devnode.h> | ||
| 32 | #include <media/media-entity.h> | ||
| 33 | |||
| 34 | /** | ||
| 35 | * struct media_device - Media device | ||
| 36 | * @dev: Parent device | ||
| 37 | * @devnode: Media device node | ||
| 38 | * @model: Device model name | ||
| 39 | * @serial: Device serial number (optional) | ||
| 40 | * @bus_info: Unique and stable device location identifier | ||
| 41 | * @hw_revision: Hardware device revision | ||
| 42 | * @driver_version: Device driver version | ||
| 43 | * @entity_id: ID of the next entity to be registered | ||
| 44 | * @entities: List of registered entities | ||
| 45 | * @lock: Entities list lock | ||
| 46 | * @graph_mutex: Entities graph operation lock | ||
| 47 | * | ||
| 48 | * This structure represents an abstract high-level media device. It allows easy | ||
| 49 | * access to entities and provides basic media device-level support. The | ||
| 50 | * structure can be allocated directly or embedded in a larger structure. | ||
| 51 | * | ||
| 52 | * The parent @dev is a physical device. It must be set before registering the | ||
| 53 | * media device. | ||
| 54 | * | ||
| 55 | * @model is a descriptive model name exported through sysfs. It doesn't have to | ||
| 56 | * be unique. | ||
| 57 | */ | ||
| 58 | struct media_device { | ||
| 59 | /* dev->driver_data points to this struct. */ | ||
| 60 | struct device *dev; | ||
| 61 | struct media_devnode devnode; | ||
| 62 | |||
| 63 | char model[32]; | ||
| 64 | char serial[40]; | ||
| 65 | char bus_info[32]; | ||
| 66 | u32 hw_revision; | ||
| 67 | u32 driver_version; | ||
| 68 | |||
| 69 | u32 entity_id; | ||
| 70 | struct list_head entities; | ||
| 71 | |||
| 72 | /* Protects the entities list */ | ||
| 73 | spinlock_t lock; | ||
| 74 | /* Serializes graph operations. */ | ||
| 75 | struct mutex graph_mutex; | ||
| 76 | |||
| 77 | int (*link_notify)(struct media_pad *source, | ||
| 78 | struct media_pad *sink, u32 flags); | ||
| 79 | }; | ||
| 80 | |||
| 81 | /* media_devnode to media_device */ | ||
| 82 | #define to_media_device(node) container_of(node, struct media_device, devnode) | ||
| 83 | |||
| 84 | int __must_check media_device_register(struct media_device *mdev); | ||
| 85 | void media_device_unregister(struct media_device *mdev); | ||
| 86 | |||
| 87 | int __must_check media_device_register_entity(struct media_device *mdev, | ||
| 88 | struct media_entity *entity); | ||
| 89 | void media_device_unregister_entity(struct media_entity *entity); | ||
| 90 | |||
| 91 | /* Iterate over all entities. */ | ||
| 92 | #define media_device_for_each_entity(entity, mdev) \ | ||
| 93 | list_for_each_entry(entity, &(mdev)->entities, list) | ||
| 94 | |||
| 95 | #endif | ||
diff --git a/include/media/media-devnode.h b/include/media/media-devnode.h new file mode 100644 index 000000000000..f6caafc874cb --- /dev/null +++ b/include/media/media-devnode.h | |||
| @@ -0,0 +1,97 @@ | |||
| 1 | /* | ||
| 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 | |||
| 36 | /* | ||
| 37 | * Flag to mark the media_devnode struct as registered. Drivers must not touch | ||
| 38 | * this flag directly, it will be set and cleared by media_devnode_register and | ||
| 39 | * media_devnode_unregister. | ||
| 40 | */ | ||
| 41 | #define MEDIA_FLAG_REGISTERED 0 | ||
| 42 | |||
| 43 | struct media_file_operations { | ||
| 44 | struct module *owner; | ||
| 45 | ssize_t (*read) (struct file *, char __user *, size_t, loff_t *); | ||
| 46 | ssize_t (*write) (struct file *, const char __user *, size_t, loff_t *); | ||
| 47 | unsigned int (*poll) (struct file *, struct poll_table_struct *); | ||
| 48 | long (*ioctl) (struct file *, unsigned int, unsigned long); | ||
| 49 | int (*open) (struct file *); | ||
| 50 | int (*release) (struct file *); | ||
| 51 | }; | ||
| 52 | |||
| 53 | /** | ||
| 54 | * struct media_devnode - Media device node | ||
| 55 | * @parent: parent device | ||
| 56 | * @minor: device node minor number | ||
| 57 | * @flags: flags, combination of the MEDIA_FLAG_* constants | ||
| 58 | * | ||
| 59 | * This structure represents a media-related device node. | ||
| 60 | * | ||
| 61 | * The @parent is a physical device. It must be set by core or device drivers | ||
| 62 | * before registering the node. | ||
| 63 | */ | ||
| 64 | struct media_devnode { | ||
| 65 | /* device ops */ | ||
| 66 | const struct media_file_operations *fops; | ||
| 67 | |||
| 68 | /* sysfs */ | ||
| 69 | struct device dev; /* media device */ | ||
| 70 | struct cdev cdev; /* character device */ | ||
| 71 | struct device *parent; /* device parent */ | ||
| 72 | |||
| 73 | /* device info */ | ||
| 74 | int minor; | ||
| 75 | unsigned long flags; /* Use bitops to access flags */ | ||
| 76 | |||
| 77 | /* callbacks */ | ||
| 78 | void (*release)(struct media_devnode *mdev); | ||
| 79 | }; | ||
| 80 | |||
| 81 | /* dev to media_devnode */ | ||
| 82 | #define to_media_devnode(cd) container_of(cd, struct media_devnode, dev) | ||
| 83 | |||
| 84 | int __must_check media_devnode_register(struct media_devnode *mdev); | ||
| 85 | void media_devnode_unregister(struct media_devnode *mdev); | ||
| 86 | |||
| 87 | static inline struct media_devnode *media_devnode_data(struct file *filp) | ||
| 88 | { | ||
| 89 | return filp->private_data; | ||
| 90 | } | ||
| 91 | |||
| 92 | static inline int media_devnode_is_registered(struct media_devnode *mdev) | ||
| 93 | { | ||
| 94 | return test_bit(MEDIA_FLAG_REGISTERED, &mdev->flags); | ||
| 95 | } | ||
| 96 | |||
| 97 | #endif /* _MEDIA_DEVNODE_H */ | ||
diff --git a/include/media/media-entity.h b/include/media/media-entity.h new file mode 100644 index 000000000000..cd8bca63a502 --- /dev/null +++ b/include/media/media-entity.h | |||
| @@ -0,0 +1,151 @@ | |||
| 1 | /* | ||
| 2 | * Media entity | ||
| 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_ENTITY_H | ||
| 24 | #define _MEDIA_ENTITY_H | ||
| 25 | |||
| 26 | #include <linux/list.h> | ||
| 27 | #include <linux/media.h> | ||
| 28 | |||
| 29 | struct media_pipeline { | ||
| 30 | }; | ||
| 31 | |||
| 32 | struct media_link { | ||
| 33 | struct media_pad *source; /* Source pad */ | ||
| 34 | struct media_pad *sink; /* Sink pad */ | ||
| 35 | struct media_link *reverse; /* Link in the reverse direction */ | ||
| 36 | unsigned long flags; /* Link flags (MEDIA_LNK_FL_*) */ | ||
| 37 | }; | ||
| 38 | |||
| 39 | struct media_pad { | ||
| 40 | struct media_entity *entity; /* Entity this pad belongs to */ | ||
| 41 | u16 index; /* Pad index in the entity pads array */ | ||
| 42 | unsigned long flags; /* Pad flags (MEDIA_PAD_FL_*) */ | ||
| 43 | }; | ||
| 44 | |||
| 45 | struct media_entity_operations { | ||
| 46 | int (*link_setup)(struct media_entity *entity, | ||
| 47 | const struct media_pad *local, | ||
| 48 | const struct media_pad *remote, u32 flags); | ||
| 49 | }; | ||
| 50 | |||
| 51 | struct media_entity { | ||
| 52 | struct list_head list; | ||
| 53 | struct media_device *parent; /* Media device this entity belongs to*/ | ||
| 54 | u32 id; /* Entity ID, unique in the parent media | ||
| 55 | * device context */ | ||
| 56 | const char *name; /* Entity name */ | ||
| 57 | u32 type; /* Entity type (MEDIA_ENT_T_*) */ | ||
| 58 | u32 revision; /* Entity revision, driver specific */ | ||
| 59 | unsigned long flags; /* Entity flags (MEDIA_ENT_FL_*) */ | ||
| 60 | u32 group_id; /* Entity group ID */ | ||
| 61 | |||
| 62 | u16 num_pads; /* Number of sink and source pads */ | ||
| 63 | u16 num_links; /* Number of existing links, both | ||
| 64 | * enabled and disabled */ | ||
| 65 | u16 num_backlinks; /* Number of backlinks */ | ||
| 66 | u16 max_links; /* Maximum number of links */ | ||
| 67 | |||
| 68 | struct media_pad *pads; /* Pads array (num_pads elements) */ | ||
| 69 | struct media_link *links; /* Links array (max_links elements)*/ | ||
| 70 | |||
| 71 | const struct media_entity_operations *ops; /* Entity operations */ | ||
| 72 | |||
| 73 | /* Reference counts must never be negative, but are signed integers on | ||
| 74 | * purpose: a simple WARN_ON(<0) check can be used to detect reference | ||
| 75 | * count bugs that would make them negative. | ||
| 76 | */ | ||
| 77 | int stream_count; /* Stream count for the entity. */ | ||
| 78 | int use_count; /* Use count for the entity. */ | ||
| 79 | |||
| 80 | struct media_pipeline *pipe; /* Pipeline this entity belongs to. */ | ||
| 81 | |||
| 82 | union { | ||
| 83 | /* Node specifications */ | ||
| 84 | struct { | ||
| 85 | u32 major; | ||
| 86 | u32 minor; | ||
| 87 | } v4l; | ||
| 88 | struct { | ||
| 89 | u32 major; | ||
| 90 | u32 minor; | ||
| 91 | } fb; | ||
| 92 | struct { | ||
| 93 | u32 card; | ||
| 94 | u32 device; | ||
| 95 | u32 subdevice; | ||
| 96 | } alsa; | ||
| 97 | int dvb; | ||
| 98 | |||
| 99 | /* Sub-device specifications */ | ||
| 100 | /* Nothing needed yet */ | ||
| 101 | }; | ||
| 102 | }; | ||
| 103 | |||
| 104 | static inline u32 media_entity_type(struct media_entity *entity) | ||
| 105 | { | ||
| 106 | return entity->type & MEDIA_ENT_TYPE_MASK; | ||
| 107 | } | ||
| 108 | |||
| 109 | static inline u32 media_entity_subtype(struct media_entity *entity) | ||
| 110 | { | ||
| 111 | return entity->type & MEDIA_ENT_SUBTYPE_MASK; | ||
| 112 | } | ||
| 113 | |||
| 114 | #define MEDIA_ENTITY_ENUM_MAX_DEPTH 16 | ||
| 115 | |||
| 116 | struct media_entity_graph { | ||
| 117 | struct { | ||
| 118 | struct media_entity *entity; | ||
| 119 | int link; | ||
| 120 | } stack[MEDIA_ENTITY_ENUM_MAX_DEPTH]; | ||
| 121 | int top; | ||
| 122 | }; | ||
| 123 | |||
| 124 | int media_entity_init(struct media_entity *entity, u16 num_pads, | ||
| 125 | struct media_pad *pads, u16 extra_links); | ||
| 126 | void media_entity_cleanup(struct media_entity *entity); | ||
| 127 | |||
| 128 | int media_entity_create_link(struct media_entity *source, u16 source_pad, | ||
| 129 | struct media_entity *sink, u16 sink_pad, u32 flags); | ||
| 130 | int __media_entity_setup_link(struct media_link *link, u32 flags); | ||
| 131 | int media_entity_setup_link(struct media_link *link, u32 flags); | ||
| 132 | struct media_link *media_entity_find_link(struct media_pad *source, | ||
| 133 | struct media_pad *sink); | ||
| 134 | struct media_pad *media_entity_remote_source(struct media_pad *pad); | ||
| 135 | |||
| 136 | struct media_entity *media_entity_get(struct media_entity *entity); | ||
| 137 | void media_entity_put(struct media_entity *entity); | ||
| 138 | |||
| 139 | void media_entity_graph_walk_start(struct media_entity_graph *graph, | ||
| 140 | struct media_entity *entity); | ||
| 141 | struct media_entity * | ||
| 142 | media_entity_graph_walk_next(struct media_entity_graph *graph); | ||
| 143 | void media_entity_pipeline_start(struct media_entity *entity, | ||
| 144 | struct media_pipeline *pipe); | ||
| 145 | void media_entity_pipeline_stop(struct media_entity *entity); | ||
| 146 | |||
| 147 | #define media_entity_call(entity, operation, args...) \ | ||
| 148 | (((entity)->ops && (entity)->ops->operation) ? \ | ||
| 149 | (entity)->ops->operation((entity) , ##args) : -ENOIOCTLCMD) | ||
| 150 | |||
| 151 | #endif | ||
diff --git a/include/media/mt9v011.h b/include/media/mt9v011.h new file mode 100644 index 000000000000..ea29fc74cd06 --- /dev/null +++ b/include/media/mt9v011.h | |||
| @@ -0,0 +1,17 @@ | |||
| 1 | /* mt9v011 sensor | ||
| 2 | * | ||
| 3 | * Copyright (C) 2011 Hans Verkuil <hverkuil@xs4all.nl> | ||
| 4 | * | ||
| 5 | * This program is free software; you can redistribute it and/or modify | ||
| 6 | * it under the terms of the GNU General Public License version 2 as | ||
| 7 | * published by the Free Software Foundation. | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __MT9V011_H__ | ||
| 11 | #define __MT9V011_H__ | ||
| 12 | |||
| 13 | struct mt9v011_platform_data { | ||
| 14 | unsigned xtal; /* Hz */ | ||
| 15 | }; | ||
| 16 | |||
| 17 | #endif | ||
diff --git a/include/media/noon010pc30.h b/include/media/noon010pc30.h new file mode 100644 index 000000000000..58eafee36b30 --- /dev/null +++ b/include/media/noon010pc30.h | |||
| @@ -0,0 +1,28 @@ | |||
| 1 | /* | ||
| 2 | * Driver header for NOON010PC30L camera sensor chip. | ||
| 3 | * | ||
| 4 | * Copyright (c) 2010 Samsung Electronics, Co. Ltd | ||
| 5 | * Contact: Sylwester Nawrocki <s.nawrocki@samsung.com> | ||
| 6 | * | ||
| 7 | * This program is free software; you can redistribute it and/or modify | ||
| 8 | * it under the terms of the GNU General Public License as published by | ||
| 9 | * the Free Software Foundation; either version 2 of the License, or | ||
| 10 | * (at your option) any later version. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef NOON010PC30_H | ||
| 14 | #define NOON010PC30_H | ||
| 15 | |||
| 16 | /** | ||
| 17 | * @clk_rate: the clock frequency in Hz | ||
| 18 | * @gpio_nreset: GPIO driving nRESET pin | ||
| 19 | * @gpio_nstby: GPIO driving nSTBY pin | ||
| 20 | */ | ||
| 21 | |||
| 22 | struct noon010pc30_platform_data { | ||
| 23 | unsigned long clk_rate; | ||
| 24 | int gpio_nreset; | ||
| 25 | int gpio_nstby; | ||
| 26 | }; | ||
| 27 | |||
| 28 | #endif /* NOON010PC30_H */ | ||
diff --git a/include/media/rc-core.h b/include/media/rc-core.h index a23c1fc685a1..2963263f31e2 100644 --- a/include/media/rc-core.h +++ b/include/media/rc-core.h | |||
| @@ -183,6 +183,9 @@ static inline void init_ir_raw_event(struct ir_raw_event *ev) | |||
| 183 | } | 183 | } |
| 184 | 184 | ||
| 185 | #define IR_MAX_DURATION 0xFFFFFFFF /* a bit more than 4 seconds */ | 185 | #define IR_MAX_DURATION 0xFFFFFFFF /* a bit more than 4 seconds */ |
| 186 | #define US_TO_NS(usec) ((usec) * 1000) | ||
| 187 | #define MS_TO_US(msec) ((msec) * 1000) | ||
| 188 | #define MS_TO_NS(msec) ((msec) * 1000 * 1000) | ||
| 186 | 189 | ||
| 187 | void ir_raw_event_handle(struct rc_dev *dev); | 190 | void ir_raw_event_handle(struct rc_dev *dev); |
| 188 | int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev); | 191 | int ir_raw_event_store(struct rc_dev *dev, struct ir_raw_event *ev); |
diff --git a/include/media/rc-map.h b/include/media/rc-map.h index ee9e2f747c76..9184751f19c0 100644 --- a/include/media/rc-map.h +++ b/include/media/rc-map.h | |||
| @@ -94,7 +94,7 @@ void rc_map_init(void); | |||
| 94 | #define RC_MAP_GADMEI_RM008Z "rc-gadmei-rm008z" | 94 | #define RC_MAP_GADMEI_RM008Z "rc-gadmei-rm008z" |
| 95 | #define RC_MAP_GENIUS_TVGO_A11MCE "rc-genius-tvgo-a11mce" | 95 | #define RC_MAP_GENIUS_TVGO_A11MCE "rc-genius-tvgo-a11mce" |
| 96 | #define RC_MAP_GOTVIEW7135 "rc-gotview7135" | 96 | #define RC_MAP_GOTVIEW7135 "rc-gotview7135" |
| 97 | #define RC_MAP_HAUPPAUGE_NEW "rc-hauppauge-new" | 97 | #define RC_MAP_HAUPPAUGE_NEW "rc-hauppauge" |
| 98 | #define RC_MAP_IMON_MCE "rc-imon-mce" | 98 | #define RC_MAP_IMON_MCE "rc-imon-mce" |
| 99 | #define RC_MAP_IMON_PAD "rc-imon-pad" | 99 | #define RC_MAP_IMON_PAD "rc-imon-pad" |
| 100 | #define RC_MAP_IODATA_BCTV7E "rc-iodata-bctv7e" | 100 | #define RC_MAP_IODATA_BCTV7E "rc-iodata-bctv7e" |
| @@ -125,14 +125,16 @@ void rc_map_init(void); | |||
| 125 | #define RC_MAP_PROTEUS_2309 "rc-proteus-2309" | 125 | #define RC_MAP_PROTEUS_2309 "rc-proteus-2309" |
| 126 | #define RC_MAP_PURPLETV "rc-purpletv" | 126 | #define RC_MAP_PURPLETV "rc-purpletv" |
| 127 | #define RC_MAP_PV951 "rc-pv951" | 127 | #define RC_MAP_PV951 "rc-pv951" |
| 128 | #define RC_MAP_RC5_HAUPPAUGE_NEW "rc-rc5-hauppauge-new" | 128 | #define RC_MAP_HAUPPAUGE "rc-hauppauge" |
| 129 | #define RC_MAP_RC5_TV "rc-rc5-tv" | 129 | #define RC_MAP_RC5_TV "rc-rc5-tv" |
| 130 | #define RC_MAP_RC6_MCE "rc-rc6-mce" | 130 | #define RC_MAP_RC6_MCE "rc-rc6-mce" |
| 131 | #define RC_MAP_REAL_AUDIO_220_32_KEYS "rc-real-audio-220-32-keys" | 131 | #define RC_MAP_REAL_AUDIO_220_32_KEYS "rc-real-audio-220-32-keys" |
| 132 | #define RC_MAP_STREAMZAP "rc-streamzap" | 132 | #define RC_MAP_STREAMZAP "rc-streamzap" |
| 133 | #define RC_MAP_TBS_NEC "rc-tbs-nec" | 133 | #define RC_MAP_TBS_NEC "rc-tbs-nec" |
| 134 | #define RC_MAP_TECHNISAT_USB2 "rc-technisat-usb2" | ||
| 134 | #define RC_MAP_TERRATEC_CINERGY_XS "rc-terratec-cinergy-xs" | 135 | #define RC_MAP_TERRATEC_CINERGY_XS "rc-terratec-cinergy-xs" |
| 135 | #define RC_MAP_TERRATEC_SLIM "rc-terratec-slim" | 136 | #define RC_MAP_TERRATEC_SLIM "rc-terratec-slim" |
| 137 | #define RC_MAP_TERRATEC_SLIM_2 "rc-terratec-slim-2" | ||
| 136 | #define RC_MAP_TEVII_NEC "rc-tevii-nec" | 138 | #define RC_MAP_TEVII_NEC "rc-tevii-nec" |
| 137 | #define RC_MAP_TOTAL_MEDIA_IN_HAND "rc-total-media-in-hand" | 139 | #define RC_MAP_TOTAL_MEDIA_IN_HAND "rc-total-media-in-hand" |
| 138 | #define RC_MAP_TREKSTOR "rc-trekstor" | 140 | #define RC_MAP_TREKSTOR "rc-trekstor" |
diff --git a/include/media/s3c_fimc.h b/include/media/s5p_fimc.h index ca1b6738e4a4..9fdff8a4ed26 100644 --- a/include/media/s3c_fimc.h +++ b/include/media/s5p_fimc.h | |||
| @@ -9,8 +9,8 @@ | |||
| 9 | * published by the Free Software Foundation. | 9 | * published by the Free Software Foundation. |
| 10 | */ | 10 | */ |
| 11 | 11 | ||
| 12 | #ifndef S3C_FIMC_H_ | 12 | #ifndef S5P_FIMC_H_ |
| 13 | #define S3C_FIMC_H_ | 13 | #define S5P_FIMC_H_ |
| 14 | 14 | ||
| 15 | enum cam_bus_type { | 15 | enum cam_bus_type { |
| 16 | FIMC_ITU_601 = 1, | 16 | FIMC_ITU_601 = 1, |
| @@ -27,34 +27,35 @@ enum cam_bus_type { | |||
| 27 | struct i2c_board_info; | 27 | struct i2c_board_info; |
| 28 | 28 | ||
| 29 | /** | 29 | /** |
| 30 | * struct s3c_fimc_isp_info - image sensor information required for host | 30 | * struct s5p_fimc_isp_info - image sensor information required for host |
| 31 | * interace configuration. | 31 | * interace configuration. |
| 32 | * | 32 | * |
| 33 | * @board_info: pointer to I2C subdevice's board info | 33 | * @board_info: pointer to I2C subdevice's board info |
| 34 | * @clk_frequency: frequency of the clock the host interface provides to sensor | ||
| 34 | * @bus_type: determines bus type, MIPI, ITU-R BT.601 etc. | 35 | * @bus_type: determines bus type, MIPI, ITU-R BT.601 etc. |
| 36 | * @csi_data_align: MIPI-CSI interface data alignment in bits | ||
| 35 | * @i2c_bus_num: i2c control bus id the sensor is attached to | 37 | * @i2c_bus_num: i2c control bus id the sensor is attached to |
| 36 | * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU) | 38 | * @mux_id: FIMC camera interface multiplexer index (separate for MIPI and ITU) |
| 37 | * @bus_width: camera data bus width in bits | ||
| 38 | * @flags: flags defining bus signals polarity inversion (High by default) | 39 | * @flags: flags defining bus signals polarity inversion (High by default) |
| 39 | */ | 40 | */ |
| 40 | struct s3c_fimc_isp_info { | 41 | struct s5p_fimc_isp_info { |
| 41 | struct i2c_board_info *board_info; | 42 | struct i2c_board_info *board_info; |
| 43 | unsigned long clk_frequency; | ||
| 42 | enum cam_bus_type bus_type; | 44 | enum cam_bus_type bus_type; |
| 45 | u16 csi_data_align; | ||
| 43 | u16 i2c_bus_num; | 46 | u16 i2c_bus_num; |
| 44 | u16 mux_id; | 47 | u16 mux_id; |
| 45 | u16 bus_width; | ||
| 46 | u16 flags; | 48 | u16 flags; |
| 47 | }; | 49 | }; |
| 48 | 50 | ||
| 49 | |||
| 50 | #define FIMC_MAX_CAMIF_CLIENTS 2 | ||
| 51 | |||
| 52 | /** | 51 | /** |
| 53 | * struct s3c_platform_fimc - camera host interface platform data | 52 | * struct s5p_platform_fimc - camera host interface platform data |
| 54 | * | 53 | * |
| 55 | * @isp_info: properties of camera sensor required for host interface setup | 54 | * @isp_info: properties of camera sensor required for host interface setup |
| 55 | * @num_clients: the number of attached image sensors | ||
| 56 | */ | 56 | */ |
| 57 | struct s3c_platform_fimc { | 57 | struct s5p_platform_fimc { |
| 58 | struct s3c_fimc_isp_info *isp_info[FIMC_MAX_CAMIF_CLIENTS]; | 58 | struct s5p_fimc_isp_info *isp_info; |
| 59 | int num_clients; | ||
| 59 | }; | 60 | }; |
| 60 | #endif /* S3C_FIMC_H_ */ | 61 | #endif /* S5P_FIMC_H_ */ |
diff --git a/include/media/saa7146.h b/include/media/saa7146.h index ac7ce00f39cf..79827143d5ac 100644 --- a/include/media/saa7146.h +++ b/include/media/saa7146.h | |||
| @@ -115,7 +115,7 @@ struct saa7146_dev | |||
| 115 | 115 | ||
| 116 | /* different device locks */ | 116 | /* different device locks */ |
| 117 | spinlock_t slock; | 117 | spinlock_t slock; |
| 118 | struct mutex lock; | 118 | struct mutex v4l2_lock; |
| 119 | 119 | ||
| 120 | unsigned char __iomem *mem; /* pointer to mapped IO memory */ | 120 | unsigned char __iomem *mem; /* pointer to mapped IO memory */ |
| 121 | u32 revision; /* chip revision; needed for bug-workarounds*/ | 121 | u32 revision; /* chip revision; needed for bug-workarounds*/ |
diff --git a/include/media/soc_camera.h b/include/media/soc_camera.h index 9386db829fb7..f80b5372baf3 100644 --- a/include/media/soc_camera.h +++ b/include/media/soc_camera.h | |||
| @@ -17,6 +17,7 @@ | |||
| 17 | #include <linux/pm.h> | 17 | #include <linux/pm.h> |
| 18 | #include <linux/videodev2.h> | 18 | #include <linux/videodev2.h> |
| 19 | #include <media/videobuf-core.h> | 19 | #include <media/videobuf-core.h> |
| 20 | #include <media/videobuf2-core.h> | ||
| 20 | #include <media/v4l2-device.h> | 21 | #include <media/v4l2-device.h> |
| 21 | 22 | ||
| 22 | extern struct bus_type soc_camera_bus_type; | 23 | extern struct bus_type soc_camera_bus_type; |
| @@ -29,6 +30,8 @@ struct soc_camera_device { | |||
| 29 | struct device *pdev; /* Platform device */ | 30 | struct device *pdev; /* Platform device */ |
| 30 | s32 user_width; | 31 | s32 user_width; |
| 31 | s32 user_height; | 32 | s32 user_height; |
| 33 | u32 bytesperline; /* for padding, zero if unused */ | ||
| 34 | u32 sizeimage; | ||
| 32 | enum v4l2_colorspace colorspace; | 35 | enum v4l2_colorspace colorspace; |
| 33 | unsigned char iface; /* Host number */ | 36 | unsigned char iface; /* Host number */ |
| 34 | unsigned char devnum; /* Device number per host */ | 37 | unsigned char devnum; /* Device number per host */ |
| @@ -44,7 +47,10 @@ struct soc_camera_device { | |||
| 44 | int use_count; | 47 | int use_count; |
| 45 | struct mutex video_lock; /* Protects device data */ | 48 | struct mutex video_lock; /* Protects device data */ |
| 46 | struct file *streamer; /* stream owner */ | 49 | struct file *streamer; /* stream owner */ |
| 47 | struct videobuf_queue vb_vidq; | 50 | union { |
| 51 | struct videobuf_queue vb_vidq; | ||
| 52 | struct vb2_queue vb2_vidq; | ||
| 53 | }; | ||
| 48 | }; | 54 | }; |
| 49 | 55 | ||
| 50 | struct soc_camera_host { | 56 | struct soc_camera_host { |
| @@ -78,6 +84,8 @@ struct soc_camera_host_ops { | |||
| 78 | int (*try_fmt)(struct soc_camera_device *, struct v4l2_format *); | 84 | int (*try_fmt)(struct soc_camera_device *, struct v4l2_format *); |
| 79 | void (*init_videobuf)(struct videobuf_queue *, | 85 | void (*init_videobuf)(struct videobuf_queue *, |
| 80 | struct soc_camera_device *); | 86 | struct soc_camera_device *); |
| 87 | int (*init_videobuf2)(struct vb2_queue *, | ||
| 88 | struct soc_camera_device *); | ||
| 81 | int (*reqbufs)(struct soc_camera_device *, struct v4l2_requestbuffers *); | 89 | int (*reqbufs)(struct soc_camera_device *, struct v4l2_requestbuffers *); |
| 82 | int (*querycap)(struct soc_camera_host *, struct v4l2_capability *); | 90 | int (*querycap)(struct soc_camera_host *, struct v4l2_capability *); |
| 83 | int (*set_bus_param)(struct soc_camera_device *, __u32); | 91 | int (*set_bus_param)(struct soc_camera_device *, __u32); |
| @@ -85,6 +93,7 @@ struct soc_camera_host_ops { | |||
| 85 | int (*set_ctrl)(struct soc_camera_device *, struct v4l2_control *); | 93 | int (*set_ctrl)(struct soc_camera_device *, struct v4l2_control *); |
| 86 | int (*get_parm)(struct soc_camera_device *, struct v4l2_streamparm *); | 94 | int (*get_parm)(struct soc_camera_device *, struct v4l2_streamparm *); |
| 87 | int (*set_parm)(struct soc_camera_device *, struct v4l2_streamparm *); | 95 | int (*set_parm)(struct soc_camera_device *, struct v4l2_streamparm *); |
| 96 | int (*enum_fsizes)(struct soc_camera_device *, struct v4l2_frmsizeenum *); | ||
| 88 | unsigned int (*poll)(struct file *, poll_table *); | 97 | unsigned int (*poll)(struct file *, poll_table *); |
| 89 | const struct v4l2_queryctrl *controls; | 98 | const struct v4l2_queryctrl *controls; |
| 90 | int num_controls; | 99 | int num_controls; |
| @@ -299,4 +308,17 @@ static inline struct video_device *soc_camera_i2c_to_vdev(struct i2c_client *cli | |||
| 299 | return icd->vdev; | 308 | return icd->vdev; |
| 300 | } | 309 | } |
| 301 | 310 | ||
| 311 | static inline struct soc_camera_device *soc_camera_from_vb2q(struct vb2_queue *vq) | ||
| 312 | { | ||
| 313 | return container_of(vq, struct soc_camera_device, vb2_vidq); | ||
| 314 | } | ||
| 315 | |||
| 316 | static inline struct soc_camera_device *soc_camera_from_vbq(struct videobuf_queue *vq) | ||
| 317 | { | ||
| 318 | return container_of(vq, struct soc_camera_device, vb_vidq); | ||
| 319 | } | ||
| 320 | |||
| 321 | void soc_camera_lock(struct vb2_queue *vq); | ||
| 322 | void soc_camera_unlock(struct vb2_queue *vq); | ||
| 323 | |||
| 302 | #endif | 324 | #endif |
diff --git a/include/media/soc_mediabus.h b/include/media/soc_mediabus.h index 037cd7be001e..b338108ec305 100644 --- a/include/media/soc_mediabus.h +++ b/include/media/soc_mediabus.h | |||
| @@ -12,8 +12,7 @@ | |||
| 12 | #define SOC_MEDIABUS_H | 12 | #define SOC_MEDIABUS_H |
| 13 | 13 | ||
| 14 | #include <linux/videodev2.h> | 14 | #include <linux/videodev2.h> |
| 15 | 15 | #include <linux/v4l2-mediabus.h> | |
| 16 | #include <media/v4l2-mediabus.h> | ||
| 17 | 16 | ||
| 18 | /** | 17 | /** |
| 19 | * enum soc_mbus_packing - data packing types on the media-bus | 18 | * enum soc_mbus_packing - data packing types on the media-bus |
| @@ -61,5 +60,6 @@ struct soc_mbus_pixelfmt { | |||
| 61 | const struct soc_mbus_pixelfmt *soc_mbus_get_fmtdesc( | 60 | const struct soc_mbus_pixelfmt *soc_mbus_get_fmtdesc( |
| 62 | enum v4l2_mbus_pixelcode code); | 61 | enum v4l2_mbus_pixelcode code); |
| 63 | s32 soc_mbus_bytes_per_line(u32 width, const struct soc_mbus_pixelfmt *mf); | 62 | s32 soc_mbus_bytes_per_line(u32 width, const struct soc_mbus_pixelfmt *mf); |
| 63 | int soc_mbus_samples_per_pixel(const struct soc_mbus_pixelfmt *mf); | ||
| 64 | 64 | ||
| 65 | #endif | 65 | #endif |
diff --git a/include/media/tuner.h b/include/media/tuner.h index 51811eac46f1..963e33471835 100644 --- a/include/media/tuner.h +++ b/include/media/tuner.h | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | 21 | ||
| 22 | #ifndef _TUNER_H | 22 | #ifndef _TUNER_H |
| 23 | #define _TUNER_H | 23 | #define _TUNER_H |
| 24 | #ifdef __KERNEL__ | ||
| 24 | 25 | ||
| 25 | #include <linux/videodev2.h> | 26 | #include <linux/videodev2.h> |
| 26 | 27 | ||
| @@ -131,6 +132,7 @@ | |||
| 131 | #define TUNER_NXP_TDA18271 83 | 132 | #define TUNER_NXP_TDA18271 83 |
| 132 | #define TUNER_SONY_BTF_PXN01Z 84 | 133 | #define TUNER_SONY_BTF_PXN01Z 84 |
| 133 | #define TUNER_PHILIPS_FQ1236_MK5 85 /* NTSC, TDA9885, no FM radio */ | 134 | #define TUNER_PHILIPS_FQ1236_MK5 85 /* NTSC, TDA9885, no FM radio */ |
| 135 | #define TUNER_TENA_TNF_5337 86 | ||
| 134 | 136 | ||
| 135 | /* tv card specific */ | 137 | /* tv card specific */ |
| 136 | #define TDA9887_PRESENT (1<<0) | 138 | #define TDA9887_PRESENT (1<<0) |
| @@ -156,14 +158,10 @@ | |||
| 156 | #define TDA9887_GAIN_NORMAL (1<<20) | 158 | #define TDA9887_GAIN_NORMAL (1<<20) |
| 157 | #define TDA9887_RIF_41_3 (1<<21) /* radio IF1 41.3 vs 33.3 */ | 159 | #define TDA9887_RIF_41_3 (1<<21) /* radio IF1 41.3 vs 33.3 */ |
| 158 | 160 | ||
| 159 | #ifdef __KERNEL__ | ||
| 160 | |||
| 161 | enum tuner_mode { | 161 | enum tuner_mode { |
| 162 | T_UNINITIALIZED = 0, | ||
| 163 | T_RADIO = 1 << V4L2_TUNER_RADIO, | 162 | T_RADIO = 1 << V4L2_TUNER_RADIO, |
| 164 | T_ANALOG_TV = 1 << V4L2_TUNER_ANALOG_TV, | 163 | T_ANALOG_TV = 1 << V4L2_TUNER_ANALOG_TV, |
| 165 | T_DIGITAL_TV = 1 << V4L2_TUNER_DIGITAL_TV, | 164 | /* Don't need to map V4L2_TUNER_DIGITAL_TV, as tuner-core won't use it */ |
| 166 | T_STANDBY = 1 << 31 | ||
| 167 | }; | 165 | }; |
| 168 | 166 | ||
| 169 | /* Older boards only had a single tuner device. Nowadays multiple tuner | 167 | /* Older boards only had a single tuner device. Nowadays multiple tuner |
| @@ -193,11 +191,3 @@ struct tuner_setup { | |||
| 193 | #endif /* __KERNEL__ */ | 191 | #endif /* __KERNEL__ */ |
| 194 | 192 | ||
| 195 | #endif /* _TUNER_H */ | 193 | #endif /* _TUNER_H */ |
| 196 | |||
| 197 | /* | ||
| 198 | * Overrides for Emacs so that we follow Linus's tabbing style. | ||
| 199 | * --------------------------------------------------------------------------- | ||
| 200 | * Local variables: | ||
| 201 | * c-basic-offset: 8 | ||
| 202 | * End: | ||
| 203 | */ | ||
diff --git a/include/media/v4l2-chip-ident.h b/include/media/v4l2-chip-ident.h index 44fe44ec9ea7..b3edb67a8311 100644 --- a/include/media/v4l2-chip-ident.h +++ b/include/media/v4l2-chip-ident.h | |||
| @@ -75,6 +75,7 @@ enum { | |||
| 75 | V4L2_IDENT_OV9640 = 257, | 75 | V4L2_IDENT_OV9640 = 257, |
| 76 | V4L2_IDENT_OV6650 = 258, | 76 | V4L2_IDENT_OV6650 = 258, |
| 77 | V4L2_IDENT_OV2640 = 259, | 77 | V4L2_IDENT_OV2640 = 259, |
| 78 | V4L2_IDENT_OV9740 = 260, | ||
| 78 | 79 | ||
| 79 | /* module saa7146: reserved range 300-309 */ | 80 | /* module saa7146: reserved range 300-309 */ |
| 80 | V4L2_IDENT_SAA7146 = 300, | 81 | V4L2_IDENT_SAA7146 = 300, |
| @@ -209,6 +210,9 @@ enum { | |||
| 209 | /* module sn9c20x: just ident 10000 */ | 210 | /* module sn9c20x: just ident 10000 */ |
| 210 | V4L2_IDENT_SN9C20X = 10000, | 211 | V4L2_IDENT_SN9C20X = 10000, |
| 211 | 212 | ||
| 213 | /* Siliconfile sensors: reserved range 10100 - 10199 */ | ||
| 214 | V4L2_IDENT_NOON010PC30 = 10100, | ||
| 215 | |||
| 212 | /* module cx231xx and cx25840 */ | 216 | /* module cx231xx and cx25840 */ |
| 213 | V4L2_IDENT_CX2310X_AV = 23099, /* Integrated A/V decoder; not in '100 */ | 217 | V4L2_IDENT_CX2310X_AV = 23099, /* Integrated A/V decoder; not in '100 */ |
| 214 | V4L2_IDENT_CX23100 = 23100, | 218 | V4L2_IDENT_CX23100 = 23100, |
diff --git a/include/media/v4l2-common.h b/include/media/v4l2-common.h index 2d65b35cdab2..a298ec49ddc4 100644 --- a/include/media/v4l2-common.h +++ b/include/media/v4l2-common.h | |||
| @@ -80,21 +80,6 @@ | |||
| 80 | 80 | ||
| 81 | /* ------------------------------------------------------------------------- */ | 81 | /* ------------------------------------------------------------------------- */ |
| 82 | 82 | ||
| 83 | /* Priority helper functions */ | ||
| 84 | |||
| 85 | struct v4l2_prio_state { | ||
| 86 | atomic_t prios[4]; | ||
| 87 | }; | ||
| 88 | void v4l2_prio_init(struct v4l2_prio_state *global); | ||
| 89 | int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local, | ||
| 90 | enum v4l2_priority new); | ||
| 91 | void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
| 92 | void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local); | ||
| 93 | enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global); | ||
| 94 | int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local); | ||
| 95 | |||
| 96 | /* ------------------------------------------------------------------------- */ | ||
| 97 | |||
| 98 | /* Control helper functions */ | 83 | /* Control helper functions */ |
| 99 | 84 | ||
| 100 | int v4l2_ctrl_check(struct v4l2_ext_control *ctrl, struct v4l2_queryctrl *qctrl, | 85 | int v4l2_ctrl_check(struct v4l2_ext_control *ctrl, struct v4l2_queryctrl *qctrl, |
| @@ -138,21 +123,10 @@ struct v4l2_subdev_ops; | |||
| 138 | 123 | ||
| 139 | /* Load an i2c module and return an initialized v4l2_subdev struct. | 124 | /* Load an i2c module and return an initialized v4l2_subdev struct. |
| 140 | The client_type argument is the name of the chip that's on the adapter. */ | 125 | The client_type argument is the name of the chip that's on the adapter. */ |
| 141 | struct v4l2_subdev *v4l2_i2c_new_subdev_cfg(struct v4l2_device *v4l2_dev, | 126 | struct v4l2_subdev *v4l2_i2c_new_subdev(struct v4l2_device *v4l2_dev, |
| 142 | struct i2c_adapter *adapter, const char *client_type, | 127 | struct i2c_adapter *adapter, const char *client_type, |
| 143 | int irq, void *platform_data, | ||
| 144 | u8 addr, const unsigned short *probe_addrs); | 128 | u8 addr, const unsigned short *probe_addrs); |
| 145 | 129 | ||
| 146 | /* Load an i2c module and return an initialized v4l2_subdev struct. | ||
| 147 | The client_type argument is the name of the chip that's on the adapter. */ | ||
| 148 | static inline struct v4l2_subdev *v4l2_i2c_new_subdev(struct v4l2_device *v4l2_dev, | ||
| 149 | struct i2c_adapter *adapter, const char *client_type, | ||
| 150 | u8 addr, const unsigned short *probe_addrs) | ||
| 151 | { | ||
| 152 | return v4l2_i2c_new_subdev_cfg(v4l2_dev, adapter, client_type, 0, NULL, | ||
| 153 | addr, probe_addrs); | ||
| 154 | } | ||
| 155 | |||
| 156 | struct i2c_board_info; | 130 | struct i2c_board_info; |
| 157 | 131 | ||
| 158 | struct v4l2_subdev *v4l2_i2c_new_subdev_board(struct v4l2_device *v4l2_dev, | 132 | struct v4l2_subdev *v4l2_i2c_new_subdev_board(struct v4l2_device *v4l2_dev, |
diff --git a/include/media/v4l2-ctrls.h b/include/media/v4l2-ctrls.h index d69ab4aae032..97d063837b61 100644 --- a/include/media/v4l2-ctrls.h +++ b/include/media/v4l2-ctrls.h | |||
| @@ -23,6 +23,7 @@ | |||
| 23 | 23 | ||
| 24 | #include <linux/list.h> | 24 | #include <linux/list.h> |
| 25 | #include <linux/device.h> | 25 | #include <linux/device.h> |
| 26 | #include <linux/videodev2.h> | ||
| 26 | 27 | ||
| 27 | /* forward references */ | 28 | /* forward references */ |
| 28 | struct v4l2_ctrl_handler; | 29 | struct v4l2_ctrl_handler; |
| @@ -53,8 +54,10 @@ struct v4l2_ctrl_ops { | |||
| 53 | * @handler: The handler that owns the control. | 54 | * @handler: The handler that owns the control. |
| 54 | * @cluster: Point to start of cluster array. | 55 | * @cluster: Point to start of cluster array. |
| 55 | * @ncontrols: Number of controls in cluster array. | 56 | * @ncontrols: Number of controls in cluster array. |
| 56 | * @has_new: Internal flag: set when there is a valid new value. | ||
| 57 | * @done: Internal flag: set for each processed control. | 57 | * @done: Internal flag: set for each processed control. |
| 58 | * @is_new: Set when the user specified a new value for this control. It | ||
| 59 | * is also set when called from v4l2_ctrl_handler_setup. Drivers | ||
| 60 | * should never set this flag. | ||
| 58 | * @is_private: If set, then this control is private to its handler and it | 61 | * @is_private: If set, then this control is private to its handler and it |
| 59 | * will not be added to any other handlers. Drivers can set | 62 | * will not be added to any other handlers. Drivers can set |
| 60 | * this flag. | 63 | * this flag. |
| @@ -97,9 +100,9 @@ struct v4l2_ctrl { | |||
| 97 | struct v4l2_ctrl_handler *handler; | 100 | struct v4l2_ctrl_handler *handler; |
| 98 | struct v4l2_ctrl **cluster; | 101 | struct v4l2_ctrl **cluster; |
| 99 | unsigned ncontrols; | 102 | unsigned ncontrols; |
| 100 | unsigned int has_new:1; | ||
| 101 | unsigned int done:1; | 103 | unsigned int done:1; |
| 102 | 104 | ||
| 105 | unsigned int is_new:1; | ||
| 103 | unsigned int is_private:1; | 106 | unsigned int is_private:1; |
| 104 | unsigned int is_volatile:1; | 107 | unsigned int is_volatile:1; |
| 105 | 108 | ||
diff --git a/include/media/v4l2-dev.h b/include/media/v4l2-dev.h index 15802a067a12..8266d5ade2ff 100644 --- a/include/media/v4l2-dev.h +++ b/include/media/v4l2-dev.h | |||
| @@ -16,12 +16,15 @@ | |||
| 16 | #include <linux/mutex.h> | 16 | #include <linux/mutex.h> |
| 17 | #include <linux/videodev2.h> | 17 | #include <linux/videodev2.h> |
| 18 | 18 | ||
| 19 | #include <media/media-entity.h> | ||
| 20 | |||
| 19 | #define VIDEO_MAJOR 81 | 21 | #define VIDEO_MAJOR 81 |
| 20 | 22 | ||
| 21 | #define VFL_TYPE_GRABBER 0 | 23 | #define VFL_TYPE_GRABBER 0 |
| 22 | #define VFL_TYPE_VBI 1 | 24 | #define VFL_TYPE_VBI 1 |
| 23 | #define VFL_TYPE_RADIO 2 | 25 | #define VFL_TYPE_RADIO 2 |
| 24 | #define VFL_TYPE_MAX 3 | 26 | #define VFL_TYPE_SUBDEV 3 |
| 27 | #define VFL_TYPE_MAX 4 | ||
| 25 | 28 | ||
| 26 | struct v4l2_ioctl_callbacks; | 29 | struct v4l2_ioctl_callbacks; |
| 27 | struct video_device; | 30 | struct video_device; |
| @@ -32,7 +35,25 @@ struct v4l2_ctrl_handler; | |||
| 32 | Drivers can clear this flag if they want to block all future | 35 | Drivers can clear this flag if they want to block all future |
| 33 | device access. It is cleared by video_unregister_device. */ | 36 | device access. It is cleared by video_unregister_device. */ |
| 34 | #define V4L2_FL_REGISTERED (0) | 37 | #define V4L2_FL_REGISTERED (0) |
| 38 | /* file->private_data points to struct v4l2_fh */ | ||
| 35 | #define V4L2_FL_USES_V4L2_FH (1) | 39 | #define V4L2_FL_USES_V4L2_FH (1) |
| 40 | /* Use the prio field of v4l2_fh for core priority checking */ | ||
| 41 | #define V4L2_FL_USE_FH_PRIO (2) | ||
| 42 | |||
| 43 | /* Priority helper functions */ | ||
| 44 | |||
| 45 | struct v4l2_prio_state { | ||
| 46 | atomic_t prios[4]; | ||
| 47 | }; | ||
| 48 | |||
| 49 | void v4l2_prio_init(struct v4l2_prio_state *global); | ||
| 50 | int v4l2_prio_change(struct v4l2_prio_state *global, enum v4l2_priority *local, | ||
| 51 | enum v4l2_priority new); | ||
| 52 | void v4l2_prio_open(struct v4l2_prio_state *global, enum v4l2_priority *local); | ||
| 53 | void v4l2_prio_close(struct v4l2_prio_state *global, enum v4l2_priority local); | ||
| 54 | enum v4l2_priority v4l2_prio_max(struct v4l2_prio_state *global); | ||
| 55 | int v4l2_prio_check(struct v4l2_prio_state *global, enum v4l2_priority local); | ||
| 56 | |||
| 36 | 57 | ||
| 37 | struct v4l2_file_operations { | 58 | struct v4l2_file_operations { |
| 38 | struct module *owner; | 59 | struct module *owner; |
| @@ -54,6 +75,9 @@ struct v4l2_file_operations { | |||
| 54 | 75 | ||
| 55 | struct video_device | 76 | struct video_device |
| 56 | { | 77 | { |
| 78 | #if defined(CONFIG_MEDIA_CONTROLLER) | ||
| 79 | struct media_entity entity; | ||
| 80 | #endif | ||
| 57 | /* device ops */ | 81 | /* device ops */ |
| 58 | const struct v4l2_file_operations *fops; | 82 | const struct v4l2_file_operations *fops; |
| 59 | 83 | ||
| @@ -68,6 +92,9 @@ struct video_device | |||
| 68 | /* Control handler associated with this device node. May be NULL. */ | 92 | /* Control handler associated with this device node. May be NULL. */ |
| 69 | struct v4l2_ctrl_handler *ctrl_handler; | 93 | struct v4l2_ctrl_handler *ctrl_handler; |
| 70 | 94 | ||
| 95 | /* Priority state. If NULL, then v4l2_dev->prio will be used. */ | ||
| 96 | struct v4l2_prio_state *prio; | ||
| 97 | |||
| 71 | /* device info */ | 98 | /* device info */ |
| 72 | char name[32]; | 99 | char name[32]; |
| 73 | int vfl_type; | 100 | int vfl_type; |
| @@ -99,18 +126,31 @@ struct video_device | |||
| 99 | struct mutex *lock; | 126 | struct mutex *lock; |
| 100 | }; | 127 | }; |
| 101 | 128 | ||
| 129 | #define media_entity_to_video_device(entity) \ | ||
| 130 | container_of(entity, struct video_device, entity) | ||
| 102 | /* dev to video-device */ | 131 | /* dev to video-device */ |
| 103 | #define to_video_device(cd) container_of(cd, struct video_device, dev) | 132 | #define to_video_device(cd) container_of(cd, struct video_device, dev) |
| 104 | 133 | ||
| 134 | int __must_check __video_register_device(struct video_device *vdev, int type, | ||
| 135 | int nr, int warn_if_nr_in_use, struct module *owner); | ||
| 136 | |||
| 105 | /* Register video devices. Note that if video_register_device fails, | 137 | /* Register video devices. Note that if video_register_device fails, |
| 106 | the release() callback of the video_device structure is *not* called, so | 138 | the release() callback of the video_device structure is *not* called, so |
| 107 | the caller is responsible for freeing any data. Usually that means that | 139 | the caller is responsible for freeing any data. Usually that means that |
| 108 | you call video_device_release() on failure. */ | 140 | you call video_device_release() on failure. */ |
| 109 | int __must_check video_register_device(struct video_device *vdev, int type, int nr); | 141 | static inline int __must_check video_register_device(struct video_device *vdev, |
| 142 | int type, int nr) | ||
| 143 | { | ||
| 144 | return __video_register_device(vdev, type, nr, 1, vdev->fops->owner); | ||
| 145 | } | ||
| 110 | 146 | ||
| 111 | /* Same as video_register_device, but no warning is issued if the desired | 147 | /* Same as video_register_device, but no warning is issued if the desired |
| 112 | device node number was already in use. */ | 148 | device node number was already in use. */ |
| 113 | int __must_check video_register_device_no_warn(struct video_device *vdev, int type, int nr); | 149 | static inline int __must_check video_register_device_no_warn( |
| 150 | struct video_device *vdev, int type, int nr) | ||
| 151 | { | ||
| 152 | return __video_register_device(vdev, type, nr, 0, vdev->fops->owner); | ||
| 153 | } | ||
| 114 | 154 | ||
| 115 | /* Unregister video devices. Will do nothing if vdev == NULL or | 155 | /* Unregister video devices. Will do nothing if vdev == NULL or |
| 116 | video_is_registered() returns false. */ | 156 | video_is_registered() returns false. */ |
diff --git a/include/media/v4l2-device.h b/include/media/v4l2-device.h index b16f307d471a..bd102cf509ac 100644 --- a/include/media/v4l2-device.h +++ b/include/media/v4l2-device.h | |||
| @@ -21,7 +21,9 @@ | |||
| 21 | #ifndef _V4L2_DEVICE_H | 21 | #ifndef _V4L2_DEVICE_H |
| 22 | #define _V4L2_DEVICE_H | 22 | #define _V4L2_DEVICE_H |
| 23 | 23 | ||
| 24 | #include <media/media-device.h> | ||
| 24 | #include <media/v4l2-subdev.h> | 25 | #include <media/v4l2-subdev.h> |
| 26 | #include <media/v4l2-dev.h> | ||
| 25 | 27 | ||
| 26 | /* Each instance of a V4L2 device should create the v4l2_device struct, | 28 | /* Each instance of a V4L2 device should create the v4l2_device struct, |
| 27 | either stand-alone or embedded in a larger struct. | 29 | either stand-alone or embedded in a larger struct. |
| @@ -39,6 +41,9 @@ struct v4l2_device { | |||
| 39 | Note: dev might be NULL if there is no parent device | 41 | Note: dev might be NULL if there is no parent device |
| 40 | as is the case with e.g. ISA devices. */ | 42 | as is the case with e.g. ISA devices. */ |
| 41 | struct device *dev; | 43 | struct device *dev; |
| 44 | #if defined(CONFIG_MEDIA_CONTROLLER) | ||
| 45 | struct media_device *mdev; | ||
| 46 | #endif | ||
| 42 | /* used to keep track of the registered subdevs */ | 47 | /* used to keep track of the registered subdevs */ |
| 43 | struct list_head subdevs; | 48 | struct list_head subdevs; |
| 44 | /* lock this struct; can be used by the driver as well if this | 49 | /* lock this struct; can be used by the driver as well if this |
| @@ -51,10 +56,23 @@ struct v4l2_device { | |||
| 51 | unsigned int notification, void *arg); | 56 | unsigned int notification, void *arg); |
| 52 | /* The control handler. May be NULL. */ | 57 | /* The control handler. May be NULL. */ |
| 53 | struct v4l2_ctrl_handler *ctrl_handler; | 58 | struct v4l2_ctrl_handler *ctrl_handler; |
| 59 | /* Device's priority state */ | ||
| 60 | struct v4l2_prio_state prio; | ||
| 54 | /* BKL replacement mutex. Temporary solution only. */ | 61 | /* BKL replacement mutex. Temporary solution only. */ |
| 55 | struct mutex ioctl_lock; | 62 | struct mutex ioctl_lock; |
| 63 | /* Keep track of the references to this struct. */ | ||
| 64 | struct kref ref; | ||
| 65 | /* Release function that is called when the ref count goes to 0. */ | ||
| 66 | void (*release)(struct v4l2_device *v4l2_dev); | ||
| 56 | }; | 67 | }; |
| 57 | 68 | ||
| 69 | static inline void v4l2_device_get(struct v4l2_device *v4l2_dev) | ||
| 70 | { | ||
| 71 | kref_get(&v4l2_dev->ref); | ||
| 72 | } | ||
| 73 | |||
| 74 | int v4l2_device_put(struct v4l2_device *v4l2_dev); | ||
| 75 | |||
| 58 | /* Initialize v4l2_dev and make dev->driver_data point to v4l2_dev. | 76 | /* Initialize v4l2_dev and make dev->driver_data point to v4l2_dev. |
| 59 | dev may be NULL in rare cases (ISA devices). In that case you | 77 | dev may be NULL in rare cases (ISA devices). In that case you |
| 60 | must fill in the v4l2_dev->name field before calling this function. */ | 78 | must fill in the v4l2_dev->name field before calling this function. */ |
| @@ -96,6 +114,12 @@ int __must_check v4l2_device_register_subdev(struct v4l2_device *v4l2_dev, | |||
| 96 | wasn't registered. In that case it will do nothing. */ | 114 | wasn't registered. In that case it will do nothing. */ |
| 97 | void v4l2_device_unregister_subdev(struct v4l2_subdev *sd); | 115 | void v4l2_device_unregister_subdev(struct v4l2_subdev *sd); |
| 98 | 116 | ||
| 117 | /* Register device nodes for all subdev of the v4l2 device that are marked with | ||
| 118 | * the V4L2_SUBDEV_FL_HAS_DEVNODE flag. | ||
| 119 | */ | ||
| 120 | int __must_check | ||
| 121 | v4l2_device_register_subdev_nodes(struct v4l2_device *v4l2_dev); | ||
| 122 | |||
| 99 | /* Iterate over all subdevs. */ | 123 | /* Iterate over all subdevs. */ |
| 100 | #define v4l2_device_for_each_subdev(sd, v4l2_dev) \ | 124 | #define v4l2_device_for_each_subdev(sd, v4l2_dev) \ |
| 101 | list_for_each_entry(sd, &(v4l2_dev)->subdevs, list) | 125 | list_for_each_entry(sd, &(v4l2_dev)->subdevs, list) |
diff --git a/include/media/v4l2-fh.h b/include/media/v4l2-fh.h index 1d72dde320bf..0206aa55be24 100644 --- a/include/media/v4l2-fh.h +++ b/include/media/v4l2-fh.h | |||
| @@ -35,6 +35,7 @@ struct v4l2_fh { | |||
| 35 | struct list_head list; | 35 | struct list_head list; |
| 36 | struct video_device *vdev; | 36 | struct video_device *vdev; |
| 37 | struct v4l2_events *events; /* events, pending and subscribed */ | 37 | struct v4l2_events *events; /* events, pending and subscribed */ |
| 38 | enum v4l2_priority prio; | ||
| 38 | }; | 39 | }; |
| 39 | 40 | ||
| 40 | /* | 41 | /* |
| @@ -50,8 +51,16 @@ int v4l2_fh_init(struct v4l2_fh *fh, struct video_device *vdev); | |||
| 50 | */ | 51 | */ |
| 51 | void v4l2_fh_add(struct v4l2_fh *fh); | 52 | void v4l2_fh_add(struct v4l2_fh *fh); |
| 52 | /* | 53 | /* |
| 54 | * Can be used as the open() op of v4l2_file_operations. | ||
| 55 | * It allocates a v4l2_fh and inits and adds it to the video_device associated | ||
| 56 | * with the file pointer. | ||
| 57 | */ | ||
| 58 | int v4l2_fh_open(struct file *filp); | ||
| 59 | /* | ||
| 53 | * Remove file handle from the list of file handles. Must be called in | 60 | * Remove file handle from the list of file handles. Must be called in |
| 54 | * v4l2_file_operations->release() handler if the driver uses v4l2_fh. | 61 | * v4l2_file_operations->release() handler if the driver uses v4l2_fh. |
| 62 | * On error filp->private_data will be NULL, otherwise it will point to | ||
| 63 | * the v4l2_fh struct. | ||
| 55 | */ | 64 | */ |
| 56 | void v4l2_fh_del(struct v4l2_fh *fh); | 65 | void v4l2_fh_del(struct v4l2_fh *fh); |
| 57 | /* | 66 | /* |
| @@ -61,5 +70,25 @@ void v4l2_fh_del(struct v4l2_fh *fh); | |||
| 61 | * driver uses v4l2_fh. | 70 | * driver uses v4l2_fh. |
| 62 | */ | 71 | */ |
| 63 | void v4l2_fh_exit(struct v4l2_fh *fh); | 72 | void v4l2_fh_exit(struct v4l2_fh *fh); |
| 73 | /* | ||
| 74 | * Can be used as the release() op of v4l2_file_operations. | ||
| 75 | * It deletes and exits the v4l2_fh associated with the file pointer and | ||
| 76 | * frees it. It will do nothing if filp->private_data (the pointer to the | ||
| 77 | * v4l2_fh struct) is NULL. This function always returns 0. | ||
| 78 | */ | ||
| 79 | int v4l2_fh_release(struct file *filp); | ||
| 80 | /* | ||
| 81 | * Returns 1 if this filehandle is the only filehandle opened for the | ||
| 82 | * associated video_device. If fh is NULL, then it returns 0. | ||
| 83 | */ | ||
| 84 | int v4l2_fh_is_singular(struct v4l2_fh *fh); | ||
| 85 | /* | ||
| 86 | * Helper function with struct file as argument. If filp->private_data is | ||
| 87 | * NULL, then it will return 0. | ||
| 88 | */ | ||
| 89 | static inline int v4l2_fh_is_singular_file(struct file *filp) | ||
| 90 | { | ||
| 91 | return v4l2_fh_is_singular(filp->private_data); | ||
| 92 | } | ||
| 64 | 93 | ||
| 65 | #endif /* V4L2_EVENT_H */ | 94 | #endif /* V4L2_EVENT_H */ |
diff --git a/include/media/v4l2-ioctl.h b/include/media/v4l2-ioctl.h index 67df37542c68..dd9f1e7b8ff7 100644 --- a/include/media/v4l2-ioctl.h +++ b/include/media/v4l2-ioctl.h | |||
| @@ -37,6 +37,10 @@ struct v4l2_ioctl_ops { | |||
| 37 | struct v4l2_fmtdesc *f); | 37 | struct v4l2_fmtdesc *f); |
| 38 | int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh, | 38 | int (*vidioc_enum_fmt_vid_out) (struct file *file, void *fh, |
| 39 | struct v4l2_fmtdesc *f); | 39 | struct v4l2_fmtdesc *f); |
| 40 | int (*vidioc_enum_fmt_vid_cap_mplane)(struct file *file, void *fh, | ||
| 41 | struct v4l2_fmtdesc *f); | ||
| 42 | int (*vidioc_enum_fmt_vid_out_mplane)(struct file *file, void *fh, | ||
| 43 | struct v4l2_fmtdesc *f); | ||
| 40 | int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh, | 44 | int (*vidioc_enum_fmt_type_private)(struct file *file, void *fh, |
| 41 | struct v4l2_fmtdesc *f); | 45 | struct v4l2_fmtdesc *f); |
| 42 | 46 | ||
| @@ -57,6 +61,10 @@ struct v4l2_ioctl_ops { | |||
| 57 | struct v4l2_format *f); | 61 | struct v4l2_format *f); |
| 58 | int (*vidioc_g_fmt_sliced_vbi_out)(struct file *file, void *fh, | 62 | int (*vidioc_g_fmt_sliced_vbi_out)(struct file *file, void *fh, |
| 59 | struct v4l2_format *f); | 63 | struct v4l2_format *f); |
| 64 | int (*vidioc_g_fmt_vid_cap_mplane)(struct file *file, void *fh, | ||
| 65 | struct v4l2_format *f); | ||
| 66 | int (*vidioc_g_fmt_vid_out_mplane)(struct file *file, void *fh, | ||
| 67 | struct v4l2_format *f); | ||
| 60 | int (*vidioc_g_fmt_type_private)(struct file *file, void *fh, | 68 | int (*vidioc_g_fmt_type_private)(struct file *file, void *fh, |
| 61 | struct v4l2_format *f); | 69 | struct v4l2_format *f); |
| 62 | 70 | ||
| @@ -77,6 +85,10 @@ struct v4l2_ioctl_ops { | |||
| 77 | struct v4l2_format *f); | 85 | struct v4l2_format *f); |
| 78 | int (*vidioc_s_fmt_sliced_vbi_out)(struct file *file, void *fh, | 86 | int (*vidioc_s_fmt_sliced_vbi_out)(struct file *file, void *fh, |
| 79 | struct v4l2_format *f); | 87 | struct v4l2_format *f); |
| 88 | int (*vidioc_s_fmt_vid_cap_mplane)(struct file *file, void *fh, | ||
| 89 | struct v4l2_format *f); | ||
| 90 | int (*vidioc_s_fmt_vid_out_mplane)(struct file *file, void *fh, | ||
| 91 | struct v4l2_format *f); | ||
| 80 | int (*vidioc_s_fmt_type_private)(struct file *file, void *fh, | 92 | int (*vidioc_s_fmt_type_private)(struct file *file, void *fh, |
| 81 | struct v4l2_format *f); | 93 | struct v4l2_format *f); |
| 82 | 94 | ||
| @@ -97,6 +109,10 @@ struct v4l2_ioctl_ops { | |||
| 97 | struct v4l2_format *f); | 109 | struct v4l2_format *f); |
| 98 | int (*vidioc_try_fmt_sliced_vbi_out)(struct file *file, void *fh, | 110 | int (*vidioc_try_fmt_sliced_vbi_out)(struct file *file, void *fh, |
| 99 | struct v4l2_format *f); | 111 | struct v4l2_format *f); |
| 112 | int (*vidioc_try_fmt_vid_cap_mplane)(struct file *file, void *fh, | ||
| 113 | struct v4l2_format *f); | ||
| 114 | int (*vidioc_try_fmt_vid_out_mplane)(struct file *file, void *fh, | ||
| 115 | struct v4l2_format *f); | ||
| 100 | int (*vidioc_try_fmt_type_private)(struct file *file, void *fh, | 116 | int (*vidioc_try_fmt_type_private)(struct file *file, void *fh, |
| 101 | struct v4l2_format *f); | 117 | struct v4l2_format *f); |
| 102 | 118 | ||
| @@ -254,7 +270,7 @@ struct v4l2_ioctl_ops { | |||
| 254 | 270 | ||
| 255 | /* For other private ioctls */ | 271 | /* For other private ioctls */ |
| 256 | long (*vidioc_default) (struct file *file, void *fh, | 272 | long (*vidioc_default) (struct file *file, void *fh, |
| 257 | int cmd, void *arg); | 273 | bool valid_prio, int cmd, void *arg); |
| 258 | }; | 274 | }; |
| 259 | 275 | ||
| 260 | 276 | ||
diff --git a/include/media/v4l2-mediabus.h b/include/media/v4l2-mediabus.h index 8e6559838ae3..971c7fa29614 100644 --- a/include/media/v4l2-mediabus.h +++ b/include/media/v4l2-mediabus.h | |||
| @@ -11,66 +11,7 @@ | |||
| 11 | #ifndef V4L2_MEDIABUS_H | 11 | #ifndef V4L2_MEDIABUS_H |
| 12 | #define V4L2_MEDIABUS_H | 12 | #define V4L2_MEDIABUS_H |
| 13 | 13 | ||
| 14 | /* | 14 | #include <linux/v4l2-mediabus.h> |
| 15 | * These pixel codes uniquely identify data formats on the media bus. Mostly | ||
| 16 | * they correspond to similarly named V4L2_PIX_FMT_* formats, format 0 is | ||
| 17 | * reserved, V4L2_MBUS_FMT_FIXED shall be used by host-client pairs, where the | ||
| 18 | * data format is fixed. Additionally, "2X8" means that one pixel is transferred | ||
| 19 | * in two 8-bit samples, "BE" or "LE" specify in which order those samples are | ||
| 20 | * transferred over the bus: "LE" means that the least significant bits are | ||
| 21 | * transferred first, "BE" means that the most significant bits are transferred | ||
| 22 | * first, and "PADHI" and "PADLO" define which bits - low or high, in the | ||
| 23 | * incomplete high byte, are filled with padding bits. | ||
| 24 | */ | ||
| 25 | enum v4l2_mbus_pixelcode { | ||
| 26 | V4L2_MBUS_FMT_FIXED = 1, | ||
| 27 | V4L2_MBUS_FMT_YUYV8_2X8, | ||
| 28 | V4L2_MBUS_FMT_YVYU8_2X8, | ||
| 29 | V4L2_MBUS_FMT_UYVY8_2X8, | ||
| 30 | V4L2_MBUS_FMT_VYUY8_2X8, | ||
| 31 | V4L2_MBUS_FMT_YVYU10_2X10, | ||
| 32 | V4L2_MBUS_FMT_YUYV10_2X10, | ||
| 33 | V4L2_MBUS_FMT_YVYU10_1X20, | ||
| 34 | V4L2_MBUS_FMT_YUYV10_1X20, | ||
| 35 | V4L2_MBUS_FMT_RGB444_2X8_PADHI_LE, | ||
| 36 | V4L2_MBUS_FMT_RGB444_2X8_PADHI_BE, | ||
| 37 | V4L2_MBUS_FMT_RGB555_2X8_PADHI_LE, | ||
| 38 | V4L2_MBUS_FMT_RGB555_2X8_PADHI_BE, | ||
| 39 | V4L2_MBUS_FMT_RGB565_2X8_LE, | ||
| 40 | V4L2_MBUS_FMT_RGB565_2X8_BE, | ||
| 41 | V4L2_MBUS_FMT_BGR565_2X8_LE, | ||
| 42 | V4L2_MBUS_FMT_BGR565_2X8_BE, | ||
| 43 | V4L2_MBUS_FMT_SBGGR8_1X8, | ||
| 44 | V4L2_MBUS_FMT_SBGGR10_1X10, | ||
| 45 | V4L2_MBUS_FMT_GREY8_1X8, | ||
| 46 | V4L2_MBUS_FMT_Y10_1X10, | ||
| 47 | V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_LE, | ||
| 48 | V4L2_MBUS_FMT_SBGGR10_2X8_PADLO_LE, | ||
| 49 | V4L2_MBUS_FMT_SBGGR10_2X8_PADHI_BE, | ||
| 50 | V4L2_MBUS_FMT_SBGGR10_2X8_PADLO_BE, | ||
| 51 | V4L2_MBUS_FMT_SGRBG8_1X8, | ||
| 52 | V4L2_MBUS_FMT_SBGGR12_1X12, | ||
| 53 | V4L2_MBUS_FMT_YUYV8_1_5X8, | ||
| 54 | V4L2_MBUS_FMT_YVYU8_1_5X8, | ||
| 55 | V4L2_MBUS_FMT_UYVY8_1_5X8, | ||
| 56 | V4L2_MBUS_FMT_VYUY8_1_5X8, | ||
| 57 | }; | ||
| 58 | |||
| 59 | /** | ||
| 60 | * struct v4l2_mbus_framefmt - frame format on the media bus | ||
| 61 | * @width: frame width | ||
| 62 | * @height: frame height | ||
| 63 | * @code: data format code | ||
| 64 | * @field: used interlacing type | ||
| 65 | * @colorspace: colorspace of the data | ||
| 66 | */ | ||
| 67 | struct v4l2_mbus_framefmt { | ||
| 68 | __u32 width; | ||
| 69 | __u32 height; | ||
| 70 | enum v4l2_mbus_pixelcode code; | ||
| 71 | enum v4l2_field field; | ||
| 72 | enum v4l2_colorspace colorspace; | ||
| 73 | }; | ||
| 74 | 15 | ||
| 75 | static inline void v4l2_fill_pix_format(struct v4l2_pix_format *pix_fmt, | 16 | static inline void v4l2_fill_pix_format(struct v4l2_pix_format *pix_fmt, |
| 76 | const struct v4l2_mbus_framefmt *mbus_fmt) | 17 | const struct v4l2_mbus_framefmt *mbus_fmt) |
diff --git a/include/media/v4l2-mem2mem.h b/include/media/v4l2-mem2mem.h index 8d149f1c58d0..16ac4733e80d 100644 --- a/include/media/v4l2-mem2mem.h +++ b/include/media/v4l2-mem2mem.h | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | * and destination. | 5 | * and destination. |
| 6 | * | 6 | * |
| 7 | * Copyright (c) 2009 Samsung Electronics Co., Ltd. | 7 | * Copyright (c) 2009 Samsung Electronics Co., Ltd. |
| 8 | * Pawel Osciak, <p.osciak@samsung.com> | 8 | * Pawel Osciak, <pawel@osciak.com> |
| 9 | * Marek Szyprowski, <m.szyprowski@samsung.com> | 9 | * Marek Szyprowski, <m.szyprowski@samsung.com> |
| 10 | * | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify | 11 | * This program is free software; you can redistribute it and/or modify |
| @@ -17,7 +17,7 @@ | |||
| 17 | #ifndef _MEDIA_V4L2_MEM2MEM_H | 17 | #ifndef _MEDIA_V4L2_MEM2MEM_H |
| 18 | #define _MEDIA_V4L2_MEM2MEM_H | 18 | #define _MEDIA_V4L2_MEM2MEM_H |
| 19 | 19 | ||
| 20 | #include <media/videobuf-core.h> | 20 | #include <media/videobuf2-core.h> |
| 21 | 21 | ||
| 22 | /** | 22 | /** |
| 23 | * struct v4l2_m2m_ops - mem-to-mem device driver callbacks | 23 | * struct v4l2_m2m_ops - mem-to-mem device driver callbacks |
| @@ -45,17 +45,20 @@ struct v4l2_m2m_ops { | |||
| 45 | void (*device_run)(void *priv); | 45 | void (*device_run)(void *priv); |
| 46 | int (*job_ready)(void *priv); | 46 | int (*job_ready)(void *priv); |
| 47 | void (*job_abort)(void *priv); | 47 | void (*job_abort)(void *priv); |
| 48 | void (*lock)(void *priv); | ||
| 49 | void (*unlock)(void *priv); | ||
| 48 | }; | 50 | }; |
| 49 | 51 | ||
| 50 | struct v4l2_m2m_dev; | 52 | struct v4l2_m2m_dev; |
| 51 | 53 | ||
| 52 | struct v4l2_m2m_queue_ctx { | 54 | struct v4l2_m2m_queue_ctx { |
| 53 | /* private: internal use only */ | 55 | /* private: internal use only */ |
| 54 | struct videobuf_queue q; | 56 | struct vb2_queue q; |
| 55 | 57 | ||
| 56 | /* Queue for buffers ready to be processed as soon as this | 58 | /* Queue for buffers ready to be processed as soon as this |
| 57 | * instance receives access to the device */ | 59 | * instance receives access to the device */ |
| 58 | struct list_head rdy_queue; | 60 | struct list_head rdy_queue; |
| 61 | spinlock_t rdy_spinlock; | ||
| 59 | u8 num_rdy; | 62 | u8 num_rdy; |
| 60 | }; | 63 | }; |
| 61 | 64 | ||
| @@ -72,19 +75,31 @@ struct v4l2_m2m_ctx { | |||
| 72 | /* For device job queue */ | 75 | /* For device job queue */ |
| 73 | struct list_head queue; | 76 | struct list_head queue; |
| 74 | unsigned long job_flags; | 77 | unsigned long job_flags; |
| 78 | wait_queue_head_t finished; | ||
| 75 | 79 | ||
| 76 | /* Instance private data */ | 80 | /* Instance private data */ |
| 77 | void *priv; | 81 | void *priv; |
| 78 | }; | 82 | }; |
| 79 | 83 | ||
| 84 | struct v4l2_m2m_buffer { | ||
| 85 | struct vb2_buffer vb; | ||
| 86 | struct list_head list; | ||
| 87 | }; | ||
| 88 | |||
| 80 | void *v4l2_m2m_get_curr_priv(struct v4l2_m2m_dev *m2m_dev); | 89 | void *v4l2_m2m_get_curr_priv(struct v4l2_m2m_dev *m2m_dev); |
| 81 | 90 | ||
| 82 | struct videobuf_queue *v4l2_m2m_get_vq(struct v4l2_m2m_ctx *m2m_ctx, | 91 | struct vb2_queue *v4l2_m2m_get_vq(struct v4l2_m2m_ctx *m2m_ctx, |
| 83 | enum v4l2_buf_type type); | 92 | enum v4l2_buf_type type); |
| 84 | 93 | ||
| 85 | void v4l2_m2m_job_finish(struct v4l2_m2m_dev *m2m_dev, | 94 | void v4l2_m2m_job_finish(struct v4l2_m2m_dev *m2m_dev, |
| 86 | struct v4l2_m2m_ctx *m2m_ctx); | 95 | struct v4l2_m2m_ctx *m2m_ctx); |
| 87 | 96 | ||
| 97 | static inline void | ||
| 98 | v4l2_m2m_buf_done(struct vb2_buffer *buf, enum vb2_buffer_state state) | ||
| 99 | { | ||
| 100 | vb2_buffer_done(buf, state); | ||
| 101 | } | ||
| 102 | |||
| 88 | int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, | 103 | int v4l2_m2m_reqbufs(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, |
| 89 | struct v4l2_requestbuffers *reqbufs); | 104 | struct v4l2_requestbuffers *reqbufs); |
| 90 | 105 | ||
| @@ -110,13 +125,13 @@ int v4l2_m2m_mmap(struct file *file, struct v4l2_m2m_ctx *m2m_ctx, | |||
| 110 | struct v4l2_m2m_dev *v4l2_m2m_init(struct v4l2_m2m_ops *m2m_ops); | 125 | struct v4l2_m2m_dev *v4l2_m2m_init(struct v4l2_m2m_ops *m2m_ops); |
| 111 | void v4l2_m2m_release(struct v4l2_m2m_dev *m2m_dev); | 126 | void v4l2_m2m_release(struct v4l2_m2m_dev *m2m_dev); |
| 112 | 127 | ||
| 113 | struct v4l2_m2m_ctx *v4l2_m2m_ctx_init(void *priv, struct v4l2_m2m_dev *m2m_dev, | 128 | struct v4l2_m2m_ctx *v4l2_m2m_ctx_init(struct v4l2_m2m_dev *m2m_dev, |
| 114 | void (*vq_init)(void *priv, struct videobuf_queue *, | 129 | void *drv_priv, |
| 115 | enum v4l2_buf_type)); | 130 | int (*queue_init)(void *priv, struct vb2_queue *src_vq, struct vb2_queue *dst_vq)); |
| 131 | |||
| 116 | void v4l2_m2m_ctx_release(struct v4l2_m2m_ctx *m2m_ctx); | 132 | void v4l2_m2m_ctx_release(struct v4l2_m2m_ctx *m2m_ctx); |
| 117 | 133 | ||
| 118 | void v4l2_m2m_buf_queue(struct v4l2_m2m_ctx *m2m_ctx, struct videobuf_queue *vq, | 134 | void v4l2_m2m_buf_queue(struct v4l2_m2m_ctx *m2m_ctx, struct vb2_buffer *vb); |
| 119 | struct videobuf_buffer *vb); | ||
| 120 | 135 | ||
| 121 | /** | 136 | /** |
| 122 | * v4l2_m2m_num_src_bufs_ready() - return the number of source buffers ready for | 137 | * v4l2_m2m_num_src_bufs_ready() - return the number of source buffers ready for |
| @@ -138,7 +153,7 @@ unsigned int v4l2_m2m_num_dst_bufs_ready(struct v4l2_m2m_ctx *m2m_ctx) | |||
| 138 | return m2m_ctx->out_q_ctx.num_rdy; | 153 | return m2m_ctx->out_q_ctx.num_rdy; |
| 139 | } | 154 | } |
| 140 | 155 | ||
| 141 | void *v4l2_m2m_next_buf(struct v4l2_m2m_ctx *m2m_ctx, enum v4l2_buf_type type); | 156 | void *v4l2_m2m_next_buf(struct v4l2_m2m_queue_ctx *q_ctx); |
| 142 | 157 | ||
| 143 | /** | 158 | /** |
| 144 | * v4l2_m2m_next_src_buf() - return next source buffer from the list of ready | 159 | * v4l2_m2m_next_src_buf() - return next source buffer from the list of ready |
| @@ -146,7 +161,7 @@ void *v4l2_m2m_next_buf(struct v4l2_m2m_ctx *m2m_ctx, enum v4l2_buf_type type); | |||
| 146 | */ | 161 | */ |
| 147 | static inline void *v4l2_m2m_next_src_buf(struct v4l2_m2m_ctx *m2m_ctx) | 162 | static inline void *v4l2_m2m_next_src_buf(struct v4l2_m2m_ctx *m2m_ctx) |
| 148 | { | 163 | { |
| 149 | return v4l2_m2m_next_buf(m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT); | 164 | return v4l2_m2m_next_buf(&m2m_ctx->out_q_ctx); |
| 150 | } | 165 | } |
| 151 | 166 | ||
| 152 | /** | 167 | /** |
| @@ -155,29 +170,28 @@ static inline void *v4l2_m2m_next_src_buf(struct v4l2_m2m_ctx *m2m_ctx) | |||
| 155 | */ | 170 | */ |
| 156 | static inline void *v4l2_m2m_next_dst_buf(struct v4l2_m2m_ctx *m2m_ctx) | 171 | static inline void *v4l2_m2m_next_dst_buf(struct v4l2_m2m_ctx *m2m_ctx) |
| 157 | { | 172 | { |
| 158 | return v4l2_m2m_next_buf(m2m_ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); | 173 | return v4l2_m2m_next_buf(&m2m_ctx->cap_q_ctx); |
| 159 | } | 174 | } |
| 160 | 175 | ||
| 161 | /** | 176 | /** |
| 162 | * v4l2_m2m_get_src_vq() - return videobuf_queue for source buffers | 177 | * v4l2_m2m_get_src_vq() - return vb2_queue for source buffers |
| 163 | */ | 178 | */ |
| 164 | static inline | 179 | static inline |
| 165 | struct videobuf_queue *v4l2_m2m_get_src_vq(struct v4l2_m2m_ctx *m2m_ctx) | 180 | struct vb2_queue *v4l2_m2m_get_src_vq(struct v4l2_m2m_ctx *m2m_ctx) |
| 166 | { | 181 | { |
| 167 | return v4l2_m2m_get_vq(m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT); | 182 | return &m2m_ctx->out_q_ctx.q; |
| 168 | } | 183 | } |
| 169 | 184 | ||
| 170 | /** | 185 | /** |
| 171 | * v4l2_m2m_get_dst_vq() - return videobuf_queue for destination buffers | 186 | * v4l2_m2m_get_dst_vq() - return vb2_queue for destination buffers |
| 172 | */ | 187 | */ |
| 173 | static inline | 188 | static inline |
| 174 | struct videobuf_queue *v4l2_m2m_get_dst_vq(struct v4l2_m2m_ctx *m2m_ctx) | 189 | struct vb2_queue *v4l2_m2m_get_dst_vq(struct v4l2_m2m_ctx *m2m_ctx) |
| 175 | { | 190 | { |
| 176 | return v4l2_m2m_get_vq(m2m_ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); | 191 | return &m2m_ctx->cap_q_ctx.q; |
| 177 | } | 192 | } |
| 178 | 193 | ||
| 179 | void *v4l2_m2m_buf_remove(struct v4l2_m2m_ctx *m2m_ctx, | 194 | void *v4l2_m2m_buf_remove(struct v4l2_m2m_queue_ctx *q_ctx); |
| 180 | enum v4l2_buf_type type); | ||
| 181 | 195 | ||
| 182 | /** | 196 | /** |
| 183 | * v4l2_m2m_src_buf_remove() - take off a source buffer from the list of ready | 197 | * v4l2_m2m_src_buf_remove() - take off a source buffer from the list of ready |
| @@ -185,7 +199,7 @@ void *v4l2_m2m_buf_remove(struct v4l2_m2m_ctx *m2m_ctx, | |||
| 185 | */ | 199 | */ |
| 186 | static inline void *v4l2_m2m_src_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) | 200 | static inline void *v4l2_m2m_src_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) |
| 187 | { | 201 | { |
| 188 | return v4l2_m2m_buf_remove(m2m_ctx, V4L2_BUF_TYPE_VIDEO_OUTPUT); | 202 | return v4l2_m2m_buf_remove(&m2m_ctx->out_q_ctx); |
| 189 | } | 203 | } |
| 190 | 204 | ||
| 191 | /** | 205 | /** |
| @@ -194,7 +208,7 @@ static inline void *v4l2_m2m_src_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) | |||
| 194 | */ | 208 | */ |
| 195 | static inline void *v4l2_m2m_dst_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) | 209 | static inline void *v4l2_m2m_dst_buf_remove(struct v4l2_m2m_ctx *m2m_ctx) |
| 196 | { | 210 | { |
| 197 | return v4l2_m2m_buf_remove(m2m_ctx, V4L2_BUF_TYPE_VIDEO_CAPTURE); | 211 | return v4l2_m2m_buf_remove(&m2m_ctx->cap_q_ctx); |
| 198 | } | 212 | } |
| 199 | 213 | ||
| 200 | #endif /* _MEDIA_V4L2_MEM2MEM_H */ | 214 | #endif /* _MEDIA_V4L2_MEM2MEM_H */ |
diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index b0316a7cf08d..1562c4ff3a65 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h | |||
| @@ -21,7 +21,11 @@ | |||
| 21 | #ifndef _V4L2_SUBDEV_H | 21 | #ifndef _V4L2_SUBDEV_H |
| 22 | #define _V4L2_SUBDEV_H | 22 | #define _V4L2_SUBDEV_H |
| 23 | 23 | ||
| 24 | #include <linux/v4l2-subdev.h> | ||
| 25 | #include <media/media-entity.h> | ||
| 24 | #include <media/v4l2-common.h> | 26 | #include <media/v4l2-common.h> |
| 27 | #include <media/v4l2-dev.h> | ||
| 28 | #include <media/v4l2-fh.h> | ||
| 25 | #include <media/v4l2-mediabus.h> | 29 | #include <media/v4l2-mediabus.h> |
| 26 | 30 | ||
| 27 | /* generic v4l2_device notify callback notification values */ | 31 | /* generic v4l2_device notify callback notification values */ |
| @@ -36,7 +40,10 @@ | |||
| 36 | 40 | ||
| 37 | struct v4l2_device; | 41 | struct v4l2_device; |
| 38 | struct v4l2_ctrl_handler; | 42 | struct v4l2_ctrl_handler; |
| 43 | struct v4l2_event_subscription; | ||
| 44 | struct v4l2_fh; | ||
| 39 | struct v4l2_subdev; | 45 | struct v4l2_subdev; |
| 46 | struct v4l2_subdev_fh; | ||
| 40 | struct tuner_setup; | 47 | struct tuner_setup; |
| 41 | 48 | ||
| 42 | /* decode_vbi_line */ | 49 | /* decode_vbi_line */ |
| @@ -106,10 +113,7 @@ struct v4l2_subdev_io_pin_config { | |||
| 106 | u8 strength; /* Pin drive strength */ | 113 | u8 strength; /* Pin drive strength */ |
| 107 | }; | 114 | }; |
| 108 | 115 | ||
| 109 | /* s_config: if set, then it is always called by the v4l2_i2c_new_subdev* | 116 | /* |
| 110 | functions after the v4l2_subdev was registered. It is used to pass | ||
| 111 | platform data to the subdev which can be used during initialization. | ||
| 112 | |||
| 113 | s_io_pin_config: configure one or more chip I/O pins for chips that | 117 | s_io_pin_config: configure one or more chip I/O pins for chips that |
| 114 | multiplex different internal signal pads out to IO pins. This function | 118 | multiplex different internal signal pads out to IO pins. This function |
| 115 | takes a pointer to an array of 'n' pin configuration entries, one for | 119 | takes a pointer to an array of 'n' pin configuration entries, one for |
| @@ -141,7 +145,6 @@ struct v4l2_subdev_io_pin_config { | |||
| 141 | struct v4l2_subdev_core_ops { | 145 | struct v4l2_subdev_core_ops { |
| 142 | int (*g_chip_ident)(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip); | 146 | int (*g_chip_ident)(struct v4l2_subdev *sd, struct v4l2_dbg_chip_ident *chip); |
| 143 | int (*log_status)(struct v4l2_subdev *sd); | 147 | int (*log_status)(struct v4l2_subdev *sd); |
| 144 | int (*s_config)(struct v4l2_subdev *sd, int irq, void *platform_data); | ||
| 145 | int (*s_io_pin_config)(struct v4l2_subdev *sd, size_t n, | 148 | int (*s_io_pin_config)(struct v4l2_subdev *sd, size_t n, |
| 146 | struct v4l2_subdev_io_pin_config *pincfg); | 149 | struct v4l2_subdev_io_pin_config *pincfg); |
| 147 | int (*init)(struct v4l2_subdev *sd, u32 val); | 150 | int (*init)(struct v4l2_subdev *sd, u32 val); |
| @@ -164,6 +167,10 @@ struct v4l2_subdev_core_ops { | |||
| 164 | int (*s_power)(struct v4l2_subdev *sd, int on); | 167 | int (*s_power)(struct v4l2_subdev *sd, int on); |
| 165 | int (*interrupt_service_routine)(struct v4l2_subdev *sd, | 168 | int (*interrupt_service_routine)(struct v4l2_subdev *sd, |
| 166 | u32 status, bool *handled); | 169 | u32 status, bool *handled); |
| 170 | int (*subscribe_event)(struct v4l2_subdev *sd, struct v4l2_fh *fh, | ||
| 171 | struct v4l2_event_subscription *sub); | ||
| 172 | int (*unsubscribe_event)(struct v4l2_subdev *sd, struct v4l2_fh *fh, | ||
| 173 | struct v4l2_event_subscription *sub); | ||
| 167 | }; | 174 | }; |
| 168 | 175 | ||
| 169 | /* s_mode: switch the tuner to a specific tuner mode. Replacement of s_radio. | 176 | /* s_mode: switch the tuner to a specific tuner mode. Replacement of s_radio. |
| @@ -261,6 +268,10 @@ struct v4l2_subdev_video_ops { | |||
| 261 | int (*s_crop)(struct v4l2_subdev *sd, struct v4l2_crop *crop); | 268 | int (*s_crop)(struct v4l2_subdev *sd, struct v4l2_crop *crop); |
| 262 | int (*g_parm)(struct v4l2_subdev *sd, struct v4l2_streamparm *param); | 269 | int (*g_parm)(struct v4l2_subdev *sd, struct v4l2_streamparm *param); |
| 263 | int (*s_parm)(struct v4l2_subdev *sd, struct v4l2_streamparm *param); | 270 | int (*s_parm)(struct v4l2_subdev *sd, struct v4l2_streamparm *param); |
| 271 | int (*g_frame_interval)(struct v4l2_subdev *sd, | ||
| 272 | struct v4l2_subdev_frame_interval *interval); | ||
| 273 | int (*s_frame_interval)(struct v4l2_subdev *sd, | ||
| 274 | struct v4l2_subdev_frame_interval *interval); | ||
| 264 | int (*enum_framesizes)(struct v4l2_subdev *sd, struct v4l2_frmsizeenum *fsize); | 275 | int (*enum_framesizes)(struct v4l2_subdev *sd, struct v4l2_frmsizeenum *fsize); |
| 265 | int (*enum_frameintervals)(struct v4l2_subdev *sd, struct v4l2_frmivalenum *fival); | 276 | int (*enum_frameintervals)(struct v4l2_subdev *sd, struct v4l2_frmivalenum *fival); |
| 266 | int (*enum_dv_presets) (struct v4l2_subdev *sd, | 277 | int (*enum_dv_presets) (struct v4l2_subdev *sd, |
| @@ -275,6 +286,8 @@ struct v4l2_subdev_video_ops { | |||
| 275 | struct v4l2_dv_timings *timings); | 286 | struct v4l2_dv_timings *timings); |
| 276 | int (*enum_mbus_fmt)(struct v4l2_subdev *sd, unsigned int index, | 287 | int (*enum_mbus_fmt)(struct v4l2_subdev *sd, unsigned int index, |
| 277 | enum v4l2_mbus_pixelcode *code); | 288 | enum v4l2_mbus_pixelcode *code); |
| 289 | int (*enum_mbus_fsizes)(struct v4l2_subdev *sd, | ||
| 290 | struct v4l2_frmsizeenum *fsize); | ||
| 278 | int (*g_mbus_fmt)(struct v4l2_subdev *sd, | 291 | int (*g_mbus_fmt)(struct v4l2_subdev *sd, |
| 279 | struct v4l2_mbus_framefmt *fmt); | 292 | struct v4l2_mbus_framefmt *fmt); |
| 280 | int (*try_mbus_fmt)(struct v4l2_subdev *sd, | 293 | int (*try_mbus_fmt)(struct v4l2_subdev *sd, |
| @@ -328,9 +341,13 @@ struct v4l2_subdev_vbi_ops { | |||
| 328 | * This is needed for some sensors, which always corrupt | 341 | * This is needed for some sensors, which always corrupt |
| 329 | * several top lines of the output image, or which send their | 342 | * several top lines of the output image, or which send their |
| 330 | * metadata in them. | 343 | * metadata in them. |
| 344 | * @g_skip_frames: number of frames to skip at stream start. This is needed for | ||
| 345 | * buggy sensors that generate faulty frames when they are | ||
| 346 | * turned on. | ||
| 331 | */ | 347 | */ |
| 332 | struct v4l2_subdev_sensor_ops { | 348 | struct v4l2_subdev_sensor_ops { |
| 333 | int (*g_skip_top_lines)(struct v4l2_subdev *sd, u32 *lines); | 349 | int (*g_skip_top_lines)(struct v4l2_subdev *sd, u32 *lines); |
| 350 | int (*g_skip_frames)(struct v4l2_subdev *sd, u32 *frames); | ||
| 334 | }; | 351 | }; |
| 335 | 352 | ||
| 336 | /* | 353 | /* |
| @@ -405,6 +422,25 @@ struct v4l2_subdev_ir_ops { | |||
| 405 | struct v4l2_subdev_ir_parameters *params); | 422 | struct v4l2_subdev_ir_parameters *params); |
| 406 | }; | 423 | }; |
| 407 | 424 | ||
| 425 | struct v4l2_subdev_pad_ops { | ||
| 426 | int (*enum_mbus_code)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh, | ||
| 427 | struct v4l2_subdev_mbus_code_enum *code); | ||
| 428 | int (*enum_frame_size)(struct v4l2_subdev *sd, | ||
| 429 | struct v4l2_subdev_fh *fh, | ||
| 430 | struct v4l2_subdev_frame_size_enum *fse); | ||
| 431 | int (*enum_frame_interval)(struct v4l2_subdev *sd, | ||
| 432 | struct v4l2_subdev_fh *fh, | ||
| 433 | struct v4l2_subdev_frame_interval_enum *fie); | ||
| 434 | int (*get_fmt)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh, | ||
| 435 | struct v4l2_subdev_format *format); | ||
| 436 | int (*set_fmt)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh, | ||
| 437 | struct v4l2_subdev_format *format); | ||
| 438 | int (*set_crop)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh, | ||
| 439 | struct v4l2_subdev_crop *crop); | ||
| 440 | int (*get_crop)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh, | ||
| 441 | struct v4l2_subdev_crop *crop); | ||
| 442 | }; | ||
| 443 | |||
| 408 | struct v4l2_subdev_ops { | 444 | struct v4l2_subdev_ops { |
| 409 | const struct v4l2_subdev_core_ops *core; | 445 | const struct v4l2_subdev_core_ops *core; |
| 410 | const struct v4l2_subdev_tuner_ops *tuner; | 446 | const struct v4l2_subdev_tuner_ops *tuner; |
| @@ -413,24 +449,55 @@ struct v4l2_subdev_ops { | |||
| 413 | const struct v4l2_subdev_vbi_ops *vbi; | 449 | const struct v4l2_subdev_vbi_ops *vbi; |
| 414 | const struct v4l2_subdev_ir_ops *ir; | 450 | const struct v4l2_subdev_ir_ops *ir; |
| 415 | const struct v4l2_subdev_sensor_ops *sensor; | 451 | const struct v4l2_subdev_sensor_ops *sensor; |
| 452 | const struct v4l2_subdev_pad_ops *pad; | ||
| 453 | }; | ||
| 454 | |||
| 455 | /* | ||
| 456 | * Internal ops. Never call this from drivers, only the v4l2 framework can call | ||
| 457 | * these ops. | ||
| 458 | * | ||
| 459 | * registered: called when this subdev is registered. When called the v4l2_dev | ||
| 460 | * field is set to the correct v4l2_device. | ||
| 461 | * | ||
| 462 | * unregistered: called when this subdev is unregistered. When called the | ||
| 463 | * v4l2_dev field is still set to the correct v4l2_device. | ||
| 464 | * | ||
| 465 | * open: called when the subdev device node is opened by an application. | ||
| 466 | * | ||
| 467 | * close: called when the subdev device node is closed. | ||
| 468 | */ | ||
| 469 | struct v4l2_subdev_internal_ops { | ||
| 470 | int (*registered)(struct v4l2_subdev *sd); | ||
| 471 | void (*unregistered)(struct v4l2_subdev *sd); | ||
| 472 | int (*open)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh); | ||
| 473 | int (*close)(struct v4l2_subdev *sd, struct v4l2_subdev_fh *fh); | ||
| 416 | }; | 474 | }; |
| 417 | 475 | ||
| 418 | #define V4L2_SUBDEV_NAME_SIZE 32 | 476 | #define V4L2_SUBDEV_NAME_SIZE 32 |
| 419 | 477 | ||
| 420 | /* Set this flag if this subdev is a i2c device. */ | 478 | /* Set this flag if this subdev is a i2c device. */ |
| 421 | #define V4L2_SUBDEV_FL_IS_I2C (1U << 0) | 479 | #define V4L2_SUBDEV_FL_IS_I2C (1U << 0) |
| 422 | /* Set this flag if this subdev is a spi device. */ | 480 | /* Set this flag if this subdev is a spi device. */ |
| 423 | #define V4L2_SUBDEV_FL_IS_SPI (1U << 1) | 481 | #define V4L2_SUBDEV_FL_IS_SPI (1U << 1) |
| 482 | /* Set this flag if this subdev needs a device node. */ | ||
| 483 | #define V4L2_SUBDEV_FL_HAS_DEVNODE (1U << 2) | ||
| 484 | /* Set this flag if this subdev generates events. */ | ||
| 485 | #define V4L2_SUBDEV_FL_HAS_EVENTS (1U << 3) | ||
| 424 | 486 | ||
| 425 | /* Each instance of a subdev driver should create this struct, either | 487 | /* Each instance of a subdev driver should create this struct, either |
| 426 | stand-alone or embedded in a larger struct. | 488 | stand-alone or embedded in a larger struct. |
| 427 | */ | 489 | */ |
| 428 | struct v4l2_subdev { | 490 | struct v4l2_subdev { |
| 491 | #if defined(CONFIG_MEDIA_CONTROLLER) | ||
| 492 | struct media_entity entity; | ||
| 493 | #endif | ||
| 429 | struct list_head list; | 494 | struct list_head list; |
| 430 | struct module *owner; | 495 | struct module *owner; |
| 431 | u32 flags; | 496 | u32 flags; |
| 432 | struct v4l2_device *v4l2_dev; | 497 | struct v4l2_device *v4l2_dev; |
| 433 | const struct v4l2_subdev_ops *ops; | 498 | const struct v4l2_subdev_ops *ops; |
| 499 | /* Never call these internal ops from within a driver! */ | ||
| 500 | const struct v4l2_subdev_internal_ops *internal_ops; | ||
| 434 | /* The control handler of this subdev. May be NULL. */ | 501 | /* The control handler of this subdev. May be NULL. */ |
| 435 | struct v4l2_ctrl_handler *ctrl_handler; | 502 | struct v4l2_ctrl_handler *ctrl_handler; |
| 436 | /* name must be unique */ | 503 | /* name must be unique */ |
| @@ -440,8 +507,47 @@ struct v4l2_subdev { | |||
| 440 | /* pointer to private data */ | 507 | /* pointer to private data */ |
| 441 | void *dev_priv; | 508 | void *dev_priv; |
| 442 | void *host_priv; | 509 | void *host_priv; |
| 510 | /* subdev device node */ | ||
| 511 | struct video_device devnode; | ||
| 512 | /* number of events to be allocated on open */ | ||
| 513 | unsigned int nevents; | ||
| 514 | }; | ||
| 515 | |||
| 516 | #define media_entity_to_v4l2_subdev(ent) \ | ||
| 517 | container_of(ent, struct v4l2_subdev, entity) | ||
| 518 | #define vdev_to_v4l2_subdev(vdev) \ | ||
| 519 | container_of(vdev, struct v4l2_subdev, devnode) | ||
| 520 | |||
| 521 | /* | ||
| 522 | * Used for storing subdev information per file handle | ||
| 523 | */ | ||
| 524 | struct v4l2_subdev_fh { | ||
| 525 | struct v4l2_fh vfh; | ||
| 526 | #if defined(CONFIG_VIDEO_V4L2_SUBDEV_API) | ||
| 527 | struct v4l2_mbus_framefmt *try_fmt; | ||
| 528 | struct v4l2_rect *try_crop; | ||
| 529 | #endif | ||
| 443 | }; | 530 | }; |
| 444 | 531 | ||
| 532 | #define to_v4l2_subdev_fh(fh) \ | ||
| 533 | container_of(fh, struct v4l2_subdev_fh, vfh) | ||
| 534 | |||
| 535 | #if defined(CONFIG_VIDEO_V4L2_SUBDEV_API) | ||
| 536 | static inline struct v4l2_mbus_framefmt * | ||
| 537 | v4l2_subdev_get_try_format(struct v4l2_subdev_fh *fh, unsigned int pad) | ||
| 538 | { | ||
| 539 | return &fh->try_fmt[pad]; | ||
| 540 | } | ||
| 541 | |||
| 542 | static inline struct v4l2_rect * | ||
| 543 | v4l2_subdev_get_try_crop(struct v4l2_subdev_fh *fh, unsigned int pad) | ||
| 544 | { | ||
| 545 | return &fh->try_crop[pad]; | ||
| 546 | } | ||
| 547 | #endif | ||
| 548 | |||
| 549 | extern const struct v4l2_file_operations v4l2_subdev_fops; | ||
| 550 | |||
| 445 | static inline void v4l2_set_subdevdata(struct v4l2_subdev *sd, void *p) | 551 | static inline void v4l2_set_subdevdata(struct v4l2_subdev *sd, void *p) |
| 446 | { | 552 | { |
| 447 | sd->dev_priv = p; | 553 | sd->dev_priv = p; |
| @@ -462,20 +568,8 @@ static inline void *v4l2_get_subdev_hostdata(const struct v4l2_subdev *sd) | |||
| 462 | return sd->host_priv; | 568 | return sd->host_priv; |
| 463 | } | 569 | } |
| 464 | 570 | ||
| 465 | static inline void v4l2_subdev_init(struct v4l2_subdev *sd, | 571 | void v4l2_subdev_init(struct v4l2_subdev *sd, |
| 466 | const struct v4l2_subdev_ops *ops) | 572 | const struct v4l2_subdev_ops *ops); |
| 467 | { | ||
| 468 | INIT_LIST_HEAD(&sd->list); | ||
| 469 | /* ops->core MUST be set */ | ||
| 470 | BUG_ON(!ops || !ops->core); | ||
| 471 | sd->ops = ops; | ||
| 472 | sd->v4l2_dev = NULL; | ||
| 473 | sd->flags = 0; | ||
| 474 | sd->name[0] = '\0'; | ||
| 475 | sd->grp_id = 0; | ||
| 476 | sd->dev_priv = NULL; | ||
| 477 | sd->host_priv = NULL; | ||
| 478 | } | ||
| 479 | 573 | ||
| 480 | /* Call an ops of a v4l2_subdev, doing the right checks against | 574 | /* Call an ops of a v4l2_subdev, doing the right checks against |
| 481 | NULL pointers. | 575 | NULL pointers. |
diff --git a/include/media/videobuf2-core.h b/include/media/videobuf2-core.h new file mode 100644 index 000000000000..f87472acbc51 --- /dev/null +++ b/include/media/videobuf2-core.h | |||
| @@ -0,0 +1,380 @@ | |||
| 1 | /* | ||
| 2 | * videobuf2-core.h - V4L2 driver helper framework | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Samsung Electronics | ||
| 5 | * | ||
| 6 | * Author: Pawel Osciak <pawel@osciak.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | #ifndef _MEDIA_VIDEOBUF2_CORE_H | ||
| 13 | #define _MEDIA_VIDEOBUF2_CORE_H | ||
| 14 | |||
| 15 | #include <linux/mm_types.h> | ||
| 16 | #include <linux/mutex.h> | ||
| 17 | #include <linux/poll.h> | ||
| 18 | #include <linux/videodev2.h> | ||
| 19 | |||
| 20 | struct vb2_alloc_ctx; | ||
| 21 | struct vb2_fileio_data; | ||
| 22 | |||
| 23 | /** | ||
| 24 | * struct vb2_mem_ops - memory handling/memory allocator operations | ||
| 25 | * @alloc: allocate video memory and, optionally, allocator private data, | ||
| 26 | * return NULL on failure or a pointer to allocator private, | ||
| 27 | * per-buffer data on success; the returned private structure | ||
| 28 | * will then be passed as buf_priv argument to other ops in this | ||
| 29 | * structure | ||
| 30 | * @put: inform the allocator that the buffer will no longer be used; | ||
| 31 | * usually will result in the allocator freeing the buffer (if | ||
| 32 | * no other users of this buffer are present); the buf_priv | ||
| 33 | * argument is the allocator private per-buffer structure | ||
| 34 | * previously returned from the alloc callback | ||
| 35 | * @get_userptr: acquire userspace memory for a hardware operation; used for | ||
| 36 | * USERPTR memory types; vaddr is the address passed to the | ||
| 37 | * videobuf layer when queuing a video buffer of USERPTR type; | ||
| 38 | * should return an allocator private per-buffer structure | ||
| 39 | * associated with the buffer on success, NULL on failure; | ||
| 40 | * the returned private structure will then be passed as buf_priv | ||
| 41 | * argument to other ops in this structure | ||
| 42 | * @put_userptr: inform the allocator that a USERPTR buffer will no longer | ||
| 43 | * be used | ||
| 44 | * @vaddr: return a kernel virtual address to a given memory buffer | ||
| 45 | * associated with the passed private structure or NULL if no | ||
| 46 | * such mapping exists | ||
| 47 | * @cookie: return allocator specific cookie for a given memory buffer | ||
| 48 | * associated with the passed private structure or NULL if not | ||
| 49 | * available | ||
| 50 | * @num_users: return the current number of users of a memory buffer; | ||
| 51 | * return 1 if the videobuf layer (or actually the driver using | ||
| 52 | * it) is the only user | ||
| 53 | * @mmap: setup a userspace mapping for a given memory buffer under | ||
| 54 | * the provided virtual memory region | ||
| 55 | * | ||
| 56 | * Required ops for USERPTR types: get_userptr, put_userptr. | ||
| 57 | * Required ops for MMAP types: alloc, put, num_users, mmap. | ||
| 58 | * Required ops for read/write access types: alloc, put, num_users, vaddr | ||
| 59 | */ | ||
| 60 | struct vb2_mem_ops { | ||
| 61 | void *(*alloc)(void *alloc_ctx, unsigned long size); | ||
| 62 | void (*put)(void *buf_priv); | ||
| 63 | |||
| 64 | void *(*get_userptr)(void *alloc_ctx, unsigned long vaddr, | ||
| 65 | unsigned long size, int write); | ||
| 66 | void (*put_userptr)(void *buf_priv); | ||
| 67 | |||
| 68 | void *(*vaddr)(void *buf_priv); | ||
| 69 | void *(*cookie)(void *buf_priv); | ||
| 70 | |||
| 71 | unsigned int (*num_users)(void *buf_priv); | ||
| 72 | |||
| 73 | int (*mmap)(void *buf_priv, struct vm_area_struct *vma); | ||
| 74 | }; | ||
| 75 | |||
| 76 | struct vb2_plane { | ||
| 77 | void *mem_priv; | ||
| 78 | int mapped:1; | ||
| 79 | }; | ||
| 80 | |||
| 81 | /** | ||
| 82 | * enum vb2_io_modes - queue access methods | ||
| 83 | * @VB2_MMAP: driver supports MMAP with streaming API | ||
| 84 | * @VB2_USERPTR: driver supports USERPTR with streaming API | ||
| 85 | * @VB2_READ: driver supports read() style access | ||
| 86 | * @VB2_WRITE: driver supports write() style access | ||
| 87 | */ | ||
| 88 | enum vb2_io_modes { | ||
| 89 | VB2_MMAP = (1 << 0), | ||
| 90 | VB2_USERPTR = (1 << 1), | ||
| 91 | VB2_READ = (1 << 2), | ||
| 92 | VB2_WRITE = (1 << 3), | ||
| 93 | }; | ||
| 94 | |||
| 95 | /** | ||
| 96 | * enum vb2_fileio_flags - flags for selecting a mode of the file io emulator, | ||
| 97 | * by default the 'streaming' style is used by the file io emulator | ||
| 98 | * @VB2_FILEIO_READ_ONCE: report EOF after reading the first buffer | ||
| 99 | * @VB2_FILEIO_WRITE_IMMEDIATELY: queue buffer after each write() call | ||
| 100 | */ | ||
| 101 | enum vb2_fileio_flags { | ||
| 102 | VB2_FILEIO_READ_ONCE = (1 << 0), | ||
| 103 | VB2_FILEIO_WRITE_IMMEDIATELY = (1 << 1), | ||
| 104 | }; | ||
| 105 | |||
| 106 | /** | ||
| 107 | * enum vb2_buffer_state - current video buffer state | ||
| 108 | * @VB2_BUF_STATE_DEQUEUED: buffer under userspace control | ||
| 109 | * @VB2_BUF_STATE_QUEUED: buffer queued in videobuf, but not in driver | ||
| 110 | * @VB2_BUF_STATE_ACTIVE: buffer queued in driver and possibly used | ||
| 111 | * in a hardware operation | ||
| 112 | * @VB2_BUF_STATE_DONE: buffer returned from driver to videobuf, but | ||
| 113 | * not yet dequeued to userspace | ||
| 114 | * @VB2_BUF_STATE_ERROR: same as above, but the operation on the buffer | ||
| 115 | * has ended with an error, which will be reported | ||
| 116 | * to the userspace when it is dequeued | ||
| 117 | */ | ||
| 118 | enum vb2_buffer_state { | ||
| 119 | VB2_BUF_STATE_DEQUEUED, | ||
| 120 | VB2_BUF_STATE_QUEUED, | ||
| 121 | VB2_BUF_STATE_ACTIVE, | ||
| 122 | VB2_BUF_STATE_DONE, | ||
| 123 | VB2_BUF_STATE_ERROR, | ||
| 124 | }; | ||
| 125 | |||
| 126 | struct vb2_queue; | ||
| 127 | |||
| 128 | /** | ||
| 129 | * struct vb2_buffer - represents a video buffer | ||
| 130 | * @v4l2_buf: struct v4l2_buffer associated with this buffer; can | ||
| 131 | * be read by the driver and relevant entries can be | ||
| 132 | * changed by the driver in case of CAPTURE types | ||
| 133 | * (such as timestamp) | ||
| 134 | * @v4l2_planes: struct v4l2_planes associated with this buffer; can | ||
| 135 | * be read by the driver and relevant entries can be | ||
| 136 | * changed by the driver in case of CAPTURE types | ||
| 137 | * (such as bytesused); NOTE that even for single-planar | ||
| 138 | * types, the v4l2_planes[0] struct should be used | ||
| 139 | * instead of v4l2_buf for filling bytesused - drivers | ||
| 140 | * should use the vb2_set_plane_payload() function for that | ||
| 141 | * @vb2_queue: the queue to which this driver belongs | ||
| 142 | * @num_planes: number of planes in the buffer | ||
| 143 | * on an internal driver queue | ||
| 144 | * @state: current buffer state; do not change | ||
| 145 | * @queued_entry: entry on the queued buffers list, which holds all | ||
| 146 | * buffers queued from userspace | ||
| 147 | * @done_entry: entry on the list that stores all buffers ready to | ||
| 148 | * be dequeued to userspace | ||
| 149 | * @planes: private per-plane information; do not change | ||
| 150 | * @num_planes_mapped: number of mapped planes; do not change | ||
| 151 | */ | ||
| 152 | struct vb2_buffer { | ||
| 153 | struct v4l2_buffer v4l2_buf; | ||
| 154 | struct v4l2_plane v4l2_planes[VIDEO_MAX_PLANES]; | ||
| 155 | |||
| 156 | struct vb2_queue *vb2_queue; | ||
| 157 | |||
| 158 | unsigned int num_planes; | ||
| 159 | |||
| 160 | /* Private: internal use only */ | ||
| 161 | enum vb2_buffer_state state; | ||
| 162 | |||
| 163 | struct list_head queued_entry; | ||
| 164 | struct list_head done_entry; | ||
| 165 | |||
| 166 | struct vb2_plane planes[VIDEO_MAX_PLANES]; | ||
| 167 | unsigned int num_planes_mapped; | ||
| 168 | }; | ||
| 169 | |||
| 170 | /** | ||
| 171 | * struct vb2_ops - driver-specific callbacks | ||
| 172 | * | ||
| 173 | * @queue_setup: called from a VIDIOC_REQBUFS handler, before | ||
| 174 | * memory allocation; driver should return the required | ||
| 175 | * number of buffers in num_buffers, the required number | ||
| 176 | * of planes per buffer in num_planes; the size of each | ||
| 177 | * plane should be set in the sizes[] array and optional | ||
| 178 | * per-plane allocator specific context in alloc_ctxs[] | ||
| 179 | * array | ||
| 180 | * @wait_prepare: release any locks taken while calling vb2 functions; | ||
| 181 | * it is called before an ioctl needs to wait for a new | ||
| 182 | * buffer to arrive; required to avoid a deadlock in | ||
| 183 | * blocking access type | ||
| 184 | * @wait_finish: reacquire all locks released in the previous callback; | ||
| 185 | * required to continue operation after sleeping while | ||
| 186 | * waiting for a new buffer to arrive | ||
| 187 | * @buf_init: called once after allocating a buffer (in MMAP case) | ||
| 188 | * or after acquiring a new USERPTR buffer; drivers may | ||
| 189 | * perform additional buffer-related initialization; | ||
| 190 | * initialization failure (return != 0) will prevent | ||
| 191 | * queue setup from completing successfully; optional | ||
| 192 | * @buf_prepare: called every time the buffer is queued from userspace; | ||
| 193 | * drivers may perform any initialization required before | ||
| 194 | * each hardware operation in this callback; | ||
| 195 | * if an error is returned, the buffer will not be queued | ||
| 196 | * in driver; optional | ||
| 197 | * @buf_finish: called before every dequeue of the buffer back to | ||
| 198 | * userspace; drivers may perform any operations required | ||
| 199 | * before userspace accesses the buffer; optional | ||
| 200 | * @buf_cleanup: called once before the buffer is freed; drivers may | ||
| 201 | * perform any additional cleanup; optional | ||
| 202 | * @start_streaming: called once before entering 'streaming' state; enables | ||
| 203 | * driver to receive buffers over buf_queue() callback | ||
| 204 | * @stop_streaming: called when 'streaming' state must be disabled; driver | ||
| 205 | * should stop any DMA transactions or wait until they | ||
| 206 | * finish and give back all buffers it got from buf_queue() | ||
| 207 | * callback; may use vb2_wait_for_all_buffers() function | ||
| 208 | * @buf_queue: passes buffer vb to the driver; driver may start | ||
| 209 | * hardware operation on this buffer; driver should give | ||
| 210 | * the buffer back by calling vb2_buffer_done() function | ||
| 211 | */ | ||
| 212 | struct vb2_ops { | ||
| 213 | int (*queue_setup)(struct vb2_queue *q, unsigned int *num_buffers, | ||
| 214 | unsigned int *num_planes, unsigned long sizes[], | ||
| 215 | void *alloc_ctxs[]); | ||
| 216 | |||
| 217 | void (*wait_prepare)(struct vb2_queue *q); | ||
| 218 | void (*wait_finish)(struct vb2_queue *q); | ||
| 219 | |||
| 220 | int (*buf_init)(struct vb2_buffer *vb); | ||
| 221 | int (*buf_prepare)(struct vb2_buffer *vb); | ||
| 222 | int (*buf_finish)(struct vb2_buffer *vb); | ||
| 223 | void (*buf_cleanup)(struct vb2_buffer *vb); | ||
| 224 | |||
| 225 | int (*start_streaming)(struct vb2_queue *q); | ||
| 226 | int (*stop_streaming)(struct vb2_queue *q); | ||
| 227 | |||
| 228 | void (*buf_queue)(struct vb2_buffer *vb); | ||
| 229 | }; | ||
| 230 | |||
| 231 | /** | ||
| 232 | * struct vb2_queue - a videobuf queue | ||
| 233 | * | ||
| 234 | * @type: queue type (see V4L2_BUF_TYPE_* in linux/videodev2.h | ||
| 235 | * @io_modes: supported io methods (see vb2_io_modes enum) | ||
| 236 | * @io_flags: additional io flags (see vb2_fileio_flags enum) | ||
| 237 | * @ops: driver-specific callbacks | ||
| 238 | * @mem_ops: memory allocator specific callbacks | ||
| 239 | * @drv_priv: driver private data | ||
| 240 | * @buf_struct_size: size of the driver-specific buffer structure; | ||
| 241 | * "0" indicates the driver doesn't want to use a custom buffer | ||
| 242 | * structure type, so sizeof(struct vb2_buffer) will is used | ||
| 243 | * | ||
| 244 | * @memory: current memory type used | ||
| 245 | * @bufs: videobuf buffer structures | ||
| 246 | * @num_buffers: number of allocated/used buffers | ||
| 247 | * @queued_list: list of buffers currently queued from userspace | ||
| 248 | * @queued_count: number of buffers owned by the driver | ||
| 249 | * @done_list: list of buffers ready to be dequeued to userspace | ||
| 250 | * @done_lock: lock to protect done_list list | ||
| 251 | * @done_wq: waitqueue for processes waiting for buffers ready to be dequeued | ||
| 252 | * @alloc_ctx: memory type/allocator-specific contexts for each plane | ||
| 253 | * @streaming: current streaming state | ||
| 254 | * @fileio: file io emulator internal data, used only if emulator is active | ||
| 255 | */ | ||
| 256 | struct vb2_queue { | ||
| 257 | enum v4l2_buf_type type; | ||
| 258 | unsigned int io_modes; | ||
| 259 | unsigned int io_flags; | ||
| 260 | |||
| 261 | const struct vb2_ops *ops; | ||
| 262 | const struct vb2_mem_ops *mem_ops; | ||
| 263 | void *drv_priv; | ||
| 264 | unsigned int buf_struct_size; | ||
| 265 | |||
| 266 | /* private: internal use only */ | ||
| 267 | enum v4l2_memory memory; | ||
| 268 | struct vb2_buffer *bufs[VIDEO_MAX_FRAME]; | ||
| 269 | unsigned int num_buffers; | ||
| 270 | |||
| 271 | struct list_head queued_list; | ||
| 272 | |||
| 273 | atomic_t queued_count; | ||
| 274 | struct list_head done_list; | ||
| 275 | spinlock_t done_lock; | ||
| 276 | wait_queue_head_t done_wq; | ||
| 277 | |||
| 278 | void *alloc_ctx[VIDEO_MAX_PLANES]; | ||
| 279 | |||
| 280 | unsigned int streaming:1; | ||
| 281 | |||
| 282 | struct vb2_fileio_data *fileio; | ||
| 283 | }; | ||
| 284 | |||
| 285 | void *vb2_plane_vaddr(struct vb2_buffer *vb, unsigned int plane_no); | ||
| 286 | void *vb2_plane_cookie(struct vb2_buffer *vb, unsigned int plane_no); | ||
| 287 | |||
| 288 | void vb2_buffer_done(struct vb2_buffer *vb, enum vb2_buffer_state state); | ||
| 289 | int vb2_wait_for_all_buffers(struct vb2_queue *q); | ||
| 290 | |||
| 291 | int vb2_querybuf(struct vb2_queue *q, struct v4l2_buffer *b); | ||
| 292 | int vb2_reqbufs(struct vb2_queue *q, struct v4l2_requestbuffers *req); | ||
| 293 | |||
| 294 | int vb2_queue_init(struct vb2_queue *q); | ||
| 295 | |||
| 296 | void vb2_queue_release(struct vb2_queue *q); | ||
| 297 | |||
| 298 | int vb2_qbuf(struct vb2_queue *q, struct v4l2_buffer *b); | ||
| 299 | int vb2_dqbuf(struct vb2_queue *q, struct v4l2_buffer *b, bool nonblocking); | ||
| 300 | |||
| 301 | int vb2_streamon(struct vb2_queue *q, enum v4l2_buf_type type); | ||
| 302 | int vb2_streamoff(struct vb2_queue *q, enum v4l2_buf_type type); | ||
| 303 | |||
| 304 | int vb2_mmap(struct vb2_queue *q, struct vm_area_struct *vma); | ||
| 305 | unsigned int vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait); | ||
| 306 | size_t vb2_read(struct vb2_queue *q, char __user *data, size_t count, | ||
| 307 | loff_t *ppos, int nonblock); | ||
| 308 | size_t vb2_write(struct vb2_queue *q, char __user *data, size_t count, | ||
| 309 | loff_t *ppos, int nonblock); | ||
| 310 | |||
| 311 | /** | ||
| 312 | * vb2_is_streaming() - return streaming status of the queue | ||
| 313 | * @q: videobuf queue | ||
| 314 | */ | ||
| 315 | static inline bool vb2_is_streaming(struct vb2_queue *q) | ||
| 316 | { | ||
| 317 | return q->streaming; | ||
| 318 | } | ||
| 319 | |||
| 320 | /** | ||
| 321 | * vb2_is_busy() - return busy status of the queue | ||
| 322 | * @q: videobuf queue | ||
| 323 | * | ||
| 324 | * This function checks if queue has any buffers allocated. | ||
| 325 | */ | ||
| 326 | static inline bool vb2_is_busy(struct vb2_queue *q) | ||
| 327 | { | ||
| 328 | return (q->num_buffers > 0); | ||
| 329 | } | ||
| 330 | |||
| 331 | /** | ||
| 332 | * vb2_get_drv_priv() - return driver private data associated with the queue | ||
| 333 | * @q: videobuf queue | ||
| 334 | */ | ||
| 335 | static inline void *vb2_get_drv_priv(struct vb2_queue *q) | ||
| 336 | { | ||
| 337 | return q->drv_priv; | ||
| 338 | } | ||
| 339 | |||
| 340 | /** | ||
| 341 | * vb2_set_plane_payload() - set bytesused for the plane plane_no | ||
| 342 | * @vb: buffer for which plane payload should be set | ||
| 343 | * @plane_no: plane number for which payload should be set | ||
| 344 | * @size: payload in bytes | ||
| 345 | */ | ||
| 346 | static inline void vb2_set_plane_payload(struct vb2_buffer *vb, | ||
| 347 | unsigned int plane_no, unsigned long size) | ||
| 348 | { | ||
| 349 | if (plane_no < vb->num_planes) | ||
| 350 | vb->v4l2_planes[plane_no].bytesused = size; | ||
| 351 | } | ||
| 352 | |||
| 353 | /** | ||
| 354 | * vb2_get_plane_payload() - get bytesused for the plane plane_no | ||
| 355 | * @vb: buffer for which plane payload should be set | ||
| 356 | * @plane_no: plane number for which payload should be set | ||
| 357 | * @size: payload in bytes | ||
| 358 | */ | ||
| 359 | static inline unsigned long vb2_get_plane_payload(struct vb2_buffer *vb, | ||
| 360 | unsigned int plane_no) | ||
| 361 | { | ||
| 362 | if (plane_no < vb->num_planes) | ||
| 363 | return vb->v4l2_planes[plane_no].bytesused; | ||
| 364 | return 0; | ||
| 365 | } | ||
| 366 | |||
| 367 | /** | ||
| 368 | * vb2_plane_size() - return plane size in bytes | ||
| 369 | * @vb: buffer for which plane size should be returned | ||
| 370 | * @plane_no: plane number for which size should be returned | ||
| 371 | */ | ||
| 372 | static inline unsigned long | ||
| 373 | vb2_plane_size(struct vb2_buffer *vb, unsigned int plane_no) | ||
| 374 | { | ||
| 375 | if (plane_no < vb->num_planes) | ||
| 376 | return vb->v4l2_planes[plane_no].length; | ||
| 377 | return 0; | ||
| 378 | } | ||
| 379 | |||
| 380 | #endif /* _MEDIA_VIDEOBUF2_CORE_H */ | ||
diff --git a/include/media/videobuf2-dma-contig.h b/include/media/videobuf2-dma-contig.h new file mode 100644 index 000000000000..7e6c68b23773 --- /dev/null +++ b/include/media/videobuf2-dma-contig.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* | ||
| 2 | * videobuf2-dma-coherent.h - DMA coherent memory allocator for videobuf2 | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Samsung Electronics | ||
| 5 | * | ||
| 6 | * Author: Pawel Osciak <pawel@osciak.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef _MEDIA_VIDEOBUF2_DMA_COHERENT_H | ||
| 14 | #define _MEDIA_VIDEOBUF2_DMA_COHERENT_H | ||
| 15 | |||
| 16 | #include <media/videobuf2-core.h> | ||
| 17 | #include <linux/dma-mapping.h> | ||
| 18 | |||
| 19 | static inline dma_addr_t | ||
| 20 | vb2_dma_contig_plane_paddr(struct vb2_buffer *vb, unsigned int plane_no) | ||
| 21 | { | ||
| 22 | dma_addr_t *paddr = vb2_plane_cookie(vb, plane_no); | ||
| 23 | |||
| 24 | return *paddr; | ||
| 25 | } | ||
| 26 | |||
| 27 | void *vb2_dma_contig_init_ctx(struct device *dev); | ||
| 28 | void vb2_dma_contig_cleanup_ctx(void *alloc_ctx); | ||
| 29 | |||
| 30 | extern const struct vb2_mem_ops vb2_dma_contig_memops; | ||
| 31 | |||
| 32 | #endif | ||
diff --git a/include/media/videobuf2-dma-sg.h b/include/media/videobuf2-dma-sg.h new file mode 100644 index 000000000000..0038526b8ef7 --- /dev/null +++ b/include/media/videobuf2-dma-sg.h | |||
| @@ -0,0 +1,32 @@ | |||
| 1 | /* | ||
| 2 | * videobuf2-dma-sg.h - DMA scatter/gather memory allocator for videobuf2 | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Samsung Electronics | ||
| 5 | * | ||
| 6 | * Author: Andrzej Pietrasiewicz <andrzej.p@samsung.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef _MEDIA_VIDEOBUF2_DMA_SG_H | ||
| 14 | #define _MEDIA_VIDEOBUF2_DMA_SG_H | ||
| 15 | |||
| 16 | #include <media/videobuf2-core.h> | ||
| 17 | |||
| 18 | struct vb2_dma_sg_desc { | ||
| 19 | unsigned long size; | ||
| 20 | unsigned int num_pages; | ||
| 21 | struct scatterlist *sglist; | ||
| 22 | }; | ||
| 23 | |||
| 24 | static inline struct vb2_dma_sg_desc *vb2_dma_sg_plane_desc( | ||
| 25 | struct vb2_buffer *vb, unsigned int plane_no) | ||
| 26 | { | ||
| 27 | return (struct vb2_dma_sg_desc *)vb2_plane_cookie(vb, plane_no); | ||
| 28 | } | ||
| 29 | |||
| 30 | extern const struct vb2_mem_ops vb2_dma_sg_memops; | ||
| 31 | |||
| 32 | #endif | ||
diff --git a/include/media/videobuf2-memops.h b/include/media/videobuf2-memops.h new file mode 100644 index 000000000000..84e1f6c031c5 --- /dev/null +++ b/include/media/videobuf2-memops.h | |||
| @@ -0,0 +1,45 @@ | |||
| 1 | /* | ||
| 2 | * videobuf2-memops.h - generic memory handling routines for videobuf2 | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Samsung Electronics | ||
| 5 | * | ||
| 6 | * Author: Pawel Osciak <pawel@osciak.com> | ||
| 7 | * Marek Szyprowski <m.szyprowski@samsung.com> | ||
| 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 as published by | ||
| 11 | * the Free Software Foundation. | ||
| 12 | */ | ||
| 13 | |||
| 14 | #ifndef _MEDIA_VIDEOBUF2_MEMOPS_H | ||
| 15 | #define _MEDIA_VIDEOBUF2_MEMOPS_H | ||
| 16 | |||
| 17 | #include <media/videobuf2-core.h> | ||
| 18 | |||
| 19 | /** | ||
| 20 | * vb2_vmarea_handler - common vma refcount tracking handler | ||
| 21 | * @refcount: pointer to refcount entry in the buffer | ||
| 22 | * @put: callback to function that decreases buffer refcount | ||
| 23 | * @arg: argument for @put callback | ||
| 24 | */ | ||
| 25 | struct vb2_vmarea_handler { | ||
| 26 | atomic_t *refcount; | ||
| 27 | void (*put)(void *arg); | ||
| 28 | void *arg; | ||
| 29 | }; | ||
| 30 | |||
| 31 | extern const struct vm_operations_struct vb2_common_vm_ops; | ||
| 32 | |||
| 33 | int vb2_get_contig_userptr(unsigned long vaddr, unsigned long size, | ||
| 34 | struct vm_area_struct **res_vma, dma_addr_t *res_pa); | ||
| 35 | |||
| 36 | int vb2_mmap_pfn_range(struct vm_area_struct *vma, unsigned long paddr, | ||
| 37 | unsigned long size, | ||
| 38 | const struct vm_operations_struct *vm_ops, | ||
| 39 | void *priv); | ||
| 40 | |||
| 41 | struct vm_area_struct *vb2_get_vma(struct vm_area_struct *vma); | ||
| 42 | void vb2_put_vma(struct vm_area_struct *vma); | ||
| 43 | |||
| 44 | |||
| 45 | #endif | ||
diff --git a/include/media/videobuf2-vmalloc.h b/include/media/videobuf2-vmalloc.h new file mode 100644 index 000000000000..93a76b43038d --- /dev/null +++ b/include/media/videobuf2-vmalloc.h | |||
| @@ -0,0 +1,20 @@ | |||
| 1 | /* | ||
| 2 | * videobuf2-vmalloc.h - vmalloc memory allocator for videobuf2 | ||
| 3 | * | ||
| 4 | * Copyright (C) 2010 Samsung Electronics | ||
| 5 | * | ||
| 6 | * Author: Pawel Osciak <pawel@osciak.com> | ||
| 7 | * | ||
| 8 | * This program is free software; you can redistribute it and/or modify | ||
| 9 | * it under the terms of the GNU General Public License as published by | ||
| 10 | * the Free Software Foundation. | ||
| 11 | */ | ||
| 12 | |||
| 13 | #ifndef _MEDIA_VIDEOBUF2_VMALLOC_H | ||
| 14 | #define _MEDIA_VIDEOBUF2_VMALLOC_H | ||
| 15 | |||
| 16 | #include <media/videobuf2-core.h> | ||
| 17 | |||
| 18 | extern const struct vb2_mem_ops vb2_vmalloc_memops; | ||
| 19 | |||
| 20 | #endif | ||
diff --git a/include/media/wm8775.h b/include/media/wm8775.h index 60739c5a23ae..d0e801a9935c 100644 --- a/include/media/wm8775.h +++ b/include/media/wm8775.h | |||
| @@ -32,4 +32,13 @@ | |||
| 32 | #define WM8775_AIN3 4 | 32 | #define WM8775_AIN3 4 |
| 33 | #define WM8775_AIN4 8 | 33 | #define WM8775_AIN4 8 |
| 34 | 34 | ||
| 35 | |||
| 36 | struct wm8775_platform_data { | ||
| 37 | /* | ||
| 38 | * FIXME: Instead, we should parametrize the params | ||
| 39 | * that need different settings between ivtv, pvrusb2, and Nova-S | ||
| 40 | */ | ||
| 41 | bool is_nova_s; | ||
| 42 | }; | ||
| 43 | |||
| 35 | #endif | 44 | #endif |
