[ar71xx] add ar913x specific USB setup
authorGabor Juhos <juhosg@openwrt.org>
Thu, 4 Dec 2008 07:19:23 +0000 (07:19 +0000)
committerGabor Juhos <juhosg@openwrt.org>
Thu, 4 Dec 2008 07:19:23 +0000 (07:19 +0000)
SVN-Revision: 13505

target/linux/ar71xx/files/arch/mips/ar71xx/platform.c

index ad22e06e17a23798bf0e7a020fa026fd9b905737..5c8791be283f80bdd3420fc287521bb56362345e 100644 (file)
@@ -103,6 +103,18 @@ static void ar71xx_usb_setup(void)
        mdelay(900);
 }
 
+static void ar91xx_usb_setup(void)
+{
+       ar71xx_device_stop(RESET_MODULE_USBSUS_OVERRIDE);
+       mdelay(10);
+
+       ar71xx_device_start(RESET_MODULE_USB_HOST);
+       mdelay(10);
+
+       ar71xx_device_start(RESET_MODULE_USB_PHY);
+       mdelay(10);
+}
+
 void __init ar71xx_add_device_usb(void)
 {
        switch (ar71xx_soc) {
@@ -116,6 +128,7 @@ void __init ar71xx_add_device_usb(void)
 
        case AR71XX_SOC_AR9130:
        case AR71XX_SOC_AR9132:
+               ar91xx_usb_setup();
                ar71xx_ehci_data.is_ar91xx = 1;
                platform_device_register(&ar71xx_ehci_device);
                break;