From: Russell King <rmk@arm.linux.org.uk>
To: Robert Hancock <hancockrwd@gmail.com>
Cc: linux-ide@vger.kernel.org
Subject: Re: 2.6.32: Promise UDMA33 card refuses to work in UDMA mode
Date: Sun, 3 Jan 2010 10:05:45 +0000 [thread overview]
Message-ID: <20100103100545.GA26225@flint.arm.linux.org.uk> (raw)
In-Reply-To: <4B400A10.3000103@gmail.com>
On Sat, Jan 02, 2010 at 09:08:00PM -0600, Robert Hancock wrote:
> libata doesn't attempt any retries internally, that's up to the upper
> layers. If they're marking the array as failed after one failed request
> without any retries, that's presumably either intentional or a bug in
> the MD layer..
Why should MD care? All that MD knows is that the IO request failed,
it isn't told why. If a request fails, then it has to assume disk
failure.
Maybe it's not a libata problem, but it _is_ bad system behaviour that
needs to be resolved in some way.
However, it's only libata which knows that a UDMA CRC error can't happen
with PIO. If its getting UDMA CRC errors, backing the speed down
eventually to PIO is guaranteed to fix it. The SCSI layer can't know
this, and shouldn't know this. The MD layer certainly doesn't get to
know why requests are failing, nor can it know about these kinds of
interface behaviour, so it can't be fixed there. That only leaves libata
which knows this, knows what's happening and knows how to fix it.
>> An additional note: it seems that libata reads the ATA taskfile
>> back from the drive on every command completion, successful or not -
>> there are at least 30 IO accesses between any two ATA commands.
>> Is there any reason for that?
>
> It shouldn't be reading the entire taskfile back after completion unless
> it failed or it's marked as requiring result taskfile (ATA passthru
> commands or internal commands, i.e. during probing). You're seeing this
> on normal read/write commands?
Hmm, yes, you're right. For normal DMA read/write commands which are
successful, no readback occurs. However, it appears for non-data and
PIO commands during probe/error recovery - eg, this is what the accesses
for a set features, xfer mode command looks like:
ioread8(0001b407) = 50 read status
iowrite8(a0, 0001b406) write drive
ioread8(0001b006) = 50 read alt status
ioread8(0001b407) = 50 read status
iowrite8(0a, 0001b006) write ctrl
ioread8(0001b407) = 50 read status
iowrite8(03, 0001b401) write taskfile
iowrite8(42, 0001b402)
iowrite8(00, 0001b403)
iowrite8(00, 0001b404)
iowrite8(00, 0001b405)
iowrite8(a0, 0001b406)
ioread8(0001b407) = 50 read status
iowrite8(ef, 0001b407) write command
ioread8(0001b006) = d0 read altstatus
ioread8(0001b407) = d0 poll status
ioread8(0001b407) = d0
ioread8(0001b407) = d0
ioread8(0001b407) = d0
ioread8(0001b407) = d0
ioread8(0001b407) = 50
iowrite8(08, 0001b006) write ctrl
ioread8(0001b407) = 50 read status
ioread8(0001ac0a) = 60 read sff dma status
iowrite8(60, 0001ac0a) write sff dma status
ioread8(0001ac0a) = 60 read sff dma status
ioread8(0001b407) = 50 read status
ioread8(0001b401) = 00 read taskfile
ioread8(0001b402) = 42
ioread8(0001b403) = 00
ioread8(0001b404) = 00
ioread8(0001b405) = 00
ioread8(0001b406) = a0
ioread8(0001ac08) = 00 read sff dma control
iowrite8(00, 0001ac08) write sff dma control
ioread8(0001ac08) = 00 read sff dma control
Identify (ec) gets the same treatment. I don't have a trace for a PIO
read/write to hand at the moment to check what their behaviour is, but
I suspect the same on the grounds that I didn't notice a "please read
back the taskfile" flag being set for the set features command.
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of:
next prev parent reply other threads:[~2010-01-03 10:06 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-24 18:13 2.6.32: Promise UDMA33 card refuses to work in UDMA mode Russell King
2009-12-24 21:54 ` Russell King
2010-01-03 0:23 ` Russell King
2010-01-03 3:08 ` Robert Hancock
2010-01-03 10:05 ` Russell King [this message]
2010-01-03 11:40 ` Alan Cox
2010-01-03 22:35 ` [PATCH] Fix Promise UDMA33 IDE driver (pdc202xx_old) Russell King
2010-01-04 19:14 ` Sergei Shtylyov
2010-01-05 6:26 ` David Miller
2010-01-05 17:49 ` Russell King
2010-01-05 17:52 ` Sergei Shtylyov
2010-01-03 23:46 ` 2.6.32: Promise UDMA33 card refuses to work in UDMA mode Russell King
2010-01-04 10:37 ` Alan Cox
2010-01-04 13:30 ` Russell King
2010-01-04 15:16 ` Alan Cox
2010-01-04 15:32 ` Jeff Garzik
2010-01-04 15:44 ` Russell King
2010-01-04 15:55 ` Alan Cox
2010-01-04 16:15 ` Russell King
2010-01-04 16:48 ` Jeff Garzik
2010-01-04 17:16 ` Sergei Shtylyov
2010-01-04 15:48 ` Alan Cox
2010-01-04 15:25 ` Jeff Garzik
2010-01-04 15:42 ` Russell King
2010-01-05 2:06 ` Robert Hancock
2010-01-05 11:25 ` Alan Cox
2010-01-05 13:00 ` Jeff Garzik
2010-01-05 13:37 ` Alan Cox
2010-01-05 13:11 ` Jeff Garzik
2010-01-04 15:46 ` Alan Cox
2010-01-04 16:32 ` Jeff Garzik
2010-01-04 17:02 ` Alan Cox
2010-01-04 17:27 ` Jeff Garzik
2010-01-04 17:30 ` Russell King
2010-01-04 18:03 ` Jeff Garzik
2010-01-04 18:06 ` Russell King
2010-01-04 18:35 ` Jeff Garzik
2010-01-04 17:38 ` Alan Cox
2010-01-04 18:07 ` Jeff Garzik
2010-01-04 18:29 ` Jeff Garzik
2010-01-04 16:31 ` Bartlomiej Zolnierkiewicz
2010-01-04 17:28 ` Russell King
2010-01-04 17:39 ` Alan Cox
2010-01-04 17:46 ` Russell King
2010-01-04 18:20 ` Alan Cox
2010-01-04 17:49 ` Bartlomiej Zolnierkiewicz
2010-01-05 1:03 ` Robert Hancock
2010-01-05 10:04 ` Jeff Garzik
2010-01-05 17:44 ` Russell King
2010-01-06 0:30 ` Robert Hancock
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=20100103100545.GA26225@flint.arm.linux.org.uk \
--to=rmk@arm.linux.org.uk \
--cc=hancockrwd@gmail.com \
--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 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.