From patchwork Fri Jan 12 16:40:15 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Nuno Sa via B4 Relay X-Patchwork-Id: 762258 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 7534E76917; Fri, 12 Jan 2024 16:40:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="sidvQdmx" Received: by smtp.kernel.org (Postfix) with ESMTPS id EDD69C433F1; Fri, 12 Jan 2024 16:40:26 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1705077627; bh=cRBsVA/gjcOt9pjoEuJIhQ39NaZaSPebkpAvtLwDKu0=; h=From:Date:Subject:References:In-Reply-To:To:Cc:Reply-To:From; b=sidvQdmxQCI6reQTQ3LZd/V9c6xn5xjq1z/QYANcQ7nXPqIygpHnDwz7g4mCqACOm kGhKqMonMje+97GS9uX2kRTkiqesRXfJOw09hLgQqRXKM35s80e40sDJRjVCJIY089 x1/Kbn0yEud96N6zUwHe0aeVBxTeqsW8VQFptyP9b1na2M3eTGaazNSkeInQY+ryoM kIXb5UyN2gOCnLIyyV7X4v1WIl+pgnKRn00k313YqFLrK+7CJLWfjvEfIytwPvMzlb bpDRRJjPFiRFS151h8kXHjMyYU4WwLmxhMG4EOYH0cZqGu2HFkW2utr7kvPp8AB2Qc qMVPYdDH8ClGg== Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id CD895C4725D; Fri, 12 Jan 2024 16:40:26 +0000 (UTC) From: Nuno Sa via B4 Relay Date: Fri, 12 Jan 2024 17:40:15 +0100 Subject: [PATCH v5 1/8] dt-bindings: adc: ad9467: add new io-backend property Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20240112-iio-backend-v5-1-bdecad041ab4@analog.com> References: <20240112-iio-backend-v5-0-bdecad041ab4@analog.com> In-Reply-To: <20240112-iio-backend-v5-0-bdecad041ab4@analog.com> To: linux-iio@vger.kernel.org, devicetree@vger.kernel.org Cc: Lars-Peter Clausen , Michael Hennerich , Jonathan Cameron , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Greg Kroah-Hartman , "Rafael J. Wysocki" , Frank Rowand , Olivier Moysan , Rob Herring X-Mailer: b4 0.12.3 X-Developer-Signature: v=1; a=ed25519-sha256; t=1705077624; l=1193; i=nuno.sa@analog.com; s=20231116; h=from:subject:message-id; bh=u0BDfBpNIPqTnjAdSKSUmF2FUWY8hltyVdK2adeadi0=; b=0A0bNz6p4SU4S0tvmVegsKtunFO2qbhyJ5h86vXtH9MmwG5yFqjmpmpN5i/awSW+owcX8B4Nm YmAOPvmkGJGCjeAgvyh7rbBxW0UvFQ0egyzgD5qM5QHX/ifr4BIFHLA X-Developer-Key: i=nuno.sa@analog.com; a=ed25519; pk=3NQwYA013OUYZsmDFBf8rmyyr5iQlxV/9H4/Df83o1E= X-Endpoint-Received: by B4 Relay for nuno.sa@analog.com/20231116 with auth_id=100 X-Original-From: Nuno Sa Reply-To: From: Nuno Sa The ad9467 will make use of the new IIO backend framework which is a provider - consumer interface where IIO backends provide services to consumers. As such, and being this device a consumer, add the new generic io-backend property to the bindings. Reviewed-by: Rob Herring Signed-off-by: Nuno Sa --- Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml b/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml index 7aa748d6b7a0..eecd5fbab695 100644 --- a/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml +++ b/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml @@ -44,6 +44,9 @@ properties: Pin that controls the powerdown mode of the device. maxItems: 1 + io-backends: + maxItems: 1 + reset-gpios: description: Reset pin for the device. @@ -68,6 +71,7 @@ examples: reg = <0>; clocks = <&adc_clk>; clock-names = "adc-clk"; + io-backends = <&iio_backend>; }; }; ...