2015-10-06 06:25:56 +08:00
|
|
|
# Kconfig - PCI configuration options
|
|
|
|
|
|
|
|
#
|
|
|
|
# Copyright (c) 2015 Intel Corporation
|
|
|
|
#
|
2017-01-19 09:01:01 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2015-10-06 06:25:56 +08:00
|
|
|
#
|
|
|
|
|
2015-08-06 19:34:50 +08:00
|
|
|
|
2016-03-27 00:51:40 +08:00
|
|
|
menuconfig PCI
|
|
|
|
bool
|
|
|
|
prompt "PCI Settings"
|
2015-10-09 18:20:52 +08:00
|
|
|
depends on X86
|
2015-08-06 19:34:50 +08:00
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This options enables support of PCI bus for device drivers.
|
2015-08-26 00:16:07 +08:00
|
|
|
|
2016-03-27 00:51:40 +08:00
|
|
|
if PCI
|
2015-08-26 00:16:07 +08:00
|
|
|
config PCI_ENUMERATION
|
|
|
|
bool
|
|
|
|
prompt "Enable PCI device enumeration"
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
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.
|
2015-08-06 19:34:50 +08:00
|
|
|
|
2015-10-02 02:40:23 +08:00
|
|
|
config PCI_LEGACY_BRIDGE
|
|
|
|
bool
|
|
|
|
prompt "PCI legacy bridge device support"
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This option adds support for PCI legacy bridge device, that
|
|
|
|
allows direct setup of the PCI interrupt pin to IRQ number
|
|
|
|
mapping.
|
2015-10-02 02:40:23 +08:00
|
|
|
|
|
|
|
config PCI_LEGACY_BRIDGE_BUS
|
2016-05-25 07:17:13 +08:00
|
|
|
int "PCI Legacy Bridge Bus number"
|
|
|
|
depends on PCI_LEGACY_BRIDGE
|
|
|
|
default 0
|
2015-10-02 02:40:23 +08:00
|
|
|
|
|
|
|
config PCI_LEGACY_BRIDGE_DEV
|
2016-05-25 07:17:13 +08:00
|
|
|
int "PCI Legacy Bridge Device number"
|
|
|
|
depends on PCI_LEGACY_BRIDGE
|
|
|
|
default 0
|
2015-10-02 02:40:23 +08:00
|
|
|
|
|
|
|
config PCI_LEGACY_BRIDGE_VENDOR_ID
|
2016-05-25 07:17:13 +08:00
|
|
|
hex "PCI Legacy Bridge Vendor ID"
|
|
|
|
depends on PCI_LEGACY_BRIDGE
|
|
|
|
default 0
|
2015-10-02 02:40:23 +08:00
|
|
|
|
|
|
|
config PCI_LEGACY_BRIDGE_DEVICE_ID
|
2016-05-25 07:17:13 +08:00
|
|
|
hex "PCI Legacy Bridge Device ID"
|
|
|
|
depends on PCI_LEGACY_BRIDGE
|
|
|
|
default 0
|
2015-10-02 02:40:23 +08:00
|
|
|
|
2015-08-06 19:34:50 +08:00
|
|
|
config PCI_DEBUG
|
|
|
|
bool
|
|
|
|
prompt "Enable PCI debugging"
|
|
|
|
help
|
2017-12-13 23:08:21 +08:00
|
|
|
This options enables PCI debugging functions
|
2015-08-06 19:34:50 +08:00
|
|
|
|
2016-03-27 00:51:40 +08:00
|
|
|
endif
|
|
|
|
|