From patchwork Thu Feb 6 06:32:46 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kandpal, Suraj" X-Patchwork-Id: 13962290 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 B507AC02198 for ; Thu, 6 Feb 2025 06:33:11 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 55EE410E222; Thu, 6 Feb 2025 06:33:11 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=intel.com header.i=@intel.com header.b="S3RwuT78"; dkim-atps=neutral Received: from mgamail.intel.com (mgamail.intel.com [192.198.163.16]) by gabe.freedesktop.org (Postfix) with ESMTPS id 719B610E136; Thu, 6 Feb 2025 06:33:09 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1738823589; x=1770359589; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=xQilvHnCC8t8i5eZB4xXkLUctiqnZjWDPRwoYBdoJZs=; b=S3RwuT78vb916+oCdvOBZZSHNY+Jny3dHn7i+xfU1YYDvGuMSgcjA3Q8 qTv1NRQTPKGT205z4r9fajYl7UdTjr+lbEzFOEFsROilBdEe5Zn+svJxD Y+3puDTVut0wXZm6R/p+NFP+voOnQda+yT6gBkHQp1FLGz0w3Wxb9mg6b Z9i1f/TOKhKSQcXNV2uEzjZLLaGXcR6rksUv6APcDr3AltZWW1R9O3Z0K OiJkSL3i2/YfUcBuUZEAe0jHlhH6XkbXyaDjnKFO5fiiJeTlSPzg2La18 g2CEHirIAmv5ekRicnwH3WGtZOTX5dprNYSLrkCXAhmQYDFXpoJhfyfbN A==; X-CSE-ConnectionGUID: xq9NaTIDRoixoiHvIx6caQ== X-CSE-MsgGUID: OZqxnN2eSImTMs3uH5Ka1Q== X-IronPort-AV: E=McAfee;i="6700,10204,11336"; a="27014212" X-IronPort-AV: E=Sophos;i="6.13,263,1732608000"; d="scan'208";a="27014212" Received: from orviesa008.jf.intel.com ([10.64.159.148]) by fmvoesa110.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 05 Feb 2025 22:33:09 -0800 X-CSE-ConnectionGUID: Z154DoZCRvywCfhUJ0EATQ== X-CSE-MsgGUID: 1K2WnuD+Ttqi29XLm5prQQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="6.12,224,1728975600"; d="scan'208";a="112013668" Received: from kandpal-x299-ud4-pro.iind.intel.com ([10.190.239.10]) by orviesa008.jf.intel.com with ESMTP; 05 Feb 2025 22:33:07 -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/8] drm/dp: Add eDP 1.5 bit definition Date: Thu, 6 Feb 2025 12:02:46 +0530 Message-Id: <20250206063253.2827017-2-suraj.kandpal@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20250206063253.2827017-1-suraj.kandpal@intel.com> References: <20250206063253.2827017-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 Reviewed-by: Arun R Murthy Tested-by: Ben Kao --- 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 480370bba1de..05e16f0144ff 100644 --- a/include/drm/display/drm_dp.h +++ b/include/drm/display/drm_dp.h @@ -999,6 +999,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)