mfd: omap-usb-host: override number of ports from platform data
authorRoger Quadros <rogerq@ti.com>
Thu, 8 Nov 2012 17:18:08 +0000 (19:18 +0200)
committerRoger Quadros <rogerq@ti.com>
Wed, 13 Feb 2013 11:22:49 +0000 (13:22 +0200)
Both OMAP4 and 5 exhibit the same revision ID in the REVISION register
but they have different number of ports i.e. 2 and 3 respectively.
So we can't rely on REVISION register for number of ports on OMAP5
and depend on platform data (or device tree) instead.

Signed-off-by: Roger Quadros <rogerq@ti.com>
Reviewed-by: Felipe Balbi <balbi@ti.com>
drivers/mfd/omap-usb-host.c
include/linux/platform_data/usb-omap.h

index 26319ca72e38a50bdf4542168d20f18b377d6e1c..779588be8ab2d4e99d148d47c9a853606321269e 100644 (file)
@@ -493,19 +493,27 @@ static int usbhs_omap_probe(struct platform_device *pdev)
         */
        pm_runtime_put_sync(dev);
 
-       switch (omap->usbhs_rev) {
-       case OMAP_USBHS_REV1:
-               omap->nports = 3;
-               break;
-       case OMAP_USBHS_REV2:
-               omap->nports = 2;
-               break;
-       default:
-               omap->nports = OMAP3_HS_USB_PORTS;
-               dev_dbg(dev,
-                 "USB HOST Rev : 0x%d not recognized, assuming %d ports\n",
-                  omap->usbhs_rev, omap->nports);
-               break;
+       /*
+        * If platform data contains nports then use that
+        * else make out number of ports from USBHS revision
+        */
+       if (pdata->nports) {
+               omap->nports = pdata->nports;
+       } else {
+               switch (omap->usbhs_rev) {
+               case OMAP_USBHS_REV1:
+                       omap->nports = 3;
+                       break;
+               case OMAP_USBHS_REV2:
+                       omap->nports = 2;
+                       break;
+               default:
+                       omap->nports = OMAP3_HS_USB_PORTS;
+                       dev_dbg(dev,
+                        "USB HOST Rev:0x%d not recognized, assuming %d ports\n",
+                        omap->usbhs_rev, omap->nports);
+                       break;
+               }
        }
 
        for (i = 0; i < omap->nports; i++)
index e697c85ad3bc47cead3127723c4a3db08bae6b3b..fa579b4c666b185c2912372b1c1148c0e6efbdbc 100644 (file)
@@ -55,6 +55,7 @@ struct ohci_hcd_omap_platform_data {
 };
 
 struct usbhs_omap_platform_data {
+       int                             nports;
        enum usbhs_omap_port_mode       port_mode[OMAP3_HS_USB_PORTS];
        int                             reset_gpio_port[OMAP3_HS_USB_PORTS];
        struct regulator                *regulator[OMAP3_HS_USB_PORTS];