1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
|
/*
* V4L2 subdev interface library
*
* Copyright (C) 2010-2014 Ideas on board SPRL
*
* Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published
* by the Free Software Foundation; either version 2.1 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __SUBDEV_H__
#define __SUBDEV_H__
#include <linux/v4l2-subdev.h>
struct media_device;
struct media_entity;
/**
* @brief Open a sub-device.
* @param entity - sub-device media entity.
*
* Open the V4L2 subdev device node associated with @a entity. The file
* descriptor is stored in the media_entity structure.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_open(struct media_entity *entity);
/**
* @brief Close a sub-device.
* @param entity - sub-device media entity.
*
* Close the V4L2 subdev device node associated with the @a entity and opened by
* a previous call to v4l2_subdev_open() (either explicit or implicit).
*/
void v4l2_subdev_close(struct media_entity *entity);
/**
* @brief Retrieve the format on a pad.
* @param entity - subdev-device media entity.
* @param format - format to be filled.
* @param pad - pad number.
* @param stream - stream number.
* @param which - identifier of the format to get.
*
* Retrieve the current format on the @a entity @a pad and store it in the
* @a format structure.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to retrieve the try format stored
* in the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to retrieve the current
* active format.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_get_format(struct media_entity *entity,
struct v4l2_mbus_framefmt *format, unsigned int pad, unsigned int stream,
enum v4l2_subdev_format_whence which);
/**
* @brief Set the format on a pad.
* @param entity - subdev-device media entity.
* @param format - format.
* @param pad - pad number.
* @param stream - stream number.
* @param which - identifier of the format to set.
*
* Set the format on the @a entity @a pad to @a format. The driver is allowed to
* modify the requested format, in which case @a format is updated with the
* modifications.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the try format stored in the
* file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to configure the device with an
* active format.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_set_format(struct media_entity *entity,
struct v4l2_mbus_framefmt *format, unsigned int pad,
unsigned int stream,
enum v4l2_subdev_format_whence which);
/**
* @brief Retrieve a selection rectangle on a pad.
* @param entity - subdev-device media entity.
* @param r - rectangle to be filled.
* @param pad - pad number.
* @param stream - stream number.
* @param target - selection target
* @param which - identifier of the format to get.
*
* Retrieve the @a target selection rectangle on the @a entity @a pad
* and store it in the @a rect structure.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to retrieve the try
* selection rectangle stored in the file handle, or
* V4L2_SUBDEV_FORMAT_ACTIVE to retrieve the current active selection
* rectangle.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_get_selection(struct media_entity *entity,
struct v4l2_rect *rect, unsigned int pad, unsigned int stream,
unsigned int target, enum v4l2_subdev_format_whence which);
/**
* @brief Set a selection rectangle on a pad.
* @param entity - subdev-device media entity.
* @param rect - crop rectangle.
* @param pad - pad number.
* @param stream - stream number.
* @param target - selection target
* @param which - identifier of the format to set.
*
* Set the @a target selection rectangle on the @a entity @a pad to @a
* rect. The driver is allowed to modify the requested rectangle, in
* which case @a rect is updated with the modifications.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the try crop rectangle
* stored in the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to configure the
* device with an active crop rectangle.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_set_selection(struct media_entity *entity,
struct v4l2_rect *rect, unsigned int pad, unsigned int stream,
unsigned int target, enum v4l2_subdev_format_whence which);
/**
* @brief Get the routing table of a subdev media entity.
* @param entity - subdev-device media entity.
* @param routes - routes of the subdev.
* @param num_routes - number of routes.
* @param which - identifier of the routes to get.
*
* Get the routes of @a entity and return them in an allocated array in @a routes
* and the number of routes in @a num_routes.
*
* The caller is responsible for freeing the routes array after use.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to get the routing table stored in
* the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to get the device's active
* routing table.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_get_routing(struct media_entity *entity,
struct v4l2_subdev_route **routes,
unsigned int *num_routes,
enum v4l2_subdev_format_whence which);
/**
* @brief Set the routing table of a subdev media entity.
* @param entity - subdev-device media entity.
* @param routes - routes of the subdev.
* @param num_routes - number of routes.
* @param which - identifier of the routes to set.
*
* Set the routes of @a entity. The routes are given in @a routes with the
* length of @a num_routes.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the routing table stored in
* the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to set the device's active
* routing table.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_set_routing(struct media_entity *entity,
struct v4l2_subdev_route *route,
unsigned int num_routes,
enum v4l2_subdev_format_whence which);
/**
* @brief Query the digital video capabilities of a pad.
* @param entity - subdev-device media entity.
* @param cap - capabilities to be filled.
*
* Retrieve the digital video capabilities of the @a entity pad specified by
* @a cap.pad and store it in the @a cap structure.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_get_dv_timings_caps(struct media_entity *entity,
struct v4l2_dv_timings_cap *caps);
/**
* @brief Query the digital video timings of a sub-device
* @param entity - subdev-device media entity.
* @param timings timings to be filled.
*
* Retrieve the detected digital video timings for the currently selected input
* of @a entity and store them in the @a timings structure.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_query_dv_timings(struct media_entity *entity,
struct v4l2_dv_timings *timings);
/**
* @brief Get the current digital video timings of a sub-device
* @param entity - subdev-device media entity.
* @param timings timings to be filled.
*
* Retrieve the current digital video timings for the currently selected input
* of @a entity and store them in the @a timings structure.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_get_dv_timings(struct media_entity *entity,
struct v4l2_dv_timings *timings);
/**
* @brief Set the digital video timings of a sub-device
* @param entity - subdev-device media entity.
* @param timings timings to be set.
*
* Set the digital video timings of @a entity to @a timings. The driver is
* allowed to modify the requested format, in which case @a timings is updated
* with the modifications.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_set_dv_timings(struct media_entity *entity,
struct v4l2_dv_timings *timings);
/**
* @brief Retrieve the frame interval on a sub-device.
* @param entity - subdev-device media entity.
* @param interval - frame interval to be filled.
* @param pad - pad number.
* @param stream - stream number.
* @param which - identifier of the interval to get.
*
* Retrieve the current frame interval on subdev @a entity and store it in the
* @a interval structure.
*
* Frame interval retrieving is usually supported only on devices at the
* beginning of video pipelines, such as sensors.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to get the frame interval stored
* in the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to get the device's active
* frame interval.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_get_frame_interval(struct media_entity *entity,
struct v4l2_fract *interval, unsigned int pad, unsigned int stream,
enum v4l2_subdev_format_whence which);
/**
* @brief Set the frame interval on a sub-device.
* @param entity - subdev-device media entity.
* @param interval - frame interval.
* @param pad - pad number.
* @param stream - stream number.
* @param which - identifier of the interval to set.
*
* Set the frame interval on subdev @a entity to @a interval. The driver is
* allowed to modify the requested frame interval, in which case @a interval is
* updated with the modifications.
*
* Frame interval setting is usually supported only on devices at the beginning
* of video pipelines, such as sensors.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the frame interval stored
* in the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to set the device's active
* frame interval.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_set_frame_interval(struct media_entity *entity,
struct v4l2_fract *interval, unsigned int pad, unsigned int stream,
enum v4l2_subdev_format_whence which);
/**
* @brief Parse a string and apply format, crop and frame interval settings.
* @param media - media device.
* @param which - identifier of the parameters to set.
* @param p - input string
* @param endp - pointer to string p where parsing ended (return)
*
* Parse string @a p and apply format, crop and frame interval settings to a
* subdev pad specified in @a p. @a endp will be written a pointer where
* parsing of @a p ended.
*
* Format strings are separeted by commas (,).
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the parameters stored in the
* file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to set the device's active
* parameters.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_parse_setup_formats(struct media_device *media,
enum v4l2_subdev_format_whence which,
const char *p);
/**
* @brief Parse a string and apply route settings.
* @param media - media device.
* @param which - identifier of the routes to set.
* @param p - input string
*
* Parse string @a p and apply route settings to a subdev.
*
* @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the routes stored in the
* file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to set the device's active routes.
*
* @return 0 on success, or a negative error code on failure.
*/
int v4l2_subdev_parse_setup_routes(struct media_device *media,
enum v4l2_subdev_format_whence which,
const char *p);
/**
* @brief Convert media bus pixel code to string.
* @param code - input string
*
* Convert media bus pixel code @a code to a human-readable string.
*
* @return A pointer to a string on success, NULL on failure.
*/
const char *v4l2_subdev_pixelcode_to_string(enum v4l2_mbus_pixelcode code);
/**
* @brief Parse string to media bus pixel code.
* @param string - nul terminalted string, textual media bus pixel code
*
* Parse human readable string @a string to an media bus pixel code.
*
* @return media bus pixelcode on success, -1 on failure.
*/
enum v4l2_mbus_pixelcode v4l2_subdev_string_to_pixelcode(const char *string);
/**
* @brief Convert a field order to string.
* @param field - field order
*
* Convert field order @a field to a human-readable string.
*
* @return A pointer to a string on success, NULL on failure.
*/
const char *v4l2_subdev_field_to_string(enum v4l2_field field);
/**
* @brief Parse string to field order.
* @param string - nul terminated string, textual media bus pixel code
*
* Parse human readable string @a string to field order.
*
* @return field order on success, -1 on failure.
*/
enum v4l2_field v4l2_subdev_string_to_field(const char *string);
/**
* @brief Convert a colorspace to string.
* @param colorspace - colorspace
*
* Convert colorspace @a colorspace to a human-readable string.
*
* @return A pointer to a string on success, NULL on failure.
*/
const char *v4l2_subdev_colorspace_to_string(enum v4l2_colorspace colorspace);
/**
* @brief Parse string to colorspace.
* @param string - nul terminated string, textual colorspace
*
* Parse human readable string @a string to colorspace.
*
* @return colorspace on success, -1 on failure.
*/
enum v4l2_colorspace v4l2_subdev_string_to_colorspace(const char *string);
/**
* @brief Convert a transfer function to string.
* @param xfer_func - transfer function
*
* Convert transfer function @a xfer_func to a human-readable string.
*
* @return A pointer to a string on success, NULL on failure.
*/
const char *v4l2_subdev_xfer_func_to_string(enum v4l2_xfer_func xfer_func);
/**
* @brief Parse string to transfer function.
* @param string - nul terminated string, textual transfer function
*
* Parse human readable string @a string to xfer_func.
*
* @return xfer_func on success, -1 on failure.
*/
enum v4l2_xfer_func v4l2_subdev_string_to_xfer_func(const char *string);
/**
* @brief Convert a YCbCr encoding to string.
* @param ycbcr_enc - YCbCr encoding
*
* Convert YCbCr encoding @a ycbcr_enc to a human-readable string.
*
* @return A pointer to a string on success, NULL on failure.
*/
const char *v4l2_subdev_ycbcr_encoding_to_string(enum v4l2_ycbcr_encoding ycbcr_enc);
/**
* @brief Parse string to YCbCr encoding.
* @param string - nul terminated string, textual YCbCr encoding
*
* Parse human readable string @a string to YCbCr encoding.
*
* @return ycbcr_enc on success, -1 on failure.
*/
enum v4l2_ycbcr_encoding v4l2_subdev_string_to_ycbcr_encoding(const char *string);
/**
* @brief Convert a quantization to string.
* @param quantization - quantization
*
* Convert quantization @a quantization to a human-readable string.
*
* @return A pointer to a string on success, NULL on failure.
*/
const char *v4l2_subdev_quantization_to_string(enum v4l2_quantization quantization);
/**
* @brief Parse string to quantization.
* @param string - nul terminated string, textual quantization
*
* Parse human readable string @a string to quantization.
*
* @return quantization on success, -1 on failure.
*/
enum v4l2_quantization v4l2_subdev_string_to_quantization(const char *string);
/**
* @brief Enumerate library supported media bus pixel codes.
* @param length - the number of the supported pixel codes
*
* Obtain pixel codes supported by libv4l2subdev.
*
* @return A pointer to the pixel code array
*/
const enum v4l2_mbus_pixelcode *v4l2_subdev_pixelcode_list(
unsigned int *length);
#endif
|