Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. #
  2. # PCI configuration
  3. #
  4. config PCI_MSI
  5. bool "Message Signaled Interrupts (MSI and MSI-X)"
  6. depends on PCI
  7. depends on (X86_LOCAL_APIC && X86_IO_APIC) || IA64
  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. If you don't know what to do here, say N.
  14. config PCI_LEGACY_PROC
  15. bool "Legacy /proc/pci interface"
  16. depends on PCI
  17. ---help---
  18. This feature enables a procfs file -- /proc/pci -- that provides a
  19. summary of PCI devices in the system.
  20. This feature has been deprecated as of v2.5.53, in favor of using the
  21. tool lspci(8). This feature may be removed at a future date.
  22. lspci can provide the same data, as well as much more. lspci is a part of
  23. the pci-utils package, which should be installed by your distribution.
  24. See <file:Documentation/Changes> for information on where to get the latest
  25. version.
  26. When in doubt, say N.
  27. config PCI_NAMES
  28. bool "PCI device name database"
  29. depends on PCI
  30. ---help---
  31. By default, the kernel contains a database of all known PCI device
  32. names to make the information in /proc/pci, /proc/ioports and
  33. similar files comprehensible to the user.
  34. This database increases size of the kernel image by about 80KB. This
  35. memory is freed after the system boots up if CONFIG_HOTPLUG is not set.
  36. Anyway, if you are building an installation floppy or kernel for an
  37. embedded system where kernel image size really matters, you can disable
  38. this feature and you'll get device ID numbers instead of names.
  39. When in doubt, say Y.
  40. config PCI_DEBUG
  41. bool "PCI Debugging"
  42. depends on PCI && DEBUG_KERNEL
  43. help
  44. Say Y here if you want the PCI core to produce a bunch of debug
  45. messages to the system log. Select this if you are having a
  46. problem with PCI support and want to see more of what is going on.
  47. When in doubt, say N.