svn commit: r291456 - stable/10/sys/dev/ata/chipsets

Alexander Motin mav at FreeBSD.org
Sun Nov 29 17:14:06 UTC 2015


Author: mav
Date: Sun Nov 29 17:14:05 2015
New Revision: 291456
URL: https://svnweb.freebsd.org/changeset/base/291456

Log:
  MFC r290855: Increase reset assertion time from 10 to 100us.
  
  On my own tests I see no effect from this change, but I also can't
  reproduce the reported problem in general.
  
  PR:		127391
  PR:		204554
  Submitted by:	satz at iranger.com

Modified:
  stable/10/sys/dev/ata/chipsets/ata-intel.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/dev/ata/chipsets/ata-intel.c
==============================================================================
--- stable/10/sys/dev/ata/chipsets/ata-intel.c	Sun Nov 29 16:28:40 2015	(r291455)
+++ stable/10/sys/dev/ata/chipsets/ata-intel.c	Sun Nov 29 17:14:05 2015	(r291456)
@@ -422,7 +422,7 @@ ata_intel_reset(device_t dev)
 		mask |= (1 << smap[1]);
 	pci_write_config(parent, 0x92,
 	    pci_read_config(parent, 0x92, 2) & ~mask, 2);
-	DELAY(10);
+	DELAY(100);
 	pci_write_config(parent, 0x92,
 	    pci_read_config(parent, 0x92, 2) | mask, 2);
 


More information about the svn-src-all mailing list