Kconfig 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. config PPC_PSERIES
  2. depends on PPC64 && PPC_BOOK3S
  3. bool "IBM pSeries & new (POWER5-based) iSeries"
  4. select MPIC
  5. select PPC_I8259
  6. select PPC_RTAS
  7. select RTAS_ERROR_LOGGING
  8. select PPC_UDBG_16550
  9. select PPC_NATIVE
  10. select PPC_PCI_CHOICE if EMBEDDED
  11. default y
  12. config PPC_SPLPAR
  13. depends on PPC_PSERIES
  14. bool "Support for shared-processor logical partitions"
  15. default n
  16. help
  17. Enabling this option will make the kernel run more efficiently
  18. on logically-partitioned pSeries systems which use shared
  19. processors, that is, which share physical processors between
  20. two or more partitions.
  21. config EEH
  22. bool "PCI Extended Error Handling (EEH)" if EMBEDDED
  23. depends on PPC_PSERIES && PCI
  24. default y if !EMBEDDED
  25. config PSERIES_MSI
  26. bool
  27. depends on PCI_MSI && EEH
  28. default y
  29. config SCANLOG
  30. tristate "Scanlog dump interface"
  31. depends on RTAS_PROC && PPC_PSERIES
  32. config LPARCFG
  33. bool "LPAR Configuration Data"
  34. depends on PPC_PSERIES || PPC_ISERIES
  35. help
  36. Provide system capacity information via human readable
  37. <key word>=<value> pairs through a /proc/ppc64/lparcfg interface.
  38. config PPC_PSERIES_DEBUG
  39. depends on PPC_PSERIES && PPC_EARLY_DEBUG
  40. bool "Enable extra debug logging in platforms/pseries"
  41. default y
  42. config PPC_SMLPAR
  43. bool "Support for shared-memory logical partitions"
  44. depends on PPC_PSERIES
  45. select LPARCFG
  46. default n
  47. help
  48. Select this option to enable shared memory partition support.
  49. With this option a system running in an LPAR can be given more
  50. memory than physically available and will allow firmware to
  51. balance memory across many LPARs.
  52. config CMM
  53. tristate "Collaborative memory management"
  54. depends on PPC_SMLPAR && !CRASH_DUMP
  55. default y
  56. help
  57. Select this option, if you want to enable the kernel interface
  58. to reduce the memory size of the system. This is accomplished
  59. by allocating pages of memory and put them "on hold". This only
  60. makes sense for a system running in an LPAR where the unused pages
  61. will be reused for other LPARs. The interface allows firmware to
  62. balance memory across many LPARs.
  63. config DTL
  64. bool "Dispatch Trace Log"
  65. depends on PPC_SPLPAR && DEBUG_FS
  66. help
  67. SPLPAR machines can log hypervisor preempt & dispatch events to a
  68. kernel buffer. Saying Y here will enable logging these events,
  69. which are accessible through a debugfs file.
  70. Say N if you are unsure.