From patchwork Fri Jun 24 17:15:09 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kuogee Hsieh X-Patchwork-Id: 584714 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id B7A72C433EF for ; Fri, 24 Jun 2022 17:15:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230078AbiFXRPY (ORCPT ); Fri, 24 Jun 2022 13:15:24 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36680 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229522AbiFXRPX (ORCPT ); Fri, 24 Jun 2022 13:15:23 -0400 Received: from alexa-out-sd-02.qualcomm.com (alexa-out-sd-02.qualcomm.com [199.106.114.39]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6BC6A63631; Fri, 24 Jun 2022 10:15:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=quicinc.com; i=@quicinc.com; q=dns/txt; s=qcdkim; t=1656090922; x=1687626922; h=from:to:cc:subject:date:message-id:mime-version; bh=YFyE9v9DgjKjrPKvOoPb8aTO5Jj84oJ4uXSwYDcL05c=; b=WcH91+CmiFyQNCpjTFidDWFy18HAmv67F1alvJkgH1f4DyofjfZ31V+M h3HvFx4CNsjo2kK3U1v35mLjw9Ylte1pdBu7sT9g1E8LRcvyNcmR9/Vm6 8xEUrMZgl38hKDftlZZsT9UQKdBOa9NP0mfapNl16e7Wnt70SCkRrJ3U9 Q=; Received: from unknown (HELO ironmsg04-sd.qualcomm.com) ([10.53.140.144]) by alexa-out-sd-02.qualcomm.com with ESMTP; 24 Jun 2022 10:15:22 -0700 X-QCInternal: smtphost Received: from nasanex01c.na.qualcomm.com ([10.47.97.222]) by ironmsg04-sd.qualcomm.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 24 Jun 2022 10:15:21 -0700 Received: from nalasex01a.na.qualcomm.com (10.47.209.196) by nasanex01c.na.qualcomm.com (10.47.97.222) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.22; Fri, 24 Jun 2022 10:15:21 -0700 Received: from khsieh-linux1.qualcomm.com (10.80.80.8) by nalasex01a.na.qualcomm.com (10.47.209.196) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.986.22; Fri, 24 Jun 2022 10:15:20 -0700 From: Kuogee Hsieh To: , , , , , , , , , , CC: Kuogee Hsieh , , , , , , Subject: [PATCH v1 0/3] fix primary corruption issue Date: Fri, 24 Jun 2022 10:15:09 -0700 Message-ID: <1656090912-18074-1-git-send-email-quic_khsieh@quicinc.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.80.80.8] X-ClientProxiedBy: nasanex01b.na.qualcomm.com (10.46.141.250) To nalasex01a.na.qualcomm.com (10.47.209.196) Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org fix primary corruption : 1) move struc of msm_display_info to msm_drv.h 2) decoupling dp->id out of dp controller_id at scxxxx_dp_cfg table 3) place edp at head of drm bridge chain to fix screen corruption Kuogee Hsieh (3): drm/msm/dp: move struc of msm_display_info to msm_drv.h drm/msm/dp: decoupling dp->id out of dp controller_id at scxxxx_dp_cfg table drm/msm/dp: place edp at head of drm bridge chain to fix screen corruption drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.h | 20 ------------------- drivers/gpu/drm/msm/disp/dpu1/dpu_kms.c | 16 +++++++++------ drivers/gpu/drm/msm/dp/dp_display.c | 30 ++++++++++++++++++++++------- drivers/gpu/drm/msm/msm_drv.h | 21 ++++++++++++++++++++ 4 files changed, 54 insertions(+), 33 deletions(-)