blob: 023b288f895bf7afcbe1fa955b58637edb78d19e [file] [log] [blame]
Kumar Gala35a12452007-03-16 09:14:08 -05001config PPC_PSERIES
Benjamin Herrenschmidt28794d32009-03-10 17:53:27 +00002 depends on PPC64 && PPC_BOOK3S
Kumar Gala35a12452007-03-16 09:14:08 -05003 bool "IBM pSeries & new (POWER5-based) iSeries"
Ralf Baechle8761f1a2011-06-01 19:05:09 +01004 select HAVE_PCSPKR_PLATFORM
Kumar Gala35a12452007-03-16 09:14:08 -05005 select MPIC
Grant Likely0f22dd32012-02-15 20:38:40 -07006 select OF_DYNAMIC
Mel Gorman8a55c4b2009-11-27 06:33:58 +00007 select PCI_MSI
Benjamin Herrenschmidt0b05ac62011-04-04 13:46:58 +10008 select PPC_XICS
9 select PPC_ICP_NATIVE
10 select PPC_ICP_HV
11 select PPC_ICS_RTAS
Kumar Gala35a12452007-03-16 09:14:08 -050012 select PPC_I8259
13 select PPC_RTAS
Benjamin Herrenschmidt3d541c42009-09-24 19:30:05 +000014 select PPC_RTAS_DAEMON
Kumar Gala35a12452007-03-16 09:14:08 -050015 select RTAS_ERROR_LOGGING
16 select PPC_UDBG_16550
17 select PPC_NATIVE
David Rientjes6a108a12011-01-20 14:44:16 -080018 select PPC_PCI_CHOICE if EXPERT
Jim Keniston6c493682011-07-25 07:54:50 +000019 select ZLIB_DEFLATE
Ian Munsiee5e84f02012-11-14 18:49:50 +000020 select PPC_DOORBELL
Li Zhonga1797b22013-05-13 16:16:44 +000021 select HAVE_CONTEXT_TRACKING
Kumar Gala35a12452007-03-16 09:14:08 -050022 default y
Paul Mackerras14cf11a2005-09-26 16:04:21 +100023
24config PPC_SPLPAR
25 depends on PPC_PSERIES
26 bool "Support for shared-processor logical partitions"
27 default n
28 help
29 Enabling this option will make the kernel run more efficiently
30 on logically-partitioned pSeries systems which use shared
31 processors, that is, which share physical processors between
32 two or more partitions.
33
Paul Mackerras14cf11a2005-09-26 16:04:21 +100034config EEH
Gavin Shane49f7a92012-04-24 19:11:22 +000035 bool
Stephen Rothwell86932082007-11-14 15:07:39 +110036 depends on PPC_PSERIES && PCI
Gavin Shane49f7a92012-04-24 19:11:22 +000037 default y
Paul Mackerras14cf11a2005-09-26 16:04:21 +100038
Michael Ellerman1bac0222009-03-05 17:36:39 +000039config PSERIES_MSI
40 bool
41 depends on PCI_MSI && EEH
42 default y
43
Vaidyanathan Srinivasan5742bd82010-10-06 08:37:09 +000044config PSERIES_ENERGY
45 tristate "pSeries energy management capabilities driver"
46 depends on PPC_PSERIES
47 default y
48 help
49 Provides interface to platform energy management capabilities
50 on supported PSERIES platforms.
51 Provides: /sys/devices/system/cpu/pseries_(de)activation_hint_list
52 and /sys/devices/system/cpu/cpuN/pseries_(de)activation_hint
53
Paul Mackerras14cf11a2005-09-26 16:04:21 +100054config SCANLOG
55 tristate "Scanlog dump interface"
56 depends on RTAS_PROC && PPC_PSERIES
57
Tseng-Hui (Frank) Lin77eafe12011-05-05 12:32:48 +000058config IO_EVENT_IRQ
59 bool "IO Event Interrupt support"
60 depends on PPC_PSERIES
61 default y
62 help
63 Select this option, if you want to enable support for IO Event
64 interrupts. IO event interrupt is a mechanism provided by RTAS
65 to return information about hardware error and non-error events
66 which may need OS attention. RTAS returns events for multiple
67 event types and scopes. Device drivers can register their handlers
68 to receive events.
69
70 This option will only enable the IO event platform code. You
71 will still need to enable or compile the actual drivers
Masanari Iida6b2aac42012-04-14 00:14:11 +090072 that use this infrastructure to handle IO event interrupts.
Tseng-Hui (Frank) Lin77eafe12011-05-05 12:32:48 +000073
74 Say Y if you are unsure.
75
Paul Mackerras14cf11a2005-09-26 16:04:21 +100076config LPARCFG
Paul Mackerras82dfdca2006-03-14 11:35:37 +110077 bool "LPAR Configuration Data"
Stephen Rothwell3d066d72012-02-22 14:10:12 +000078 depends on PPC_PSERIES
Paul Mackerras14cf11a2005-09-26 16:04:21 +100079 help
80 Provide system capacity information via human readable
81 <key word>=<value> pairs through a /proc/ppc64/lparcfg interface.
Michael Ellerman36f8a2c2008-04-24 15:13:21 +100082
83config PPC_PSERIES_DEBUG
84 depends on PPC_PSERIES && PPC_EARLY_DEBUG
85 bool "Enable extra debug logging in platforms/pseries"
Nishanth Aravamudan01cf6fe2010-10-14 14:48:52 +000086 help
87 Say Y here if you want the pseries core to produce a bunch of
88 debug messages to the system log. Select this if you are having a
89 problem with the pseries core and want to see more of what is
90 going on. This does not enable debugging in lpar.c, which must
91 be manually done due to its verbosity.
Michael Ellerman36f8a2c2008-04-24 15:13:21 +100092 default y
Brian King84af4582008-07-24 04:30:29 +100093
94config PPC_SMLPAR
95 bool "Support for shared-memory logical partitions"
96 depends on PPC_PSERIES
97 select LPARCFG
98 default n
99 help
100 Select this option to enable shared memory partition support.
101 With this option a system running in an LPAR can be given more
102 memory than physically available and will allow firmware to
103 balance memory across many LPARs.
104
105config CMM
106 tristate "Collaborative memory management"
Brian King8be8cf52009-10-19 05:51:34 +0000107 depends on PPC_SMLPAR
Brian King84af4582008-07-24 04:30:29 +1000108 default y
109 help
110 Select this option, if you want to enable the kernel interface
111 to reduce the memory size of the system. This is accomplished
112 by allocating pages of memory and put them "on hold". This only
113 makes sense for a system running in an LPAR where the unused pages
114 will be reused for other LPARs. The interface allows firmware to
115 balance memory across many LPARs.
Jeremy Kerrfc59a3f2009-03-11 17:55:52 +0000116
117config DTL
118 bool "Dispatch Trace Log"
119 depends on PPC_SPLPAR && DEBUG_FS
120 help
121 SPLPAR machines can log hypervisor preempt & dispatch events to a
122 kernel buffer. Saying Y here will enable logging these events,
123 which are accessible through a debugfs file.
124
125 Say N if you are unsure.
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000126
127config PSERIES_IDLE
Deepthi Dharwarf7aa5542012-01-12 03:05:55 +0000128 bool "Cpuidle driver for pSeries platforms"
Deepthi Dharwar707827f2011-11-30 02:46:42 +0000129 depends on CPU_IDLE
130 depends on PPC_PSERIES
131 default y
132 help
133 Select this option to enable processor idle state management
134 through cpuidle subsystem.