platform, please say 'Y' or 'M' here.
 
 config USB_DWC3_KEYSTONE
-       tristate "Texas Instruments Keystone2 Platforms"
-       depends on ARCH_KEYSTONE || COMPILE_TEST
+       tristate "Texas Instruments Keystone2/AM654 Platforms"
+       depends on ARCH_KEYSTONE || ARCH_K3 || COMPILE_TEST
        default USB_DWC3
        help
-         Support of USB2/3 functionality in TI Keystone2 platforms.
+         Support of USB2/3 functionality in TI Keystone2 and AM654 platforms.
          Say 'Y' or 'M' here if you have one such device
 
 config USB_DWC3_OF_SIMPLE
 
                goto err_irq;
        }
 
+       /* IRQ processing not required currently for AM65 */
+       if (of_device_is_compatible(node, "ti,am654-dwc3"))
+               goto skip_irq;
+
        irq = platform_get_irq(pdev, 0);
        if (irq < 0) {
                dev_err(&pdev->dev, "missing irq\n");
 
        kdwc3_enable_irqs(kdwc);
 
+skip_irq:
        error = of_platform_populate(node, NULL, NULL, dev);
        if (error) {
                dev_err(&pdev->dev, "failed to create dwc3 core\n");
 static int kdwc3_remove(struct platform_device *pdev)
 {
        struct dwc3_keystone *kdwc = platform_get_drvdata(pdev);
+       struct device_node *node = pdev->dev.of_node;
+
+       if (!of_device_is_compatible(node, "ti,am654-dwc3"))
+               kdwc3_disable_irqs(kdwc);
 
-       kdwc3_disable_irqs(kdwc);
        device_for_each_child(&pdev->dev, NULL, kdwc3_remove_core);
        pm_runtime_put_sync(kdwc->dev);
        pm_runtime_disable(kdwc->dev);
 
 static const struct of_device_id kdwc3_of_match[] = {
        { .compatible = "ti,keystone-dwc3", },
+       { .compatible = "ti,am654-dwc3" },
        {},
 };
 MODULE_DEVICE_TABLE(of, kdwc3_of_match);