Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Jan 2011 19:55:30 +0000 (UTC)
From:      Pyun YongHyeon <yongari@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org
Subject:   svn commit: r217233 - releng/8.2/sys/dev/bge
Message-ID:  <201101101955.p0AJtUdk091568@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yongari
Date: Mon Jan 10 19:55:30 2011
New Revision: 217233
URL: http://svn.freebsd.org/changeset/base/217233

Log:
  MFC r217226:
    Apply DMA address space restriction to controllers that have 4GB
    DMA boundary bug and runs with PCI-X mode.  watchdog timeout was
    observed on BCM5704 which lives behind certain PCI-X bridge(e.g.
    AMD 8131 PCI-X bridge).  It's still not clear whether the root
    cause came from that PCI-X bridge or not. The watchdog timeout
    indicates the issue is in TX path. If the bridge reorders TX
    mailbox write accesses it would generate all kinds of problems but
    I'm not sure.  This should be revisited.
  
    Early MFC requested by re@ for inclusion in 8.2-RC2/7.4-RC2.
  
    Tested by:	Michael L. Squires (mikes <> siralan dot org)
    Approved by:	re (kensmith)

Modified:
  releng/8.2/sys/dev/bge/if_bge.c
Directory Properties:
  releng/8.2/sys/   (props changed)
  releng/8.2/sys/amd64/include/xen/   (props changed)
  releng/8.2/sys/cddl/contrib/opensolaris/   (props changed)
  releng/8.2/sys/contrib/dev/acpica/   (props changed)
  releng/8.2/sys/contrib/pf/   (props changed)

Modified: releng/8.2/sys/dev/bge/if_bge.c
==============================================================================
--- releng/8.2/sys/dev/bge/if_bge.c	Mon Jan 10 19:49:18 2011	(r217232)
+++ releng/8.2/sys/dev/bge/if_bge.c	Mon Jan 10 19:55:30 2011	(r217233)
@@ -2479,8 +2479,18 @@ bge_dma_alloc(struct bge_softc *sc)
 
 	/* Create parent tag for buffers. */
 	boundary = 0;
-	if ((sc->bge_flags & BGE_FLAG_4G_BNDRY_BUG) != 0)
+	if ((sc->bge_flags & BGE_FLAG_4G_BNDRY_BUG) != 0) {
 		boundary = BGE_DMA_BNDRY;
+		/*
+		 * XXX
+		 * watchdog timeout issue was observed on BCM5704 which
+		 * lives behind PCI-X bridge(e.g AMD 8131 PCI-X bridge).
+		 * Limiting DMA address space to 32bits seems to address
+		 * it.
+		 */
+		if (sc->bge_flags & BGE_FLAG_PCIX)
+			lowaddr = BUS_SPACE_MAXADDR_32BIT;
+	}
 	error = bus_dma_tag_create(bus_get_dma_tag(sc->bge_dev),
 	    1, boundary, lowaddr, BUS_SPACE_MAXADDR, NULL,
 	    NULL, BUS_SPACE_MAXSIZE_32BIT, 0, BUS_SPACE_MAXSIZE_32BIT,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201101101955.p0AJtUdk091568>