linux/drivers/ata
Tejun Heo d4b2bab4f2 libata: add deadline support to prereset and reset methods
Add @deadline to prereset and reset methods and make them honor it.
ata_wait_ready() which directly takes @deadline is implemented to be
used as the wait function.  This patch is in preparation for EH timing
improvements.

* ata_wait_ready() never does busy sleep.  It's only used from EH and
  no wait in EH is that urgent.  This function also prints 'be
  patient' message automatically after 5 secs of waiting if more than
  3 secs is remaining till deadline.

* ata_bus_post_reset() now fails with error code if any of its wait
  fails.  This is important because earlier reset tries will have
  shorter timeout than the spec requires.  If a device fails to
  respond before the short timeout, reset should be retried with
  longer timeout rather than silently ignoring the device.

  There are three behavior differences.

  1. Timeout is applied to both devices at once, not separately.  This
     is more consistent with what the spec says.

  2. When a device passes devchk but fails to become ready before
     deadline.  Previouly, post_reset would just succeed and let
     device classification remove the device.  New code fails the
     reset thus causing reset retry.  After a few times, EH will give
     up disabling the port.

  3. When slave device passes devchk but fails to become accessible
     (TF-wise) after reset.  Original code disables dev1 after 30s
     timeout and continues as if the device doesn't exist, while the
     patched code fails reset.  When this happens, new code fails
     reset on whole port rather than proceeding with only the primary
     device.

  If the failing device is suffering transient problems, new code
  retries reset which is a better behavior.  If the failing device is
  actually broken, the net effect is identical to it, but not to the
  other device sharing the channel.  In the previous code, reset would
  have succeeded after 30s thus detecting the working one.  In the new
  code, reset fails and whole port gets disabled.  IMO, it's a
  pathological case anyway (broken device sharing bus with working
  one) and doesn't really matter.

* ata_bus_softreset() is changed to return error code from
  ata_bus_post_reset().  It used to return 0 unconditionally.

* Spin up waiting is to be removed and not converted to honor
  deadline.

* To be on the safe side, deadline is set to 40s for the time being.

Signed-off-by: Tejun Heo <htejun@gmail.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
2007-05-01 07:49:53 -04:00
..
ahci.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
ata_generic.c pata: cable methods 2007-04-28 14:16:01 -04:00
ata_piix.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
Kconfig libata/IDE: remove combined mode quirk 2007-04-28 14:15:59 -04:00
libata-acpi.c [libata] Disable ACPI by default; fix namespace problems 2007-03-28 01:57:37 -04:00
libata-core.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
libata-eh.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
libata-scsi.c libata: separate out ata_host_alloc() and ata_host_register() 2007-04-28 14:16:03 -04:00
libata-sff.c libata: honour host controllers that want just one host 2007-04-30 17:43:48 -07:00
libata.h libata: kill probe_ent and related helpers 2007-04-28 14:16:06 -04:00
Makefile pata_cmd640: CMD640 PCI support 2007-04-28 14:15:55 -04:00
pata_ali.c pata_ali: remove all the crap again and switch to cable_detect method 2007-04-28 14:16:00 -04:00
pata_amd.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_artop.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_atiixp.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_cmd64x.c [libata] More PATA driver ->cable_detect support 2007-04-28 14:15:57 -04:00
pata_cmd640.c drivers/ata/pata_cmd640.c: fix build with CONFIG_PM=n 2007-04-28 15:16:40 -04:00
pata_cs5520.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_cs5530.c [libata] More PATA driver ->cable_detect support 2007-04-28 14:15:57 -04:00
pata_cs5535.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_cypress.c pata: cable methods 2007-04-28 14:16:01 -04:00
pata_efar.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_hpt3x2n.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_hpt3x3.c [libata] More PATA driver ->cable_detect support 2007-04-28 14:15:57 -04:00
pata_hpt37x.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_hpt366.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_isapnp.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_it821x.c [libata] Update several PATA drivers for new ->cable_detect hook 2007-04-28 14:15:56 -04:00
pata_it8213.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_ixp4xx_cf.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_jmicron.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_legacy.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_marvell.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_mpc52xx.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_mpiix.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_netcell.c pata_netcell: re-remove all the crud 2007-04-28 14:16:00 -04:00
pata_ns87410.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_oldpiix.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_opti.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_optidma.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_pcmcia.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_pdc202xx_old.c [libata] Update several PATA drivers for new ->cable_detect hook 2007-04-28 14:15:56 -04:00
pata_pdc2027x.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_platform.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_qdi.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_radisys.c pata_radisys: support cable_detect 2007-04-28 14:15:57 -04:00
pata_rz1000.c pata_rz1000: support cable_detect 2007-04-28 14:15:57 -04:00
pata_sc1200.c pata_sc1200: restore cable type 2007-04-28 14:15:57 -04:00
pata_scc.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
pata_serverworks.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_sil680.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_sis.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_sl82c105.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_triflex.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_via.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
pata_winbond.c SPIN_LOCK_UNLOCKED cleanup in drivers/ata/pata_winbond.c 2007-04-28 15:16:40 -04:00
pdc_adma.c libata: convert the remaining PATA drivers to new init model 2007-04-28 14:16:06 -04:00
sata_inic162x.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
sata_mv.c libata: convert the remaining SATA drivers to new init model 2007-04-28 14:16:06 -04:00
sata_nv.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
sata_promise.c libata: convert drivers with combined SATA/PATA ports to new init model 2007-04-28 14:16:03 -04:00
sata_promise.h Move libata to drivers/ata. 2006-08-10 07:31:37 -04:00
sata_qstor.c libata: convert the remaining SATA drivers to new init model 2007-04-28 14:16:06 -04:00
sata_sil24.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
sata_sil.c libata: convert the remaining SATA drivers to new init model 2007-04-28 14:16:06 -04:00
sata_sis.c libata: convert ata_pci_init_native_mode() users to new init model 2007-04-28 14:16:03 -04:00
sata_svw.c libata: convert the remaining SATA drivers to new init model 2007-04-28 14:16:06 -04:00
sata_sx4.c libata: convert the remaining SATA drivers to new init model 2007-04-28 14:16:06 -04:00
sata_uli.c libata: convert ata_pci_init_native_mode() users to new init model 2007-04-28 14:16:03 -04:00
sata_via.c libata: add deadline support to prereset and reset methods 2007-05-01 07:49:53 -04:00
sata_vsc.c libata: convert the remaining SATA drivers to new init model 2007-04-28 14:16:06 -04:00
sis.h SiS warning fixes 2007-02-21 04:58:17 -05:00