Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 May 2010 14:31:53 +0000 (UTC)
From:      Nathan Whitehorn <nwhitehorn@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r208144 - projects/ppc64/sys/powerpc/powermac
Message-ID:  <201005161431.o4GEVr09027286@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: nwhitehorn
Date: Sun May 16 14:31:53 2010
New Revision: 208144
URL: http://svn.freebsd.org/changeset/base/208144

Log:
  Ignore devices on the non-primary function on the CPCHT HT root bus. This
  solves hangs probing the IO/APIC integrated into the AMD 8131 south bridge
  on the Powermac 7,2.
  
  Reported by:	Andreas Tobler

Modified:
  projects/ppc64/sys/powerpc/powermac/cpcht.c

Modified: projects/ppc64/sys/powerpc/powermac/cpcht.c
==============================================================================
--- projects/ppc64/sys/powerpc/powermac/cpcht.c	Sun May 16 12:39:17 2010	(r208143)
+++ projects/ppc64/sys/powerpc/powermac/cpcht.c	Sun May 16 14:31:53 2010	(r208144)
@@ -378,7 +378,7 @@ cpcht_read_config(device_t dev, u_int bu
 	caoff = sc->sc_data + 
 		(((((slot & 0x1f) << 3) | (func & 0x07)) << 8) | reg);
 
-	if (bus == 0 && !(sc->sc_populated_slots & (1 << slot)))
+	if (bus == 0 && (!(sc->sc_populated_slots & (1 << slot)) || func > 0))
 		return (0xffffffff);
 
 	if (bus > 0)
@@ -410,7 +410,7 @@ cpcht_write_config(device_t dev, u_int b
 	caoff = sc->sc_data + 
 		(((((slot & 0x1f) << 3) | (func & 0x07)) << 8) | reg);
 
-	if (bus == 0 && !(sc->sc_populated_slots & (1 << slot)))
+	if (bus == 0 && (!(sc->sc_populated_slots & (1 << slot)) || func > 0))
 		return;
 
 	if (bus > 0)



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