소스 검색

[PATCH] x86_64: Search K8 devices on more devices.

arch/x86_64/kernel/aperture.c: The search for the AGP bridge has been
extended to search for all the 256 buses instead of the first 32. This
is required since on a some systems, the bridge may be located on a bus
much farther than the first 32. By searching all 256 buses, we guarantee
that the search succeeds on such systems.

arch/x86_64/kernel/pci-gart.c: The search for the Northbridge is not
limited to just bus 0 anymore. This is required because on certain
systems, we may not find one on bus 0.

Signed-off-by: Navin Boppuri <navin.boppuri@newisys.com>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Navin Boppuri 19 년 전
부모
커밋
9c01dda02f
2개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      arch/x86_64/kernel/aperture.c
  2. 1 3
      arch/x86_64/kernel/pci-gart.c

+ 1 - 1
arch/x86_64/kernel/aperture.c

@@ -161,7 +161,7 @@ static __u32 __init search_agp_bridge(u32 *order, int *valid_agp)
 	int num, slot, func;
 	int num, slot, func;
 
 
 	/* Poor man's PCI discovery */
 	/* Poor man's PCI discovery */
-	for (num = 0; num < 32; num++) { 
+	for (num = 0; num < 256; num++) { 
 		for (slot = 0; slot < 32; slot++) { 
 		for (slot = 0; slot < 32; slot++) { 
 			for (func = 0; func < 8; func++) { 
 			for (func = 0; func < 8; func++) { 
 				u32 class, cap;
 				u32 class, cap;

+ 1 - 3
arch/x86_64/kernel/pci-gart.c

@@ -65,9 +65,7 @@ static u32 gart_unmapped_entry;
 
 
 #define for_all_nb(dev) \
 #define for_all_nb(dev) \
 	dev = NULL;	\
 	dev = NULL;	\
-	while ((dev = pci_get_device(PCI_VENDOR_ID_AMD, 0x1103, dev))!=NULL)\
-	     if (dev->bus->number == 0 && 				     \
-		    (PCI_SLOT(dev->devfn) >= 24) && (PCI_SLOT(dev->devfn) <= 31))
+	while ((dev = pci_get_device(PCI_VENDOR_ID_AMD, 0x1103, dev))!=NULL)
 
 
 static struct pci_dev *northbridges[MAX_NB];
 static struct pci_dev *northbridges[MAX_NB];
 static u32 northbridge_flush_word[MAX_NB];
 static u32 northbridge_flush_word[MAX_NB];