display_mmu.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <drivers/display/display_graphics.h>
  7. /*
  8. * example:
  9. *
  10. * 1) declare a buffer whose address in SRAM
  11. * static uint16_t dst_buf_mem[360 * 360] __in_section_unique(ram.noinit.test);
  12. * static display_buffer_t buffer = {
  13. * .desc = {
  14. * .pixel_format = PIXEL_FORMAT_BGR_565,
  15. * .pitch = 360 * 2,
  16. * .width = 360,
  17. * .height = 360,
  18. * },
  19. * .addr = (uint32_t)dst_buf_mem,
  20. *};
  21. *
  22. * 2) configure MMU LUT (round shape)
  23. * display_mmu_config_lut(dst_buf.desc.width, dst_buf.desc.height,
  24. * dst_buf.desc.pixel_format, display_mmu_get_round_range);
  25. *
  26. * 3) map buffer to MMU slot 0
  27. * display_mmu_map_buf(0, &dst_buf);
  28. *
  29. * 4) enable MMU
  30. * display_mmu_set_enabled(true);
  31. */
  32. /* Number of slots supported by display MMU */
  33. #define NUM_DISPLAY_MMU_SLOTS 4
  34. /**
  35. * @typedef display_mmu_get_range_t
  36. * @brief Callback API executed when computing x pixels range [x1, x2] at every given line y
  37. *
  38. */
  39. typedef void (*display_mmu_get_range_t)(uint16_t * x1, uint16_t * x2, uint16_t y, uint16_t x_res, uint16_t y_res);
  40. /**
  41. * @brief Control display MMU enabled or not
  42. *
  43. * @param en enable flag
  44. *
  45. * @retval 0 on success else negative errno code.
  46. */
  47. int display_mmu_set_enabled(bool en);
  48. /**
  49. * @brief Configure the Display MMU look-up table
  50. *
  51. * @param x_res horizontal resolution of frame buffer
  52. * @param y_res vertical resolution of frame buffer
  53. * @param pixel_format pixel format of frame buffer
  54. * @param range_cb callback to compute x pixels range [x1, x2] at every given line y
  55. *
  56. * @retval the physical size of frame buffer required on success else negative errno code.
  57. */
  58. int display_mmu_config_lut(uint16_t x_res, uint16_t y_res, uint32_t pixel_format, display_mmu_get_range_t range_cb);
  59. /**
  60. * @brief Map the frame buffer to a Display MMU slot
  61. *
  62. * On success, the addr, pitch and buf_size of buffer will be updated with the
  63. * mapping address and pitch by Display MMU.
  64. *
  65. * @param slot Y display MMU slot index
  66. * @param buffer pointer to structure display_buffer whose addr must be in the SRAM
  67. * address range and will be replaced with virtual addr after mapping.
  68. *
  69. * @retval 0 on success else negative errno code.
  70. */
  71. int display_mmu_map_buf(uint8_t slot, display_buffer_t *buffer);
  72. /**
  73. * @brief Query buffer is mapped by DIisplay MMU or not
  74. *
  75. * @param buffer pointer to structure display_buffer
  76. *
  77. * @retval the query result.
  78. */
  79. bool display_mmu_is_buf_mapped(const display_buffer_t *buffer);
  80. /**
  81. * @brief Get the frame buffer descriptor after configuration.
  82. *
  83. * @retval the frame buffer descriptor.
  84. */
  85. const struct display_buffer_descriptor * display_mmu_get_buf_desc(void);
  86. /**
  87. * @brief Callback for round shape range
  88. *
  89. * @param x1 address to store min x coord of pixel at line y
  90. * @param x1 address to store max x coord of pixel at line y
  91. * @param y y coord of pixel
  92. * @param x_res x resolution
  93. * @param y_res y resolution
  94. *
  95. * @retval N/A.
  96. */
  97. void display_mmu_get_round_range(uint16_t * x1, uint16_t * x2, uint16_t y, uint16_t x_res, uint16_t y_res);
  98. /**
  99. * @brief Callback for rectangle shape range
  100. *
  101. * @param x1 address to store min x coord of pixel at line y
  102. * @param x1 address to store max x coord of pixel at line y
  103. * @param y y coord of pixel
  104. * @param x_res x resolution
  105. * @param y_res y resolution
  106. *
  107. * @retval N/A.
  108. */
  109. void display_mmu_get_rectangle_range(uint16_t * x1, uint16_t * x2, uint16_t y, uint16_t x_res, uint16_t y_res);