Kconfig 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. #
  2. # PCI configuration
  3. #
  4. source "drivers/pci/pcie/Kconfig"
  5. config PCI_BUS_ADDR_T_64BIT
  6. def_bool y if (ARCH_DMA_ADDR_T_64BIT || 64BIT)
  7. depends on PCI
  8. config PCI_MSI
  9. bool "Message Signaled Interrupts (MSI and MSI-X)"
  10. depends on PCI
  11. select GENERIC_MSI_IRQ
  12. help
  13. This allows device drivers to enable MSI (Message Signaled
  14. Interrupts). Message Signaled Interrupts enable a device to
  15. generate an interrupt using an inbound Memory Write on its
  16. PCI bus instead of asserting a device IRQ pin.
  17. Use of PCI MSI interrupts can be disabled at kernel boot time
  18. by using the 'pci=nomsi' option. This disables MSI for the
  19. entire system.
  20. If you don't know what to do here, say Y.
  21. config PCI_MSI_IRQ_DOMAIN
  22. def_bool ARC || ARM || ARM64 || X86
  23. depends on PCI_MSI
  24. select GENERIC_MSI_IRQ_DOMAIN
  25. config PCI_DEBUG
  26. bool "PCI Debugging"
  27. depends on PCI && DEBUG_KERNEL
  28. help
  29. Say Y here if you want the PCI core to produce a bunch of debug
  30. messages to the system log. Select this if you are having a
  31. problem with PCI support and want to see more of what is going on.
  32. When in doubt, say N.
  33. config PCI_REALLOC_ENABLE_AUTO
  34. bool "Enable PCI resource re-allocation detection"
  35. depends on PCI
  36. help
  37. Say Y here if you want the PCI core to detect if PCI resource
  38. re-allocation needs to be enabled. You can always use pci=realloc=on
  39. or pci=realloc=off to override it. Note this feature is a no-op
  40. unless PCI_IOV support is also enabled; in that case it will
  41. automatically re-allocate PCI resources if SR-IOV BARs have not
  42. been allocated by the BIOS.
  43. When in doubt, say N.
  44. config PCI_STUB
  45. tristate "PCI Stub driver"
  46. depends on PCI
  47. help
  48. Say Y or M here if you want be able to reserve a PCI device
  49. when it is going to be assigned to a guest operating system.
  50. When in doubt, say N.
  51. config XEN_PCIDEV_FRONTEND
  52. tristate "Xen PCI Frontend"
  53. depends on PCI && X86 && XEN
  54. select PCI_XEN
  55. select XEN_XENBUS_FRONTEND
  56. default y
  57. help
  58. The PCI device frontend driver allows the kernel to import arbitrary
  59. PCI devices from a PCI backend to support PCI driver domains.
  60. config HT_IRQ
  61. bool "Interrupts on hypertransport devices"
  62. default y
  63. depends on PCI && X86_LOCAL_APIC
  64. help
  65. This allows native hypertransport devices to use interrupts.
  66. If unsure say Y.
  67. config PCI_ATS
  68. bool
  69. config PCI_ECAM
  70. bool
  71. config PCI_IOV
  72. bool "PCI IOV support"
  73. depends on PCI
  74. select PCI_ATS
  75. help
  76. I/O Virtualization is a PCI feature supported by some devices
  77. which allows them to create virtual devices which share their
  78. physical resources.
  79. If unsure, say N.
  80. config PCI_PRI
  81. bool "PCI PRI support"
  82. depends on PCI
  83. select PCI_ATS
  84. help
  85. PRI is the PCI Page Request Interface. It allows PCI devices that are
  86. behind an IOMMU to recover from page faults.
  87. If unsure, say N.
  88. config PCI_PASID
  89. bool "PCI PASID support"
  90. depends on PCI
  91. select PCI_ATS
  92. help
  93. Process Address Space Identifiers (PASIDs) can be used by PCI devices
  94. to access more than one IO address space at the same time. To make
  95. use of this feature an IOMMU is required which also supports PASIDs.
  96. Select this option if you have such an IOMMU and want to compile the
  97. driver for it into your kernel.
  98. If unsure, say N.
  99. config PCI_LABEL
  100. def_bool y if (DMI || ACPI)
  101. select NLS
  102. config PCI_HYPERV
  103. tristate "Hyper-V PCI Frontend"
  104. depends on PCI && X86 && HYPERV && PCI_MSI && PCI_MSI_IRQ_DOMAIN && X86_64
  105. help
  106. The PCI device frontend driver allows the kernel to import arbitrary
  107. PCI devices from a PCI backend to support PCI driver domains.
  108. source "drivers/pci/hotplug/Kconfig"
  109. source "drivers/pci/host/Kconfig"