* [PATCH 6/11] ide: ide_config_drive_speed() bugfixes
@ 2007-07-22 18:30 Bartlomiej Zolnierkiewicz
2007-07-22 18:33 ` Sergei Shtylyov
0 siblings, 1 reply; 3+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2007-07-22 18:30 UTC (permalink / raw)
To: linux-ide; +Cc: Benjamin Herrenschmidt, Kou Ishizaki, Akira Gouache
* Use ->OUTBSYNC instead of ->OUTB when writing command register
(needed for scc_pata and pmac host drivers).
* Don't check DRDY bit of the status register on ATAPI devices
(ATAPI devices are free to ignore DRDY bit).
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Cc: Akira Gouache <akira2.iguchi@toshiba.co.jp>
Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
---
this patch is independent from the previous five ide-pmac patches
drivers/ide/ide-iops.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: b/drivers/ide/ide-iops.c
===================================================================
--- a/drivers/ide/ide-iops.c
+++ b/drivers/ide/ide-iops.c
@@ -822,7 +822,7 @@ int ide_config_drive_speed (ide_drive_t
hwif->OUTB(drive->ctl | 2, IDE_CONTROL_REG);
hwif->OUTB(speed, IDE_NSECTOR_REG);
hwif->OUTB(SETFEATURES_XFER, IDE_FEATURE_REG);
- hwif->OUTB(WIN_SETFEATURES, IDE_COMMAND_REG);
+ hwif->OUTBSYNC(drive, WIN_SETFEATURES, IDE_COMMAND_REG);
if ((IDE_CONTROL_REG) && (drive->quirk_list == 2))
hwif->OUTB(drive->ctl, IDE_CONTROL_REG);
udelay(1);
@@ -849,7 +849,7 @@ int ide_config_drive_speed (ide_drive_t
*/
for (i = 0; i < 10; i++) {
udelay(1);
- if (OK_STAT((stat = hwif->INB(IDE_STATUS_REG)), DRIVE_READY, BUSY_STAT|DRQ_STAT|ERR_STAT)) {
+ if (OK_STAT((stat = hwif->INB(IDE_STATUS_REG)), drive->ready_stat, BUSY_STAT|DRQ_STAT|ERR_STAT)) {
error = 0;
break;
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 6/11] ide: ide_config_drive_speed() bugfixes
2007-07-22 18:30 [PATCH 6/11] ide: ide_config_drive_speed() bugfixes Bartlomiej Zolnierkiewicz
@ 2007-07-22 18:33 ` Sergei Shtylyov
2007-07-23 21:22 ` Bartlomiej Zolnierkiewicz
0 siblings, 1 reply; 3+ messages in thread
From: Sergei Shtylyov @ 2007-07-22 18:33 UTC (permalink / raw)
To: Bartlomiej Zolnierkiewicz
Cc: linux-ide, Benjamin Herrenschmidt, Kou Ishizaki, Akira Gouache
Hello.
Bartlomiej Zolnierkiewicz wrote:
> * Use ->OUTBSYNC instead of ->OUTB when writing command register
> (needed for scc_pata and pmac host drivers).
> * Don't check DRDY bit of the status register on ATAPI devices
> (ATAPI devices are free to ignore DRDY bit).
> Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
MBR, Sergei
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 6/11] ide: ide_config_drive_speed() bugfixes
2007-07-22 18:33 ` Sergei Shtylyov
@ 2007-07-23 21:22 ` Bartlomiej Zolnierkiewicz
0 siblings, 0 replies; 3+ messages in thread
From: Bartlomiej Zolnierkiewicz @ 2007-07-23 21:22 UTC (permalink / raw)
To: Sergei Shtylyov
Cc: linux-ide, Benjamin Herrenschmidt, Kou Ishizaki, Akira Gouache
On Sunday 22 July 2007, Sergei Shtylyov wrote:
> Hello.
>
> Bartlomiej Zolnierkiewicz wrote:
>
> > * Use ->OUTBSYNC instead of ->OUTB when writing command register
> > (needed for scc_pata and pmac host drivers).
>
> > * Don't check DRDY bit of the status register on ATAPI devices
> > (ATAPI devices are free to ignore DRDY bit).
>
> > Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
>
> Acked-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
added
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2007-07-23 21:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-07-22 18:30 [PATCH 6/11] ide: ide_config_drive_speed() bugfixes Bartlomiej Zolnierkiewicz
2007-07-22 18:33 ` Sergei Shtylyov
2007-07-23 21:22 ` Bartlomiej Zolnierkiewicz
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).