display_st7789v.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  1. /*
  2. * Copyright (c) 2017 Jan Van Winkel <jan.van_winkel@dxplore.eu>
  3. * Copyright (c) 2019 Nordic Semiconductor ASA
  4. * Copyright (c) 2019 Marc Reilly
  5. * Copyright (c) 2019 PHYTEC Messtechnik GmbH
  6. * Copyright (c) 2020 Endian Technologies AB
  7. *
  8. * SPDX-License-Identifier: Apache-2.0
  9. */
  10. #define DT_DRV_COMPAT sitronix_st7789v
  11. #include "display_st7789v.h"
  12. #include <device.h>
  13. #include <drivers/spi.h>
  14. #include <drivers/gpio.h>
  15. #include <sys/byteorder.h>
  16. #include <drivers/display.h>
  17. #define LOG_LEVEL CONFIG_DISPLAY_LOG_LEVEL
  18. #include <logging/log.h>
  19. LOG_MODULE_REGISTER(display_st7789v);
  20. #define ST7789V_CS_PIN DT_INST_SPI_DEV_CS_GPIOS_PIN(0)
  21. #define ST7789V_CMD_DATA_PIN DT_INST_GPIO_PIN(0, cmd_data_gpios)
  22. #define ST7789V_CMD_DATA_FLAGS DT_INST_GPIO_FLAGS(0, cmd_data_gpios)
  23. #define ST7789V_RESET_PIN DT_INST_GPIO_PIN(0, reset_gpios)
  24. #define ST7789V_RESET_FLAGS DT_INST_GPIO_FLAGS(0, reset_gpios)
  25. static uint8_t st7789v_porch_param[] = DT_INST_PROP(0, porch_param);
  26. static uint8_t st7789v_cmd2en_param[] = DT_INST_PROP(0, cmd2en_param);
  27. static uint8_t st7789v_pwctrl1_param[] = DT_INST_PROP(0, pwctrl1_param);
  28. static uint8_t st7789v_pvgam_param[] = DT_INST_PROP(0, pvgam_param);
  29. static uint8_t st7789v_nvgam_param[] = DT_INST_PROP(0, nvgam_param);
  30. static uint8_t st7789v_ram_param[] = DT_INST_PROP(0, ram_param);
  31. static uint8_t st7789v_rgb_param[] = DT_INST_PROP(0, rgb_param);
  32. struct st7789v_data {
  33. const struct device *spi_dev;
  34. struct spi_config spi_config;
  35. #if DT_INST_SPI_DEV_HAS_CS_GPIOS(0)
  36. struct spi_cs_control cs_ctrl;
  37. #endif
  38. #if DT_INST_NODE_HAS_PROP(0, reset_gpios)
  39. const struct device *reset_gpio;
  40. #endif
  41. const struct device *cmd_data_gpio;
  42. uint16_t height;
  43. uint16_t width;
  44. uint16_t x_offset;
  45. uint16_t y_offset;
  46. };
  47. #ifdef CONFIG_ST7789V_RGB565
  48. #define ST7789V_PIXEL_SIZE 2u
  49. #else
  50. #define ST7789V_PIXEL_SIZE 3u
  51. #endif
  52. static void st7789v_set_lcd_margins(struct st7789v_data *data,
  53. uint16_t x_offset, uint16_t y_offset)
  54. {
  55. data->x_offset = x_offset;
  56. data->y_offset = y_offset;
  57. }
  58. static void st7789v_set_cmd(struct st7789v_data *data, int is_cmd)
  59. {
  60. gpio_pin_set(data->cmd_data_gpio, ST7789V_CMD_DATA_PIN, is_cmd);
  61. }
  62. static void st7789v_transmit(struct st7789v_data *data, uint8_t cmd,
  63. uint8_t *tx_data, size_t tx_count)
  64. {
  65. struct spi_buf tx_buf = { .buf = &cmd, .len = 1 };
  66. struct spi_buf_set tx_bufs = { .buffers = &tx_buf, .count = 1 };
  67. st7789v_set_cmd(data, 1);
  68. spi_write(data->spi_dev, &data->spi_config, &tx_bufs);
  69. if (tx_data != NULL) {
  70. tx_buf.buf = tx_data;
  71. tx_buf.len = tx_count;
  72. st7789v_set_cmd(data, 0);
  73. spi_write(data->spi_dev, &data->spi_config, &tx_bufs);
  74. }
  75. }
  76. static void st7789v_exit_sleep(struct st7789v_data *data)
  77. {
  78. st7789v_transmit(data, ST7789V_CMD_SLEEP_OUT, NULL, 0);
  79. k_sleep(K_MSEC(120));
  80. }
  81. static void st7789v_reset_display(struct st7789v_data *data)
  82. {
  83. LOG_DBG("Resetting display");
  84. #if DT_INST_NODE_HAS_PROP(0, reset_gpios)
  85. k_sleep(K_MSEC(1));
  86. gpio_pin_set(data->reset_gpio, ST7789V_RESET_PIN, 1);
  87. k_sleep(K_MSEC(6));
  88. gpio_pin_set(data->reset_gpio, ST7789V_RESET_PIN, 0);
  89. k_sleep(K_MSEC(20));
  90. #else
  91. st7789v_transmit(p_st7789v, ST7789V_CMD_SW_RESET, NULL, 0);
  92. k_sleep(K_MSEC(5));
  93. #endif
  94. }
  95. static int st7789v_blanking_on(const struct device *dev)
  96. {
  97. struct st7789v_data *driver = (struct st7789v_data *)dev->data;
  98. st7789v_transmit(driver, ST7789V_CMD_DISP_OFF, NULL, 0);
  99. return 0;
  100. }
  101. static int st7789v_blanking_off(const struct device *dev)
  102. {
  103. struct st7789v_data *driver = (struct st7789v_data *)dev->data;
  104. st7789v_transmit(driver, ST7789V_CMD_DISP_ON, NULL, 0);
  105. return 0;
  106. }
  107. static int st7789v_read(const struct device *dev,
  108. const uint16_t x,
  109. const uint16_t y,
  110. const struct display_buffer_descriptor *desc,
  111. void *buf)
  112. {
  113. return -ENOTSUP;
  114. }
  115. static void st7789v_set_mem_area(struct st7789v_data *data, const uint16_t x,
  116. const uint16_t y, const uint16_t w, const uint16_t h)
  117. {
  118. uint16_t spi_data[2];
  119. uint16_t ram_x = x + data->x_offset;
  120. uint16_t ram_y = y + data->y_offset;
  121. spi_data[0] = sys_cpu_to_be16(ram_x);
  122. spi_data[1] = sys_cpu_to_be16(ram_x + w - 1);
  123. st7789v_transmit(data, ST7789V_CMD_CASET, (uint8_t *)&spi_data[0], 4);
  124. spi_data[0] = sys_cpu_to_be16(ram_y);
  125. spi_data[1] = sys_cpu_to_be16(ram_y + h - 1);
  126. st7789v_transmit(data, ST7789V_CMD_RASET, (uint8_t *)&spi_data[0], 4);
  127. }
  128. static int st7789v_write(const struct device *dev,
  129. const uint16_t x,
  130. const uint16_t y,
  131. const struct display_buffer_descriptor *desc,
  132. const void *buf)
  133. {
  134. struct st7789v_data *data = (struct st7789v_data *)dev->data;
  135. const uint8_t *write_data_start = (uint8_t *) buf;
  136. struct spi_buf tx_buf;
  137. struct spi_buf_set tx_bufs;
  138. uint16_t write_cnt;
  139. uint16_t nbr_of_writes;
  140. uint16_t write_h;
  141. __ASSERT(desc->width <= desc->pitch, "Pitch is smaller then width");
  142. __ASSERT((desc->pitch * ST7789V_PIXEL_SIZE * desc->height) <= desc->buf_size,
  143. "Input buffer to small");
  144. LOG_DBG("Writing %dx%d (w,h) @ %dx%d (x,y)",
  145. desc->width, desc->height, x, y);
  146. st7789v_set_mem_area(data, x, y, desc->width, desc->height);
  147. if (desc->pitch > desc->width) {
  148. write_h = 1U;
  149. nbr_of_writes = desc->height;
  150. } else {
  151. write_h = desc->height;
  152. nbr_of_writes = 1U;
  153. }
  154. st7789v_transmit(data, ST7789V_CMD_RAMWR,
  155. (void *) write_data_start,
  156. desc->width * ST7789V_PIXEL_SIZE * write_h);
  157. tx_bufs.buffers = &tx_buf;
  158. tx_bufs.count = 1;
  159. write_data_start += (desc->pitch * ST7789V_PIXEL_SIZE);
  160. for (write_cnt = 1U; write_cnt < nbr_of_writes; ++write_cnt) {
  161. tx_buf.buf = (void *)write_data_start;
  162. tx_buf.len = desc->width * ST7789V_PIXEL_SIZE * write_h;
  163. spi_write(data->spi_dev, &data->spi_config, &tx_bufs);
  164. write_data_start += (desc->pitch * ST7789V_PIXEL_SIZE);
  165. }
  166. return 0;
  167. }
  168. static void *st7789v_get_framebuffer(const struct device *dev)
  169. {
  170. return NULL;
  171. }
  172. static int st7789v_set_brightness(const struct device *dev,
  173. const uint8_t brightness)
  174. {
  175. return -ENOTSUP;
  176. }
  177. static int st7789v_set_contrast(const struct device *dev,
  178. const uint8_t contrast)
  179. {
  180. return -ENOTSUP;
  181. }
  182. static void st7789v_get_capabilities(const struct device *dev,
  183. struct display_capabilities *capabilities)
  184. {
  185. struct st7789v_data *data = (struct st7789v_data *)dev->data;
  186. memset(capabilities, 0, sizeof(struct display_capabilities));
  187. capabilities->x_resolution = data->width;
  188. capabilities->y_resolution = data->height;
  189. #ifdef CONFIG_ST7789V_RGB565
  190. capabilities->supported_pixel_formats = PIXEL_FORMAT_BGR_565;
  191. capabilities->current_pixel_format = PIXEL_FORMAT_BGR_565;
  192. #else
  193. capabilities->supported_pixel_formats = PIXEL_FORMAT_RGB_888;
  194. capabilities->current_pixel_format = PIXEL_FORMAT_RGB_888;
  195. #endif
  196. capabilities->current_orientation = DISPLAY_ORIENTATION_NORMAL;
  197. }
  198. static int st7789v_set_pixel_format(const struct device *dev,
  199. const enum display_pixel_format pixel_format)
  200. {
  201. #ifdef CONFIG_ST7789V_RGB565
  202. if (pixel_format == PIXEL_FORMAT_BGR_565) {
  203. #else
  204. if (pixel_format == PIXEL_FORMAT_RGB_888) {
  205. #endif
  206. return 0;
  207. }
  208. LOG_ERR("Pixel format change not implemented");
  209. return -ENOTSUP;
  210. }
  211. static int st7789v_set_orientation(const struct device *dev,
  212. const enum display_orientation orientation)
  213. {
  214. if (orientation == DISPLAY_ORIENTATION_NORMAL) {
  215. return 0;
  216. }
  217. LOG_ERR("Changing display orientation not implemented");
  218. return -ENOTSUP;
  219. }
  220. static void st7789v_lcd_init(struct st7789v_data *p_st7789v)
  221. {
  222. uint8_t tmp;
  223. st7789v_set_lcd_margins(p_st7789v, p_st7789v->x_offset,
  224. p_st7789v->y_offset);
  225. st7789v_transmit(p_st7789v, ST7789V_CMD_CMD2EN, st7789v_cmd2en_param,
  226. sizeof(st7789v_cmd2en_param));
  227. st7789v_transmit(p_st7789v, ST7789V_CMD_PORCTRL, st7789v_porch_param,
  228. sizeof(st7789v_porch_param));
  229. /* Digital Gamma Enable, default disabled */
  230. tmp = 0x00;
  231. st7789v_transmit(p_st7789v, ST7789V_CMD_DGMEN, &tmp, 1);
  232. /* Frame Rate Control in Normal Mode, default value */
  233. tmp = 0x0f;
  234. st7789v_transmit(p_st7789v, ST7789V_CMD_FRCTRL2, &tmp, 1);
  235. tmp = DT_INST_PROP(0, gctrl);
  236. st7789v_transmit(p_st7789v, ST7789V_CMD_GCTRL, &tmp, 1);
  237. tmp = DT_INST_PROP(0, vcom);
  238. st7789v_transmit(p_st7789v, ST7789V_CMD_VCOMS, &tmp, 1);
  239. #if (DT_INST_NODE_HAS_PROP(0, vrhs) && \
  240. DT_INST_NODE_HAS_PROP(0, vdvs))
  241. tmp = 0x01;
  242. st7789v_transmit(p_st7789v, ST7789V_CMD_VDVVRHEN, &tmp, 1);
  243. tmp = DT_INST_PROP(0, vrhs);
  244. st7789v_transmit(p_st7789v, ST7789V_CMD_VRH, &tmp, 1);
  245. tmp = DT_INST_PROP(0, vdvs);
  246. st7789v_transmit(p_st7789v, ST7789V_CMD_VDS, &tmp, 1);
  247. #endif
  248. st7789v_transmit(p_st7789v, ST7789V_CMD_PWCTRL1, st7789v_pwctrl1_param,
  249. sizeof(st7789v_pwctrl1_param));
  250. /* Memory Data Access Control */
  251. tmp = DT_INST_PROP(0, mdac);
  252. st7789v_transmit(p_st7789v, ST7789V_CMD_MADCTL, &tmp, 1);
  253. /* Interface Pixel Format */
  254. tmp = DT_INST_PROP(0, colmod);
  255. st7789v_transmit(p_st7789v, ST7789V_CMD_COLMOD, &tmp, 1);
  256. tmp = DT_INST_PROP(0, lcm);
  257. st7789v_transmit(p_st7789v, ST7789V_CMD_LCMCTRL, &tmp, 1);
  258. tmp = DT_INST_PROP(0, gamma);
  259. st7789v_transmit(p_st7789v, ST7789V_CMD_GAMSET, &tmp, 1);
  260. st7789v_transmit(p_st7789v, ST7789V_CMD_INV_ON, NULL, 0);
  261. st7789v_transmit(p_st7789v, ST7789V_CMD_PVGAMCTRL, st7789v_pvgam_param,
  262. sizeof(st7789v_pvgam_param));
  263. st7789v_transmit(p_st7789v, ST7789V_CMD_NVGAMCTRL, st7789v_nvgam_param,
  264. sizeof(st7789v_nvgam_param));
  265. st7789v_transmit(p_st7789v, ST7789V_CMD_RAMCTRL, st7789v_ram_param,
  266. sizeof(st7789v_ram_param));
  267. st7789v_transmit(p_st7789v, ST7789V_CMD_RGBCTRL, st7789v_rgb_param,
  268. sizeof(st7789v_rgb_param));
  269. }
  270. static int st7789v_init(const struct device *dev)
  271. {
  272. struct st7789v_data *data = (struct st7789v_data *)dev->data;
  273. data->spi_dev = device_get_binding(DT_INST_BUS_LABEL(0));
  274. if (data->spi_dev == NULL) {
  275. LOG_ERR("Could not get SPI device for LCD");
  276. return -EPERM;
  277. }
  278. data->spi_config.frequency =
  279. DT_INST_PROP(0, spi_max_frequency);
  280. data->spi_config.operation = SPI_OP_MODE_MASTER | SPI_WORD_SET(8);
  281. data->spi_config.slave = DT_INST_REG_ADDR(0);
  282. #if DT_INST_SPI_DEV_HAS_CS_GPIOS(0)
  283. data->cs_ctrl.gpio_dev = device_get_binding(
  284. DT_INST_SPI_DEV_CS_GPIOS_LABEL(0));
  285. data->cs_ctrl.gpio_pin = DT_INST_SPI_DEV_CS_GPIOS_PIN(0);
  286. data->cs_ctrl.gpio_dt_flags = DT_INST_SPI_DEV_CS_GPIOS_FLAGS(0);
  287. data->cs_ctrl.delay = 0U;
  288. data->spi_config.cs = &(data->cs_ctrl);
  289. #else
  290. data->spi_config.cs = NULL;
  291. #endif
  292. #if DT_INST_NODE_HAS_PROP(0, reset_gpios)
  293. data->reset_gpio = device_get_binding(
  294. DT_INST_GPIO_LABEL(0, reset_gpios));
  295. if (data->reset_gpio == NULL) {
  296. LOG_ERR("Could not get GPIO port for display reset");
  297. return -EPERM;
  298. }
  299. if (gpio_pin_configure(data->reset_gpio, ST7789V_RESET_PIN,
  300. GPIO_OUTPUT_INACTIVE | ST7789V_RESET_FLAGS)) {
  301. LOG_ERR("Couldn't configure reset pin");
  302. return -EIO;
  303. }
  304. #endif
  305. data->cmd_data_gpio = device_get_binding(
  306. DT_INST_GPIO_LABEL(0, cmd_data_gpios));
  307. if (data->cmd_data_gpio == NULL) {
  308. LOG_ERR("Could not get GPIO port for cmd/DATA port");
  309. return -EPERM;
  310. }
  311. if (gpio_pin_configure(data->cmd_data_gpio, ST7789V_CMD_DATA_PIN,
  312. GPIO_OUTPUT | ST7789V_CMD_DATA_FLAGS)) {
  313. LOG_ERR("Couldn't configure cmd/DATA pin");
  314. return -EIO;
  315. }
  316. st7789v_reset_display(data);
  317. st7789v_blanking_on(dev);
  318. st7789v_lcd_init(data);
  319. st7789v_exit_sleep(data);
  320. return 0;
  321. }
  322. #ifdef CONFIG_PM_DEVICE
  323. static int st7789v_pm_control(const struct device *dev,
  324. enum pm_device_action action)
  325. {
  326. struct st7789v_data *data = (struct st7789v_data *)dev->data;
  327. int ret = 0;
  328. switch (action) {
  329. case PM_DEVICE_ACTION_RESUME:
  330. st7789v_exit_sleep(data);
  331. break;
  332. case PM_DEVICE_ACTION_SUSPEND:
  333. st7789v_transmit(data, ST7789V_CMD_SLEEP_IN, NULL, 0);
  334. break;
  335. default:
  336. ret = -ENOTSUP;
  337. break;
  338. }
  339. return ret;
  340. }
  341. #endif /* CONFIG_PM_DEVICE */
  342. static const struct display_driver_api st7789v_api = {
  343. .blanking_on = st7789v_blanking_on,
  344. .blanking_off = st7789v_blanking_off,
  345. .write = st7789v_write,
  346. .read = st7789v_read,
  347. .get_framebuffer = st7789v_get_framebuffer,
  348. .set_brightness = st7789v_set_brightness,
  349. .set_contrast = st7789v_set_contrast,
  350. .get_capabilities = st7789v_get_capabilities,
  351. .set_pixel_format = st7789v_set_pixel_format,
  352. .set_orientation = st7789v_set_orientation,
  353. };
  354. static struct st7789v_data st7789v_data = {
  355. .width = DT_INST_PROP(0, width),
  356. .height = DT_INST_PROP(0, height),
  357. .x_offset = DT_INST_PROP(0, x_offset),
  358. .y_offset = DT_INST_PROP(0, y_offset),
  359. };
  360. DEVICE_DT_INST_DEFINE(0, &st7789v_init,
  361. st7789v_pm_control, &st7789v_data, NULL, POST_KERNEL,
  362. CONFIG_DISPLAY_INIT_PRIORITY, &st7789v_api);