zephyr/drivers/pci/Kconfig
David B. Kinder ac74d8b652 license: Replace Apache boilerplate with SPDX tag
Replace the existing Apache 2.0 boilerplate header with an SPDX tag
throughout the zephyr code tree. This patch was generated via a
script run over the master branch.

Also updated doc/porting/application.rst that had a dependency on
line numbers in a literal include.

Manually updated subsys/logging/sys_log.c that had a malformed
header in the original file.  Also cleanup several cases that already
had a SPDX tag and we either got a duplicate or missed updating.

Jira: ZEP-1457

Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
2017-01-19 03:50:58 +00:00

67 lines
1.4 KiB
Plaintext

# Kconfig - PCI configuration options
#
# Copyright (c) 2015 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig PCI
bool
prompt "PCI Settings"
depends on X86
help
This options enables support of PCI bus for device drivers.
if PCI
config PCI_ENUMERATION
bool
prompt "Enable PCI device enumeration"
default n
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_LEGACY_BRIDGE
bool
prompt "PCI legacy bridge device support"
default n
help
This option adds support for PCI legacy bridge device, that
allows direct setup of the PCI interrupt pin to IRQ number
mapping.
config PCI_LEGACY_BRIDGE_BUS
int "PCI Legacy Bridge Bus number"
depends on PCI_LEGACY_BRIDGE
default 0
config PCI_LEGACY_BRIDGE_DEV
int "PCI Legacy Bridge Device number"
depends on PCI_LEGACY_BRIDGE
default 0
config PCI_LEGACY_BRIDGE_VENDOR_ID
hex "PCI Legacy Bridge Vendor ID"
depends on PCI_LEGACY_BRIDGE
default 0
config PCI_LEGACY_BRIDGE_DEVICE_ID
hex "PCI Legacy Bridge Device ID"
depends on PCI_LEGACY_BRIDGE
default 0
config PCI_DEBUG
bool
prompt "Enable PCI debugging"
default n
help
This options enables PCI debigging functions
endif