libata: always use polling SETXFER
authorTejun Heo <htejun@gmail.com>
Sun, 27 May 2007 13:10:40 +0000 (15:10 +0200)
committerJeff Garzik <jeff@garzik.org>
Mon, 4 Jun 2007 20:48:34 +0000 (16:48 -0400)
commit464cf177df7727efcc5506322fc5d0c8b896f545
tree7b6546aab9c5a7f326ddc27c7a456287172f3c64
parenta862b5c8cd5d847779a049a5fc8cf5b1e6f5fa07
libata: always use polling SETXFER

Several people have reported LITE-ON LTR-48246S detection failed
because SETXFER fails.  It seems the device raises IRQ too early after
SETXFER.  This is controller independent.  The same problem has been
reported for different controllers.

So, now we have pata_via where the controller raises IRQ before it's
ready after SETXFER and a device which does similar thing.  This patch
makes libata always execute SETXFER via polling.  As this only happens
during EH, performance impact is nil.  Setting ATA_TFLAG_POLLING is
also moved from issue hot path to ata_dev_set_xfermode() - the only
place where SETXFER can be issued.

Note that ATA_TFLAG_POLLING applies only to drivers which implement
SFF TF interface and use libata HSM.  More advanced controllers ignore
the flag.  This doesn't matter for this fix as SFF TF controllers are
the problematic ones.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
drivers/ata/libata-core.c
drivers/ata/pata_via.c
include/linux/libata.h