3d565bd6fb
The Freescale/NXP i.MX8 USB3, MIPI DSI, and PCIE PHYs are only present on the NXP i.MX8 family of SoCs. Hence wrap the config symbols for these PHYs inside a check for ARCH_MXC && ARM64, to prevent asking the user about these drivers when configuring a kernel without NXP i.MX SoC family support. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Reviewed-by: Guido Günther <agx@sigxcpu.org> Link: https://lore.kernel.org/r/393868affd830016d35f0d9aba32ccd7098c8073.1641987369.git.geert+renesas@glider.be Signed-off-by: Vinod Koul <vkoul@kernel.org>
30 lines
697 B
Plaintext
30 lines
697 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
if (ARCH_MXC && ARM64) || COMPILE_TEST
|
|
|
|
config PHY_FSL_IMX8MQ_USB
|
|
tristate "Freescale i.MX8M USB3 PHY"
|
|
depends on OF && HAS_IOMEM
|
|
select GENERIC_PHY
|
|
default ARCH_MXC && ARM64
|
|
|
|
config PHY_MIXEL_MIPI_DPHY
|
|
tristate "Mixel MIPI DSI PHY support"
|
|
depends on OF && HAS_IOMEM
|
|
select GENERIC_PHY
|
|
select GENERIC_PHY_MIPI_DPHY
|
|
select REGMAP_MMIO
|
|
help
|
|
Enable this to add support for the Mixel DSI PHY as found
|
|
on NXP's i.MX8 family of SOCs.
|
|
|
|
config PHY_FSL_IMX8M_PCIE
|
|
tristate "Freescale i.MX8M PCIE PHY"
|
|
depends on OF && HAS_IOMEM
|
|
select GENERIC_PHY
|
|
help
|
|
Enable this to add support for the PCIE PHY as found on
|
|
i.MX8M family of SOCs.
|
|
|
|
endif
|