Kconfig 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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 LPARCFG
  48. bool "LPAR Configuration Data"
  49. depends on PPC_PSERIES || PPC_ISERIES
  50. help
  51. Provide system capacity information via human readable
  52. <key word>=<value> pairs through a /proc/ppc64/lparcfg interface.
  53. config PPC_PSERIES_DEBUG
  54. depends on PPC_PSERIES && PPC_EARLY_DEBUG
  55. bool "Enable extra debug logging in platforms/pseries"
  56. help
  57. Say Y here if you want the pseries core to produce a bunch of
  58. debug messages to the system log. Select this if you are having a
  59. problem with the pseries core and want to see more of what is
  60. going on. This does not enable debugging in lpar.c, which must
  61. be manually done due to its verbosity.
  62. default y
  63. config PPC_SMLPAR
  64. bool "Support for shared-memory logical partitions"
  65. depends on PPC_PSERIES
  66. select LPARCFG
  67. default n
  68. help
  69. Select this option to enable shared memory partition support.
  70. With this option a system running in an LPAR can be given more
  71. memory than physically available and will allow firmware to
  72. balance memory across many LPARs.
  73. config CMM
  74. tristate "Collaborative memory management"
  75. depends on PPC_SMLPAR
  76. default y
  77. help
  78. Select this option, if you want to enable the kernel interface
  79. to reduce the memory size of the system. This is accomplished
  80. by allocating pages of memory and put them "on hold". This only
  81. makes sense for a system running in an LPAR where the unused pages
  82. will be reused for other LPARs. The interface allows firmware to
  83. balance memory across many LPARs.
  84. config DTL
  85. bool "Dispatch Trace Log"
  86. depends on PPC_SPLPAR && DEBUG_FS
  87. help
  88. SPLPAR machines can log hypervisor preempt & dispatch events to a
  89. kernel buffer. Saying Y here will enable logging these events,
  90. which are accessible through a debugfs file.
  91. Say N if you are unsure.