Directory Files
.. 2
File Size
Kconfig 1.0 kB
Makefile 228 B
vme.c 54 kB
vme.h 5.8 kB
vme_bridge.h 5.2 kB
vme_fake.c 30 kB
vme_fake.mod.c 0 B
vme_tsi148.c 71 kB
vme_tsi148.h 55 kB
vme_tsi148.mod.c 0 B
vme_user.c 20 kB
vme_user.h 1.6 kB
vme_user.mod.c 0 B

Linux v6.6.1 - vme_user

# SPDX-License-Identifier: GPL-2.0
menuconfig VME_BUS
	bool "VME bridge support"
	depends on PCI
	help
	  If you say Y here you get support for the VME bridge Framework.

if VME_BUS

comment "VME Bridge Drivers"

config VME_TSI148
	tristate "Tempe"
	depends on HAS_DMA
	help
	 If you say Y here you get support for the Tundra TSI148 VME bridge
	 chip.

config VME_FAKE
	tristate "Fake"
	help
	 If you say Y here you get support for the fake VME bridge. This
	 provides a virtualised VME Bus for devices with no VME bridge. This
	 is mainly useful for VME development (in the absence of VME
	 hardware).

comment "VME Device Drivers"

config VME_USER
	tristate "VME user space access driver"
	help
	  If you say Y here you want to be able to access a limited number of
	  VME windows in a manner at least semi-compatible with the interface
	  provided with the original driver at <http://www.vmelinux.org/>.

	  To compile this driver as a module, choose M here. The module will
	  be called vme_user. If unsure, say N.

endif