USB: gadget: pxa2xx_udc supports inverted vbus
authorDmitry Baryshkov <dbaryshkov@gmail.com>
Fri, 7 Dec 2007 02:18:03 +0000 (18:18 -0800)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 1 Feb 2008 22:34:57 +0000 (14:34 -0800)
Some boards (like e.g. Tosa) invert the VBUS-detection signal:
it's low when a host is supplying VBUS, and high otherwise.
Allow specifying whether gpio_vbus value is inverted.

Signed-off-by: Dmitry Baryshkov <dbaryshkov@gmail.com>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/gadget/pxa2xx_udc.c
include/asm-arm/mach/udc_pxa2xx.h

index 4abf9d26d6150f71bd8051ec08671e412899ee39..8bd9ce26bd957f78b9ff628d5bc91cefddd7cf65 100644 (file)
@@ -127,8 +127,10 @@ static int is_vbus_present(void)
 {
        struct pxa2xx_udc_mach_info             *mach = the_controller->mach;
 
-       if (mach->gpio_vbus)
-               return gpio_get_value(mach->gpio_vbus);
+       if (mach->gpio_vbus) {
+               int value = gpio_get_value(mach->gpio_vbus);
+               return mach->gpio_vbus_inverted ? !value : value;
+       }
        if (mach->udc_is_connected)
                return mach->udc_is_connected();
        return 1;
@@ -1398,6 +1400,9 @@ static irqreturn_t udc_vbus_irq(int irq, void *_dev)
        struct pxa2xx_udc       *dev = _dev;
        int                     vbus = gpio_get_value(dev->mach->gpio_vbus);
 
+       if (dev->mach->gpio_vbus_inverted)
+               vbus = !vbus;
+
        pxa2xx_udc_vbus_session(&dev->gadget, vbus);
        return IRQ_HANDLED;
 }
index ff0a95715a07befda0621fcfca85d829b0ab53ed..f191e147ea90aed42aa691fa37f043ad7cc897e2 100644 (file)
@@ -19,7 +19,9 @@ struct pxa2xx_udc_mach_info {
         * with on-chip GPIOs not Lubbock's wierd hardware, can have a sane
         * VBUS IRQ and omit the methods above.  Store the GPIO number
         * here; for GPIO 0, also mask in one of the pxa_gpio_mode() bits.
+        * Note that sometimes the signals go through inverters...
         */
+       bool    gpio_vbus_inverted;
        u16     gpio_vbus;                      /* high == vbus present */
        u16     gpio_pullup;                    /* high == pullup activated */
 };