lkml.org 
[lkml]   [2014]   [Sep]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
SubjectRE: [PATCH v8 1/2] i2c: imx: add DMA support for freescale i2c driver
Date
> -----Original Message-----
> From: Duan Fugang-B38611
> Sent: Thursday, September 25, 2014 5:25 PM
> To: Yuan Yao-B46683; wsa@the-dreams.de; marex@denx.de
> Cc: LW@KARO-electronics.de; mark.rutland@arm.com; shawn.guo@linaro.org;
> linux-kernel@vger.kernel.org; linux-arm-kernel@lists.infradead.org;
> linux-i2c@vger.kernel.org
> Subject: RE: [PATCH v8 1/2] i2c: imx: add DMA support for freescale i2c
> driver
>
> From: Yuan Yao <yao.yuan@freescale.com> Sent: Thursday, September 25,
> 2014 4:11 PM
> >To: wsa@the-dreams.de; marex@denx.de
> >Cc: LW@KARO-electronics.de; mark.rutland@arm.com; Duan Fugang-B38611;
> >shawn.guo@linaro.org; linux-kernel@vger.kernel.org; linux-arm-
> >kernel@lists.infradead.org; linux-i2c@vger.kernel.org
> >Subject: [PATCH v8 1/2] i2c: imx: add DMA support for freescale i2c
> >driver
> >
> >Add dma support for i2c. This function depend on DMA driver.
> >You can turn on it by write both the dmas and dma-name properties in
> >dts node.
> >DMA is optional, even DMA request unsuccessfully, i2c can also work well.
> >
> >Signed-off-by: Yuan Yao <yao.yuan@freescale.com>
> >---
> > drivers/i2c/busses/i2c-imx.c | 352
> >+++++++++++++++++++++++++++++++++++++++++--
> > 1 file changed, 342 insertions(+), 10 deletions(-)
> >
> >diff --git a/drivers/i2c/busses/i2c-imx.c
> >b/drivers/i2c/busses/i2c-imx.c index 613069b..c643756 100644
> >--- a/drivers/i2c/busses/i2c-imx.c
> >+++ b/drivers/i2c/busses/i2c-imx.c
> >@@ -37,22 +37,27 @@
> >+ */
> >+ imx_i2c_write_reg(msgs->addr << 1, i2c_imx, IMX_I2C_I2DR);
> >+ reinit_completion(&i2c_imx->dma->cmd_complete);
> >+ result = wait_for_completion_interruptible_timeout(
> >+ &i2c_imx->dma->cmd_complete,
> >+ msecs_to_jiffies(IMX_I2C_DMA_TIMEOUT));
> >+ if (result <= 0) {
> >+ dmaengine_terminate_all(dma->chan_using);
> >+ if (result)
> >+ return result;
> >+ else
> >+ return -ETIMEDOUT;
> >+ }
> >+
> >+ /* Waiting for Transfer complete. */
> >+ while (1) {
> >+ temp = imx_i2c_read_reg(i2c_imx, IMX_I2C_I2SR);
> >+ if (temp & I2SR_ICF)
> Why not wait for IIF ?

[Yuan Yao]
IIF is often used. But IIF cannot indicate transfer completely in DMA mode.
So TCF(I2SR_ICF) is the only choice.

> >+ break;
> >+ if (time_after(jiffies, orig_jiffies +
> >+ msecs_to_jiffies(IMX_I2C_DMA_TIMEOUT))) {
> >+ dev_dbg(dev, "<%s> Timeout\n", __func__);
> >+ return -ETIMEDOUT;
> >+ }
> >+ schedule();
> >+ }

Thanks & Best regards,
Yuan Yao



\
 
 \ /
  Last update: 2014-09-25 12:21    [W:0.083 / U:0.156 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site