mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 06:39:05 +00:00

Replace the ARCH_TEGRA_194_SOC || ARCH_TEGRA_234_SOC dependency with a more generic ARCH_TEGRA check for the Tegra194 PIPE2UPHY PHY driver. This allows the PHY driver to be built on all Tegra platforms instead of being limited to specific SoCs. Link: https://patchwork.kernel.org/project/linux-pci/patch/20250128044244.2766334-1-vidyas@nvidia.com/ Signed-off-by: Vidya Sagar <vidyas@nvidia.com> Acked-by: Thierry Reding <treding@nvidia.com> Reviewed-by: Niklas Cassel <cassel@kernel.org> Link: https://lore.kernel.org/r/20250508052021.4135874-1-vidyas@nvidia.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
21 lines
601 B
Plaintext
21 lines
601 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
config PHY_TEGRA_XUSB
|
|
tristate "NVIDIA Tegra XUSB pad controller driver"
|
|
depends on ARCH_TEGRA && USB_SUPPORT
|
|
select USB_COMMON
|
|
select USB_CONN_GPIO
|
|
select USB_PHY
|
|
help
|
|
Choose this option if you have an NVIDIA Tegra SoC.
|
|
|
|
To compile this driver as a module, choose M here: the module will
|
|
be called phy-tegra-xusb.
|
|
|
|
config PHY_TEGRA194_P2U
|
|
tristate "NVIDIA Tegra194 PIPE2UPHY PHY driver"
|
|
depends on ARCH_TEGRA || COMPILE_TEST
|
|
select GENERIC_PHY
|
|
help
|
|
Enable this to support the P2U (PIPE to UPHY) that is part of Tegra 19x
|
|
and 234 SOCs.
|