diff mbox

[v2,2/2] dmaengine: omap-dma: Restore the CLINK_CTRL in resume path

Message ID 1410875629-1540-3-git-send-email-peter.ujfalusi@ti.com (mailing list archive)
State Superseded
Headers show

Commit Message

Peter Ujfalusi Sept. 16, 2014, 1:53 p.m. UTC
When the audio stream is paused or suspended we stop the sDMA and when it
is unpaused/resumed we start the channel without reconfiguring it.
The omap_dma_stop() clears the link configuration when we pause the dma, but
it is not setting it back on start. This will result only one audio buffer
to be played back and the DMA will stop, since the linking is disabled.
We need to restore the CLINK_CTRL register in case of resume.

Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
---
 drivers/dma/omap-dma.c | 3 +++
 1 file changed, 3 insertions(+)

Comments

Russell King - ARM Linux Sept. 16, 2014, 1:56 p.m. UTC | #1
On Tue, Sep 16, 2014 at 04:53:49PM +0300, Peter Ujfalusi wrote:
> When the audio stream is paused or suspended we stop the sDMA and when it
> is unpaused/resumed we start the channel without reconfiguring it.
> The omap_dma_stop() clears the link configuration when we pause the dma, but
> it is not setting it back on start. This will result only one audio buffer
> to be played back and the DMA will stop, since the linking is disabled.
> We need to restore the CLINK_CTRL register in case of resume.
> 
> Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>

Both of these patches now look good, thanks.  For both:

Acked-by: Russell King <rmk+kernel@arm.linux.org.uk>

> ---
>  drivers/dma/omap-dma.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c
> index c01ea505ee7c..e0990c505889 100644
> --- a/drivers/dma/omap-dma.c
> +++ b/drivers/dma/omap-dma.c
> @@ -1019,6 +1019,9 @@ static int omap_dma_resume(struct omap_chan *c)
>  	if (c->paused) {
>  		mb();
>  
> +		/* Restore chanel link register */
> +		omap_dma_chan_write(c, CLNK_CTRL, c->desc->clnk_ctrl);
> +
>  		omap_dma_start(c, c->desc);
>  		c->paused = false;
>  	}
> -- 
> 2.1.0
>
Arend van Spriel Sept. 16, 2014, 1:59 p.m. UTC | #2
On 09/16/14 15:56, Russell King - ARM Linux wrote:
> On Tue, Sep 16, 2014 at 04:53:49PM +0300, Peter Ujfalusi wrote:
>> When the audio stream is paused or suspended we stop the sDMA and when it
>> is unpaused/resumed we start the channel without reconfiguring it.
>> The omap_dma_stop() clears the link configuration when we pause the dma, but
>> it is not setting it back on start. This will result only one audio buffer
>> to be played back and the DMA will stop, since the linking is disabled.
>> We need to restore the CLINK_CTRL register in case of resume.
>>
>> Signed-off-by: Peter Ujfalusi<peter.ujfalusi@ti.com>
>
> Both of these patches now look good, thanks.  For both:
>
> Acked-by: Russell King<rmk+kernel@arm.linux.org.uk>
>
>> ---
>>   drivers/dma/omap-dma.c | 3 +++
>>   1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c
>> index c01ea505ee7c..e0990c505889 100644
>> --- a/drivers/dma/omap-dma.c
>> +++ b/drivers/dma/omap-dma.c
>> @@ -1019,6 +1019,9 @@ static int omap_dma_resume(struct omap_chan *c)
>>   	if (c->paused) {
>>   		mb();
>>
>> +		/* Restore chanel link register */

Just too bad that the comment seems to have a typo.

>> +		omap_dma_chan_write(c, CLNK_CTRL, c->desc->clnk_ctrl);
>> +
>>   		omap_dma_start(c, c->desc);
>>   		c->paused = false;
>>   	}
>> --
>> 2.1.0
>>
>

--
To unsubscribe from this list: send the line "unsubscribe dmaengine" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/dma/omap-dma.c b/drivers/dma/omap-dma.c
index c01ea505ee7c..e0990c505889 100644
--- a/drivers/dma/omap-dma.c
+++ b/drivers/dma/omap-dma.c
@@ -1019,6 +1019,9 @@  static int omap_dma_resume(struct omap_chan *c)
 	if (c->paused) {
 		mb();
 
+		/* Restore chanel link register */
+		omap_dma_chan_write(c, CLNK_CTRL, c->desc->clnk_ctrl);
+
 		omap_dma_start(c, c->desc);
 		c->paused = false;
 	}