From patchwork Thu Aug 17 08:35:16 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Kandpal, Suraj" X-Patchwork-Id: 13356121 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 C7A8AC27C7A for ; Thu, 17 Aug 2023 08:37:15 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 5027310E1C6; Thu, 17 Aug 2023 08:37:15 +0000 (UTC) Received: from mgamail.intel.com (mgamail.intel.com [134.134.136.126]) by gabe.freedesktop.org (Postfix) with ESMTPS id 7A00910E1C5 for ; Thu, 17 Aug 2023 08:37:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1692261432; x=1723797432; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=O0U9gZ03wa/yRmSxMvblqTcHwwGNIoeMOWo3mR75VMQ=; b=acStz9slNimE+3jv7wa7vsCM0I5HMoPVDSz/zsUYzAlzzVoTtdqpM5WQ 9PbGg06dI6fD+kNuNhjcGaBc7KfIEWweR9QsQeloCyh41qsJQei1Zcf1T 9AAVziKOfoE5kE38Frk+prd/D8jKmRVd6S1fHNd8qcbc16Q9JytRoCOPd 8vj6V99WEAfx/yR9glJpopt3yhhfOIvpUP3cNFzxqc32COW6o3g+RhcU0 e7xRcHDesyM5JYve9iZmoNpZNTXe5BYsoKpvDETP3yo/cHbd3d+OaexU0 0l+OxKX3WvCTECiSeJziWy6HRtgBh7T9D3sAtjAIgAjn80o4qxKIK68Gg Q==; X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="357715591" X-IronPort-AV: E=Sophos;i="6.01,179,1684825200"; d="scan'208";a="357715591" Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Aug 2023 01:37:11 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10803"; a="804549381" X-IronPort-AV: E=Sophos;i="6.01,179,1684825200"; d="scan'208";a="804549381" Received: from kandpal-x299-ud4-pro.iind.intel.com ([10.190.239.32]) by fmsmga004.fm.intel.com with ESMTP; 17 Aug 2023 01:37:09 -0700 From: Suraj Kandpal To: intel-gfx@lists.freedesktop.org Date: Thu, 17 Aug 2023 14:05:16 +0530 Message-Id: <20230817083524.296571-1-suraj.kandpal@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH v8 0/8] Add DSC PPS readout 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: Jani Nikula Errors-To: intel-gfx-bounces@lists.freedesktop.org Sender: "Intel-gfx" Up until now we only verified one or two of the dsc pps params like bits_per_component and bits_per_pixel this patch series aim to readout almost all PPS param and get them compared. Along with that some work on making a common function to read and write PPS param regiters is also done. --v2 -Remove duplicated code and create function that fetches register and reuse that. [Jani] -move WARN_ON one abstraction layer up. [Jani] -Split patch so that refactor and a new functionality is not added in the same patch. [Jani] -Add a new refactor patch so that bit shifting can be done in a clean way. [Jani] --v3 -Fix the typo in patch 2 [Jani] -Get both dsc_reg regardless of dsc_eng_no. [Jani] -Remove usage of num_vdsc_instances. [Ankit] -Add macro to further optimize intel_dsc_get_pps_reg --v4 -Manipulate register addresses rather than creating a macro to manipulate variable name based on pps [Ankit] --v5 -Use an array to fill the dsc registers instead of individual register [Ankit] -Get only dsc register that are required. --v6 -make intel_get_no_vdsc_inst_per_pipe func static --v7 -shorten func name for getting vdsc instances per pipe [Ankit] -send no vdsc instances to dsc read and write reg funcs [Ankit] --v8 -remove array dynamic allocation for dsc_reg [Jani] -no need for an array to just verify dsc engine values [Jani] -remove no_ from no_vdsc_per_pipe and wherever else it is applicable [Ankit] Signed-off-by: Suraj Kandpal Acked-by: Jani Nikula Suraj Kandpal (8): drm/i915/vdsc: Refactor dsc register field macro drm/i915/vdsc: Add a check for dsc split cases drm/i915/vdsc: Add func to get no. of vdsc instances per pipe drm/i915/vdsc: Add function to read any PPS register drm/i915/vdsc: Add function to write in PPS register drm/i915/vdsc: Remove unused dsc registers drm/i915/vdsc: Fill the intel_dsc_get_pps_config function drm/i915/display: Compare the readout dsc pps params drivers/gpu/drm/i915/display/intel_display.c | 31 ++ drivers/gpu/drm/i915/display/intel_vdsc.c | 479 ++++++++---------- .../gpu/drm/i915/display/intel_vdsc_regs.h | 366 ++++--------- 3 files changed, 347 insertions(+), 529 deletions(-)