summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <a.fatoum@pengutronix.de>2024-02-19 18:29:25 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2024-02-20 12:51:51 +0100
commitbf816209a317dba723f3fbc23428f00f3ffa601a (patch)
tree89eec3a09ed39956a2ffa2586d70ee2acac96769
parentdc478709c669a5c0c11633706400685eaaba6ad5 (diff)
downloadbarebox-bf816209a317dba723f3fbc23428f00f3ffa601a.tar.gz
barebox-bf816209a317dba723f3fbc23428f00f3ffa601a.tar.xz
phy: freescale: imx8mq-usb: make i.MX8MP support more explicit
The driver was originally written for use with the i.MX8MQ's DWC3, but has been extended to also cover the i.MX8MP's DWC3. While we won't change the config symbol name, because that could break existing users, we can and should change the symbol prompt and help text as well as the dependency to reflect that the driver also targets the i.MX8MP. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Link: https://lore.barebox.org/20240219172925.3798024-5-a.fatoum@pengutronix.de Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--drivers/phy/freescale/Kconfig8
1 files changed, 6 insertions, 2 deletions
diff --git a/drivers/phy/freescale/Kconfig b/drivers/phy/freescale/Kconfig
index 4eb1f9a55c..04e8bcf188 100644
--- a/drivers/phy/freescale/Kconfig
+++ b/drivers/phy/freescale/Kconfig
@@ -1,5 +1,9 @@
# SPDX-License-Identifier: GPL-2.0-only
+
config PHY_FSL_IMX8MQ_USB
- bool "Freescale i.MX8M USB3 PHY"
- default ARCH_IMX8MQ
+ bool "Freescale i.MX8MQ/P USB3 PHY"
+ default ARCH_IMX8MQ || ARCH_IMX8MP
+ help
+ Enable this to add support for the USB PHY found on
+ the i.MX8M Quad and Plus.