1 # SPDX-License-Identifier: GPL-2.0-only
3 # FMC (ANSI-VITA 57.1) bus support
10 FMC (FPGA Mezzanine Carrier) is a mechanical and electrical
11 standard for mezzanine cards that plug into a carrier board.
12 This kernel subsystem supports the matching between carrier
13 and mezzanine based on identifiers stored in the internal I2C
14 EEPROM, as well as having carrier-independent drivers.
16 The framework was born outside of the kernel and at this time
17 the off-tree code base is more complete. Code and documentation
18 is at git://ohwr.org/fmc-projects/fmc-bus.git .
23 tristate "FMC fake device (software testing)"
25 This is a fake carrier, bringing a default EEPROM content
26 that can be rewritten at run time and usef for matching
30 tristate "FMC trivial mezzanine driver (software testing)"
32 This is a fake mezzanine driver, to show how FMC works and test it.
33 The driver also handles interrupts (we used it with a real carrier
34 before the mezzanines were produced)
36 config FMC_WRITE_EEPROM
37 tristate "FMC mezzanine driver to write I2C EEPROM"
39 This driver matches every mezzanine device and can write the
40 internal EEPROM of the PCB, using the firmware loader to get
41 its binary and the function carrier->reprogram to actually do it.
42 It is useful when the mezzanines are produced.
45 tristate "FMC mezzanine driver that registers a char device"
47 This driver matches every mezzanine device and allows user
48 space to read and write registers using a char device. It
49 can be used to write user-space drivers, or just get
50 acquainted with a mezzanine before writing its specific driver.