diff options
Diffstat (limited to 'arch/ppc/platforms/85xx/Kconfig')
-rw-r--r-- | arch/ppc/platforms/85xx/Kconfig | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/arch/ppc/platforms/85xx/Kconfig b/arch/ppc/platforms/85xx/Kconfig new file mode 100644 index 000000000000..ff92e38e7da1 --- /dev/null +++ b/arch/ppc/platforms/85xx/Kconfig | |||
@@ -0,0 +1,76 @@ | |||
1 | config 85xx | ||
2 | bool | ||
3 | depends on E500 | ||
4 | default y | ||
5 | |||
6 | config PPC_INDIRECT_PCI_BE | ||
7 | bool | ||
8 | depends on 85xx | ||
9 | default y | ||
10 | |||
11 | menu "Freescale 85xx options" | ||
12 | depends on E500 | ||
13 | |||
14 | choice | ||
15 | prompt "Machine Type" | ||
16 | depends on 85xx | ||
17 | default MPC8540_ADS | ||
18 | |||
19 | config MPC8540_ADS | ||
20 | bool "Freescale MPC8540 ADS" | ||
21 | help | ||
22 | This option enables support for the MPC 8540 ADS evaluation board. | ||
23 | |||
24 | config MPC8555_CDS | ||
25 | bool "Freescale MPC8555 CDS" | ||
26 | help | ||
27 | This option enablese support for the MPC8555 CDS evaluation board. | ||
28 | |||
29 | config MPC8560_ADS | ||
30 | bool "Freescale MPC8560 ADS" | ||
31 | help | ||
32 | This option enables support for the MPC 8560 ADS evaluation board. | ||
33 | |||
34 | config SBC8560 | ||
35 | bool "WindRiver PowerQUICC III SBC8560" | ||
36 | help | ||
37 | This option enables support for the WindRiver PowerQUICC III | ||
38 | SBC8560 board. | ||
39 | |||
40 | config STX_GP3 | ||
41 | bool "Silicon Turnkey Express GP3" | ||
42 | help | ||
43 | This option enables support for the Silicon Turnkey Express GP3 | ||
44 | board. | ||
45 | |||
46 | endchoice | ||
47 | |||
48 | # It's often necessary to know the specific 85xx processor type. | ||
49 | # Fortunately, it is implied (so far) from the board type, so we | ||
50 | # don't need to ask more redundant questions. | ||
51 | config MPC8540 | ||
52 | bool | ||
53 | depends on MPC8540_ADS | ||
54 | default y | ||
55 | |||
56 | config MPC8555 | ||
57 | bool | ||
58 | depends on MPC8555_CDS | ||
59 | default y | ||
60 | |||
61 | config MPC8560 | ||
62 | bool | ||
63 | depends on SBC8560 || MPC8560_ADS || STX_GP3 | ||
64 | default y | ||
65 | |||
66 | config 85xx_PCI2 | ||
67 | bool "Supprt for 2nd PCI host controller" | ||
68 | depends on MPC8555_CDS | ||
69 | default y | ||
70 | |||
71 | config PPC_GEN550 | ||
72 | bool | ||
73 | depends on MPC8540 || SBC8560 || MPC8555 | ||
74 | default y | ||
75 | |||
76 | endmenu | ||