SH1122.c 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /**
  2. * Copyright (c) 2017-2018 Tara Keeling
  3. * 2020 Philippe G.
  4. *
  5. * This software is released under the MIT License.
  6. * https://opensource.org/licenses/MIT
  7. */
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <stdint.h>
  11. #include <stdbool.h>
  12. #include <esp_heap_caps.h>
  13. #include <esp_log.h>
  14. #include "gds.h"
  15. #include "gds_private.h"
  16. #define SHADOW_BUFFER
  17. #define PAGE_BLOCK 1024
  18. #define min(a,b) (((a) < (b)) ? (a) : (b))
  19. static char TAG[] = "SH1122";
  20. struct PrivateSpace {
  21. uint8_t *iRAM, *Shadowbuffer;
  22. uint8_t PageSize;
  23. };
  24. // Functions are not declared to minimize # of lines
  25. static void SetColumnAddress( struct GDS_Device* Device, uint8_t Start, uint8_t End ) {
  26. Device->WriteCommand( Device, 0x10 | (Start >> 4) );
  27. Device->WriteCommand( Device, 0x00 | (Start & 0x0f) );
  28. }
  29. static void SetRowAddress( struct GDS_Device* Device, uint8_t Start, uint8_t End ) {
  30. Device->WriteCommand( Device, 0xB0 );
  31. Device->WriteCommand( Device, Start );
  32. }
  33. static void Update( struct GDS_Device* Device ) {
  34. struct PrivateSpace *Private = (struct PrivateSpace*) Device->Private;
  35. // RAM is by columns of 4 pixels ...
  36. SetColumnAddress( Device, 0, Device->Width / 4 - 1);
  37. #ifdef SHADOW_BUFFER
  38. uint16_t *optr = (uint16_t*) Private->Shadowbuffer, *iptr = (uint16_t*) Device->Framebuffer;
  39. bool dirty = false;
  40. for (int r = 0, page = 0; r < Device->Height; r++) {
  41. // look for change and update shadow (cheap optimization = width always / by 2)
  42. for (int c = Device->Width / 2 / 2; --c >= 0;) {
  43. if (*optr != *iptr) {
  44. dirty = true;
  45. *optr = *iptr;
  46. }
  47. iptr++; optr++;
  48. }
  49. // one line done, check for page boundary
  50. if (++page == Private->PageSize) {
  51. if (dirty) {
  52. SetRowAddress( Device, r - page + 1, r );
  53. if (Private->iRAM) {
  54. memcpy(Private->iRAM, Private->Shadowbuffer + (r - page + 1) * Device->Width / 2, page * Device->Width / 2 );
  55. Device->WriteData( Device, Private->iRAM, Device->Width * page / 2 );
  56. } else {
  57. Device->WriteData( Device, Private->Shadowbuffer + (r - page + 1) * Device->Width / 2, page * Device->Width / 2);
  58. }
  59. dirty = false;
  60. }
  61. page = 0;
  62. }
  63. }
  64. #else
  65. SetRowAddress( Device, 0, Device->Height - 1 );
  66. for (int r = 0; r < Device->Height; r += Private->PageSize) {
  67. if (Private->iRAM) {
  68. memcpy(Private->iRAM, Device->Framebuffer + r * Device->Width / 2, Private->PageSize * Device->Width / 2 );
  69. Device->WriteData( Device, Private->iRAM, Private->PageSize * Device->Width / 2 );
  70. } else {
  71. Device->WriteData( Device, Device->Framebuffer + r * Device->Width / 2, Private->PageSize * Device->Width / 2 );
  72. }
  73. }
  74. #endif
  75. }
  76. static void DrawPixelFast4( struct GDS_Device* Device, int X, int Y, int Color ) {
  77. uint8_t* FBOffset = Device->Framebuffer + ( (Y * Device->Width >> 1) + (X >> 1));
  78. *FBOffset = X & 0x01 ? ((*FBOffset & 0xf0) | (Color & 0x0f)) : (*FBOffset & 0x0f) | ((Color & 0x0f) << 4);
  79. }
  80. static void SetLayout( struct GDS_Device* Device, struct GDS_Layout *Layout ) {
  81. if (Layout->HFlip) {
  82. Device->WriteCommand( Device, 0x40 + 0x20 );
  83. Device->WriteCommand( Device, 0xA1 );
  84. } else {
  85. Device->WriteCommand( Device, 0x40 + 0x00 );
  86. Device->WriteCommand( Device, 0xA0 );
  87. }
  88. Device->WriteCommand( Device, Layout->VFlip ? 0xC8 : 0xC0 );
  89. Device->WriteCommand( Device, Layout->Invert ? 0xA7 : 0xA6 );
  90. }
  91. static void DisplayOn( struct GDS_Device* Device ) { Device->WriteCommand( Device, 0xAF ); }
  92. static void DisplayOff( struct GDS_Device* Device ) { Device->WriteCommand( Device, 0xAE ); }
  93. static void SetContrast( struct GDS_Device* Device, uint8_t Contrast ) {
  94. Device->WriteCommand( Device, 0x81 );
  95. Device->WriteCommand( Device, Contrast );
  96. }
  97. static bool Init( struct GDS_Device* Device ) {
  98. struct PrivateSpace *Private = (struct PrivateSpace*) Device->Private;
  99. // find a page size that is not too small is an integer of height
  100. Private->PageSize = min(8, PAGE_BLOCK / (Device->Width / 2));
  101. while (Private->PageSize && Device->Height != (Device->Height / Private->PageSize) * Private->PageSize) Private->PageSize--;
  102. #ifdef SHADOW_BUFFER
  103. Private->Shadowbuffer = malloc( Device->FramebufferSize );
  104. memset(Private->Shadowbuffer, 0xFF, Device->FramebufferSize);
  105. #endif
  106. // only use iRAM for SPI
  107. if (Device->IF == GDS_IF_SPI) {
  108. Private->iRAM = heap_caps_malloc( Private->PageSize * Device->Width / 2, MALLOC_CAP_INTERNAL | MALLOC_CAP_DMA );
  109. }
  110. ESP_LOGI(TAG, "SH1122 page %u, iRAM %p", Private->PageSize, Private->iRAM);
  111. // need to be off and disable display RAM
  112. Device->DisplayOff( Device );
  113. Device->WriteCommand( Device, 0xA5 );
  114. // Display Offset
  115. Device->WriteCommand( Device, 0xD3 );
  116. Device->WriteCommand( Device, 0 );
  117. // set flip modes
  118. struct GDS_Layout Layout = { };
  119. Device->SetLayout( Device, &Layout );
  120. // set Clocks => check value
  121. Device->WriteCommand( Device, 0xD5 );
  122. Device->WriteCommand( Device, ( 0x04 << 4 ) | 0x00 );
  123. // MUX Ratio => fixed
  124. Device->WriteCommand( Device, 0xA8 );
  125. Device->WriteCommand( Device, Device->Height - 1);
  126. // no Display Inversion
  127. Device->WriteCommand( Device, 0xA6 );
  128. // gone with the wind
  129. Device->WriteCommand( Device, 0xA4 );
  130. Device->DisplayOn( Device );
  131. Device->Update( Device );
  132. return true;
  133. }
  134. static const struct GDS_Device SH1122 = {
  135. .DisplayOn = DisplayOn, .DisplayOff = DisplayOff, .SetContrast = SetContrast,
  136. .DrawPixelFast = DrawPixelFast4,
  137. .SetLayout = SetLayout,
  138. .Update = Update, .Init = Init,
  139. .Mode = GDS_GRAYSCALE, .Depth = 4,
  140. .HighNibble = true,
  141. };
  142. struct GDS_Device* SH1122_Detect(char *Driver, struct GDS_Device* Device) {
  143. if (!strcasestr(Driver, "SH1122")) return NULL;
  144. if (!Device) Device = calloc(1, sizeof(struct GDS_Device));
  145. *Device = SH1122;
  146. return Device;
  147. }