-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: Introduce MEN Chameleon Bus
The MCB (MEN Chameleon Bus) is a Bus specific to MEN Mikroelektronik FPGA based devices. It is used to identify MCB based IP-Cores within an FPGA and provide the necessary framework for instantiating drivers for these devices. Signed-off-by: Johannes Thumshirn <johannes.thumshirn@men.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Johannes Thumshirn
authored and
Greg Kroah-Hartman
committed
Feb 28, 2014
1 parent
e5bb742
commit 3764e82
Showing
10 changed files
with
842 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -172,4 +172,6 @@ source "drivers/phy/Kconfig" | |
|
||
source "drivers/powercap/Kconfig" | ||
|
||
source "drivers/mcb/Kconfig" | ||
|
||
endmenu |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# | ||
# MEN Chameleon Bus (MCB) support | ||
# | ||
|
||
menuconfig MCB | ||
tristate "MCB support" | ||
default m | ||
help | ||
|
||
The MCB (MEN Chameleon Bus) is a Bus specific to MEN Mikroelektronik | ||
FPGA based devices. It is used to identify MCB based IP-Cores within | ||
an FPGA and provide the necessary framework for instantiating drivers | ||
for these devices. | ||
|
||
If build as a module, the module is called mcb.ko |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|
||
obj-$(CONFIG_MCB) += mcb.o | ||
|
||
mcb-y += mcb-core.o | ||
mcb-y += mcb-parse.o |
Oops, something went wrong.