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:08:30 +0100
commite87ca6e235e4ea1a3faf6eea2c64dd9fd3eb8ec1 (patch)
tree301fe025eeb9afb01d7bf4b3a710249c57a13513
parent1905fa7cb425048b4790ce8efbee0b691638e63d (diff)
downloadbarebox-e87ca6e235e4.tar.gz
barebox-e87ca6e235e4.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.