lcdDrv.c 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. #include "lcdDrv.h"
  2. #include "osi_api.h"
  3. #include "osi_log.h"
  4. #include "hal_gouda.h"
  5. #include "drv_lcd.h"
  6. #include "gui.h"
  7. #include "log.h"
  8. #define LCD_DRV_ID_ST7735 0x7c89f0
  9. static void _lcdDelayMs(int ms_delay)
  10. {
  11. osiDelayUS(ms_delay * 1000);
  12. }
  13. const unsigned char Cmd_xC8[3]={0xff,0x93,0x42};
  14. const unsigned char Cmd_xB6[2]={0x0A,0Xe0};
  15. const unsigned char Cmd_x36[1]={0x00};//d0
  16. const unsigned char Cmd_x3A[1]={0x06};
  17. const unsigned char Cmd_xC0[1]={0x2c};
  18. const unsigned char Cmd_xC1[1]={0x02};
  19. const unsigned char Cmd_xC2[1]={0x01};
  20. const unsigned char Cmd_xC3[1]={0x1a};
  21. const unsigned char Cmd_xC4[1]={0x20};
  22. const unsigned char Cmd_xC5[1]={0xca};
  23. const unsigned char Cmd_xC6[1]={0x0f};
  24. const unsigned char Cmd_xD0[2]={0xA4,0xa1};
  25. const unsigned char Cmd_xB1[2]={0x00,0x1b};
  26. const unsigned char Cmd_xB2[5]={0x0c,0x0c,0x00,0x33,0x33};
  27. const unsigned char Cmd_xB4[1]={0x02};
  28. const unsigned char Cmd_xB7[1]={0x35};
  29. const unsigned char Cmd_xBB[1]={0x38};
  30. const unsigned char Cmd_xE0[15]={0x00,0x01,0x04,0x00,0x11,0x08,0x35,0x79,0x45,0x07,0x0D,0x09,0x16,0x17,0x0F};
  31. const unsigned char Cmd_xE1[15]={0x00,0x28,0x29,0x02,0x0F,0x06,0x3F,0x25,0x55,0x06,0x15,0x0F,0x38,0x38,0x0F};
  32. static void cmdDataSet(unsigned char cmd, unsigned char *data, int datalen){
  33. int i;
  34. LCD_CtrlWrite_ST7735(cmd);
  35. for(i=0;i<datalen;i++) LCD_DataWrite_ST7735(data[i]);
  36. }
  37. static void cmdDataSetOne(unsigned char cmd, unsigned char data){
  38. LCD_CtrlWrite_ST7735(cmd);
  39. LCD_DataWrite_ST7735(data);
  40. }
  41. /**************************************************************************************/
  42. // Description: initialize all LCD with LCDC MCU MODE and LCDC mcu mode
  43. /**************************************************************************************/
  44. static void _st7735Init(void)
  45. {
  46. char infoo[50];
  47. char lcdtype=0;
  48. unsigned char id[4];
  49. MSG_INFO(1, "lcd: _st7735Init ");
  50. LCD_DataRead_ST7735(0x04, id, 4);
  51. if(id[1]==0xf0 && id[2]==0x89 && id[3]==0x7c) lcdtype=0;//st7735
  52. else if(id[1]==0x06 && id[2]==0x91 && id[3]==0x00) lcdtype=1;//gc9106
  53. MSG_INFO(1, "id:%02x%02x%02x", id[1],id[2],id[3]);
  54. lcdtype=0;//test
  55. if(lcdtype==0){
  56. LCD_CtrlWrite_ST7735(0x11); //Sleep out
  57. _lcdDelayMs(10); //Delay 120ms
  58. //--------------------------------------Display Setting---------------------------------------//
  59. LCD_CtrlWrite_ST7735 (0x36);
  60. LCD_DataWrite_ST7735 (0xc8);
  61. LCD_CtrlWrite_ST7735 (0x3a);
  62. LCD_DataWrite_ST7735 (0x05);
  63. //--------------------------------ST7789S Frame rate setting----------------------------------//
  64. LCD_CtrlWrite_ST7735 (0xb2);
  65. LCD_DataWrite_ST7735 (0x0c);
  66. LCD_DataWrite_ST7735 (0x0c);
  67. LCD_DataWrite_ST7735 (0x00);
  68. LCD_DataWrite_ST7735 (0x33);
  69. LCD_DataWrite_ST7735 (0x33);
  70. LCD_CtrlWrite_ST7735 (0xb7);
  71. LCD_DataWrite_ST7735 (0x35);
  72. //---------------------------------ST7789S Power setting--------------------------------------//
  73. LCD_CtrlWrite_ST7735 (0xbb);
  74. LCD_DataWrite_ST7735 (0x35);
  75. LCD_CtrlWrite_ST7735 (0xc0);
  76. LCD_DataWrite_ST7735 (0x2c);
  77. LCD_CtrlWrite_ST7735 (0xc2);
  78. LCD_DataWrite_ST7735 (0x01);
  79. LCD_CtrlWrite_ST7735 (0xc3);
  80. LCD_DataWrite_ST7735 (0x11);
  81. LCD_CtrlWrite_ST7735 (0xc4);
  82. LCD_DataWrite_ST7735 (0x20);
  83. LCD_CtrlWrite_ST7735 (0xc6);
  84. LCD_DataWrite_ST7735 (0x0f);
  85. LCD_CtrlWrite_ST7735 (0xd0);
  86. LCD_DataWrite_ST7735 (0xa4);
  87. LCD_DataWrite_ST7735 (0xa1);
  88. //--------------------------------ST7789S gamma setting---------------------------------------//
  89. LCD_CtrlWrite_ST7735 (0xe0);
  90. LCD_DataWrite_ST7735 (0xd0);
  91. LCD_DataWrite_ST7735 (0x00);
  92. LCD_DataWrite_ST7735 (0x05);
  93. LCD_DataWrite_ST7735 (0x0e);
  94. LCD_DataWrite_ST7735 (0x15);
  95. LCD_DataWrite_ST7735 (0x0d);
  96. LCD_DataWrite_ST7735 (0x37);
  97. LCD_DataWrite_ST7735 (0x43);
  98. LCD_DataWrite_ST7735 (0x47);
  99. LCD_DataWrite_ST7735 (0x09);
  100. LCD_DataWrite_ST7735 (0x15);
  101. LCD_DataWrite_ST7735 (0x12);
  102. LCD_DataWrite_ST7735 (0x16);
  103. LCD_DataWrite_ST7735 (0x19);
  104. LCD_CtrlWrite_ST7735 (0xe1);
  105. LCD_DataWrite_ST7735 (0xd0);
  106. LCD_DataWrite_ST7735 (0x00);
  107. LCD_DataWrite_ST7735 (0x05);
  108. LCD_DataWrite_ST7735 (0x0d);
  109. LCD_DataWrite_ST7735 (0x0c);
  110. LCD_DataWrite_ST7735 (0x06);
  111. LCD_DataWrite_ST7735 (0x2d);
  112. LCD_DataWrite_ST7735 (0x44);
  113. LCD_DataWrite_ST7735 (0x40);
  114. LCD_DataWrite_ST7735 (0x0e);
  115. LCD_DataWrite_ST7735 (0x1c);
  116. LCD_DataWrite_ST7735 (0x18);
  117. LCD_DataWrite_ST7735 (0x16);
  118. LCD_DataWrite_ST7735 (0x19);
  119. LCD_CtrlWrite_ST7735 (0x29);
  120. _lcdDelayMs(2);
  121. //LCD_CtrlWrite_ST7735(0x2c);
  122. }else if(lcdtype==1){
  123. LCD_CtrlWrite_ST7735(0x01);
  124. LCD_CtrlWrite_ST7735(0xfe);
  125. LCD_CtrlWrite_ST7735(0xef);
  126. cmdDataSet(0xC8,Cmd_xC8, sizeof(Cmd_xC8));
  127. cmdDataSet(0xB6,Cmd_xB6, sizeof(Cmd_xB6));
  128. cmdDataSet(0x36,Cmd_x36, sizeof(Cmd_x36));
  129. cmdDataSet(0X3A,Cmd_x3A, sizeof(Cmd_x3A));
  130. cmdDataSet(0xc0,Cmd_xC0, sizeof(Cmd_xC0));
  131. cmdDataSet(0xC1,Cmd_xC1, sizeof(Cmd_xC1));
  132. cmdDataSet(0xC5,Cmd_xC5, sizeof(Cmd_xC5));
  133. cmdDataSet(0XB1,Cmd_xB1, sizeof(Cmd_xB1));
  134. cmdDataSet(0xB4,Cmd_xB4, sizeof(Cmd_xB4));
  135. cmdDataSet(0xE0,Cmd_xE0, sizeof(Cmd_xE0));
  136. cmdDataSet(0XE1,Cmd_xE1, sizeof(Cmd_xE1));
  137. LCD_CtrlWrite_ST7735(0xfe);
  138. LCD_CtrlWrite_ST7735(0xef);
  139. LCD_CtrlWrite_ST7735(0x11);
  140. _lcdDelayMs(120); //Delay 120ms
  141. LCD_CtrlWrite_ST7735(0x29); //Display on
  142. }
  143. }
  144. static const lcdOperations_t st7735sOperations =
  145. {
  146. _st7735Init,
  147. NULL,//_st7735SleepIn,
  148. NULL,//_st7735EsdCheck,
  149. NULL,//_st7735SetDisplayWindow,
  150. NULL,//_st7735InvalidateRect,
  151. NULL,//_st7735Invalidate,
  152. NULL,//_st7735Close,
  153. NULL,//_st7735RotationInvalidateRect,
  154. NULL,
  155. NULL,//_st7735ReadId,
  156. };
  157. const lcdSpec_t g_lcd_st7735s =
  158. {
  159. LCD_DRV_ID_ST7735,
  160. GLCD_WIDTH,
  161. GLCD_HEIGHT,
  162. HAL_GOUDA_SPI_LINE_4,
  163. LCD_CTRL_SPI,
  164. (lcdOperations_t *)&st7735sOperations,
  165. false,
  166. 0x2a000,
  167. 20000000,// 500000, //10000000, 10M
  168. };
  169. static lcdSpec_t *lcd_cfg_tab[] =
  170. {
  171. (lcdSpec_t *)&g_lcd_st7735s,
  172. };
  173. char lcdDrv_Init(char type){
  174. bool status;
  175. drvLcdInfoRegisterFromOpenCpu(lcd_cfg_tab, 0, 1, 0);
  176. LSAPI_PmuSetPowerLevel(OSI_MAKE_TAG('L', 'C', 'D', ' '), 2800);
  177. //LSAPI_OSI_ThreadSleep(100);
  178. LSAPI_PmuSwitchPower(OSI_MAKE_TAG('L', 'C', 'D', ' '), true, true);
  179. //LSAPI_OSI_ThreadSleep(100);
  180. LSAPI_PmuSetPowerLevel(OSI_MAKE_TAG('C', 'A', 'M', 'A'), 2800);
  181. LSAPI_OSI_ThreadSleep(100);
  182. LSAPI_PmuSwitchPower(OSI_MAKE_TAG('C', 'A', 'M', 'A'), true, true);
  183. LSAPI_OSI_ThreadSleep(100);
  184. drvLcdClose();
  185. status=drvLcdInit();
  186. MSG_INFO(1, "Lcd status:%d", status);
  187. if(status==false) return 1;
  188. else return 0;
  189. }
  190. void showBusErrInfo(int i){
  191. static int errCnt=0;
  192. if(i>=0) return;
  193. if(++errCnt%20) MSG_WARN(1,"lcd bus errcnt:%d",errCnt);
  194. }
  195. void LCD_CtrlWrite_ST7735(unsigned char cmd){
  196. int i=100;
  197. do{
  198. if(HAL_ERR_NO==halGoudaWriteCmd(cmd)) break;
  199. }while(--i>0);
  200. showBusErrInfo(i);
  201. }
  202. void LCD_DataWrite_ST7735(unsigned char data){
  203. int i=100;
  204. do{
  205. if(HAL_ERR_NO==halGoudaWriteData(data)) break;
  206. }while(--i>0);
  207. showBusErrInfo(i);
  208. }
  209. void LCD_DataRead_ST7735(unsigned char *reg, unsigned char *data, unsigned int readLen){
  210. halGoudaReadData(reg, data, readLen);
  211. }
  212. void lcdBackList(char onoff){
  213. bool write_value = onoff;
  214. //onoff=1;
  215. //LSAPI_Device_Write(LcdBlGpio, (void *)&write_value, 1);
  216. if(onoff)LSAPI_PmuSwitchPower(OSI_MAKE_TAG('C', 'A', 'M', 'A'), onoff, true);
  217. else LSAPI_PmuSwitchPower(OSI_MAKE_TAG('C', 'A', 'M', 'A'), onoff, false);
  218. }