Commit 2ff8a1ee authored by Steen Hegelund's avatar Steen Hegelund Committed by Vinod Koul
Browse files

phy: Add Sparx5 ethernet serdes PHY driver



Add the Microchip Sparx5 ethernet serdes PHY driver for the 6G, 10G and 25G
interfaces available in the Sparx5 SoC.

Signed-off-by: default avatarBjarni Jonasson <bjarni.jonasson@microchip.com>
Signed-off-by: default avatarSteen Hegelund <steen.hegelund@microchip.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Reviewed-by: default avatarAlexandre Belloni <alexandre.belloni@bootlin.com>
Link: https://lore.kernel.org/r/20210218161451.3489955-4-steen.hegelund@microchip.com


Signed-off-by: default avatarVinod Koul <vkoul@kernel.org>
parent 6c172e73
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -71,6 +71,7 @@ source "drivers/phy/ingenic/Kconfig"
source "drivers/phy/lantiq/Kconfig"
source "drivers/phy/marvell/Kconfig"
source "drivers/phy/mediatek/Kconfig"
source "drivers/phy/microchip/Kconfig"
source "drivers/phy/motorola/Kconfig"
source "drivers/phy/mscc/Kconfig"
source "drivers/phy/qualcomm/Kconfig"
+1 −0
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@ obj-y += allwinner/ \
					   lantiq/	\
					   marvell/	\
					   mediatek/	\
					   microchip/	\
					   motorola/	\
					   mscc/	\
					   qualcomm/	\
+12 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Phy drivers for Microchip devices
#

config PHY_SPARX5_SERDES
	tristate "Microchip Sparx5 SerDes PHY driver"
	select GENERIC_PHY
	depends on OF
	depends on HAS_IOMEM
	help
	  Enable this for support of the 10G/25G SerDes on Microchip Sparx5.
+6 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0-only
#
# Makefile for the Microchip phy drivers.
#

obj-$(CONFIG_PHY_SPARX5_SERDES) := sparx5_serdes.o
+2480 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading