display_graphics.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  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. typedef 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. } display_blending_t;
  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. union {
  158. struct {
  159. int32_t sx;
  160. int32_t shx;
  161. int32_t tx;
  162. int32_t shy;
  163. int32_t sy;
  164. int32_t ty;
  165. //int32_t w0;
  166. //int32_t w1;
  167. //int32_t w2;
  168. };
  169. int32_t m[2][3]; /*! The 2x3 matrix is in [row][column] order. */
  170. };
  171. } display_matrix_t;
  172. /**
  173. * @struct display_layer
  174. * @brief Structure holding display layer for composition
  175. *
  176. */
  177. typedef struct display_layer {
  178. /* display buffer */
  179. const display_buffer_t *buffer;
  180. /*
  181. * plane color applied to the whole layer:
  182. * 1) For buffer == NULL, use color.argb as the default pixel color value
  183. * 2) For buffer != NULL, use color.a as the global alpha value
  184. * 3) For buffer with format A1/2/4/8, use color.rgb as the pixel rgb value
  185. */
  186. display_color_t color;
  187. /* where to composite the buffer onto the display, the origin is the top-left corner
  188. * of the screen.
  189. */
  190. display_rect_t frame;
  191. /* blending to apply during composition */
  192. uint8_t blending;
  193. /* reserved for future */
  194. uint8_t _pad[3];
  195. /*
  196. * the transform matrix that maps the display coodinate system to the
  197. * transformed source image coordinate system whose origin is at the
  198. * top-left corner of the transformed source image.
  199. */
  200. const display_matrix_t *matrix;
  201. } display_layer_t;
  202. /**
  203. * @brief Query display format is opaque
  204. *
  205. * @param pixel_format Display format, see@enum display_pixel_format
  206. *
  207. * @return the query result
  208. */
  209. static inline bool display_format_is_opaque(uint32_t pixel_format)
  210. {
  211. return (pixel_format &
  212. (PIXEL_FORMAT_ARGB_8888 | PIXEL_FORMAT_BGRA_5658 |
  213. PIXEL_FORMAT_BGRA_6666 | PIXEL_FORMAT_RGBA_6666 |
  214. PIXEL_FORMAT_BGRA_5551 | PIXEL_FORMAT_I8 |
  215. PIXEL_FORMAT_I4 | PIXEL_FORMAT_I2 | PIXEL_FORMAT_I1 |
  216. PIXEL_FORMAT_A8 | PIXEL_FORMAT_A4 | PIXEL_FORMAT_A2 |
  217. PIXEL_FORMAT_A1 | PIXEL_FORMAT_A4_LE | PIXEL_FORMAT_A1_LE)) ?
  218. false : true;
  219. }
  220. /**
  221. * @brief Query display format bits per pixel
  222. *
  223. * @param pixel_format Display format, see@enum display_pixel_format
  224. *
  225. * @return the query result
  226. */
  227. uint8_t display_format_get_bits_per_pixel(uint32_t pixel_format);
  228. /**
  229. * @brief Get display format name string
  230. *
  231. * @param pixel_format hal pixel format, see@enum hal_pixel_format
  232. *
  233. * @return the name string
  234. */
  235. const char * display_format_get_name(uint32_t pixel_format);
  236. #define DISPLAY_COLOR_MAKE(red, green, blue, alpha) \
  237. { .r = red, .g = green, .b = blue, .a = alpha }
  238. /**
  239. * @brief Construct display color
  240. *
  241. * @param r r component
  242. * @param g g component
  243. * @param b b component
  244. * @param a a component
  245. *
  246. * @return display color structure
  247. */
  248. static inline display_color_t display_color_make(uint8_t r, uint8_t g, uint8_t b, uint8_t a)
  249. {
  250. return (display_color_t) DISPLAY_COLOR_MAKE(r, g, b, a);
  251. }
  252. /**
  253. * @brief Construct display color from 32-bit hex value
  254. *
  255. * @param c 32-bit color value argb-8888
  256. *
  257. * @return display color structure
  258. */
  259. static inline display_color_t display_color_hex(uint32_t c)
  260. {
  261. return (display_color_t) { .full = c, };
  262. }
  263. /**
  264. * @brief Construct display color from 16-bit hex value
  265. *
  266. * @param c 16-bit color value rgb-565
  267. *
  268. * @return display color structure
  269. */
  270. static inline display_color_t display_color_hex16(uint16_t c)
  271. {
  272. display_color_t color = {
  273. .a = 0xff,
  274. .r = (c & 0xf800) >> 8,
  275. .g = (c & 0x07f0) >> 3,
  276. .b = (c & 0x001f) << 3,
  277. };
  278. color.r = color.r | ((color.r >> 3) & 0x7);
  279. color.g = color.g | ((color.g >> 2) & 0x3);
  280. color.b = color.b | ((color.b >> 3) & 0x7);
  281. return color;
  282. }
  283. static inline display_color_t display_color_black(void)
  284. {
  285. return display_color_make(0x00, 0x00, 0x00, 0xff);
  286. }
  287. static inline display_color_t display_color_white(void)
  288. {
  289. return display_color_make(0xff, 0xff, 0xff, 0xff);
  290. }
  291. static inline display_color_t display_color_red(void)
  292. {
  293. return display_color_make(0xff, 0x00, 0x00, 0xff);
  294. }
  295. static inline display_color_t display_color_green(void)
  296. {
  297. return display_color_make(0x00, 0xff, 0x00, 0xff);
  298. }
  299. static inline display_color_t display_color_blue(void)
  300. {
  301. return display_color_make(0x00, 0x00, 0xff, 0xff);
  302. }
  303. /**
  304. * @brief Fill color to display buffer
  305. *
  306. * @param buffer pointer to structure display_buffer
  307. * @param color color to fill
  308. * @param pad_byte padded byte to fill if non-negative value else ignored
  309. *
  310. * @retval 0 on success else negative errno code
  311. */
  312. int display_buffer_fill_color(const display_buffer_t *buffer, display_color_t color, int pad_byte);
  313. /**
  314. * @brief Fill image data to display buffer
  315. *
  316. * @param buffer pointer to structure display_buffer
  317. * @param data image data to fill
  318. * @param data_stride_bytes image stride in bytes. If 0, the stride is consider
  319. * the same as the buffer's width in bytes.
  320. * @param pad_byte padded byte to fill if non-negative value else ignored
  321. *
  322. * @retval 0 on success else negative errno code
  323. */
  324. int display_buffer_fill_image(const display_buffer_t *buffer, const void *data,
  325. uint32_t data_stride_bytes, int pad_byte);
  326. /**
  327. * @brief Flush cache of display buffer after cpu write
  328. *
  329. * @param buffer pointer to structure display_buffer
  330. *
  331. * @retval N/A
  332. */
  333. void display_buffer_cpu_write_flush(const display_buffer_t *buffer);
  334. /**
  335. * @brief Invalidate cache of display buffer after device write
  336. *
  337. * @param buffer pointer to structure display_buffer
  338. *
  339. * @retval N/A
  340. */
  341. void display_buffer_dev_write_flush(const display_buffer_t *buffer);
  342. /**
  343. * @brief Return pointer to the buffer at the given coordinates
  344. *
  345. * Only valid for buffers whose pixel format's bits per pixel not less than 8
  346. *
  347. * @param buffer pointer to structure display_buffer
  348. * @param x X coordinate
  349. * @param y Y coordinate
  350. *
  351. * @retval pointer to the buffer at the given coordinates
  352. */
  353. void * display_buffer_goto_xy(const display_buffer_t *buffer, uint32_t x, uint32_t y);
  354. /**
  355. * @brief Set display rectangle
  356. *
  357. * @param rect Pointer to display rectangle structure
  358. *
  359. * @return N/A
  360. */
  361. static inline void display_rect_set(display_rect_t *rect,
  362. int16_t x, int16_t y, int16_t width, int16_t height)
  363. {
  364. rect->x = x;
  365. rect->y = y;
  366. rect->w = width;
  367. rect->h = height;
  368. }
  369. /**
  370. * @brief Move display rectangle
  371. *
  372. * @param rect Pointer to display rectangle structure
  373. * @param dx delta X to move
  374. * @param dy delta Y to move
  375. *
  376. * @return N/A
  377. */
  378. static inline void display_rect_move(display_rect_t *rect, int16_t dx, int16_t dy)
  379. {
  380. rect->x += dx;
  381. rect->y += dy;
  382. }
  383. /**
  384. * @brief Get display rectangle width
  385. *
  386. * @param rect Pointer to display rectangle structure
  387. *
  388. * @return the rectangle width
  389. */
  390. static inline int16_t display_rect_get_width(const display_rect_t *rect)
  391. {
  392. return rect->w;
  393. }
  394. /**
  395. * @brief Get display rectangle height
  396. *
  397. * @param rect Pointer to display rectangle structure
  398. *
  399. * @return the rectangle height
  400. */
  401. static inline int16_t display_rect_get_height(const display_rect_t *rect)
  402. {
  403. return rect->h;
  404. }
  405. /**
  406. * @brief Set display rectangle width
  407. *
  408. * @param rect Pointer to display rectangle structure
  409. * @param width rect width
  410. *
  411. * @return N/A
  412. */
  413. static inline void display_rect_set_width(display_rect_t *rect, int16_t width)
  414. {
  415. rect->w = width;
  416. }
  417. /**
  418. * @brief Set display rectangle height
  419. *
  420. * @param rect Pointer to display rectangle structure
  421. * @param height rect height
  422. *
  423. * @return N/A
  424. */
  425. static inline void display_rect_set_height(display_rect_t *rect, int16_t height)
  426. {
  427. rect->h = height;
  428. }
  429. /**
  430. * @brief Query display rectangle is valid
  431. *
  432. * @param rect Pointer to display rectangle structure
  433. *
  434. * @return the query result
  435. */
  436. static inline bool display_rect_is_valid(const display_rect_t *rect)
  437. {
  438. return (rect->w >= 0) && (rect->h >= 0);
  439. }
  440. /**
  441. * @brief Query display rectangle is empty
  442. *
  443. * @param rect Pointer to display rectangle structure
  444. *
  445. * @return the query result
  446. */
  447. static inline bool display_rect_is_empty(const display_rect_t *rect)
  448. {
  449. return (rect->w <= 0) || (rect->h <= 0);
  450. }
  451. /**
  452. * @brief Intersec two display rectangles
  453. *
  454. * @param dest Pointer to dest display rectangle
  455. * @param src Pointer to src display rectangle
  456. *
  457. * @return N/A
  458. */
  459. void display_rect_intersect(display_rect_t *dest, const display_rect_t *src);
  460. /**
  461. * @brief Merge two display rectangles
  462. *
  463. * @param dest Pointer to dest display rectangle
  464. * @param src Pointer to src display rectangle
  465. *
  466. * @return N/A
  467. */
  468. void display_rect_merge(display_rect_t *dest, const display_rect_t *src);
  469. #ifdef __cplusplus
  470. }
  471. #endif
  472. /**
  473. * @}
  474. */
  475. #endif /* ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_GRAPHICS_H_ */