-
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.
[POWERPC] bestcomm: core bestcomm support for Freescale MPC5200
This patch adds support for the core of the BestComm API for the Freescale MPC5200(b). The BestComm engine is a microcode-controlled / tasks-based DMA used by several of the onchip devices. Setting up the tasks / memory allocation and all common low level functions are handled by this patch. The specifics details of each tasks and their microcode are split-out in separate patches. This is not the official API, but a much cleaner one. (hopefully) Signed-off-by: Sylvain Munaut <tnt@246tNt.com> Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
- Loading branch information
Sylvain Munaut
authored and
Grant Likely
committed
Oct 16, 2007
1 parent
07e6e93
commit 2f9ea1b
Showing
9 changed files
with
1,312 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 |
---|---|---|
|
@@ -315,4 +315,6 @@ config FSL_ULI1575 | |
config CPM | ||
bool | ||
|
||
source "arch/powerpc/sysdev/bestcomm/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,18 @@ | ||
# | ||
# Kconfig options for Bestcomm | ||
# | ||
|
||
config PPC_BESTCOMM | ||
tristate "Bestcomm DMA engine support" | ||
depends on PPC_MPC52xx | ||
default n | ||
select PPC_LIB_RHEAP | ||
help | ||
BestComm is the name of the communication coprocessor found | ||
on the Freescale MPC5200 family of processor. It's usage is | ||
optionnal for some drivers (like ATA), but required for | ||
others (like FEC). | ||
|
||
If you want to use drivers that require DMA operations, | ||
answer Y or M. Otherwise say N. | ||
|
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,8 @@ | ||
# | ||
# Makefile for BestComm & co | ||
# | ||
|
||
bestcomm-core-objs := bestcomm.o sram.o | ||
|
||
obj-$(CONFIG_PPC_BESTCOMM) += bestcomm-core.o | ||
|
Oops, something went wrong.