mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
dddc97e823
The MIPI D-PHY spec defines default values and boundaries for most of the parameters it defines. Introduce helpers to help drivers get meaningful values based on their current parameters, and validate the boundaries of these parameters if needed. Signed-off-by: Maxime Ripard <maxime.ripard@bootlin.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
31 lines
847 B
Makefile
31 lines
847 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_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/ \
|
|
cadence/ \
|
|
freescale/ \
|
|
hisilicon/ \
|
|
marvell/ \
|
|
motorola/ \
|
|
mscc/ \
|
|
qualcomm/ \
|
|
ralink/ \
|
|
samsung/ \
|
|
socionext/ \
|
|
st/ \
|
|
ti/
|