ft8xx_reference_api.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  1. /*
  2. * Copyright (c) 2021 Hubert Miś
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief FT8XX reference API
  9. */
  10. #ifndef ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_REFERENCE_API_H_
  11. #define ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_REFERENCE_API_H_
  12. #include <stdint.h>
  13. #include <drivers/misc/ft8xx/ft8xx_copro.h>
  14. #include <drivers/misc/ft8xx/ft8xx_common.h>
  15. #include <drivers/misc/ft8xx/ft8xx_dl.h>
  16. #include <drivers/misc/ft8xx/ft8xx_memory.h>
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. /**
  21. * @brief FT8xx reference API
  22. *
  23. * API defined according to FT800 Programmers Guide API reference definition.
  24. *
  25. * @note Function names defined in this header may easily collide with names
  26. * provided by other modules. Include this header with caution. If naming
  27. * conflict occurs instead of including this header, use @c ft8xx_
  28. * prefixed names.
  29. *
  30. * @defgroup ft8xx_reference_api FT8xx reference API
  31. * @ingroup ft8xx_interface
  32. * @{
  33. */
  34. /**
  35. * @brief Write 1 byte (8 bits) to FT8xx memory
  36. *
  37. * @param address Memory address to write to
  38. * @param data Byte to write
  39. */
  40. static inline void wr8(uint32_t address, uint8_t data)
  41. {
  42. ft8xx_wr8(address, data);
  43. }
  44. /**
  45. * @brief Write 2 bytes (16 bits) to FT8xx memory
  46. *
  47. * @param address Memory address to write to
  48. * @param data Value to write
  49. */
  50. static inline void wr16(uint32_t address, uint16_t data)
  51. {
  52. ft8xx_wr16(address, data);
  53. }
  54. /**
  55. * @brief Write 4 bytes (32 bits) to FT8xx memory
  56. *
  57. * @param address Memory address to write to
  58. * @param data Value to write
  59. */
  60. static inline void wr32(uint32_t address, uint32_t data)
  61. {
  62. ft8xx_wr32(address, data);
  63. }
  64. /**
  65. * @brief Read 1 byte (8 bits) from FT8xx memory
  66. *
  67. * @param address Memory address to read from
  68. *
  69. * @return Value read from memory
  70. */
  71. static inline uint8_t rd8(uint32_t address)
  72. {
  73. return ft8xx_rd8(address);
  74. }
  75. /**
  76. * @brief Read 2 bytes (16 bits) from FT8xx memory
  77. *
  78. * @param address Memory address to read from
  79. *
  80. * @return Value read from memory
  81. */
  82. static inline uint16_t rd16(uint32_t address)
  83. {
  84. return ft8xx_rd16(address);
  85. }
  86. /**
  87. * @brief Read 4 bytes (32 bits) from FT8xx memory
  88. *
  89. * @param address Memory address to read from
  90. *
  91. * @return Value read from memory
  92. */
  93. static inline uint32_t rd32(uint32_t address)
  94. {
  95. return ft8xx_rd32(address);
  96. }
  97. /** Co-processor widget is drawn in 3D effect */
  98. #define OPT_3D FT8XX_OPT_3D
  99. /** Co-processor option to decode the JPEG image to RGB565 format */
  100. #define OPT_RGB565 FT8XX_OPT_RGB565
  101. /** Co-processor option to decode the JPEG image to L8 format, i.e., monochrome */
  102. #define OPT_MONO FT8XX_OPT_MONO
  103. /** No display list commands generated for bitmap decoded from JPEG image */
  104. #define OPT_NODL FT8XX_OPT_NODL
  105. /** Co-processor widget is drawn without 3D effect */
  106. #define OPT_FLAT FT8XX_OPT_FLAT
  107. /** The number is treated as 32 bit signed integer */
  108. #define OPT_SIGNED FT8XX_OPT_SIGNED
  109. /** Co-processor widget centers horizontally */
  110. #define OPT_CENTERX FT8XX_OPT_CENTERX
  111. /** Co-processor widget centers vertically */
  112. #define OPT_CENTERY FT8XX_OPT_CENTERY
  113. /** Co-processor widget centers horizontally and vertically */
  114. #define OPT_CENTER FT8XX_OPT_CENTER
  115. /** The label on the Coprocessor widget is right justified */
  116. #define OPT_RIGHTX FT8XX_OPT_RIGHTX
  117. /** Co-processor widget has no background drawn */
  118. #define OPT_NOBACK FT8XX_OPT_NOBACK
  119. /** Co-processor clock widget is drawn without hour ticks.
  120. * Gauge widget is drawn without major and minor ticks.
  121. */
  122. #define OPT_NOTICKS FT8XX_OPT_NOTICKS
  123. /** Co-processor clock widget is drawn without hour and minutes hands,
  124. * only seconds hand is drawn
  125. */
  126. #define OPT_NOHM FT8XX_OPT_NOHM
  127. /** The Co-processor gauge has no pointer */
  128. #define OPT_NOPOINTER FT8XX_OPT_NOPOINTER
  129. /** Co-processor clock widget is drawn without seconds hand */
  130. #define OPT_NOSECS FT8XX_OPT_NOSECS
  131. /** Co-processor clock widget is drawn without hour, minutes and seconds hands */
  132. #define OPT_NOHANDS FT8XX_OPT_NOHANDS
  133. /**
  134. * @brief Execute a display list command by co-processor engine
  135. *
  136. * @param command Display list command to execute
  137. */
  138. static inline void cmd(uint32_t command)
  139. {
  140. ft8xx_copro_cmd(command);
  141. }
  142. /**
  143. * @brief Start a new display list
  144. */
  145. static inline void cmd_dlstart(void)
  146. {
  147. ft8xx_copro_cmd_dlstart();
  148. }
  149. /**
  150. * @brief Swap the current display list
  151. */
  152. static inline void cmd_swap(void)
  153. {
  154. ft8xx_copro_cmd_swap();
  155. }
  156. /**
  157. * @brief Draw text
  158. *
  159. * By default (x,y) is the top-left pixel of the text and the value of
  160. * @p options is zero. OPT_CENTERX centers the text horizontally, OPT_CENTERY
  161. * centers it vertically. OPT_CENTER centers the text in both directions.
  162. * OPT_RIGHTX right-justifies the text, so that the x is the rightmost pixel.
  163. *
  164. * @param x x-coordinate of text base, in pixels
  165. * @param y y-coordinate of text base, in pixels
  166. * @param font Font to use for text, 0-31. 16-31 are ROM fonts
  167. * @param options Options to apply
  168. * @param s Character string to display, terminated with a null character
  169. */
  170. static inline void cmd_text(int16_t x,
  171. int16_t y,
  172. int16_t font,
  173. uint16_t options,
  174. const char *s)
  175. {
  176. ft8xx_copro_cmd_text(x, y, font, options, s);
  177. }
  178. /**
  179. * @brief Draw a decimal number
  180. *
  181. * By default (@p x, @p y) is the top-left pixel of the text. OPT_CENTERX
  182. * centers the text horizontally, OPT_CENTERY centers it vertically. OPT_CENTER
  183. * centers the text in both directions. OPT_RIGHTX right-justifies the text, so
  184. * that the @p x is the rightmost pixel. By default the number is displayed
  185. * with no leading zeroes, but if a width 1-9 is specified in the @p options,
  186. * then the number is padded if necessary with leading zeroes so that it has
  187. * the given width. If OPT_SIGNED is given, the number is treated as signed,
  188. * and prefixed by a minus sign if negative.
  189. *
  190. * @param x x-coordinate of text base, in pixels
  191. * @param y y-coordinate of text base, in pixels
  192. * @param font Font to use for text, 0-31. 16-31 are ROM fonts
  193. * @param options Options to apply
  194. * @param n The number to display.
  195. */
  196. static inline void cmd_number(int16_t x,
  197. int16_t y,
  198. int16_t font,
  199. uint16_t options,
  200. int32_t n)
  201. {
  202. ft8xx_copro_cmd_number(x, y, font, options, n);
  203. }
  204. /**
  205. * @brief Execute the touch screen calibration routine
  206. *
  207. * The calibration procedure collects three touches from the touch screen, then
  208. * computes and loads an appropriate matrix into REG_TOUCH_TRANSFORM_A-F. To
  209. * use it, create a display list and then use CMD_CALIBRATE. The co-processor
  210. * engine overlays the touch targets on the current display list, gathers the
  211. * calibration input and updates REG_TOUCH_TRANSFORM_A-F.
  212. *
  213. * @param result Calibration result, written with 0 on failure of calibration
  214. */
  215. static inline void cmd_calibrate(uint32_t *result)
  216. {
  217. ft8xx_copro_cmd_calibrate(result);
  218. }
  219. /** Rectangular pixel arrays, in various color formats */
  220. #define BITMAPS FT8XX_BITMAPS
  221. /** Anti-aliased points, point radius is 1-256 pixels */
  222. #define POINTS FT8XX_POINTS
  223. /**
  224. * Anti-aliased lines, with width from 0 to 4095 1/16th of pixel units.
  225. * (width is from center of the line to boundary)
  226. */
  227. #define LINES FT8XX_LINES
  228. /** Anti-aliased lines, connected head-to-tail */
  229. #define LINE_STRIP FT8XX_LINE_STRIP
  230. /** Edge strips for right */
  231. #define EDGE_STRIP_R FT8XX_EDGE_STRIP_R
  232. /** Edge strips for left */
  233. #define EDGE_STRIP_L FT8XX_EDGE_STRIP_L
  234. /** Edge strips for above */
  235. #define EDGE_STRIP_A FT8XX_EDGE_STRIP_A
  236. /** Edge strips for below */
  237. #define EDGE_STRIP_B FT8XX_EDGE_STRIP_B
  238. /**
  239. * Round-cornered rectangles, curvature of the corners can be adjusted using
  240. * LINE_WIDTH
  241. */
  242. #define RECTS FT8XX_RECTS
  243. /**
  244. * @brief Begin drawing a graphics primitive
  245. *
  246. * The valid primitives are defined as:
  247. * - @ref BITMAPS
  248. * - @ref POINTS
  249. * - @ref LINES
  250. * - @ref LINE_STRIP
  251. * - @ref EDGE_STRIP_R
  252. * - @ref EDGE_STRIP_L
  253. * - @ref EDGE_STRIP_A
  254. * - @ref EDGE_STRIP_B
  255. * - @ref RECTS
  256. *
  257. * The primitive to be drawn is selected by the @ref BEGIN command. Once the
  258. * primitive is selected, it will be valid till the new primitive is selected
  259. * by the @ref BEGIN command.
  260. *
  261. * @note The primitive drawing operation will not be performed until
  262. * @ref VERTEX2II or @ref VERTEX2F is executed.
  263. *
  264. * @param prim Graphics primitive
  265. */
  266. #define BEGIN(prim) FT8XX_BEGIN(prim)
  267. /**
  268. * @brief Clear buffers to preset values
  269. *
  270. * Setting @p c to true will clear the color buffer of the FT8xx to the preset
  271. * value. Setting this bit to false will maintain the color buffer of the FT8xx
  272. * with an unchanged value. The preset value is defined in command
  273. * @ref CLEAR_COLOR_RGB for RGB channel and CLEAR_COLOR_A for alpha channel.
  274. *
  275. * Setting @p s to true will clear the stencil buffer of the FT8xx to the preset
  276. * value. Setting this bit to false will maintain the stencil buffer of the
  277. * FT8xx with an unchanged value. The preset value is defined in command
  278. * CLEAR_STENCIL.
  279. *
  280. * Setting @p t to true will clear the tag buffer of the FT8xx to the preset
  281. * value. Setting this bit to false will maintain the tag buffer of the FT8xx
  282. * with an unchanged value. The preset value is defined in command CLEAR_TAG.
  283. *
  284. * @param c Clear color buffer
  285. * @param s Clear stencil buffer
  286. * @param t Clear tag buffer
  287. */
  288. #define CLEAR(c, s, t) FT8XX_CLEAR(c, s, t)
  289. /**
  290. * @brief Specify clear values for red, green and blue channels
  291. *
  292. * Sets the color values used by a following @ref CLEAR.
  293. *
  294. * @param red Red value used when the color buffer is cleared
  295. * @param green Green value used when the color buffer is cleared
  296. * @param blue Blue value used when the color buffer is cleared
  297. */
  298. #define CLEAR_COLOR_RGB(red, green, blue) FT8XX_CLEAR_COLOR_RGB(red, green, blue)
  299. /**
  300. * @brief Set the current color red, green and blue
  301. *
  302. * Sets red, green and blue values of the FT8xx color buffer which will be
  303. * applied to the following draw operation.
  304. *
  305. * @param red Red value for the current color
  306. * @param green Green value for the current color
  307. * @param blue Blue value for the current color
  308. */
  309. #define COLOR_RGB(red, green, blue) FT8XX_COLOR_RGB(red, green, blue)
  310. /**
  311. * @brief End the display list
  312. *
  313. * FT8xx will ignore all the commands following this command.
  314. */
  315. #define DISPLAY() FT8XX_DISPLAY()
  316. /**
  317. * @brief End drawing a graphics primitive
  318. *
  319. * It is recommended to have an @ref END for each @ref BEGIN. Whereas advanced
  320. * users can avoid the usage of @ref END in order to save extra graphics
  321. * instructions in the display list RAM.
  322. */
  323. #define END() FT8XX_END()
  324. /**
  325. * @brief Specify the width of lines to be drawn with primitive @ref LINES
  326. *
  327. * Sets the width of drawn lines. The width is the distance from the center of
  328. * the line to the outermost drawn pixel, in units of 1/16 pixel. The valid
  329. * range is from 16 to 4095 in terms of 1/16th pixel units.
  330. *
  331. * @note The @ref LINE_WIDTH command will affect the @ref LINES,
  332. * @ref LINE_STRIP, @ref RECTS, @ref EDGE_STRIP_A /B/R/L primitives.
  333. *
  334. * @param width Line width in 1/16 pixel
  335. */
  336. #define LINE_WIDTH(width) FT8XX_LINE_WIDTH(width)
  337. /**
  338. * @brief Attach the tag value for the following graphics objects.
  339. *
  340. * The initial value of the tag buffer of the FT8xx is specified by command
  341. * CLEAR_TAG and taken effect by command @ref CLEAR. @ref TAG command can
  342. * specify the value of the tag buffer of the FT8xx that applies to the graphics
  343. * objects when they are drawn on the screen. This @ref TAG value will be
  344. * assigned to all the following objects, unless the TAG_MASK command is used to
  345. * disable it. Once the following graphics objects are drawn, they are attached
  346. * with the tag value successfully. When the graphics objects attached with the
  347. * tag value are touched, the register @ref REG_TOUCH_TAG will be updated with
  348. * the tag value of the graphics object being touched. If there is no @ref TAG
  349. * commands in one display list, all the graphics objects rendered by the
  350. * display list will report tag value as 255 in @ref REG_TOUCH_TAG when they
  351. * were touched.
  352. *
  353. * @param s Tag value 1-255
  354. */
  355. #define TAG(s) FT8XX_TAG(s)
  356. /**
  357. * @brief Start the operation of graphics primitives at the specified coordinate
  358. *
  359. * The range of coordinates is from -16384 to +16383 in terms of 1/16th pixel
  360. * units. The negative x coordinate value means the coordinate in the left
  361. * virtual screen from (0, 0), while the negative y coordinate value means the
  362. * coordinate in the upper virtual screen from (0, 0). If drawing on the
  363. * negative coordinate position, the drawing operation will not be visible.
  364. *
  365. * @param x Signed x-coordinate in 1/16 pixel precision
  366. * @param y Signed y-coordinate in 1/16 pixel precision
  367. */
  368. #define VERTEX2F(x, y) FT8XX_VERTEX2F(x, y)
  369. /**
  370. * @brief Start the operation of graphics primitive at the specified coordinates
  371. *
  372. * The valid range of @p handle is from 0 to 31. From 16 to 31 the bitmap handle
  373. * is dedicated to the FT8xx built-in font.
  374. *
  375. * Cell number is the index of bitmap with same bitmap layout and format.
  376. * For example, for handle 31, the cell 65 means the character "A" in the
  377. * largest built in font.
  378. *
  379. * @param x x-coordinate in pixels, from 0 to 511
  380. * @param y y-coordinate in pixels, from 0 to 511
  381. * @param handle Bitmap handle
  382. * @param cell Cell number
  383. */
  384. #define VERTEX2II(x, y, handle, cell) FT8XX_VERTEX2II(x, y, handle, cell)
  385. #if defined(CONFIG_FT800)
  386. /** Main parts of FT800 memory map */
  387. enum ft8xx_memory_map_t {
  388. RAM_G = FT800_RAM_G,
  389. ROM_CHIPID = FT800_ROM_CHIPID,
  390. ROM_FONT = FT800_ROM_FONT,
  391. ROM_FONT_ADDR = FT800_ROM_FONT_ADDR,
  392. RAM_DL = FT800_RAM_DL,
  393. RAM_PAL = FT800_RAM_PAL,
  394. REG_ = FT800_REG_,
  395. RAM_CMD = FT800_RAM_CMD
  396. };
  397. #else /* Definition of FT810 memory map */
  398. /** Main parts of FT810 memory map */
  399. enum ft8xx_memory_map_t {
  400. RAM_G = FT810_RAM_G,
  401. RAM_DL = FT810_RAM_DL,
  402. REG_ = FT810_REG_,
  403. RAM_CMD = FT810_RAM_CMD
  404. };
  405. #endif
  406. #if defined(CONFIG_FT800)
  407. /** FT800 register addresses */
  408. enum ft8xx_register_address_t {
  409. REG_ID = FT800_REG_ID,
  410. REG_FRAMES = FT800_REG_FRAMES,
  411. REG_CLOCK = FT800_REG_CLOCK,
  412. REG_FREQUENCY = FT800_REG_FREQUENCY,
  413. REG_RENDERMODE = FT800_REG_RENDERMODE,
  414. REG_SNAPY = FT800_REG_SNAPY,
  415. REG_SNAPSHOT = FT800_REG_SNAPSHOT,
  416. REG_CPURESET = FT800_REG_CPURESET,
  417. REG_TAP_CRC = FT800_REG_TAP_CRC,
  418. REG_TAP_MASK = FT800_REG_TAP_MASK,
  419. REG_HCYCLE = FT800_REG_HCYCLE,
  420. REG_HOFFSET = FT800_REG_HOFFSET,
  421. REG_HSIZE = FT800_REG_HSIZE,
  422. REG_HSYNC0 = FT800_REG_HSYNC0,
  423. REG_HSYNC1 = FT800_REG_HSYNC1,
  424. REG_VCYCLE = FT800_REG_VCYCLE,
  425. REG_VOFFSET = FT800_REG_VOFFSET,
  426. REG_VSIZE = FT800_REG_VSIZE,
  427. REG_VSYNC0 = FT800_REG_VSYNC0,
  428. REG_VSYNC1 = FT800_REG_VSYNC1,
  429. REG_DLSWAP = FT800_REG_DLSWAP,
  430. REG_ROTATE = FT800_REG_ROTATE,
  431. REG_OUTBITS = FT800_REG_OUTBITS,
  432. REG_DITHER = FT800_REG_DITHER,
  433. REG_SWIZZLE = FT800_REG_SWIZZLE,
  434. REG_CSPREAD = FT800_REG_CSPREAD,
  435. REG_PCLK_POL = FT800_REG_PCLK_POL,
  436. REG_PCLK = FT800_REG_PCLK,
  437. REG_TAG_X = FT800_REG_TAG_X,
  438. REG_TAG_Y = FT800_REG_TAG_Y,
  439. REG_TAG = FT800_REG_TAG,
  440. REG_VOL_PB = FT800_REG_VOL_PB,
  441. REG_VOL_SOUND = FT800_REG_VOL_SOUND,
  442. REG_SOUND = FT800_REG_SOUND,
  443. REG_PLAY = FT800_REG_PLAY,
  444. REG_GPIO_DIR = FT800_REG_GPIO_DIR,
  445. REG_GPIO = FT800_REG_GPIO,
  446. REG_INT_FLAGS = FT800_REG_INT_FLAGS,
  447. REG_INT_EN = FT800_REG_INT_EN,
  448. REG_INT_MASK = FT800_REG_INT_MASK,
  449. REG_PLAYBACK_START = FT800_REG_PLAYBACK_START,
  450. REG_PLAYBACK_LENGTH = FT800_REG_PLAYBACK_LENGTH,
  451. REG_PLAYBACK_READPTR = FT800_REG_PLAYBACK_READPTR,
  452. REG_PLAYBACK_FREQ = FT800_REG_PLAYBACK_FREQ,
  453. REG_PLAYBACK_FORMAT = FT800_REG_PLAYBACK_FORMAT,
  454. REG_PLAYBACK_LOOP = FT800_REG_PLAYBACK_LOOP,
  455. REG_PLAYBACK_PLAY = FT800_REG_PLAYBACK_PLAY,
  456. REG_PWM_HZ = FT800_REG_PWM_HZ,
  457. REG_PWM_DUTY = FT800_REG_PWM_DUTY,
  458. REG_MACRO_0 = FT800_REG_MACRO_0,
  459. REG_MACRO_1 = FT800_REG_MACRO_1,
  460. REG_CMD_READ = FT800_REG_CMD_READ,
  461. REG_CMD_WRITE = FT800_REG_CMD_WRITE,
  462. REG_CMD_DL = FT800_REG_CMD_DL,
  463. REG_TOUCH_MODE = FT800_REG_TOUCH_MODE,
  464. REG_TOUCH_ADC_MODE = FT800_REG_TOUCH_ADC_MODE,
  465. REG_TOUCH_CHARGE = FT800_REG_TOUCH_CHARGE,
  466. REG_TOUCH_SETTLE = FT800_REG_TOUCH_SETTLE,
  467. REG_TOUCH_OVERSAMPLE = FT800_REG_TOUCH_OVERSAMPLE,
  468. REG_TOUCH_RZTHRESH = FT800_REG_TOUCH_RZTHRESH,
  469. REG_TOUCH_RAW_XY = FT800_REG_TOUCH_RAW_XY,
  470. REG_TOUCH_RZ = FT800_REG_TOUCH_RZ,
  471. REG_TOUCH_SCREEN_XY = FT800_REG_TOUCH_SCREEN_XY,
  472. REG_TOUCH_TAG_XY = FT800_REG_TOUCH_TAG_XY,
  473. REG_TOUCH_TAG = FT800_REG_TOUCH_TAG,
  474. REG_TOUCH_TRANSFORM_A = FT800_REG_TOUCH_TRANSFORM_A,
  475. REG_TOUCH_TRANSFORM_B = FT800_REG_TOUCH_TRANSFORM_B,
  476. REG_TOUCH_TRANSFORM_C = FT800_REG_TOUCH_TRANSFORM_C,
  477. REG_TOUCH_TRANSFORM_D = FT800_REG_TOUCH_TRANSFORM_D,
  478. REG_TOUCH_TRANSFORM_E = FT800_REG_TOUCH_TRANSFORM_E,
  479. REG_TOUCH_TRANSFORM_F = FT800_REG_TOUCH_TRANSFORM_F,
  480. REG_TOUCH_DIRECT_XY = FT800_REG_TOUCH_DIRECT_XY,
  481. REG_TOUCH_DIRECT_Z1Z2 = FT800_REG_TOUCH_DIRECT_Z1Z2,
  482. REG_TRACKER = FT800_REG_TRACKER
  483. };
  484. #else /* Definition of FT810 registers */
  485. /** FT810 register addresses */
  486. enum ft8xx_register_address_t {
  487. REG_TRIM = FT810_REG_TRIM,
  488. REG_ID = FT810_REG_ID,
  489. REG_FRAMES = FT810_REG_FRAMES,
  490. REG_CLOCK = FT810_REG_CLOCK,
  491. REG_FREQUENCY = FT810_REG_FREQUENCY,
  492. REG_RENDERMODE = FT810_REG_RENDERMODE,
  493. REG_SNAPY = FT810_REG_SNAPY,
  494. REG_SNAPSHOT = FT810_REG_SNAPSHOT,
  495. REG_CPURESET = FT810_REG_CPURESET,
  496. REG_TAP_CRC = FT810_REG_TAP_CRC,
  497. REG_TAP_MASK = FT810_REG_TAP_MASK,
  498. REG_HCYCLE = FT810_REG_HCYCLE,
  499. REG_HOFFSET = FT810_REG_HOFFSET,
  500. REG_HSIZE = FT810_REG_HSIZE,
  501. REG_HSYNC0 = FT810_REG_HSYNC0,
  502. REG_HSYNC1 = FT810_REG_HSYNC1,
  503. REG_VCYCLE = FT810_REG_VCYCLE,
  504. REG_VOFFSET = FT810_REG_VOFFSET,
  505. REG_VSIZE = FT810_REG_VSIZE,
  506. REG_VSYNC0 = FT810_REG_VSYNC0,
  507. REG_VSYNC1 = FT810_REG_VSYNC1,
  508. REG_DLSWAP = FT810_REG_DLSWAP,
  509. REG_ROTATE = FT810_REG_ROTATE,
  510. REG_OUTBITS = FT810_REG_OUTBITS,
  511. REG_DITHER = FT810_REG_DITHER,
  512. REG_SWIZZLE = FT810_REG_SWIZZLE,
  513. REG_CSPREAD = FT810_REG_CSPREAD,
  514. REG_PCLK_POL = FT810_REG_PCLK_POL,
  515. REG_PCLK = FT810_REG_PCLK,
  516. REG_TAG_X = FT810_REG_TAG_X,
  517. REG_TAG_Y = FT810_REG_TAG_Y,
  518. REG_TAG = FT810_REG_TAG,
  519. REG_VOL_PB = FT810_REG_VOL_PB,
  520. REG_VOL_SOUND = FT810_REG_VOL_SOUND,
  521. REG_SOUND = FT810_REG_SOUND,
  522. REG_PLAY = FT810_REG_PLAY,
  523. REG_GPIO_DIR = FT810_REG_GPIO_DIR,
  524. REG_GPIO = FT810_REG_GPIO,
  525. REG_GPIOX_DIR = FT810_REG_GPIOX_DIR,
  526. REG_GPIOX = FT810_REG_GPIOX,
  527. REG_INT_FLAGS = FT810_REG_INT_FLAGS,
  528. REG_INT_EN = FT810_REG_INT_EN,
  529. REG_INT_MASK = FT810_REG_INT_MASK,
  530. REG_PLAYBACK_START = FT810_REG_PLAYBACK_START,
  531. REG_PLAYBACK_LENGTH = FT810_REG_PLAYBACK_LENGTH,
  532. REG_PLAYBACK_READPTR = FT810_REG_PLAYBACK_READPTR,
  533. REG_PLAYBACK_FREQ = FT810_REG_PLAYBACK_FREQ,
  534. REG_PLAYBACK_FORMAT = FT810_REG_PLAYBACK_FORMAT,
  535. REG_PLAYBACK_LOOP = FT810_REG_PLAYBACK_LOOP,
  536. REG_PLAYBACK_PLAY = FT810_REG_PLAYBACK_PLAY,
  537. REG_PWM_HZ = FT810_REG_PWM_HZ,
  538. REG_PWM_DUTY = FT810_REG_PWM_DUTY,
  539. REG_CMD_READ = FT810_REG_CMD_READ,
  540. REG_CMD_WRITE = FT810_REG_CMD_WRITE,
  541. REG_CMD_DL = FT810_REG_CMD_DL,
  542. REG_TOUCH_MODE = FT810_REG_TOUCH_MODE,
  543. REG_TOUCH_ADC_MODE = FT810_REG_TOUCH_ADC_MODE,
  544. REG_TOUCH_CHARGE = FT810_REG_TOUCH_CHARGE,
  545. REG_TOUCH_SETTLE = FT810_REG_TOUCH_SETTLE,
  546. REG_TOUCH_OVERSAMPLE = FT810_REG_TOUCH_OVERSAMPLE,
  547. REG_TOUCH_RZTHRESH = FT810_REG_TOUCH_RZTHRESH,
  548. REG_TOUCH_RAW_XY = FT810_REG_TOUCH_RAW_XY,
  549. REG_TOUCH_RZ = FT810_REG_TOUCH_RZ,
  550. REG_TOUCH_SCREEN_XY = FT810_REG_TOUCH_SCREEN_XY,
  551. REG_TOUCH_TAG_XY = FT810_REG_TOUCH_TAG_XY,
  552. REG_TOUCH_TAG = FT810_REG_TOUCH_TAG,
  553. REG_TOUCH_TRANSFORM_A = FT810_REG_TOUCH_TRANSFORM_A,
  554. REG_TOUCH_TRANSFORM_B = FT810_REG_TOUCH_TRANSFORM_B,
  555. REG_TOUCH_TRANSFORM_C = FT810_REG_TOUCH_TRANSFORM_C,
  556. REG_TOUCH_TRANSFORM_D = FT810_REG_TOUCH_TRANSFORM_D,
  557. REG_TOUCH_TRANSFORM_E = FT810_REG_TOUCH_TRANSFORM_E,
  558. REG_TOUCH_TRANSFORM_F = FT810_REG_TOUCH_TRANSFORM_F,
  559. REG_TOUCH_CONFIG = FT810_REG_TOUCH_CONFIG,
  560. REG_SPI_WIDTH = FT810_REG_SPI_WIDTH,
  561. REG_TOUCH_DIRECT_XY = FT810_REG_TOUCH_DIRECT_XY,
  562. REG_TOUCH_DIRECT_Z1Z2 = FT810_REG_TOUCH_DIRECT_Z1Z2,
  563. REG_CMDB_SPACE = FT810_REG_CMDB_SPACE,
  564. REG_CMDB_WRITE = FT810_REG_CMDB_WRITE,
  565. REG_TRACKER = FT810_REG_TRACKER,
  566. REG_TRACKER1 = FT810_REG_TRACKER1,
  567. REG_TRACKER2 = FT810_REG_TRACKER2,
  568. REG_TRACKER3 = FT810_REG_TRACKER3,
  569. REG_TRACKER4 = FT810_REG_TRACKER4,
  570. REG_MEDIAFIFO_READ = FT810_REG_MEDIAFIFO_READ,
  571. REG_MEDIAFIFO_WRITE = FT810_REG_MEDIAFIFO_WRITE,
  572. };
  573. #endif
  574. /**
  575. * @}
  576. */
  577. #ifdef __cplusplus
  578. }
  579. #endif
  580. #endif /* ZEPHYR_DRIVERS_MISC_FT8XX_FT8XX_REFERENCE_API_H_ */