]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
usb: ehci-mx6: Extend support to i.MX91, i.MX93, i.MX94, and i.MX95
authorAlice Guo <alice.guo@nxp.com>
Tue, 28 Oct 2025 02:46:22 +0000 (10:46 +0800)
committerFabio Estevam <festevam@nabladev.com>
Tue, 4 Nov 2025 15:39:45 +0000 (12:39 -0300)
Since the EHCI USB driver is shared across i.MX91, i.MX93, i.MX94, and
i.MX95, the condition check is updated to use IMX9.

Signed-off-by: Alice Guo <alice.guo@nxp.com>
Reviewed-by: Marek Vasut <marek.vasut@mailbox.org>
drivers/usb/host/Kconfig

index 2cf687fc4f3bd98572896264158c1f76c4c3b926..427b62e934b23e6c4dea6679a37b0e9217c0fd68 100644 (file)
@@ -210,10 +210,10 @@ config USB_EHCI_MX6
 
 config USB_EHCI_MX7
        bool "Support for i.MX7/i.MX8M/i.MX9 on-chip EHCI USB controller"
-       depends on ARCH_MX7 || IMX8M || IMX93 || IMX95
+       depends on ARCH_MX7 || IMX8M || IMX9
        select EHCI_HCD_INIT_AFTER_RESET if ARCH_MX7
-       select PHY if IMX8M || IMX93 || IMX95
-       select NOP_PHY if IMX8M || IMX93 || IMX95
+       select PHY if IMX8M || IMX9
+       select NOP_PHY if IMX8M || IMX9
        default y
        ---help---
          Enables support for the on-chip EHCI controller on i.MX7/i.MX8M/i.MX9 SoCs.