Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # PCI Hotplug support
  4. #
  5. menuconfig HOTPLUG_PCI
  6. bool "Support for PCI Hotplug"
  7. depends on PCI && SYSFS
  8. help
  9. Say Y here if you have a motherboard with a PCI Hotplug controller.
  10. This allows you to add and remove PCI cards while the machine is
  11. powered up and running.
  12. When in doubt, say N.
  13. if HOTPLUG_PCI
  14. config HOTPLUG_PCI_COMPAQ
  15. tristate "Compaq PCI Hotplug driver"
  16. depends on X86 && PCI_BIOS
  17. help
  18. Say Y here if you have a motherboard with a Compaq PCI Hotplug
  19. controller.
  20. To compile this driver as a module, choose M here: the
  21. module will be called cpqphp.
  22. When in doubt, say N.
  23. config HOTPLUG_PCI_COMPAQ_NVRAM
  24. bool "Save configuration into NVRAM on Compaq servers"
  25. depends on HOTPLUG_PCI_COMPAQ
  26. help
  27. Say Y here if you have a Compaq server that has a PCI Hotplug
  28. controller. This will allow the PCI Hotplug driver to store the PCI
  29. system configuration options in NVRAM.
  30. When in doubt, say N.
  31. config HOTPLUG_PCI_IBM
  32. tristate "IBM PCI Hotplug driver"
  33. depends on X86_IO_APIC && X86 && PCI_BIOS
  34. help
  35. Say Y here if you have a motherboard with a IBM PCI Hotplug
  36. controller.
  37. To compile this driver as a module, choose M here: the
  38. module will be called ibmphp.
  39. When in doubt, say N.
  40. config HOTPLUG_PCI_ACPI
  41. bool "ACPI PCI Hotplug driver"
  42. depends on HOTPLUG_PCI=y && ((!ACPI_DOCK && ACPI) || (ACPI_DOCK))
  43. help
  44. Say Y here if you have a system that supports PCI Hotplug using
  45. ACPI.
  46. When in doubt, say N.
  47. config HOTPLUG_PCI_ACPI_IBM
  48. tristate "ACPI PCI Hotplug driver IBM extensions"
  49. depends on HOTPLUG_PCI_ACPI
  50. help
  51. Say Y here if you have an IBM system that supports PCI Hotplug using
  52. ACPI.
  53. To compile this driver as a module, choose M here: the
  54. module will be called acpiphp_ibm.
  55. When in doubt, say N.
  56. config HOTPLUG_PCI_CPCI
  57. bool "CompactPCI Hotplug driver"
  58. help
  59. Say Y here if you have a CompactPCI system card with CompactPCI
  60. hotswap support per the PICMG 2.1 specification.
  61. When in doubt, say N.
  62. config HOTPLUG_PCI_CPCI_ZT5550
  63. tristate "Ziatech ZT5550 CompactPCI Hotplug driver"
  64. depends on HOTPLUG_PCI_CPCI && X86
  65. help
  66. Say Y here if you have an Performance Technologies (formerly Intel,
  67. formerly just Ziatech) Ziatech ZT5550 CompactPCI system card.
  68. To compile this driver as a module, choose M here: the
  69. module will be called cpcihp_zt5550.
  70. When in doubt, say N.
  71. config HOTPLUG_PCI_CPCI_GENERIC
  72. tristate "Generic port I/O CompactPCI Hotplug driver"
  73. depends on HOTPLUG_PCI_CPCI && X86
  74. help
  75. Say Y here if you have a CompactPCI system card that exposes the #ENUM
  76. hotswap signal as a bit in a system register that can be read through
  77. standard port I/O.
  78. To compile this driver as a module, choose M here: the
  79. module will be called cpcihp_generic.
  80. When in doubt, say N.
  81. config HOTPLUG_PCI_SHPC
  82. bool "SHPC PCI Hotplug driver"
  83. help
  84. Say Y here if you have a motherboard with a SHPC PCI Hotplug
  85. controller.
  86. When in doubt, say N.
  87. config HOTPLUG_PCI_POWERNV
  88. tristate "PowerPC PowerNV PCI Hotplug driver"
  89. depends on PPC_POWERNV && EEH
  90. select OF_DYNAMIC
  91. help
  92. Say Y here if you run PowerPC PowerNV platform that supports
  93. PCI Hotplug
  94. To compile this driver as a module, choose M here: the
  95. module will be called pnv-php.
  96. When in doubt, say N.
  97. config HOTPLUG_PCI_RPA
  98. tristate "RPA PCI Hotplug driver"
  99. depends on PPC_PSERIES && EEH
  100. help
  101. Say Y here if you have a RPA system that supports PCI Hotplug.
  102. To compile this driver as a module, choose M here: the
  103. module will be called rpaphp.
  104. When in doubt, say N.
  105. config HOTPLUG_PCI_RPA_DLPAR
  106. tristate "RPA Dynamic Logical Partitioning for I/O slots"
  107. depends on HOTPLUG_PCI_RPA
  108. help
  109. Say Y here if your system supports Dynamic Logical Partitioning
  110. for I/O slots.
  111. To compile this driver as a module, choose M here: the
  112. module will be called rpadlpar_io.
  113. When in doubt, say N.
  114. config HOTPLUG_PCI_S390
  115. bool "System z PCI Hotplug Support"
  116. depends on S390 && 64BIT
  117. help
  118. Say Y here if you want to use the System z PCI Hotplug
  119. driver for PCI devices. Without this driver it is not
  120. possible to access stand-by PCI functions nor to deconfigure
  121. PCI functions.
  122. When in doubt, say Y.
  123. endif # HOTPLUG_PCI