From: Jeff Garzik <jeff@garzik.org>
To: Alan <alan@lxorguk.ukuu.org.uk>
Cc: linux-ide@vger.kernel.org, linux-kernel@vger.kernel.org,
Andrew Morton <akpm@linux-foundation.org>,
Linus Torvalds <torvalds@linux-foundation.org>
Subject: Re: [PATCH] libata: Cable detection fixes
Date: Fri, 02 Mar 2007 17:48:16 -0500 [thread overview]
Message-ID: <45E8A9B0.2070205@garzik.org> (raw)
In-Reply-To: <20070301173003.5d5ab4a6@lxorguk.ukuu.org.uk>
Alan wrote:
> 2.6.21-rc has horrible problems with libata and PATA cable types (and
> thus speeds). This occurs because Tejun fixed a pile of other bugs and
> we now do cable detect enforcement for drive side detection properly.
>
> Unfortunately we don't do the process around cable detection right. Tejun
> identified the problem and pointed to the right Annex in the spec, this patch
> implements the needed changes.
>
> The basic requirement is that we have to identify the slave before the
> master.
>
> The patch switches the identify order so that we can do the drive side
> detection correctly.
> @@ -1850,8 +1900,11 @@
> for (i = 0; i < ATA_MAX_DEVICES; i++)
> ap->device[i].pio_mode = XFER_PIO_0;
>
> - /* read IDENTIFY page and configure devices */
> - for (i = 0; i < ATA_MAX_DEVICES; i++) {
> + /* read IDENTIFY page and configure devices. We have to do the identify
> + specific sequence bass-ackwards so that PDIAG- is released by
> + the slave device */
> +
> + for (i = ATA_MAX_DEVICES - 1; i >= 0; i--) {
> dev = &ap->device[i];
>
> if (tries[i])
> @@ -1864,6 +1917,19 @@
> dev->id);
> if (rc)
> goto fail;
> + }
> +
> + /* After the identify sequence we can now set up the devices. We do
> + this in the normal order so that the user doesn't get confused */
> +
> + for(i = 0; i < ATA_MAX_DEVICES; i++) {
> + dev = &ap->device[i];
> + if (!ata_dev_enabled(dev))
> + continue;
>
> ap->eh_context.i.flags |= ATA_EHI_PRINTINFO;
> rc = ata_dev_configure(dev);
applied this part
next prev parent reply other threads:[~2007-03-02 22:48 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-01 17:30 [PATCH] libata: Cable detection fixes Alan
2007-03-02 1:24 ` Linus Torvalds
2007-03-02 1:33 ` Jeff Garzik
2007-03-02 6:35 ` Michal Jaegermann
2007-03-02 12:52 ` Alan Cox
2007-03-02 1:26 ` Jeff Garzik
2007-03-02 12:45 ` Alan Cox
2007-03-02 22:50 ` Jeff Garzik
2007-03-02 22:48 ` Jeff Garzik [this message]
2007-03-03 19:35 ` Paul Rolland
2007-03-03 19:35 ` Paul Rolland
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=45E8A9B0.2070205@garzik.org \
--to=jeff@garzik.org \
--cc=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@linux-foundation.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.