Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0352d1d8 authored by Ioana Radulescu's avatar Ioana Radulescu Committed by Greg Kroah-Hartman
Browse files

staging: fsl-dpaa2/eth: Add APIs for DPNI objects



Add the command build/parse APIs for operating on DPNI objects through
the DPAA2 Management Complex.

Signed-off-by: default avatarIoana Radulescu <ruxandra.radulescu@nxp.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 9425f00e
Loading
Loading
Loading
Loading
+2 −0
Original line number Original line Diff line number Diff line
@@ -94,6 +94,8 @@ source "drivers/staging/fbtft/Kconfig"


source "drivers/staging/fsl-mc/Kconfig"
source "drivers/staging/fsl-mc/Kconfig"


source "drivers/staging/fsl-dpaa2/Kconfig"

source "drivers/staging/wilc1000/Kconfig"
source "drivers/staging/wilc1000/Kconfig"


source "drivers/staging/most/Kconfig"
source "drivers/staging/most/Kconfig"
+1 −0
Original line number Original line Diff line number Diff line
@@ -36,6 +36,7 @@ obj-$(CONFIG_UNISYSSPAR) += unisys/
obj-$(CONFIG_COMMON_CLK_XLNX_CLKWZRD)	+= clocking-wizard/
obj-$(CONFIG_COMMON_CLK_XLNX_CLKWZRD)	+= clocking-wizard/
obj-$(CONFIG_FB_TFT)		+= fbtft/
obj-$(CONFIG_FB_TFT)		+= fbtft/
obj-$(CONFIG_FSL_MC_BUS)	+= fsl-mc/
obj-$(CONFIG_FSL_MC_BUS)	+= fsl-mc/
obj-$(CONFIG_FSL_DPAA2)		+= fsl-dpaa2/
obj-$(CONFIG_WILC1000)		+= wilc1000/
obj-$(CONFIG_WILC1000)		+= wilc1000/
obj-$(CONFIG_MOST)		+= most/
obj-$(CONFIG_MOST)		+= most/
obj-$(CONFIG_KS7010)		+= ks7010/
obj-$(CONFIG_KS7010)		+= ks7010/
+17 −0
Original line number Original line Diff line number Diff line
#
# Freescale DataPath Acceleration Architecture Gen2 (DPAA2) drivers
#

config FSL_DPAA2
	bool "Freescale DPAA2 devices"
	depends on FSL_MC_BUS
	---help---
	  Build drivers for Freescale DataPath Acceleration
	  Architecture (DPAA2) family of SoCs.

config FSL_DPAA2_ETH
	tristate "Freescale DPAA2 Ethernet"
	depends on FSL_DPAA2 && FSL_MC_DPIO
	---help---
	  Ethernet driver for Freescale DPAA2 SoCs, using the
	  Freescale MC bus driver
+5 −0
Original line number Original line Diff line number Diff line
#
# Freescale DataPath Acceleration Architecture Gen2 (DPAA2) drivers
#

obj-$(CONFIG_FSL_DPAA2_ETH)	+= ethernet/
+7 −0
Original line number Original line Diff line number Diff line
#
# Makefile for the Freescale DPAA2 Ethernet controller
#

obj-$(CONFIG_FSL_DPAA2_ETH) += fsl-dpaa2-eth.o

fsl-dpaa2-eth-objs    := dpni.o
Loading