From patchwork Thu Sep 20 14:43:44 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Matt Porter X-Patchwork-Id: 1485701 Return-Path: X-Original-To: patchwork-linux-omap@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 00B52E006E for ; Thu, 20 Sep 2012 14:44:05 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932101Ab2ITOni (ORCPT ); Thu, 20 Sep 2012 10:43:38 -0400 Received: from mail-ie0-f174.google.com ([209.85.223.174]:41616 "EHLO mail-ie0-f174.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932167Ab2ITOmj (ORCPT ); Thu, 20 Sep 2012 10:42:39 -0400 Received: by mail-ie0-f174.google.com with SMTP id k13so3502403iea.19 for ; Thu, 20 Sep 2012 07:42:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references; bh=Mygm+Wq1mjDnPqtdjqqPCDeAmvlp/SI446tYqdey1gw=; b=aDKJndbHKQeafyTZ9gzk3wbGbhgF/Sm/LspSOWNvzal7N4f4bx2c5HdGmKh9a15Eex /5Rp2vZOtvd3TOhf9YVWPuISFV6DFy5jq10x1z9g/9EIYqiSyRwjrnsazZ3f1mQdgD6n 6RQhoWJPA/Ky11NqXQyIrArsGm1M+K72UjN6CH/dWnJnWNnm34ZUaA0CuPNwo//6U1F2 XIdoIyknqM5lbU8EhuSSChXIPH/hjpvIiJHAAmlYrJmj3H0WzGq893kv4Qew2+fDABzr uAsFrruDD+37K8kJLFI9YGXXoB5IDRwdTZNQLn9/2yAM9YLMeEPpdT+YzeWlZQVO9LSS W/MQ== Received: by 10.50.202.8 with SMTP id ke8mr1925144igc.6.1348152158696; Thu, 20 Sep 2012 07:42:38 -0700 (PDT) Received: from beef.ohporter.com (cpe-24-166-64-7.neo.res.rr.com. [24.166.64.7]) by mx.google.com with ESMTPS id p5sm15288242igm.13.2012.09.20.07.42.36 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 20 Sep 2012 07:42:37 -0700 (PDT) From: Matt Porter To: Tony Lindgren , Sekhar Nori , Grant Likely , Mark Brown , Benoit Cousson , Russell King , Vinod Koul , Rob Landley , Chris Ball Cc: Devicetree Discuss , Linux OMAP List , Linux ARM Kernel List , Linux DaVinci Kernel List , Linux Kernel Mailing List , Linux Documentation List , Linux MMC List , Linux SPI Devel List , Arnd Bergmann , Dan Williams , Rob Herring Subject: [RFC PATCH 11/13] spi: omap2-mcspi: add generic DMA request support to the DT binding Date: Thu, 20 Sep 2012 10:43:44 -0400 Message-Id: <1348152226-13588-12-git-send-email-mporter@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1348152226-13588-1-git-send-email-mporter@ti.com> References: <1348152226-13588-1-git-send-email-mporter@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org The binding definition is based on the generic DMA request binding. Signed-off-by: Matt Porter --- Documentation/devicetree/bindings/spi/omap-spi.txt | 27 +++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/spi/omap-spi.txt b/Documentation/devicetree/bindings/spi/omap-spi.txt index 81df374..11aff04 100644 --- a/Documentation/devicetree/bindings/spi/omap-spi.txt +++ b/Documentation/devicetree/bindings/spi/omap-spi.txt @@ -7,8 +7,18 @@ Required properties: - ti,spi-num-cs : Number of chipselect supported by the instance. - ti,hwmods: Name of the hwmod associated to the McSPI +Optional properties: +- dmas: List of DMA controller phandle and DMA request ordered + pairs. One tx and one rx pair is required for each chip + select. +- dma-names: List of DMA request names. These strings correspond + 1:1 with the ordered pairs in dmas. The string naming is + to be "rxN" and "txN" for RX and TX requests, + respectively, where N equals the chip select number. -Example: +Examples: + +[hwmod populated DMA resources] mcspi1: mcspi@1 { #address-cells = <1>; @@ -18,3 +28,18 @@ mcspi1: mcspi@1 { ti,spi-num-cs = <4>; }; +[generic DMA request binding] + +mcspi1: mcspi@1 { + #address-cells = <1>; + #size-cells = <0>; + compatible = "ti,omap4-mcspi"; + ti,hwmods = "mcspi1"; + ti,spi-num-cs = <2>; + dmas = <&edma 42 + &edma 43 + &edma 44 + &edma 45>; + dma-names = "tx0", "rx0", "tx1", "rx1"; +}; +