display_mmu.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <soc.h>
  7. #include <drivers/display/display_mmu.h>
  8. #include <logging/log.h>
  9. LOG_MODULE_REGISTER(display_mmu, CONFIG_DISPLAY_LOG_LEVEL);
  10. #define MMU_BLOCK_SIZE 16
  11. #define MMU_X_RES_MAX 512
  12. #define MMU_Y_RES_MAX 512
  13. #define MMU_FIXED_PITCH (MMU_X_RES_MAX * 4)
  14. #define MMU_START_VADDR 0x20000000
  15. #define MMU_END_VADDR 0x21000000
  16. #define SUPPORTED_PIXEL_FORMAT (PIXEL_FORMAT_BGR_565 | PIXEL_FORMAT_RGB_888 | \
  17. PIXEL_FORMAT_ARGB_8888 | PIXEL_FORMAT_XRGB_8888)
  18. struct mmu_lut_entry {
  19. uint32_t enable : 1;
  20. uint32_t offset : 17;
  21. uint32_t start : 7;
  22. uint32_t end : 7;
  23. };
  24. struct mmu_lut {
  25. struct mmu_lut_entry entries[MMU_Y_RES_MAX];
  26. };
  27. struct mmu_mapping_config {
  28. uint32_t reg;
  29. uint32_t vaddr;
  30. };
  31. struct mmu_mapping_data {
  32. struct display_buffer_descriptor fb_desc;
  33. };
  34. static struct mmu_lut * const mmu_lut[NUM_DISPLAY_MMU_SLOTS] = {
  35. (struct mmu_lut *)0x21000000,
  36. (struct mmu_lut *)0x21000800,
  37. (struct mmu_lut *)0x21001000,
  38. (struct mmu_lut *)0x21001800,
  39. };
  40. static struct mmu_mapping_config const mmu_config[NUM_DISPLAY_MMU_SLOTS] = {
  41. { DISPLAY_MMU_BASEADDR0, 0x20000000, },
  42. { DISPLAY_MMU_BASEADDR1, 0x20400000, },
  43. { DISPLAY_MMU_BASEADDR2, 0x20800000, },
  44. { DISPLAY_MMU_BASEADDR3, 0x20c00000, },
  45. };
  46. static struct mmu_mapping_data mmu_data;
  47. /**
  48. * Get the square root of a number using binary search
  49. *
  50. * Several integer sqrt found here:
  51. * https://cloud.tencent.com/developer/ask/sof/83082
  52. *
  53. * @param num integer which square root should be calculated
  54. * @param mask optional to skip some iterations if the magnitude of the root is known.
  55. * Set to 0x8000 by default (set the minimum mask that meet: root < mask or mask * mask >= num).
  56. * If root < 16: mask = 0x80
  57. * If root < 256: mask = 0x800
  58. * Else: mask = 0x8000
  59. *
  60. * @retval the square root
  61. */
  62. static uint16_t sqrti(uint32_t num, uint16_t mask)
  63. {
  64. uint32_t root = 0;
  65. uint32_t trial;
  66. do {
  67. trial = root + mask; /* or trial = root | mask */
  68. if (trial * trial <= num) root = trial;
  69. mask = mask >> 1;
  70. } while (mask);
  71. return root;
  72. }
  73. int display_mmu_set_enabled(bool en)
  74. {
  75. if (en) {
  76. sys_write32(BIT(16) | BIT(0), DISPLAY_MMU_CTL);
  77. } else {
  78. sys_write32(0, DISPLAY_MMU_CTL);
  79. }
  80. LOG_INF("display mmu en %d\n", en);
  81. return 0;
  82. }
  83. int display_mmu_config_lut(uint16_t x_res, uint16_t y_res, uint32_t pixel_format, display_mmu_get_range_t range_cb)
  84. {
  85. struct mmu_lut_entry *lut_ent = &mmu_lut[0]->entries[0];
  86. uint8_t px_bytes = display_format_get_bits_per_pixel(pixel_format) / 8;
  87. int32_t blk_cnt = 0;
  88. uint16_t y;
  89. if (x_res > MMU_X_RES_MAX || y_res > MMU_Y_RES_MAX) {
  90. LOG_ERR("size exceed %d x %d\n", MMU_X_RES_MAX, MMU_Y_RES_MAX);
  91. return -EINVAL;
  92. }
  93. if ((pixel_format & SUPPORTED_PIXEL_FORMAT) == 0) {
  94. LOG_ERR("unsupported pixel format 0x%x\n", pixel_format);
  95. return -EINVAL;
  96. }
  97. if (range_cb == NULL) {
  98. LOG_ERR("range_cb is NULL");
  99. return -EINVAL;
  100. }
  101. if (sys_read32(DISPLAY_MMU_CTL) & BIT(0)) {
  102. LOG_ERR("try again after disable display MMU\n");
  103. return -EPERM;
  104. }
  105. for (y = 0; y < y_res; y++, lut_ent++) {
  106. int16_t blk_x1, blk_x2;
  107. uint16_t x1 = 0, x2 = 0;
  108. range_cb(&x1, &x2, y, x_res, y_res);
  109. if (x2 >= x_res) {
  110. x2 = x_res - 1;
  111. }
  112. if (x1 > x2) {
  113. *lut_ent = (struct mmu_lut_entry) { 0 };
  114. continue;
  115. }
  116. blk_x1 = x1 * px_bytes / MMU_BLOCK_SIZE;
  117. blk_x2 = (x2 * px_bytes + px_bytes - 1) / MMU_BLOCK_SIZE;
  118. lut_ent->enable = 1;
  119. lut_ent->start = blk_x1;
  120. lut_ent->end = blk_x2;
  121. lut_ent->offset = (blk_cnt - blk_x1) & 0x1ffff;
  122. blk_cnt += blk_x2 - blk_x1 + 1;
  123. LOG_DBG("[%d] entry %p 0x%08x, ofs 0x%05x, blk %d %d %d", y, lut_ent,
  124. *(uint32_t *)lut_ent, lut_ent->offset, blk_cnt, blk_x1, blk_x2);
  125. }
  126. for (; y < MMU_Y_RES_MAX; y++, lut_ent++) {
  127. *lut_ent = (struct mmu_lut_entry) { 0 };
  128. }
  129. memcpy(mmu_lut[1], mmu_lut[0], sizeof(*mmu_lut[0]));
  130. memcpy(mmu_lut[2], mmu_lut[0], sizeof(*mmu_lut[0]));
  131. memcpy(mmu_lut[3], mmu_lut[0], sizeof(*mmu_lut[0]));
  132. mmu_data.fb_desc.buf_size = blk_cnt * MMU_BLOCK_SIZE;
  133. mmu_data.fb_desc.pixel_format = pixel_format;
  134. mmu_data.fb_desc.width = x_res;
  135. mmu_data.fb_desc.height = y_res;
  136. mmu_data.fb_desc.pitch = MMU_FIXED_PITCH;
  137. LOG_INF("mapping fb desc: buf_size 0x%x, pixel_format 0x%x, size %u x %u, pitch %u\n",
  138. mmu_data.fb_desc.buf_size, mmu_data.fb_desc.pixel_format,
  139. mmu_data.fb_desc.width, mmu_data.fb_desc.height, mmu_data.fb_desc.pitch);
  140. return (int)mmu_data.fb_desc.buf_size;
  141. }
  142. int display_mmu_map_buf(uint8_t slot, display_buffer_t *buffer)
  143. {
  144. if (slot >= NUM_DISPLAY_MMU_SLOTS) {
  145. LOG_ERR("invalid slot %d\n", slot);
  146. return -EINVAL;
  147. }
  148. if (buffer->desc.pixel_format != mmu_data.fb_desc.pixel_format ||
  149. buffer->desc.width != mmu_data.fb_desc.width ||
  150. buffer->desc.height != mmu_data.fb_desc.height) {
  151. LOG_ERR("[%d] buffer(%p) geometry changed\n", slot, buffer);
  152. return -EINVAL;
  153. }
  154. if (buffer->desc.buf_size == 0) {
  155. buffer->desc.buf_size = buffer->desc.pitch * buffer->desc.height;
  156. }
  157. if (buffer->desc.buf_size < mmu_data.fb_desc.buf_size) {
  158. LOG_ERR("[%d] buffer(%p) size %u too small\n", slot, buffer, buffer->desc.buf_size);
  159. return -EINVAL;
  160. }
  161. if ((buffer->addr & (MMU_BLOCK_SIZE - 1)) || (buffer->addr < CONFIG_SRAM_BASE_ADDRESS) ||
  162. (buffer->addr + mmu_data.fb_desc.buf_size > CONFIG_SRAM_BASE_ADDRESS + CONFIG_SRAM_SIZE * 1024)) {
  163. LOG_ERR("[%d] buffer(%p) addr 0x%x must be in SRAM\n", slot, buffer, buffer->addr);
  164. return -EINVAL;
  165. }
  166. LOG_INF("[%d] mapping size 0x%x, paddr 0x%x -> vaddr 0x%x\n", slot,
  167. mmu_data.fb_desc.buf_size, buffer->addr, mmu_config[slot].vaddr);
  168. sys_write32(buffer->addr, mmu_config[slot].reg);
  169. buffer->addr = mmu_config[slot].vaddr;
  170. buffer->desc.pitch = mmu_data.fb_desc.pitch;
  171. buffer->desc.buf_size = mmu_data.fb_desc.buf_size;
  172. return 0;
  173. }
  174. bool display_mmu_is_buf_mapped(const display_buffer_t *buffer)
  175. {
  176. return (buffer->addr >= MMU_START_VADDR && buffer->addr < MMU_END_VADDR) ? true : false;
  177. }
  178. const struct display_buffer_descriptor * display_mmu_get_buf_desc(void)
  179. {
  180. return &mmu_data.fb_desc;
  181. }
  182. void display_mmu_get_round_range(uint16_t * x1, uint16_t * x2, uint16_t y, uint16_t x_res, uint16_t y_res)
  183. {
  184. const int16_t cx = x_res - 1; // .1 fixed point
  185. const int16_t cy = y_res - 1; // .1 fixed point
  186. const int32_t y1 = y << 1; // .1 fixed point
  187. const int32_t radius = (cx <= cy) ? cx : cy;
  188. uint16_t root;
  189. if (y1 - cy < -radius || y1 - cy > radius) {
  190. *x1 = 1;
  191. *x2 = 0;
  192. return;
  193. }
  194. root = sqrti(radius * radius - (y1 - cy) * (y1 - cy), 0x800);
  195. *x1 = (cx - root) >> 1;
  196. *x2 = (cx + root) >> 1;
  197. }
  198. void display_mmu_get_rectangle_range(uint16_t * x1, uint16_t * x2, uint16_t y, uint16_t x_res, uint16_t y_res)
  199. {
  200. *x1 = 0;
  201. *x2 = x_res - 1;
  202. }