display_graphics.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509
  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 graphics
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_GRAPHICS_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_GRAPHICS_H_
  12. /**
  13. * @brief Display Graphics
  14. * @defgroup display_graphics Display Graphics
  15. * @ingroup display_interfaces
  16. * @{
  17. */
  18. #include <sys/util.h>
  19. #include <zephyr/types.h>
  20. #include <drivers/display.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @enum display_blending_type
  26. * @brief Enumeration with possible display blending type
  27. *
  28. */
  29. enum display_blending_type {
  30. /* no blending */
  31. DISPLAY_BLENDING_NONE = 0x0,
  32. /* ONE / ONE_MINUS_SRC_ALPHA */
  33. DISPLAY_BLENDING_PREMULT = 0x1,
  34. /* SRC_ALPHA / ONE_MINUS_SRC_ALPHA */
  35. DISPLAY_BLENDING_COVERAGE = 0x2
  36. };
  37. /**
  38. * @enum display_transform_type
  39. * @brief Enumeration with possible display transform type
  40. *
  41. * IMPORTANT NOTE:
  42. * DISPLAY_TRANSFORM_ROT_90 is applied CLOCKWISE and AFTER DISPLAY_TRANSFORM_FLIP_{H|V}.
  43. */
  44. enum {
  45. /* flip source image horizontally (around the vertical axis) */
  46. DISPLAY_TRANSFORM_FLIP_H = 0x01,
  47. /* flip source image vertically (around the horizontal axis)*/
  48. DISPLAY_TRANSFORM_FLIP_V = 0x02,
  49. /* rotate source image 90 degrees clockwise */
  50. DISPLAY_TRANSFORM_ROT_90 = 0x04,
  51. /* rotate source image 180 degrees */
  52. DISPLAY_TRANSFORM_ROT_180 = 0x03,
  53. /* rotate source image 270 degrees clockwise */
  54. DISPLAY_TRANSFORM_ROT_270 = 0x07,
  55. /* don't use. see system/window.h */
  56. DISPLAY_TRANSFORM_RESERVED = 0x08,
  57. };
  58. /**
  59. * @struct display_color
  60. * @brief Structure holding display color
  61. *
  62. */
  63. typedef struct display_color {
  64. union {
  65. /* access as per-channel name for ARGB-8888 */
  66. struct {
  67. uint8_t b; /* blue component */
  68. uint8_t g; /* green component */
  69. uint8_t r; /* red component */
  70. uint8_t a; /* alpha component */
  71. };
  72. uint8_t c8[4]; /* access as 8-bit byte array */
  73. uint16_t c16[2]; /* access as 16-bit half word array */
  74. uint32_t c32[1]; /* access as 32-bit word array */
  75. uint32_t full; /* access as 32-bit full value */
  76. };
  77. } display_color_t;
  78. /**
  79. * @struct display_point
  80. * @brief Structure holding display point
  81. *
  82. */
  83. typedef struct display_point {
  84. int16_t x; /* x coord */
  85. int16_t y; /* y coord */
  86. } display_point_t;
  87. /**
  88. * @struct display_point_fx
  89. * @brief Structure holding display point in fixed format
  90. *
  91. */
  92. typedef struct display_point_fx_t {
  93. int32_t x; /* x coord in fixed point */
  94. int32_t y; /* x coord in fixed point*/
  95. } display_point_fx_t;
  96. /**
  97. * @struct display_rect
  98. * @brief Structure holding display retangle
  99. *
  100. */
  101. typedef struct display_rect {
  102. int16_t x; /* x coord */
  103. int16_t y; /* y coord */
  104. int16_t w; /* row width in pixel */
  105. int16_t h; /* column height in pixel */
  106. } display_rect_t;
  107. /**
  108. * @struct display_buffer
  109. * @brief Structure holding display buffer
  110. *
  111. */
  112. typedef struct display_buffer {
  113. /* buffer descriptor */
  114. struct display_buffer_descriptor desc;
  115. /**
  116. * Pixel offset of each row only for A1/2/4 and I1/2/4 color formats, accepted values:
  117. * 0, 1 for A4, I4
  118. * 0, 1, 2, 3 for A2, I2
  119. * 0, 1, 2, 3, 4, 5, 6, 7 for A1, I1
  120. * 0 for others
  121. */
  122. uint8_t px_ofs;
  123. /* buffer address*/
  124. union {
  125. uint32_t addr; /* pointer in integer */
  126. void * pbuf; /* pointer to a buffer */
  127. uint8_t * pbuf8; /* pointer to a buffer in a 8-bit color type */
  128. uint16_t * pbuf16; /* pointer to a buffer in a 16-bit color type */
  129. uint32_t * pbuf32; /* pointer to a buffer in a 32-bit color type */
  130. };
  131. } display_buffer_t;
  132. /**
  133. * @struct display_matrix
  134. * @brief Structure holding 2x3 affine transform matrix.
  135. *
  136. * [ sx shx tx ]
  137. * [ shy sy ty ]
  138. * [ 0 0 1 ]
  139. *
  140. * Where:
  141. * sx and sy define scaling in the x and y directions, respectively;
  142. * shx and shy define shearing in the x and y directions, respectively;
  143. * tx and ty define translation in the x and y directions, respectively;
  144. *
  145. * An affine transformation maps a point (x, y) into the point (x', y') using
  146. * matrix multiplication:
  147. *
  148. * [ sx shx tx ] [x] [ x * sx + y * shx + tx ]
  149. * [ shy sy ty ] [y] = [ x * shy + y * sy + ty ]
  150. * [ 0 0 1 ] [1] [ 1 ]
  151. *
  152. * that is:
  153. * x' = sx * x + shx * y + tx
  154. * y' = shy * x + sy * y + ty
  155. */
  156. typedef struct display_matrix {
  157. int32_t sx;
  158. int32_t shx;
  159. int32_t tx;
  160. int32_t sy;
  161. int32_t shy;
  162. int32_t ty;
  163. } display_matrix_t;
  164. /**
  165. * @struct display_layer
  166. * @brief Structure holding display layer for composition
  167. *
  168. */
  169. typedef struct display_layer {
  170. /* display buffer */
  171. const display_buffer_t *buffer;
  172. /*
  173. * plane color applied to the whole layer:
  174. * 1) For buffer == NULL, use color.argb as the default pixel color value
  175. * 2) For buffer != NULL, use color.a as the global alpha value
  176. * 3) For buffer with format A1/2/4/8, use color.rgb as the pixel rgb value
  177. */
  178. display_color_t color;
  179. /* where to composite the buffer onto the display, the origin is the top-left corner
  180. * of the screen.
  181. */
  182. display_rect_t frame;
  183. /* blending to apply during composition */
  184. uint8_t blending;
  185. /* reserved for future */
  186. uint8_t _pad[3];
  187. /*
  188. * the transform matrix that maps the display coodinate system to the
  189. * transformed source image coordinate system whose origin is at the
  190. * top-left corner of the transformed source image.
  191. */
  192. const display_matrix_t *matrix;
  193. } display_layer_t;
  194. /**
  195. * @brief Query display format is opaque
  196. *
  197. * @param pixel_format Display format, see@enum display_pixel_format
  198. *
  199. * @return the query result
  200. */
  201. static inline bool display_format_is_opaque(uint32_t pixel_format)
  202. {
  203. return (pixel_format &
  204. (PIXEL_FORMAT_ARGB_8888 | PIXEL_FORMAT_BGRA_5658 |
  205. PIXEL_FORMAT_BGRA_6666 | PIXEL_FORMAT_RGBA_6666 |
  206. PIXEL_FORMAT_BGRA_5551 | PIXEL_FORMAT_I8 |
  207. PIXEL_FORMAT_I4 | PIXEL_FORMAT_I2 | PIXEL_FORMAT_I1 |
  208. PIXEL_FORMAT_A8 | PIXEL_FORMAT_A4 | PIXEL_FORMAT_A2 |
  209. PIXEL_FORMAT_A1 | PIXEL_FORMAT_A4_LE | PIXEL_FORMAT_A1_LE)) ?
  210. false : true;
  211. }
  212. /**
  213. * @brief Query display format bits per pixel
  214. *
  215. * @param pixel_format Display format, see@enum display_pixel_format
  216. *
  217. * @return the query result
  218. */
  219. uint8_t display_format_get_bits_per_pixel(uint32_t pixel_format);
  220. /**
  221. * @brief Get display format name string
  222. *
  223. * @param pixel_format hal pixel format, see@enum hal_pixel_format
  224. *
  225. * @return the name string
  226. */
  227. const char * display_format_get_name(uint32_t pixel_format);
  228. /**
  229. * @brief Construct display color
  230. *
  231. * @param r r component
  232. * @param g g component
  233. * @param b b component
  234. * @param a a component
  235. *
  236. * @return display color structure
  237. */
  238. static inline display_color_t display_color_make(uint8_t r, uint8_t g, uint8_t b, uint8_t a)
  239. {
  240. display_color_t color = { .r = r, .g = g, .b = b, .a = a, };
  241. return color;
  242. }
  243. /**
  244. * @brief Construct display color from 32-bit hex value
  245. *
  246. * @param c 32-bit color value argb-8888
  247. *
  248. * @return display color structure
  249. */
  250. static inline display_color_t display_color_hex(uint32_t c)
  251. {
  252. display_color_t color = { .full = c, };
  253. return color;
  254. }
  255. /**
  256. * @brief Construct display color from 16-bit hex value
  257. *
  258. * @param c 16-bit color value rgb-565
  259. *
  260. * @return display color structure
  261. */
  262. static inline display_color_t display_color_hex16(uint16_t c)
  263. {
  264. display_color_t color = {
  265. .a = 0xff,
  266. .r = (c & 0xf800) >> 8,
  267. .g = (c & 0x07f0) >> 3,
  268. .b = (c & 0x001f) << 3,
  269. };
  270. color.r = color.r | ((color.r >> 3) & 0x7);
  271. color.g = color.g | ((color.g >> 2) & 0x3);
  272. color.b = color.b | ((color.b >> 3) & 0x7);
  273. return color;
  274. }
  275. static inline display_color_t display_color_black(void)
  276. {
  277. return display_color_make(0x00, 0x00, 0x00, 0xff);
  278. }
  279. static inline display_color_t display_color_white(void)
  280. {
  281. return display_color_make(0xff, 0xff, 0xff, 0xff);
  282. }
  283. static inline display_color_t display_color_red(void)
  284. {
  285. return display_color_make(0xff, 0x00, 0x00, 0xff);
  286. }
  287. static inline display_color_t display_color_green(void)
  288. {
  289. return display_color_make(0x00, 0xff, 0x00, 0xff);
  290. }
  291. static inline display_color_t display_color_blue(void)
  292. {
  293. return display_color_make(0x00, 0x00, 0xff, 0xff);
  294. }
  295. /**
  296. * @brief Fill color to display buffer
  297. *
  298. * @param buffer pointer to structure display_buffer
  299. * @param color color to fill
  300. * @param pad_byte padded byte to fill if non-negative value else ignored
  301. *
  302. * @retval 0 on success else negative errno code
  303. */
  304. int display_buffer_fill_color(const display_buffer_t *buffer, display_color_t color, int pad_byte);
  305. /**
  306. * @brief Fill image data to display buffer
  307. *
  308. * @param buffer pointer to structure display_buffer
  309. * @param data image data to fill
  310. * @param data_stride_bytes image stride in bytes. If 0, the stride is consider
  311. * the same as the buffer's width in bytes.
  312. * @param pad_byte padded byte to fill if non-negative value else ignored
  313. *
  314. * @retval 0 on success else negative errno code
  315. */
  316. int display_buffer_fill_image(const display_buffer_t *buffer, const void *data,
  317. uint16_t data_stride_bytes, int pad_byte);
  318. /**
  319. * @brief Flush cache of display buffer after cpu write
  320. *
  321. * @param buffer pointer to structure display_buffer
  322. *
  323. * @retval N/A
  324. */
  325. void display_buffer_cpu_write_flush(const display_buffer_t *buffer);
  326. /**
  327. * @brief Invalidate cache of display buffer after device write
  328. *
  329. * @param buffer pointer to structure display_buffer
  330. *
  331. * @retval N/A
  332. */
  333. void display_buffer_dev_write_flush(const display_buffer_t *buffer);
  334. /**
  335. * @brief Set display rectangle
  336. *
  337. * @param rect Pointer to display rectangle structure
  338. *
  339. * @return N/A
  340. */
  341. static inline void display_rect_set(display_rect_t *rect,
  342. int16_t x, int16_t y, int16_t width, int16_t height)
  343. {
  344. rect->x = x;
  345. rect->y = y;
  346. rect->w = width;
  347. rect->h = height;
  348. }
  349. /**
  350. * @brief Move display rectangle
  351. *
  352. * @param rect Pointer to display rectangle structure
  353. * @param dx delta X to move
  354. * @param dy delta Y to move
  355. *
  356. * @return N/A
  357. */
  358. static inline void display_rect_move(display_rect_t *rect, int16_t dx, int16_t dy)
  359. {
  360. rect->x += dx;
  361. rect->y += dy;
  362. }
  363. /**
  364. * @brief Get display rectangle width
  365. *
  366. * @param rect Pointer to display rectangle structure
  367. *
  368. * @return the rectangle width
  369. */
  370. static inline int16_t display_rect_get_width(const display_rect_t *rect)
  371. {
  372. return rect->w;
  373. }
  374. /**
  375. * @brief Get display rectangle height
  376. *
  377. * @param rect Pointer to display rectangle structure
  378. *
  379. * @return the rectangle height
  380. */
  381. static inline int16_t display_rect_get_height(const display_rect_t *rect)
  382. {
  383. return rect->h;
  384. }
  385. /**
  386. * @brief Set display rectangle width
  387. *
  388. * @param rect Pointer to display rectangle structure
  389. * @param width rect width
  390. *
  391. * @return N/A
  392. */
  393. static inline void display_rect_set_width(display_rect_t *rect, int16_t width)
  394. {
  395. rect->w = width;
  396. }
  397. /**
  398. * @brief Set display rectangle height
  399. *
  400. * @param rect Pointer to display rectangle structure
  401. * @param height rect height
  402. *
  403. * @return N/A
  404. */
  405. static inline void display_rect_set_height(display_rect_t *rect, int16_t height)
  406. {
  407. rect->h = height;
  408. }
  409. /**
  410. * @brief Query display rectangle is valid
  411. *
  412. * @param rect Pointer to display rectangle structure
  413. *
  414. * @return the query result
  415. */
  416. static inline bool display_rect_is_valid(const display_rect_t *rect)
  417. {
  418. return (rect->w >= 0) && (rect->h >= 0);
  419. }
  420. /**
  421. * @brief Query display rectangle is empty
  422. *
  423. * @param rect Pointer to display rectangle structure
  424. *
  425. * @return the query result
  426. */
  427. static inline bool display_rect_is_empty(const display_rect_t *rect)
  428. {
  429. return (rect->w <= 0) || (rect->h <= 0);
  430. }
  431. /**
  432. * @brief Intersec two display rectangles
  433. *
  434. * @param dest Pointer to dest display rectangle
  435. * @param src Pointer to src display rectangle
  436. *
  437. * @return N/A
  438. */
  439. void display_rect_intersect(display_rect_t *dest, const display_rect_t *src);
  440. /**
  441. * @brief Merge two display rectangles
  442. *
  443. * @param dest Pointer to dest display rectangle
  444. * @param src Pointer to src display rectangle
  445. *
  446. * @return N/A
  447. */
  448. void display_rect_merge(display_rect_t *dest, const display_rect_t *src);
  449. #ifdef __cplusplus
  450. }
  451. #endif
  452. /**
  453. * @}
  454. */
  455. #endif /* ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_GRAPHICS_H_ */