mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-09 14:14:00 +08:00
51f6b410fc
The Microsemi Ocelot can mux SerDes lanes (aka macros) to different switch ports or even make it act as a PCIe interface. This adds support for the muxing of the SerDes. Signed-off-by: Quentin Schulz <quentin.schulz@bootlin.com> Signed-off-by: David S. Miller <davem@davemloft.net>
27 lines
726 B
Makefile
27 lines
726 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the phy drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_GENERIC_PHY) += phy-core.o
|
|
obj-$(CONFIG_PHY_LPC18XX_USB_OTG) += phy-lpc18xx-usb-otg.o
|
|
obj-$(CONFIG_PHY_XGENE) += phy-xgene.o
|
|
obj-$(CONFIG_PHY_PISTACHIO_USB) += phy-pistachio-usb.o
|
|
obj-$(CONFIG_ARCH_SUNXI) += allwinner/
|
|
obj-$(CONFIG_ARCH_MESON) += amlogic/
|
|
obj-$(CONFIG_LANTIQ) += lantiq/
|
|
obj-$(CONFIG_ARCH_MEDIATEK) += mediatek/
|
|
obj-$(CONFIG_ARCH_RENESAS) += renesas/
|
|
obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
|
obj-$(CONFIG_ARCH_TEGRA) += tegra/
|
|
obj-y += broadcom/ \
|
|
hisilicon/ \
|
|
marvell/ \
|
|
motorola/ \
|
|
mscc/ \
|
|
qualcomm/ \
|
|
ralink/ \
|
|
samsung/ \
|
|
st/ \
|
|
ti/
|