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 0B584ECD98C for ; Fri, 6 Feb 2026 10:07:46 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 520D910E6B5; Fri, 6 Feb 2026 10:07:46 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="IuX9FuiN"; dkim-atps=neutral Received: from bali.collaboradmins.com (bali.collaboradmins.com [148.251.105.195]) by gabe.freedesktop.org (Postfix) with ESMTPS id 51E1410E6B5 for ; Fri, 6 Feb 2026 10:07:45 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1770372464; bh=wnZwLWaSvSPrx+R72etyzO7XJdu4H99M+0FmRwh+wW8=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=IuX9FuiNq99Dt0qBw0zTGFvee7x/zXNuWcDV08Q1a0MjcSafh7iQkVAJduflPynPW i8sG6FVR0VPKQYN5tFCQoXyCmO6pMY8ubemHk55ZML0I2E+v/VsXtfyuWOPC1zStQf QzP9G588LnKFk2spuNuRbSfyUBYl5MoMlKtEyHa5ErX5MqwBzaOIA9g5irtqFPZDPq 4OfrcAPkXe2lWiiG5dhphnEpOqckTLjnHAMyIPJPi9N+snBaiOuh5Q83sxU2MPtYSW SwOiL9aZCoL+u3Z76/hwoRu/eUZVVizVF/cm/r5+S95T9JiFoeBewfE6WLBldCKIug NwOgCTwZFC2Ow== Received: from [192.168.1.100] (2-237-20-237.ip236.fastwebnet.it [2.237.20.237]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: kholk11) by bali.collaboradmins.com (Postfix) with ESMTPSA id 5181017E14F1; Fri, 6 Feb 2026 11:07:43 +0100 (CET) Message-ID: <258ba2c2-a9fa-4190-8842-9e87f5e6b258@collabora.com> Date: Fri, 6 Feb 2026 11:07:43 +0100 MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH 02/11] drm/mediatek: Initialize colorops when creating plane To: =?UTF-8?B?TsOtY29sYXMgRi4gUi4gQS4gUHJhZG8=?= , Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Simona Vetter , Chun-Kuang Hu , Philipp Zabel , Matthias Brugger Cc: dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org, linux-mediatek@lists.infradead.org, linux-arm-kernel@lists.infradead.org, daniels@collabora.com, ariel.dalessandro@collabora.com, kernel@collabora.com References: <20251223-mtk-ovl-pre-blend-colorops-v1-0-0cb99bd0ab33@collabora.com> <20251223-mtk-ovl-pre-blend-colorops-v1-2-0cb99bd0ab33@collabora.com> From: AngeloGioacchino Del Regno Content-Language: en-US In-Reply-To: <20251223-mtk-ovl-pre-blend-colorops-v1-2-0cb99bd0ab33@collabora.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" Il 23/12/25 20:44, NĂ­colas F. R. A. Prado ha scritto: > During initialization of a plane, if the DDP component supplying it > defines a plane_colorops_init() hook, call it to initialize the color > pipeline on the plane. > > Signed-off-by: NĂ­colas F. R. A. Prado Reviewed-by: AngeloGioacchino Del Regno