mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-27 20:07:09 +00:00
6c62a895e5
This fake carrier is designed to help FMC users understand how a carrier driver works, and to experiment the behaviour with EEPROM reprogramming (with a mezzanine driver commited later). This carrier can register up to 4 (fake) mezzanines. We have real carriers (both on PCI-E and VME), but they are bigger things and are not part of this submission. Signed-off-by: Alessandro Rubini <rubini@gnudd.com> Acked-by: Juan David Gonzalez Cobas <dcobas@cern.ch> Acked-by: Emilio G. Cota <cota@braap.org> Acked-by: Samuel Iglesias Gonsalvez <siglesias@igalia.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
29 lines
813 B
Plaintext
29 lines
813 B
Plaintext
#
|
|
# FMC (ANSI-VITA 57.1) bus support
|
|
#
|
|
|
|
menuconfig FMC
|
|
tristate "FMC support"
|
|
help
|
|
|
|
FMC (FPGA Mezzanine Carrier) is a mechanical and electrical
|
|
standard for mezzanine cards that plug into a carrier board.
|
|
This kernel subsystem supports the matching between carrier
|
|
and mezzanine based on identifiers stored in the internal I2C
|
|
EEPROM, as well as having carrier-independent drivers.
|
|
|
|
The framework was born outside of the kernel and at this time
|
|
the off-tree code base is more complete. Code and documentation
|
|
is at git://ohwr.org/fmc-projects/fmc-bus.git .
|
|
|
|
if FMC
|
|
|
|
config FMC_FAKEDEV
|
|
tristate "FMC fake device (software testing)"
|
|
help
|
|
This is a fake carrier, bringing a default EEPROM content
|
|
that can be rewritten at run time and usef for matching
|
|
mezzanines.
|
|
|
|
endif # FMC
|