From patchwork Fri Jan 16 11:00:08 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Robert Jarzmik X-Patchwork-Id: 5647221 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 2DCFCC058D for ; Fri, 16 Jan 2015 11:03:06 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 2DDDE201B9 for ; Fri, 16 Jan 2015 11:03:05 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.9]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 53CB320142 for ; Fri, 16 Jan 2015 11:03:04 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1YC4eD-0008U6-CK; Fri, 16 Jan 2015 11:01:01 +0000 Received: from smtp05.smtpout.orange.fr ([80.12.242.127] helo=smtp.smtpout.orange.fr) by bombadil.infradead.org with esmtp (Exim 4.80.1 #2 (Red Hat Linux)) id 1YC4e7-0008Gj-D1 for linux-arm-kernel@lists.infradead.org; Fri, 16 Jan 2015 11:00:56 +0000 Received: from beldin.home ([109.214.23.205]) by mwinf5d28 with ME id gb0N1p00W4RW3Bh03b0NLx; Fri, 16 Jan 2015 12:00:31 +0100 X-ME-Helo: beldin.home X-ME-Date: Fri, 16 Jan 2015 12:00:31 +0100 X-ME-IP: 109.214.23.205 From: Robert Jarzmik To: Rob Herring , Pawel Moll , Mark Rutland , Ian Campbell , Kumar Gala , Daniel Mack , Haojian Zhuang , Robert Jarzmik , Samuel Ortiz , Lee Jones , Arnd Bergmann , Dmitry Eremin-Solenikov Subject: [PATCH v3 1/3] dt-bindings: mfd: add lubbock-io binding Date: Fri, 16 Jan 2015 12:00:08 +0100 Message-Id: <1421406010-14851-1-git-send-email-robert.jarzmik@free.fr> X-Mailer: git-send-email 2.1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20150116_030055_611082_4DBF9E78 X-CRM114-Status: UNSURE ( 7.43 ) X-CRM114-Notice: Please train this message. X-Spam-Score: 0.0 (/) Cc: devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_MED, T_RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Add a binding for lubbock motherboard IO board. Signed-off-by: Robert Jarzmik --- .../devicetree/bindings/mfd/lubbock-io.txt | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Documentation/devicetree/bindings/mfd/lubbock-io.txt diff --git a/Documentation/devicetree/bindings/mfd/lubbock-io.txt b/Documentation/devicetree/bindings/mfd/lubbock-io.txt new file mode 100644 index 0000000..33c9e21 --- /dev/null +++ b/Documentation/devicetree/bindings/mfd/lubbock-io.txt @@ -0,0 +1,26 @@ +Intel's pxa255 system development platform motherboard. + +This is the motherboard, or IO board, of the pxa25x development system, +supporting a lubbock pxa25x SoC board. + +Required properties: + - compatible : One of the following chip-specific strings: + "intel,lubbock-io" + - interrupts : The first interrupt is the line the /IRQ signal the IO board + multiplex is connected to. The only known case is GPIO0 on the + pxa25x SoC. + +Optional properties: + - interrupts : The second optional interrupt is the base of the interrupts + multiplexed by the lubbock motherboard. If unspecified, the + range is fully dynamic, and the irqdomain will generate its + interrupt base on the fly. + +Example: + +mb: lubbock-mb@0 { + compatible = "intel,lubbock-io"; + interrupts = <0 IRQ_TYPE_EDGE_FALLING 400 IRQ_TYPE_NONE>; + #interrupt-cells = <2>; + interrupt-parent = <&pxairq>; +};