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 bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (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 DCE8DC54EBE for ; Fri, 13 Jan 2023 11:47:46 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To: Date:Cc:To:From:Subject:Message-ID:Reply-To:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: List-Owner; bh=QWQ0C2BPRCSBrjRC7qTm2ZxSmuzEF3c8rUAwk6fg5MY=; b=wI7nSsh+X1AS7h DkJY5P/3MnisL3QdkHEczpZk/4RPhsaIr2ZviTU7E+CN+UbUEjp4L50ZroddBtqLDCR+Knti2sM62 nZ6qsN35vDCT8B8Ow3ynZtphoJF1V5vvNc+gnmsN5enl+4uyekOIUAnQsL9dkXRb3WEb8XxDSwGhB vcyt+TnpftcW3qHIiY8j1w57L23oKVGSMe5kiBDhwrU9g79kTWMb28GXdyh86O6ElskavWRNoHK8u 6v570gnQ9KgIagf7AQpq/wNt82MKPcYERlHwAgHbBPXPzjKDDRpDMm5SL6G9vHIe/wApQTYhqkF8R gfvqCbwS0fHRdNe/1iog==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1pGIWK-002JGX-6A; Fri, 13 Jan 2023 11:46:52 +0000 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1pGIVw-002J4q-Nq for linux-arm-kernel@lists.infradead.org; Fri, 13 Jan 2023 11:46:30 +0000 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pGIVo-0007qq-NL; Fri, 13 Jan 2023 12:46:20 +0100 Received: from [2a0a:edc0:0:900:1d::4e] (helo=lupine) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1pGIVo-005ks0-29; Fri, 13 Jan 2023 12:46:20 +0100 Received: from pza by lupine with local (Exim 4.94.2) (envelope-from ) id 1pGIVi-0005vE-1k; Fri, 13 Jan 2023 12:46:14 +0100 Message-ID: <72ac114b3bfa4742453fedce90828c31fbdff081.camel@pengutronix.de> Subject: Re: [PATCH v2 03/16] media: imx-pxp: extract helper function to setup data path From: Philipp Zabel To: Michael Tretter , linux-media@vger.kernel.org, devicetree@vger.kernel.org, Laurent Pinchart Cc: Mauro Carvalho Chehab , Rob Herring , Krzysztof Kozlowski , Fabio Estevam , Alexander Stein , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Date: Fri, 13 Jan 2023 12:46:13 +0100 In-Reply-To: <20230112-imx-pxp-v2-3-e2281da1db55@pengutronix.de> References: <20230112-imx-pxp-v2-0-e2281da1db55@pengutronix.de> <20230112-imx-pxp-v2-3-e2281da1db55@pengutronix.de> User-Agent: Evolution 3.38.3-1+deb11u1 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-arm-kernel@lists.infradead.org X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20230113_034628_844742_F706A726 X-CRM114-Status: GOOD ( 10.76 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On Fr, 2023-01-13 at 10:54 +0100, Michael Tretter wrote: > The driver must configure the data path through the Pixel Pipeline. > > Currently, the driver is using a fixed setup, but once there are > different pipeline configurations, it is helpful to have a dedicated > function for determining the register value for the data path. > > Reviewed-by: Laurent Pinchart > Signed-off-by: Michael Tretter Reviewed-by: Philipp Zabel regards Philipp _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel 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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 15110C54EBD for ; Fri, 13 Jan 2023 11:52:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241481AbjAMLwP convert rfc822-to-8bit (ORCPT ); Fri, 13 Jan 2023 06:52:15 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:36704 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241123AbjAMLvW (ORCPT ); Fri, 13 Jan 2023 06:51:22 -0500 Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6FF734BD43 for ; Fri, 13 Jan 2023 03:46:22 -0800 (PST) Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1pGIVo-0007qq-NL; Fri, 13 Jan 2023 12:46:20 +0100 Received: from [2a0a:edc0:0:900:1d::4e] (helo=lupine) by drehscheibe.grey.stw.pengutronix.de with esmtp (Exim 4.94.2) (envelope-from ) id 1pGIVo-005ks0-29; Fri, 13 Jan 2023 12:46:20 +0100 Received: from pza by lupine with local (Exim 4.94.2) (envelope-from ) id 1pGIVi-0005vE-1k; Fri, 13 Jan 2023 12:46:14 +0100 Message-ID: <72ac114b3bfa4742453fedce90828c31fbdff081.camel@pengutronix.de> Subject: Re: [PATCH v2 03/16] media: imx-pxp: extract helper function to setup data path From: Philipp Zabel To: Michael Tretter , linux-media@vger.kernel.org, devicetree@vger.kernel.org, Laurent Pinchart Cc: Mauro Carvalho Chehab , Rob Herring , Krzysztof Kozlowski , Fabio Estevam , Alexander Stein , kernel@pengutronix.de, linux-imx@nxp.com, linux-arm-kernel@lists.infradead.org Date: Fri, 13 Jan 2023 12:46:13 +0100 In-Reply-To: <20230112-imx-pxp-v2-3-e2281da1db55@pengutronix.de> References: <20230112-imx-pxp-v2-0-e2281da1db55@pengutronix.de> <20230112-imx-pxp-v2-3-e2281da1db55@pengutronix.de> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 8BIT User-Agent: Evolution 3.38.3-1+deb11u1 MIME-Version: 1.0 X-SA-Exim-Connect-IP: 2a0a:edc0:0:c01:1d::a2 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: devicetree@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Fr, 2023-01-13 at 10:54 +0100, Michael Tretter wrote: > The driver must configure the data path through the Pixel Pipeline. > > Currently, the driver is using a fixed setup, but once there are > different pipeline configurations, it is helpful to have a dedicated > function for determining the register value for the data path. > > Reviewed-by: Laurent Pinchart > Signed-off-by: Michael Tretter Reviewed-by: Philipp Zabel regards Philipp