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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 6D2FDC624DE for ; Fri, 4 Sep 2026 09:28:29 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id C48EB10F9C4; Fri, 4 Sep 2026 09:28:28 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="gGvtmonE"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.12]) by gabe.freedesktop.org (Postfix) with ESMTPS id 4016610F9C4 for ; Fri, 4 Sep 2026 09:28:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1788514107; x=1820050107; h=from:to:cc:subject:in-reply-to:references:date: message-id:mime-version; bh=ntiVxOLOr7AIxMpDgx+NOZVUpb8mIfroaaZgQ/Tw6KE=; b=gGvtmonEHGJVlTDd8J4OQdHis5ESZDXK27f9Y0tmHi7B15V1FfLNyCNw dI2D4KfoSS77bPxOnbh81LTHpiHnZoZBE9Bu0MmPK1PVV2t6yKU3DX3N0 z/7dXcC6ZB4oCMYFchD/OHBd2Aho6pxn8Ou4Ezs393zg6rmvzrtMLOPMj eOdNVsNCoaYs/GOM+3hZcHuSBvpd191eLpAgViWeJ3cxP/uKG6gpOYM8o XdjUGD7+CCJa3cVu6TM/t8r/+QCOUWvVthJF2hQ7J3phddVw76kRzAUVy Xy6vurIe5TuBWvja3MJJDqkW9tA/veZsMFDt9zrHSBndpTlNOsMKJnuZo w==; X-CSE-ConnectionGUID: 2w0CZ8WjRRibTHqBBfvXCg== X-CSE-MsgGUID: sQBDbesnR06XtFBTAJKOHw== X-IronPort-AV: E=McAfee;i="6800,10657,11895"; a="92833204" X-IronPort-AV: E=Sophos;i="6.25,260,1779174000"; d="scan'208";a="92833204" Received: from fmviesa002.fm.intel.com ([10.60.135.142]) by fmvoesa106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2026 02:28:26 -0700 X-CSE-ConnectionGUID: gNZwmO8aQzmUjLg5UUFUpQ== X-CSE-MsgGUID: RvhOfUz2TAKzjmhupCoXOA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.25,260,1779174000"; d="scan'208";a="293498852" Received: from abityuts-desk1.ger.corp.intel.com (HELO localhost) ([10.245.245.29]) by fmviesa002-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2026 02:28:24 -0700 From: Jani Nikula To: Thomas Zimmermann , javierm@redhat.com, ardb@kernel.org, ilias.apalodimas@linaro.org, maarten.lankhorst@linux.intel.com, mripard@kernel.org, simona@ffwll.ch, airlied@gmail.com Cc: dri-devel@lists.freedesktop.org, linux-efi@vger.kernel.org, sashiko-reviews@lists.linux.dev, Thomas Zimmermann Subject: Re: [PATCH v4 2/3] drm/edid: Add drm_edid_detect_panel_size() In-Reply-To: <20260904090850.43060-3-tzimmermann@suse.de> Organization: Intel Finland Oy - BIC 0357606-4 - c/o Alberga Business Park, 6 krs Bertel Jungin Aukio 5, 02600 Espoo, Finland References: <20260904090850.43060-1-tzimmermann@suse.de> <20260904090850.43060-3-tzimmermann@suse.de> Date: Fri, 04 Sep 2026 12:28:21 +0300 Message-ID: <78772b0911f1cab7d79b8fdcd41defd15deb9cac@intel.com> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On Fri, 04 Sep 2026, Thomas Zimmermann wrote: > Add drm_edid_detect_panel_size() to extract the panel's preferred > display resolution from a given EDID. Required for setting up DRM's > panel orientation quirks in sysfb drivers. > > v4: > - fix test for EDID PTD (Jani) > v3: > - mention use case in documentation (Jani) > - use is_detailed_timing_descriptor() (Jani) > - rename helper to drm_edid_detect_panel_size() > v2: > - handle EDID without pixel timing descriptor (Sashiko) > - fix checks for width and height pointers > > Signed-off-by: Thomas Zimmermann > Acked-by: Ard Biesheuvel Given my shoddy comments before, not sure what it's worth, but, Reviewed-by: Jani Nikula > --- > drivers/gpu/drm/drm_edid.c | 47 ++++++++++++++++++++++++++++++++++++++ > include/drm/drm_edid.h | 2 ++ > 2 files changed, 49 insertions(+) > > diff --git a/drivers/gpu/drm/drm_edid.c b/drivers/gpu/drm/drm_edid.c > index 9990a836d0b6..1331efb4876c 100644 > --- a/drivers/gpu/drm/drm_edid.c > +++ b/drivers/gpu/drm/drm_edid.c > @@ -7852,3 +7852,50 @@ bool drm_edid_is_digital(const struct drm_edid *drm_edid) > drm_edid->edid->input & DRM_EDID_INPUT_DIGITAL; > } > EXPORT_SYMBOL(drm_edid_is_digital); > + > +/** > + * drm_edid_detect_panel_size - Get a panel's size from EDID > + * @drm_edid: EDID of the panel. > + * @width: Returns the panel's width in pixels per scanline, if given > + * @height: Returns the panel's height in scanlines, if given > + * > + * This function detects the preferred size of a panel from the given > + * EDID. There is no such information stored in the EDID block directly, > + * but the preferred mode often corresponds to the panel's native geometry. > + * > + * This helper should only be used during initialization before the > + * connector is available. For regular use, retrieve the available display > + * modes with the connector functions. > + * > + * Return: Zero on success, or a negative errno code otherwise. > + */ > +int drm_edid_detect_panel_size(const struct drm_edid *drm_edid, > + unsigned int *width, unsigned int *height) > +{ > + const struct edid *edid = drm_edid->edid; > + const struct detailed_timing *dt; > + const struct detailed_pixel_timing *pt; > + > + /* > + * Use display mode from the Preferred Timing Descriptor. For old > + * and obscure displays, we might need better heuristics. > + */ > + > + if (edid->revision < 4 || !(edid->features & DRM_EDID_FEATURE_PREFERRED_TIMING)) > + return -EINVAL; /* no Preferred Timing Descriptor */ > + > + dt = &edid->detailed_timings[0]; > + > + if (!is_detailed_timing_descriptor(dt)) > + return -EINVAL; > + > + pt = &dt->data.pixel_data; > + > + if (width) > + *width = (pt->hactive_hblank_hi & 0xf0) << 4 | pt->hactive_lo; > + if (height) > + *height = (pt->vactive_vblank_hi & 0xf0) << 4 | pt->vactive_lo; > + > + return 0; > +} > +EXPORT_SYMBOL(drm_edid_detect_panel_size); > diff --git a/include/drm/drm_edid.h b/include/drm/drm_edid.h > index 04f7a7f1f108..a2617aa34edf 100644 > --- a/include/drm/drm_edid.h > +++ b/include/drm/drm_edid.h > @@ -490,5 +490,7 @@ u32 drm_edid_get_panel_id(const struct drm_edid *drm_edid); > bool drm_edid_match(const struct drm_edid *drm_edid, > const struct drm_edid_ident *ident); > bool drm_edid_has_quirk(struct drm_connector *connector, enum drm_edid_quirk quirk); > +int drm_edid_detect_panel_size(const struct drm_edid *drm_edid, > + unsigned int *width, unsigned int *height); > > #endif /* __DRM_EDID_H__ */ -- Jani Nikula, Intel