linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff Garzik <jeff@garzik.org>
To: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: linux-ide@vger.kernel.org
Subject: Re: [PATCH] libata: Set transfer sizes properly for ATAPI
Date: Thu, 20 Sep 2007 16:47:16 -0400	[thread overview]
Message-ID: <46F2DC54.8040908@garzik.org> (raw)
In-Reply-To: <20070920150144.4772e18d@the-village.bc.nu>

[-- Attachment #1: Type: text/plain, Size: 224 bytes --]

Alan Cox wrote:
> In theory this isn't needed. In practice it seems to matter now and then
> and was also done by the old IDE DMA layer.
> 
> Signed-off-by: Alan Cox <alan@redhat.com>

applied a modified version (attached)


[-- Attachment #2: patch --]
[-- Type: text/plain, Size: 2272 bytes --]

commit 8dcab000d7a3b114a3434129d1d6437263835c87
Author: Jeff Garzik <jeff@garzik.org>
Date:   Thu Sep 20 16:46:42 2007 -0400

    [libata] Always set ATAPI TF lbam/lbah, regardless of PIO or DMA
    
    A slightly modified version of Alan Cox's change:
      libata: Set transfer sizes properly for ATAPI
    
      In theory this isn't needed. In practice it seems to matter now and then
      and was also done by the old IDE DMA layer.
    
    Signed-off-by: Jeff Garzik <jeff@garzik.org>

 drivers/ata/libata-scsi.c |   15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

8dcab000d7a3b114a3434129d1d6437263835c87
diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c
index f0f586b..8eac137 100644
--- a/drivers/ata/libata-scsi.c
+++ b/drivers/ata/libata-scsi.c
@@ -2273,10 +2273,10 @@ static void atapi_request_sense(struct ata_queued_cmd *qc)
 		qc->tf.feature |= ATAPI_PKT_DMA;
 	} else {
 		qc->tf.protocol = ATA_PROT_ATAPI;
-		qc->tf.lbam = (8 * 1024) & 0xff;
-		qc->tf.lbah = (8 * 1024) >> 8;
 	}
 	qc->nbytes = SCSI_SENSE_BUFFERSIZE;
+	qc->tf.lbam = SCSI_SENSE_BUFFERSIZE;
+	qc->tf.lbah = 0;
 
 	qc->complete_fn = atapi_sense_complete;
 
@@ -2383,6 +2383,7 @@ static unsigned int atapi_xlat(struct ata_queued_cmd *qc)
 	struct ata_device *dev = qc->dev;
 	int using_pio = (dev->flags & ATA_DFLAG_PIO);
 	int nodata = (scmd->sc_data_direction == DMA_NONE);
+	unsigned int nbytes;
 
 	memset(qc->cdb, 0, dev->cdb_len);
 	memcpy(qc->cdb, scmd->cmnd, scmd->cmd_len);
@@ -2402,14 +2403,20 @@ static unsigned int atapi_xlat(struct ata_queued_cmd *qc)
 	if (!using_pio && ata_check_atapi_dma(qc))
 		using_pio = 1;
 
+	/* Some controller variants snoop this value for Packet transfers
+	   to do state machine and FIFO management. Thus we want to set it
+	   properly, even for DMA where it is effectively meaningless */
+
+	nbytes = qc->nbytes & 0xffff;
+	qc->tf.lbam = (nbytes & 0xff);
+	qc->tf.lbah = (nbytes >> 8);
+
 	if (using_pio || nodata) {
 		/* no data, or PIO data xfer */
 		if (nodata)
 			qc->tf.protocol = ATA_PROT_ATAPI_NODATA;
 		else
 			qc->tf.protocol = ATA_PROT_ATAPI;
-		qc->tf.lbam = (8 * 1024) & 0xff;
-		qc->tf.lbah = (8 * 1024) >> 8;
 	} else {
 		/* DMA data xfer */
 		qc->tf.protocol = ATA_PROT_ATAPI_DMA;

  reply	other threads:[~2007-09-20 20:47 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-09-20 14:01 [PATCH] libata: Set transfer sizes properly for ATAPI Alan Cox
2007-09-20 20:47 ` Jeff Garzik [this message]
2007-09-20 21:44   ` Alan Cox
2007-09-21 22:14   ` Alan Cox
2007-09-21 22:34     ` Jeff Garzik

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=46F2DC54.8040908@garzik.org \
    --to=jeff@garzik.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=linux-ide@vger.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).