logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

qp_gc9a01.c (6609B)


  1. // Copyright 2021 Paul Cotter (@gr1mr3aver)
  2. // Copyright 2023 Nick Brassel (@tzarc)
  3. // SPDX-License-Identifier: GPL-2.0-or-later
  4. #include "qp_internal.h"
  5. #include "qp_comms.h"
  6. #include "qp_gc9a01.h"
  7. #include "qp_gc9xxx_opcodes.h"
  8. #include "qp_gc9a01_opcodes.h"
  9. #include "qp_tft_panel.h"
  10. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  11. // Driver storage
  12. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  13. tft_panel_dc_reset_painter_device_t gc9a01_drivers[GC9A01_NUM_DEVICES] = {0};
  14. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  15. // Initialization
  16. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  17. __attribute__((weak)) bool qp_gc9a01_init(painter_device_t device, painter_rotation_t rotation) {
  18. // A lot of these "unknown" opcodes are sourced from other OSS projects and are seemingly required for this display to function.
  19. // clang-format off
  20. const uint8_t gc9a01_init_sequence[] = {
  21. // Command, Delay, N, Data[N]
  22. GC9XXX_SET_INTER_REG_ENABLE1, 0, 0,
  23. GC9XXX_SET_INTER_REG_ENABLE2, 0, 0,
  24. 0x84, 0, 1, 0x40,
  25. GC9A01_SET_FUNCTION_CTL, 0, 3, 0x00, GC9A01_SOURCE_OUTPUT_SCAN_DIRECTION_S360_TO_S1 | GC9A01_GATE_OUTPUT_SCAN_DIRECTION_G1_TO_G32, GC9A01_LCD_DRIVE_LINE_240, // Only works if the previous command is present (undocumented)
  26. GC9A01_SET_POWER_CTL_2, 0, 1, 0x20,
  27. GC9A01_SET_POWER_CTL_3, 0, 1, 0x20,
  28. GC9A01_SET_POWER_CTL_4, 0, 1, 0x22,
  29. GC9XXX_SET_GAMMA1, 0, 6, 0x45, 0x09, 0x08, 0x08, 0x26, 0x2A,
  30. GC9XXX_SET_GAMMA2, 0, 6, 0x43, 0x70, 0x72, 0x36, 0x37, 0x6F,
  31. GC9A01_SET_GAMMA3, 0, 6, 0x45, 0x09, 0x08, 0x08, 0x26, 0x2A,
  32. GC9A01_SET_GAMMA4, 0, 6, 0x43, 0x70, 0x72, 0x36, 0x37, 0x6F,
  33. 0x66, 0, 10, 0x3C, 0x00, 0xCD, 0x67, 0x45, 0x45, 0x10, 0x00, 0x00, 0x00,
  34. 0x67, 0, 10, 0x00, 0x3C, 0x00, 0x00, 0x00, 0x01, 0x54, 0x10, 0x32, 0x98,
  35. GC9XXX_CMD_TEARING_ON, 0, 0,
  36. GC9XXX_SET_PIXEL_FORMAT, 0, 1, GC9A01_PIXEL_FORMAT_16_BPP_DBI,
  37. GC9XXX_CMD_INVERT_ON, 0, 0,
  38. GC9XXX_CMD_SLEEP_OFF, 120, 0,
  39. GC9XXX_CMD_DISPLAY_ON, 20, 0
  40. };
  41. // clang-format on
  42. qp_comms_bulk_command_sequence(device, gc9a01_init_sequence, sizeof(gc9a01_init_sequence));
  43. // Configure the rotation (i.e. the ordering and direction of memory writes in GRAM)
  44. const uint8_t madctl[] = {
  45. [QP_ROTATION_0] = GC9XXX_MADCTL_BGR,
  46. [QP_ROTATION_90] = GC9XXX_MADCTL_BGR | GC9XXX_MADCTL_MX | GC9XXX_MADCTL_MV,
  47. [QP_ROTATION_180] = GC9XXX_MADCTL_BGR | GC9XXX_MADCTL_MX | GC9XXX_MADCTL_MY,
  48. [QP_ROTATION_270] = GC9XXX_MADCTL_BGR | GC9XXX_MADCTL_MV | GC9XXX_MADCTL_MY,
  49. };
  50. qp_comms_command_databyte(device, GC9XXX_SET_MEM_ACS_CTL, madctl[rotation]);
  51. return true;
  52. }
  53. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  54. // Driver vtable
  55. ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  56. const tft_panel_dc_reset_painter_driver_vtable_t gc9a01_driver_vtable = {
  57. .base =
  58. {
  59. .init = qp_gc9a01_init,
  60. .power = qp_tft_panel_power,
  61. .clear = qp_tft_panel_clear,
  62. .flush = qp_tft_panel_flush,
  63. .pixdata = qp_tft_panel_pixdata,
  64. .viewport = qp_tft_panel_viewport,
  65. .palette_convert = qp_tft_panel_palette_convert_rgb565_swapped,
  66. .append_pixels = qp_tft_panel_append_pixels_rgb565,
  67. .append_pixdata = qp_tft_panel_append_pixdata,
  68. },
  69. .num_window_bytes = 2,
  70. .swap_window_coords = false,
  71. .opcodes =
  72. {
  73. .display_on = GC9XXX_CMD_DISPLAY_ON,
  74. .display_off = GC9XXX_CMD_DISPLAY_OFF,
  75. .set_column_address = GC9XXX_SET_COL_ADDR,
  76. .set_row_address = GC9XXX_SET_ROW_ADDR,
  77. .enable_writes = GC9XXX_SET_MEM,
  78. },
  79. };
  80. #ifdef QUANTUM_PAINTER_GC9A01_SPI_ENABLE
  81. // Factory function for creating a handle to the ILI9341 device
  82. painter_device_t qp_gc9a01_make_spi_device(uint16_t panel_width, uint16_t panel_height, pin_t chip_select_pin, pin_t dc_pin, pin_t reset_pin, uint16_t spi_divisor, int spi_mode) {
  83. for (uint32_t i = 0; i < GC9A01_NUM_DEVICES; ++i) {
  84. tft_panel_dc_reset_painter_device_t *driver = &gc9a01_drivers[i];
  85. if (!driver->base.driver_vtable) {
  86. driver->base.driver_vtable = (const painter_driver_vtable_t *)&gc9a01_driver_vtable;
  87. driver->base.comms_vtable = (const painter_comms_vtable_t *)&spi_comms_with_dc_vtable;
  88. driver->base.native_bits_per_pixel = 16; // RGB565
  89. driver->base.panel_width = panel_width;
  90. driver->base.panel_height = panel_height;
  91. driver->base.rotation = QP_ROTATION_0;
  92. driver->base.offset_x = 0;
  93. driver->base.offset_y = 0;
  94. // SPI and other pin configuration
  95. driver->base.comms_config = &driver->spi_dc_reset_config;
  96. driver->spi_dc_reset_config.spi_config.chip_select_pin = chip_select_pin;
  97. driver->spi_dc_reset_config.spi_config.divisor = spi_divisor;
  98. driver->spi_dc_reset_config.spi_config.lsb_first = false;
  99. driver->spi_dc_reset_config.spi_config.mode = spi_mode;
  100. driver->spi_dc_reset_config.dc_pin = dc_pin;
  101. driver->spi_dc_reset_config.reset_pin = reset_pin;
  102. driver->spi_dc_reset_config.command_params_uses_command_pin = false;
  103. if (!qp_internal_register_device((painter_device_t)driver)) {
  104. memset(driver, 0, sizeof(tft_panel_dc_reset_painter_device_t));
  105. return NULL;
  106. }
  107. return (painter_device_t)driver;
  108. }
  109. }
  110. return NULL;
  111. }
  112. #endif // QUANTUM_PAINTER_GC9A01_SPI_ENABLE