display_graphics.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <errno.h>
  7. #include <string.h>
  8. #include <spicache.h>
  9. #include <drivers/display/display_graphics.h>
  10. uint8_t display_format_get_bits_per_pixel(uint32_t pixel_format)
  11. {
  12. if (pixel_format & (PIXEL_FORMAT_BGR_565 | PIXEL_FORMAT_RGB_565 | PIXEL_FORMAT_BGRA_5551))
  13. return 16;
  14. if (pixel_format & (PIXEL_FORMAT_ARGB_8888 | PIXEL_FORMAT_XRGB_8888))
  15. return 32;
  16. if (pixel_format & (PIXEL_FORMAT_RGB_888 | PIXEL_FORMAT_BGR_888 | PIXEL_FORMAT_BGRA_5658 |
  17. PIXEL_FORMAT_BGRA_6666 | PIXEL_FORMAT_RGBA_6666))
  18. return 24;
  19. if (pixel_format & (PIXEL_FORMAT_A8 | PIXEL_FORMAT_I8))
  20. return 8;
  21. if (pixel_format & (PIXEL_FORMAT_A4 | PIXEL_FORMAT_A4_LE | PIXEL_FORMAT_I4))
  22. return 4;
  23. if (pixel_format & (PIXEL_FORMAT_A2 | PIXEL_FORMAT_I2))
  24. return 2;
  25. if (pixel_format & (PIXEL_FORMAT_A1 | PIXEL_FORMAT_A1_LE | PIXEL_FORMAT_I1 |
  26. PIXEL_FORMAT_MONO01 | PIXEL_FORMAT_MONO10))
  27. return 1;
  28. return 0;
  29. }
  30. const char * display_format_get_name(uint32_t pixel_format)
  31. {
  32. switch (pixel_format) {
  33. case PIXEL_FORMAT_ARGB_8888:
  34. return "ARGB_8888";
  35. case PIXEL_FORMAT_XRGB_8888:
  36. return "XRGB_8888";
  37. case PIXEL_FORMAT_BGR_565:
  38. return "RGB_565";
  39. case PIXEL_FORMAT_RGB_565:
  40. return "RGB_565_BE";
  41. case PIXEL_FORMAT_BGRA_5551:
  42. return "ARGB_1555";
  43. case PIXEL_FORMAT_RGB_888:
  44. return "BGR_888";
  45. case PIXEL_FORMAT_BGR_888:
  46. return "RGB_888";
  47. case PIXEL_FORMAT_BGRA_5658:
  48. return "ARGB_8565";
  49. case PIXEL_FORMAT_BGRA_6666:
  50. return "ARGB_6666";
  51. case PIXEL_FORMAT_RGBA_6666:
  52. return "ABGR_6666";
  53. case PIXEL_FORMAT_A8:
  54. return "A8";
  55. case PIXEL_FORMAT_A4:
  56. return "A4";
  57. case PIXEL_FORMAT_A2:
  58. return "A2";
  59. case PIXEL_FORMAT_A1:
  60. return "A1";
  61. case PIXEL_FORMAT_A4_LE:
  62. return "A4_LE";
  63. case PIXEL_FORMAT_A1_LE:
  64. return "A1_LE";
  65. case PIXEL_FORMAT_I8:
  66. return "I8";
  67. case PIXEL_FORMAT_I4:
  68. return "I4";
  69. case PIXEL_FORMAT_I2:
  70. return "I2";
  71. case PIXEL_FORMAT_I1:
  72. return "I1";
  73. case PIXEL_FORMAT_MONO01: /* 0=Black 1=White */
  74. return "MONO_01";
  75. case PIXEL_FORMAT_MONO10: /* 1=Black 0=White */
  76. return "MONO_10";
  77. default:
  78. return "unknown";
  79. }
  80. }
  81. int display_buffer_fill_color(const display_buffer_t *buffer, display_color_t color, int pad_byte)
  82. {
  83. uint8_t bits_per_pixel = display_format_get_bits_per_pixel(buffer->desc.pixel_format);
  84. uint32_t bytes_per_line = buffer->desc.pitch;
  85. uint32_t bytes_to_fill = (buffer->desc.width * bits_per_pixel + 7) / 8;
  86. uint8_t *buf8 = (uint8_t *)(buffer->addr);
  87. int i;
  88. if (buf_is_nor((void *)buffer->addr)) {
  89. return -EFAULT;
  90. }
  91. #ifdef CONFIG_DISPLAY_MMU
  92. /* cannot read back the pixels from pevious lines if MMU enabled */
  93. uint8_t *line_buf8 = (uint8_t *)(buffer->addr);
  94. int j = buffer->desc.height;
  95. loop_next_line:
  96. buf8 = line_buf8;
  97. #endif /* CONFIG_DISPLAY_MMU */
  98. if (buffer->desc.pixel_format == PIXEL_FORMAT_BGR_565) {
  99. uint8_t c8[2];
  100. c8[0] = ((color.g & 0x1c) << 3) | (color.b >> 3);
  101. c8[1] = ((color.r & 0xf8) << 0) | (color.g >> 5);
  102. for (i = buffer->desc.width; i > 0; i--) {
  103. *buf8++ = c8[0];
  104. *buf8++ = c8[1];
  105. }
  106. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_RGB_565) {
  107. uint8_t c8[2];
  108. c8[1] = ((color.g & 0x1c) << 3) | (color.b >> 3);
  109. c8[0] = ((color.r & 0xf8) << 0) | (color.g >> 5);
  110. for (i = buffer->desc.width; i > 0; i--) {
  111. *buf8++ = c8[0];
  112. *buf8++ = c8[1];
  113. }
  114. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_BGRA_5551) {
  115. uint8_t c8[2];
  116. c8[0] = ((color.g & 0x38) << 2) | (color.b >> 3);
  117. c8[1] = (color.a & 0x80) | ((color.r & 0xf8) >> 1) | ((color.g & 0xc0) >> 6);
  118. for (i = buffer->desc.width; i > 0; i--) {
  119. *buf8++ = c8[0];
  120. *buf8++ = c8[1];
  121. }
  122. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_ARGB_8888) {
  123. for (i = buffer->desc.width; i > 0; i--) {
  124. *buf8++ = color.b;
  125. *buf8++ = color.g;
  126. *buf8++ = color.r;
  127. *buf8++ = color.a;
  128. }
  129. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_XRGB_8888) {
  130. for (i = buffer->desc.width; i > 0; i--) {
  131. *buf8++ = color.b;
  132. *buf8++ = color.g;
  133. *buf8++ = color.r;
  134. *buf8++ = 0xff;
  135. }
  136. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_RGB_888) {
  137. for (i = buffer->desc.width; i > 0; i--) {
  138. *buf8++ = color.r;
  139. *buf8++ = color.g;
  140. *buf8++ = color.b;
  141. }
  142. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_BGR_888) {
  143. for (i = buffer->desc.width; i > 0; i--) {
  144. *buf8++ = color.b;
  145. *buf8++ = color.g;
  146. *buf8++ = color.r;
  147. }
  148. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_BGRA_6666) {
  149. uint8_t c8[3];
  150. c8[0] = ((color.g & 0x0c) << 4) | (color.b >> 2);
  151. c8[1] = ((color.r & 0x3c) << 2) | (color.g >> 4);
  152. c8[2] = ((color.a & 0xfc) << 0) | (color.r >> 6);
  153. for (i = buffer->desc.width; i > 0; i--) {
  154. *buf8++ = c8[0];
  155. *buf8++ = c8[1];
  156. *buf8++ = c8[2];
  157. }
  158. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_RGBA_6666) {
  159. uint8_t c8[3];
  160. c8[0] = ((color.g & 0x0c) << 4) | (color.r >> 2);
  161. c8[1] = ((color.b & 0x3c) << 2) | (color.g >> 4);
  162. c8[2] = ((color.a & 0xfc) << 0) | (color.b >> 6);
  163. for (i = buffer->desc.width; i > 0; i--) {
  164. *buf8++ = c8[0];
  165. *buf8++ = c8[1];
  166. *buf8++ = c8[2];
  167. }
  168. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_BGRA_5658) {
  169. uint8_t c8[3];
  170. c8[0] = ((color.g & 0x1c) << 3) | (color.b >> 3);
  171. c8[1] = ((color.r & 0xf8) << 0) | (color.g >> 5);
  172. c8[2] = color.a;
  173. for (i = buffer->desc.width; i > 0; i--) {
  174. *buf8++ = c8[0];
  175. *buf8++ = c8[1];
  176. *buf8++ = c8[2];
  177. }
  178. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_A8 ||
  179. buffer->desc.pixel_format == PIXEL_FORMAT_I8) {
  180. memset(buf8, color.a, bytes_to_fill);
  181. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_A4 ||
  182. buffer->desc.pixel_format == PIXEL_FORMAT_A4_LE ||
  183. buffer->desc.pixel_format == PIXEL_FORMAT_I4) {
  184. uint8_t a8 = (color.a & 0xf0) | (color.a >> 4);
  185. memset(buf8, a8, bytes_to_fill);
  186. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_A2 ||
  187. buffer->desc.pixel_format == PIXEL_FORMAT_I2) {
  188. uint8_t a8 = (color.a & 0xc0) | ((color.a & 0xc0) >> 2) |
  189. ((color.a & 0xc0) >> 4) | (color.a >> 6);
  190. memset(buf8, a8, bytes_to_fill);
  191. }else if (buffer->desc.pixel_format == PIXEL_FORMAT_A1 ||
  192. buffer->desc.pixel_format == PIXEL_FORMAT_A1_LE ||
  193. buffer->desc.pixel_format == PIXEL_FORMAT_I1) {
  194. uint8_t a8 = (color.a & 0x80) ? 0xff : 0x00;
  195. memset(buf8, a8, bytes_to_fill);
  196. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_MONO01) { /* 0=Black 1=White */
  197. uint8_t c8 = ((color.r | color.g | color.b) & 0x80) ? 0xff : 0x00;
  198. memset(buf8, c8, bytes_to_fill);
  199. } else if (buffer->desc.pixel_format == PIXEL_FORMAT_MONO10) { /* 1=Black 0=White */
  200. uint8_t c8 = ((color.r | color.g | color.b) & 0x80) ? 0x00 : 0xff;
  201. memset(buf8, c8, bytes_to_fill);
  202. } else {
  203. return -EINVAL;
  204. }
  205. /* fill the padded bytes */
  206. if (pad_byte >= 0 && bytes_per_line != bytes_to_fill) {
  207. buf8 = (uint8_t *)(buffer->addr) + bytes_to_fill;
  208. memset(buf8, pad_byte & 0xFF, bytes_per_line - bytes_to_fill);
  209. }
  210. #ifdef CONFIG_DISPLAY_MMU
  211. if (--j > 0) {
  212. line_buf8 += bytes_per_line;
  213. goto loop_next_line;
  214. }
  215. #else
  216. /* point to the 2nd row */
  217. buf8 = (uint8_t *)(buffer->addr) + bytes_per_line;
  218. for (i = buffer->desc.height - 1; i > 0; i--) {
  219. memcpy(buf8, (uint8_t *)buffer->addr, bytes_per_line);
  220. buf8 += bytes_per_line;
  221. }
  222. #endif /* CONFIG_DISPLAY_MMU */
  223. display_buffer_cpu_write_flush(buffer);
  224. return 0;
  225. }
  226. int display_buffer_fill_image(const display_buffer_t *buffer, const void *data, uint32_t data_stride_bytes, int pad_byte)
  227. {
  228. uint8_t bits_per_pixel = display_format_get_bits_per_pixel(buffer->desc.pixel_format);
  229. uint32_t bytes_per_line = buffer->desc.pitch;
  230. uint32_t bytes_to_copy = (buffer->desc.width * bits_per_pixel + 7) / 8;
  231. uint8_t *buf8 = (uint8_t *)buffer->addr;
  232. const uint8_t *data8 = data;
  233. if (buf_is_nor((void *)buffer->addr)) {
  234. return -EFAULT;
  235. }
  236. if (data_stride_bytes == 0) {
  237. data_stride_bytes = bytes_to_copy;
  238. }
  239. for (int i = buffer->desc.height; i > 0; i--) {
  240. memcpy(buf8, data8, bytes_to_copy);
  241. if (pad_byte >= 0 && bytes_per_line != bytes_to_copy) {
  242. memset(buf8 + bytes_to_copy, pad_byte & 0xFF, bytes_per_line - bytes_to_copy);
  243. }
  244. buf8 += bytes_per_line;
  245. data8 += data_stride_bytes;
  246. }
  247. display_buffer_cpu_write_flush(buffer);
  248. return 0;
  249. }
  250. void display_buffer_cpu_write_flush(const display_buffer_t *buffer)
  251. {
  252. if (buf_is_psram(buffer->addr) || buf_is_psram_un(buffer->addr)) {
  253. spi1_cache_ops(SPI_WRITEBUF_FLUSH, (void *)buffer->addr, buffer->desc.pitch * buffer->desc.height);
  254. if (buf_is_psram_cache(buffer->addr))
  255. spi1_cache_ops(SPI_CACHE_FLUSH, (void *)buffer->addr, buffer->desc.pitch * buffer->desc.height);
  256. spi1_cache_ops_wait_finshed();
  257. }
  258. }
  259. void display_buffer_dev_write_flush(const display_buffer_t *buffer)
  260. {
  261. if (buf_is_psram(buffer->addr)) {
  262. spi1_cache_ops(SPI_CACHE_FLUSH_INVALID, (void *)buffer->addr,
  263. buffer->desc.pitch * buffer->desc.height);
  264. spi1_cache_ops_wait_finshed();
  265. }
  266. }
  267. void * display_buffer_goto_xy(const display_buffer_t *buffer, uint32_t x, uint32_t y)
  268. {
  269. uint8_t bpp = display_format_get_bits_per_pixel(buffer->desc.pixel_format);
  270. uint32_t pitch = (buffer->desc.pitch > 0) ?
  271. buffer->desc.pitch : (buffer->desc.width * bpp / 8);
  272. return (uint8_t *)buffer->addr + y * pitch + x * bpp / 8;
  273. }
  274. void display_rect_intersect(display_rect_t *dest, const display_rect_t *src)
  275. {
  276. int16_t x1 = MAX(dest->x, src->x);
  277. int16_t y1 = MAX(dest->y, src->y);
  278. int16_t x2 = MIN(dest->x + dest->w, src->x + src->w);
  279. int16_t y2 = MIN(dest->y + dest->h, src->y + src->h);
  280. dest->x = x1;
  281. dest->y = y1;
  282. dest->w = x2 - x1;
  283. dest->h = y2 - y1;
  284. }
  285. void display_rect_merge(display_rect_t *dest, const display_rect_t *src)
  286. {
  287. int16_t x1 = MIN(dest->x, src->x);
  288. int16_t y1 = MIN(dest->y, src->y);
  289. int16_t x2 = MAX(dest->x + dest->w, src->x + src->w);
  290. int16_t y2 = MAX(dest->y + dest->h, src->y + src->h);
  291. dest->x = x1;
  292. dest->y = y1;
  293. dest->w = x2 - x1;
  294. dest->h = y2 - y1;
  295. }