Kconfig 3.8 KB

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