ft8xx_dl.h 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. /*
  2. * Copyright (c) 2020 Hubert Miś
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief FT8XX display list commands
  9. */
  10. #ifndef ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_DL_H_
  11. #define ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_DL_H_
  12. #include <stdint.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief FT8xx display list commands
  18. * @defgroup ft8xx_dl FT8xx display list
  19. * @ingroup ft8xx_interface
  20. * @{
  21. */
  22. /** Rectangular pixel arrays, in various color formats */
  23. #define FT8XX_BITMAPS 1U
  24. /** Anti-aliased points, point radius is 1-256 pixels */
  25. #define FT8XX_POINTS 2U
  26. /**
  27. * Anti-aliased lines, with width from 0 to 4095 1/16th of pixel units.
  28. * (width is from center of the line to boundary)
  29. */
  30. #define FT8XX_LINES 3U
  31. /** Anti-aliased lines, connected head-to-tail */
  32. #define FT8XX_LINE_STRIP 4U
  33. /** Edge strips for right */
  34. #define FT8XX_EDGE_STRIP_R 5U
  35. /** Edge strips for left */
  36. #define FT8XX_EDGE_STRIP_L 6U
  37. /** Edge strips for above */
  38. #define FT8XX_EDGE_STRIP_A 7U
  39. /** Edge strips for below */
  40. #define FT8XX_EDGE_STRIP_B 8U
  41. /**
  42. * Round-cornered rectangles, curvature of the corners can be adjusted using
  43. * FT8XX_LINE_WIDTH
  44. */
  45. #define FT8XX_RECTS 9U
  46. /**
  47. * @brief Begin drawing a graphics primitive
  48. *
  49. * The valid primitives are defined as:
  50. * - @ref FT8XX_BITMAPS
  51. * - @ref FT8XX_POINTS
  52. * - @ref FT8XX_LINES
  53. * - @ref FT8XX_LINE_STRIP
  54. * - @ref FT8XX_EDGE_STRIP_R
  55. * - @ref FT8XX_EDGE_STRIP_L
  56. * - @ref FT8XX_EDGE_STRIP_A
  57. * - @ref FT8XX_EDGE_STRIP_B
  58. * - @ref FT8XX_RECTS
  59. *
  60. * The primitive to be drawn is selected by the @ref FT8XX_BEGIN command. Once
  61. * the primitive is selected, it will be valid till the new primitive is
  62. * selected by the @ref FT8XX_BEGIN command.
  63. *
  64. * @note The primitive drawing operation will not be performed until
  65. * @ref FT8XX_VERTEX2II or @ref FT8XX_VERTEX2F is executed.
  66. *
  67. * @param prim Graphics primitive
  68. */
  69. #define FT8XX_BEGIN(prim) (0x1f000000 | ((prim) & 0x0f))
  70. /**
  71. * @brief Clear buffers to preset values
  72. *
  73. * Setting @p c to true will clear the color buffer of the FT8xx to the preset
  74. * value. Setting this bit to false will maintain the color buffer of the FT8xx
  75. * with an unchanged value. The preset value is defined in command
  76. * @ref FT8XX_CLEAR_COLOR_RGB for RGB channel and FT8XX_CLEAR_COLOR_A for alpha
  77. * channel.
  78. *
  79. * Setting @p s to true will clear the stencil buffer of the FT8xx to the preset
  80. * value. Setting this bit to false will maintain the stencil buffer of the
  81. * FT8xx with an unchanged value. The preset value is defined in command
  82. * FT8XX_CLEAR_STENCIL.
  83. *
  84. * Setting @p t to true will clear the tag buffer of the FT8xx to the preset
  85. * value. Setting this bit to false will maintain the tag buffer of the FT8xx
  86. * with an unchanged value. The preset value is defined in command
  87. * FT8XX_CLEAR_TAG.
  88. *
  89. * @param c Clear color buffer
  90. * @param s Clear stencil buffer
  91. * @param t Clear tag buffer
  92. */
  93. #define FT8XX_CLEAR(c, s, t) (0x26000000 | \
  94. ((c) ? 0x04 : 0) | ((s) ? 0x02 : 0) | ((t) ? 0x01 : 0))
  95. /**
  96. * @brief Specify clear values for red, green and blue channels
  97. *
  98. * Sets the color values used by a following @ref FT8XX_CLEAR.
  99. *
  100. * @param red Red value used when the color buffer is cleared
  101. * @param green Green value used when the color buffer is cleared
  102. * @param blue Blue value used when the color buffer is cleared
  103. */
  104. #define FT8XX_CLEAR_COLOR_RGB(red, green, blue) (0x02000000 | \
  105. (((uint32_t)(red) & 0xff) << 16) | \
  106. (((uint32_t)(green) & 0xff) << 8) | \
  107. ((uint32_t)(blue) & 0xff))
  108. /**
  109. * @brief Set the current color red, green and blue
  110. *
  111. * Sets red, green and blue values of the FT8xx color buffer which will be
  112. * applied to the following draw operation.
  113. *
  114. * @param red Red value for the current color
  115. * @param green Green value for the current color
  116. * @param blue Blue value for the current color
  117. */
  118. #define FT8XX_COLOR_RGB(red, green, blue) (0x04000000 | \
  119. (((uint32_t)(red) & 0xff) << 16) | \
  120. (((uint32_t)(green) & 0xff) << 8) | \
  121. ((uint32_t)(blue) & 0xff))
  122. /**
  123. * @brief End the display list
  124. *
  125. * FT8xx will ignore all the commands following this command.
  126. */
  127. #define FT8XX_DISPLAY() 0
  128. /**
  129. * @brief End drawing a graphics primitive
  130. *
  131. * It is recommended to have an @ref FT8XX_END for each @ref FT8XX_BEGIN.
  132. * Whereas advanced users can avoid the usage of @ref FT8XX_END in order to
  133. * save extra graphics instructions in the display list RAM.
  134. */
  135. #define FT8XX_END() 0x21000000
  136. /**
  137. * @brief Specify the width of lines to be drawn with primitive @ref FT8XX_LINES
  138. *
  139. * Sets the width of drawn lines. The width is the distance from the center of
  140. * the line to the outermost drawn pixel, in units of 1/16 pixel. The valid
  141. * range is from 16 to 4095 in terms of 1/16th pixel units.
  142. *
  143. * @note The @ref FT8XX_LINE_WIDTH command will affect the @ref FT8XX_LINES,
  144. * @ref FT8XX_LINE_STRIP, @ref FT8XX_RECTS, @ref FT8XX_EDGE_STRIP_A /B/R/L
  145. * primitives.
  146. *
  147. * @param width Line width in 1/16 pixel
  148. */
  149. #define FT8XX_LINE_WIDTH(width) (0x0e000000 | ((uint32_t)(width) & 0xfff))
  150. /**
  151. * @brief Attach the tag value for the following graphics objects.
  152. *
  153. * The initial value of the tag buffer of the FT8xx is specified by command
  154. * FT8XX_CLEAR_TAG and taken effect by command @ref FT8XX_CLEAR. @ref FT8XX_TAG
  155. * command can specify the value of the tag buffer of the FT8xx that applies to
  156. * the graphics objects when they are drawn on the screen. This tag value will
  157. * be assigned to all the following objects, unless the FT8XX_TAG_MASK command
  158. * is used to disable it. Once the following graphics objects are drawn, they
  159. * are attached with the tag value successfully. When the graphics objects
  160. * attached with the tag value are touched, the register
  161. * @ref FT800_REG_TOUCH_TAG or @ref FT810_REG_TOUCH_TAG will be updated with the
  162. * tag value of the graphics object being touched. If there is no @ref FT8XX_TAG
  163. * commands in one display list, all the graphics objects rendered by the
  164. * display list will report tag value as 255 in @ref FT800_REG_TOUCH_TAG or
  165. * @ref FT810_REG_TOUCH_TAG when they were touched.
  166. *
  167. * @param s Tag value 1-255
  168. */
  169. #define FT8XX_TAG(s) (0x03000000 | (uint8_t)(s))
  170. /**
  171. * @brief Start the operation of graphics primitives at the specified coordinate
  172. *
  173. * The range of coordinates is from -16384 to +16383 in terms of 1/16th pixel
  174. * units. The negative x coordinate value means the coordinate in the left
  175. * virtual screen from (0, 0), while the negative y coordinate value means the
  176. * coordinate in the upper virtual screen from (0, 0). If drawing on the
  177. * negative coordinate position, the drawing operation will not be visible.
  178. *
  179. * @param x Signed x-coordinate in 1/16 pixel precision
  180. * @param y Signed y-coordinate in 1/16 pixel precision
  181. */
  182. #define FT8XX_VERTEX2F(x, y) (0x40000000 | \
  183. (((int32_t)(x) & 0x7fff) << 15) | \
  184. ((int32_t)(y) & 0x7fff))
  185. /**
  186. * @brief Start the operation of graphics primitive at the specified coordinates
  187. *
  188. * The valid range of @p handle is from 0 to 31. From 16 to 31 the bitmap handle
  189. * is dedicated to the FT8xx built-in font.
  190. *
  191. * Cell number is the index of bitmap with same bitmap layout and format.
  192. * For example, for handle 31, the cell 65 means the character "A" in the
  193. * largest built in font.
  194. *
  195. * @param x x-coordinate in pixels, from 0 to 511
  196. * @param y y-coordinate in pixels, from 0 to 511
  197. * @param handle Bitmap handle
  198. * @param cell Cell number
  199. */
  200. #define FT8XX_VERTEX2II(x, y, handle, cell) (0x80000000 | \
  201. (((uint32_t)(x) & 0x01ff) << 21) | \
  202. (((uint32_t)(y) & 0x01ff) << 12) | \
  203. (((uint32_t)(handle) & 0x1f) << 7) | \
  204. ((uint32_t)(cell) & 0x7f))
  205. /**
  206. * @}
  207. */
  208. #ifdef __cplusplus
  209. }
  210. #endif
  211. #endif /* ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_DL_H_ */