display.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600
  1. /*
  2. * Copyright (c) 2017 Jan Van Winkel <jan.van_winkel@dxplore.eu>
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public API for display drivers and applications
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_DISPLAY_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_DISPLAY_H_
  12. /**
  13. * @brief Display Interface
  14. * @defgroup display_interface Display Interface
  15. * @ingroup display_interfaces
  16. * @{
  17. */
  18. #include <device.h>
  19. #include <stddef.h>
  20. #include <zephyr/types.h>
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. /**
  25. * @brief Display pixel formats
  26. *
  27. * Display pixel format enumeration.
  28. *
  29. * In case a pixel format consists out of multiple bytes the byte order is
  30. * big endian.
  31. */
  32. enum display_pixel_format {
  33. PIXEL_FORMAT_RGB_888 = BIT(0),
  34. PIXEL_FORMAT_MONO01 = BIT(1), /* 0=Black 1=White */
  35. PIXEL_FORMAT_MONO10 = BIT(2), /* 1=Black 0=White */
  36. PIXEL_FORMAT_ARGB_8888 = BIT(3),
  37. PIXEL_FORMAT_RGB_565 = BIT(4),
  38. PIXEL_FORMAT_BGR_565 = BIT(5),
  39. PIXEL_FORMAT_BGR_888 = BIT(6),
  40. PIXEL_FORMAT_XRGB_8888 = BIT(7),
  41. PIXEL_FORMAT_BGRA_6666 = BIT(8),
  42. PIXEL_FORMAT_RGBA_6666 = BIT(9),
  43. PIXEL_FORMAT_BGRA_5658 = BIT(10),
  44. PIXEL_FORMAT_BGRA_5551 = BIT(11),
  45. PIXEL_FORMAT_I8 = BIT(12),
  46. PIXEL_FORMAT_I4 = BIT(13),
  47. PIXEL_FORMAT_I2 = BIT(14),
  48. PIXEL_FORMAT_I1 = BIT(15),
  49. PIXEL_FORMAT_A8 = BIT(16),
  50. PIXEL_FORMAT_A4 = BIT(17),
  51. PIXEL_FORMAT_A2 = BIT(18),
  52. PIXEL_FORMAT_A1 = BIT(19),
  53. PIXEL_FORMAT_A4_LE = BIT(20), /* little endian */
  54. PIXEL_FORMAT_A1_LE = BIT(21), /* little endian */
  55. };
  56. enum display_screen_info {
  57. /**
  58. * If selected, one octet represents 8 pixels ordered vertically,
  59. * otherwise ordered horizontally.
  60. */
  61. SCREEN_INFO_MONO_VTILED = BIT(0),
  62. /**
  63. * If selected, the MSB represents the first pixel,
  64. * otherwise MSB represents the last pixel.
  65. */
  66. SCREEN_INFO_MONO_MSB_FIRST = BIT(1),
  67. /**
  68. * Electrophoretic Display.
  69. */
  70. SCREEN_INFO_EPD = BIT(2),
  71. /**
  72. * Screen has two alternating ram buffers
  73. */
  74. SCREEN_INFO_DOUBLE_BUFFER = BIT(3),
  75. /**
  76. * Screen has x alignment constrained to width.
  77. */
  78. SCREEN_INFO_X_ALIGNMENT_WIDTH = BIT(4),
  79. /**
  80. * Screen has y alignment constrained to height.
  81. */
  82. SCREEN_INFO_Y_ALIGNMENT_HEIGHT = BIT(5),
  83. /**
  84. * Screen has no ram buffers
  85. */
  86. SCREEN_INFO_ZERO_BUFFER = BIT(6),
  87. /**
  88. * Screen shape is round
  89. */
  90. SCREEN_INFO_ROUND_SHAPE = BIT(7),
  91. };
  92. /**
  93. * @enum display_orientation
  94. * @brief Enumeration with possible display orientation
  95. *
  96. */
  97. enum display_orientation {
  98. DISPLAY_ORIENTATION_NORMAL,
  99. DISPLAY_ORIENTATION_ROTATED_90,
  100. DISPLAY_ORIENTATION_ROTATED_180,
  101. DISPLAY_ORIENTATION_ROTATED_270,
  102. };
  103. /**
  104. * @struct display_capabilities
  105. * @brief Structure holding display capabilities
  106. *
  107. * @var uint16_t display_capabilities::x_resolution
  108. * Display resolution in the X direction
  109. *
  110. * @var uint16_t display_capabilities::y_resolution
  111. * Display resolution in the Y direction
  112. *
  113. * @var uint8_t display_capabilities::refresh_rate
  114. * Display refresh rate in Hz
  115. *
  116. * @var uint32_t display_capabilities::supported_pixel_formats
  117. * Bitwise or of pixel formats supported by the display
  118. *
  119. * @var uint32_t display_capabilities::screen_info
  120. * Information about display panel
  121. *
  122. * @var enum display_pixel_format display_capabilities::current_pixel_format
  123. * Currently active pixel format for the display
  124. *
  125. * @var enum display_orientation display_capabilities::current_orientation
  126. * Current display orientation
  127. */
  128. /** @brief Structure holding display capabilities. */
  129. struct display_capabilities {
  130. /** Display resolution in the X direction */
  131. uint16_t x_resolution;
  132. /** Display resolution in the Y direction */
  133. uint16_t y_resolution;
  134. /** Bitwise or of pixel formats supported by the display */
  135. uint32_t supported_pixel_formats;
  136. /** Information about display panel */
  137. uint32_t screen_info;
  138. /** Currently active pixel format for the display */
  139. enum display_pixel_format current_pixel_format;
  140. /** Current display orientation */
  141. enum display_orientation current_orientation;
  142. /** Display refresh rate in Hz */
  143. uint8_t refresh_rate;
  144. };
  145. /**
  146. * @struct display_buffer_descriptor
  147. * @brief Structure to describe display data buffer layout
  148. *
  149. * @var uint32_t display_buffer_descriptor::buf_size
  150. * Data buffer size in bytes
  151. *
  152. * @var uint32_t display_buffer_descriptor::pixel_format
  153. * Data buffer pixel format. if 0, fallback to the current pixel format for the display
  154. *
  155. * @var uint32_t display_buffer_descriptor::width
  156. * Data buffer row width in pixels
  157. *
  158. * @var uint16_t display_buffer_descriptor::height
  159. * Data buffer column height in pixels
  160. *
  161. * @var uint32_t display_buffer_descriptor::pitch
  162. * Number of bytes between consecutive rows in the data buffer
  163. *
  164. */
  165. /** @brief Structure to describe display data buffer layout */
  166. struct display_buffer_descriptor {
  167. /** Data buffer size in bytes */
  168. uint32_t buf_size;
  169. /** Data buffer pixel format */
  170. uint32_t pixel_format;
  171. /** Number of bytes between consecutive rows in the data buffer */
  172. uint32_t pitch;
  173. /** Data buffer row width in pixels */
  174. uint32_t width;
  175. /** Data buffer column height in pixels */
  176. uint16_t height;
  177. };
  178. /**
  179. * @struct display_callback
  180. * @brief Structure to register specific event callback
  181. *
  182. */
  183. struct display_callback {
  184. /*
  185. * (*vsync)() is called when a vsync event is received (called in isr),
  186. * timestamp is measured in cycles.
  187. */
  188. void (*vsync)(const struct display_callback * callback, uint32_t timestamp);
  189. /* (*complete)() is called when refresh complete (called in isr) */
  190. void (*complete)(const struct display_callback * callback);
  191. /* (*pm_notify) is called when pm state changed */
  192. void (*pm_notify)(const struct display_callback * callback, uint32_t pm_action);
  193. };
  194. /**
  195. * @typedef display_blanking_on_api
  196. * @brief Callback API to turn on display blanking
  197. * See display_blanking_on() for argument description
  198. */
  199. typedef int (*display_blanking_on_api)(const struct device *dev);
  200. /**
  201. * @typedef display_blanking_off_api
  202. * @brief Callback API to turn off display blanking
  203. * See display_blanking_off() for argument description
  204. */
  205. typedef int (*display_blanking_off_api)(const struct device *dev);
  206. /**
  207. * @typedef display_write_api
  208. * @brief Callback API for writing data to the display
  209. * See display_write() for argument description
  210. */
  211. typedef int (*display_write_api)(const struct device *dev, const uint16_t x,
  212. const uint16_t y,
  213. const struct display_buffer_descriptor *desc,
  214. const void *buf);
  215. /**
  216. * @typedef display_read_api
  217. * @brief Callback API for reading data from the display
  218. * See display_read() for argument description
  219. */
  220. typedef int (*display_read_api)(const struct device *dev, const uint16_t x,
  221. const uint16_t y,
  222. const struct display_buffer_descriptor *desc,
  223. void *buf);
  224. /**
  225. * @typedef display_get_framebuffer_api
  226. * @brief Callback API to get framebuffer pointer
  227. * See display_get_framebuffer() for argument description
  228. */
  229. typedef void *(*display_get_framebuffer_api)(const struct device *dev);
  230. /**
  231. * @typedef display_set_brightness_api
  232. * @brief Callback API to set display brightness
  233. * See display_set_brightness() for argument description
  234. */
  235. typedef int (*display_set_brightness_api)(const struct device *dev,
  236. const uint8_t brightness);
  237. /**
  238. * @typedef display_get_brightness_api
  239. * @brief Callback API to get display brightness
  240. * See display_get_brightness() for argument description
  241. */
  242. typedef int (*display_get_brightness_api)(const struct device *dev);
  243. /**
  244. * @typedef display_set_contrast_api
  245. * @brief Callback API to set display contrast
  246. * See display_set_contrast() for argument description
  247. */
  248. typedef int (*display_set_contrast_api)(const struct device *dev,
  249. const uint8_t contrast);
  250. /**
  251. * @typedef display_get_capabilities_api
  252. * @brief Callback API to get display capabilities
  253. * See display_get_capabilities() for argument description
  254. */
  255. typedef void (*display_get_capabilities_api)(const struct device *dev,
  256. struct display_capabilities *
  257. capabilities);
  258. /**
  259. * @typedef display_set_pixel_format_api
  260. * @brief Callback API to set pixel format used by the display
  261. * See display_set_pixel_format() for argument description
  262. */
  263. typedef int (*display_set_pixel_format_api)(const struct device *dev,
  264. const enum display_pixel_format
  265. pixel_format);
  266. /**
  267. * @typedef display_set_orientation_api
  268. * @brief Callback API to set orientation used by the display
  269. * See display_set_orientation() for argument description
  270. */
  271. typedef int (*display_set_orientation_api)(const struct device *dev,
  272. const enum display_orientation
  273. orientation);
  274. /**
  275. * @typedef display_register_callback_api
  276. * @brief Callback API to register event callback
  277. * See display_register_callback() for argument description
  278. */
  279. typedef int (*display_register_callback_api)(const struct device *dev,
  280. const struct display_callback *callback);
  281. /**
  282. * @typedef display_unregister_callback_api
  283. * @brief Callback API to unregister event callback
  284. * See display_unregister_callback() for argument description
  285. */
  286. typedef int (*display_unregister_callback_api)(const struct device *dev,
  287. const struct display_callback *callback);
  288. /**
  289. * @brief Display driver API
  290. * API which a display driver should expose
  291. */
  292. struct display_driver_api {
  293. display_blanking_on_api blanking_on;
  294. display_blanking_off_api blanking_off;
  295. display_write_api write;
  296. display_read_api read;
  297. display_get_framebuffer_api get_framebuffer;
  298. display_set_brightness_api set_brightness;
  299. display_get_brightness_api get_brightness;
  300. display_set_contrast_api set_contrast;
  301. display_get_capabilities_api get_capabilities;
  302. display_set_pixel_format_api set_pixel_format;
  303. display_set_orientation_api set_orientation;
  304. display_register_callback_api register_callback;
  305. display_unregister_callback_api unregister_callback;
  306. };
  307. /**
  308. * @brief Write data to display
  309. *
  310. * @param dev Pointer to device structure
  311. * @param x x Coordinate of the upper left corner where to write the buffer
  312. * @param y y Coordinate of the upper left corner where to write the buffer
  313. * @param desc Pointer to a structure describing the buffer layout
  314. * @param buf Pointer to buffer array
  315. *
  316. * @retval 0 on success else negative errno code.
  317. */
  318. static inline int display_write(const struct device *dev, const uint16_t x,
  319. const uint16_t y,
  320. const struct display_buffer_descriptor *desc,
  321. const void *buf)
  322. {
  323. struct display_driver_api *api =
  324. (struct display_driver_api *)dev->api;
  325. return api->write(dev, x, y, desc, buf);
  326. }
  327. /**
  328. * @brief Read data from display
  329. *
  330. * @param dev Pointer to device structure
  331. * @param x x Coordinate of the upper left corner where to read from
  332. * @param y y Coordinate of the upper left corner where to read from
  333. * @param desc Pointer to a structure describing the buffer layout
  334. * @param buf Pointer to buffer array
  335. *
  336. * @retval 0 on success else negative errno code.
  337. */
  338. static inline int display_read(const struct device *dev, const uint16_t x,
  339. const uint16_t y,
  340. const struct display_buffer_descriptor *desc,
  341. void *buf)
  342. {
  343. struct display_driver_api *api =
  344. (struct display_driver_api *)dev->api;
  345. return api->read(dev, x, y, desc, buf);
  346. }
  347. /**
  348. * @brief Get pointer to framebuffer for direct access
  349. *
  350. * @param dev Pointer to device structure
  351. *
  352. * @retval Pointer to frame buffer or NULL if direct framebuffer access
  353. * is not supported
  354. *
  355. */
  356. static inline void *display_get_framebuffer(const struct device *dev)
  357. {
  358. struct display_driver_api *api =
  359. (struct display_driver_api *)dev->api;
  360. return api->get_framebuffer(dev);
  361. }
  362. /**
  363. * @brief Turn display blanking on
  364. *
  365. * This function blanks the complete display.
  366. * The content of the frame buffer will be retained while blanking is enabled
  367. * and the frame buffer will be accessible for read and write operations.
  368. *
  369. * In case backlight control is supported by the driver the backlight is
  370. * turned off. The backlight configuration is retained and accessible for
  371. * configuration.
  372. *
  373. * In case the driver supports display blanking the initial state of the driver
  374. * would be the same as if this function was called.
  375. *
  376. * @param dev Pointer to device structure
  377. *
  378. * @retval 0 on success else negative errno code.
  379. */
  380. static inline int display_blanking_on(const struct device *dev)
  381. {
  382. struct display_driver_api *api =
  383. (struct display_driver_api *)dev->api;
  384. return api->blanking_on(dev);
  385. }
  386. /**
  387. * @brief Turn display blanking off
  388. *
  389. * Restore the frame buffer content to the display.
  390. * In case backlight control is supported by the driver the backlight
  391. * configuration is restored.
  392. *
  393. * @param dev Pointer to device structure
  394. *
  395. * @retval 0 on success else negative errno code.
  396. */
  397. static inline int display_blanking_off(const struct device *dev)
  398. {
  399. struct display_driver_api *api =
  400. (struct display_driver_api *)dev->api;
  401. return api->blanking_off(dev);
  402. }
  403. /**
  404. * @brief Set the brightness of the display
  405. *
  406. * Set the brightness of the display in steps of 1/256, where 255 is full
  407. * brightness and 0 is minimal.
  408. *
  409. * @param dev Pointer to device structure
  410. * @param brightness Brightness in steps of 1/256
  411. *
  412. * @retval 0 on success else negative errno code.
  413. */
  414. static inline int display_set_brightness(const struct device *dev,
  415. uint8_t brightness)
  416. {
  417. struct display_driver_api *api =
  418. (struct display_driver_api *)dev->api;
  419. return api->set_brightness(dev, brightness);
  420. }
  421. /**
  422. * @brief Get the brightness of the display
  423. *
  424. * Get the brightness of the display in steps of 1/256, where 255 is full
  425. * brightness and 0 is minimal.
  426. *
  427. * @param dev Pointer to device structure
  428. *
  429. * @retval 0~255 on success else negative errno code.
  430. */
  431. static inline int display_get_brightness(const struct device *dev)
  432. {
  433. struct display_driver_api *api =
  434. (struct display_driver_api *)dev->api;
  435. return api->get_brightness(dev);
  436. }
  437. /**
  438. * @brief Set the contrast of the display
  439. *
  440. * Set the contrast of the display in steps of 1/256, where 255 is maximum
  441. * difference and 0 is minimal.
  442. *
  443. * @param dev Pointer to device structure
  444. * @param contrast Contrast in steps of 1/256
  445. *
  446. * @retval 0 on success else negative errno code.
  447. */
  448. static inline int display_set_contrast(const struct device *dev, uint8_t contrast)
  449. {
  450. struct display_driver_api *api =
  451. (struct display_driver_api *)dev->api;
  452. return api->set_contrast(dev, contrast);
  453. }
  454. /**
  455. * @brief Get display capabilities
  456. *
  457. * @param dev Pointer to device structure
  458. * @param capabilities Pointer to capabilities structure to populate
  459. */
  460. static inline void display_get_capabilities(const struct device *dev,
  461. struct display_capabilities *
  462. capabilities)
  463. {
  464. struct display_driver_api *api =
  465. (struct display_driver_api *)dev->api;
  466. api->get_capabilities(dev, capabilities);
  467. }
  468. /**
  469. * @brief Set pixel format used by the display
  470. *
  471. * @param dev Pointer to device structure
  472. * @param pixel_format Pixel format to be used by display
  473. *
  474. * @retval 0 on success else negative errno code.
  475. */
  476. static inline int
  477. display_set_pixel_format(const struct device *dev,
  478. const enum display_pixel_format pixel_format)
  479. {
  480. struct display_driver_api *api =
  481. (struct display_driver_api *)dev->api;
  482. return api->set_pixel_format(dev, pixel_format);
  483. }
  484. /**
  485. * @brief Set display orientation
  486. *
  487. * @param dev Pointer to device structure
  488. * @param orientation Orientation to be used by display
  489. *
  490. * @retval 0 on success else negative errno code.
  491. */
  492. static inline int display_set_orientation(const struct device *dev,
  493. const enum display_orientation
  494. orientation)
  495. {
  496. struct display_driver_api *api =
  497. (struct display_driver_api *)dev->api;
  498. return api->set_orientation(dev, orientation);
  499. }
  500. /**
  501. * @brief Register display event callback
  502. *
  503. * @param dev Pointer to device structure
  504. * @param callback Pointer to structure containing the event callbacks
  505. *
  506. * @retval 0 on success else negative errno code.
  507. */
  508. static inline int display_register_callback(const struct device *dev,
  509. const struct display_callback *callback)
  510. {
  511. struct display_driver_api *api =
  512. (struct display_driver_api *)dev->api;
  513. if (api->register_callback) {
  514. return api->register_callback(dev, callback);
  515. }
  516. return -ENOSYS;
  517. }
  518. /**
  519. * @brief Unregister display event callback
  520. *
  521. * @param dev Pointer to device structure
  522. * @param callback Pointer to structure containing the event callbacks
  523. *
  524. * @retval 0 on success else negative errno code.
  525. */
  526. static inline int display_unregister_callback(const struct device *dev,
  527. const struct display_callback *callback)
  528. {
  529. struct display_driver_api *api =
  530. (struct display_driver_api *)dev->api;
  531. if (api->unregister_callback) {
  532. return api->unregister_callback(dev, callback);
  533. }
  534. return -ENOSYS;
  535. }
  536. #ifdef __cplusplus
  537. }
  538. #endif
  539. /**
  540. * @}
  541. */
  542. #endif /* ZEPHYR_INCLUDE_DRIVERS_DISPLAY_H_ */