0001 # SPDX-License-Identifier: GPL-2.0
0002 menuconfig VME_BUS
0003 bool "VME bridge support"
0004 depends on STAGING && PCI
0005 help
0006 If you say Y here you get support for the VME bridge Framework.
0007
0008 if VME_BUS
0009
0010 comment "VME Bridge Drivers"
0011
0012 config VME_TSI148
0013 tristate "Tempe"
0014 depends on HAS_DMA
0015 help
0016 If you say Y here you get support for the Tundra TSI148 VME bridge
0017 chip.
0018
0019 config VME_FAKE
0020 tristate "Fake"
0021 help
0022 If you say Y here you get support for the fake VME bridge. This
0023 provides a virtualised VME Bus for devices with no VME bridge. This
0024 is mainly useful for VME development (in the absence of VME
0025 hardware).
0026
0027 comment "VME Device Drivers"
0028
0029 config VME_USER
0030 tristate "VME user space access driver"
0031 depends on STAGING && VME_BUS
0032 help
0033 If you say Y here you want to be able to access a limited number of
0034 VME windows in a manner at least semi-compatible with the interface
0035 provided with the original driver at <http://www.vmelinux.org/>.
0036
0037 To compile this driver as a module, choose M here. The module will
0038 be called vme_user. If unsure, say N.
0039
0040 endif