All of lore.kernel.org
 help / color / mirror / Atom feed
From: Yuan Yao <yao.yuan@freescale.com>
To: <wsa@the-dreams.de>, <marex@denx.de>
Cc: <LW@KARO-electronics.de>, <mark.rutland@arm.com>,
	<fugang.duan@freescale.com>, <shawn.guo@linaro.org>,
	<linux-kernel@vger.kernel.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-i2c@vger.kernel.org>
Subject: [PATCH v7 2/2] Documentation:add DMA support for freescale i2c driver
Date: Wed, 13 Aug 2014 17:46:55 +0800	[thread overview]
Message-ID: <1407923215-3749-3-git-send-email-yao.yuan@freescale.com> (raw)
In-Reply-To: <1407923215-3749-1-git-send-email-yao.yuan@freescale.com>

Add i2c dts node properties for eDMA support, them depend on the eDMA driver.

Signed-off-by: Yuan Yao <yao.yuan@freescale.com>
---
 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


WARNING: multiple messages have this Message-ID (diff)
From: Yuan Yao <yao.yuan@freescale.com>
To: wsa@the-dreams.de, marex@denx.de
Cc: mark.rutland@arm.com, linux-kernel@vger.kernel.org,
	linux-i2c@vger.kernel.org, fugang.duan@freescale.com,
	shawn.guo@linaro.org, linux-arm-kernel@lists.infradead.org,
	LW@KARO-electronics.de
Subject: [PATCH v7 2/2] Documentation:add DMA support for freescale i2c driver
Date: Wed, 13 Aug 2014 17:46:55 +0800	[thread overview]
Message-ID: <1407923215-3749-3-git-send-email-yao.yuan@freescale.com> (raw)
In-Reply-To: <1407923215-3749-1-git-send-email-yao.yuan@freescale.com>

Add i2c dts node properties for eDMA support, them depend on the eDMA driver.

Signed-off-by: Yuan Yao <yao.yuan@freescale.com>
---
 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

WARNING: multiple messages have this Message-ID (diff)
From: yao.yuan@freescale.com (Yuan Yao)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 2/2] Documentation:add DMA support for freescale i2c driver
Date: Wed, 13 Aug 2014 17:46:55 +0800	[thread overview]
Message-ID: <1407923215-3749-3-git-send-email-yao.yuan@freescale.com> (raw)
In-Reply-To: <1407923215-3749-1-git-send-email-yao.yuan@freescale.com>

Add i2c dts node properties for eDMA support, them depend on the eDMA driver.

Signed-off-by: Yuan Yao <yao.yuan@freescale.com>
---
 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 at 70038000 { /* HS-I2C on i.MX51 */
 	interrupts = <64>;
 	clock-frequency = <400000>;
 };
+
+i2c0: i2c at 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

  parent reply	other threads:[~2014-08-13 10:37 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-13  9:46 [PATCH v7 0/2] i2c: imx: add DMA support for freescale i2c driver Yuan Yao
2014-08-13  9:46 ` Yuan Yao
2014-08-13  9:46 ` Yuan Yao
2014-08-13  9:46 ` [PATCH v7 1/2] " Yuan Yao
2014-08-13  9:46   ` Yuan Yao
2014-08-13  9:46   ` Yuan Yao
2014-09-04  3:38   ` Yao Yuan
2014-09-04  3:38     ` Yao Yuan
2014-09-04  3:38     ` Yao Yuan
2014-09-04 14:38   ` Marek Vasut
2014-09-04 14:38     ` Marek Vasut
2014-09-05 10:32     ` Yao Yuan
2014-09-05 10:32       ` Yao Yuan
2014-09-05 10:32       ` Yao Yuan
2014-09-05 10:40       ` Marek Vasut
2014-09-05 10:40         ` Marek Vasut
2014-09-05 10:40         ` Marek Vasut
2014-09-10 14:48         ` Yao Yuan
2014-09-10 14:48           ` Yao Yuan
2014-09-10 14:48           ` Yao Yuan
2014-09-16 18:17           ` Marek Vasut
2014-09-16 18:17             ` Marek Vasut
2014-09-16 18:17             ` Marek Vasut
2014-09-17 14:50             ` Yao Yuan
2014-09-17 14:50               ` Yao Yuan
2014-09-17 14:50               ` Yao Yuan
2014-09-17 19:14               ` Marek Vasut
2014-09-17 19:14                 ` Marek Vasut
2014-09-17 19:14                 ` Marek Vasut
2014-09-18 15:46                 ` Yao Yuan
2014-09-18 15:46                   ` Yao Yuan
2014-09-18 15:46                   ` Yao Yuan
2014-09-19 12:15                   ` Marek Vasut
2014-09-19 12:15                     ` Marek Vasut
2014-09-19 12:15                     ` Marek Vasut
2014-08-13  9:46 ` Yuan Yao [this message]
2014-08-13  9:46   ` [PATCH v7 2/2] Documentation:add " Yuan Yao
2014-08-13  9:46   ` Yuan Yao
  -- strict thread matches above, loose matches on Subject: below --
2014-08-13  9:37 [PATCH v7 1/2] i2c: imx: add " Yuan Yao
2014-08-13  9:37 ` [PATCH v7 2/2] Documentation:add " Yuan Yao
2014-08-13  9:37   ` Yuan Yao
2014-08-13  9:37   ` Yuan Yao

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1407923215-3749-3-git-send-email-yao.yuan@freescale.com \
    --to=yao.yuan@freescale.com \
    --cc=LW@KARO-electronics.de \
    --cc=fugang.duan@freescale.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-i2c@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marex@denx.de \
    --cc=mark.rutland@arm.com \
    --cc=shawn.guo@linaro.org \
    --cc=wsa@the-dreams.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.