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 066D5C3814E for ; Fri, 5 Jul 2024 11:26:49 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id AB5F910EACE; Fri, 5 Jul 2024 11:26:48 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.b="rMY2NsS5"; dkim-atps=neutral Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id CEF6510E1DD; Fri, 5 Jul 2024 11:26:47 +0000 (UTC) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sin.source.kernel.org (Postfix) with ESMTP id A7D19CE3B6B; Fri, 5 Jul 2024 11:26:45 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 751FDC116B1; Fri, 5 Jul 2024 11:26:44 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1720178805; bh=yl5XDJkF2mnEPH4zD2PEULxDkOPHGf+X7s1caWCPjhY=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=rMY2NsS5nigIKmNbS4DxsqjjBdla8LJ6TDcCVhIhj3FbW61V/3gFaXUW3CjO9+8NF qYoUNNORvvvmpqXjv2SwZuHhHuldEX5zXPPDPiYt00CJ1BG4JG1CSwaGP023gsz1ml 3rGDA4H/Usn46787110+PzyvTfIO7pbnx89HJ3UBpomhLaxYD99t4qp0PcyKSFDPTy mZdufRCyvJm2cLGAVx4Xe1VkZnawX9TPEa2ktFTZ/SNufbS33iC0J1I3rT5miXDIBE CYKveKNVXD6QTjTWyHQQBZmXPf64kjEO1AW1EbysanTgEYubBfraXOX7VsMLNZQ8p7 I2/xV5PGlj1ww== Message-ID: Date: Fri, 05 Jul 2024 11:26:42 +0000 From: "Maxime Ripard" To: "Dmitry Baryshkov" Subject: Re: [PATCH v6] drm/display: split DSC helpers from DP helpers In-Reply-To: <20240704-panel-sw43408-fix-v6-1-3ea1c94bbb9b@linaro.org> References: <20240704-panel-sw43408-fix-v6-1-3ea1c94bbb9b@linaro.org> Cc: amd-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org, intel-gfx@lists.freedesktop.org, linux-arm-msm@vger.kernel.org, linux-kernel@vger.kernel.org, "Abhinav Kumar" , "Alex Deucher" , =?utf-8?b?Q2hyaXN0aWFuIEvDtm5pZw==?= , "Daniel Vetter" , "David Airlie" , "Jani Nikula" , "Jessica Zhang" , "Joonas Lahtinen" , "Maarten Lankhorst" , "Marijn Suijten" , "Maxime Ripard" , "Neil Armstrong" , "Rob Clark" , "Rodrigo Vivi" , "Sean Paul" , "Thomas Zimmermann" , "Tvrtko Ursulin" Content-Transfer-Encoding: 7bit X-BeenThere: amd-gfx@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Discussion list for AMD gfx List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: amd-gfx-bounces@lists.freedesktop.org Sender: "amd-gfx" On Thu, 4 Jul 2024 22:17:08 +0300, Dmitry Baryshkov wrote: > Currently the DRM DSC functions are selected by the > DRM_DISPLAY_DP_HELPER Kconfig symbol. This is not optimal, since the DSI > code (both panel and host drivers) end up selecting the seemingly > irrelevant DP helpers. Split the DSC code to be guarded by the separate > DRM_DISPLAY_DSC_HELPER Kconfig symbol. > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime