All of lore.kernel.org
 help / color / mirror / Atom feed
From: Lucas Stach <l.stach@pengutronix.de>
To: "Angus Ainslie (Purism)" <angus@akkea.ca>
Cc: angus.ainslie@puri.sm, Vinod Koul <vkoul@kernel.org>,
	dmaengine@vger.kernel.org, NXP Linux Team <linux-imx@nxp.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Daniel Baluta <daniel.baluta@gmail.com>
Subject: [v3,1/5] dma: imx-sdma: add clock ratio 1:1 check
Date: Wed, 23 Jan 2019 16:43:48 +0100	[thread overview]
Message-ID: <1548258228.28802.5.camel@pengutronix.de> (raw)

Am Mittwoch, den 23.01.2019, 08:23 -0700 schrieb Angus Ainslie (Purism):
> On i.mx8 mscale B0 chip, AHB/SDMA clock ratio 2:1 can't be supportted,
> since SDMA clock ratio has to be increased to 250Mhz, AHB can't reach
> to 500Mhz, so use 1:1 instead.
> 
> > Based on NXP commit MLK-16841-1 by Robin Gong <yibin.gong@nxp.com>
> 
> > Signed-off-by: Angus Ainslie (Purism) <angus@akkea.ca>
> ---
>  drivers/dma/imx-sdma.c | 23 +++++++++++++++++++----
>  1 file changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index 0b3a67ff8e82..531a9d8b032a 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -440,6 +440,8 @@ struct sdma_engine {
> > >  	unsigned int			irq;
> > >  	dma_addr_t			bd0_phys;
> > >  	struct sdma_buffer_descriptor	*bd0;
> > +	/* clock ratio for AHB:SDMA core. 1:1 is 1, 2:1 is 0*/
> > > +	bool				clk_ratio;
>  };
>  
>  static int sdma_config_write(struct dma_chan *chan,
> @@ -662,8 +664,14 @@ static int sdma_run_channel0(struct sdma_engine *sdma)
> >  		dev_err(sdma->dev, "Timeout waiting for CH0 ready\n");
>  
> >  	/* Set bits of CONFIG register with dynamic context switching */
> > -	if (readl(sdma->regs + SDMA_H_CONFIG) == 0)
> > -		writel_relaxed(SDMA_H_CONFIG_CSM, sdma->regs + SDMA_H_CONFIG);
> +	if (readl(sdma->regs + SDMA_H_CONFIG) == 0) {

If the ACR bit gets set in sdma_init(), do we ever end up in this code
path? From a quick glance it seems we might wrongfully skip the CSM
enable here.

> +		if (sdma->clk_ratio)
> > +			reg = SDMA_H_CONFIG_CSM | SDMA_H_CONFIG_ACR;
> > +		else
> +			reg = SDMA_H_CONFIG_CSM;

That's a personal style preference, but I would write this as:

reg = SDMA_H_CONFIG_CSM;

if (sdma->clk_ratio);
	reg |= SDMA_H_CONFIG_ACR;

> +
> > +		writel_relaxed(reg, sdma->regs + SDMA_H_CONFIG);
> > +	}
>  
> >  	return ret;
>  }
> @@ -1840,6 +1848,11 @@ static int sdma_init(struct sdma_engine *sdma)
> >  	if (ret)
> >  		goto disable_clk_ipg;
>  
> > +	if (clk_get_rate(sdma->clk_ahb) == clk_get_rate(sdma->clk_ipg))
> > +		sdma->clk_ratio = 1;
> > +	else
> +		sdma->clk_ratio = 0;

sdma is zeroed at allocation, so the else path here isn't necessary.

> +
> >  	/* Be sure SDMA has not started yet */
> >  	writel_relaxed(0, sdma->regs + SDMA_H_C0PTR);
>  
> @@ -1880,8 +1893,10 @@ static int sdma_init(struct sdma_engine *sdma)
> >  	writel_relaxed(0x4050, sdma->regs + SDMA_CHN0ADDR);
>  
> >  	/* Set bits of CONFIG register but with static context switching */
> > -	/* FIXME: Check whether to set ACR bit depending on clock ratios */
> > -	writel_relaxed(0, sdma->regs + SDMA_H_CONFIG);
> > +	if (sdma->clk_ratio)
> > +		writel_relaxed(SDMA_H_CONFIG_ACR, sdma->regs + SDMA_H_CONFIG);
> > +	else
> > +		writel_relaxed(0, sdma->regs + SDMA_H_CONFIG);
>  
> >  	writel_relaxed(ccb_phys, sdma->regs + SDMA_H_C0PTR);
>

WARNING: multiple messages have this Message-ID (diff)
From: Lucas Stach <l.stach@pengutronix.de>
To: "Angus Ainslie (Purism)" <angus@akkea.ca>
Cc: angus.ainslie@puri.sm, Vinod Koul <vkoul@kernel.org>,
	dmaengine@vger.kernel.org, NXP Linux Team <linux-imx@nxp.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	Daniel Baluta <daniel.baluta@gmail.com>
Subject: Re: [PATCH v3 1/5] dma: imx-sdma: add clock ratio 1:1 check
Date: Wed, 23 Jan 2019 16:43:48 +0100	[thread overview]
Message-ID: <1548258228.28802.5.camel@pengutronix.de> (raw)
In-Reply-To: <20190123152310.11680-2-angus@akkea.ca>

Am Mittwoch, den 23.01.2019, 08:23 -0700 schrieb Angus Ainslie (Purism):
> On i.mx8 mscale B0 chip, AHB/SDMA clock ratio 2:1 can't be supportted,
> since SDMA clock ratio has to be increased to 250Mhz, AHB can't reach
> to 500Mhz, so use 1:1 instead.
> 
> > Based on NXP commit MLK-16841-1 by Robin Gong <yibin.gong@nxp.com>
> 
> > Signed-off-by: Angus Ainslie (Purism) <angus@akkea.ca>
> ---
>  drivers/dma/imx-sdma.c | 23 +++++++++++++++++++----
>  1 file changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index 0b3a67ff8e82..531a9d8b032a 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -440,6 +440,8 @@ struct sdma_engine {
> > >  	unsigned int			irq;
> > >  	dma_addr_t			bd0_phys;
> > >  	struct sdma_buffer_descriptor	*bd0;
> > +	/* clock ratio for AHB:SDMA core. 1:1 is 1, 2:1 is 0*/
> > > +	bool				clk_ratio;
>  };
>  
>  static int sdma_config_write(struct dma_chan *chan,
> @@ -662,8 +664,14 @@ static int sdma_run_channel0(struct sdma_engine *sdma)
> >  		dev_err(sdma->dev, "Timeout waiting for CH0 ready\n");
>  
> >  	/* Set bits of CONFIG register with dynamic context switching */
> > -	if (readl(sdma->regs + SDMA_H_CONFIG) == 0)
> > -		writel_relaxed(SDMA_H_CONFIG_CSM, sdma->regs + SDMA_H_CONFIG);
> +	if (readl(sdma->regs + SDMA_H_CONFIG) == 0) {

If the ACR bit gets set in sdma_init(), do we ever end up in this code
path? From a quick glance it seems we might wrongfully skip the CSM
enable here.

> +		if (sdma->clk_ratio)
> > +			reg = SDMA_H_CONFIG_CSM | SDMA_H_CONFIG_ACR;
> > +		else
> +			reg = SDMA_H_CONFIG_CSM;

That's a personal style preference, but I would write this as:

reg = SDMA_H_CONFIG_CSM;

if (sdma->clk_ratio);
	reg |= SDMA_H_CONFIG_ACR;

> +
> > +		writel_relaxed(reg, sdma->regs + SDMA_H_CONFIG);
> > +	}
>  
> >  	return ret;
>  }
> @@ -1840,6 +1848,11 @@ static int sdma_init(struct sdma_engine *sdma)
> >  	if (ret)
> >  		goto disable_clk_ipg;
>  
> > +	if (clk_get_rate(sdma->clk_ahb) == clk_get_rate(sdma->clk_ipg))
> > +		sdma->clk_ratio = 1;
> > +	else
> +		sdma->clk_ratio = 0;

sdma is zeroed at allocation, so the else path here isn't necessary.

> +
> >  	/* Be sure SDMA has not started yet */
> >  	writel_relaxed(0, sdma->regs + SDMA_H_C0PTR);
>  
> @@ -1880,8 +1893,10 @@ static int sdma_init(struct sdma_engine *sdma)
> >  	writel_relaxed(0x4050, sdma->regs + SDMA_CHN0ADDR);
>  
> >  	/* Set bits of CONFIG register but with static context switching */
> > -	/* FIXME: Check whether to set ACR bit depending on clock ratios */
> > -	writel_relaxed(0, sdma->regs + SDMA_H_CONFIG);
> > +	if (sdma->clk_ratio)
> > +		writel_relaxed(SDMA_H_CONFIG_ACR, sdma->regs + SDMA_H_CONFIG);
> > +	else
> > +		writel_relaxed(0, sdma->regs + SDMA_H_CONFIG);
>  
> >  	writel_relaxed(ccb_phys, sdma->regs + SDMA_H_C0PTR);
>  

WARNING: multiple messages have this Message-ID (diff)
From: Lucas Stach <l.stach@pengutronix.de>
To: "Angus Ainslie (Purism)" <angus@akkea.ca>
Cc: Daniel Baluta <daniel.baluta@gmail.com>,
	linux-kernel@vger.kernel.org, dmaengine@vger.kernel.org,
	Vinod Koul <vkoul@kernel.org>, NXP Linux Team <linux-imx@nxp.com>,
	Pengutronix Kernel Team <kernel@pengutronix.de>,
	angus.ainslie@puri.sm, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 1/5] dma: imx-sdma: add clock ratio 1:1 check
Date: Wed, 23 Jan 2019 16:43:48 +0100	[thread overview]
Message-ID: <1548258228.28802.5.camel@pengutronix.de> (raw)
In-Reply-To: <20190123152310.11680-2-angus@akkea.ca>

Am Mittwoch, den 23.01.2019, 08:23 -0700 schrieb Angus Ainslie (Purism):
> On i.mx8 mscale B0 chip, AHB/SDMA clock ratio 2:1 can't be supportted,
> since SDMA clock ratio has to be increased to 250Mhz, AHB can't reach
> to 500Mhz, so use 1:1 instead.
> 
> > Based on NXP commit MLK-16841-1 by Robin Gong <yibin.gong@nxp.com>
> 
> > Signed-off-by: Angus Ainslie (Purism) <angus@akkea.ca>
> ---
>  drivers/dma/imx-sdma.c | 23 +++++++++++++++++++----
>  1 file changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/drivers/dma/imx-sdma.c b/drivers/dma/imx-sdma.c
> index 0b3a67ff8e82..531a9d8b032a 100644
> --- a/drivers/dma/imx-sdma.c
> +++ b/drivers/dma/imx-sdma.c
> @@ -440,6 +440,8 @@ struct sdma_engine {
> > >  	unsigned int			irq;
> > >  	dma_addr_t			bd0_phys;
> > >  	struct sdma_buffer_descriptor	*bd0;
> > +	/* clock ratio for AHB:SDMA core. 1:1 is 1, 2:1 is 0*/
> > > +	bool				clk_ratio;
>  };
>  
>  static int sdma_config_write(struct dma_chan *chan,
> @@ -662,8 +664,14 @@ static int sdma_run_channel0(struct sdma_engine *sdma)
> >  		dev_err(sdma->dev, "Timeout waiting for CH0 ready\n");
>  
> >  	/* Set bits of CONFIG register with dynamic context switching */
> > -	if (readl(sdma->regs + SDMA_H_CONFIG) == 0)
> > -		writel_relaxed(SDMA_H_CONFIG_CSM, sdma->regs + SDMA_H_CONFIG);
> +	if (readl(sdma->regs + SDMA_H_CONFIG) == 0) {

If the ACR bit gets set in sdma_init(), do we ever end up in this code
path? From a quick glance it seems we might wrongfully skip the CSM
enable here.

> +		if (sdma->clk_ratio)
> > +			reg = SDMA_H_CONFIG_CSM | SDMA_H_CONFIG_ACR;
> > +		else
> +			reg = SDMA_H_CONFIG_CSM;

That's a personal style preference, but I would write this as:

reg = SDMA_H_CONFIG_CSM;

if (sdma->clk_ratio);
	reg |= SDMA_H_CONFIG_ACR;

> +
> > +		writel_relaxed(reg, sdma->regs + SDMA_H_CONFIG);
> > +	}
>  
> >  	return ret;
>  }
> @@ -1840,6 +1848,11 @@ static int sdma_init(struct sdma_engine *sdma)
> >  	if (ret)
> >  		goto disable_clk_ipg;
>  
> > +	if (clk_get_rate(sdma->clk_ahb) == clk_get_rate(sdma->clk_ipg))
> > +		sdma->clk_ratio = 1;
> > +	else
> +		sdma->clk_ratio = 0;

sdma is zeroed at allocation, so the else path here isn't necessary.

> +
> >  	/* Be sure SDMA has not started yet */
> >  	writel_relaxed(0, sdma->regs + SDMA_H_C0PTR);
>  
> @@ -1880,8 +1893,10 @@ static int sdma_init(struct sdma_engine *sdma)
> >  	writel_relaxed(0x4050, sdma->regs + SDMA_CHN0ADDR);
>  
> >  	/* Set bits of CONFIG register but with static context switching */
> > -	/* FIXME: Check whether to set ACR bit depending on clock ratios */
> > -	writel_relaxed(0, sdma->regs + SDMA_H_CONFIG);
> > +	if (sdma->clk_ratio)
> > +		writel_relaxed(SDMA_H_CONFIG_ACR, sdma->regs + SDMA_H_CONFIG);
> > +	else
> > +		writel_relaxed(0, sdma->regs + SDMA_H_CONFIG);
>  
> >  	writel_relaxed(ccb_phys, sdma->regs + SDMA_H_C0PTR);
>  

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

             reply	other threads:[~2019-01-23 15:43 UTC|newest]

Thread overview: 138+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-23 15:43 Lucas Stach [this message]
2019-01-23 15:43 ` [PATCH v3 1/5] dma: imx-sdma: add clock ratio 1:1 check Lucas Stach
2019-01-23 15:43 ` Lucas Stach
  -- strict thread matches above, loose matches on Subject: below --
2019-02-25 13:31 [v6,2/3] dmaengine: imx-sdma: add a test for imx8mq multi sdma devices Daniel Baluta
2019-02-25 13:31 ` [PATCH v6 2/3] " Daniel Baluta
2019-02-25 13:31 ` Daniel Baluta
2019-01-28 16:03 [v6,3/3] dmaengine: imx-sdma: fix consistent dma test failures Angus Ainslie
2019-01-28 16:03 ` [PATCH v6 3/3] " Angus Ainslie (Purism)
2019-01-28 16:03 ` Angus Ainslie (Purism)
2019-01-28 16:03 [v6,2/3] dmaengine: imx-sdma: add a test for imx8mq multi sdma devices Angus Ainslie
2019-01-28 16:03 ` [PATCH v6 2/3] " Angus Ainslie (Purism)
2019-01-28 16:03 ` Angus Ainslie (Purism)
2019-01-28 16:03 [v6,1/3] dmaengine: imx-sdma: add clock ratio 1:1 check Angus Ainslie
2019-01-28 16:03 ` [PATCH v6 1/3] " Angus Ainslie (Purism)
2019-01-28 16:03 ` Angus Ainslie (Purism)
2019-01-28  9:33 [v5,4/5] dmaengine: imx-sdma: add a test for imx8mq multi sdma devices Lucas Stach
2019-01-28  9:33 ` [PATCH v5 4/5] " Lucas Stach
2019-01-28  9:33 ` Lucas Stach
2019-01-28  9:32 [v5,2/5] dmaengine: imx-sdma: add imx8mq sdma compatible parts Lucas Stach
2019-01-28  9:32 ` [PATCH v5 2/5] " Lucas Stach
2019-01-28  9:32 ` Lucas Stach
2019-01-28  9:29 [v5,1/5] dmaengine: imx-sdma: add clock ratio 1:1 check Lucas Stach
2019-01-28  9:29 ` [PATCH v5 1/5] " Lucas Stach
2019-01-28  9:29 ` Lucas Stach
2019-01-28  6:08 [v5,5/5] dmaengine: imx-sdma: fix consistent dma test failures Angus Ainslie
2019-01-28  6:08 ` [PATCH v5 5/5] " Angus Ainslie (Purism)
2019-01-28  6:08 ` Angus Ainslie (Purism)
2019-01-28  6:08 [v5,4/5] dmaengine: imx-sdma: add a test for imx8mq multi sdma devices Angus Ainslie
2019-01-28  6:08 ` [PATCH v5 4/5] " Angus Ainslie (Purism)
2019-01-28  6:08 ` Angus Ainslie (Purism)
2019-01-28  6:08 [v5,3/5] dt-bindings: dma: fsl-imx-sdma: add fsl,imx8mq to the accepted compatible node Angus Ainslie
2019-01-28  6:08 ` [PATCH v5 3/5] dt-bindings: dma: fsl-imx-sdma: add fsl, imx8mq " Angus Ainslie (Purism)
2019-01-28  6:08 ` [PATCH v5 3/5] dt-bindings: dma: fsl-imx-sdma: add fsl,imx8mq " Angus Ainslie (Purism)
2019-01-28  6:08 [v5,2/5] dmaengine: imx-sdma: add imx8mq sdma compatible parts Angus Ainslie
2019-01-28  6:08 ` [PATCH v5 2/5] " Angus Ainslie (Purism)
2019-01-28  6:08 ` Angus Ainslie (Purism)
2019-01-28  6:08 [v5,1/5] dmaengine: imx-sdma: add clock ratio 1:1 check Angus Ainslie
2019-01-28  6:08 ` [PATCH v5 1/5] " Angus Ainslie (Purism)
2019-01-28  6:08 ` Angus Ainslie (Purism)
2019-01-25  9:42 [v4,1/5] " Lucas Stach
2019-01-25  9:42 ` [PATCH v4 1/5] " Lucas Stach
2019-01-25  9:42 ` Lucas Stach
2019-01-25  9:39 [v4,3/5] dt-bindings: dma: fsl-imx-sdma: add fsl,imx8mq to the accepted compatible node Lucas Stach
2019-01-25  9:39 ` [PATCH v4 3/5] " Lucas Stach
2019-01-25  9:39 ` Lucas Stach
2019-01-25  9:38 [v4,5/5] imx8mq.dtsi: add the sdma nodes Lucas Stach
2019-01-25  9:38 ` [PATCH v4 5/5] " Lucas Stach
2019-01-25  9:38 ` Lucas Stach
2019-01-25  9:35 [v4,2/5] dmaengine: imx-sdma: add imx8mq sdma compatible parts Lucas Stach
2019-01-25  9:35 ` [PATCH v4 2/5] " Lucas Stach
2019-01-25  9:35 ` Lucas Stach
2019-01-25  9:34 [v4,4/5] dma: imx-sdma: add a test for imx8mq multi sdma devices Lucas Stach
2019-01-25  9:34 ` [PATCH v4 4/5] " Lucas Stach
2019-01-25  9:34 ` Lucas Stach
2019-01-25  2:55 [v4,5/5] imx8mq.dtsi: add the sdma nodes Angus Ainslie
2019-01-25  2:55 ` [PATCH v4 5/5] " Angus Ainslie (Purism)
2019-01-25  2:55 ` Angus Ainslie (Purism)
2019-01-25  2:55 [v4,4/5] dma: imx-sdma: add a test for imx8mq multi sdma devices Angus Ainslie
2019-01-25  2:55 ` [PATCH v4 4/5] " Angus Ainslie (Purism)
2019-01-25  2:55 ` Angus Ainslie (Purism)
2019-01-25  2:55 [v4,3/5] dt-bindings: dma: fsl-imx-sdma: add fsl,imx8mq to the accepted compatible node Angus Ainslie
2019-01-25  2:55 ` [PATCH v4 3/5] dt-bindings: dma: fsl-imx-sdma: add fsl, imx8mq " Angus Ainslie (Purism)
2019-01-25  2:55 ` [PATCH v4 3/5] dt-bindings: dma: fsl-imx-sdma: add fsl,imx8mq " Angus Ainslie (Purism)
2019-01-25  2:55 [v4,2/5] dmaengine: imx-sdma: add imx8mq sdma compatible parts Angus Ainslie
2019-01-25  2:55 ` [PATCH v4 2/5] " Angus Ainslie (Purism)
2019-01-25  2:55 ` Angus Ainslie (Purism)
2019-01-25  2:55 [v4,1/5] dmaengine: imx-sdma: add clock ratio 1:1 check Angus Ainslie
2019-01-25  2:55 ` [PATCH v4 1/5] " Angus Ainslie (Purism)
2019-01-25  2:55 ` Angus Ainslie (Purism)
2019-01-23 16:50 [v3,5/5] imx8mq.dtsi: add the sdma nodes Lucas Stach
2019-01-23 16:50 ` [PATCH v3 5/5] " Lucas Stach
2019-01-23 16:50 ` Lucas Stach
2019-01-23 15:55 [v3,4/5] dma: imx-sdma: add an index for imx8mq multi sdma devices Vinod Koul
2019-01-23 15:55 ` [PATCH v3 4/5] " Vinod Koul
2019-01-23 15:55 ` Vinod Koul
2019-01-23 15:42 [v3,4/5] " Angus Ainslie
2019-01-23 15:42 ` [PATCH v3 4/5] " Angus Ainslie
2019-01-23 15:42 ` Angus Ainslie
2019-01-23 15:31 [v3,4/5] " Lucas Stach
2019-01-23 15:31 ` [PATCH v3 4/5] " Lucas Stach
2019-01-23 15:31 ` Lucas Stach
2019-01-23 15:23 [v3,5/5] imx8mq.dtsi: add the sdma nodes Angus Ainslie
2019-01-23 15:23 ` [PATCH v3 5/5] " Angus Ainslie (Purism)
2019-01-23 15:23 ` Angus Ainslie (Purism)
2019-01-23 15:23 [v3,4/5] dma: imx-sdma: add an index for imx8mq multi sdma devices Angus Ainslie
2019-01-23 15:23 ` [PATCH v3 4/5] " Angus Ainslie (Purism)
2019-01-23 15:23 ` Angus Ainslie (Purism)
2019-01-23 15:23 [v3,3/5] dt-bindings: dma: fsl-imx-sdma: add imx8mq compatible string Angus Ainslie
2019-01-23 15:23 ` [PATCH v3 3/5] " Angus Ainslie (Purism)
2019-01-23 15:23 ` Angus Ainslie (Purism)
2019-01-23 15:23 [v3,2/5] dma: imx-sdma: add imx8mq sdma compatible parts Angus Ainslie
2019-01-23 15:23 ` [PATCH v3 2/5] " Angus Ainslie (Purism)
2019-01-23 15:23 ` Angus Ainslie (Purism)
2019-01-23 15:23 [v3,1/5] dma: imx-sdma: add clock ratio 1:1 check Angus Ainslie
2019-01-23 15:23 ` [PATCH v3 1/5] " Angus Ainslie (Purism)
2019-01-23 15:23 ` Angus Ainslie (Purism)
2019-01-21 14:43 [v2,2/3] " Angus Ainslie
2019-01-21 14:43 ` [PATCH v2 2/3] " Angus Ainslie
2019-01-21 14:43 ` Angus Ainslie
2019-01-21  9:17 [v2,2/3] " Lucas Stach
2019-01-21  9:17 ` [PATCH v2 2/3] " Lucas Stach
2019-01-21  9:17 ` Lucas Stach
2019-01-20 18:00 [v2,2/3] " Daniel Baluta
2019-01-20 18:00 ` [PATCH v2 2/3] " Daniel Baluta
2019-01-20 18:00 ` Daniel Baluta
2019-01-20 15:04 [v2,1/3] dma: imx-sdma: fix NULL pointer de-reference Angus Ainslie
2019-01-20 15:04 ` [PATCH v2 1/3] " Angus Ainslie
2019-01-20 15:04 ` Angus Ainslie
2019-01-20 14:38 [v2,2/3] dma: imx-sdma: add clock ratio 1:1 check Angus Ainslie
2019-01-20 14:38 ` [PATCH v2 2/3] " Angus Ainslie
2019-01-20 14:38 ` Angus Ainslie
2019-01-20  9:58 [v2,2/3] " Daniel Baluta
2019-01-20  9:58 ` [PATCH v2 2/3] " Daniel Baluta
2019-01-20  9:58 ` Daniel Baluta
2019-01-20  9:54 [v2,1/3] dma: imx-sdma: fix NULL pointer de-reference Daniel Baluta
2019-01-20  9:54 ` [PATCH v2 1/3] " Daniel Baluta
2019-01-20  9:54 ` Daniel Baluta
2019-01-20  2:31 [v2,3/3] imx8mq.dtsi: add the sdma nodes Angus Ainslie
2019-01-20  2:31 ` [PATCH v2 3/3] " Angus Ainslie (Purism)
2019-01-20  2:31 ` Angus Ainslie (Purism)
2019-01-20  2:31 [v2,2/3] dma: imx-sdma: add clock ratio 1:1 check Angus Ainslie
2019-01-20  2:31 ` [PATCH v2 2/3] " Angus Ainslie (Purism)
2019-01-20  2:31 ` Angus Ainslie (Purism)
2019-01-20  2:31 [v2,1/3] dma: imx-sdma: fix NULL pointer de-reference Angus Ainslie
2019-01-20  2:31 ` [PATCH v2 1/3] " Angus Ainslie (Purism)
2019-01-20  2:31 ` Angus Ainslie (Purism)
2019-01-20  2:31 [PATCH v2 0/3] dma: imx-sdma: add the sdma engine to the imx8mq Angus Ainslie (Purism)
2019-01-20  2:31 ` Angus Ainslie (Purism)
2019-01-23 15:23 ` [PATCH v3 0/5] " Angus Ainslie (Purism)
2019-01-23 15:23   ` Angus Ainslie (Purism)
2019-01-25  2:55 ` [PATCH v4 0/5] dmaengine: " Angus Ainslie (Purism)
2019-01-25  2:55   ` Angus Ainslie (Purism)
2019-01-28  6:08 ` [PATCH v5 " Angus Ainslie (Purism)
2019-01-28  6:08   ` Angus Ainslie (Purism)
2019-01-28 16:03 ` [PATCH v6 0/3] " Angus Ainslie (Purism)
2019-01-28 16:03   ` Angus Ainslie (Purism)
2019-02-25 17:56   ` Vinod Koul
2019-02-25 17:56     ` Vinod Koul

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=1548258228.28802.5.camel@pengutronix.de \
    --to=l.stach@pengutronix.de \
    --cc=angus.ainslie@puri.sm \
    --cc=angus@akkea.ca \
    --cc=daniel.baluta@gmail.com \
    --cc=dmaengine@vger.kernel.org \
    --cc=kernel@pengutronix.de \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-imx@nxp.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=vkoul@kernel.org \
    /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.