ui_surface.h 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief display surface interface
  9. */
  10. #ifndef ZEPHYR_FRAMEWORK_INCLUDE_DISPLAY_UI_SURFACE_H_
  11. #define ZEPHYR_FRAMEWORK_INCLUDE_DISPLAY_UI_SURFACE_H_
  12. #include <os_common_api.h>
  13. #include <display/graphic_buffer.h>
  14. /**
  15. * @defgroup ui_surface_apis UI Surface APIs
  16. * @ingroup system_apis
  17. * @{
  18. */
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22. #ifdef CONFIG_SURFACE_DOUBLE_BUFFER
  23. # define CONFIG_SURFACE_MAX_BUFFER_COUNT (2)
  24. #elif defined(CONFIG_SURFACE_SINGLE_BUFFER)
  25. # define CONFIG_SURFACE_MAX_BUFFER_COUNT (1)
  26. #else
  27. # define CONFIG_SURFACE_MAX_BUFFER_COUNT (0)
  28. #endif
  29. /**
  30. * @enum surface_event_id
  31. * @brief Enumeration with possible surface event
  32. *
  33. */
  34. enum surface_event_id {
  35. /* ready to accept next draw */
  36. SURFACE_EVT_DRAW_READY = 0,
  37. /* check if current frame drawn dirty regions fully covers an area,
  38. * required to optimize the swapbuf copy in double buffer case.
  39. */
  40. SURFACE_EVT_DRAW_COVER_CHECK,
  41. SURFACE_EVT_POST_START,
  42. };
  43. /**
  44. * @enum surface_callback_id
  45. * @brief Enumeration with possible surface callback
  46. *
  47. */
  48. enum surface_callback_id {
  49. SURFACE_CB_DRAW = 0,
  50. SURFACE_CB_POST,
  51. SURFACE_NUM_CBS,
  52. };
  53. /**
  54. * @brief Enumeration with possible surface flags
  55. *
  56. */
  57. enum {
  58. /* both for orientation and update flags */
  59. SURFACE_ROTATED_90 = 0x01,
  60. SURFACE_ROTATED_180 = 0x02,
  61. SURFACE_ROTATED_270 = 0x03,
  62. SURFACE_ROTATED_MASK = 0x03,
  63. /* draw/update flags */
  64. SURFACE_FIRST_DRAW = 0x10, /* first draw in one frame */
  65. SURFACE_LAST_DRAW = 0x20, /* last draw in one frame */
  66. /* post flags */
  67. SURFACE_POST_IN_SYNC_MODE = 0x40, /* surface post in sync mode. */
  68. };
  69. /**
  70. * @struct surface_post_data
  71. * @brief Structure holding surface event data in callback SURFACE_CB_POST
  72. *
  73. */
  74. typedef struct surface_post_data {
  75. uint8_t flags;
  76. const ui_region_t *area;
  77. } surface_post_data_t;
  78. /**
  79. * @struct surface_cover_check_data
  80. * @brief Structure holding surface event data in callback SURFACE_EVT_DRAW_COVER_CHECK
  81. *
  82. */
  83. typedef struct surface_cover_check_data {
  84. const ui_region_t *area;
  85. bool covered; /* store the cover result with 'area' */
  86. } surface_cover_check_data_t;
  87. /**
  88. * @typedef surface_callback_t
  89. * @brief Callback API executed when surface changed
  90. *
  91. */
  92. typedef void (*surface_callback_t)(uint32_t event, void *data, void *user_data);
  93. /**
  94. * @struct surface
  95. * @brief Structure holding surface
  96. *
  97. */
  98. typedef struct surface {
  99. uint16_t width;
  100. uint16_t height;
  101. uint32_t pixel_format;
  102. #if CONFIG_SURFACE_MAX_BUFFER_COUNT > 0
  103. ui_region_t dirty_area;
  104. graphic_buffer_t *buffers[CONFIG_SURFACE_MAX_BUFFER_COUNT];
  105. uint8_t buf_count;
  106. uint8_t draw_idx;
  107. uint8_t post_idx;
  108. uint8_t swapping : 1;
  109. #else
  110. graphic_buffer_t *buffers;
  111. uint8_t buf_count;
  112. uint8_t draw_idx;
  113. #endif /* CONFIG_SURFACE_MAX_BUFFER_COUNT > 0 */
  114. uint8_t in_frame : 1;
  115. os_sem frame_sem;
  116. /* passed in surface_create() */
  117. uint8_t create_flags;
  118. /* passed in surface_begin_draw() */
  119. uint8_t draw_flags;
  120. atomic_t post_cnt;
  121. os_sem post_sem;
  122. surface_callback_t callback[SURFACE_NUM_CBS];
  123. void *user_data[SURFACE_NUM_CBS];
  124. /* reference count (considering alloc/free and post pending count) */
  125. atomic_t refcount;
  126. } surface_t;
  127. /**
  128. * @brief Create surface buffer
  129. *
  130. * @param w width in pixels
  131. * @param h height in pixels
  132. * @param pixel_format display pixel format, see enum display_pixel_format
  133. * @param buffer usage
  134. *
  135. * @return pointer to graphic buffer structure; NULL if failed.
  136. */
  137. graphic_buffer_t *surface_buffer_create(uint16_t w, uint16_t h,
  138. uint32_t pixel_format, uint32_t usage);
  139. /**
  140. * @brief Create surface
  141. *
  142. * Must be called in the draw thread context.
  143. *
  144. * @param w width in pixels
  145. * @param h height in pixels
  146. * @param pixel_format display pixel format, see enum display_pixel_format
  147. * @param buf_count number of buffers to allocate
  148. * @param flags surface create flags
  149. *
  150. * @return pointer to surface structure; NULL if failed.
  151. */
  152. surface_t *surface_create(uint16_t w, uint16_t h,
  153. uint32_t pixel_format, uint8_t buf_count, uint8_t flags);
  154. /**
  155. * @brief Destroy surface
  156. *
  157. * Must be called in the draw thread context.
  158. *
  159. * @param surface pointer to surface structure
  160. *
  161. * @retval N/A.
  162. */
  163. void surface_destroy(surface_t *surface);
  164. /**
  165. * @brief Register surface callback
  166. *
  167. * Must be called in the draw thread context.
  168. *
  169. * @param surface pointer to surface structure
  170. * @param callback event callback
  171. * @param user_data user data passed in callback function
  172. *
  173. * @return N/A.
  174. */
  175. void surface_register_callback(surface_t *surface,
  176. int callback_id, surface_callback_t callback_fn, void *user_data);
  177. /**
  178. * @brief Set continuous draw count without waiting next draw ready.
  179. *
  180. * This is just a hint to surface.
  181. * Must call before the first draw.
  182. *
  183. * Must be called in the draw thread context.
  184. *
  185. * @param surface pointer to surface structure
  186. * @param count continuous draw count
  187. *
  188. * @retval 0 on success else negative error code.
  189. */
  190. void surface_set_continuous_draw_count(surface_t *surface, uint8_t count);
  191. /**
  192. * @brief surface begin a new frame to draw.
  193. *
  194. * Must call when current frame dirty regions are computed, and before
  195. * any surface_begin_draw().
  196. *
  197. * Must be called in the draw thread context.
  198. *
  199. * @param surface pointer to surface structure
  200. *
  201. * @return 0 on success else negetive errno code.
  202. */
  203. int surface_begin_frame(surface_t *surface);
  204. /**
  205. * @brief surface end current frame to draw
  206. *
  207. * @param surface pointer to surface structure
  208. *
  209. * @return 0 on success else negetive errno code.
  210. */
  211. int surface_end_frame(surface_t *surface);
  212. /**
  213. * @brief surface begin to draw the current frame
  214. *
  215. * Must be called in the draw thread context.
  216. *
  217. * @param surface pointer to surface structure
  218. * @param flags draw flags
  219. * @param drawbuf store the pointer of draw buffer.
  220. *
  221. * @retval 0 on success else negative error code.
  222. */
  223. int surface_begin_draw(surface_t *surface, uint8_t flags, graphic_buffer_t **drawbuf);
  224. /**
  225. * @brief surface end to draw the current frame
  226. *
  227. * Must be called in the draw thread context.
  228. *
  229. * @param surface pointer to surface structure
  230. * @param area updated surface area
  231. *
  232. * @retval 0 on success else negative error code.
  233. */
  234. int surface_end_draw(surface_t *surface, const ui_region_t *area);
  235. /**
  236. * @brief surface update with the external buffer
  237. *
  238. * @param surface pointer to surface structure
  239. * @param flags draw flags, can contain SURFACE_ROTATED_? if enabled.
  240. * @param area updated surface area after rotation if set
  241. * @param buf pointer to the data buffer before rotation if set
  242. * @param stride stride in pixels of the data buffer
  243. * @param pixel_format pixel format of the data buffer
  244. *
  245. * @retval 0 on success else negative error code.
  246. */
  247. int surface_update(surface_t *surface, uint8_t flags,
  248. const ui_region_t *area, const void *buf,
  249. uint16_t stride, uint32_t pixel_format);
  250. /**
  251. * @brief wait the surface update content completed
  252. *
  253. * Wait the previous surface_update() completed
  254. * Must be called in the draw thread context.
  255. *
  256. * @param surface pointer to surface structure
  257. * @parem timeout wait timeout in milliseconds
  258. *
  259. * @retval 0 on success else negative error code.
  260. */
  261. int surface_wait_for_update(surface_t *surface, int timeout);
  262. /**
  263. * @brief wait the surface refresh to display completed
  264. *
  265. * Must be called in the draw thread context.
  266. *
  267. * @param surface pointer to surface structure
  268. * @parem timeout wait timeout in milliseconds
  269. *
  270. * @retval 0 on success else negative error code.
  271. */
  272. int surface_wait_for_refresh(surface_t *surface, int timeout);
  273. /**
  274. * @brief notify surface that one post has completed
  275. *
  276. * This must be called once corresponding to every SURFACE_EVT_POST_START.
  277. *
  278. * @param surface pointer to surface structure
  279. *
  280. * @return N/A.
  281. */
  282. void surface_complete_one_post(surface_t *surface);
  283. /**
  284. * @brief Get pixel format of surface
  285. *
  286. * @param surface pointer to surface structure
  287. *
  288. * @return pixel format.
  289. */
  290. static inline uint32_t surface_get_pixel_format(surface_t *surface)
  291. {
  292. return surface->pixel_format;
  293. }
  294. /**
  295. * @brief Get width of surface
  296. *
  297. * @param surface pointer to surface structure
  298. *
  299. * @return width in pixels.
  300. */
  301. static inline uint16_t surface_get_width(surface_t *surface)
  302. {
  303. return surface->width;
  304. }
  305. /**
  306. * @brief Get height of surface
  307. *
  308. * @param surface pointer to surface structure
  309. *
  310. * @return height in pixels.
  311. */
  312. static inline uint16_t surface_get_height(surface_t *surface)
  313. {
  314. return surface->height;
  315. }
  316. /**
  317. * @brief Get stride of surface
  318. *
  319. * @param surface pointer to surface structure
  320. *
  321. * @return stride in pixels.
  322. */
  323. static inline uint32_t surface_get_stride(surface_t *surface)
  324. {
  325. #if CONFIG_SURFACE_MAX_BUFFER_COUNT > 0
  326. return surface->buffers[0] ? graphic_buffer_get_stride(surface->buffers[0]) : surface->width;
  327. #else
  328. return surface->width;
  329. #endif
  330. }
  331. /**
  332. * @brief Get orientation of surface
  333. *
  334. * @param surface pointer to surface structure
  335. *
  336. * @return rotation (CW) in degrees
  337. */
  338. static inline uint16_t surface_get_orientation(surface_t *surface)
  339. {
  340. return ((surface->create_flags & SURFACE_ROTATED_90) ? 90 : 0) +
  341. ((surface->create_flags & SURFACE_ROTATED_180) ? 180 : 0);
  342. }
  343. /**
  344. * @brief Get allocated buffer count of surface
  345. *
  346. * @param surface pointer to surface structure
  347. *
  348. * @return buffer count of surface.
  349. */
  350. uint8_t surface_get_buffer_count(surface_t *surface);
  351. /**
  352. * @brief Get maximum supported surface buffer count
  353. *
  354. * @return buffer count.
  355. */
  356. uint8_t surface_get_max_possible_buffer_count(void);
  357. /**
  358. * @cond INTERNAL_HIDDEN
  359. */
  360. /**
  361. * @brief Set minumum buffer count of surface
  362. *
  363. * It will check current buffer count, if it is less than min_count,
  364. * buffers will be allocated.
  365. *
  366. * Must be called in the draw thread context.
  367. *
  368. * @param surface pointer to surface structure
  369. * @param min_count min buffer count
  370. *
  371. * @retval 0 on success else negative code.
  372. */
  373. int surface_set_min_buffer_count(surface_t *surface, uint8_t min_count);
  374. /**
  375. * @brief Set maximum buffer count of surface
  376. *
  377. * It will check current buffer count, if it is less than min_count,
  378. * buffers will be allocated.
  379. *
  380. * Must be called in the draw thread context.
  381. *
  382. * @param surface pointer to surface structure
  383. * @param max_count max buffer count
  384. *
  385. * @retval 0 on success else negative code.
  386. */
  387. int surface_set_max_buffer_count(surface_t *surface, uint8_t max_count);
  388. /**
  389. * @brief Set current buffer count of surface
  390. *
  391. * Set buffer count, it will change the min/max buffer count if required.
  392. *
  393. * Must be called in the draw thread context.
  394. *
  395. * @param surface pointer to surface structure
  396. * @param buf_count buffer count
  397. *
  398. * @retval 0 on success else negative code.
  399. */
  400. int surface_set_buffer_count(surface_t *surface, uint8_t buf_count);
  401. /**
  402. * @brief Get draw buffer of surface
  403. *
  404. * @param surface pointer to surface structure
  405. *
  406. * @return pointer of graphic buffer structure; NULL if failed.
  407. */
  408. graphic_buffer_t *surface_get_draw_buffer(surface_t *surface);
  409. /**
  410. * @brief Get post buffer of surface
  411. *
  412. * @param surface pointer to surface structure
  413. *
  414. * @return pointer of graphic buffer structure; NULL if failed.
  415. */
  416. graphic_buffer_t *surface_get_post_buffer(surface_t *surface);
  417. /**
  418. * INTERNAL_HIDDEN @endcond
  419. */
  420. #ifdef __cplusplus
  421. }
  422. #endif
  423. /**
  424. * @}
  425. */
  426. #endif /* ZEPHYR_FRAMEWORK_INCLUDE_DISPLAY_UI_SURFACE_H_ */