| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591 |
- /* Copyright Statement:
- *
- * This software/firmware and related documentation ("MediaTek Software") are
- * protected under relevant copyright laws. The information contained herein
- * is confidential and proprietary to MediaTek Inc. and/or its licensors.
- * Without the prior written permission of MediaTek inc. and/or its licensors,
- * any reproduction, modification, use or disclosure of MediaTek Software,
- * and information contained herein, in whole or in part, shall be strictly prohibited.
- */
- /* MediaTek Inc. (C) 2015. All rights reserved.
- *
- * BY OPENING THIS FILE, RECEIVER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
- * THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
- * RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO RECEIVER ON
- * AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
- * NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
- * SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
- * SUPPLIED WITH THE MEDIATEK SOFTWARE, AND RECEIVER AGREES TO LOOK ONLY TO SUCH
- * THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. RECEIVER EXPRESSLY ACKNOWLEDGES
- * THAT IT IS RECEIVER'S SOLE RESPONSIBILITY TO OBTAIN FROM ANY THIRD PARTY ALL PROPER LICENSES
- * CONTAINED IN MEDIATEK SOFTWARE. MEDIATEK SHALL ALSO NOT BE RESPONSIBLE FOR ANY MEDIATEK
- * SOFTWARE RELEASES MADE TO RECEIVER'S SPECIFICATION OR TO CONFORM TO A PARTICULAR
- * STANDARD OR OPEN FORUM. RECEIVER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND
- * CUMULATIVE LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
- * AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
- * OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY RECEIVER TO
- * MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
- *
- * The following software/firmware and/or related documentation ("MediaTek Software")
- * have been modified by MediaTek Inc. All revisions are subject to any receiver\'s
- * applicable license agreements with MediaTek Inc.
- */
- #ifdef BUILD_LK
- #include <string.h>
- #include <platform/mt_gpio.h>
- #include <platform/mt_pmic.h>
- #include <platform/upmu_common.h>
- #include <platform/mt_i2c.h>
- #include <platform/mt_pmic.h>
- #endif
- #include "lcm_drv.h"
- /* --------------------------------------------------------------------------- */
- /* Local Constants */
- /* --------------------------------------------------------------------------- */
- #define LCM_DSI_CMD_MODE 0
- #define FRAME_WIDTH (720)
- #define FRAME_HEIGHT (1280)
- #define GPIO_OUT_ONE 1
- #define GPIO_OUT_ZERO 0
- #ifdef GPIO_LCM_RST
- #define GPIO_LCD_RST GPIO_LCM_RST
- #endif
- #ifdef GPIO_LCM_PWR_EN
- #define GPIO_LCD_PWR_EN GPIO_LCM_PWR_EN
- #else
- #define GPIO_LCD_PWR_EN 0xFFFFFFFF
- #endif
- #ifdef GPIO_LCD_BIAS_ENP_PIN
- #define GPIO_LCD_BIAS_ENP GPIO_LCD_BIAS_ENP_PIN
- #endif
- static LCM_UTIL_FUNCS lcm_util;
- #define SET_RESET_PIN(v) (lcm_util.set_reset_pin((v)))
- #define UDELAY(n) (lcm_util.udelay(n))
- #define MDELAY(n) (lcm_util.mdelay(n))
- /* --------------------------------------------------------------------------- */
- /* Local Functions */
- /* --------------------------------------------------------------------------- */
- #define dsi_set_cmdq_V2(cmd, count, ppara, force_update) lcm_util.dsi_set_cmdq_V2(cmd, count, ppara, force_update)
- #define dsi_set_cmdq(pdata, queue_size, force_update) lcm_util.dsi_set_cmdq(pdata, queue_size, force_update)
- #define wrtie_cmd(cmd) lcm_util.dsi_write_cmd(cmd)
- #define write_regs(addr, pdata, byte_nums) lcm_util.dsi_write_regs(addr, pdata, byte_nums)
- #define read_reg(cmd) lcm_util.dsi_dcs_read_lcm_reg(cmd)
- #define read_reg_v2(cmd, buffer, buffer_size) lcm_util.dsi_dcs_read_lcm_reg_v2(cmd, buffer, buffer_size)
- /* --------------------------------------------------------------------------- */
- /* Local Constants */
- /* --------------------------------------------------------------------------- */
- #define REGFLAG_DELAY 0xFC
- #define REGFLAG_END_OF_TABLE 0xFD /* END OF REGISTERS MARKER */
- #ifndef TRUE
- #define TRUE 1
- #endif
- #ifndef FALSE
- #define FALSE 0
- #endif
- /* --------------------------------------------------------------------------- */
- /* Local Variables */
- /* --------------------------------------------------------------------------- */
- static void lcm_set_gpio_output(unsigned int GPIO, unsigned int output)
- {
- if (GPIO == 0xFFFFFFFF) {
- #ifdef BUILD_LK
- printf("[LK/LCM] GPIO_LCD_PWR_EN = 0x%x\n", GPIO_LCD_PWR_EN);
- printf("[LK/LCM] GPIO_LCD_BIAS_ENP = 0x%x\n", GPIO_LCD_BIAS_ENP);
- printf("[LK/LCM] GPIO_LCM_RST = 0x%x\n", GPIO_LCD_RST);
- #endif
- return;
- }
- #ifdef BUILD_LK
- mt_set_gpio_mode(GPIO, GPIO_MODE_00);
- mt_set_gpio_dir(GPIO, GPIO_DIR_OUT);
- mt_set_gpio_out(GPIO, (output > 0) ? GPIO_OUT_ONE : GPIO_OUT_ZERO);
- #endif
- }
- struct LCM_setting_table {
- unsigned char cmd;
- unsigned char count;
- unsigned char para_list[64];
- };
- static struct LCM_setting_table lcm_initialization_setting[] = {
- {0xE0, 1, {0x00} },
- {0xE1, 1, {0x93} },
- {0xE2, 1, {0x65} },
- {0xE3, 1, {0xF8} },
- {0xE0, 1, {0x04} },
- {0x2D, 1, {0x03} },
- {0xE0, 1, {0x00} },
- {0x70, 1, {0x10} },
- {0x71, 1, {0x13} },
- {0x72, 1, {0x06} },
- {0x75, 1, {0x03} },
- {0x80, 1, {0x03} },
- {0xE0, 1, {0x01} },
- {0x00, 1, {0x00} },
- {0x01, 1, {0xB5} },
- {0x03, 1, {0x00} },
- {0x04, 1, {0xA0} },
- {0x0A, 1, {0x07} },
- {0x0C, 1, {0x74} },
- {0x17, 1, {0x00} },
- {0x18, 1, {0xD7} },
- {0x19, 1, {0x01} },
- {0x1A, 1, {0x00} },
- {0x1B, 1, {0xD7} },
- {0x1C, 1, {0x01} },
- {0x1F, 1, {0x74} },
- {0x20, 1, {0x19} },
- {0x21, 1, {0x19} },
- {0x22, 1, {0x0E} },
- {0x27, 1, {0x43} },
- {0x37, 1, {0x09} },
- {0x38, 1, {0x04} },
- {0x39, 1, {0x08} },
- {0x3A, 1, {0x18} },
- {0x3B, 1, {0x18} },
- {0x3C, 1, {0x72} },
- {0x3E, 1, {0xFF} },
- {0x3E, 1, {0xFF} },
- {0x3F, 1, {0xFF} },
- {0x40, 1, {0x04} },
- {0x41, 1, {0xA0} },
- {0x43, 1, {0x08} },
- {0x44, 1, {0x07} },
- {0x45, 1, {0x30} },
- {0x55, 1, {0x01} },
- {0x56, 1, {0x01} },
- {0x57, 1, {0x65} },
- {0x58, 1, {0x0A} },
- {0x59, 1, {0x0A} },
- {0x5A, 1, {0x28} },
- {0x5B, 1, {0x0F} },
- {0x5D, 1, {0x7C} },
- {0x5E, 1, {0x5F} },
- {0x5F, 1, {0x4D} },
- {0x60, 1, {0x3F} },
- {0x61, 1, {0x39} },
- {0x62, 1, {0x29} },
- {0x63, 1, {0x2B} },
- {0x64, 1, {0x12} },
- {0x65, 1, {0x28} },
- {0x66, 1, {0x24} },
- {0x67, 1, {0x22} },
- {0x68, 1, {0x3E} },
- {0x69, 1, {0x2C} },
- {0x6A, 1, {0x33} },
- {0x6B, 1, {0x26} },
- {0x6C, 1, {0x23} },
- {0x6D, 1, {0x18} },
- {0x6E, 1, {0x09} },
- {0x6F, 1, {0x00} },
- {0x70, 1, {0x7C} },
- {0x71, 1, {0x5F} },
- {0x72, 1, {0x4D} },
- {0x73, 1, {0x3F} },
- {0x74, 1, {0x39} },
- {0x75, 1, {0x29} },
- {0x76, 1, {0x2B} },
- {0x77, 1, {0x12} },
- {0x78, 1, {0x28} },
- {0x79, 1, {0x24} },
- {0x7A, 1, {0x22} },
- {0x7B, 1, {0x3E} },
- {0x7C, 1, {0x2C} },
- {0x7D, 1, {0x33} },
- {0x7E, 1, {0x26} },
- {0x7F, 1, {0x23} },
- {0x80, 1, {0x18} },
- {0x81, 1, {0x09} },
- {0x82, 1, {0x00} },
- {0xE0, 1, {0x02} },
- {0x00, 1, {0x37} },
- {0x01, 1, {0x17} },
- {0x02, 1, {0x0A} },
- {0x03, 1, {0x06} },
- {0x04, 1, {0x08} },
- {0x05, 1, {0x04} },
- {0x06, 1, {0x00} },
- {0x07, 1, {0x1F} },
- {0x08, 1, {0x1F} },
- {0x09, 1, {0x1F} },
- {0x0A, 1, {0x1F} },
- {0x0B, 1, {0x1F} },
- {0x0C, 1, {0x1F} },
- {0x0D, 1, {0x1F} },
- {0x0E, 1, {0x1F} },
- {0x0F, 1, {0x1F} },
- {0x10, 1, {0x3F} },
- {0x11, 1, {0x1F} },
- {0x12, 1, {0x1F} },
- {0x13, 1, {0x1E} },
- {0x14, 1, {0x10} },
- {0x15, 1, {0x1F} },
- {0x16, 1, {0x37} },
- {0x17, 1, {0x17} },
- {0x18, 1, {0x0B} },
- {0x19, 1, {0x07} },
- {0x1A, 1, {0x09} },
- {0x1B, 1, {0x05} },
- {0x1C, 1, {0x01} },
- {0x1D, 1, {0x1F} },
- {0x1E, 1, {0x1F} },
- {0x1F, 1, {0x1F} },
- {0x20, 1, {0x1F} },
- {0x21, 1, {0x1F} },
- {0x22, 1, {0x1F} },
- {0x23, 1, {0x1F} },
- {0x24, 1, {0x1F} },
- {0x25, 1, {0x1F} },
- {0x26, 1, {0x1F} },
- {0x27, 1, {0x1F} },
- {0x28, 1, {0x1F} },
- {0x29, 1, {0x1E} },
- {0x2A, 1, {0x11} },
- {0x2B, 1, {0x1F} },
- {0x2C, 1, {0x37} },
- {0x2D, 1, {0x17} },
- {0x2E, 1, {0x05} },
- {0x2F, 1, {0x09} },
- {0x30, 1, {0x07} },
- {0x31, 1, {0x0B} },
- {0x32, 1, {0x11} },
- {0x33, 1, {0x1F} },
- {0x34, 1, {0x1F} },
- {0x35, 1, {0x1F} },
- {0x36, 1, {0x1F} },
- {0x37, 1, {0x1F} },
- {0x38, 1, {0x1F} },
- {0x39, 1, {0x1F} },
- {0x3A, 1, {0x1F} },
- {0x3B, 1, {0x1F} },
- {0x3C, 1, {0x3F} },
- {0x3D, 1, {0x1F} },
- {0x3E, 1, {0x1E} },
- {0x3F, 1, {0x1F} },
- {0x40, 1, {0x01} },
- {0x41, 1, {0x1F} },
- {0x42, 1, {0x38} },
- {0x43, 1, {0x18} },
- {0x44, 1, {0x04} },
- {0x45, 1, {0x08} },
- {0x46, 1, {0x06} },
- {0x47, 1, {0x0A} },
- {0x48, 1, {0x10} },
- {0x49, 1, {0x1F} },
- {0x4A, 1, {0x1F} },
- {0x4B, 1, {0x1F} },
- {0x4C, 1, {0x1F} },
- {0x4D, 1, {0x1F} },
- {0x4E, 1, {0x1F} },
- {0x4F, 1, {0x1F} },
- {0x50, 1, {0x1F} },
- {0x51, 1, {0x1F} },
- {0x52, 1, {0x1F} },
- {0x53, 1, {0x1F} },
- {0x54, 1, {0x1E} },
- {0x55, 1, {0x1F} },
- {0x56, 1, {0x00} },
- {0x57, 1, {0x1F} },
- {0x58, 1, {0x10} },
- {0x59, 1, {0x00} },
- {0x5A, 1, {0x00} },
- {0x5B, 1, {0x10} },
- {0x5C, 1, {0x01} },
- {0x5D, 1, {0x50} },
- {0x5E, 1, {0x01} },
- {0x5F, 1, {0x02} },
- {0x60, 1, {0x30} },
- {0x61, 1, {0x01} },
- {0x62, 1, {0x02} },
- {0x63, 1, {0x06} },
- {0x64, 1, {0x6A} },
- {0x65, 1, {0x55} },
- {0x66, 1, {0x08} },
- {0x67, 1, {0x73} },
- {0x68, 1, {0x05} },
- {0x69, 1, {0x08} },
- {0x6A, 1, {0x6E} },
- {0x6B, 1, {0x00} },
- {0x6C, 1, {0x00} },
- {0x6D, 1, {0x00} },
- {0x6E, 1, {0x00} },
- {0x6F, 1, {0x88} },
- {0x70, 1, {0x00} },
- {0x71, 1, {0x00} },
- {0x72, 1, {0x06} },
- {0x73, 1, {0x7B} },
- {0x74, 1, {0x00} },
- {0x75, 1, {0x80} },
- {0x76, 1, {0x00} },
- {0x77, 1, {0x0D} },
- {0x78, 1, {0x18} },
- {0x79, 1, {0x00} },
- {0x7A, 1, {0x00} },
- {0x7B, 1, {0x00} },
- {0x7C, 1, {0x00} },
- {0x7D, 1, {0x03} },
- {0x7E, 1, {0x7B} },
- {0xE0, 1, {0x04} },
- {0x04, 1, {0x01} },
- {0x0E, 1, {0x38} },
- {0x2B, 1, {0x2B} },
- {0x2E, 1, {0x44} },
- {0xE0, 1, {0x00} },
- {0xE6, 1, {0x02} },
- {0xE6, 1, {0x02} },
- {0x11, 0, {} },
- {REGFLAG_DELAY, 120, {} },
- {0x29, 0, {} },
- {REGFLAG_DELAY, 5, {} },
- {0x35, 1, {0x00} },
- {REGFLAG_END_OF_TABLE, 0x00, {} }
- };
- static void dsi_send_cmdq_tinno(unsigned cmd, unsigned char count, unsigned char *para_list,
- unsigned char force_update)
- {
- unsigned int item[16];
- unsigned char dsi_cmd = (unsigned char)cmd;
- unsigned char dc;
- int index = 0, length = 0;
- memset(item, 0, sizeof(item));
- if (count + 1 > 60)
- return;
- if (count == 0) {
- item[0] = 0x0500 | (dsi_cmd << 16);
- length = 1;
- } else if (count == 1) {
- item[0] = 0x1500 | (dsi_cmd << 16) | (para_list[0] << 24);
- length = 1;
- } else {
- item[0] = 0x3902 | ((count + 1) << 16); /* Count include command. */
- ++length;
- while (1) {
- if (index == count + 1)
- break;
- if (index == 0)
- dc = cmd;
- else
- dc = para_list[index - 1];
- /* an item make up of 4data. */
- item[index / 4 + 1] |= (dc << (8 * (index % 4)));
- if (index % 4 == 0)
- ++length;
- ++index;
- }
- }
- dsi_set_cmdq(item, length, force_update);
- }
- static void push_table(struct LCM_setting_table *table, unsigned int count,
- unsigned char force_update)
- {
- unsigned int i;
- unsigned cmd;
- for (i = 0; i < count; i++) {
- cmd = table[i].cmd;
- switch (cmd) {
- case REGFLAG_DELAY:
- MDELAY(table[i].count);
- break;
- case REGFLAG_END_OF_TABLE:
- break;
- default:
- dsi_send_cmdq_tinno(cmd, table[i].count, table[i].para_list, force_update);
- /* dsi_set_cmdq_V2(cmd, table[i].count, table[i].para_list, force_update); */
- }
- }
- }
- static void init_lcm_registers(void)
- {
- push_table(lcm_initialization_setting,
- sizeof(lcm_initialization_setting) / sizeof(struct LCM_setting_table), 1);
- }
- /* --------------------------------------------------------------------------- */
- /* LCM Driver Implementations */
- /* --------------------------------------------------------------------------- */
- static void lcm_set_util_funcs(const LCM_UTIL_FUNCS *util)
- {
- memcpy(&lcm_util, util, sizeof(LCM_UTIL_FUNCS));
- }
- static void lcm_get_params(LCM_PARAMS *params)
- {
- memset(params, 0, sizeof(LCM_PARAMS));
- params->type = LCM_TYPE_DSI;
- params->width = FRAME_WIDTH;
- params->height = FRAME_HEIGHT;
- #if (LCM_DSI_CMD_MODE)
- params->dsi.mode = CMD_MODE;
- #else
- params->dsi.mode = SYNC_PULSE_VDO_MODE;
- #endif
- /* DSI */
- /* Command mode setting */
- params->dsi.LANE_NUM = LCM_FOUR_LANE;
- /* The following defined the fomat for data coming from LCD engine. */
- params->dsi.data_format.color_order = LCM_COLOR_ORDER_RGB;
- params->dsi.data_format.trans_seq = LCM_DSI_TRANS_SEQ_MSB_FIRST;
- params->dsi.data_format.padding = LCM_DSI_PADDING_ON_LSB;
- params->dsi.data_format.format = LCM_DSI_FORMAT_RGB888;
- params->dsi.intermediat_buffer_num = 2;
- params->dsi.PS = LCM_PACKED_PS_24BIT_RGB888;
- #ifndef BUILD_LK
- params->dsi.esd_check_enable = 1;
- params->dsi.customization_esd_check_enable = 1;
- params->dsi.lcm_esd_check_table[0].cmd = 0x0A;
- params->dsi.lcm_esd_check_table[0].count = 1;
- params->dsi.lcm_esd_check_table[0].para_list[0] = 0x9c;
- #endif
- params->dsi.vertical_sync_active = 4;
- params->dsi.vertical_backporch = 4;
- params->dsi.vertical_frontporch = 16;
- params->dsi.vertical_active_line = FRAME_HEIGHT;
- params->dsi.horizontal_sync_active = 55;
- params->dsi.horizontal_backporch = 53;
- params->dsi.horizontal_frontporch = 24;
- params->dsi.horizontal_active_pixel = FRAME_WIDTH;
- /* video mode timing */
- params->dsi.word_count = FRAME_WIDTH * 3;
- params->dsi.PLL_CLOCK = 270;
- }
- static void lcm_init_lcm(void)
- {
- #ifdef BUILD_LK
- printf("[LK/LCM] lcm_init() enter\n");
- lcm_set_gpio_output(GPIO_LCM_RST, GPIO_OUT_ONE);
- MDELAY(10);
- lcm_set_gpio_output(GPIO_LCD_PWR_EN, GPIO_OUT_ONE);
- MDELAY(10);
- lcm_set_gpio_output(GPIO_LCD_BIAS_ENP, GPIO_OUT_ONE);
- MDELAY(10);
- lcm_set_gpio_output(GPIO_LCM_RST, GPIO_OUT_ZERO);
- MDELAY(10);
- lcm_set_gpio_output(GPIO_LCM_RST, GPIO_OUT_ONE);
- MDELAY(10);
- lcm_set_gpio_output(GPIO_LCM_RST, GPIO_OUT_ZERO);
- MDELAY(10);
- init_lcm_registers();
- #endif
- }
- void lcm_suspend(void)
- {
- #ifdef BUILD_LK
- printf("[LK/LCM] lcm_suspend() enter\n");
- #endif
- }
- void lcm_resume(void)
- {
- #ifdef BUILD_LK
- printf("[LK/LCM] lcm_resume() enter\n");
- #endif
- }
- #if (LCM_DSI_CMD_MODE)
- static void lcm_update(unsigned int x, unsigned int y, unsigned int width, unsigned int height)
- {
- unsigned int x0 = x;
- unsigned int y0 = y;
- unsigned int x1 = x0 + width - 1;
- unsigned int y1 = y0 + height - 1;
- unsigned char x0_MSB = ((x0 >> 8) & 0xFF);
- unsigned char x0_LSB = (x0 & 0xFF);
- unsigned char x1_MSB = ((x1 >> 8) & 0xFF);
- unsigned char x1_LSB = (x1 & 0xFF);
- unsigned char y0_MSB = ((y0 >> 8) & 0xFF);
- unsigned char y0_LSB = (y0 & 0xFF);
- unsigned char y1_MSB = ((y1 >> 8) & 0xFF);
- unsigned char y1_LSB = (y1 & 0xFF);
- unsigned int data_array[16];
- data_array[0] = 0x00053902;
- data_array[1] = (x1_MSB << 24) | (x0_LSB << 16) | (x0_MSB << 8) | 0x2a;
- data_array[2] = (x1_LSB);
- dsi_set_cmdq(data_array, 3, 1);
- data_array[0] = 0x00053902;
- data_array[1] = (y1_MSB << 24) | (y0_LSB << 16) | (y0_MSB << 8) | 0x2b;
- data_array[2] = (y1_LSB);
- dsi_set_cmdq(data_array, 3, 1);
- data_array[0] = 0x002c3909;
- dsi_set_cmdq(data_array, 1, 0);
- }
- #endif
- LCM_DRIVER jd9365_hd720_dsi_lcm_drv = {
- .name = "jd9365_hd720_dsi",
- .set_util_funcs = lcm_set_util_funcs,
- .get_params = lcm_get_params,
- .init = lcm_init_lcm,
- .suspend = lcm_suspend,
- .resume = lcm_resume,
- };
|