diff options
Diffstat (limited to 'arch/powerpc/platforms/44x')
-rw-r--r-- | arch/powerpc/platforms/44x/bamboo.c | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/ebony.c | 3 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/katmai.c | 3 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/sequoia.c | 5 | ||||
-rw-r--r-- | arch/powerpc/platforms/44x/taishan.c | 2 |
5 files changed, 16 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/44x/bamboo.c b/arch/powerpc/platforms/44x/bamboo.c index be23f112184f..553c9f18aa77 100644 --- a/arch/powerpc/platforms/44x/bamboo.c +++ b/arch/powerpc/platforms/44x/bamboo.c | |||
@@ -21,6 +21,8 @@ | |||
21 | #include <asm/udbg.h> | 21 | #include <asm/udbg.h> |
22 | #include <asm/time.h> | 22 | #include <asm/time.h> |
23 | #include <asm/uic.h> | 23 | #include <asm/uic.h> |
24 | #include <asm/pci-bridge.h> | ||
25 | |||
24 | #include "44x.h" | 26 | #include "44x.h" |
25 | 27 | ||
26 | static struct of_device_id bamboo_of_bus[] = { | 28 | static struct of_device_id bamboo_of_bus[] = { |
@@ -48,6 +50,8 @@ static int __init bamboo_probe(void) | |||
48 | if (!of_flat_dt_is_compatible(root, "amcc,bamboo")) | 50 | if (!of_flat_dt_is_compatible(root, "amcc,bamboo")) |
49 | return 0; | 51 | return 0; |
50 | 52 | ||
53 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
54 | |||
51 | return 1; | 55 | return 1; |
52 | } | 56 | } |
53 | 57 | ||
diff --git a/arch/powerpc/platforms/44x/ebony.c b/arch/powerpc/platforms/44x/ebony.c index 6cd3476767cc..262f300cc10d 100644 --- a/arch/powerpc/platforms/44x/ebony.c +++ b/arch/powerpc/platforms/44x/ebony.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <asm/udbg.h> | 24 | #include <asm/udbg.h> |
25 | #include <asm/time.h> | 25 | #include <asm/time.h> |
26 | #include <asm/uic.h> | 26 | #include <asm/uic.h> |
27 | #include <asm/pci-bridge.h> | ||
27 | 28 | ||
28 | #include "44x.h" | 29 | #include "44x.h" |
29 | 30 | ||
@@ -55,6 +56,8 @@ static int __init ebony_probe(void) | |||
55 | if (!of_flat_dt_is_compatible(root, "ibm,ebony")) | 56 | if (!of_flat_dt_is_compatible(root, "ibm,ebony")) |
56 | return 0; | 57 | return 0; |
57 | 58 | ||
59 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
60 | |||
58 | return 1; | 61 | return 1; |
59 | } | 62 | } |
60 | 63 | ||
diff --git a/arch/powerpc/platforms/44x/katmai.c b/arch/powerpc/platforms/44x/katmai.c index fd737d10f6e4..158ca0558a00 100644 --- a/arch/powerpc/platforms/44x/katmai.c +++ b/arch/powerpc/platforms/44x/katmai.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <asm/udbg.h> | 21 | #include <asm/udbg.h> |
22 | #include <asm/time.h> | 22 | #include <asm/time.h> |
23 | #include <asm/uic.h> | 23 | #include <asm/uic.h> |
24 | #include <asm/pci-bridge.h> | ||
24 | 25 | ||
25 | #include "44x.h" | 26 | #include "44x.h" |
26 | 27 | ||
@@ -49,6 +50,8 @@ static int __init katmai_probe(void) | |||
49 | if (!of_flat_dt_is_compatible(root, "amcc,katmai")) | 50 | if (!of_flat_dt_is_compatible(root, "amcc,katmai")) |
50 | return 0; | 51 | return 0; |
51 | 52 | ||
53 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
54 | |||
52 | return 1; | 55 | return 1; |
53 | } | 56 | } |
54 | 57 | ||
diff --git a/arch/powerpc/platforms/44x/sequoia.c b/arch/powerpc/platforms/44x/sequoia.c index 21a9dd14f297..5185b5cb48c9 100644 --- a/arch/powerpc/platforms/44x/sequoia.c +++ b/arch/powerpc/platforms/44x/sequoia.c | |||
@@ -21,7 +21,8 @@ | |||
21 | #include <asm/udbg.h> | 21 | #include <asm/udbg.h> |
22 | #include <asm/time.h> | 22 | #include <asm/time.h> |
23 | #include <asm/uic.h> | 23 | #include <asm/uic.h> |
24 | #include "44x.h" | 24 | #include <asm/pci-bridge.h> |
25 | |||
25 | 26 | ||
26 | static struct of_device_id sequoia_of_bus[] = { | 27 | static struct of_device_id sequoia_of_bus[] = { |
27 | { .compatible = "ibm,plb4", }, | 28 | { .compatible = "ibm,plb4", }, |
@@ -48,6 +49,8 @@ static int __init sequoia_probe(void) | |||
48 | if (!of_flat_dt_is_compatible(root, "amcc,sequoia")) | 49 | if (!of_flat_dt_is_compatible(root, "amcc,sequoia")) |
49 | return 0; | 50 | return 0; |
50 | 51 | ||
52 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
53 | |||
51 | return 1; | 54 | return 1; |
52 | } | 55 | } |
53 | 56 | ||
diff --git a/arch/powerpc/platforms/44x/taishan.c b/arch/powerpc/platforms/44x/taishan.c index e3b7c7023336..ca71666bde27 100644 --- a/arch/powerpc/platforms/44x/taishan.c +++ b/arch/powerpc/platforms/44x/taishan.c | |||
@@ -60,6 +60,8 @@ static int __init taishan_probe(void) | |||
60 | if (!of_flat_dt_is_compatible(root, "amcc,taishan")) | 60 | if (!of_flat_dt_is_compatible(root, "amcc,taishan")) |
61 | return 0; | 61 | return 0; |
62 | 62 | ||
63 | ppc_pci_flags = PPC_PCI_REASSIGN_ALL_RSRC; | ||
64 | |||
63 | return 1; | 65 | return 1; |
64 | } | 66 | } |
65 | 67 | ||