Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
42 lines
1.2 KiB
Plaintext
42 lines
1.2 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# PCI Endpoint Support
|
|
#
|
|
|
|
menu "PCI Endpoint"
|
|
|
|
config PCI_ENDPOINT
|
|
bool "PCI Endpoint Support"
|
|
depends on HAVE_PCI
|
|
help
|
|
Enable this configuration option to support configurable PCI
|
|
endpoint. This should be enabled if the platform has a PCI
|
|
controller that can operate in endpoint mode.
|
|
|
|
Enabling this option will build the endpoint library, which
|
|
includes endpoint controller library and endpoint function
|
|
library.
|
|
|
|
If in doubt, say "N" to disable Endpoint support.
|
|
|
|
config PCI_ENDPOINT_CONFIGFS
|
|
bool "PCI Endpoint Configfs Support"
|
|
depends on PCI_ENDPOINT
|
|
select CONFIGFS_FS
|
|
help
|
|
This will enable the configfs entry that can be used to
|
|
configure the endpoint function and used to bind the
|
|
function with an endpoint controller.
|
|
|
|
config PCI_ENDPOINT_MSI_DOORBELL
|
|
bool "PCI Endpoint MSI Doorbell Support"
|
|
depends on PCI_ENDPOINT && GENERIC_MSI_IRQ
|
|
help
|
|
This enables the EP's MSI interrupt controller to function as a
|
|
doorbell. The RC can trigger doorbell in EP by writing data to a
|
|
dedicated BAR, which the EP maps to the controller's message address.
|
|
|
|
source "drivers/pci/endpoint/functions/Kconfig"
|
|
|
|
endmenu
|