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 41398C6FA8E for ; Thu, 2 Mar 2023 08:21:04 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id B973B10E3C5; Thu, 2 Mar 2023 08:20:58 +0000 (UTC) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by gabe.freedesktop.org (Postfix) with ESMTPS id 08C2E10E3C5; Thu, 2 Mar 2023 08:20:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1677745256; x=1709281256; h=from:to:cc:subject:date:message-id:in-reply-to: references:mime-version:content-transfer-encoding; bh=AASS0FwnVNe/OPJgQFOtVGbVsH7cgW31yZ998Bbq/EI=; b=mXvOFoCYzBsfi2b97gWhkdnUTgfhV1QF+EL+AvyXgIQcN5EEBpyFQLx2 QydxdCKzWaSFjTSgTd1H3vzwPDV+BteeRj/gAGnx0Ol6ldkPqzQcV2+df zPZKsjwCWf1oc5+PWiTDuFvx2ZWOfQwU7u5dtNnqBri7h2/vJJO4xLfXl EC+cZfLPxK3YgwKStKaqQdKewBYUC1DlMabfyhdBORo4wrTsBmoFC3+rg uct1DVp8DrQT1nl+LGP15AdYaHMxav7TPEJ5vyb0ZLKk+PrXDC/VXFZY4 0IJec+3Bwc4wOYdoCwxmP947Oz6TqT+8tFOmtgZdOpz8BSr0hY550niCu Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10636"; a="318454995" X-IronPort-AV: E=Sophos;i="5.98,227,1673942400"; d="scan'208";a="318454995" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Mar 2023 00:20:55 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10636"; a="743757565" X-IronPort-AV: E=Sophos;i="5.98,227,1673942400"; d="scan'208";a="743757565" Received: from srr4-3-linux-106-armuthy.iind.intel.com ([10.190.238.56]) by fmsmga004.fm.intel.com with ESMTP; 02 Mar 2023 00:20:54 -0800 From: Arun R Murthy To: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, jani.nikula@intel.com Date: Thu, 2 Mar 2023 13:45:31 +0530 Message-Id: <20230302081532.765821-2-arun.r.murthy@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20230302081532.765821-1-arun.r.murthy@intel.com> References: <20230302081532.765821-1-arun.r.murthy@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [Intel-gfx] [RESEND PATCHv2 1/2] drm: Add SDP Error Detection Configuration Register 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: Harry Wentland Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" DP2.0 E11 defines a new register to facilitate SDP error detection by a 128B/132B capable DPRX device. v2: Update the macro name to reflect the DP spec(Harry) Signed-off-by: Arun R Murthy Reviewed-by: Harry Wentland --- include/drm/display/drm_dp.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/drm/display/drm_dp.h b/include/drm/display/drm_dp.h index 632376c291db..358db4a9f167 100644 --- a/include/drm/display/drm_dp.h +++ b/include/drm/display/drm_dp.h @@ -692,6 +692,9 @@ # define DP_FEC_LANE_2_SELECT (2 << 4) # define DP_FEC_LANE_3_SELECT (3 << 4) +#define DP_SDP_ERROR_DETECTION_CONFIGURATION 0x121 /* DP 2.0 E11 */ +#define DP_SDP_CRC16_128B132B_EN BIT(0) + #define DP_AUX_FRAME_SYNC_VALUE 0x15c /* eDP 1.4 */ # define DP_AUX_FRAME_SYNC_VALID (1 << 0) -- 2.25.1