display_controller.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for display controller drivers
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_CONTROLLER_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_CONTROLLER_H_
  12. #include <kernel.h>
  13. #include <device.h>
  14. #include <zephyr/types.h>
  15. #include <drivers/cfg_drv/dev_config.h>
  16. #include "display_graphics.h"
  17. /**
  18. * @brief Display Controller Interface
  19. * @defgroup display_controller_interface Display Controller Interface
  20. * @ingroup display_interfaces
  21. * @{
  22. */
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /* invalid command ID */
  27. #define DC_INVALID_CMD (UINT32_MAX)
  28. #define DISPLAY_PORT_TYPE(major, minor) (((major) << 8) | (minor))
  29. #define DISPLAY_PORT_TYPE_MAJOR(type) (((type) >> 8) & 0xFF)
  30. #define DISPLAY_PORT_TYPE_MINOR(type) ((type) & 0xFF)
  31. /**
  32. * @brief Enumeration with possible display major port type
  33. *
  34. */
  35. #define DISPLAY_PORT_Unknown (0)
  36. #define DISPLAY_PORT_MCU (1)
  37. #define DISPLAY_PORT_TR (2)
  38. #define DISPLAY_PORT_SPI (4)
  39. /**
  40. * @brief Enumeration with possible display mcu port type
  41. *
  42. */
  43. #define DISPLAY_MCU_8080 (0) /* Intel 8080 */
  44. #define DISPLAY_MCU_6800 (1) /* Moto 6800 */
  45. #define DISPLAY_PORT_MCU_8080 DISPLAY_PORT_TYPE(DISPLAY_PORT_MCU, DISPLAY_MCU_8080)
  46. #define DISPLAY_PORT_MCU_6800 DISPLAY_PORT_TYPE(DISPLAY_PORT_MCU, DISPLAY_MCU_6800)
  47. /**
  48. * @brief Enumeration with possible display spi port type
  49. *
  50. */
  51. #define DISPLAY_SPI_3LINE_1 (0)
  52. #define DISPLAY_SPI_3LINE_2 (1)
  53. #define DISPLAY_SPI_4LINE_1 (2)
  54. #define DISPLAY_SPI_4LINE_2 (3)
  55. #define DISPLAY_QSPI (4)
  56. #define DISPLAY_QSPI_SYNC (5)
  57. #define DISPLAY_QSPI_DDR_0 (6)
  58. #define DISPLAY_QSPI_DDR_1 (7)
  59. #define DISPLAY_QSPI_DDR_2 (8)
  60. #define DISPLAY_PORT_SPI_3LINE_1 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_SPI_3LINE_1)
  61. #define DISPLAY_PORT_SPI_3LINE_2 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_SPI_3LINE_2)
  62. #define DISPLAY_PORT_SPI_4LINE_1 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_SPI_4LINE_1)
  63. #define DISPLAY_PORT_SPI_4LINE_2 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_SPI_4LINE_2)
  64. #define DISPLAY_PORT_QSPI DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_QSPI)
  65. #define DISPLAY_PORT_QSPI_SYNC DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_QSPI_SYNC)
  66. #define DISPLAY_PORT_QSPI_DDR_0 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_QSPI_DDR_0)
  67. #define DISPLAY_PORT_QSPI_DDR_1 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_QSPI_DDR_1)
  68. #define DISPLAY_PORT_QSPI_DDR_2 DISPLAY_PORT_TYPE(DISPLAY_PORT_SPI, DISPLAY_QSPI_DDR_2)
  69. /**
  70. * @brief Enumeration with possible display TR port type
  71. *
  72. */
  73. #define DISPLAY_PORT_TR_LCD DISPLAY_PORT_TYPE(DISPLAY_PORT_TR, 0)
  74. /**
  75. * @struct display_videoport
  76. * @brief Structure holding display port configuration
  77. *
  78. */
  79. struct display_videoport {
  80. /* port type */
  81. union {
  82. uint16_t type;
  83. struct {
  84. uint8_t minor_type;
  85. uint8_t major_type;
  86. };
  87. };
  88. union {
  89. /* mcu port */
  90. struct {
  91. uint8_t cs : 1; /* chip select */
  92. uint8_t lsb_first : 1;
  93. uint8_t bus_width; /* output interface buf width */
  94. uint8_t clk_low_duration; /* mem clock low level duration */
  95. uint8_t clk_high_duration; /* mem clock high level duration */
  96. } mcu_mode;
  97. /* spi port */
  98. struct {
  99. uint8_t cs : 1; /* chip select */
  100. uint8_t lsb_first : 1; /* if set, transfer LSB first */
  101. /**
  102. * Clock Polarity: if set, clock idle state will be 1 and active
  103. * state will be 0. If untouched, the inverse will be true
  104. */
  105. uint8_t cpol : 1;
  106. /**
  107. * Clock Phase: this dictates when is the data captured, and depends
  108. * clock's polarity. When cpol is set and this bit as well,
  109. * capture will occur on low to high transition and high to low if
  110. * this bit is not set (default). This is fully reversed if CPOL is
  111. * not set.
  112. */
  113. uint8_t cpha : 1;
  114. uint8_t dual_lane : 1; /* dual data lane enable */
  115. uint8_t dcp_mode : 1; /* data compat mode enable */
  116. uint8_t rd_lane : 2; /* the data lane where to read data from panel (only for QSPI) */
  117. uint8_t rd_dummy_cycles; /* read dummy cycles between command and the following data */
  118. uint8_t rd_delay_ns; /* read data delay in ns */
  119. uint8_t wr_delay_d0_ns; /* write signal d0 delay in ns */
  120. uint8_t wr_delay_d1_ns; /* write signal d1 delay in ns */
  121. uint8_t wr_delay_d2_ns; /* write signal d2 delay in ns */
  122. uint8_t wr_delay_d3_ns; /* write signal d3 delay in ns */
  123. uint8_t delay_csx_ns; /* signal csx delay in ns */
  124. uint8_t delay_scl_ns; /* signal scl delay in ns */
  125. uint8_t ahb_clk_div; /* AHB clock divisor of AHB duration */
  126. } spi_mode;
  127. struct {
  128. uint8_t low_bit : 3; /* lowest pixel bit */
  129. uint8_t hck_tail_on : 1; /* HCK tail enable */
  130. uint8_t vck_on_xrstl : 1; /* VCK continue when XRST low */
  131. uint8_t vck_on_idle : 1; /* VCK continue when idle */
  132. uint8_t hck_on_idle : 1; /* HCK continue when idle */
  133. uint8_t ptl_on : 1; /* patial update enabled */
  134. uint8_t frp_on : 1; /* Frame refresh pulse enabled */
  135. uint8_t vcom_inv : 1; /* VCOM inverse */
  136. uint8_t frp_inv : 1; /* FRP inverse */
  137. uint8_t xfrp_inv : 1; /* XFRP inverse */
  138. uint8_t xrst_inv : 1; /* XRST inverse */
  139. uint8_t vst_inv : 1; /* VST inverse */
  140. uint8_t hst_inv : 1; /* HST inverse */
  141. uint8_t vck_inv : 1; /* VCK inverse */
  142. uint8_t hck_inv : 1; /* HCK inverse */
  143. uint8_t enb_inv : 1; /* ENB inverse */
  144. uint32_t tw_xrst : 8; /* XRST Low width in us */
  145. uint32_t tw_vcom : 23; /* VCOM Low and high width in us */
  146. uint32_t td_vst : 8; /* VST delay time in us */
  147. uint32_t tw_vst : 8; /* VST high width in us */
  148. uint32_t td_hst : 8; /* HST delay time */
  149. uint32_t tw_hst : 8; /* HST high width in us */
  150. uint32_t td_vck : 8; /* VCK delay time */
  151. uint32_t tw_vck : 11; /* VCK Low and high width */
  152. uint32_t tp_hck : 2; /* HCK phase */
  153. uint32_t td_hck : 8; /* HCK divisor by LCD_CLK, multiple of 4 */
  154. uint32_t ts_enb : 11; /* ENB set-up time */
  155. uint32_t th_enb : 11; /* ENB hold time */
  156. uint32_t td_data : 8; /* DATA delay time */
  157. uint32_t td_enb : 13; /* ENB delay time */
  158. uint32_t tw_enb : 13; /* ENB high width */
  159. uint32_t tsm_enb : 11; /* Minimum VCK set-up time in VCK/4 */
  160. uint32_t thm_enb : 11; /* Minimum VCK hold time in VCK/4 */
  161. uint32_t twm_vck : 10; /* Minimum VCK width in HCK */
  162. } tr_mode;
  163. };
  164. };
  165. /* display timing flags */
  166. enum display_flags {
  167. /* tearing effect sync flag */
  168. DISPLAY_FLAGS_TE_LOW = BIT(0),
  169. DISPLAY_FLAGS_TE_HIGH = BIT(1),
  170. /* horizontal sync flag */
  171. DISPLAY_FLAGS_HSYNC_LOW = BIT(2),
  172. DISPLAY_FLAGS_HSYNC_HIGH = BIT(3),
  173. /* vertical sync flag */
  174. DISPLAY_FLAGS_VSYNC_LOW = BIT(4),
  175. DISPLAY_FLAGS_VSYNC_HIGH = BIT(5),
  176. /* data enable flag */
  177. DISPLAY_FLAGS_DE_LOW = BIT(6),
  178. DISPLAY_FLAGS_DE_HIGH = BIT(7),
  179. /* drive data on pos. edge (rising edge) */
  180. DISPLAY_FLAGS_PIXDATA_POSEDGE = BIT(8),
  181. /* drive data on neg. edge (falling edge) */
  182. DISPLAY_FLAGS_PIXDATA_NEGEDGE = BIT(9),
  183. /* drive sync on pos. edge (rising edge) */
  184. DISPLAY_FLAGS_SYNC_POSEDGE = BIT(10),
  185. /* drive sync on neg. edge (falling edge) */
  186. DISPLAY_FLAGS_SYNC_NEGEDGE = BIT(11),
  187. };
  188. /**
  189. * @struct display_videomode
  190. * @brief Structure holding display mode configuration
  191. *
  192. */
  193. struct display_videomode {
  194. uint32_t pixel_format; /* see enum display_pixel_format */
  195. /* timing */
  196. uint32_t pixel_clk; /* pixel clock in KHz */
  197. uint16_t refresh_rate; /* refresh rate in Hz */
  198. uint16_t hactive; /* hor. active video in pixels */
  199. uint16_t hfront_porch; /* hor. front porch in clock cycles */
  200. uint16_t hback_porch; /* hor. back porch in clock cycles */
  201. uint16_t hsync_len; /* hor. sync pulse width in clock cycles */
  202. uint16_t vactive; /* ver. active video in lines */
  203. uint16_t vfront_porch; /* ver. front porch in lines */
  204. uint16_t vback_porch; /* ver. back porch in lines */
  205. uint16_t vsync_len; /* ver. sync pulse width in lines */
  206. /* timing flags */
  207. uint16_t flags; /* display flags */
  208. };
  209. /**
  210. * @enum display_controller_ctrl_type
  211. * @brief Enumeration with possible display controller ctrl commands
  212. *
  213. */
  214. enum display_controller_ctrl_type {
  215. DISPLAY_CONTROLLER_CTRL_COMPLETE_CB = 0,
  216. DISPLAY_CONTROLLER_CTRL_VSYNC_CB, /* vsync or te callback */
  217. DISPLAY_CONTROLLER_CTRL_HOTPLUG_CB,
  218. };
  219. /**
  220. * @typedef display_controller_complete_t
  221. * @brief Callback API executed when display controller complete one frame
  222. *
  223. */
  224. typedef void (*display_controller_complete_t)(void *arg);
  225. /**
  226. * @typedef display_controller_vsync_t
  227. * @brief Callback API executed when display controller receive vsync or te signal
  228. *
  229. */
  230. typedef void (*display_controller_vsync_t)(void *arg, uint32_t timestamp);
  231. /**
  232. * @typedef display_controller_vsync_t
  233. * @brief Callback API executed when display controller receive vsync or te signal
  234. *
  235. */
  236. typedef void (*display_controller_hotplug_t)(void *arg, int connected);
  237. /**
  238. * @enum display_controller_source_type
  239. * @brief Enumeration with possible display controller intput source
  240. *
  241. */
  242. enum display_controller_source_type {
  243. DISPLAY_CONTROLLER_SOURCE_MCU = 0, /* MCU write */
  244. DISPLAY_CONTROLLER_SOURCE_ENGINE, /* display engine transfer */
  245. DISPLAY_CONTROLLER_SOURCE_DMA, /* DMA transfer */
  246. DISPLAY_CONTROLLER_NUM_SOURCES,
  247. };
  248. /**
  249. * @typedef display_controller_control_api
  250. * @brief Callback API to control display controller device
  251. * See display_controller_control() for argument description
  252. */
  253. typedef int (*display_controller_control_api)(
  254. const struct device *dev, int cmd, void *arg1, void *arg2);
  255. /**
  256. * @typedef display_controller_enable_api
  257. * @brief Callback API to enable display controller
  258. * See display_controller_enable() for argument description
  259. */
  260. typedef int (*display_controller_enable_api)(const struct device *dev,
  261. const struct display_videoport *port);
  262. /**
  263. * @typedef display_controller_disable_api
  264. * @brief Callback API to disable display controller
  265. * See display_controller_disable() for argument description
  266. */
  267. typedef int (*display_controller_disable_api)(const struct device *dev);
  268. /**
  269. * @typedef display_controller_set_mode_api
  270. * @brief Callback API to set display mode
  271. * See display_controller_set_mode() for argument description
  272. */
  273. typedef int (*display_controller_set_mode_api)(const struct device *dev,
  274. const struct display_videomode *mode);
  275. /**
  276. * @typedef display_controller_read_config
  277. * @brief Callback API to read display configuration
  278. * See display_controller_read_config() for argument description
  279. */
  280. typedef int (*display_controller_read_config_api)(const struct device *dev,
  281. uint32_t cmd, void *buf, uint32_t len);
  282. /**
  283. * @typedef display_controller_write_config_api
  284. * @brief Callback API to write display configuration
  285. * See display_controller_write_config() for argument description
  286. */
  287. typedef int (*display_controller_write_config_api)(const struct device *dev,
  288. uint32_t cmd, const void *buf, uint32_t len);
  289. /**
  290. * @typedef display_controller_read_pixels_api
  291. * @brief Callback API to read display image when source is MCU write
  292. * See display_controller_read_pixels() for argument description
  293. */
  294. typedef int (*display_controller_read_pixels_api)(const struct device *dev,
  295. uint32_t cmd, const struct display_buffer_descriptor *desc, void *buf);
  296. /**
  297. * @typedef display_controller_write_pixels_api
  298. * @brief Callback API to write display image when source is MCU write
  299. * See display_controller_write_pixels() for argument description
  300. */
  301. typedef int (*display_controller_write_pixels_api)(
  302. const struct device *dev, uint32_t cmd, uint32_t hsync_cmd,
  303. const struct display_buffer_descriptor *desc, const void *buf);
  304. /**
  305. * @typedef display_controller_set_source_api
  306. * @brief Callback API to set display image input source device
  307. * See display_controller_set_source() for argument description
  308. */
  309. typedef int (*display_controller_set_source_api)(const struct device *dev,
  310. enum display_controller_source_type source_type,
  311. const struct device *source_dev);
  312. /**
  313. * @brief Display Controller driver API
  314. * API which a display controller driver should expose
  315. */
  316. struct display_controller_driver_api {
  317. display_controller_control_api control;
  318. display_controller_enable_api enable;
  319. display_controller_disable_api disable;
  320. display_controller_set_mode_api set_mode;
  321. display_controller_set_source_api set_source;
  322. display_controller_read_config_api read_config;
  323. display_controller_write_config_api write_config;
  324. display_controller_read_pixels_api read_pixels;
  325. display_controller_write_pixels_api write_pixels;
  326. };
  327. /**
  328. * @brief Control display controller
  329. *
  330. * @param dev Pointer to device structure
  331. * @param cmd Control command
  332. * @param arg1 Control command argument 1
  333. * @param arg2 Control command argument 2
  334. *
  335. * @retval 0 on success else negative errno code.
  336. */
  337. static inline int display_controller_control(const struct device *dev,
  338. int cmd, void *arg1, void *arg2)
  339. {
  340. struct display_controller_driver_api *api =
  341. (struct display_controller_driver_api *)dev->api;
  342. return api->control(dev, cmd, arg1, arg2);
  343. }
  344. /**
  345. * @brief Turn display controller on
  346. *
  347. * @param dev Pointer to device structure
  348. * @param port Pointer to display_videoport structure, which must be static defined,
  349. * since display controller will still refer it until next api call.
  350. *
  351. * @retval 0 on success else negative errno code.
  352. */
  353. static inline int display_controller_enable(const struct device *dev,
  354. const struct display_videoport *port)
  355. {
  356. struct display_controller_driver_api *api =
  357. (struct display_controller_driver_api *)dev->api;
  358. return api->enable(dev, port);
  359. }
  360. /**
  361. * @brief Turn display controller off
  362. *
  363. * @param dev Pointer to device structure
  364. *
  365. * @retval 0 on success else negative errno code.
  366. */
  367. static inline int display_controller_disable(const struct device *dev)
  368. {
  369. struct display_controller_driver_api *api =
  370. (struct display_controller_driver_api *)dev->api;
  371. return api->disable(dev);
  372. }
  373. /**
  374. * @brief Set display video mode
  375. *
  376. * @param dev Pointer to device structure
  377. * @param mode Pointer to display_mode_set structure, which must be static defined,
  378. * since display controller will still refer it until next api call.
  379. *
  380. * @retval 0 on success else negative errno code.
  381. */
  382. static inline int display_controller_set_mode(const struct device *dev,
  383. const struct display_videomode *mode)
  384. {
  385. struct display_controller_driver_api *api =
  386. (struct display_controller_driver_api *)dev->api;
  387. return api->set_mode(dev, mode);
  388. }
  389. /**
  390. * @brief Set display controller image input source
  391. *
  392. * This routine configs the image input source device, which should be a display
  393. * accelerator 2D device.
  394. *
  395. * @param dev Pointer to device structure
  396. * @param source_type source type
  397. * @param source_dev Pointer to structure of source device
  398. *
  399. * @retval 0 on success else negative errno code.
  400. */
  401. static inline int display_controller_set_source(const struct device *dev,
  402. enum display_controller_source_type source_type, const struct device *source_dev)
  403. {
  404. struct display_controller_driver_api *api =
  405. (struct display_controller_driver_api *)dev->api;
  406. return api->set_source(dev, source_type, source_dev);
  407. }
  408. /**
  409. * @brief Read configuration data from display
  410. *
  411. * @param dev Pointer to device structure
  412. * @param cmd Read reg command, ignored for DC_INVAL_CMD
  413. * @param buf Pointer to data array
  414. * @param len Length of data to read
  415. *
  416. * @retval 0 on success else negative errno code.
  417. */
  418. static inline int display_controller_read_config(const struct device *dev,
  419. uint32_t cmd, void *buf, uint32_t len)
  420. {
  421. struct display_controller_driver_api *api =
  422. (struct display_controller_driver_api *)dev->api;
  423. return api->read_config(dev, cmd, buf, len);
  424. }
  425. /**
  426. * @brief Write configuration data to display
  427. *
  428. * @param dev Pointer to device structure
  429. * @param cmd Write reg command, ignored for DC_INVAL_CMD
  430. * @param buf Pointer to data array
  431. * @param len Length of data to write
  432. *
  433. * @retval 0 on success else negative errno code.
  434. */
  435. static inline int display_controller_write_config(const struct device *dev,
  436. uint32_t cmd, const void *buf, uint32_t len)
  437. {
  438. struct display_controller_driver_api *api =
  439. (struct display_controller_driver_api *)dev->api;
  440. return api->write_config(dev, cmd, buf, len);
  441. }
  442. /**
  443. * @brief Read image data from display
  444. *
  445. * @param dev Pointer to device structure
  446. * @param cmd Read pixel command, ignored for DC_INVAL_CMD
  447. * @param desc Pointer to a structure describing the buffer layout
  448. * @param buf Pointer to buffer array
  449. *
  450. * @retval 0 on success else negative errno code.
  451. */
  452. static inline int display_controller_read_pixels(const struct device *dev,
  453. uint32_t cmd, const struct display_buffer_descriptor *desc, void *buf)
  454. {
  455. struct display_controller_driver_api *api =
  456. (struct display_controller_driver_api *)dev->api;
  457. return api->read_pixels(dev, cmd, desc, buf);
  458. }
  459. /**
  460. * @brief Write image data to display
  461. *
  462. * This routine may return immediately without waiting complete, So the caller must make
  463. * sure the previous write_pixels() has completed by listening to complete() callback
  464. * registered by control() with cmd DISPLAY_CONTROLLER_CTRL_COMPLETE_CB.
  465. *
  466. * @param dev Pointer to device structure
  467. * @param cmd Write pixel command (also vsync command), ignored for DC_INVAL_CMD
  468. * @param hsync_cmd Additional hsync command for sync interface, ignored for DC_INVAL_CMD
  469. * @param desc Pointer to a structure describing the buffer layout
  470. * @param buf Pointer to buffer array
  471. *
  472. * @retval 0 on success else negative errno code.
  473. */
  474. static inline int display_controller_write_pixels(
  475. const struct device *dev, uint32_t cmd, uint32_t hsync_cmd,
  476. const struct display_buffer_descriptor *desc, const void *buf)
  477. {
  478. struct display_controller_driver_api *api =
  479. (struct display_controller_driver_api *)dev->api;
  480. return api->write_pixels(dev, cmd, hsync_cmd, desc, buf);
  481. }
  482. #ifdef __cplusplus
  483. }
  484. #endif
  485. /**
  486. * @}
  487. */
  488. #endif /* ZEPHYR_INCLUDE_DRIVERS_DISPLAY_DISPLAY_CONTROLLER_H_ */