From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1B0F1C4338F for ; Fri, 23 Jul 2021 15:02:44 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id C10D160EB5 for ; Fri, 23 Jul 2021 15:02:43 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org C10D160EB5 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7CF806FB86; Fri, 23 Jul 2021 15:02:43 +0000 (UTC) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4E3BD6FB86 for ; Fri, 23 Jul 2021 15:02:42 +0000 (UTC) X-IronPort-AV: E=McAfee;i="6200,9189,10054"; a="191484230" X-IronPort-AV: E=Sophos;i="5.84,264,1620716400"; d="scan'208";a="191484230" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Jul 2021 08:02:41 -0700 X-IronPort-AV: E=Sophos;i="5.84,264,1620716400"; d="scan'208";a="660223712" Received: from hruo-mobl1.amr.corp.intel.com (HELO ldmartin-desk2) ([10.251.20.14]) by fmsmga006-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Jul 2021 08:02:41 -0700 Date: Fri, 23 Jul 2021 08:02:40 -0700 From: Lucas De Marchi To: Matt Roper Message-ID: <20210723150240.klvvokdy7xcslaec@ldmartin-desk2> References: <20210722232922.3796835-1-lucas.demarchi@intel.com> <20210723055709.GA1229765@mdroper-desk1.amr.corp.intel.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <20210723055709.GA1229765@mdroper-desk1.amr.corp.intel.com> Subject: Re: [Intel-gfx] [PATCH v2] drm/i915/display: split DISPLAY_VER 9 and 10 in intel_setup_outputs() X-BeenThere: intel-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Intel graphics driver community testing & development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Jani Nikula , Christoph Hellwig , intel-gfx@lists.freedesktop.org Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" On Thu, Jul 22, 2021 at 10:57:09PM -0700, Matt Roper wrote: >On Thu, Jul 22, 2021 at 04:29:22PM -0700, Lucas De Marchi wrote: >> Commit 5a9d38b20a5a ("drm/i915/display: hide workaround for broken vbt >> in intel_bios.c") moved the workaround for broken or missing VBT to >> intel_bios.c. However is_port_valid() only protects the handling of >> different skus of the same display version. Since in >> intel_setup_outputs() we share the code path with version 9, this would >> also create port F for SKL/KBL, which does not exist. >> >> Missing VBT can be reproduced when starting a headless QEMU with no >> opregion available. >> >> Avoid the issue by splitting versions 9 and 10 in intel_setup_outputs(), >> which also makes it more clear what code path it's taking for each >> version. > >Or we could just drop the PORT_F line. We've slowly been dropping bits >and pieces of CNL support from the driver for a while now since all the >hardware that came out had fused off graphics/display; that leaves GLK >as the only real platform with display version 10, and it's already >handled in its own condition branch above. no, that was my suggestion when I did this for the first time. Review from Ville last time was that we should either remove it completely or not at all, instead of dropping some pieces. At the time I started a series to remove it, but never completed. https://patchwork.freedesktop.org/patch/428168/?series=88988&rev=1#comment_768918 I will try to come back to that series again, but it's not something to go to -fixes, so I'd prefer to keep this patch. thanks Lucas De Marchi > > >Matt > >> >> v2: move generic display version after Geminilake since that one has >> a different set of outputs >> >> Fixes: 5a9d38b20a5a ("drm/i915/display: hide workaround for broken vbt in intel_bios.c") >> Cc: Jani Nikula >> Cc: Rodrigo Vivi >> Reported-by: Christoph Hellwig >> Signed-off-by: Lucas De Marchi >> Reviewed-by: Rodrigo Vivi >> --- >> drivers/gpu/drm/i915/display/intel_display.c | 8 +++++++- >> 1 file changed, 7 insertions(+), 1 deletion(-) >> >> diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c >> index c274bfb8e549..3f5383f3c744 100644 >> --- a/drivers/gpu/drm/i915/display/intel_display.c >> +++ b/drivers/gpu/drm/i915/display/intel_display.c >> @@ -11376,13 +11376,19 @@ static void intel_setup_outputs(struct drm_i915_private *dev_priv) >> intel_ddi_init(dev_priv, PORT_B); >> intel_ddi_init(dev_priv, PORT_C); >> vlv_dsi_init(dev_priv); >> - } else if (DISPLAY_VER(dev_priv) >= 9) { >> + } else if (DISPLAY_VER(dev_priv) == 10) { >> intel_ddi_init(dev_priv, PORT_A); >> intel_ddi_init(dev_priv, PORT_B); >> intel_ddi_init(dev_priv, PORT_C); >> intel_ddi_init(dev_priv, PORT_D); >> intel_ddi_init(dev_priv, PORT_E); >> intel_ddi_init(dev_priv, PORT_F); >> + } else if (DISPLAY_VER(dev_priv) >= 9) { >> + intel_ddi_init(dev_priv, PORT_A); >> + intel_ddi_init(dev_priv, PORT_B); >> + intel_ddi_init(dev_priv, PORT_C); >> + intel_ddi_init(dev_priv, PORT_D); >> + intel_ddi_init(dev_priv, PORT_E); >> } else if (HAS_DDI(dev_priv)) { >> u32 found; >> >> -- >> 2.31.1 >> >> _______________________________________________ >> Intel-gfx mailing list >> Intel-gfx@lists.freedesktop.org >> https://lists.freedesktop.org/mailman/listinfo/intel-gfx > >-- >Matt Roper >Graphics Software Engineer >VTT-OSGC Platform Enablement >Intel Corporation >(916) 356-2795 _______________________________________________ Intel-gfx mailing list Intel-gfx@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/intel-gfx