| /* Copyright (c) 2013-2015, The Linux Foundation. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * * Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * * Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in |
| * the documentation and/or other materials provided with the |
| * distribution. |
| * * Neither the name of The Linux Foundation nor the names of its |
| * contributors may be used to endorse or promote products derived |
| * from this software without specific prior written permission. |
| * |
| * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS |
| * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE |
| * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, |
| * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS |
| * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED |
| * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT |
| * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| * SUCH DAMAGE. |
| */ |
| |
| #include <debug.h> |
| #include <err.h> |
| #include <smem.h> |
| #include <msm_panel.h> |
| #include <board.h> |
| #include <mipi_dsi.h> |
| #include <target/display.h> |
| #include <mipi_dsi_i2c.h> |
| |
| #include "include/panel.h" |
| #include "panel_display.h" |
| #include <blsp_qup.h> |
| |
| /*---------------------------------------------------------------------------*/ |
| /* GCDB Panel Database */ |
| /*---------------------------------------------------------------------------*/ |
| #include "include/panel_jdi_1080p_video.h" |
| #include "include/panel_nt35590_720p_video.h" |
| #include "include/panel_nt35590_720p_cmd.h" |
| #include "include/panel_innolux_720p_video.h" |
| #include "include/panel_otm8019a_fwvga_video.h" |
| #include "include/panel_otm1283a_720p_video.h" |
| #include "include/panel_nt35596_1080p_skuk_video.h" |
| #include "include/panel_sharp_wqxga_dualdsi_video.h" |
| #include "include/panel_jdi_fhd_video.h" |
| #include "include/panel_hx8379a_fwvga_video.h" |
| #include "include/panel_hx8394d_720p_video.h" |
| #include "include/panel_nt35521_wxga_video.h" |
| #include "include/panel_samsung_wxga_video.h" |
| #include "include/panel_hx8279a_wsvga_video.h" |
| #include "include/panel_r61318_hd_video.h" |
| #include "include/panel_r63417_1080p_video.h" |
| #include "include/panel_jdi_a216_fhd_video.h" |
| #include "include/panel_adv7533_1080p60.h" |
| #include "include/panel_adv7533_720p60.h" |
| |
| #define DISPLAY_MAX_PANEL_DETECTION 2 |
| #define OTM8019A_FWVGA_VIDEO_PANEL_ON_DELAY 50 |
| #define NT35590_720P_CMD_PANEL_ON_DELAY 40 |
| #define SAMSUNG_WXGA_VIDEO_PANEL_ON_DELAY 100 |
| |
| #define BOARD_SOC_VERSION3 0x30000 |
| |
| /*---------------------------------------------------------------------------*/ |
| /* static panel selection variable */ |
| /*---------------------------------------------------------------------------*/ |
| static uint32_t auto_pan_loop = 0; |
| |
| uint32_t panel_regulator_settings[] = { |
| 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| }; |
| |
| /* |
| * The list of panels that are supported on this target. |
| * Any panel in this list can be selected using fastboot oem command. |
| */ |
| static struct panel_list supp_panels[] = { |
| {"jdi_1080p_video", JDI_1080P_VIDEO_PANEL}, |
| {"nt35590_720p_video", NT35590_720P_VIDEO_PANEL}, |
| {"nt35590_720p_cmd", NT35590_720P_CMD_PANEL}, |
| {"innolux_720p_video", INNOLUX_720P_VIDEO_PANEL}, |
| {"otm8019a_fwvga_video", OTM8019A_FWVGA_VIDEO_PANEL}, |
| {"otm1283a_720p_video", OTM1283A_720P_VIDEO_PANEL}, |
| {"nt35596_1080p_video", NT35596_1080P_VIDEO_PANEL}, |
| {"sharp_wqxga_dualdsi_video",SHARP_WQXGA_DUALDSI_VIDEO_PANEL}, |
| {"jdi_fhd_video", JDI_FHD_VIDEO_PANEL}, |
| {"hx8379a_wvga_video", HX8379A_FWVGA_VIDEO_PANEL}, |
| {"hx8394d_720p_video", HX8394D_720P_VIDEO_PANEL}, |
| {"nt35521_wxga_video", NT35521_WXGA_VIDEO_PANEL}, |
| {"samsung_wxga_video", SAMSUNG_WXGA_VIDEO_PANEL}, |
| {"hx8279a_wsvga_video", HX8279A_WSVGA_VIDEO_PANEL}, |
| {"r61318_hd_video", R61318_HD_VIDEO_PANEL}, |
| {"r63417_1080p_video", R63417_1080P_VIDEO_PANEL}, |
| {"jdi_a216_fhd_video", JDI_A216_FHD_VIDEO_PANEL}, |
| {"adv7533_1080p_video", ADV7533_1080P_VIDEO_PANEL}, |
| {"adv7533_720p_video", ADV7533_720P_VIDEO_PANEL}, |
| }; |
| |
| static uint32_t panel_id; |
| |
| int oem_panel_rotation() |
| { |
| return NO_ERROR; |
| } |
| |
| int oem_panel_on() |
| { |
| /* |
| *OEM can keep their panel specific on instructions in this |
| *function |
| */ |
| if (panel_id == OTM8019A_FWVGA_VIDEO_PANEL) { |
| /* needs extra delay to avoid unexpected artifacts */ |
| mdelay(OTM8019A_FWVGA_VIDEO_PANEL_ON_DELAY); |
| } else if (panel_id == NT35590_720P_CMD_PANEL) { |
| /* needs extra delay to avoid snow screen artifacts */ |
| mdelay(NT35590_720P_CMD_PANEL_ON_DELAY); |
| } else if (panel_id == SAMSUNG_WXGA_VIDEO_PANEL) { |
| /* needs extra delay to avoid unexpected artifacts */ |
| mdelay(SAMSUNG_WXGA_VIDEO_PANEL_ON_DELAY); |
| } |
| |
| return NO_ERROR; |
| } |
| |
| int oem_panel_off() |
| { |
| /* OEM can keep their panel specific off instructions |
| * in this function |
| */ |
| return NO_ERROR; |
| } |
| |
| static int init_panel_data(struct panel_struct *panelstruct, |
| struct msm_panel_info *pinfo, |
| struct mdss_dsi_phy_ctrl *phy_db) |
| { |
| int pan_type = PANEL_TYPE_DSI; |
| |
| switch (panel_id) { |
| case JDI_1080P_VIDEO_PANEL: |
| panelstruct->paneldata = &jdi_1080p_video_panel_data; |
| panelstruct->paneldata->panel_with_enable_gpio = 1; |
| panelstruct->panelres = &jdi_1080p_video_panel_res; |
| panelstruct->color = &jdi_1080p_video_color; |
| panelstruct->videopanel = &jdi_1080p_video_video_panel; |
| panelstruct->commandpanel = &jdi_1080p_video_command_panel; |
| panelstruct->state = &jdi_1080p_video_state; |
| panelstruct->laneconfig = &jdi_1080p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &jdi_1080p_video_timing_info; |
| panelstruct->panelresetseq |
| = &jdi_1080p_video_panel_reset_seq; |
| panelstruct->backlightinfo = &jdi_1080p_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = jdi_1080p_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = JDI_1080P_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = jdi_1080p_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = JDI_1080P_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| jdi_1080p_video_timings, TIMING_SIZE); |
| pinfo->mipi.signature = JDI_1080P_VIDEO_SIGNATURE; |
| break; |
| case NT35590_720P_VIDEO_PANEL: |
| panelstruct->paneldata = &nt35590_720p_video_panel_data; |
| panelstruct->panelres = &nt35590_720p_video_panel_res; |
| panelstruct->color = &nt35590_720p_video_color; |
| panelstruct->videopanel = &nt35590_720p_video_video_panel; |
| panelstruct->commandpanel = &nt35590_720p_video_command_panel; |
| panelstruct->state = &nt35590_720p_video_state; |
| panelstruct->laneconfig = &nt35590_720p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &nt35590_720p_video_timing_info; |
| panelstruct->panelresetseq |
| = &nt35590_720p_video_panel_reset_seq; |
| panelstruct->backlightinfo = &nt35590_720p_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = nt35590_720p_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = NT35590_720P_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = nt35590_720p_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = NT35590_720P_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| nt35590_720p_video_timings, TIMING_SIZE); |
| pinfo->mipi.signature = NT35590_720P_VIDEO_SIGNATURE; |
| break; |
| case NT35590_720P_CMD_PANEL: |
| panelstruct->paneldata = &nt35590_720p_cmd_panel_data; |
| panelstruct->panelres = &nt35590_720p_cmd_panel_res; |
| panelstruct->color = &nt35590_720p_cmd_color; |
| panelstruct->videopanel = &nt35590_720p_cmd_video_panel; |
| panelstruct->commandpanel = &nt35590_720p_cmd_command_panel; |
| panelstruct->state = &nt35590_720p_cmd_state; |
| panelstruct->laneconfig = &nt35590_720p_cmd_lane_config; |
| panelstruct->paneltiminginfo = &nt35590_720p_cmd_timing_info; |
| panelstruct->panelresetseq |
| = &nt35590_720p_cmd_panel_reset_seq; |
| panelstruct->backlightinfo = &nt35590_720p_cmd_backlight; |
| pinfo->mipi.panel_on_cmds |
| = nt35590_720p_cmd_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = NT35590_720P_CMD_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = nt35590_720p_cmd_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = NT35590_720P_CMD_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| nt35590_720p_cmd_timings, TIMING_SIZE); |
| pinfo->mipi.signature = NT35590_720P_CMD_SIGNATURE; |
| break; |
| case INNOLUX_720P_VIDEO_PANEL: |
| panelstruct->paneldata = &innolux_720p_video_panel_data; |
| panelstruct->panelres = &innolux_720p_video_panel_res; |
| panelstruct->color = &innolux_720p_video_color; |
| panelstruct->videopanel = &innolux_720p_video_video_panel; |
| panelstruct->commandpanel = &innolux_720p_video_command_panel; |
| panelstruct->state = &innolux_720p_video_state; |
| panelstruct->laneconfig = &innolux_720p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &innolux_720p_video_timing_info; |
| panelstruct->panelresetseq |
| = &innolux_720p_video_reset_seq; |
| panelstruct->backlightinfo = &innolux_720p_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = innolux_720p_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = INNOLUX_720P_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = innolux_720p_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = INNOLUX_720P_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| innolux_720p_video_timings, TIMING_SIZE); |
| break; |
| case OTM8019A_FWVGA_VIDEO_PANEL: |
| panelstruct->paneldata = &otm8019a_fwvga_video_panel_data; |
| panelstruct->panelres = &otm8019a_fwvga_video_panel_res; |
| panelstruct->color = &otm8019a_fwvga_video_color; |
| panelstruct->videopanel = &otm8019a_fwvga_video_video_panel; |
| panelstruct->commandpanel = &otm8019a_fwvga_video_command_panel; |
| panelstruct->state = &otm8019a_fwvga_video_state; |
| panelstruct->laneconfig = &otm8019a_fwvga_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &otm8019a_fwvga_video_timing_info; |
| panelstruct->panelresetseq |
| = &otm8019a_fwvga_video_reset_seq; |
| panelstruct->backlightinfo = &otm8019a_fwvga_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = otm8019a_fwvga_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = OTM8019A_FWVGA_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = otm8019a_fwvga_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = OTM8019A_FWVGA_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| otm8019a_fwvga_video_timings, TIMING_SIZE); |
| break; |
| case OTM1283A_720P_VIDEO_PANEL: |
| panelstruct->paneldata = &otm1283a_720p_video_panel_data; |
| panelstruct->panelres = &otm1283a_720p_video_panel_res; |
| panelstruct->color = &otm1283a_720p_video_color; |
| panelstruct->videopanel = &otm1283a_720p_video_video_panel; |
| panelstruct->commandpanel = &otm1283a_720p_video_command_panel; |
| panelstruct->state = &otm1283a_720p_video_state; |
| panelstruct->laneconfig = &otm1283a_720p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &otm1283a_720p_video_timing_info; |
| panelstruct->panelresetseq |
| = &otm1283a_720p_video_reset_seq; |
| panelstruct->backlightinfo = &otm1283a_720p_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = otm1283a_720p_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = OTM1283A_720P_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = otm1283a_720p_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = OTM1283A_720P_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| otm1283a_720p_video_timings, TIMING_SIZE); |
| break; |
| case NT35596_1080P_VIDEO_PANEL: |
| panelstruct->paneldata = &nt35596_1080p_skuk_video_panel_data; |
| panelstruct->panelres = &nt35596_1080p_skuk_video_panel_res; |
| panelstruct->color = &nt35596_1080p_skuk_video_color; |
| panelstruct->videopanel = &nt35596_1080p_skuk_video_video_panel; |
| panelstruct->commandpanel = &nt35596_1080p_skuk_video_command_panel; |
| panelstruct->state = &nt35596_1080p_skuk_video_state; |
| panelstruct->laneconfig = &nt35596_1080p_skuk_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &nt35596_1080p_skuk_video_timing_info; |
| panelstruct->panelresetseq |
| = &nt35596_1080p_skuk_video_reset_seq; |
| panelstruct->backlightinfo = &nt35596_1080p_skuk_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = nt35596_1080p_skuk_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = NT35596_1080P_SKUK_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = nt35596_1080p_skuk_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = NT35596_1080P_SKUK_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| nt35596_1080p_skuk_video_timings, TIMING_SIZE); |
| break; |
| case SHARP_WQXGA_DUALDSI_VIDEO_PANEL: |
| panelstruct->paneldata = &sharp_wqxga_dualdsi_video_panel_data; |
| panelstruct->panelres = &sharp_wqxga_dualdsi_video_panel_res; |
| panelstruct->color = &sharp_wqxga_dualdsi_video_color; |
| panelstruct->videopanel = &sharp_wqxga_dualdsi_video_video_panel; |
| panelstruct->commandpanel = &sharp_wqxga_dualdsi_video_command_panel; |
| panelstruct->state = &sharp_wqxga_dualdsi_video_state; |
| panelstruct->laneconfig = &sharp_wqxga_dualdsi_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &sharp_wqxga_dualdsi_video_timing_info; |
| panelstruct->panelresetseq |
| = &sharp_wqxga_dualdsi_video_reset_seq; |
| panelstruct->backlightinfo = &sharp_wqxga_dualdsi_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = sharp_wqxga_dualdsi_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = SHARP_WQXGA_DUALDSI_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = sharp_wqxga_dualdsi_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = SHARP_WQXGA_DUALDSI_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| sharp_wqxga_dualdsi_video_timings, TIMING_SIZE); |
| pinfo->mipi.signature = SHARP_WQXGA_DUALDSI_VIDEO_SIGNATURE; |
| break; |
| case JDI_FHD_VIDEO_PANEL: |
| panelstruct->paneldata = &jdi_fhd_video_panel_data; |
| panelstruct->panelres = &jdi_fhd_video_panel_res; |
| panelstruct->color = &jdi_fhd_video_color; |
| panelstruct->videopanel = &jdi_fhd_video_video_panel; |
| panelstruct->commandpanel = &jdi_fhd_video_command_panel; |
| panelstruct->state = &jdi_fhd_video_state; |
| panelstruct->laneconfig = &jdi_fhd_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &jdi_fhd_video_timing_info; |
| panelstruct->panelresetseq |
| = &jdi_fhd_video_reset_seq; |
| panelstruct->backlightinfo = &jdi_fhd_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = jdi_fhd_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = JDI_FHD_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = jdi_fhd_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = JDI_FHD_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| jdi_fhd_video_timings, TIMING_SIZE); |
| break; |
| case HX8379A_FWVGA_VIDEO_PANEL: |
| panelstruct->paneldata = &hx8379a_fwvga_video_panel_data; |
| panelstruct->panelres = &hx8379a_fwvga_video_panel_res; |
| panelstruct->color = &hx8379a_fwvga_video_color; |
| panelstruct->videopanel = &hx8379a_fwvga_video_video_panel; |
| panelstruct->commandpanel = &hx8379a_fwvga_video_command_panel; |
| panelstruct->state = &hx8379a_fwvga_video_state; |
| panelstruct->laneconfig = &hx8379a_fwvga_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &hx8379a_fwvga_video_timing_info; |
| panelstruct->panelresetseq |
| = &hx8379a_fwvga_video_reset_seq; |
| panelstruct->backlightinfo = &hx8379a_fwvga_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = hx8379a_fwvga_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = HX8379A_FWVGA_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = hx8379a_fwvga_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = HX8379A_FWVGA_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| hx8379a_fwvga_video_timings, TIMING_SIZE); |
| break; |
| case HX8394D_720P_VIDEO_PANEL: |
| panelstruct->paneldata = &hx8394d_720p_video_panel_data; |
| panelstruct->panelres = &hx8394d_720p_video_panel_res; |
| panelstruct->color = &hx8394d_720p_video_color; |
| panelstruct->videopanel = &hx8394d_720p_video_video_panel; |
| panelstruct->commandpanel = &hx8394d_720p_video_command_panel; |
| panelstruct->state = &hx8394d_720p_video_state; |
| panelstruct->laneconfig = &hx8394d_720p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &hx8394d_720p_video_timing_info; |
| panelstruct->panelresetseq |
| = &hx8394d_720p_video_panel_reset_seq; |
| panelstruct->backlightinfo = &hx8394d_720p_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = hx8394d_720p_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = HX8394D_720P_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = hx8394d_720p_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = HX8394D_720P_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| hx8394d_720p_video_timings, TIMING_SIZE); |
| pinfo->mipi.signature = HX8394D_720P_VIDEO_SIGNATURE; |
| break; |
| case NT35521_WXGA_VIDEO_PANEL: |
| panelstruct->paneldata = &nt35521_wxga_video_panel_data; |
| panelstruct->panelres = &nt35521_wxga_video_panel_res; |
| panelstruct->color = &nt35521_wxga_video_color; |
| panelstruct->videopanel = &nt35521_wxga_video_video_panel; |
| panelstruct->commandpanel = &nt35521_wxga_video_command_panel; |
| panelstruct->state = &nt35521_wxga_video_state; |
| panelstruct->laneconfig = &nt35521_wxga_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &nt35521_wxga_video_timing_info; |
| panelstruct->panelresetseq |
| = &nt35521_wxga_video_reset_seq; |
| panelstruct->backlightinfo = &nt35521_wxga_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = nt35521_wxga_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = NT35521_WXGA_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = nt35521_wxga_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = NT35521_WXGA_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| nt35521_wxga_video_timings, TIMING_SIZE); |
| break; |
| case SAMSUNG_WXGA_VIDEO_PANEL: |
| panelstruct->paneldata = &samsung_wxga_video_panel_data; |
| panelstruct->panelres = &samsung_wxga_video_panel_res; |
| panelstruct->color = &samsung_wxga_video_color; |
| panelstruct->videopanel = &samsung_wxga_video_video_panel; |
| panelstruct->commandpanel = &samsung_wxga_video_command_panel; |
| panelstruct->state = &samsung_wxga_video_state; |
| panelstruct->laneconfig = &samsung_wxga_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &samsung_wxga_video_timing_info; |
| panelstruct->panelresetseq |
| = &samsung_wxga_video_reset_seq; |
| panelstruct->backlightinfo = &samsung_wxga_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = samsung_wxga_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = SAMSUNG_WXGA_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = samsung_wxga_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = SAMSUNG_WXGA_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| samsung_wxga_video_timings, TIMING_SIZE); |
| break; |
| case HX8279A_WSVGA_VIDEO_PANEL: |
| panelstruct->paneldata = &hx8279a_wsvga_video_panel_data; |
| panelstruct->panelres = &hx8279a_wsvga_video_panel_res; |
| panelstruct->color = &hx8279a_wsvga_video_color; |
| panelstruct->videopanel = &hx8279a_wsvga_video_video_panel; |
| panelstruct->commandpanel = &hx8279a_wsvga_video_command_panel; |
| panelstruct->state = &hx8279a_wsvga_video_state; |
| panelstruct->laneconfig = &hx8279a_wsvga_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &hx8279a_wsvga_video_timing_info; |
| panelstruct->panelresetseq |
| = &hx8279a_wsvga_video_reset_seq; |
| panelstruct->backlightinfo = &hx8279a_wsvga_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = hx8279a_wsvga_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = HX8279A_WSVGA_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = hx8279a_wsvga_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = HX8279A_WSVGA_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| hx8279a_wsvga_video_timings, TIMING_SIZE); |
| break; |
| case R61318_HD_VIDEO_PANEL: |
| panelstruct->paneldata = & r61318_hd_video_panel_data; |
| panelstruct->panelres = & r61318_hd_video_panel_res; |
| panelstruct->color = & r61318_hd_video_color; |
| panelstruct->videopanel = & r61318_hd_video_video_panel; |
| panelstruct->commandpanel = & r61318_hd_video_command_panel; |
| panelstruct->state = & r61318_hd_video_state; |
| panelstruct->laneconfig = & r61318_hd_video_lane_config; |
| panelstruct->paneltiminginfo |
| = & r61318_hd_video_timing_info; |
| panelstruct->panelresetseq |
| = & r61318_hd_video_reset_seq; |
| panelstruct->backlightinfo = & r61318_hd_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = r61318_hd_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = R61318_HD_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = r61318_hd_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = R61318_HD_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| r61318_hd_video_timings, TIMING_SIZE); |
| break; |
| case R63417_1080P_VIDEO_PANEL: |
| panelstruct->paneldata = & r63417_1080p_video_panel_data; |
| panelstruct->panelres = & r63417_1080p_video_panel_res; |
| panelstruct->color = & r63417_1080p_video_color; |
| panelstruct->videopanel = & r63417_1080p_video_video_panel; |
| panelstruct->commandpanel = & r63417_1080p_video_command_panel; |
| panelstruct->state = & r63417_1080p_video_state; |
| panelstruct->laneconfig = & r63417_1080p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = & r63417_1080p_video_timing_info; |
| panelstruct->panelresetseq |
| = & r63417_1080p_video_reset_seq; |
| panelstruct->backlightinfo = & r63417_1080p_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = r63417_1080p_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = R63417_1080P_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = r63417_1080p_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = R63417_1080P_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| r63417_1080p_video_timings, TIMING_SIZE); |
| break; |
| case JDI_A216_FHD_VIDEO_PANEL: |
| panelstruct->paneldata = &jdi_a216_fhd_video_panel_data; |
| panelstruct->panelres = &jdi_a216_fhd_video_panel_res; |
| panelstruct->color = &jdi_a216_fhd_video_color; |
| panelstruct->videopanel = &jdi_a216_fhd_video_video_panel; |
| panelstruct->commandpanel = &jdi_a216_fhd_video_command_panel; |
| panelstruct->state = &jdi_a216_fhd_video_state; |
| panelstruct->laneconfig = &jdi_a216_fhd_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &jdi_a216_fhd_video_timing_info; |
| panelstruct->panelresetseq |
| = &jdi_a216_fhd_video_reset_seq; |
| panelstruct->backlightinfo = &jdi_a216_fhd_video_backlight; |
| pinfo->mipi.panel_on_cmds |
| = jdi_a216_fhd_video_on_command; |
| pinfo->mipi.num_of_panel_on_cmds |
| = JDI_A216_FHD_VIDEO_ON_COMMAND; |
| pinfo->mipi.panel_off_cmds |
| = jdi_a216_fhd_video_off_command; |
| pinfo->mipi.num_of_panel_off_cmds |
| = JDI_A216_FHD_VIDEO_OFF_COMMAND; |
| memcpy(phy_db->timing, |
| jdi_a216_fhd_video_timings, TIMING_SIZE); |
| break; |
| case ADV7533_1080P_VIDEO_PANEL: |
| panelstruct->paneldata = &adv7533_1080p_video_panel_data; |
| panelstruct->panelres = &adv7533_1080p_video_panel_res; |
| panelstruct->color = &adv7533_1080p_video_color; |
| panelstruct->videopanel = &adv7533_1080p_video_video_panel; |
| panelstruct->commandpanel = &adv7533_1080p_video_command_panel; |
| panelstruct->state = &adv7533_1080p_video_state; |
| panelstruct->laneconfig = &adv7533_1080p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &adv7533_1080p_video_timing_info; |
| pinfo->adv7533.dsi_tg_i2c_cmd = &adv7533_1080p_tg_i2c_command; |
| pinfo->adv7533.num_of_tg_i2c_cmds = ADV7533_1080P_TG_COMMANDS; |
| pinfo->adv7533.dsi_setup_cfg_i2c_cmd = &adv7533_1080p_common_cfg; |
| pinfo->adv7533.num_of_cfg_i2c_cmds = ADV7533_1080P_CONFIG_COMMANDS; |
| memcpy(phy_db->timing, |
| adv7533_1080p_video_timings, TIMING_SIZE); |
| break; |
| |
| case ADV7533_720P_VIDEO_PANEL: |
| panelstruct->paneldata = &adv7533_720p_video_panel_data; |
| panelstruct->panelres = &adv7533_720p_video_panel_res; |
| panelstruct->color = &adv7533_720p_video_color; |
| panelstruct->videopanel = &adv7533_720p_video_video_panel; |
| panelstruct->commandpanel = &adv7533_720p_video_command_panel; |
| panelstruct->state = &adv7533_720p_video_state; |
| panelstruct->laneconfig = &adv7533_720p_video_lane_config; |
| panelstruct->paneltiminginfo |
| = &adv7533_720p_video_timing_info; |
| pinfo->adv7533.dsi_tg_i2c_cmd = &adv7533_720p_tg_i2c_command; |
| pinfo->adv7533.num_of_tg_i2c_cmds = ADV7533_720P_TG_COMMANDS; |
| pinfo->adv7533.dsi_setup_cfg_i2c_cmd = &adv7533_720p_common_cfg; |
| pinfo->adv7533.num_of_cfg_i2c_cmds = ADV7533_720P_CONFIG_COMMANDS; |
| memcpy(phy_db->timing, |
| adv7533_720p_video_timings, TIMING_SIZE); |
| break; |
| case UNKNOWN_PANEL: |
| default: |
| memset(panelstruct, 0, sizeof(struct panel_struct)); |
| memset(pinfo->mipi.panel_on_cmds, 0, |
| sizeof(struct mipi_dsi_cmd)); |
| pinfo->mipi.num_of_panel_on_cmds = 0; |
| memset(pinfo->mipi.panel_off_cmds, 0, |
| sizeof(struct mipi_dsi_cmd)); |
| pinfo->mipi.num_of_panel_off_cmds = 0; |
| memset(phy_db->timing, 0, TIMING_SIZE); |
| pan_type = PANEL_TYPE_UNKNOWN; |
| break; |
| } |
| return pan_type; |
| } |
| |
| uint32_t oem_panel_max_auto_detect_panels() |
| { |
| return target_panel_auto_detect_enabled() ? |
| DISPLAY_MAX_PANEL_DETECTION : 0; |
| } |
| |
| int oem_panel_select(const char *panel_name, struct panel_struct *panelstruct, |
| struct msm_panel_info *pinfo, |
| struct mdss_dsi_phy_ctrl *phy_db) |
| { |
| uint32_t hw_id = board_hardware_id(); |
| uint32_t hw_subtype = board_hardware_subtype(); |
| int32_t panel_override_id; |
| uint32_t target_id, plat_hw_ver_major; |
| uint8_t rev = 0; |
| |
| if (panel_name) { |
| panel_override_id = panel_name_to_id(supp_panels, |
| ARRAY_SIZE(supp_panels), panel_name); |
| |
| if (panel_override_id < 0) { |
| dprintf(CRITICAL, "Not able to search the panel:%s\n", |
| panel_name); |
| } else if (panel_override_id < UNKNOWN_PANEL) { |
| /* panel override using fastboot oem command */ |
| panel_id = panel_override_id; |
| |
| dprintf(INFO, "OEM panel override:%s\n", |
| panel_name); |
| goto panel_init; |
| } |
| } |
| |
| switch (hw_id) { |
| case HW_PLATFORM_MTP: |
| if (platform_is_msm8939() && |
| hw_subtype == HW_PLATFORM_SUBTYPE_MTP_3) { |
| panel_id = JDI_FHD_VIDEO_PANEL; |
| } else { |
| panel_id = JDI_1080P_VIDEO_PANEL; |
| switch (auto_pan_loop) { |
| case 0: |
| panel_id = JDI_1080P_VIDEO_PANEL; |
| break; |
| case 1: |
| panel_id = HX8394D_720P_VIDEO_PANEL; |
| break; |
| default: |
| panel_id = UNKNOWN_PANEL; |
| dprintf(CRITICAL, "Unknown panel\n"); |
| return PANEL_TYPE_UNKNOWN; |
| } |
| auto_pan_loop++; |
| } |
| break; |
| case HW_PLATFORM_SURF: |
| if (hw_subtype == HW_PLATFORM_SUBTYPE_CDP_1) { |
| panel_id = JDI_FHD_VIDEO_PANEL; |
| } else if (hw_subtype == HW_PLATFORM_SUBTYPE_CDP_2) { |
| panel_id = JDI_A216_FHD_VIDEO_PANEL; |
| } else { |
| panel_id = JDI_1080P_VIDEO_PANEL; |
| switch (auto_pan_loop) { |
| case 0: |
| panel_id = JDI_1080P_VIDEO_PANEL; |
| break; |
| case 1: |
| panel_id = HX8394D_720P_VIDEO_PANEL; |
| break; |
| case 2: |
| panel_id = NT35590_720P_VIDEO_PANEL; |
| break; |
| default: |
| panel_id = UNKNOWN_PANEL; |
| dprintf(CRITICAL, "Unknown panel\n"); |
| return PANEL_TYPE_UNKNOWN; |
| } |
| auto_pan_loop++; |
| } |
| break; |
| case HW_PLATFORM_QRD: |
| target_id = board_target_id(); |
| plat_hw_ver_major = ((target_id >> 16) & 0xFF); |
| |
| if (platform_is_msm8939() || platform_is_msm8929()) { |
| switch (hw_subtype) { |
| case HW_PLATFORM_SUBTYPE_SKUK: |
| if ((plat_hw_ver_major >> 4) == 0x1) |
| panel_id = R61318_HD_VIDEO_PANEL; |
| else if ((plat_hw_ver_major >> 4) == 0x2) |
| panel_id = R63417_1080P_VIDEO_PANEL; |
| else |
| panel_id = NT35596_1080P_VIDEO_PANEL; |
| break; |
| default: |
| dprintf(CRITICAL, "Invalid subtype id %d for QRD HW\n", |
| hw_subtype); |
| return PANEL_TYPE_UNKNOWN; |
| } |
| } else { |
| switch (hw_subtype) { |
| case HW_PLATFORM_SUBTYPE_SKUH: |
| /* qrd SKUIC */ |
| if ((plat_hw_ver_major >> 4) == 0x1) |
| panel_id = OTM1283A_720P_VIDEO_PANEL; |
| else |
| panel_id = INNOLUX_720P_VIDEO_PANEL; |
| break; |
| case HW_PLATFORM_SUBTYPE_SKUI: |
| /* qrd SKUIC */ |
| if ((plat_hw_ver_major >> 4) == 0) |
| panel_id = OTM8019A_FWVGA_VIDEO_PANEL; |
| else |
| panel_id = HX8379A_FWVGA_VIDEO_PANEL; |
| break; |
| case HW_PLATFORM_SUBTYPE_SKUT1: |
| if ((plat_hw_ver_major & 0x0F) == 0x1) |
| /* qrd SKUT1 */ |
| panel_id = NT35521_WXGA_VIDEO_PANEL; |
| else if ((plat_hw_ver_major & 0x0F) == 0x2) |
| /* qrd SKUT2 */ |
| panel_id = SAMSUNG_WXGA_VIDEO_PANEL; |
| else if ((plat_hw_ver_major & 0x0F) == 0x3) |
| /* qrd SKUT3 */ |
| panel_id = HX8279A_WSVGA_VIDEO_PANEL; |
| break; |
| default: |
| dprintf(CRITICAL, "Invalid subtype id %d for QRD HW\n", |
| hw_subtype); |
| return PANEL_TYPE_UNKNOWN; |
| } |
| } |
| break; |
| case HW_PLATFORM_SBC: |
| if (platform_is_apq8016()) |
| panel_id = ADV7533_1080P_VIDEO_PANEL; |
| break; |
| default: |
| dprintf(CRITICAL, "Display not enabled for %d HW type\n", |
| hw_id); |
| return PANEL_TYPE_UNKNOWN; |
| } |
| |
| panel_init: |
| if (platform_is_apq8016() && (hw_id == HW_PLATFORM_SBC)) { |
| /* Set Switch GPIO to DSI2HDMI mode */ |
| target_set_switch_gpio(1); |
| /* ADV7533 DSI to HDMI Bridge Chip Connected */ |
| mipi_dsi_i2c_device_init(BLSP_ID_1, QUP_ID_3); |
| /* Read ADV Chip ID */ |
| if (!mipi_dsi_i2c_read_byte(ADV7533_MAIN, 0x00, &rev)) { |
| dprintf(INFO, "ADV7533 Rev ID: 0x%x\n",rev); |
| } else { |
| dprintf(CRITICAL, "error reading Rev ID from bridge chip\n"); |
| return PANEL_TYPE_UNKNOWN; |
| } |
| } |
| |
| /* |
| * Update all data structures after 'panel_init' label. Only panel |
| * selection is supposed to happen before that. |
| */ |
| if ((platform_is_msm8939() && (board_soc_version() != |
| BOARD_SOC_VERSION3)) || platform_is_msm8929() || |
| (hw_id == HW_PLATFORM_QRD)) { |
| phy_db->regulator_mode = DSI_PHY_REGULATOR_LDO_MODE; |
| memcpy(panel_regulator_settings, |
| ldo_regulator_settings, REGULATOR_SIZE); |
| } else { |
| memcpy(panel_regulator_settings, |
| dcdc_regulator_settings, REGULATOR_SIZE); |
| } |
| |
| pinfo->pipe_type = MDSS_MDP_PIPE_TYPE_RGB; |
| return init_panel_data(panelstruct, pinfo, phy_db); |
| } |