Skip to content

Commit

Permalink
vme: Adding Fake VME driver
Browse files Browse the repository at this point in the history
This patch introduces a fake VME bridge driver. This driver currently
emulates a subset of the VME bridge functionality. This allows some VME
subsystem development and even some VME device driver development to be
carried out in the absence of a proper VME bus.

Signed-off-by: Martyn Welch <martyn@welchs.me.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
Martyn Welch authored and Greg Kroah-Hartman committed Aug 31, 2016
1 parent 050c3d5 commit 658bcda
Show file tree
Hide file tree
Showing 3 changed files with 1,308 additions and 0 deletions.
8 changes: 8 additions & 0 deletions drivers/vme/bridges/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,11 @@ config VME_TSI148
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).
1 change: 1 addition & 0 deletions drivers/vme/bridges/Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
obj-$(CONFIG_VME_CA91CX42) += vme_ca91cx42.o
obj-$(CONFIG_VME_TSI148) += vme_tsi148.o
obj-$(CONFIG_VME_FAKE) += vme_fake.o
Loading

0 comments on commit 658bcda

Please sign in to comment.