diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-03-15 19:15:07 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-03-22 11:04:13 -0400 |
commit | 9b8babf4a9cc0ba3a8f00b84419ab44bb4d22e05 (patch) | |
tree | 00a2d2585831010785d402035af7c252a21340c4 /arch | |
parent | 5396132cf90423d988bde340987ba21a27b787d7 (diff) |
[POWERPC] Split powermac platforms into their own Kconfig file
Cleaning up arch/powerpc/Kconfig platform support.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/Kconfig | 20 | ||||
-rw-r--r-- | arch/powerpc/platforms/powermac/Kconfig | 20 |
2 files changed, 21 insertions, 19 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index b9bffe769d3f..ecc4302bfd02 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -433,25 +433,7 @@ config PPC_CHRP | |||
433 | default y | 433 | default y |
434 | 434 | ||
435 | source "arch/powerpc/platforms/52xx/Kconfig" | 435 | source "arch/powerpc/platforms/52xx/Kconfig" |
436 | 436 | source "arch/powerpc/platforms/powermac/Kconfig" | |
437 | config PPC_PMAC | ||
438 | bool "Apple PowerMac based machines" | ||
439 | depends on PPC_MULTIPLATFORM | ||
440 | select MPIC | ||
441 | select PPC_INDIRECT_PCI if PPC32 | ||
442 | select PPC_MPC106 if PPC32 | ||
443 | select PPC_NATIVE | ||
444 | default y | ||
445 | |||
446 | config PPC_PMAC64 | ||
447 | bool | ||
448 | depends on PPC_PMAC && POWER4 | ||
449 | select MPIC | ||
450 | select U3_DART | ||
451 | select MPIC_BROKEN_U3 | ||
452 | select GENERIC_TBSYNC | ||
453 | select PPC_970_NAP | ||
454 | default y | ||
455 | 437 | ||
456 | config PPC_PREP | 438 | config PPC_PREP |
457 | bool "PowerPC Reference Platform (PReP) based machines" | 439 | bool "PowerPC Reference Platform (PReP) based machines" |
diff --git a/arch/powerpc/platforms/powermac/Kconfig b/arch/powerpc/platforms/powermac/Kconfig new file mode 100644 index 000000000000..02d9c7dba876 --- /dev/null +++ b/arch/powerpc/platforms/powermac/Kconfig | |||
@@ -0,0 +1,20 @@ | |||
1 | config PPC_PMAC | ||
2 | bool "Apple PowerMac based machines" | ||
3 | depends on PPC_MULTIPLATFORM | ||
4 | select MPIC | ||
5 | select PPC_INDIRECT_PCI if PPC32 | ||
6 | select PPC_MPC106 if PPC32 | ||
7 | select PPC_NATIVE | ||
8 | default y | ||
9 | |||
10 | config PPC_PMAC64 | ||
11 | bool | ||
12 | depends on PPC_PMAC && POWER4 | ||
13 | select MPIC | ||
14 | select U3_DART | ||
15 | select MPIC_BROKEN_U3 | ||
16 | select GENERIC_TBSYNC | ||
17 | select PPC_970_NAP | ||
18 | default y | ||
19 | |||
20 | |||