cfb.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181
  1. /*
  2. * Copyright (c) 2018 PHYTEC Messtechnik GmbH
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Public Monochrome Character Framebuffer API
  9. */
  10. #ifndef __CFB_H__
  11. #define __CFB_H__
  12. #include <device.h>
  13. #include <drivers/display.h>
  14. #ifdef __cplusplus
  15. extern "C" {
  16. #endif
  17. /**
  18. * @brief Display Drivers
  19. * @addtogroup display_interfaces Display Drivers
  20. * @{
  21. * @}
  22. */
  23. /**
  24. * @brief Public Monochrome Character Framebuffer API
  25. * @defgroup monochrome_character_framebuffer Monochrome Character Framebuffer
  26. * @ingroup display_interfaces
  27. * @{
  28. */
  29. enum cfb_display_param {
  30. CFB_DISPLAY_HEIGH = 0,
  31. CFB_DISPLAY_WIDTH,
  32. CFB_DISPLAY_PPT,
  33. CFB_DISPLAY_ROWS,
  34. CFB_DISPLAY_COLS,
  35. };
  36. enum cfb_font_caps {
  37. CFB_FONT_MONO_VPACKED = BIT(0),
  38. CFB_FONT_MONO_HPACKED = BIT(1),
  39. CFB_FONT_MSB_FIRST = BIT(2),
  40. };
  41. struct cfb_font {
  42. const void *data;
  43. enum cfb_font_caps caps;
  44. uint8_t width;
  45. uint8_t height;
  46. uint8_t first_char;
  47. uint8_t last_char;
  48. };
  49. /**
  50. * @brief Macro for creating a font entry.
  51. *
  52. * @param _name Name of the font entry.
  53. * @param _width Width of the font in pixels
  54. * @param _height Height of the font in pixels.
  55. * @param _caps Font capabilities.
  56. * @param _data Raw data of the font.
  57. * @param _fc Character mapped to first font element.
  58. * @param _lc Character mapped to last font element.
  59. */
  60. #define FONT_ENTRY_DEFINE(_name, _width, _height, _caps, _data, _fc, _lc) \
  61. static const STRUCT_SECTION_ITERABLE(cfb_font, _name) = { \
  62. .data = _data, \
  63. .caps = _caps, \
  64. .width = _width, \
  65. .height = _height, \
  66. .first_char = _fc, \
  67. .last_char = _lc, \
  68. }
  69. /**
  70. * @brief Print a string into the framebuffer.
  71. *
  72. * @param dev Pointer to device structure for driver instance
  73. * @param str String to print
  74. * @param x Position in X direction of the beginning of the string
  75. * @param y Position in Y direction of the beginning of the string
  76. *
  77. * @return 0 on success, negative value otherwise
  78. */
  79. int cfb_print(const struct device *dev, char *str, uint16_t x, uint16_t y);
  80. /**
  81. * @brief Clear framebuffer.
  82. *
  83. * @param dev Pointer to device structure for driver instance
  84. * @param clear_display Clear the display as well
  85. *
  86. * @return 0 on success, negative value otherwise
  87. */
  88. int cfb_framebuffer_clear(const struct device *dev, bool clear_display);
  89. /**
  90. * @brief Invert Pixels.
  91. *
  92. * @param dev Pointer to device structure for driver instance
  93. *
  94. * @return 0 on success, negative value otherwise
  95. */
  96. int cfb_framebuffer_invert(const struct device *dev);
  97. /**
  98. * @brief Finalize framebuffer and write it to display RAM,
  99. * invert or reorder pixels if necessary.
  100. *
  101. * @param dev Pointer to device structure for driver instance
  102. *
  103. * @return 0 on success, negative value otherwise
  104. */
  105. int cfb_framebuffer_finalize(const struct device *dev);
  106. /**
  107. * @brief Get display parameter.
  108. *
  109. * @param dev Pointer to device structure for driver instance
  110. * @param cfb_display_param One of the display parameters
  111. *
  112. * @return Display parameter value
  113. */
  114. int cfb_get_display_parameter(const struct device *dev,
  115. enum cfb_display_param);
  116. /**
  117. * @brief Set font.
  118. *
  119. * @param dev Pointer to device structure for driver instance
  120. * @param idx Font index
  121. *
  122. * @return 0 on success, negative value otherwise
  123. */
  124. int cfb_framebuffer_set_font(const struct device *dev, uint8_t idx);
  125. /**
  126. * @brief Get font size.
  127. *
  128. * @param dev Pointer to device structure for driver instance
  129. * @param idx Font index
  130. * @param width Pointers to the variable where the font width will be stored.
  131. * @param height Pointers to the variable where the font height will be stored.
  132. *
  133. * @return 0 on success, negative value otherwise
  134. */
  135. int cfb_get_font_size(const struct device *dev, uint8_t idx, uint8_t *width,
  136. uint8_t *height);
  137. /**
  138. * @brief Get number of fonts.
  139. *
  140. * @param dev Pointer to device structure for driver instance
  141. *
  142. * @return number of fonts
  143. */
  144. int cfb_get_numof_fonts(const struct device *dev);
  145. /**
  146. * @brief Initialize Character Framebuffer.
  147. *
  148. * @param dev Pointer to device structure for driver instance
  149. *
  150. * @return 0 on success, negative value otherwise
  151. */
  152. int cfb_framebuffer_init(const struct device *dev);
  153. #ifdef __cplusplus
  154. }
  155. #endif
  156. /**
  157. * @}
  158. */
  159. #endif /* __CFB_H__ */