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