Kconfig 4.5 KB

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