Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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. default y
  23. config PPC_SPLPAR
  24. depends on PPC_PSERIES
  25. bool "Support for shared-processor logical partitions"
  26. default n
  27. help
  28. Enabling this option will make the kernel run more efficiently
  29. on logically-partitioned pSeries systems which use shared
  30. processors, that is, which share physical processors between
  31. two or more partitions.
  32. config EEH
  33. bool
  34. depends on PPC_PSERIES && PCI
  35. default y
  36. config PSERIES_MSI
  37. bool
  38. depends on PCI_MSI && EEH
  39. default y
  40. config PSERIES_ENERGY
  41. tristate "pSeries energy management capabilities driver"
  42. depends on PPC_PSERIES
  43. default y
  44. help
  45. Provides interface to platform energy management capabilities
  46. on supported PSERIES platforms.
  47. Provides: /sys/devices/system/cpu/pseries_(de)activation_hint_list
  48. and /sys/devices/system/cpu/cpuN/pseries_(de)activation_hint
  49. config SCANLOG
  50. tristate "Scanlog dump interface"
  51. depends on RTAS_PROC && PPC_PSERIES
  52. config IO_EVENT_IRQ
  53. bool "IO Event Interrupt support"
  54. depends on PPC_PSERIES
  55. default y
  56. help
  57. Select this option, if you want to enable support for IO Event
  58. interrupts. IO event interrupt is a mechanism provided by RTAS
  59. to return information about hardware error and non-error events
  60. which may need OS attention. RTAS returns events for multiple
  61. event types and scopes. Device drivers can register their handlers
  62. to receive events.
  63. This option will only enable the IO event platform code. You
  64. will still need to enable or compile the actual drivers
  65. that use this infrastructure to handle IO event interrupts.
  66. Say Y if you are unsure.
  67. config LPARCFG
  68. bool "LPAR Configuration Data"
  69. depends on PPC_PSERIES
  70. help
  71. Provide system capacity information via human readable
  72. <key word>=<value> pairs through a /proc/ppc64/lparcfg interface.
  73. config PPC_PSERIES_DEBUG
  74. depends on PPC_PSERIES && PPC_EARLY_DEBUG
  75. bool "Enable extra debug logging in platforms/pseries"
  76. help
  77. Say Y here if you want the pseries core to produce a bunch of
  78. debug messages to the system log. Select this if you are having a
  79. problem with the pseries core and want to see more of what is
  80. going on. This does not enable debugging in lpar.c, which must
  81. be manually done due to its verbosity.
  82. default y
  83. config PPC_SMLPAR
  84. bool "Support for shared-memory logical partitions"
  85. depends on PPC_PSERIES
  86. select LPARCFG
  87. default n
  88. help
  89. Select this option to enable shared memory partition support.
  90. With this option a system running in an LPAR can be given more
  91. memory than physically available and will allow firmware to
  92. balance memory across many LPARs.
  93. config CMM
  94. tristate "Collaborative memory management"
  95. depends on PPC_SMLPAR
  96. default y
  97. help
  98. Select this option, if you want to enable the kernel interface
  99. to reduce the memory size of the system. This is accomplished
  100. by allocating pages of memory and put them "on hold". This only
  101. makes sense for a system running in an LPAR where the unused pages
  102. will be reused for other LPARs. The interface allows firmware to
  103. balance memory across many LPARs.
  104. config DTL
  105. bool "Dispatch Trace Log"
  106. depends on PPC_SPLPAR && DEBUG_FS
  107. help
  108. SPLPAR machines can log hypervisor preempt & dispatch events to a
  109. kernel buffer. Saying Y here will enable logging these events,
  110. which are accessible through a debugfs file.
  111. Say N if you are unsure.
  112. config PSERIES_IDLE
  113. bool "Cpuidle driver for pSeries platforms"
  114. depends on CPU_IDLE
  115. depends on PPC_PSERIES
  116. default y
  117. help
  118. Select this option to enable processor idle state management
  119. through cpuidle subsystem.