Kconfig 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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. 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 N.
  17. config PCI_MULTITHREAD_PROBE
  18. bool "PCI Multi-threaded probe (EXPERIMENTAL)"
  19. depends on PCI && EXPERIMENTAL
  20. help
  21. Say Y here if you want the PCI core to spawn a new thread for
  22. every PCI device that is probed. This can cause a huge
  23. speedup in boot times on multiprocessor machines, and even a
  24. smaller speedup on single processor machines.
  25. But it can also cause lots of bad things to happen. A number
  26. of PCI drivers can not properly handle running in this way,
  27. some will just not work properly at all, while others might
  28. decide to blow up power supplies with a huge load all at once,
  29. so use this option at your own risk.
  30. It is very unwise to use this option if you are not using a
  31. boot process that can handle devices being created in any
  32. order. A program that can create persistant block and network
  33. device names (like udev) is a good idea if you wish to use
  34. this option.
  35. Again, use this option at your own risk, you have been warned!
  36. When in doubt, say N.
  37. config PCI_DEBUG
  38. bool "PCI Debugging"
  39. depends on PCI && DEBUG_KERNEL
  40. help
  41. Say Y here if you want the PCI core to produce a bunch of debug
  42. messages to the system log. Select this if you are having a
  43. problem with PCI support and want to see more of what is going on.
  44. When in doubt, say N.
  45. config HT_IRQ
  46. bool "Interrupts on hypertransport devices"
  47. default y
  48. depends on PCI && X86_LOCAL_APIC && X86_IO_APIC
  49. help
  50. This allows native hypertransport devices to use interrupts.
  51. If unsure say Y.