mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
41d393aaea
The Cadence D-PHY can be configured in Tx (DSI) mode or Rx (CSI) mode. Both modes have a different programming sequence and share little among them. In addition, a PHY configured in Tx mode cannot be used in Rx mode and vice versa. For this reason, create a separate driver for the Rx mode to make it easier to read and maintain. Signed-off-by: Pratyush Yadav <p.yadav@ti.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Link: https://lore.kernel.org/r/20220301111621.2992275-2-p.yadav@ti.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
7 lines
309 B
Makefile
7 lines
309 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_PHY_CADENCE_TORRENT) += phy-cadence-torrent.o
|
|
obj-$(CONFIG_PHY_CADENCE_DPHY) += cdns-dphy.o
|
|
obj-$(CONFIG_PHY_CADENCE_DPHY_RX) += cdns-dphy-rx.o
|
|
obj-$(CONFIG_PHY_CADENCE_SIERRA) += phy-cadence-sierra.o
|
|
obj-$(CONFIG_PHY_CADENCE_SALVO) += phy-cadence-salvo.o
|