mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-08 04:32:41 +00:00
This option will be used to disable PCI enumeration (not PCI bus) to gain in code size and execution as long as driver will be properly configured statically. Thus setting this option as set by default. Change-Id: I7da5d154c8ee89e44fc2bad8e85a5a20f498927e Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
32 lines
708 B
Plaintext
32 lines
708 B
Plaintext
|
|
menu "PCI Settings"
|
|
depends on X86_32
|
|
config PCI
|
|
bool
|
|
default n
|
|
depends on X86_32
|
|
help
|
|
This options enables support of PCI bus for device drivers.
|
|
|
|
config PCI_ENUMERATION
|
|
bool
|
|
prompt "Enable PCI device enumeration"
|
|
depends on PCI
|
|
default y
|
|
help
|
|
This option enables the PCI enumeration for device drivers.
|
|
This might be useful along with PCI_DEBUG to find out which
|
|
are the PCI settings of the devices. Once those are known and
|
|
statically set in every relevant driver's configuration, it
|
|
might be wise to disable this option to remove useless code.
|
|
|
|
config PCI_DEBUG
|
|
bool
|
|
prompt "Enable PCI debugging"
|
|
depends on PCI
|
|
default n
|
|
help
|
|
This options enables PCI debigging functions
|
|
|
|
endmenu
|