-
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.
dpaa_eth: add support for DPAA Ethernet
This introduces the Freescale Data Path Acceleration Architecture (DPAA) Ethernet driver (dpaa_eth) that builds upon the DPAA QMan, BMan, PAMU and FMan drivers to deliver Ethernet connectivity on the Freescale DPAA QorIQ platforms. Signed-off-by: Madalin Bucur <madalin.bucur@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
- Loading branch information
Madalin Bucur
authored and
David S. Miller
committed
Nov 16, 2016
1 parent
ff86aae
commit 9ad1a37
Showing
6 changed files
with
2,850 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
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,10 @@ | ||
menuconfig FSL_DPAA_ETH | ||
tristate "DPAA Ethernet" | ||
depends on FSL_SOC && FSL_DPAA && FSL_FMAN | ||
select PHYLIB | ||
select FSL_FMAN_MAC | ||
---help--- | ||
Data Path Acceleration Architecture Ethernet driver, | ||
supporting the Freescale QorIQ chips. | ||
Depends on Freescale Buffer Manager and Queue Manager | ||
driver and Frame Manager Driver. |
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,11 @@ | ||
# | ||
# Makefile for the Freescale DPAA Ethernet controllers | ||
# | ||
|
||
# Include FMan headers | ||
FMAN = $(srctree)/drivers/net/ethernet/freescale/fman | ||
ccflags-y += -I$(FMAN) | ||
|
||
obj-$(CONFIG_FSL_DPAA_ETH) += fsl_dpa.o | ||
|
||
fsl_dpa-objs += dpaa_eth.o |
Oops, something went wrong.