display_engine.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for display engine drivers
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_ENGINE_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_ENGINE_H_
  12. #include <kernel.h>
  13. #include <device.h>
  14. #include <zephyr/types.h>
  15. #include <drivers/cfg_drv/dev_config.h>
  16. #include "display_graphics.h"
  17. /**
  18. * @brief Display Engine Interface
  19. * @defgroup display_engine_interface Display Engine Interface
  20. * @ingroup display_interfaces
  21. * @{
  22. */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* open flags of display engine */
  27. #define DISPLAY_ENGINE_FLAG_HIGH_PRIO BIT(0)
  28. #define DISPLAY_ENGINE_FLAG_POST BIT(1) /* For display post */
  29. /**
  30. * @enum display_engine_mode_type
  31. * @brief Enumeration with possible display engine modes
  32. *
  33. */
  34. enum display_engine_mode_type {
  35. DISPLAY_ENGINE_MODE_DEFAULT = 0,
  36. DISPLAY_ENGINE_MODE_DISPLAY_ONLY,
  37. };
  38. /**
  39. * @enum display_engine_ctrl_type
  40. * @brief Enumeration with possible display engine ctrl command
  41. *
  42. */
  43. enum display_engine_ctrl_type {
  44. DISPLAY_ENGINE_CTRL_DISPLAY_PORT = 0, /* configure display video port */
  45. DISPLAY_ENGINE_CTRL_DISPLAY_MODE, /* configure display video mode */
  46. /* prepare display refreshing.
  47. * arg1 is the callback function, arg2 must point to the display device structure
  48. */
  49. DISPLAY_ENGINE_CTRL_DISPLAY_PREPARE_CB,
  50. /* start display refreshing
  51. * arg1 is the callback function, arg2 must point to the display device structure
  52. */
  53. DISPLAY_ENGINE_CTRL_DISPLAY_START_CB,
  54. /* stop display refreshing during sync mode
  55. * arg1 is the timeout in milliseconds
  56. */
  57. DISPLAY_ENGINE_CTRL_DISPLAY_SYNC_STOP,
  58. /* work mode
  59. */
  60. DISPLAY_ENGINE_CTRL_WORK_MODE,
  61. };
  62. /**
  63. * @struct display_engine_capabilities
  64. * @brief Structure holding display engine capabilities
  65. *
  66. * @var uint8_t display_engine_capabilities::num_overlays
  67. * Maximum number of overlays supported
  68. *
  69. * @var uint16_t display_engine_capabilities::max_width
  70. * X Resolution at maximum
  71. *
  72. * @var uint16_t display_engine_capabilities::max_height
  73. * Y Resolution at maximum
  74. *
  75. * @var uint8_t display_engine_capabilities::support_blend_fg
  76. * Blending constant fg color supported
  77. *
  78. * @var uint8_t display_engine_capabilities::support_blend_b
  79. * Blending constant bg color supported
  80. *
  81. * @var uint32_t display_engine_capabilities::supported_input_pixel_formats
  82. * Bitwise or of input pixel formats supported by the display engine
  83. *
  84. * @var uint32_t display_engine_capabilities::supported_output_pixel_formats
  85. * Bitwise or of output pixel formats supported by the display engine
  86. *
  87. * @var uint32_t display_engine_capabilities::supported_rotate_pixel_formats
  88. * Bitwise or of rotation pixel formats supported by the display engine
  89. *
  90. */
  91. struct display_engine_capabilities {
  92. uint16_t max_width;
  93. uint16_t max_height;
  94. uint16_t max_pitch;
  95. uint16_t num_overlays : 3;
  96. uint16_t support_fill : 1;
  97. uint16_t support_blend : 1;
  98. uint16_t support_blend_fg : 1;
  99. uint16_t support_blend_bg : 1;
  100. uint32_t supported_input_pixel_formats;
  101. uint32_t supported_output_pixel_formats;
  102. uint32_t supported_rotate_pixel_formats;
  103. };
  104. /**
  105. * @struct display_engine_rotate_circle
  106. * @brief Structure holding display engine rotation configuration
  107. *
  108. */
  109. typedef struct display_engine_rotate_param {
  110. uint32_t is_circle : 1;
  111. uint32_t blend_en : 1;
  112. /*
  113. * the ARGB-8888 color value combined fill color with global alpha, where
  114. * 1) RGB channels plus fixed Alpha 0x00 as the fill color
  115. * 2) A channel as the global alpha applied to both src image and fill color area
  116. */
  117. display_color_t color;
  118. /* transform mapping parameters */
  119. display_matrix_t matrix;
  120. union {
  121. struct {
  122. /* line range [line_start, line_start + dest_height) to do rotation */
  123. uint16_t line_start;
  124. /*
  125. * The ring area is decided by outer_radius_sq and inner_radius_sq, and the pixles
  126. * outside the ring will be filled with fill_color if enable.
  127. *
  128. * The outer_diameter must be equal to the width - 1 of the source image
  129. */
  130. uint32_t outer_radius_sq; /* outer circle radius square in .2 fixedpoint format */
  131. uint32_t inner_radius_sq; /* inner circle radius square in .2 fixedpoint format */
  132. } circle;
  133. };
  134. } display_engine_transform_param_t;
  135. /**
  136. * @typedef display_engine_prepare_display_t
  137. * @brief Callback API executed when display engine prepare refreshing the display
  138. *
  139. */
  140. typedef void (*display_engine_prepare_display_t)(void *arg, const display_rect_t *area);
  141. /**
  142. * @typedef display_engine_start_display_t
  143. * @brief Callback API executed when display engine start refreshing the display
  144. *
  145. */
  146. typedef void (*display_engine_start_display_t)(void *arg);
  147. /**
  148. * @typedef display_engine_instance_callback_t
  149. * @brief Callback API executed when any display engine instance transfer complete or error
  150. *
  151. */
  152. typedef void (*display_engine_instance_callback_t)(int err_code, uint16_t cmd_seq, void *user_data);
  153. /**
  154. * @typedef display_engine_control_api
  155. * @brief Callback API to control display engine device
  156. * See display_engine_control() for argument description
  157. */
  158. typedef int (*display_engine_control_api)(const struct device *dev,
  159. int cmd, void *arg1, void *arg2);
  160. /**
  161. * @typedef display_engine_open_api
  162. * @brief Callback API to open display engine
  163. * See display_engine_open() for argument description
  164. */
  165. typedef int (*display_engine_open_api)(const struct device *dev, uint32_t flags);
  166. /**
  167. * @typedef display_engine_close_api
  168. * @brief Callback API to close display engine
  169. * See display_engine_close() for argument description
  170. */
  171. typedef int (*display_engine_close_api)(const struct device *dev, int inst);
  172. /**
  173. * @typedef display_engine_get_capabilities_api
  174. * @brief Callback API to get display engine capabilities
  175. * See display_engine_get_capabilities() for argument description
  176. */
  177. typedef void (*display_engine_get_capabilities_api)(const struct device *dev,
  178. struct display_engine_capabilities *capabilities);
  179. /**
  180. * @typedef display_engine_register_callback_api
  181. * @brief Callback API to register instance callback
  182. * See display_engine_register_callback() for argument description
  183. */
  184. typedef int (*display_engine_register_callback_api)(const struct device *dev,
  185. int inst, display_engine_instance_callback_t callback, void *user_data);
  186. /**
  187. * @typedef display_engine_fill_api
  188. * @brief Callback API to fill color using display engine
  189. * See display_engine_fill() for argument description
  190. */
  191. typedef int (*display_engine_fill_api)(const struct device *dev,
  192. int inst, const display_buffer_t *dest, display_color_t color);
  193. /**
  194. * @typedef display_engine_blit_api
  195. * @brief Callback API to blit using display engine
  196. * See display_engine_blit() for argument description
  197. */
  198. typedef int (*display_engine_blit_api)(const struct device *dev,
  199. int inst, const display_buffer_t *dest, const display_buffer_t *src);
  200. /**
  201. * @typedef display_engine_blend_api
  202. * @brief Callback API to blend using display engine
  203. * See display_engine_blend() for argument description
  204. */
  205. typedef int (*display_engine_blend_api)(const struct device *dev,
  206. int inst, const display_buffer_t *dest,
  207. const display_buffer_t *fg, display_color_t fg_color,
  208. const display_buffer_t *bg, display_color_t bg_color);
  209. /**
  210. * @typedef display_engine_transform_api
  211. * @brief Callback API to transform using display engine
  212. * See display_engine_transform() for argument description
  213. */
  214. typedef int (*display_engine_transform_api)(const struct device *dev,
  215. int inst, const display_buffer_t *dest, const display_buffer_t *src,
  216. const display_engine_transform_param_t *param);
  217. /**
  218. * @typedef display_engine_compose_api
  219. * @brief Callback API to compose using display engine
  220. * See display_engine_compose() for argument description
  221. */
  222. typedef int (*display_engine_compose_api)(const struct device *dev,
  223. int inst, const display_buffer_t *target,
  224. const display_layer_t *layers, int num_ovls);
  225. /**
  226. * @typedef display_engine_set_clut_api
  227. * @brief Callback API to set CLUT
  228. * See display_engine_set_clut() for argument description
  229. */
  230. typedef int (*display_engine_set_clut_api)(const struct device *dev,
  231. int inst, uint16_t layer_idx, uint16_t size, const uint32_t *clut);
  232. /**
  233. * @typedef display_engine_poll_api
  234. * @brief Callback API to poll complete of display engine
  235. * See display_engine_poll() for argument description
  236. */
  237. typedef int (*display_engine_poll_api)(const struct device *dev,
  238. int inst, int timeout_ms);
  239. /**
  240. * @brief Display Engine driver API
  241. * API which a display engine driver should expose
  242. */
  243. struct display_engine_driver_api {
  244. display_engine_control_api control;
  245. display_engine_open_api open;
  246. display_engine_close_api close;
  247. display_engine_get_capabilities_api get_capabilities;
  248. display_engine_register_callback_api register_callback;
  249. display_engine_fill_api fill;
  250. display_engine_blit_api blit;
  251. display_engine_blend_api blend;
  252. display_engine_transform_api transform;
  253. display_engine_compose_api compose;
  254. display_engine_set_clut_api set_clut;
  255. display_engine_poll_api poll;
  256. };
  257. /**
  258. * @brief Control display engine
  259. *
  260. * @param dev Pointer to device structure
  261. * @param cmd Control command
  262. * @param arg1 Control command argument 1
  263. * @param arg2 Control command argument 2
  264. *
  265. * @retval 0 on success else negative errno code.
  266. */
  267. static inline int display_engine_control(const struct device *dev, int cmd,
  268. void *arg1, void *arg2)
  269. {
  270. struct display_engine_driver_api *api =
  271. (struct display_engine_driver_api *)dev->api;
  272. if (api->control) {
  273. return api->control(dev, cmd, arg1, arg2);
  274. }
  275. return -ENOTSUP;
  276. }
  277. /**
  278. * @brief Open display engine
  279. *
  280. * The instance is not thread safe, and must be referred in the same thread.
  281. *
  282. * @param dev Pointer to device structure
  283. * @param flags flags to display engine
  284. *
  285. * @retval instance id on success else negative errno code.
  286. */
  287. static inline int display_engine_open(const struct device *dev, uint32_t flags)
  288. {
  289. struct display_engine_driver_api *api =
  290. (struct display_engine_driver_api *)dev->api;
  291. return api->open(dev, flags);
  292. }
  293. /**
  294. * @brief Close display engine
  295. *
  296. * The caller must make sure all the commands belong to the inst have completed before close.
  297. *
  298. * @param dev Pointer to device structure
  299. * @param inst instance id return in open()
  300. *
  301. * @retval 0 on success else negative errno code.
  302. */
  303. static inline int display_engine_close(const struct device *dev, int inst)
  304. {
  305. struct display_engine_driver_api *api =
  306. (struct display_engine_driver_api *)dev->api;
  307. return api->close(dev, inst);
  308. }
  309. /**
  310. * @brief Get display engine capabilities
  311. *
  312. * @param dev Pointer to device structure
  313. * @param capabilities Pointer to capabilities structure to populate
  314. */
  315. static inline void display_engine_get_capabilities(const struct device *dev,
  316. struct display_engine_capabilities *capabilities)
  317. {
  318. struct display_engine_driver_api *api =
  319. (struct display_engine_driver_api *)dev->api;
  320. api->get_capabilities(dev, capabilities);
  321. }
  322. /**
  323. * @brief Register display engine instance callback
  324. *
  325. * This procedure will only succeed when display engine instance is not busy, and the
  326. * registered callback may be called in isr.
  327. *
  328. * @param dev Pointer to device structure
  329. * @param inst Instance id returned in open()
  330. * @param callback callback function
  331. * @param user_data callback parameter "user_data"
  332. *
  333. * @retval 0 on success else negative errno code.
  334. */
  335. static inline int display_engine_register_callback(const struct device *dev,
  336. int inst, display_engine_instance_callback_t callback, void *user_data)
  337. {
  338. struct display_engine_driver_api *api =
  339. (struct display_engine_driver_api *)dev->api;
  340. return api->register_callback(dev, inst, callback, user_data);
  341. }
  342. /**
  343. * @brief Fill color
  344. *
  345. * @param dev Pointer to device structure
  346. * @param inst Instance id returned in open()
  347. * @param dest Pointer to the filling display framebuffer
  348. * @param color The filling color
  349. *
  350. * @retval command sequence (uint16_t) on success else negative errno code.
  351. */
  352. static inline int display_engine_fill(const struct device *dev,
  353. int inst, const display_buffer_t *dest, display_color_t color)
  354. {
  355. struct display_engine_driver_api *api =
  356. (struct display_engine_driver_api *)dev->api;
  357. return api->fill(dev, inst, dest, color);
  358. }
  359. /**
  360. * @brief Blit source fb to destination fb
  361. *
  362. * @param dev Pointer to device structure
  363. * @param inst Instance id returned in open()
  364. * @param dest Pointer to the destination fb
  365. * @param src Pointer to the source fb
  366. *
  367. * @retval command sequence (uint16_t) on success else negative errno code.
  368. */
  369. static inline int display_engine_blit(const struct device *dev,
  370. int inst, const display_buffer_t *dest, const display_buffer_t *src)
  371. {
  372. struct display_engine_driver_api *api =
  373. (struct display_engine_driver_api *)dev->api;
  374. return api->blit(dev, inst, dest, src);
  375. }
  376. /**
  377. * @brief Blending source fb over destination fb
  378. *
  379. * @param dev Pointer to device structure
  380. * @param inst Instance id returned in open()
  381. * @param dest Pointer to the destination fb
  382. * @param fg Pointer to the foreground fb, can be NULL
  383. * @param fg_color Foreground color
  384. 1) used as fg plane color, when fg is NULL
  385. 2) used as fg pixel rgb color component, when fg format is A8 (A4/1 not allowed)
  386. 3) used as fg plane alpha, when fg format is not A8
  387. * @param bg Pointer to the background fb
  388. * @param bg Background color
  389. 1) used as bg plane color, when fg is NULL
  390. 2) used as bg pixel rgb color component, when fg format is A8 (A4/1 not allowed)
  391. 3) used as bg plane alpha, when fg format is not A8
  392. * @param plane_alpha plane alpha applied to blending
  393. *
  394. * @retval command sequence (uint16_t) on success else negative errno code.
  395. */
  396. static inline int display_engine_blend(const struct device *dev,
  397. int inst, const display_buffer_t *dest,
  398. const display_buffer_t *fg, display_color_t fg_color,
  399. const display_buffer_t *bg, display_color_t bg_color)
  400. {
  401. struct display_engine_driver_api *api =
  402. (struct display_engine_driver_api *)dev->api;
  403. return api->blend(dev, inst, dest, fg, fg_color, bg, bg_color);
  404. }
  405. /**
  406. * @brief Transform an image to a framebuffer
  407. *
  408. * @param dev Pointer to device structure
  409. * @param inst Instance id returned in open()
  410. * @param dest Pointer to the destination fb
  411. * @param param Pointer to structure display_engine_rotate_param
  412. * @param src Pointer to the source fb whose address must be the origin image address before transformation
  413. * @retval command sequence (uint16_t) on success else negative errno code.
  414. */
  415. static inline int display_engine_transform(const struct device *dev,
  416. int inst, const display_buffer_t *dest, const display_buffer_t *src,
  417. const display_engine_transform_param_t *param)
  418. {
  419. struct display_engine_driver_api *api =
  420. (struct display_engine_driver_api *)dev->api;
  421. if (api->transform) {
  422. return api->transform(dev, inst, dest, src, param);
  423. }
  424. return -ENOTSUP;
  425. }
  426. /**
  427. * @brief Composing layers to diplay device or target framebuffer
  428. *
  429. * @param dev Pointer to device structure
  430. * @param inst Instance id returned in open()
  431. * @param target Target buffer, set NULL if output to display device
  432. * @param layers Array of layers
  433. * @param num_layers Number of layers
  434. *
  435. * @retval command sequence (uint16_t) on success else negative errno code.
  436. */
  437. static inline int display_engine_compose(const struct device *dev,
  438. int inst, const display_buffer_t *target,
  439. const display_layer_t *layers, int num_layers)
  440. {
  441. struct display_engine_driver_api *api =
  442. (struct display_engine_driver_api *)dev->api;
  443. return api->compose(dev, inst, target, layers, num_layers);
  444. }
  445. /**
  446. * @brief Composing layers to diplay device or target framebuffer
  447. *
  448. * @param dev Pointer to device structure
  449. * @param inst Instance id returned in open()
  450. * @param layer_idx layer index to upload clut
  451. * @param size Number of colors in the color look up table
  452. * @param clut Pointer to the color look up table
  453. *
  454. * @retval command sequence (uint16_t) on success else negative errno code.
  455. */
  456. static inline int display_engine_set_clut(const struct device *dev,
  457. int inst, uint16_t layer_idx, uint16_t size, const uint32_t *clut)
  458. {
  459. struct display_engine_driver_api *api =
  460. (struct display_engine_driver_api *)dev->api;
  461. if (api->set_clut) {
  462. return api->set_clut(dev, inst, layer_idx, size, clut);
  463. }
  464. return -ENOTSUP;
  465. }
  466. /**
  467. * @brief Polling display engine complete
  468. *
  469. * @param dev Pointer to device structure
  470. * @param inst Instance id returned in open()
  471. * @param timeout_ms Timeout duration in milliseconds
  472. *
  473. * @retval 0 on success else negative errno code.
  474. */
  475. static inline int display_engine_poll(const struct device *dev,
  476. int inst, int timeout_ms)
  477. {
  478. struct display_engine_driver_api *api =
  479. (struct display_engine_driver_api *)dev->api;
  480. return api->poll(dev, inst, timeout_ms);
  481. }
  482. #ifdef __cplusplus
  483. }
  484. #endif
  485. /**
  486. * @}
  487. */
  488. #endif /* ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_ENGINE_H_ */