forked from torvalds/linux
-
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 <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
- Loading branch information
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5667,6 +5667,12 @@ L: [email protected] | |
S: Supported | ||
F: drivers/watchdog/mena21_wdt.c | ||
|
||
MEN CHAMELEON BUS (mcb) | ||
M: Johannes Thumshirn <[email protected]> | ||
S: Supported | ||
F: drivers/mcb/ | ||
F: include/linux/mcb.h | ||
|
||
METAG ARCHITECTURE | ||
M: James Hogan <[email protected]> | ||
L: [email protected] | ||
|
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.