diff options
author | Paul Mackerras <paulus@samba.org> | 2005-09-26 02:04:21 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-09-26 02:04:21 -0400 |
commit | 14cf11af6cf608eb8c23e989ddb17a715ddce109 (patch) | |
tree | 271a97ce73e265f39c569cb159c195c5b4bb3f8c /arch/powerpc/platforms/pseries/Kconfig | |
parent | e5baa396af7560382d2cf3f0871d616b61fc284c (diff) |
powerpc: Merge enough to start building in arch/powerpc.
This creates the directory structure under arch/powerpc and a bunch
of Kconfig files. It does a first-cut merge of arch/powerpc/mm,
arch/powerpc/lib and arch/powerpc/platforms/powermac. This is enough
to build a 32-bit powermac kernel with ARCH=powerpc.
For now we are getting some unmerged files from arch/ppc/kernel and
arch/ppc/syslib, or arch/ppc64/kernel. This makes some minor changes
to files in those directories and files outside arch/powerpc.
The boot directory is still not merged. That's going to be interesting.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/platforms/pseries/Kconfig')
-rw-r--r-- | arch/powerpc/platforms/pseries/Kconfig | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/pseries/Kconfig b/arch/powerpc/platforms/pseries/Kconfig new file mode 100644 index 000000000000..7a3b6fc4d976 --- /dev/null +++ b/arch/powerpc/platforms/pseries/Kconfig | |||
@@ -0,0 +1,47 @@ | |||
1 | |||
2 | config PPC_SPLPAR | ||
3 | depends on PPC_PSERIES | ||
4 | bool "Support for shared-processor logical partitions" | ||
5 | default n | ||
6 | help | ||
7 | Enabling this option will make the kernel run more efficiently | ||
8 | on logically-partitioned pSeries systems which use shared | ||
9 | processors, that is, which share physical processors between | ||
10 | two or more partitions. | ||
11 | |||
12 | config HMT | ||
13 | bool "Hardware multithreading" | ||
14 | depends on SMP && PPC_PSERIES && BROKEN | ||
15 | help | ||
16 | This option enables hardware multithreading on RS64 cpus. | ||
17 | pSeries systems p620 and p660 have such a cpu type. | ||
18 | |||
19 | config EEH | ||
20 | bool "PCI Extended Error Handling (EEH)" if EMBEDDED | ||
21 | depends on PPC_PSERIES | ||
22 | default y if !EMBEDDED | ||
23 | |||
24 | config PPC_RTAS | ||
25 | bool | ||
26 | depends on PPC_PSERIES || PPC_BPA | ||
27 | default y | ||
28 | |||
29 | config RTAS_PROC | ||
30 | bool "Proc interface to RTAS" | ||
31 | depends on PPC_RTAS | ||
32 | default y | ||
33 | |||
34 | config RTAS_FLASH | ||
35 | tristate "Firmware flash interface" | ||
36 | depends on PPC64 && RTAS_PROC | ||
37 | |||
38 | config SCANLOG | ||
39 | tristate "Scanlog dump interface" | ||
40 | depends on RTAS_PROC && PPC_PSERIES | ||
41 | |||
42 | config LPARCFG | ||
43 | tristate "LPAR Configuration Data" | ||
44 | depends on PPC_PSERIES || PPC_ISERIES | ||
45 | help | ||
46 | Provide system capacity information via human readable | ||
47 | <key word>=<value> pairs through a /proc/ppc64/lparcfg interface. | ||