]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
sata_rcar: clear STOP bit in bmdma_start() method
authorSergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Tue, 21 May 2013 19:07:54 +0000 (23:07 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 7 Jun 2013 19:53:04 +0000 (12:53 -0700)
commit278cbfb57813031b472f6fba7293155f6d71d306
treead44bef510d8462b1854dec898b900e375f58748
parent661926a0a9594143ed7f189521d8b8c848f480c7
sata_rcar: clear STOP bit in bmdma_start() method

commit df7e131f6359f20ed8f0a37db039c4f6420a18c2 upstream.

Iff bmdma_setup() has to stop a DMA transfer before starting a new
one, then the STOP bit in the ATAPI_CONTROL1 register will remain set
(it's only cleared when setting the START bit to 1) and then
bmdma_start() method will set both START and STOP bits simultaneously
which should abort the transfer being just started.  Avoid that by
explicitly clearing the STOP bit in bmdma_start() method (in this case
it will be ignored on write).

Signed-off-by: Sergei Shtylyov <sergei.shtylyov@cogentembedded.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/ata/sata_rcar.c