mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-07 06:14:24 +08:00
f48298d3fb
Now that the dpaa2-switch driver has basic I/O capabilities on the switch port net_devices and multiple bridging domains are supported, move the driver out of staging. The dpaa2-switch driver is placed right next to the dpaa2-eth driver since, in the near future, they will be sharing most of the data path. I didn't implement code reuse in this patch series because I wanted to keep it as small as possible. Also, the README is removed from staging with the intention to add proper rst documentation afterwards to actually match was is supported by the driver. Signed-off-by: Ioana Ciornei <ioana.ciornei@nxp.com> Signed-off-by: David S. Miller <davem@davemloft.net>
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config FSL_DPAA2_ETH
|
|
tristate "Freescale DPAA2 Ethernet"
|
|
depends on FSL_MC_BUS && FSL_MC_DPIO
|
|
select PHYLINK
|
|
select PCS_LYNX
|
|
select FSL_XGMAC_MDIO
|
|
select NET_DEVLINK
|
|
help
|
|
This is the DPAA2 Ethernet driver supporting Freescale SoCs
|
|
with DPAA2 (DataPath Acceleration Architecture v2).
|
|
The driver manages network objects discovered on the Freescale
|
|
MC bus.
|
|
|
|
if FSL_DPAA2_ETH
|
|
config FSL_DPAA2_ETH_DCB
|
|
bool "Data Center Bridging (DCB) Support"
|
|
default n
|
|
depends on DCB
|
|
help
|
|
Enable Priority-Based Flow Control (PFC) support for DPAA2 Ethernet
|
|
devices.
|
|
endif
|
|
|
|
config FSL_DPAA2_PTP_CLOCK
|
|
tristate "Freescale DPAA2 PTP Clock"
|
|
depends on FSL_DPAA2_ETH && PTP_1588_CLOCK_QORIQ
|
|
default y
|
|
help
|
|
This driver adds support for using the DPAA2 1588 timer module
|
|
as a PTP clock.
|
|
|
|
config FSL_DPAA2_SWITCH
|
|
tristate "Freescale DPAA2 Ethernet Switch"
|
|
depends on BRIDGE || BRIDGE=n
|
|
depends on NET_SWITCHDEV
|
|
help
|
|
Driver for Freescale DPAA2 Ethernet Switch. This driver manages
|
|
switch objects discovered on the Freeescale MC bus.
|