Kconfig 3.3 KB

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