Kconfig 3.2 KB

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