From: Khalid Aziz <khalid@fc.hp.com>
To: linux-kernel@vger.kernel.org
Cc: marcelo@conectiva.com.br, andre@linux-ide.org
Subject: [PATCH] ide-scsi driver starts DMA too soon
Date: Fri, 1 Nov 2002 16:39:52 -0700 (MST) [thread overview]
Message-ID: <E187lOK-0003Jd-00@lyra.fc.hp.com> (raw)
ide-scsi driver starts DMA as soon as it writes the ATAPI PACKET command
in command register and before sending the ATAPI command. This will
cause problems on many drives. Right way to do it is to start DMA after
sending the ATAPI command. I am attaching a patch that fixes this. This
patch will allow many more CD-RW drives to work reliably in DMA mode
than do today.
Marcelo, please apply.
--
Khalid
====================================================================
Khalid Aziz Linux and Open Source Lab
(970)898-9214 Hewlett-Packard
khalid@hp.com Fort Collins, CO
-----------CUT HERE-------------CUT HERE-------------CUT HERE-----------
--- linux-2.4.19/drivers/scsi/ide-scsi.c Fri Aug 2 18:39:44 2002
+++ linux-2.4.19.cd_dma/drivers/scsi/ide-scsi.c Fri Nov 1 16:31:30 2002
@@ -397,6 +397,8 @@
idescsi_pc_t *pc = scsi->pc;
byte ireason;
ide_startstop_t startstop;
+ struct request *rq = pc->rq;
+ int dma_ok = 0;
if (ide_wait_stat (&startstop,drive,DRQ_STAT,BUSY_STAT,WAIT_READY)) {
printk (KERN_ERR "ide-scsi: Strange, packet command initiated yet DRQ isn't asserted\n");
@@ -407,8 +409,14 @@
printk (KERN_ERR "ide-scsi: (IO,CoD) != (0,1) while issuing a packet command\n");
return ide_do_reset (drive);
}
+ if (drive->using_dma && rq->bh)
+ dma_ok=!HWIF(drive)->dmaproc(test_bit (PC_WRITING, &pc->flags) ? ide_dma_write : ide_dma_read, drive);
ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), NULL); /* Set the interrupt routine */
atapi_output_bytes (drive, scsi->pc->c, 12); /* Send the actual packet */
+ if (dma_ok) {
+ set_bit (PC_DMA_IN_PROGRESS, &pc->flags);
+ (void) (HWIF(drive)->dmaproc(ide_dma_begin, drive));
+ }
return ide_started;
}
@@ -437,10 +445,6 @@
OUT_BYTE (bcount >> 8,IDE_BCOUNTH_REG);
OUT_BYTE (bcount & 0xff,IDE_BCOUNTL_REG);
- if (dma_ok) {
- set_bit (PC_DMA_IN_PROGRESS, &pc->flags);
- (void) (HWIF(drive)->dmaproc(ide_dma_begin, drive));
- }
if (test_bit (IDESCSI_DRQ_INTERRUPT, &scsi->flags)) {
ide_set_handler (drive, &idescsi_transfer_pc, get_timeout(pc), NULL);
OUT_BYTE (WIN_PACKETCMD, IDE_COMMAND_REG); /* Issue the packet command */
next reply other threads:[~2002-11-01 23:33 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-11-01 23:39 Khalid Aziz [this message]
2002-11-02 1:13 ` Alan Cox
2002-11-06 12:27 ` Marcelo Tosatti
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=E187lOK-0003Jd-00@lyra.fc.hp.com \
--to=khalid@fc.hp.com \
--cc=andre@linux-ide.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marcelo@conectiva.com.br \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®