Kconfig 3.7 KB

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