Re: amd64/128686: commit references a PR

View: New views
3 Messages — Rating Filter:   Alert me  

Re: amd64/128686: commit references a PR

by dfilter service :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The following reply was made to PR amd64/128686; it has been noted by GNATS.

From: dfilter@... (dfilter service)
To: bug-followup@...
Cc:  
Subject: Re: amd64/128686: commit references a PR
Date: Mon, 26 Oct 2009 08:41:23 +0000 (UTC)

 Author: mav
 Date: Mon Oct 26 08:41:10 2009
 New Revision: 198479
 URL: http://svn.freebsd.org/changeset/base/198479
 
 Log:
   Fix SATA on nVidia MCP55 chipset. It needs some short time to allow BAR(5)
   memory access.
   
   PR: amd64/128686, amd64/132372, amd64/139156
   MFC after: 3 days
 
 Modified:
   head/sys/dev/ata/chipsets/ata-nvidia.c
 
 Modified: head/sys/dev/ata/chipsets/ata-nvidia.c
 ==============================================================================
 --- head/sys/dev/ata/chipsets/ata-nvidia.c Mon Oct 26 07:43:41 2009 (r198478)
 +++ head/sys/dev/ata/chipsets/ata-nvidia.c Mon Oct 26 08:41:10 2009 (r198479)
 @@ -165,7 +165,8 @@ ata_nvidia_chipinit(device_t dev)
 
     /* enable control access */
     pci_write_config(dev, 0x50, pci_read_config(dev, 0x50, 1) | 0x04,1);
 -
 +    /* MCP55 seems to need some time to allow r_res2 read. */
 +    DELAY(10);
     if (ctlr->chip->cfg1 & NVQ) {
  /* clear interrupt status */
  ATA_OUTL(ctlr->r_res2, offset, 0x00ff00ff);
 _______________________________________________
 svn-src-all@... mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@..."
 
_______________________________________________
freebsd-amd64@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@..."

Parent Message unknown Re: amd64/128686: commit references a PR

by dfilter service :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The following reply was made to PR amd64/128686; it has been noted by GNATS.

From: dfilter@... (dfilter service)
To: bug-followup@...
Cc:  
Subject: Re: amd64/128686: commit references a PR
Date: Thu, 29 Oct 2009 09:45:58 +0000 (UTC)

 Author: mav
 Date: Thu Oct 29 09:45:48 2009
 New Revision: 198572
 URL: http://svn.freebsd.org/changeset/base/198572
 
 Log:
   Fix SATA on nVidia MCP55 chipset. It needs some short time to allow BAR(5)
   memory access.
   
   PR: amd64/128686, amd64/132372, amd64/139156
 
 Modified:
   stable/8/sys/   (props changed)
   stable/8/sys/amd64/include/xen/   (props changed)
   stable/8/sys/cddl/contrib/opensolaris/   (props changed)
   stable/8/sys/contrib/dev/acpica/   (props changed)
   stable/8/sys/contrib/pf/   (props changed)
   stable/8/sys/dev/ata/chipsets/ata-nvidia.c
   stable/8/sys/dev/xen/xenpci/   (props changed)
 
 Modified: stable/8/sys/dev/ata/chipsets/ata-nvidia.c
 ==============================================================================
 --- stable/8/sys/dev/ata/chipsets/ata-nvidia.c Thu Oct 29 09:45:05 2009 (r198571)
 +++ stable/8/sys/dev/ata/chipsets/ata-nvidia.c Thu Oct 29 09:45:48 2009 (r198572)
 @@ -165,7 +165,8 @@ ata_nvidia_chipinit(device_t dev)
 
     /* enable control access */
     pci_write_config(dev, 0x50, pci_read_config(dev, 0x50, 1) | 0x04,1);
 -
 +    /* MCP55 seems to need some time to allow r_res2 read. */
 +    DELAY(10);
     if (ctlr->chip->cfg1 & NVQ) {
  /* clear interrupt status */
  ATA_OUTL(ctlr->r_res2, offset, 0x00ff00ff);
 _______________________________________________
 svn-src-all@... mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@..."
 
_______________________________________________
freebsd-amd64@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@..."

Parent Message unknown Re: amd64/128686: commit references a PR

by dfilter service :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

The following reply was made to PR amd64/128686; it has been noted by GNATS.

From: dfilter@... (dfilter service)
To: bug-followup@...
Cc:  
Subject: Re: amd64/128686: commit references a PR
Date: Thu, 29 Oct 2009 11:52:40 +0000 (UTC)

 Author: mav
 Date: Thu Oct 29 11:52:26 2009
 New Revision: 198580
 URL: http://svn.freebsd.org/changeset/base/198580
 
 Log:
   MFC rev. 198479:
   Fix SATA on nVidia MCP55 chipset. It needs some short time to allow
   BAR(5) memory access.
   
   PR: amd64/128686, amd64/132372, amd64/139156
   Approved by: re (kib)
 
 Modified:
   releng/8.0/sys/   (props changed)
   releng/8.0/sys/amd64/include/xen/   (props changed)
   releng/8.0/sys/cddl/contrib/opensolaris/   (props changed)
   releng/8.0/sys/contrib/dev/acpica/   (props changed)
   releng/8.0/sys/contrib/pf/   (props changed)
   releng/8.0/sys/dev/ata/chipsets/ata-nvidia.c
   releng/8.0/sys/dev/xen/xenpci/   (props changed)
 
 Modified: releng/8.0/sys/dev/ata/chipsets/ata-nvidia.c
 ==============================================================================
 --- releng/8.0/sys/dev/ata/chipsets/ata-nvidia.c Thu Oct 29 11:00:39 2009 (r198579)
 +++ releng/8.0/sys/dev/ata/chipsets/ata-nvidia.c Thu Oct 29 11:52:26 2009 (r198580)
 @@ -165,7 +165,8 @@ ata_nvidia_chipinit(device_t dev)
 
     /* enable control access */
     pci_write_config(dev, 0x50, pci_read_config(dev, 0x50, 1) | 0x04,1);
 -
 +    /* MCP55 seems to need some time to allow r_res2 read. */
 +    DELAY(10);
     if (ctlr->chip->cfg1 & NVQ) {
  /* clear interrupt status */
  ATA_OUTL(ctlr->r_res2, offset, 0x00ff00ff);
 _______________________________________________
 svn-src-all@... mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@..."
 
_______________________________________________
freebsd-amd64@... mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-amd64
To unsubscribe, send any mail to "freebsd-amd64-unsubscribe@..."