diff options
23 files changed, 60 insertions, 42 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 5c10af66fb51..ad6b1c084fe3 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -313,7 +313,7 @@ config ARCH_ENABLE_MEMORY_HOTREMOVE | |||
313 | 313 | ||
314 | config KEXEC | 314 | config KEXEC |
315 | bool "kexec system call (EXPERIMENTAL)" | 315 | bool "kexec system call (EXPERIMENTAL)" |
316 | depends on (PPC_PRPMC2800 || PPC_MULTIPLATFORM) && EXPERIMENTAL | 316 | depends on BOOK3S && EXPERIMENTAL |
317 | help | 317 | help |
318 | kexec is a system call that implements the ability to shutdown your | 318 | kexec is a system call that implements the ability to shutdown your |
319 | current kernel, and to start another kernel. It is like a reboot | 319 | current kernel, and to start another kernel. It is like a reboot |
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug index 08f7cc0a1953..22091bbfdc9b 100644 --- a/arch/powerpc/Kconfig.debug +++ b/arch/powerpc/Kconfig.debug | |||
@@ -129,7 +129,7 @@ config BDI_SWITCH | |||
129 | 129 | ||
130 | config BOOTX_TEXT | 130 | config BOOTX_TEXT |
131 | bool "Support for early boot text console (BootX or OpenFirmware only)" | 131 | bool "Support for early boot text console (BootX or OpenFirmware only)" |
132 | depends on PPC_OF && PPC_MULTIPLATFORM | 132 | depends on PPC_OF && PPC_BOOK3S |
133 | help | 133 | help |
134 | Say Y here to see progress messages from the boot firmware in text | 134 | Say Y here to see progress messages from the boot firmware in text |
135 | mode. Requires either BootX or Open Firmware. | 135 | mode. Requires either BootX or Open Firmware. |
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index dfec3d2790b2..71901fbda4a5 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
@@ -75,7 +75,7 @@ obj-y += time.o prom.o traps.o setup-common.o \ | |||
75 | obj-$(CONFIG_PPC32) += entry_32.o setup_32.o | 75 | obj-$(CONFIG_PPC32) += entry_32.o setup_32.o |
76 | obj-$(CONFIG_PPC64) += dma-iommu.o iommu.o | 76 | obj-$(CONFIG_PPC64) += dma-iommu.o iommu.o |
77 | obj-$(CONFIG_KGDB) += kgdb.o | 77 | obj-$(CONFIG_KGDB) += kgdb.o |
78 | obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o | 78 | obj-$(CONFIG_PPC_OF_BOOT_TRAMPOLINE) += prom_init.o |
79 | obj-$(CONFIG_MODULES) += ppc_ksyms.o | 79 | obj-$(CONFIG_MODULES) += ppc_ksyms.o |
80 | obj-$(CONFIG_BOOTX_TEXT) += btext.o | 80 | obj-$(CONFIG_BOOTX_TEXT) += btext.o |
81 | obj-$(CONFIG_SMP) += smp.o | 81 | obj-$(CONFIG_SMP) += smp.o |
diff --git a/arch/powerpc/kernel/head_32.S b/arch/powerpc/kernel/head_32.S index a1c4cfd25ded..f8c2e6b6f457 100644 --- a/arch/powerpc/kernel/head_32.S +++ b/arch/powerpc/kernel/head_32.S | |||
@@ -108,18 +108,21 @@ __start: | |||
108 | * because OF may have I/O devices mapped into that area | 108 | * because OF may have I/O devices mapped into that area |
109 | * (particularly on CHRP). | 109 | * (particularly on CHRP). |
110 | */ | 110 | */ |
111 | #ifdef CONFIG_PPC_MULTIPLATFORM | ||
112 | cmpwi 0,r5,0 | 111 | cmpwi 0,r5,0 |
113 | beq 1f | 112 | beq 1f |
114 | 113 | ||
114 | #ifdef CONFIG_PPC_OF_BOOT_TRAMPOLINE | ||
115 | /* find out where we are now */ | 115 | /* find out where we are now */ |
116 | bcl 20,31,$+4 | 116 | bcl 20,31,$+4 |
117 | 0: mflr r8 /* r8 = runtime addr here */ | 117 | 0: mflr r8 /* r8 = runtime addr here */ |
118 | addis r8,r8,(_stext - 0b)@ha | 118 | addis r8,r8,(_stext - 0b)@ha |
119 | addi r8,r8,(_stext - 0b)@l /* current runtime base addr */ | 119 | addi r8,r8,(_stext - 0b)@l /* current runtime base addr */ |
120 | bl prom_init | 120 | bl prom_init |
121 | #endif /* CONFIG_PPC_OF_BOOT_TRAMPOLINE */ | ||
122 | |||
123 | /* We never return. We also hit that trap if trying to boot | ||
124 | * from OF while CONFIG_PPC_OF_BOOT_TRAMPOLINE isn't selected */ | ||
121 | trap | 125 | trap |
122 | #endif | ||
123 | 126 | ||
124 | /* | 127 | /* |
125 | * Check for BootX signature when supporting PowerMac and branch to | 128 | * Check for BootX signature when supporting PowerMac and branch to |
diff --git a/arch/powerpc/kernel/head_64.S b/arch/powerpc/kernel/head_64.S index ebaedafc8e67..50ef505b8fb6 100644 --- a/arch/powerpc/kernel/head_64.S +++ b/arch/powerpc/kernel/head_64.S | |||
@@ -1360,6 +1360,7 @@ _GLOBAL(__start_initialization_multiplatform) | |||
1360 | b .__after_prom_start | 1360 | b .__after_prom_start |
1361 | 1361 | ||
1362 | _INIT_STATIC(__boot_from_prom) | 1362 | _INIT_STATIC(__boot_from_prom) |
1363 | #ifdef CONFIG_PPC_OF_BOOT_TRAMPOLINE | ||
1363 | /* Save parameters */ | 1364 | /* Save parameters */ |
1364 | mr r31,r3 | 1365 | mr r31,r3 |
1365 | mr r30,r4 | 1366 | mr r30,r4 |
@@ -1390,7 +1391,10 @@ _INIT_STATIC(__boot_from_prom) | |||
1390 | /* Do all of the interaction with OF client interface */ | 1391 | /* Do all of the interaction with OF client interface */ |
1391 | mr r8,r26 | 1392 | mr r8,r26 |
1392 | bl .prom_init | 1393 | bl .prom_init |
1393 | /* We never return */ | 1394 | #endif /* #CONFIG_PPC_OF_BOOT_TRAMPOLINE */ |
1395 | |||
1396 | /* We never return. We also hit that trap if trying to boot | ||
1397 | * from OF while CONFIG_PPC_OF_BOOT_TRAMPOLINE isn't selected */ | ||
1394 | trap | 1398 | trap |
1395 | 1399 | ||
1396 | _STATIC(__after_prom_start) | 1400 | _STATIC(__after_prom_start) |
diff --git a/arch/powerpc/platforms/512x/Kconfig b/arch/powerpc/platforms/512x/Kconfig index 326852c78b8f..4dac9b0525a4 100644 --- a/arch/powerpc/platforms/512x/Kconfig +++ b/arch/powerpc/platforms/512x/Kconfig | |||
@@ -12,7 +12,7 @@ config PPC_MPC5121 | |||
12 | 12 | ||
13 | config MPC5121_ADS | 13 | config MPC5121_ADS |
14 | bool "Freescale MPC5121E ADS" | 14 | bool "Freescale MPC5121E ADS" |
15 | depends on PPC_MULTIPLATFORM && PPC32 | 15 | depends on 6xx |
16 | select DEFAULT_UIMAGE | 16 | select DEFAULT_UIMAGE |
17 | select PPC_MPC5121 | 17 | select PPC_MPC5121 |
18 | select MPC5121_ADS_CPLD | 18 | select MPC5121_ADS_CPLD |
@@ -21,7 +21,7 @@ config MPC5121_ADS | |||
21 | 21 | ||
22 | config MPC5121_GENERIC | 22 | config MPC5121_GENERIC |
23 | bool "Generic support for simple MPC5121 based boards" | 23 | bool "Generic support for simple MPC5121 based boards" |
24 | depends on PPC_MULTIPLATFORM && PPC32 | 24 | depends on 6xx |
25 | select DEFAULT_UIMAGE | 25 | select DEFAULT_UIMAGE |
26 | select PPC_MPC5121 | 26 | select PPC_MPC5121 |
27 | help | 27 | help |
diff --git a/arch/powerpc/platforms/52xx/Kconfig b/arch/powerpc/platforms/52xx/Kconfig index 0465e5b36e6a..e0b9454ae691 100644 --- a/arch/powerpc/platforms/52xx/Kconfig +++ b/arch/powerpc/platforms/52xx/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config PPC_MPC52xx | 1 | config PPC_MPC52xx |
2 | bool "52xx-based boards" | 2 | bool "52xx-based boards" |
3 | depends on PPC_MULTIPLATFORM && PPC32 | 3 | depends on 6xx |
4 | select PPC_CLOCK | 4 | select PPC_CLOCK |
5 | select PPC_PCI_CHOICE | 5 | select PPC_PCI_CHOICE |
6 | 6 | ||
diff --git a/arch/powerpc/platforms/82xx/Kconfig b/arch/powerpc/platforms/82xx/Kconfig index 30f008b2f92e..7c7df4003820 100644 --- a/arch/powerpc/platforms/82xx/Kconfig +++ b/arch/powerpc/platforms/82xx/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | menuconfig PPC_82xx | 1 | menuconfig PPC_82xx |
2 | bool "82xx-based boards (PQ II)" | 2 | bool "82xx-based boards (PQ II)" |
3 | depends on 6xx && PPC_MULTIPLATFORM | 3 | depends on 6xx |
4 | 4 | ||
5 | if PPC_82xx | 5 | if PPC_82xx |
6 | 6 | ||
diff --git a/arch/powerpc/platforms/83xx/Kconfig b/arch/powerpc/platforms/83xx/Kconfig index 83c664afc897..437d29a59d72 100644 --- a/arch/powerpc/platforms/83xx/Kconfig +++ b/arch/powerpc/platforms/83xx/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | menuconfig PPC_83xx | 1 | menuconfig PPC_83xx |
2 | bool "83xx-based boards" | 2 | bool "83xx-based boards" |
3 | depends on 6xx && PPC_MULTIPLATFORM | 3 | depends on 6xx |
4 | select PPC_UDBG_16550 | 4 | select PPC_UDBG_16550 |
5 | select PPC_PCI_CHOICE | 5 | select PPC_PCI_CHOICE |
6 | select FSL_PCI if PCI | 6 | select FSL_PCI if PCI |
diff --git a/arch/powerpc/platforms/86xx/Kconfig b/arch/powerpc/platforms/86xx/Kconfig index fa276c689cf9..349278450736 100644 --- a/arch/powerpc/platforms/86xx/Kconfig +++ b/arch/powerpc/platforms/86xx/Kconfig | |||
@@ -1,7 +1,7 @@ | |||
1 | config PPC_86xx | 1 | config PPC_86xx |
2 | menuconfig PPC_86xx | 2 | menuconfig PPC_86xx |
3 | bool "86xx-based boards" | 3 | bool "86xx-based boards" |
4 | depends on 6xx && PPC_MULTIPLATFORM | 4 | depends on 6xx |
5 | select FSL_SOC | 5 | select FSL_SOC |
6 | select ALTIVEC | 6 | select ALTIVEC |
7 | help | 7 | help |
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig index b4ab3728653e..68b9b8fd9f85 100644 --- a/arch/powerpc/platforms/Kconfig +++ b/arch/powerpc/platforms/Kconfig | |||
@@ -1,14 +1,5 @@ | |||
1 | menu "Platform support" | 1 | menu "Platform support" |
2 | 2 | ||
3 | config PPC_MULTIPLATFORM | ||
4 | bool | ||
5 | depends on PPC64 || 6xx | ||
6 | default y | ||
7 | |||
8 | config CLASSIC32 | ||
9 | def_bool y | ||
10 | depends on 6xx && PPC_MULTIPLATFORM | ||
11 | |||
12 | source "arch/powerpc/platforms/pseries/Kconfig" | 3 | source "arch/powerpc/platforms/pseries/Kconfig" |
13 | source "arch/powerpc/platforms/iseries/Kconfig" | 4 | source "arch/powerpc/platforms/iseries/Kconfig" |
14 | source "arch/powerpc/platforms/chrp/Kconfig" | 5 | source "arch/powerpc/platforms/chrp/Kconfig" |
@@ -32,12 +23,24 @@ source "arch/powerpc/platforms/amigaone/Kconfig" | |||
32 | 23 | ||
33 | config PPC_NATIVE | 24 | config PPC_NATIVE |
34 | bool | 25 | bool |
35 | depends on PPC_MULTIPLATFORM | 26 | depends on 6xx || PPC64 |
36 | help | 27 | help |
37 | Support for running natively on the hardware, i.e. without | 28 | Support for running natively on the hardware, i.e. without |
38 | a hypervisor. This option is not user-selectable but should | 29 | a hypervisor. This option is not user-selectable but should |
39 | be selected by all platforms that need it. | 30 | be selected by all platforms that need it. |
40 | 31 | ||
32 | config PPC_OF_BOOT_TRAMPOLINE | ||
33 | bool "Support booting from Open Firmware or yaboot" | ||
34 | depends on 6xx || PPC64 | ||
35 | default y | ||
36 | help | ||
37 | Support from booting from Open Firmware or yaboot using an | ||
38 | Open Firmware client interface. This enables the kernel to | ||
39 | communicate with open firmware to retrieve system informations | ||
40 | such as the device tree. | ||
41 | |||
42 | In case of doubt, say Y | ||
43 | |||
41 | config UDBG_RTAS_CONSOLE | 44 | config UDBG_RTAS_CONSOLE |
42 | bool "RTAS based debug console" | 45 | bool "RTAS based debug console" |
43 | depends on PPC_RTAS | 46 | depends on PPC_RTAS |
@@ -71,7 +74,7 @@ config PPC_I8259 | |||
71 | 74 | ||
72 | config U3_DART | 75 | config U3_DART |
73 | bool | 76 | bool |
74 | depends on PPC_MULTIPLATFORM && PPC64 | 77 | depends on PPC64 |
75 | default n | 78 | default n |
76 | 79 | ||
77 | config PPC_RTAS | 80 | config PPC_RTAS |
@@ -188,7 +191,7 @@ config PPC601_SYNC_FIX | |||
188 | 191 | ||
189 | config TAU | 192 | config TAU |
190 | bool "On-chip CPU temperature sensor support" | 193 | bool "On-chip CPU temperature sensor support" |
191 | depends on CLASSIC32 | 194 | depends on 6xx |
192 | help | 195 | help |
193 | G3 and G4 processors have an on-chip temperature sensor called the | 196 | G3 and G4 processors have an on-chip temperature sensor called the |
194 | 'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die | 197 | 'Thermal Assist Unit (TAU)', which, in theory, can measure the on-die |
diff --git a/arch/powerpc/platforms/Kconfig.cputype b/arch/powerpc/platforms/Kconfig.cputype index 9428c0e11b20..9da795e49337 100644 --- a/arch/powerpc/platforms/Kconfig.cputype +++ b/arch/powerpc/platforms/Kconfig.cputype | |||
@@ -57,9 +57,17 @@ config E200 | |||
57 | 57 | ||
58 | endchoice | 58 | endchoice |
59 | 59 | ||
60 | # Until we have a choice of exclusive CPU types on 64-bit, we always | ||
61 | # use PPC_BOOK3S. On 32-bit, this is equivalent to 6xx which is | ||
62 | # "classic" MMU | ||
63 | |||
64 | config PPC_BOOK3S | ||
65 | def_bool y | ||
66 | depends on PPC64 || 6xx | ||
67 | |||
60 | config POWER4_ONLY | 68 | config POWER4_ONLY |
61 | bool "Optimize for POWER4" | 69 | bool "Optimize for POWER4" |
62 | depends on PPC64 | 70 | depends on PPC64 && PPC_BOOK3S |
63 | default n | 71 | default n |
64 | ---help--- | 72 | ---help--- |
65 | Cause the compiler to optimize for POWER4/POWER5/PPC970 processors. | 73 | Cause the compiler to optimize for POWER4/POWER5/PPC970 processors. |
@@ -68,16 +76,16 @@ config POWER4_ONLY | |||
68 | 76 | ||
69 | config POWER3 | 77 | config POWER3 |
70 | bool | 78 | bool |
71 | depends on PPC64 | 79 | depends on PPC64 && PPC_BOOK3S |
72 | default y if !POWER4_ONLY | 80 | default y if !POWER4_ONLY |
73 | 81 | ||
74 | config POWER4 | 82 | config POWER4 |
75 | depends on PPC64 | 83 | depends on PPC64 && PPC_BOOK3S |
76 | def_bool y | 84 | def_bool y |
77 | 85 | ||
78 | config TUNE_CELL | 86 | config TUNE_CELL |
79 | bool "Optimize for Cell Broadband Engine" | 87 | bool "Optimize for Cell Broadband Engine" |
80 | depends on PPC64 | 88 | depends on PPC64 && PPC_BOOK3S |
81 | help | 89 | help |
82 | Cause the compiler to optimize for the PPE of the Cell Broadband | 90 | Cause the compiler to optimize for the PPE of the Cell Broadband |
83 | Engine. This will make the code run considerably faster on Cell | 91 | Engine. This will make the code run considerably faster on Cell |
@@ -147,7 +155,7 @@ config PHYS_64BIT | |||
147 | 155 | ||
148 | config ALTIVEC | 156 | config ALTIVEC |
149 | bool "AltiVec Support" | 157 | bool "AltiVec Support" |
150 | depends on CLASSIC32 || POWER4 | 158 | depends on 6xx || POWER4 |
151 | ---help--- | 159 | ---help--- |
152 | This option enables kernel support for the Altivec extensions to the | 160 | This option enables kernel support for the Altivec extensions to the |
153 | PowerPC processor. The kernel currently supports saving and restoring | 161 | PowerPC processor. The kernel currently supports saving and restoring |
diff --git a/arch/powerpc/platforms/amigaone/Kconfig b/arch/powerpc/platforms/amigaone/Kconfig index 9276a96cedee..022476717718 100644 --- a/arch/powerpc/platforms/amigaone/Kconfig +++ b/arch/powerpc/platforms/amigaone/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config AMIGAONE | 1 | config AMIGAONE |
2 | bool "Eyetech AmigaOne/MAI Teron" | 2 | bool "Eyetech AmigaOne/MAI Teron" |
3 | depends on PPC32 && BROKEN_ON_SMP && PPC_MULTIPLATFORM | 3 | depends on 6xx && BROKEN_ON_SMP |
4 | select PPC_I8259 | 4 | select PPC_I8259 |
5 | select PPC_INDIRECT_PCI | 5 | select PPC_INDIRECT_PCI |
6 | select PPC_UDBG_16550 | 6 | select PPC_UDBG_16550 |
diff --git a/arch/powerpc/platforms/cell/Kconfig b/arch/powerpc/platforms/cell/Kconfig index 17b9b193557c..40e24c39ad06 100644 --- a/arch/powerpc/platforms/cell/Kconfig +++ b/arch/powerpc/platforms/cell/Kconfig | |||
@@ -23,7 +23,7 @@ config PPC_CELL_NATIVE | |||
23 | 23 | ||
24 | config PPC_IBM_CELL_BLADE | 24 | config PPC_IBM_CELL_BLADE |
25 | bool "IBM Cell Blade" | 25 | bool "IBM Cell Blade" |
26 | depends on PPC_MULTIPLATFORM && PPC64 | 26 | depends on PPC64 && PPC_BOOK3S |
27 | select PPC_CELL_NATIVE | 27 | select PPC_CELL_NATIVE |
28 | select MMIO_NVRAM | 28 | select MMIO_NVRAM |
29 | select PPC_UDBG_16550 | 29 | select PPC_UDBG_16550 |
@@ -31,7 +31,7 @@ config PPC_IBM_CELL_BLADE | |||
31 | 31 | ||
32 | config PPC_CELLEB | 32 | config PPC_CELLEB |
33 | bool "Toshiba's Cell Reference Set 'Celleb' Architecture" | 33 | bool "Toshiba's Cell Reference Set 'Celleb' Architecture" |
34 | depends on PPC_MULTIPLATFORM && PPC64 | 34 | depends on PPC64 && PPC_BOOK3S |
35 | select PPC_CELL_NATIVE | 35 | select PPC_CELL_NATIVE |
36 | select HAS_TXX9_SERIAL | 36 | select HAS_TXX9_SERIAL |
37 | select PPC_UDBG_BEAT | 37 | select PPC_UDBG_BEAT |
@@ -40,7 +40,7 @@ config PPC_CELLEB | |||
40 | 40 | ||
41 | config PPC_CELL_QPACE | 41 | config PPC_CELL_QPACE |
42 | bool "IBM Cell - QPACE" | 42 | bool "IBM Cell - QPACE" |
43 | depends on PPC_MULTIPLATFORM && PPC64 | 43 | depends on PPC64 && PPC_BOOK3S |
44 | select PPC_CELL_COMMON | 44 | select PPC_CELL_COMMON |
45 | 45 | ||
46 | config AXON_MSI | 46 | config AXON_MSI |
diff --git a/arch/powerpc/platforms/chrp/Kconfig b/arch/powerpc/platforms/chrp/Kconfig index 22b4b4e3b6f0..37d438bd5b7a 100644 --- a/arch/powerpc/platforms/chrp/Kconfig +++ b/arch/powerpc/platforms/chrp/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config PPC_CHRP | 1 | config PPC_CHRP |
2 | bool "Common Hardware Reference Platform (CHRP) based machines" | 2 | bool "Common Hardware Reference Platform (CHRP) based machines" |
3 | depends on PPC_MULTIPLATFORM && PPC32 | 3 | depends on 6xx |
4 | select MPIC | 4 | select MPIC |
5 | select PPC_I8259 | 5 | select PPC_I8259 |
6 | select PPC_INDIRECT_PCI | 6 | select PPC_INDIRECT_PCI |
diff --git a/arch/powerpc/platforms/embedded6xx/Kconfig b/arch/powerpc/platforms/embedded6xx/Kconfig index 4f9f8184d164..291ac9d8cbee 100644 --- a/arch/powerpc/platforms/embedded6xx/Kconfig +++ b/arch/powerpc/platforms/embedded6xx/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config EMBEDDED6xx | 1 | config EMBEDDED6xx |
2 | bool "Embedded 6xx/7xx/7xxx-based boards" | 2 | bool "Embedded 6xx/7xx/7xxx-based boards" |
3 | depends on PPC32 && BROKEN_ON_SMP && PPC_MULTIPLATFORM | 3 | depends on 6xx && BROKEN_ON_SMP |
4 | 4 | ||
5 | config LINKSTATION | 5 | config LINKSTATION |
6 | bool "Linkstation / Kurobox(HG) from Buffalo" | 6 | bool "Linkstation / Kurobox(HG) from Buffalo" |
diff --git a/arch/powerpc/platforms/iseries/Kconfig b/arch/powerpc/platforms/iseries/Kconfig index 7ddd0a2c8027..647e87787437 100644 --- a/arch/powerpc/platforms/iseries/Kconfig +++ b/arch/powerpc/platforms/iseries/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config PPC_ISERIES | 1 | config PPC_ISERIES |
2 | bool "IBM Legacy iSeries" | 2 | bool "IBM Legacy iSeries" |
3 | depends on PPC_MULTIPLATFORM && PPC64 | 3 | depends on PPC64 && PPC_BOOK3S |
4 | select PPC_INDIRECT_IO | 4 | select PPC_INDIRECT_IO |
5 | select PPC_PCI_CHOICE if EMBEDDED | 5 | select PPC_PCI_CHOICE if EMBEDDED |
6 | 6 | ||
diff --git a/arch/powerpc/platforms/maple/Kconfig b/arch/powerpc/platforms/maple/Kconfig index a6467a5591fa..1ea621a94c3b 100644 --- a/arch/powerpc/platforms/maple/Kconfig +++ b/arch/powerpc/platforms/maple/Kconfig | |||
@@ -1,5 +1,5 @@ | |||
1 | config PPC_MAPLE | 1 | config PPC_MAPLE |
2 | depends on PPC_MULTIPLATFORM && PPC64 | 2 | depends on PPC64 && PPC_BOOK3S |
3 | bool "Maple 970FX Evaluation Board" | 3 | bool "Maple 970FX Evaluation Board" |
4 | select PCI | 4 | select PCI |
5 | select MPIC | 5 | select MPIC |
diff --git a/arch/powerpc/platforms/pasemi/Kconfig b/arch/powerpc/platforms/pasemi/Kconfig index 348e0619e3e5..a2aeb327d185 100644 --- a/arch/powerpc/platforms/pasemi/Kconfig +++ b/arch/powerpc/platforms/pasemi/Kconfig | |||
@@ -1,5 +1,5 @@ | |||
1 | config PPC_PASEMI | 1 | config PPC_PASEMI |
2 | depends on PPC_MULTIPLATFORM && PPC64 | 2 | depends on PPC64 && PPC_BOOK3S |
3 | bool "PA Semi SoC-based platforms" | 3 | bool "PA Semi SoC-based platforms" |
4 | default n | 4 | default n |
5 | select MPIC | 5 | select MPIC |
diff --git a/arch/powerpc/platforms/powermac/Kconfig b/arch/powerpc/platforms/powermac/Kconfig index 055990ca8ce6..1e1a0873e1dd 100644 --- a/arch/powerpc/platforms/powermac/Kconfig +++ b/arch/powerpc/platforms/powermac/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config PPC_PMAC | 1 | config PPC_PMAC |
2 | bool "Apple PowerMac based machines" | 2 | bool "Apple PowerMac based machines" |
3 | depends on PPC_MULTIPLATFORM | 3 | depends on PPC_BOOK3S |
4 | select MPIC | 4 | select MPIC |
5 | select PCI | 5 | select PCI |
6 | select PPC_INDIRECT_PCI if PPC32 | 6 | select PPC_INDIRECT_PCI if PPC32 |
diff --git a/arch/powerpc/platforms/prep/Kconfig b/arch/powerpc/platforms/prep/Kconfig index 29d411279b0c..bf8330ef2e76 100644 --- a/arch/powerpc/platforms/prep/Kconfig +++ b/arch/powerpc/platforms/prep/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config PPC_PREP | 1 | config PPC_PREP |
2 | bool "PowerPC Reference Platform (PReP) based machines" | 2 | bool "PowerPC Reference Platform (PReP) based machines" |
3 | depends on PPC_MULTIPLATFORM && PPC32 && BROKEN | 3 | depends on 6xx && BROKEN |
4 | select MPIC | 4 | select MPIC |
5 | select PPC_I8259 | 5 | select PPC_I8259 |
6 | select PPC_INDIRECT_PCI | 6 | select PPC_INDIRECT_PCI |
diff --git a/arch/powerpc/platforms/ps3/Kconfig b/arch/powerpc/platforms/ps3/Kconfig index 920cf7a454b1..204ae5c402fa 100644 --- a/arch/powerpc/platforms/ps3/Kconfig +++ b/arch/powerpc/platforms/ps3/Kconfig | |||
@@ -1,6 +1,6 @@ | |||
1 | config PPC_PS3 | 1 | config PPC_PS3 |
2 | bool "Sony PS3" | 2 | bool "Sony PS3" |
3 | depends on PPC_MULTIPLATFORM && PPC64 | 3 | depends on PPC64 && PPC_BOOK3S |
4 | select PPC_CELL | 4 | select PPC_CELL |
5 | select USB_ARCH_HAS_OHCI | 5 | select USB_ARCH_HAS_OHCI |
6 | select USB_OHCI_LITTLE_ENDIAN | 6 | select USB_OHCI_LITTLE_ENDIAN |
diff --git a/arch/powerpc/platforms/pseries/Kconfig b/arch/powerpc/platforms/pseries/Kconfig index 095ff6f846b9..c0e6ec240f46 100644 --- a/arch/powerpc/platforms/pseries/Kconfig +++ b/arch/powerpc/platforms/pseries/Kconfig | |||
@@ -1,5 +1,5 @@ | |||
1 | config PPC_PSERIES | 1 | config PPC_PSERIES |
2 | depends on PPC_MULTIPLATFORM && PPC64 | 2 | depends on PPC64 && PPC_BOOK3S |
3 | bool "IBM pSeries & new (POWER5-based) iSeries" | 3 | bool "IBM pSeries & new (POWER5-based) iSeries" |
4 | select MPIC | 4 | select MPIC |
5 | select PPC_I8259 | 5 | select PPC_I8259 |