Kconfig 3.3 KB

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