mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
a4a86d273f
The driver adds support for generic CAN transceivers. Currently the modes supported by this driver are standby and normal modes for TI TCAN1042 and TCAN1043 CAN transceivers. The transceiver is modelled as a phy with pins controlled by gpios, to put the transceiver in various device functional modes. It also gets the phy attribute max_link_rate for the usage of CAN drivers. Signed-off-by: Aswath Govindraju <a-govindraju@ti.com> Acked-by: Marc Kleine-Budde <mkl@pengutronix.de> Link: https://lore.kernel.org/r/20210510051006.11393-4-a-govindraju@ti.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
36 lines
888 B
Makefile
36 lines
888 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the phy drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_GENERIC_PHY) += phy-core.o
|
|
obj-$(CONFIG_GENERIC_PHY_MIPI_DPHY) += phy-core-mipi-dphy.o
|
|
obj-$(CONFIG_PHY_CAN_TRANSCEIVER) += phy-can-transceiver.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_USB_LGM_PHY) += phy-lgm-usb.o
|
|
obj-y += allwinner/ \
|
|
amlogic/ \
|
|
broadcom/ \
|
|
cadence/ \
|
|
freescale/ \
|
|
hisilicon/ \
|
|
ingenic/ \
|
|
intel/ \
|
|
lantiq/ \
|
|
marvell/ \
|
|
mediatek/ \
|
|
microchip/ \
|
|
motorola/ \
|
|
mscc/ \
|
|
qualcomm/ \
|
|
ralink/ \
|
|
renesas/ \
|
|
rockchip/ \
|
|
samsung/ \
|
|
socionext/ \
|
|
st/ \
|
|
tegra/ \
|
|
ti/ \
|
|
xilinx/
|