From patchwork Thu Oct 13 06:12:24 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Suraj Kandpal X-Patchwork-Id: 13005623 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 8ED3FC4332F for ; Thu, 13 Oct 2022 06:13:37 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id A480910E192; Thu, 13 Oct 2022 06:13:36 +0000 (UTC) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by gabe.freedesktop.org (Postfix) with ESMTPS id BBFC710E192 for ; Thu, 13 Oct 2022 06:13:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1665641612; x=1697177612; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=4eWuGT1iP24lykt0nTbViJpj23+QlViwlqK1IqxXHko=; b=az8qQyI8ITiin191TKWZqBdTeJRYdl3LEQzwj2tfUJv80NfRxHEmm4Qv paE7shRh8XKHZnqn0yG2NOkn1P90kKmIXc8TN2WHis4K+IV0WPf4yFMNE sl9BEi398vxcG3gIU+ckyazZMbjOSGCZ296Wk4Fghottvt2l6nHTS8/fn lT4iqouxyQP67EhyNl2cjnFmRcTAe3xBbPvVE/gH5zGDiAUVOb8wZNeP2 iPpt1SESzPooKDQLWFolLffTd7YaH8BWD7wSNJKpyNGsHPYqTDzBSzUKt szBHbdz+o+vx5kZe8vPp2CcfLEmbSFV93+JZrjZwoL6Uv/9y5/mgqNjxk Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10498"; a="369155021" X-IronPort-AV: E=Sophos;i="5.95,180,1661842800"; d="scan'208";a="369155021" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2022 23:13:32 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6500,9779,10498"; a="627042312" X-IronPort-AV: E=Sophos;i="5.95,180,1661842800"; d="scan'208";a="627042312" Received: from kandpal-x299-ud4-pro.iind.intel.com ([10.190.239.32]) by orsmga002.jf.intel.com with ESMTP; 12 Oct 2022 23:13:30 -0700 From: Suraj Kandpal To: intel-gfx@lists.freedesktop.org Date: Thu, 13 Oct 2022 11:42:24 +0530 Message-Id: <20221013061228.162613-1-suraj.kandpal@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [Intel-gfx] [PATCH v2 0/4] Enable YCbCr420 for VDSC 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" From: "Kandpal, Suraj" This patch series aims to enable the YCbCr420 format for DSC. Changes are mostly compute params related for hdmi,dp and dsi along with the addition of new rc_tables for native_420 and corresponding changes to macros used to fetch them. ---v2 -adding fields missed for vdsc_cfg [Vandita] -adding corresponding registers and writing to the [Vandita] Ankit Nautiyal (1): drm/i915/dp: Check if DSC supports the given output_format Kandpal, Suraj (2): drm/i915: Adding the new registers for DSC drm/i915: Fill in native_420 field Suraj Kandpal (1): drm/i915: Enable YCbCr420 for VDSC drivers/gpu/drm/i915/display/icl_dsi.c | 2 - drivers/gpu/drm/i915/display/intel_dp.c | 32 ++- .../gpu/drm/i915/display/intel_qp_tables.c | 187 ++++++++++++++++-- .../gpu/drm/i915/display/intel_qp_tables.h | 4 +- drivers/gpu/drm/i915/display/intel_vdsc.c | 76 ++++++- drivers/gpu/drm/i915/i915_reg.h | 28 +++ 6 files changed, 306 insertions(+), 23 deletions(-)