From patchwork Fri Dec 8 15:14:08 2023 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: 13485546 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 DA7D6225D2; Fri, 8 Dec 2023 15:14:10 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="aXOeEfuW" Received: by smtp.kernel.org (Postfix) with ESMTPS id 75BAEC433CB; Fri, 8 Dec 2023 15:14:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1702048450; bh=nIumbSNy2HNraI49E2yCha0tzF9sWGi5YKv48+JANO4=; h=From:Date:Subject:References:In-Reply-To:To:Cc:Reply-To:From; b=aXOeEfuWRWUOqFMl8YuF3Y4oR8K3sVpiwFILpJGv5Fq0Z1VnARtMJ7VZtHbAFrNHj CAOpyP2+8BtMu++aRSwl+LUSycEgcnt3nv2x8eifn59rvyd+jsZUJJ80d8OYJXMdAm U1Pr1+t0yye4L828Hou5Cv3aEi818yVSAwOKKpWQni4kQp6ad5jdA3Dn0tzaYTLbpL 7KLVHTMvcXt96bUzdKA+ghfU6y2mPMblN8u5Dj9+cg11BydLbkqnJ5MadkGlB+LjgN asnGDHIggymT2aZnljd6+mqOAni2itybNDCSK2LWefr0iWUxNrHkzjl5ar6IFUgNQg 7E3zNf5JR+cQQ== 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 5BBE5C10F05; Fri, 8 Dec 2023 15:14:10 +0000 (UTC) From: Nuno Sa via B4 Relay Date: Fri, 08 Dec 2023 16:14:08 +0100 Subject: [PATCH v2 1/8] dt-bindings: adc: ad9467: document io-backend property Precedence: bulk X-Mailing-List: linux-iio@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Message-Id: <20231208-dev-iio-backend-v2-1-5450951895e1@analog.com> References: <20231208-dev-iio-backend-v2-0-5450951895e1@analog.com> In-Reply-To: <20231208-dev-iio-backend-v2-0-5450951895e1@analog.com> To: devicetree@vger.kernel.org, linux-iio@vger.kernel.org Cc: Greg Kroah-Hartman , "Rafael J. Wysocki" , Rob Herring , Frank Rowand , Jonathan Cameron , Lars-Peter Clausen , Michael Hennerich , Krzysztof Kozlowski , Conor Dooley X-Mailer: b4 0.12.3 X-Developer-Signature: v=1; a=ed25519-sha256; t=1702048448; l=1040; i=nuno.sa@analog.com; s=20231116; h=from:subject:message-id; bh=D7q6W8VwWUTViQGqb/BMWILjEw70nj+zEHdZlbAYQfs=; b=LR+bQ8JVhYh8Nxd2JNwQ2wemBAt9u9NReHkrS52MLd7EI2VjnP6c7itJrlDnznmlpoXKAxwPM 0RX0rSDKb6aBVntib++GIu8TwpMnqrN1RdQFd9gpdAjpMo76F6lHeeD 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 Add a new property to reference IIO backend devices. Signed-off-by: Nuno Sa --- Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml b/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml index 7aa748d6b7a0..ae74249b4726 100644 --- a/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml +++ b/Documentation/devicetree/bindings/iio/adc/adi,ad9467.yaml @@ -44,6 +44,10 @@ properties: Pin that controls the powerdown mode of the device. maxItems: 1 + io-backends: + description: Phandle to the IIO backend device. + $ref: /schemas/types.yaml#/definitions/phandle + reset-gpios: description: Reset pin for the device. @@ -68,6 +72,7 @@ examples: reg = <0>; clocks = <&adc_clk>; clock-names = "adc-clk"; + io-backends = <&iio_backend>; }; }; ...