From patchwork Tue Feb 28 16:51:14 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabrice Gasnier X-Patchwork-Id: 733751 Return-Path: X-Original-To: incoming-dt@patchwork.ozlabs.org Delivered-To: patchwork-incoming-dt@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3vXnZz24Tgz9s81 for ; Wed, 1 Mar 2017 05:45:47 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751508AbdB1Sop (ORCPT ); Tue, 28 Feb 2017 13:44:45 -0500 Received: from mx08-00178001.pphosted.com ([91.207.212.93]:37571 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751621AbdB1SnX (ORCPT ); Tue, 28 Feb 2017 13:43:23 -0500 Received: from pps.filterd (m0046661.ppops.net [127.0.0.1]) by mx08-00178001.pphosted.com (8.16.0.11/8.16.0.11) with SMTP id v1SGiLBr023774; Tue, 28 Feb 2017 17:52:15 +0100 Received: from beta.dmz-eu.st.com (beta.dmz-eu.st.com [164.129.1.35]) by mx08-.pphosted.com with ESMTP id 28vhsg8hxb-1 (version=TLSv1 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 28 Feb 2017 17:52:15 +0100 Received: from zeta.dmz-eu.st.com (zeta.dmz-eu.st.com [164.129.230.9]) by beta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 7F5C838; Tue, 28 Feb 2017 16:52:14 +0000 (GMT) Received: from Webmail-eu.st.com (sfhdag5node3.st.com [10.75.127.15]) by zeta.dmz-eu.st.com (STMicroelectronics) with ESMTP id 39DB22B34; Tue, 28 Feb 2017 16:52:14 +0000 (GMT) Received: from localhost (10.75.127.46) by SFHDAG5NODE3.st.com (10.75.127.15) with Microsoft SMTP Server (TLS) id 15.0.1178.4; Tue, 28 Feb 2017 17:52:13 +0100 From: Fabrice Gasnier To: , , , , , CC: , , , , , , , , , , Subject: [PATCH v3 1/6] dt-bindings: iio: introduce trigger providers, consumers Date: Tue, 28 Feb 2017 17:51:14 +0100 Message-ID: <1488300679-3259-2-git-send-email-fabrice.gasnier@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1488300679-3259-1-git-send-email-fabrice.gasnier@st.com> References: <1488300679-3259-1-git-send-email-fabrice.gasnier@st.com> MIME-Version: 1.0 X-Originating-IP: [10.75.127.46] X-ClientProxiedBy: SFHDAG4NODE2.st.com (10.75.127.11) To SFHDAG5NODE3.st.com (10.75.127.15) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:, , definitions=2017-02-28_15:, , signatures=0 Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org Document iio provider and consumer bindings. Signed-off-by: Fabrice Gasnier --- .../devicetree/bindings/iio/iio-bindings.txt | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) diff --git a/Documentation/devicetree/bindings/iio/iio-bindings.txt b/Documentation/devicetree/bindings/iio/iio-bindings.txt index 68d6f8c..01765e9 100644 --- a/Documentation/devicetree/bindings/iio/iio-bindings.txt +++ b/Documentation/devicetree/bindings/iio/iio-bindings.txt @@ -95,3 +95,41 @@ vdd channel is connected to output 0 of the &ref device. io-channels = <&adc 10>, <&adc 11>; io-channel-names = "adc1", "adc2"; }; + +==IIO trigger providers== +Sources of IIO triggers can be represented by any node in the device +tree. Those nodes are designated as IIO trigger providers. IIO trigger +consumer uses a phandle and an IIO trigger specifier to connect to an +IIO trigger provider. +An IIO trigger specifier is an array of one or more cells identifying +the IIO trigger output on a device. The length of an IIO trigger +specifier is defined by the value of a #io-trigger-cells property in +the IIO trigger provider node. + +Required properties: +#io-trigger-cells: + Number of cells in an IIO trigger specifier; Typically + 0 for nodes with a simple IIO trigger output. + +Example: + trig0: interrupt-trigger0 { + #io-trigger-cells = <0>; + compatible = "interrupt-trigger"; + interrupts = <11 0>; + interrupt-parent = <&gpioa>; + } + +==IIO trigger consumers== +Required properties: +- io-triggers: List of phandle representing the IIO trigger specifier. + +Optional properties: +- io-trigger-names : + List of IIO trigger name strings that matches elements + in 'io-triggers' list property. + +Example: + some_trigger_consumer { + io-triggers = <&trig0>; + io-trigger-names = "mytrig"; + }