Kconfig (38b6a1cf3e4df0a3267c01fab699ab65d58690f4) Kconfig (3878eaefb89aa841ae4c2150490cee864ac628cb)
1#
2# PCI configuration
3#
4config 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
14 Use of PCI MSI interrupts can be disabled at kernel boot time
15 by using the 'pci=nomsi' option. This disables MSI for the
16 entire system.
17
18 If you don't know what to do here, say Y.
19
1#
2# PCI configuration
3#
4config 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
14 Use of PCI MSI interrupts can be disabled at kernel boot time
15 by using the 'pci=nomsi' option. This disables MSI for the
16 entire system.
17
18 If you don't know what to do here, say Y.
19
20config PCI_MSI_IRQ_DOMAIN
21 bool
22 depends on PCI_MSI
23 select GENERIC_MSI_IRQ_DOMAIN
24
20config PCI_DEBUG
21 bool "PCI Debugging"
22 depends on PCI && DEBUG_KERNEL
23 help
24 Say Y here if you want the PCI core to produce a bunch of debug
25 messages to the system log. Select this if you are having a
26 problem with PCI support and want to see more of what is going on.
27

--- 92 unchanged lines hidden ---
25config PCI_DEBUG
26 bool "PCI Debugging"
27 depends on PCI && DEBUG_KERNEL
28 help
29 Say Y here if you want the PCI core to produce a bunch of debug
30 messages to the system log. Select this if you are having a
31 problem with PCI support and want to see more of what is going on.
32

--- 92 unchanged lines hidden ---