1# SPDX-License-Identifier: GPL-2.0 2menuconfig VME_BUS 3 bool "VME bridge support" 4 depends on STAGING && PCI 5 help 6 If you say Y here you get support for the VME bridge Framework. 7 8if VME_BUS 9 10comment "VME Bridge Drivers" 11 12config VME_TSI148 13 tristate "Tempe" 14 depends on HAS_DMA 15 help 16 If you say Y here you get support for the Tundra TSI148 VME bridge 17 chip. 18 19config VME_FAKE 20 tristate "Fake" 21 help 22 If you say Y here you get support for the fake VME bridge. This 23 provides a virtualised VME Bus for devices with no VME bridge. This 24 is mainly useful for VME development (in the absence of VME 25 hardware). 26 27comment "VME Device Drivers" 28 29config VME_USER 30 tristate "VME user space access driver" 31 depends on STAGING && VME_BUS 32 help 33 If you say Y here you want to be able to access a limited number of 34 VME windows in a manner at least semi-compatible with the interface 35 provided with the original driver at <http://www.vmelinux.org/>. 36 37 To compile this driver as a module, choose M here. The module will 38 be called vme_user. If unsure, say N. 39 40endif 41