From patchwork Fri Jan 24 05:46:25 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kandpal, Suraj" X-Patchwork-Id: 13948944 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 47D67C02181 for ; Fri, 24 Jan 2025 05:47:21 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 7B5D610E8D8; Fri, 24 Jan 2025 05:47:20 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="SUDxWrmQ"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.19]) by gabe.freedesktop.org (Postfix) with ESMTPS id CFD9710E8D6; Fri, 24 Jan 2025 05:47:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1737697638; x=1769233638; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=vl/hnVWQjDgFXUo8nE4ttYtn4rQ9XNlmI5tvSG2DIy4=; b=SUDxWrmQW7Q39QgKjCQmVT8gkreManFr+2eNATgvw72mkMUjBg60hX4W 8HZXluDjTmm5jBTaAS1plUVfqeEEO7/MCEQX1YGMkOJlgxtKUW3+IZuOo EgZ3IjgGm0xHhx6Knr75wfyLyhRrX9FHXqkrTxHUCL3CW5nCcYDGMENZy nxw8TR3KOMJRrHAh3YAnaPgJ+mDlGAZGMoEXzcisWEBI1otY+fCddGRqZ XBGVP7H63Av4sY4A0O8Q4gbVmEw5YRZWxxINPVwTCt12URr+wnNZKeJhV dOxyM8xvQZ0vCDWxbLH/yLqmOv3fDwm8Tzdh68LdvdOl+7HHlNcxN3u9W Q==; X-CSE-ConnectionGUID: lNjlG+ejQpGodkYith33dg== X-CSE-MsgGUID: 5aiDd182R3ikjxW52OoMqQ== X-IronPort-AV: E=McAfee;i="6700,10204,11324"; a="37429297" X-IronPort-AV: E=Sophos;i="6.13,230,1732608000"; d="scan'208";a="37429297" Received: from orviesa010.jf.intel.com ([10.64.159.150]) by fmvoesa113.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Jan 2025 21:47:17 -0800 X-CSE-ConnectionGUID: gFUjV9UtQiSJlARoUNGg0A== X-CSE-MsgGUID: mhB7mg7jSy6DVa8eELT67Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.12,224,1728975600"; d="scan'208";a="107525974" Received: from kandpal-x299-ud4-pro.iind.intel.com ([10.190.239.10]) by orviesa010.jf.intel.com with ESMTP; 23 Jan 2025 21:47:16 -0800 From: Suraj Kandpal To: intel-xe@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org Cc: uma.shankar@intel.com, arun.r.murthy@intel.com, ben.kao@intel.com, Suraj Kandpal Subject: [PATCH 1/7] drm/dp: Add eDP 1.5 bit definition Date: Fri, 24 Jan 2025 11:16:25 +0530 Message-Id: <20250124054631.1796456-2-suraj.kandpal@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250124054631.1796456-1-suraj.kandpal@intel.com> References: <20250124054631.1796456-1-suraj.kandpal@intel.com> MIME-Version: 1.0 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: , Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Add the eDP revision bit value for 1.5. Spec: eDPv1.5 Table 16-5 Signed-off-by: Suraj Kandpal Tested-by: Ben Kao Reviewed-by: Arun R Murthy --- include/drm/display/drm_dp.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h index a6f8b098c56f..76162ad3b152 100644 --- a/include/drm/display/drm_dp.h +++ b/include/drm/display/drm_dp.h @@ -996,6 +996,7 @@ # define DP_EDP_14 0x03 # define DP_EDP_14a 0x04 /* eDP 1.4a */ # define DP_EDP_14b 0x05 /* eDP 1.4b */ +# define DP_EDP_15 0x06 /* eDP 1.5 */ #define DP_EDP_GENERAL_CAP_1 0x701 # define DP_EDP_TCON_BACKLIGHT_ADJUSTMENT_CAP (1 << 0)