Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752325AbaJKK63 (ORCPT ); Sat, 11 Oct 2014 06:58:29 -0400 Received: from mail-bl2on0105.outbound.protection.outlook.com ([65.55.169.105]:20715 "EHLO na01-bl2-obe.outbound.protection.outlook.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1752137AbaJKK6D (ORCPT ); Sat, 11 Oct 2014 06:58:03 -0400 From: Yuan Yao To: , CC: , , , , , , Subject: [PATCH v9 2/3] Documentation:add DMA support for freescale i2c driver Date: Sat, 11 Oct 2014 18:57:11 +0800 Message-ID: <1413025032-14958-3-git-send-email-yao.yuan@freescale.com> X-Mailer: git-send-email 2.1.0.27.g96db324 In-Reply-To: <1413025032-14958-1-git-send-email-yao.yuan@freescale.com> References: <1413025032-14958-1-git-send-email-yao.yuan@freescale.com> X-EOPAttributedMessage: 0 X-Forefront-Antispam-Report: CIP:192.88.158.2;CTRY:US;IPV:CAL;IPV:NLI;EFV:NLI;SFV:NSPM;SFS:(10019020)(6009001)(189002)(199003)(104016003)(107046002)(95666004)(26826002)(21056001)(105606002)(4396001)(104166001)(50226001)(229853001)(33646002)(76176999)(50986999)(97736003)(93916002)(86362001)(92566001)(106466001)(81156004)(92726001)(31966008)(88136002)(36756003)(84676001)(77156001)(64706001)(20776003)(46102003)(85306004)(47776003)(80022003)(48376002)(99396003)(102836001)(62966002)(50466002)(69596002)(68736004)(87936001)(87286001)(120916001)(89996001)(85852003)(76482002)(19580405001)(44976005)(6806004)(19580395003);DIR:OUT;SFP:1102;SCL:1;SRVR:BLUPR03MB376;H:az84smr01.freescale.net;FPR:;MLV:ovrnspm;PTR:InfoDomainNonexistent;MX:1;A:1;LANG:en; MIME-Version: 1.0 Content-Type: text/plain X-Microsoft-Antispam: UriScan:; X-Microsoft-Antispam: BCL:0;PCL:0;RULEID:;SRVR:BLUPR03MB376; X-Exchange-Antispam-Report-Test: UriScan:; X-Forefront-PRVS: 0361212EA8 Authentication-Results: spf=fail (sender IP is 192.88.158.2) smtp.mailfrom=yao.yuan@freescale.com; X-OriginatorOrg: freescale.com Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Add i2c dts node properties for eDMA support, them depend on the eDMA driver. Signed-off-by: Yuan Yao --- Documentation/devicetree/bindings/i2c/i2c-imx.txt | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Documentation/devicetree/bindings/i2c/i2c-imx.txt b/Documentation/devicetree/bindings/i2c/i2c-imx.txt index 4a8513e..52d37fd 100644 --- a/Documentation/devicetree/bindings/i2c/i2c-imx.txt +++ b/Documentation/devicetree/bindings/i2c/i2c-imx.txt @@ -11,6 +11,8 @@ Required properties: Optional properties: - clock-frequency : Constains desired I2C/HS-I2C bus clock frequency in Hz. The absence of the propoerty indicates the default frequency 100 kHz. +- dmas: A list of two dma specifiers, one for each entry in dma-names. +- dma-names: should contain "tx" and "rx". Examples: @@ -26,3 +28,12 @@ i2c@70038000 { /* HS-I2C on i.MX51 */ interrupts = <64>; clock-frequency = <400000>; }; + +i2c0: i2c@40066000 { /* i2c0 on vf610 */ + compatible = "fsl,vf610-i2c"; + reg = <0x40066000 0x1000>; + interrupts =<0 71 0x04>; + dmas = <&edma0 0 50>, + <&edma0 0 51>; + dma-names = "rx","tx"; +}; -- 1.8.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/