Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. config PPC_PSERIES
  2. depends on PPC64 && PPC_BOOK3S
  3. bool "IBM pSeries & new (POWER5-based) iSeries"
  4. select HAVE_PCSPKR_PLATFORM
  5. select MPIC
  6. select OF_DYNAMIC
  7. select PCI_MSI
  8. select PPC_XICS
  9. select PPC_ICP_NATIVE
  10. select PPC_ICP_HV
  11. select PPC_ICS_RTAS
  12. select PPC_I8259
  13. select PPC_RTAS
  14. select PPC_RTAS_DAEMON
  15. select RTAS_ERROR_LOGGING
  16. select PPC_UDBG_16550
  17. select PPC_NATIVE
  18. select PPC_PCI_CHOICE if EXPERT
  19. select ZLIB_DEFLATE
  20. select PPC_DOORBELL
  21. select HAVE_CONTEXT_TRACKING
  22. select HOTPLUG_CPU if SMP
  23. select ARCH_RANDOM
  24. select PPC_DOORBELL
  25. default y
  26. config PPC_SPLPAR
  27. depends on PPC_PSERIES
  28. bool "Support for shared-processor logical partitions"
  29. default n
  30. help
  31. Enabling this option will make the kernel run more efficiently
  32. on logically-partitioned pSeries systems which use shared
  33. processors, that is, which share physical processors between
  34. two or more partitions.
  35. config PSERIES_MSI
  36. bool
  37. depends on PCI_MSI && PPC_PSERIES && EEH
  38. default y
  39. config PSERIES_ENERGY
  40. tristate "pSeries energy management capabilities driver"
  41. depends on PPC_PSERIES
  42. default y
  43. help
  44. Provides interface to platform energy management capabilities
  45. on supported PSERIES platforms.
  46. Provides: /sys/devices/system/cpu/pseries_(de)activation_hint_list
  47. and /sys/devices/system/cpu/cpuN/pseries_(de)activation_hint
  48. config SCANLOG
  49. tristate "Scanlog dump interface"
  50. depends on RTAS_PROC && PPC_PSERIES
  51. config IO_EVENT_IRQ
  52. bool "IO Event Interrupt support"
  53. depends on PPC_PSERIES
  54. default y
  55. help
  56. Select this option, if you want to enable support for IO Event
  57. interrupts. IO event interrupt is a mechanism provided by RTAS
  58. to return information about hardware error and non-error events
  59. which may need OS attention. RTAS returns events for multiple
  60. event types and scopes. Device drivers can register their handlers
  61. to receive events.
  62. This option will only enable the IO event platform code. You
  63. will still need to enable or compile the actual drivers
  64. that use this infrastructure to handle IO event interrupts.
  65. Say Y if you are unsure.
  66. config LPARCFG
  67. bool "LPAR Configuration Data"
  68. depends on PPC_PSERIES
  69. help
  70. Provide system capacity information via human readable
  71. <key word>=<value> pairs through a /proc/ppc64/lparcfg interface.
  72. config PPC_PSERIES_DEBUG
  73. depends on PPC_PSERIES && PPC_EARLY_DEBUG
  74. bool "Enable extra debug logging in platforms/pseries"
  75. help
  76. Say Y here if you want the pseries core to produce a bunch of
  77. debug messages to the system log. Select this if you are having a
  78. problem with the pseries core and want to see more of what is
  79. going on. This does not enable debugging in lpar.c, which must
  80. be manually done due to its verbosity.
  81. default y
  82. config PPC_SMLPAR
  83. bool "Support for shared-memory logical partitions"
  84. depends on PPC_PSERIES
  85. select LPARCFG
  86. default n
  87. help
  88. Select this option to enable shared memory partition support.
  89. With this option a system running in an LPAR can be given more
  90. memory than physically available and will allow firmware to
  91. balance memory across many LPARs.
  92. config CMM
  93. tristate "Collaborative memory management"
  94. depends on PPC_SMLPAR
  95. default y
  96. help
  97. Select this option, if you want to enable the kernel interface
  98. to reduce the memory size of the system. This is accomplished
  99. by allocating pages of memory and put them "on hold". This only
  100. makes sense for a system running in an LPAR where the unused pages
  101. will be reused for other LPARs. The interface allows firmware to
  102. balance memory across many LPARs.
  103. config HV_PERF_CTRS
  104. bool "Hypervisor supplied PMU events (24x7 & GPCI)"
  105. default y
  106. depends on PERF_EVENTS && PPC_PSERIES
  107. help
  108. Enable access to hypervisor supplied counters in perf. Currently,
  109. this enables code that uses the hcall GetPerfCounterInfo and 24x7
  110. interfaces to retrieve counters. GPCI exists on Power 6 and later
  111. systems. 24x7 is available on Power 8 systems.
  112. If unsure, select Y.
  113. config DTL
  114. bool "Dispatch Trace Log"
  115. depends on PPC_SPLPAR && DEBUG_FS
  116. help
  117. SPLPAR machines can log hypervisor preempt & dispatch events to a
  118. kernel buffer. Saying Y here will enable logging these events,
  119. which are accessible through a debugfs file.
  120. Say N if you are unsure.