Received: by 2002:a05:6a10:17d3:0:0:0:0 with SMTP id hz19csp1629833pxb; Mon, 12 Apr 2021 02:53:21 -0700 (PDT) X-Google-Smtp-Source: ABdhPJz4fEMNdVEFELSCiAQqtXY9gxJBweQgzRgExKXCFEedq45gP+1Ri1LSon2fbkSXdxrfQ2TM X-Received: by 2002:aa7:9f0c:0:b029:241:d69c:6b6a with SMTP id g12-20020aa79f0c0000b0290241d69c6b6amr23729069pfr.37.1618221201389; Mon, 12 Apr 2021 02:53:21 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1618221201; cv=none; d=google.com; s=arc-20160816; b=CJUfClOFeB6tagzbzAM6Gn+FO3cxf9CdbbWvVs37OpVc/vEe4kX7Ep67HcTNpa2oVs pcBelZEFUFl4Ug3lj8yGGI/ynbfI7wZx27pXaAsgk/WG2e74QWseKwltQFuxKkb/jst8 o0PBIKK+aFFAxqmZ9/yKh67kvRcM7xL2AQf9nPO69/LMRsGXHH5dN5Zm2dlKGEGS6YTY 7AM56go8F6+I6jJAbck2AqwI0DbGXcrv/MCBg6J5SFfWPD/0O9B98XhLxnLeitRBH97B arP1sRSmPNEjKLXLf9X6reid2juVJFfDYYKmgFaTWQE8Io8LfEKR8Zd9AfZat0dQBSBa Caxw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :references:in-reply-to:message-id:date:subject:cc:to:from; bh=s9mr/UdMOC2q5/L/OMaKTcgRbZ+B9iRsqd11V4ovjOg=; b=xLTb8FqJb9piQR4xfWwEG83tNj/9XsHJYG9gvpE99sJs7PeuJbsIxiY/V5s1t+0ft4 7olRsFFYI+8ENt4oXELG4GT3EaP5sYhCinYjNFEIoVGeqg3jKupyGBava6Tb5g6qClSq 6o4TVh7l3k+NMk3j4FO7XUj0Y5+AlJshgR290QJRdTz1oeddl58iKXN+XrWsvG199RpW CqlB7yFbGCdv/g20xaXkT8QMtEzMeomd8TOS/lVUfyfJ+7AolnR+5aDVpiVSA+WcVXMo xRmqNKb/ZOikWUwOq0oSX3CMz+LjQl4MkNKiJROO4anAshdIaL8zanZUfXMXWGW4PAyP t/+Q== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id i15si13555610pgc.444.2021.04.12.02.53.08; Mon, 12 Apr 2021 02:53:21 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242317AbhDLJtp (ORCPT + 99 others); Mon, 12 Apr 2021 05:49:45 -0400 Received: from relay12.mail.gandi.net ([217.70.178.232]:45713 "EHLO relay12.mail.gandi.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S241068AbhDLJgs (ORCPT ); Mon, 12 Apr 2021 05:36:48 -0400 Received: from uno.lan (93-34-118-233.ip49.fastwebnet.it [93.34.118.233]) (Authenticated sender: jacopo@jmondi.org) by relay12.mail.gandi.net (Postfix) with ESMTPSA id 5796B200014; Mon, 12 Apr 2021 09:34:52 +0000 (UTC) From: Jacopo Mondi To: kieran.bingham+renesas@ideasonboard.com, laurent.pinchart+renesas@ideasonboard.com, niklas.soderlund+renesas@ragnatech.se, geert@linux-m68k.org Cc: Jacopo Mondi , Mauro Carvalho Chehab , linux-media@vger.kernel.org, linux-renesas-soc@vger.kernel.org, linux-kernel@vger.kernel.org, Sakari Ailus , Hans Verkuil Subject: [PATCH v4 16/17] media: v4l2-subdev: De-deprecate init() subdev op Date: Mon, 12 Apr 2021 11:34:50 +0200 Message-Id: <20210412093451.14198-17-jacopo+renesas@jmondi.org> X-Mailer: git-send-email 2.31.1 In-Reply-To: <20210412093451.14198-1-jacopo+renesas@jmondi.org> References: <20210412093451.14198-1-jacopo+renesas@jmondi.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The init() subdev core operation is deemed to be deprecated for new subdevice drivers. However it could prove useful for complex architectures to defer operation that require access to the communication bus if said bus is not available (or fully configured) at the time when the subdevice probe() function is run. As an example, the GMSL architecture requires the GMSL configuration link to be configured on the host side after the remote subdevice has completed its probe function. After the configuration on the host side has been performed, the subdevice registers can be accessed through the communication bus. In particular: HOST REMOTE probe() | ---------------------> | probe() { bus config() } |<--------------------| v4l2 async bound { bus config() call subdev init() |-------------------->| init() { access register on the bus() } |<------------------- } In the GMSL use case the bus configuration requires the enablement of the noise immunity threshold on the remote side which ensures reliability of communications in electrically noisy environments. After the subdevice has enabled the threshold at the end of its probe() sequence the host side shall compensate it with an higher signal amplitude. Once this sequence has completed the bus can be accessed with noise protection enabled and all the operations that require a considerable number of transactions on the bus (such as the image sensor configuration sequence) are run in the subdevice init() operation implementation. Signed-off-by: Jacopo Mondi --- include/media/v4l2-subdev.h | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/include/media/v4l2-subdev.h b/include/media/v4l2-subdev.h index d0e9a5bdb08b..3068d9940669 100644 --- a/include/media/v4l2-subdev.h +++ b/include/media/v4l2-subdev.h @@ -148,9 +148,18 @@ struct v4l2_subdev_io_pin_config { * each pin being configured. This function could be called at times * other than just subdevice initialization. * - * @init: initialize the sensor registers to some sort of reasonable default - * values. Do not use for new drivers and should be removed in existing - * drivers. + * @init: initialize the subdevice registers to some sort of reasonable default + * values. Do not use for new drivers (and should be removed in existing + * ones) for regular architectures where the image sensor is connected to + * the host receiver. For more complex architectures where the subdevice + * initialization should be deferred to the completion of the probe + * sequence of some intermediate component, or the communication bus + * requires configurations on the host side that depend on the completion + * of the probe sequence of the remote subdevices, the usage of this + * operation could be considered to allow the devices along the pipeline to + * probe and register in the media graph and to defer any operation that + * require actual access to the communication bus to their init() function + * implementation. * * @load_fw: load firmware. * -- 2.31.1