diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2007-04-12 17:53:32 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2007-04-12 17:53:32 -0400 |
commit | d6071f881fcd3c45c00ea1c2d13a5b01bbb6c412 (patch) | |
tree | d8c061621e396e8b17fc2f6c9b3967ee337c7dc8 /arch/powerpc/platforms/82xx | |
parent | b5a4834692ab799a7a6b75a7f1e20e9f41a3126e (diff) |
[POWERPC] Convert 82xx platform to unified platform Kconfig
Moved 82xx platform Kconfig over to being sourced by the unified
arch/powerpc/platforms/Kconfig. Also, cleaned up whitespace issues in 82xx
Kconfig.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/platforms/82xx')
-rw-r--r-- | arch/powerpc/platforms/82xx/Kconfig | 50 |
1 files changed, 15 insertions, 35 deletions
diff --git a/arch/powerpc/platforms/82xx/Kconfig b/arch/powerpc/platforms/82xx/Kconfig index 411071686f20..de7fce9cb6eb 100644 --- a/arch/powerpc/platforms/82xx/Kconfig +++ b/arch/powerpc/platforms/82xx/Kconfig | |||
@@ -1,56 +1,36 @@ | |||
1 | menu "Platform support" | ||
2 | depends on PPC_82xx | ||
3 | |||
4 | choice | 1 | choice |
5 | prompt "Machine Type" | 2 | prompt "Machine Type" |
6 | default MPC82xx_ADS | 3 | depends on PPC_82xx |
4 | default MPC82xx_ADS | ||
7 | 5 | ||
8 | config MPC82xx_ADS | 6 | config MPC82xx_ADS |
9 | bool "Freescale MPC82xx ADS" | 7 | bool "Freescale MPC82xx ADS" |
10 | select DEFAULT_UIMAGE | 8 | select DEFAULT_UIMAGE |
11 | select PQ2ADS | 9 | select PQ2ADS |
12 | select 8272 | 10 | select 8272 |
13 | select 8260 | 11 | select 8260 |
14 | select CPM2 | 12 | select FSL_SOC |
15 | select FSL_SOC | 13 | help |
16 | help | 14 | This option enables support for the MPC8272 ADS board |
17 | This option enables support for the MPC8272 ADS board | ||
18 | 15 | ||
19 | endchoice | 16 | endchoice |
20 | 17 | ||
21 | config PQ2ADS | 18 | config PQ2ADS |
22 | bool | 19 | bool |
23 | depends on ADS8272 | 20 | default n |
24 | default y | ||
25 | |||
26 | config ADS8272 | ||
27 | bool | ||
28 | 21 | ||
29 | config 8260 | 22 | config 8260 |
30 | bool "CPM2 Support" if WILLOW | 23 | bool |
31 | depends on 6xx | 24 | depends on 6xx |
32 | default y if PQ2FADS | 25 | select CPM2 |
33 | help | 26 | help |
34 | The MPC8260 is a typical embedded CPU made by Motorola. Selecting | 27 | The MPC8260 is a typical embedded CPU made by Freescale. Selecting |
35 | this option means that you wish to build a kernel for a machine with | 28 | this option means that you wish to build a kernel for a machine with |
36 | an 8260 class CPU. | 29 | an 8260 class CPU. |
37 | 30 | ||
38 | config 8272 | 31 | config 8272 |
39 | bool | 32 | bool |
40 | depends on 6xx | ||
41 | default y if ADS8272 | ||
42 | select 8260 | 33 | select 8260 |
43 | help | 34 | help |
44 | The MPC8272 CPM has a different internal dpram setup than other CPM2 | 35 | The MPC8272 CPM has a different internal dpram setup than other CPM2 |
45 | devices | 36 | devices |
46 | |||
47 | config CPM2 | ||
48 | bool | ||
49 | depends on 8260 || MPC8560 || MPC8555 | ||
50 | default y | ||
51 | help | ||
52 | The CPM2 (Communications Processor Module) is a coprocessor on | ||
53 | embedded CPUs made by Motorola. Selecting this option means that | ||
54 | you wish to build a kernel for a machine with a CPM2 coprocessor | ||
55 | on it (826x, 827x, 8560). | ||
56 | endmenu | ||