-
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.
Merge branch 'for-2.6.24' of git://git.secretlab.ca/git/linux-2.6-mpc…
…52xx into merge
- Loading branch information
Showing
27 changed files
with
2,591 additions
and
7 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 |
---|---|---|
|
@@ -699,3 +699,7 @@ source "crypto/Kconfig" | |
config PPC_CLOCK | ||
bool | ||
default n | ||
|
||
config PPC_LIB_RHEAP | ||
bool | ||
|
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
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
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
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,39 @@ | ||
# | ||
# 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. | ||
|
||
config PPC_BESTCOMM_ATA | ||
tristate "Bestcomm ATA task support" | ||
depends on PPC_BESTCOMM | ||
default n | ||
help | ||
This option enables the support for the ATA task. | ||
|
||
config PPC_BESTCOMM_FEC | ||
tristate "Bestcomm FEC tasks support" | ||
depends on PPC_BESTCOMM | ||
default n | ||
help | ||
This option enables the support for the FEC tasks. | ||
|
||
config PPC_BESTCOMM_GEN_BD | ||
tristate "Bestcomm GenBD tasks support" | ||
depends on PPC_BESTCOMM | ||
default n | ||
help | ||
This option enables the support for the GenBD tasks. | ||
|
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,14 @@ | ||
# | ||
# Makefile for BestComm & co | ||
# | ||
|
||
bestcomm-core-objs := bestcomm.o sram.o | ||
bestcomm-ata-objs := ata.o bcom_ata_task.o | ||
bestcomm-fec-objs := fec.o bcom_fec_rx_task.o bcom_fec_tx_task.o | ||
bestcomm-gen-bd-objs := gen_bd.o bcom_gen_bd_rx_task.o bcom_gen_bd_tx_task.o | ||
|
||
obj-$(CONFIG_PPC_BESTCOMM) += bestcomm-core.o | ||
obj-$(CONFIG_PPC_BESTCOMM_ATA) += bestcomm-ata.o | ||
obj-$(CONFIG_PPC_BESTCOMM_FEC) += bestcomm-fec.o | ||
obj-$(CONFIG_PPC_BESTCOMM_GEN_BD) += bestcomm-gen-bd.o | ||
|
Oops, something went wrong.