Kconfig 3.9 KB

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