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 3EB60C47074 for ; Thu, 4 Jan 2024 10:49:45 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B551C10E426; Thu, 4 Jan 2024 10:49:44 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [192.55.52.115]) by gabe.freedesktop.org (Postfix) with ESMTPS id 1037510E426; Thu, 4 Jan 2024 10:49:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1704365384; x=1735901384; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=sM/jeeER5Y8XSMbjUkUtqckvhu8yb+qnh9hOVXBgTMY=; b=IxJY1TdsWVYZAp+Z1gRAelqDUHcVETrcI7BRoEZ7GNXUHwGTGofXbCfe rgTO3dY8/go1z4MI0+OGwNpS1Xk9HJNVVnVnWZqDb8zFdIyKRbZTQZy1j AYkGgKrE7lprjbPYI1QYdyuKeHAi67CpmTKr/S6cRQqfpujIaFs3pN9vl 8RB54RfYR9yDmXOuaPgGzE71uayqgf/YcYfJM/yTIyZcOBV8pbb+AOM4s 6EbXv9JBpgAf8hWmmqoj2Dz/hcsFFd3jsrXi2s11/q2MWA2ASJQ1ceZ1W TyhDemB/reUdk2dP4s8yoJ1sSPquDqhhs4WduowKgZ6FibZoYrEN7C7GA g==; X-IronPort-AV: E=McAfee;i="6600,9927,10942"; a="396928127" X-IronPort-AV: E=Sophos;i="6.04,330,1695711600"; d="scan'208";a="396928127" Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jan 2024 02:49:43 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10942"; a="923863648" X-IronPort-AV: E=Sophos;i="6.04,330,1695711600"; d="scan'208";a="923863648" Received: from jstopfor-mobl1.ger.corp.intel.com (HELO jhogande-mobl1.intel.com) ([10.252.51.226]) by fmsmga001-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Jan 2024 02:49:42 -0800 From: =?UTF-8?q?Jouni=20H=C3=B6gander?= To: intel-gfx@lists.freedesktop.org Subject: [PATCH 10/12] drm/panelreplay: dpcd register definition for panelreplay SU Date: Thu, 4 Jan 2024 12:48:19 +0200 Message-Id: <20240104104821.1822988-11-jouni.hogander@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20240104104821.1822988-1-jouni.hogander@intel.com> References: <20240104104821.1822988-1-jouni.hogander@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Organization: Intel Finland Oy - BIC 0357606-4 - Westendinkatu 7, 02160 Espoo Content-Transfer-Encoding: 8bit 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: dri-devel@lists.freedesktop.org Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Add definitions for panel replay selective update Cc: dri-devel@lists.freedesktop.org Signed-off-by: Jouni Högander --- include/drm/display/drm_dp.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h index 3731828825bd..6a59d30b7b25 100644 --- a/include/drm/display/drm_dp.h +++ b/include/drm/display/drm_dp.h @@ -548,6 +548,12 @@ # define DP_PANEL_REPLAY_SUPPORT (1 << 0) # define DP_PANEL_REPLAY_SU_SUPPORT (1 << 1) +#define DP_PANEL_PANEL_REPLAY_CAPABILITY 0xb1 +# define DP_PANEL_PANEL_REPLAY_SU_GRANULARITY_REQUIRED (1 << 5) + +#define DP_PANEL_PANEL_REPLAY_X_GRANULARITY 0xb2 +#define DP_PANEL_PANEL_REPLAY_Y_GRANULARITY 0xb4 + /* Link Configuration */ #define DP_LINK_BW_SET 0x100 # define DP_LINK_RATE_TABLE 0x00 /* eDP 1.4 */ -- 2.34.1