v4l2subdev.h 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*
  2. * V4L2 subdev interface library
  3. *
  4. * Copyright (C) 2010-2014 Ideas on board SPRL
  5. *
  6. * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU Lesser General Public License as published
  10. * by the Free Software Foundation; either version 2.1 of the License, or
  11. * (at your option) any later version.
  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 Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public License
  19. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. #ifndef __SUBDEV_H__
  22. #define __SUBDEV_H__
  23. #include <linux/v4l2-subdev.h>
  24. struct media_device;
  25. struct media_entity;
  26. /**
  27. * @brief Open a sub-device.
  28. * @param entity - sub-device media entity.
  29. *
  30. * Open the V4L2 subdev device node associated with @a entity. The file
  31. * descriptor is stored in the media_entity structure.
  32. *
  33. * @return 0 on success, or a negative error code on failure.
  34. */
  35. int v4l2_subdev_open(struct media_entity *entity);
  36. /**
  37. * @brief Close a sub-device.
  38. * @param entity - sub-device media entity.
  39. *
  40. * Close the V4L2 subdev device node associated with the @a entity and opened by
  41. * a previous call to v4l2_subdev_open() (either explicit or implicit).
  42. */
  43. void v4l2_subdev_close(struct media_entity *entity);
  44. /**
  45. * @brief Retrieve the format on a pad.
  46. * @param entity - subdev-device media entity.
  47. * @param format - format to be filled.
  48. * @param pad - pad number.
  49. * @param which - identifier of the format to get.
  50. *
  51. * Retrieve the current format on the @a entity @a pad and store it in the
  52. * @a format structure.
  53. *
  54. * @a which is set to V4L2_SUBDEV_FORMAT_TRY to retrieve the try format stored
  55. * in the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to retrieve the current
  56. * active format.
  57. *
  58. * @return 0 on success, or a negative error code on failure.
  59. */
  60. int v4l2_subdev_get_format(struct media_entity *entity,
  61. struct v4l2_mbus_framefmt *format, unsigned int pad,
  62. enum v4l2_subdev_format_whence which);
  63. /**
  64. * @brief Set the format on a pad.
  65. * @param entity - subdev-device media entity.
  66. * @param format - format.
  67. * @param pad - pad number.
  68. * @param which - identifier of the format to set.
  69. *
  70. * Set the format on the @a entity @a pad to @a format. The driver is allowed to
  71. * modify the requested format, in which case @a format is updated with the
  72. * modifications.
  73. *
  74. * @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the try format stored in the
  75. * file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to configure the device with an
  76. * active format.
  77. *
  78. * @return 0 on success, or a negative error code on failure.
  79. */
  80. int v4l2_subdev_set_format(struct media_entity *entity,
  81. struct v4l2_mbus_framefmt *format, unsigned int pad,
  82. enum v4l2_subdev_format_whence which);
  83. /**
  84. * @brief Retrieve a selection rectangle on a pad.
  85. * @param entity - subdev-device media entity.
  86. * @param r - rectangle to be filled.
  87. * @param pad - pad number.
  88. * @param target - selection target
  89. * @param which - identifier of the format to get.
  90. *
  91. * Retrieve the @a target selection rectangle on the @a entity @a pad
  92. * and store it in the @a rect structure.
  93. *
  94. * @a which is set to V4L2_SUBDEV_FORMAT_TRY to retrieve the try
  95. * selection rectangle stored in the file handle, or
  96. * V4L2_SUBDEV_FORMAT_ACTIVE to retrieve the current active selection
  97. * rectangle.
  98. *
  99. * @return 0 on success, or a negative error code on failure.
  100. */
  101. int v4l2_subdev_get_selection(struct media_entity *entity,
  102. struct v4l2_rect *rect, unsigned int pad, unsigned int target,
  103. enum v4l2_subdev_format_whence which);
  104. /**
  105. * @brief Set a selection rectangle on a pad.
  106. * @param entity - subdev-device media entity.
  107. * @param rect - crop rectangle.
  108. * @param pad - pad number.
  109. * @param target - selection target
  110. * @param which - identifier of the format to set.
  111. *
  112. * Set the @a target selection rectangle on the @a entity @a pad to @a
  113. * rect. The driver is allowed to modify the requested rectangle, in
  114. * which case @a rect is updated with the modifications.
  115. *
  116. * @a which is set to V4L2_SUBDEV_FORMAT_TRY to set the try crop rectangle
  117. * stored in the file handle, of V4L2_SUBDEV_FORMAT_ACTIVE to configure the
  118. * device with an active crop rectangle.
  119. *
  120. * @return 0 on success, or a negative error code on failure.
  121. */
  122. int v4l2_subdev_set_selection(struct media_entity *entity,
  123. struct v4l2_rect *rect, unsigned int pad, unsigned int target,
  124. enum v4l2_subdev_format_whence which);
  125. /**
  126. * @brief Query the digital video capabilities of a pad.
  127. * @param entity - subdev-device media entity.
  128. * @param cap - capabilities to be filled.
  129. *
  130. * Retrieve the digital video capabilities of the @a entity pad specified by
  131. * @a cap.pad and store it in the @a cap structure.
  132. *
  133. * @return 0 on success, or a negative error code on failure.
  134. */
  135. int v4l2_subdev_get_dv_timings_caps(struct media_entity *entity,
  136. struct v4l2_dv_timings_cap *caps);
  137. /**
  138. * @brief Query the digital video timings of a sub-device
  139. * @param entity - subdev-device media entity.
  140. * @param timings timings to be filled.
  141. *
  142. * Retrieve the detected digital video timings for the currently selected input
  143. * of @a entity and store them in the @a timings structure.
  144. *
  145. * @return 0 on success, or a negative error code on failure.
  146. */
  147. int v4l2_subdev_query_dv_timings(struct media_entity *entity,
  148. struct v4l2_dv_timings *timings);
  149. /**
  150. * @brief Get the current digital video timings of a sub-device
  151. * @param entity - subdev-device media entity.
  152. * @param timings timings to be filled.
  153. *
  154. * Retrieve the current digital video timings for the currently selected input
  155. * of @a entity and store them in the @a timings structure.
  156. *
  157. * @return 0 on success, or a negative error code on failure.
  158. */
  159. int v4l2_subdev_get_dv_timings(struct media_entity *entity,
  160. struct v4l2_dv_timings *timings);
  161. /**
  162. * @brief Set the digital video timings of a sub-device
  163. * @param entity - subdev-device media entity.
  164. * @param timings timings to be set.
  165. *
  166. * Set the digital video timings of @a entity to @a timings. The driver is
  167. * allowed to modify the requested format, in which case @a timings is updated
  168. * with the modifications.
  169. *
  170. * @return 0 on success, or a negative error code on failure.
  171. */
  172. int v4l2_subdev_set_dv_timings(struct media_entity *entity,
  173. struct v4l2_dv_timings *timings);
  174. /**
  175. * @brief Retrieve the frame interval on a sub-device.
  176. * @param entity - subdev-device media entity.
  177. * @param interval - frame interval to be filled.
  178. *
  179. * Retrieve the current frame interval on subdev @a entity and store it in the
  180. * @a interval structure.
  181. *
  182. * Frame interval retrieving is usually supported only on devices at the
  183. * beginning of video pipelines, such as sensors.
  184. *
  185. * @return 0 on success, or a negative error code on failure.
  186. */
  187. int v4l2_subdev_get_frame_interval(struct media_entity *entity,
  188. struct v4l2_fract *interval);
  189. /**
  190. * @brief Set the frame interval on a sub-device.
  191. * @param entity - subdev-device media entity.
  192. * @param interval - frame interval.
  193. *
  194. * Set the frame interval on subdev @a entity to @a interval. The driver is
  195. * allowed to modify the requested frame interval, in which case @a interval is
  196. * updated with the modifications.
  197. *
  198. * Frame interval setting is usually supported only on devices at the beginning
  199. * of video pipelines, such as sensors.
  200. *
  201. * @return 0 on success, or a negative error code on failure.
  202. */
  203. int v4l2_subdev_set_frame_interval(struct media_entity *entity,
  204. struct v4l2_fract *interval);
  205. /**
  206. * @brief Parse a string and apply format, crop and frame interval settings.
  207. * @param media - media device.
  208. * @param p - input string
  209. * @param endp - pointer to string p where parsing ended (return)
  210. *
  211. * Parse string @a p and apply format, crop and frame interval settings to a
  212. * subdev pad specified in @a p. @a endp will be written a pointer where
  213. * parsing of @a p ended.
  214. *
  215. * Format strings are separeted by commas (,).
  216. *
  217. * @return 0 on success, or a negative error code on failure.
  218. */
  219. int v4l2_subdev_parse_setup_formats(struct media_device *media, const char *p);
  220. /**
  221. * @brief Convert media bus pixel code to string.
  222. * @param code - input string
  223. *
  224. * Convert media bus pixel code @a code to a human-readable string.
  225. *
  226. * @return A pointer to a string on success, NULL on failure.
  227. */
  228. const char *v4l2_subdev_pixelcode_to_string(enum v4l2_mbus_pixelcode code);
  229. /**
  230. * @brief Parse string to media bus pixel code.
  231. * @param string - input string
  232. * @param length - length of the string
  233. *
  234. * Parse human readable string @a string to an media bus pixel code.
  235. *
  236. * @return media bus pixelcode on success, -1 on failure.
  237. */
  238. enum v4l2_mbus_pixelcode v4l2_subdev_string_to_pixelcode(const char *string,
  239. unsigned int length);
  240. /**
  241. * @brief Convert a field order to string.
  242. * @param field - field order
  243. *
  244. * Convert field order @a field to a human-readable string.
  245. *
  246. * @return A pointer to a string on success, NULL on failure.
  247. */
  248. const char *v4l2_subdev_field_to_string(enum v4l2_field field);
  249. /**
  250. * @brief Parse string to field order.
  251. * @param string - input string
  252. * @param length - length of the string
  253. *
  254. * Parse human readable string @a string to field order.
  255. *
  256. * @return field order on success, -1 on failure.
  257. */
  258. enum v4l2_field v4l2_subdev_string_to_field(const char *string,
  259. unsigned int length);
  260. #endif