Message ID | cover.1704276309.git.jani.nikula@intel.com (mailing list archive) |
---|---|
Headers | show
Return-Path: <dri-devel-bounces@lists.freedesktop.org> 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 D7DA2C3DA6E for <dri-devel@archiver.kernel.org>; Wed, 3 Jan 2024 10:09:16 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 2917410E268; Wed, 3 Jan 2024 10:09:16 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [198.175.65.11]) by gabe.freedesktop.org (Postfix) with ESMTPS id 6DB5A10E268 for <dri-devel@lists.freedesktop.org>; Wed, 3 Jan 2024 10:09:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1704276555; x=1735812555; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=cIxaJJI4MDeQbz7nPGeZtfqMamaaHYTNZwnDjOrv9bk=; b=Y8YIN8DBnwnFAzTeaLsI5c13TZHp0BX+a1qXec3m1vnkiAsxg6PEIgA1 u5tTE6E8iaSk1cAppsBz/qIyAPeb0sc0nClA+xU4G2U2oCTCL3SRejMS3 PP8efy2umsa2DvUfhlc4AJWyWmMkGI9+HgjjrYIdFNMfk8q8U7Nx14OKL xQsk4Nf+ITEgf0S1ZnI36aw3YblxUst/VA6Y3h+3boGfgNbUzg55ah01c vEzz/6dlvIDfeziG7LgPRzAvf4+AcBq7d3jO5YPMAaLYK9rofroFxMhEY y64LAR6WNDu9SzOCJdGMyRqpEDM+6ZqUrlhwz5ZaFmhwBCdlbSQ/2vgyA A==; X-IronPort-AV: E=McAfee;i="6600,9927,10941"; a="3759799" X-IronPort-AV: E=Sophos;i="6.04,327,1695711600"; d="scan'208";a="3759799" Received: from fmviesa001.fm.intel.com ([10.60.135.141]) by orvoesa103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Jan 2024 02:09:14 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.04,327,1695711600"; d="scan'208";a="22052938" Received: from lwenners-mobl1.ger.corp.intel.com (HELO localhost) ([10.252.35.39]) by smtpauth.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Jan 2024 02:09:10 -0800 From: Jani Nikula <jani.nikula@intel.com> To: dri-devel@lists.freedesktop.org, Andrzej Hajda <andrzej.hajda@intel.com>, Neil Armstrong <neil.armstrong@linaro.org>, Robert Foss <rfoss@kernel.org>, Laurent Pinchart <Laurent.pinchart@ideasonboard.com>, Jonas Karlman <jonas@kwiboo.se>, Jernej Skrabec <jernej.skrabec@gmail.com> Subject: [PATCH v2 00/39] drm/bridge: switch to struct drm_edid Date: Wed, 3 Jan 2024 12:08:14 +0200 Message-Id: <cover.1704276309.git.jani.nikula@intel.com> X-Mailer: git-send-email 2.39.2 MIME-Version: 1.0 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Content-Transfer-Encoding: 8bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development <dri-devel.lists.freedesktop.org> List-Unsubscribe: <https://lists.freedesktop.org/mailman/options/dri-devel>, <mailto:dri-devel-request@lists.freedesktop.org?subject=unsubscribe> List-Archive: <https://lists.freedesktop.org/archives/dri-devel> List-Post: <mailto:dri-devel@lists.freedesktop.org> List-Help: <mailto:dri-devel-request@lists.freedesktop.org?subject=help> List-Subscribe: <https://lists.freedesktop.org/mailman/listinfo/dri-devel>, <mailto:dri-devel-request@lists.freedesktop.org?subject=subscribe> Cc: Jani Nikula <jani.nikula@intel.com> Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" <dri-devel-bounces@lists.freedesktop.org> |
Series |
drm/bridge: switch to struct drm_edid
|
expand
|
On Wed, 03 Jan 2024, Jani Nikula <jani.nikula@intel.com> wrote: > Convert all of drm/bridge to the new struct drm_edid > infrastructure. It's safer than struct edid, because it contains meta > information about the allocated size of the EDID, instead of relying on > the size (number of extensions) originating from outside of the kernel. > > Among all of drm, I think bridge has the most uses of struct edid that > do not originate from the drm_get_edid() family of functions, which > means the validity checks are somewhat inconsistent, and having the meta > information is more crucial. > > Only build tested. I'm sure there should be more Cc's especially in the > patches towards the end of the series, but I just wanted to get the > series out the door now. PS. It's also available at https://gitlab.freedesktop.org/jani/linux/-/commits/drm-edid-bridge