Kconfig 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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. default y
  22. config PPC_SPLPAR
  23. depends on PPC_PSERIES
  24. bool "Support for shared-processor logical partitions"
  25. default n
  26. help
  27. Enabling this option will make the kernel run more efficiently
  28. on logically-partitioned pSeries systems which use shared
  29. processors, that is, which share physical processors between
  30. two or more partitions.
  31. config EEH
  32. bool
  33. depends on PPC_PSERIES && PCI
  34. default y
  35. config PSERIES_MSI
  36. bool
  37. depends on PCI_MSI && 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 DTL
  104. bool "Dispatch Trace Log"
  105. depends on PPC_SPLPAR && DEBUG_FS
  106. help
  107. SPLPAR machines can log hypervisor preempt & dispatch events to a
  108. kernel buffer. Saying Y here will enable logging these events,
  109. which are accessible through a debugfs file.
  110. Say N if you are unsure.
  111. config PSERIES_IDLE
  112. bool "Cpuidle driver for pSeries platforms"
  113. depends on CPU_IDLE
  114. depends on PPC_PSERIES
  115. default y
  116. help
  117. Select this option to enable processor idle state management
  118. through cpuidle subsystem.