diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/arm/mach-iop3xx/Kconfig |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/arm/mach-iop3xx/Kconfig')
-rw-r--r-- | arch/arm/mach-iop3xx/Kconfig | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/arch/arm/mach-iop3xx/Kconfig b/arch/arm/mach-iop3xx/Kconfig new file mode 100644 index 000000000000..2bfe8c729f9f --- /dev/null +++ b/arch/arm/mach-iop3xx/Kconfig | |||
@@ -0,0 +1,63 @@ | |||
1 | if ARCH_IOP3XX | ||
2 | |||
3 | menu "IOP3xx Implementation Options" | ||
4 | |||
5 | comment "IOP3xx Platform Types" | ||
6 | |||
7 | config ARCH_IQ80321 | ||
8 | bool "Enable support for IQ80321" | ||
9 | select ARCH_IOP321 | ||
10 | help | ||
11 | Say Y here if you want to run your kernel on the Intel IQ80321 | ||
12 | evaluation kit for the IOP321 chipset. | ||
13 | |||
14 | config ARCH_IQ31244 | ||
15 | bool "Enable support for IQ31244" | ||
16 | select ARCH_IOP321 | ||
17 | help | ||
18 | Say Y here if you want to run your kernel on the Intel IQ31244 | ||
19 | evaluation kit for the IOP321 chipset. | ||
20 | |||
21 | config ARCH_IQ80331 | ||
22 | bool "Enable support for IQ80331" | ||
23 | select ARCH_IOP331 | ||
24 | help | ||
25 | Say Y here if you want to run your kernel on the Intel IQ80331 | ||
26 | evaluation kit for the IOP331 chipset. | ||
27 | |||
28 | config MACH_IQ80332 | ||
29 | bool "Enable support for IQ80332" | ||
30 | select ARCH_IOP331 | ||
31 | help | ||
32 | Say Y here if you want to run your kernel on the Intel IQ80332 | ||
33 | evaluation kit for the IOP332 chipset | ||
34 | |||
35 | config ARCH_EP80219 | ||
36 | bool "Enable support for EP80219" | ||
37 | select ARCH_IOP321 | ||
38 | select ARCH_IQ31244 | ||
39 | |||
40 | # Which IOP variant are we running? | ||
41 | config ARCH_IOP321 | ||
42 | bool | ||
43 | help | ||
44 | The IQ80321 uses the IOP321 variant. | ||
45 | The IQ31244 and EP80219 uses the IOP321 variant. | ||
46 | |||
47 | config ARCH_IOP331 | ||
48 | bool | ||
49 | default ARCH_IQ80331 | ||
50 | help | ||
51 | The IQ80331, IQ80332, and IQ80333 uses the IOP331 variant. | ||
52 | |||
53 | comment "IOP3xx Chipset Features" | ||
54 | |||
55 | config IOP331_STEPD | ||
56 | bool "Chip stepping D of the IOP80331 processor or IOP80333" | ||
57 | depends on (ARCH_IOP331) | ||
58 | help | ||
59 | Say Y here if you have StepD of the IOP80331 or IOP8033 | ||
60 | based platforms. | ||
61 | |||
62 | endmenu | ||
63 | endif | ||