> -----Original Message-----
> From: Duan Fugang-B38611
> Sent: Thursday, September 25, 2014 5:25 PM
> To: Yuan Yao-B46683; [email protected]; [email protected]
> Cc: [email protected]; [email protected]; [email protected];
> [email protected]; [email protected];
> [email protected]
> Subject: RE: [PATCH v8 1/2] i2c: imx: add DMA support for freescale i2c
> driver
>
> From: Yuan Yao <[email protected]> Sent: Thursday, September 25,
> 2014 4:11 PM
> >To: [email protected]; [email protected]
> >Cc: [email protected]; [email protected]; Duan Fugang-B38611;
> >[email protected]; [email protected]; linux-arm-
> >[email protected]; [email protected]
> >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 <[email protected]>
> >---
> > 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
--
To unsubscribe from this list: send the line "unsubscribe linux-i2c" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html