[PATCH v3 0/3] drivers/mcb: Bus support for MEN Chameleon Bus

From: Johannes Thumshirn
Date: Wed Feb 26 2014 - 11:29:35 EST


This patch-set introduces the MEN Chameleon Bus (MCB). MCB is not a "real" bus
like PCI, but a header section in the beginning of the FPGAs memory. This
headers are used to describe the IP-Cores inside that FPGA.

The MCB driver parses this header section and creates devices for the single
IP-Cores. It also provides an interface for device drivers to access these
resources.

Currently the bus driver has some limitations, for example IRQ handling or
memory mapped memory support, which will be addressed once drivers that need
these features are submitted.

As a first driver using the new bus, men_z188_adc.c, an IIO ADC driver, is
included in this patch-set.

Johannes Thumshirn (3):
drivers: Introduce MEN Chameleon Bus
mcb: Add PCI carrier for MEN Chameleon Bus
iio: adc: Add MEN 16z188 ADC driver

MAINTAINERS | 6 +
drivers/Kconfig | 2 +
drivers/Makefile | 1 +
drivers/iio/adc/Kconfig | 10 +
drivers/iio/adc/Makefile | 1 +
drivers/iio/adc/men_z188_adc.c | 171 +++++++++++++++++
drivers/mcb/Kconfig | 29 +++
drivers/mcb/Makefile | 7 +
drivers/mcb/mcb-core.c | 414 ++++++++++++++++++++++++++++++++++++++++
drivers/mcb/mcb-internal.h | 118 ++++++++++++
drivers/mcb/mcb-parse.c | 159 +++++++++++++++
drivers/mcb/mcb-pci.c | 114 +++++++++++
include/linux/mcb.h | 119 ++++++++++++
include/linux/mod_devicetable.h | 5 +
14 files changed, 1156 insertions(+)
create mode 100644 drivers/iio/adc/men_z188_adc.c
create mode 100644 drivers/mcb/Kconfig
create mode 100644 drivers/mcb/Makefile
create mode 100644 drivers/mcb/mcb-core.c
create mode 100644 drivers/mcb/mcb-internal.h
create mode 100644 drivers/mcb/mcb-parse.c
create mode 100644 drivers/mcb/mcb-pci.c
create mode 100644 include/linux/mcb.h

--
1.8.5.4

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/