42 lines · plain
1# SPDX-License-Identifier: GPL-2.0-only2#3# MEN Chameleon Bus (MCB) support4#5 6menuconfig MCB7 tristate "MCB support"8 default n9 depends on HAS_IOMEM10 help11 12 The MCB (MEN Chameleon Bus) is a Bus specific to MEN Mikroelektronik13 FPGA based devices. It is used to identify MCB based IP-Cores within14 an FPGA and provide the necessary framework for instantiating drivers15 for these devices.16 17 If build as a module, the module is called mcb.ko18 19if MCB20config MCB_PCI21 tristate "PCI based MCB carrier"22 default n23 depends on PCI24 help25 26 This is a MCB carrier on a PCI device. Both PCI attached on-board27 FPGAs as well as CompactPCI attached MCB FPGAs are supported with28 this driver.29 30 If build as a module, the module is called mcb-pci.ko31 32config MCB_LPC33 tristate "LPC (non PCI) based MCB carrier"34 default n35 help36 37 This is a MCB carrier on a LPC or non PCI device.38 39 If build as a module, the module is called mcb-lpc.ko40 41endif # MCB42