video.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for Video.
  5. */
  6. /*
  7. * Copyright (c) 2019 Linaro Limited.
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_VIDEO_H_
  12. #define ZEPHYR_INCLUDE_VIDEO_H_
  13. /**
  14. * @brief Video Interface
  15. * @defgroup video_interface Video Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <device.h>
  20. #include <stddef.h>
  21. #include <zephyr.h>
  22. #include <zephyr/types.h>
  23. #include <drivers/video-controls.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /**
  28. * @brief video format structure
  29. *
  30. * Used to configure frame format.
  31. *
  32. * @param pixelformat is the fourcc pixel format value.
  33. * @param width is the frame width in pixels.
  34. * @param height is the frame height in pixels.
  35. * @param pitch is the line stride, the number of bytes that needs to be added
  36. * to the address in the first pixel of a row in order to go to the address
  37. * of the first pixel of the next row (>=width).
  38. */
  39. struct video_format {
  40. uint32_t pixelformat;
  41. uint32_t width;
  42. uint32_t height;
  43. uint32_t pitch;
  44. };
  45. /**
  46. * @brief video format capability
  47. *
  48. * Used to describe a video endpoint format capability.
  49. *
  50. * @param pixelformat is a list of supported pixel formats (0 terminated).
  51. * @param width_min is the minimum supported frame width.
  52. * @param width_max is the maximum supported frame width.
  53. * @param height_min is the minimum supported frame width.
  54. * @param height_max is the maximum supported frame width.
  55. * @param width_step is the width step size.
  56. * @param height_step is the height step size.
  57. */
  58. struct video_format_cap {
  59. uint32_t pixelformat;
  60. uint32_t width_min;
  61. uint32_t width_max;
  62. uint32_t height_min;
  63. uint32_t height_max;
  64. uint16_t width_step;
  65. uint16_t height_step;
  66. };
  67. /**
  68. * @brief video capabilities
  69. *
  70. * Used to describe video endpoint capabilities.
  71. *
  72. * @param format_caps is a list of video format capabilities (zero terminated).
  73. * @param min_vbuf_count is the minimal count of video buffers to enqueue
  74. * before being able to start the stream.
  75. */
  76. struct video_caps {
  77. const struct video_format_cap *format_caps;
  78. uint8_t min_vbuf_count;
  79. };
  80. /**
  81. * @brief video buffer structure
  82. *
  83. * Represent a video frame.
  84. *
  85. * @param driver_data is a pointer to driver specific data.
  86. * @param buffer is a pointer to the start of the buffer.
  87. * @param size is the size in bytes of the buffer.
  88. * @param bytesused is the number of bytes occupied by the valid data in
  89. * the buffer.
  90. * @param timestamp is a time reference in milliseconds at which the last data
  91. * byte was actually received for input endpoints or to be consumed for
  92. * output endpoints.
  93. */
  94. struct video_buffer {
  95. void *driver_data;
  96. uint8_t *buffer;
  97. uint32_t size;
  98. uint32_t bytesused;
  99. uint32_t timestamp;
  100. };
  101. /**
  102. * @brief video_endpoint_id enum
  103. * Identify the video device endpoint.
  104. */
  105. enum video_endpoint_id {
  106. VIDEO_EP_NONE,
  107. VIDEO_EP_ANY,
  108. VIDEO_EP_IN,
  109. VIDEO_EP_OUT,
  110. };
  111. /**
  112. * @brief video_event enum
  113. * Identify video event.
  114. */
  115. enum video_signal_result {
  116. VIDEO_BUF_DONE,
  117. VIDEO_BUF_ABORTED,
  118. VIDEO_BUF_ERROR,
  119. };
  120. /**
  121. * @typedef video_api_set_format_t
  122. * @brief Set video format
  123. * See video_set_format() for argument descriptions.
  124. */
  125. typedef int (*video_api_set_format_t)(const struct device *dev,
  126. enum video_endpoint_id ep,
  127. struct video_format *fmt);
  128. /**
  129. * @typedef video_api_get_format_t
  130. * @brief get current video format
  131. * See video_get_format() for argument descriptions.
  132. */
  133. typedef int (*video_api_get_format_t)(const struct device *dev,
  134. enum video_endpoint_id ep,
  135. struct video_format *fmt);
  136. /**
  137. * @typedef video_api_enqueue_t
  138. * @brief Enqueue a buffer in the driver’s incoming queue.
  139. * See video_enqueue() for argument descriptions.
  140. */
  141. typedef int (*video_api_enqueue_t)(const struct device *dev,
  142. enum video_endpoint_id ep,
  143. struct video_buffer *buf);
  144. /**
  145. * @typedef video_api_dequeue_t
  146. * @brief Dequeue a buffer from the driver’s outgoing queue.
  147. * See video_dequeue() for argument descriptions.
  148. */
  149. typedef int (*video_api_dequeue_t)(const struct device *dev,
  150. enum video_endpoint_id ep,
  151. struct video_buffer **buf,
  152. k_timeout_t timeout);
  153. /**
  154. * @typedef video_api_flush_t
  155. * @brief Flush endpoint buffers, buffer are moved from incoming queue to
  156. * outgoing queue.
  157. * See video_flush() for argument descriptions.
  158. */
  159. typedef int (*video_api_flush_t)(const struct device *dev,
  160. enum video_endpoint_id ep,
  161. bool cancel);
  162. /**
  163. * @typedef video_api_stream_start_t
  164. * @brief Start the capture or output process.
  165. * See video_stream_start() for argument descriptions.
  166. */
  167. typedef int (*video_api_stream_start_t)(const struct device *dev);
  168. /**
  169. * @typedef video_api_stream_stop_t
  170. * @brief Stop the capture or output process.
  171. * See video_stream_stop() for argument descriptions.
  172. */
  173. typedef int (*video_api_stream_stop_t)(const struct device *dev);
  174. /**
  175. * @typedef video_api_set_ctrl_t
  176. * @brief set a video control value.
  177. * See video_set_ctrl() for argument descriptions.
  178. */
  179. typedef int (*video_api_set_ctrl_t)(const struct device *dev,
  180. unsigned int cid,
  181. void *value);
  182. /**
  183. * @typedef video_api_get_ctrl_t
  184. * @brief get a video control value.
  185. * See video_get_ctrl() for argument descriptions.
  186. */
  187. typedef int (*video_api_get_ctrl_t)(const struct device *dev,
  188. unsigned int cid,
  189. void *value);
  190. /**
  191. * @typedef video_api_get_caps_t
  192. * @brief Get capabilities of a video endpoint.
  193. * See video_get_caps() for argument descriptions.
  194. */
  195. typedef int (*video_api_get_caps_t)(const struct device *dev,
  196. enum video_endpoint_id ep,
  197. struct video_caps *caps);
  198. /**
  199. * @typedef video_api_set_signal_t
  200. * @brief Register/Unregister poll signal for buffer events.
  201. * See video_set_signal() for argument descriptions.
  202. */
  203. typedef int (*video_api_set_signal_t)(const struct device *dev,
  204. enum video_endpoint_id ep,
  205. struct k_poll_signal *signal);
  206. struct video_driver_api {
  207. /* mandatory callbacks */
  208. video_api_set_format_t set_format;
  209. video_api_get_format_t get_format;
  210. video_api_stream_start_t stream_start;
  211. video_api_stream_stop_t stream_stop;
  212. video_api_get_caps_t get_caps;
  213. /* optional callbacks */
  214. video_api_enqueue_t enqueue;
  215. video_api_dequeue_t dequeue;
  216. video_api_flush_t flush;
  217. video_api_set_ctrl_t set_ctrl;
  218. video_api_set_ctrl_t get_ctrl;
  219. video_api_set_signal_t set_signal;
  220. };
  221. /**
  222. * @brief Set video format.
  223. *
  224. * Configure video device with a specific format.
  225. *
  226. * @param dev Pointer to the device structure for the driver instance.
  227. * @param ep Endpoint ID.
  228. * @param fmt Pointer to a video format struct.
  229. *
  230. * @retval 0 Is successful.
  231. * @retval -EINVAL If parameters are invalid.
  232. * @retval -ENOTSUP If format is not supported.
  233. * @retval -EIO General input / output error.
  234. */
  235. static inline int video_set_format(const struct device *dev,
  236. enum video_endpoint_id ep,
  237. struct video_format *fmt)
  238. {
  239. const struct video_driver_api *api =
  240. (const struct video_driver_api *)dev->api;
  241. if (api->set_format == NULL) {
  242. return -ENOSYS;
  243. }
  244. return api->set_format(dev, ep, fmt);
  245. }
  246. /**
  247. * @brief Get video format.
  248. *
  249. * Get video device current video format.
  250. *
  251. * @param dev Pointer to the device structure for the driver instance.
  252. * @param ep Endpoint ID.
  253. * @param fmt Pointer to video format struct.
  254. *
  255. * @retval pointer to video format
  256. */
  257. static inline int video_get_format(const struct device *dev,
  258. enum video_endpoint_id ep,
  259. struct video_format *fmt)
  260. {
  261. const struct video_driver_api *api =
  262. (const struct video_driver_api *)dev->api;
  263. if (api->get_format == NULL) {
  264. return -ENOSYS;
  265. }
  266. return api->get_format(dev, ep, fmt);
  267. }
  268. /**
  269. * @brief Enqueue a video buffer.
  270. *
  271. * Enqueue an empty (capturing) or filled (output) video buffer in the driver’s
  272. * endpoint incoming queue.
  273. *
  274. * @param dev Pointer to the device structure for the driver instance.
  275. * @param ep Endpoint ID.
  276. * @param buf Pointer to the video buffer.
  277. *
  278. * @retval 0 Is successful.
  279. * @retval -EINVAL If parameters are invalid.
  280. * @retval -EIO General input / output error.
  281. */
  282. static inline int video_enqueue(const struct device *dev,
  283. enum video_endpoint_id ep,
  284. struct video_buffer *buf)
  285. {
  286. const struct video_driver_api *api =
  287. (const struct video_driver_api *)dev->api;
  288. if (api->enqueue == NULL) {
  289. return -ENOSYS;
  290. }
  291. return api->enqueue(dev, ep, buf);
  292. }
  293. /**
  294. * @brief Dequeue a video buffer.
  295. *
  296. * Dequeue a filled (capturing) or displayed (output) buffer from the driver’s
  297. * enpoint outgoing queue.
  298. *
  299. * @param dev Pointer to the device structure for the driver instance.
  300. * @param ep Endpoint ID.
  301. * @param buf Pointer a video buffer pointer.
  302. * @param timeout Timeout
  303. *
  304. * @retval 0 Is successful.
  305. * @retval -EINVAL If parameters are invalid.
  306. * @retval -EIO General input / output error.
  307. */
  308. static inline int video_dequeue(const struct device *dev,
  309. enum video_endpoint_id ep,
  310. struct video_buffer **buf,
  311. k_timeout_t timeout)
  312. {
  313. const struct video_driver_api *api =
  314. (const struct video_driver_api *)dev->api;
  315. if (api->dequeue == NULL) {
  316. return -ENOSYS;
  317. }
  318. return api->dequeue(dev, ep, buf, timeout);
  319. }
  320. /**
  321. * @brief Flush endpoint buffers.
  322. *
  323. * A call to flush finishes when all endpoint buffers have been moved from
  324. * incoming queue to outgoing queue. Either because canceled or fully processed
  325. * through the video function.
  326. *
  327. * @param dev Pointer to the device structure for the driver instance.
  328. * @param ep Endpoint ID.
  329. * @param cancel If true, cancel buffer processing instead of waiting for
  330. * completion.
  331. *
  332. * @retval 0 Is successful, -ERRNO code otherwise.
  333. */
  334. static inline int video_flush(const struct device *dev,
  335. enum video_endpoint_id ep,
  336. bool cancel)
  337. {
  338. const struct video_driver_api *api =
  339. (const struct video_driver_api *)dev->api;
  340. if (api->flush == NULL) {
  341. return -ENOSYS;
  342. }
  343. return api->flush(dev, ep, cancel);
  344. }
  345. /**
  346. * @brief Start the video device function.
  347. *
  348. * video_stream_start is called to enter ‘streaming’ state (capture, output...).
  349. * The driver may receive buffers with video_enqueue() before video_stream_start
  350. * is called. If driver/device needs a minimum number of buffers before being
  351. * able to start streaming, then driver set the min_vbuf_count to the related
  352. * endpoint capabilities.
  353. *
  354. * @retval 0 Is successful.
  355. * @retval -EIO General input / output error.
  356. */
  357. static inline int video_stream_start(const struct device *dev)
  358. {
  359. const struct video_driver_api *api =
  360. (const struct video_driver_api *)dev->api;
  361. if (api->stream_start == NULL) {
  362. return -ENOSYS;
  363. }
  364. return api->stream_start(dev);
  365. }
  366. /**
  367. * @brief Stop the video device function.
  368. *
  369. * On video_stream_stop, driver must stop any transactions or wait until they
  370. * finish.
  371. *
  372. * @retval 0 Is successful.
  373. * @retval -EIO General input / output error.
  374. */
  375. static inline int video_stream_stop(const struct device *dev)
  376. {
  377. const struct video_driver_api *api =
  378. (const struct video_driver_api *)dev->api;
  379. int ret;
  380. if (api->stream_stop) {
  381. return -ENOSYS;
  382. }
  383. ret = api->stream_stop(dev);
  384. video_flush(dev, VIDEO_EP_ANY, true);
  385. return ret;
  386. }
  387. /**
  388. * @brief Get the capabilities of a video endpoint.
  389. *
  390. * @param dev Pointer to the device structure for the driver instance.
  391. * @param ep Endpoint ID.
  392. * @param caps Pointer to the video_caps struct to fill.
  393. *
  394. * @retval 0 Is successful, -ERRNO code otherwise.
  395. */
  396. static inline int video_get_caps(const struct device *dev,
  397. enum video_endpoint_id ep,
  398. struct video_caps *caps)
  399. {
  400. const struct video_driver_api *api =
  401. (const struct video_driver_api *)dev->api;
  402. if (api->get_caps == NULL) {
  403. return -ENOSYS;
  404. }
  405. return api->get_caps(dev, ep, caps);
  406. }
  407. /**
  408. * @brief Set the value of a control.
  409. *
  410. * This set the value of a video control, value type depends on control ID, and
  411. * must be interpreted accordingly.
  412. *
  413. * @param dev Pointer to the device structure for the driver instance.
  414. * @param cid Control ID.
  415. * @param value Pointer to the control value.
  416. *
  417. * @retval 0 Is successful.
  418. * @retval -EINVAL If parameters are invalid.
  419. * @retval -ENOTSUP If format is not supported.
  420. * @retval -EIO General input / output error.
  421. */
  422. static inline int video_set_ctrl(const struct device *dev, unsigned int cid,
  423. void *value)
  424. {
  425. const struct video_driver_api *api =
  426. (const struct video_driver_api *)dev->api;
  427. if (api->set_ctrl == NULL) {
  428. return -ENOSYS;
  429. }
  430. return api->set_ctrl(dev, cid, value);
  431. }
  432. /**
  433. * @brief Get the current value of a control.
  434. *
  435. * This retrieve the value of a video control, value type depends on control ID,
  436. * and must be interpreted accordingly.
  437. *
  438. * @param dev Pointer to the device structure for the driver instance.
  439. * @param cid Control ID.
  440. * @param value Pointer to the control value.
  441. *
  442. * @retval 0 Is successful.
  443. * @retval -EINVAL If parameters are invalid.
  444. * @retval -ENOTSUP If format is not supported.
  445. * @retval -EIO General input / output error.
  446. */
  447. static inline int video_get_ctrl(const struct device *dev, unsigned int cid,
  448. void *value)
  449. {
  450. const struct video_driver_api *api =
  451. (const struct video_driver_api *)dev->api;
  452. if (api->get_ctrl == NULL) {
  453. return -ENOSYS;
  454. }
  455. return api->get_ctrl(dev, cid, value);
  456. }
  457. /**
  458. * @brief Register/Unregister k_poll signal for a video endpoint.
  459. *
  460. * Register a poll signal to the endpoint, which will be signaled on frame
  461. * completion (done, aborted, error). Registering a NULL poll signal
  462. * unregisters any previously registered signal.
  463. *
  464. * @param dev Pointer to the device structure for the driver instance.
  465. * @param ep Endpoint ID.
  466. * @param signal Pointer to k_poll_signal
  467. *
  468. * @retval 0 Is successful, -ERRNO code otherwise.
  469. */
  470. static inline int video_set_signal(const struct device *dev,
  471. enum video_endpoint_id ep,
  472. struct k_poll_signal *signal)
  473. {
  474. const struct video_driver_api *api =
  475. (const struct video_driver_api *)dev->api;
  476. if (api->set_signal == NULL) {
  477. return -ENOSYS;
  478. }
  479. return api->set_signal(dev, ep, signal);
  480. }
  481. /**
  482. * @brief Allocate video buffer.
  483. *
  484. * @param size Size of the video buffer.
  485. *
  486. * @retval pointer to allocated video buffer
  487. */
  488. struct video_buffer *video_buffer_alloc(size_t size);
  489. /**
  490. * @brief Release a video buffer.
  491. *
  492. * @param buf Pointer to the video buffer to release.
  493. */
  494. void video_buffer_release(struct video_buffer *buf);
  495. /* fourcc - four-character-code */
  496. #define video_fourcc(a, b, c, d)\
  497. ((uint32_t)(a) | ((uint32_t)(b) << 8) | ((uint32_t)(c) << 16) | ((uint32_t)(d) << 24))
  498. /* Raw bayer formats */
  499. #define VIDEO_PIX_FMT_BGGR8 video_fourcc('B', 'G', 'G', 'R') /* 8 BGBG.. GRGR.. */
  500. #define VIDEO_PIX_FMT_GBRG8 video_fourcc('G', 'B', 'R', 'G') /* 8 GBGB.. RGRG.. */
  501. #define VIDEO_PIX_FMT_GRBG8 video_fourcc('G', 'R', 'B', 'G') /* 8 GRGR.. BGBG.. */
  502. #define VIDEO_PIX_FMT_RGGB8 video_fourcc('R', 'G', 'G', 'B') /* 8 RGRG.. GBGB.. */
  503. /* RGB formats */
  504. #define VIDEO_PIX_FMT_RGB565 video_fourcc('R', 'G', 'B', 'P') /* 16 RGB-5-6-5 */
  505. /* JPEG formats */
  506. #define VIDEO_PIX_FMT_JPEG video_fourcc('J', 'P', 'E', 'G') /* 8 JPEG */
  507. #ifdef __cplusplus
  508. }
  509. #endif
  510. /**
  511. * @}
  512. */
  513. #endif /* ZEPHYR_INCLUDE_VIDEO_H_ */