The pxa27x_udc should support 2 modes of initialization :
 - one through legacy platform data
 - one new through device-tree

Prepare the double support by moving the initialization data, ie. the
gpios, into the udc control structure.

Signed-off-by: Robert Jarzmik <[email protected]>

---
Since v5: This new patch, split out of the first DT patch
---
 drivers/usb/gadget/udc/pxa27x_udc.c | 52 +++++++++++++++++++++++++------------
 drivers/usb/gadget/udc/pxa27x_udc.h |  4 +++
 2 files changed, 39 insertions(+), 17 deletions(-)

diff --git a/drivers/usb/gadget/udc/pxa27x_udc.c 
b/drivers/usb/gadget/udc/pxa27x_udc.c
index 597d39f..0e356c0 100644
--- a/drivers/usb/gadget/udc/pxa27x_udc.c
+++ b/drivers/usb/gadget/udc/pxa27x_udc.c
@@ -1508,16 +1508,16 @@ static struct usb_ep_ops pxa_ep_ops = {
 static void dplus_pullup(struct pxa_udc *udc, int on)
 {
        if (on) {
-               if (gpio_is_valid(udc->mach->gpio_pullup))
-                       gpio_set_value(udc->mach->gpio_pullup,
-                                      !udc->mach->gpio_pullup_inverted);
-               if (udc->mach->udc_command)
+               if (gpio_is_valid(udc->gpio_pullup))
+                       gpio_set_value(udc->gpio_pullup,
+                                      !udc->gpio_pullup_inverted);
+               if (udc->mach && udc->mach->udc_command)
                        udc->mach->udc_command(PXA2XX_UDC_CMD_CONNECT);
        } else {
-               if (gpio_is_valid(udc->mach->gpio_pullup))
-                       gpio_set_value(udc->mach->gpio_pullup,
-                                      udc->mach->gpio_pullup_inverted);
-               if (udc->mach->udc_command)
+               if (gpio_is_valid(udc->gpio_pullup))
+                       gpio_set_value(udc->gpio_pullup,
+                                      udc->gpio_pullup_inverted);
+               if (udc->mach && udc->mach->udc_command)
                        udc->mach->udc_command(PXA2XX_UDC_CMD_DISCONNECT);
        }
        udc->pullup_on = on;
@@ -1609,7 +1609,8 @@ static int pxa_udc_pullup(struct usb_gadget *_gadget, int 
is_active)
 {
        struct pxa_udc *udc = to_gadget_udc(_gadget);
 
-       if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command)
+       if (!gpio_is_valid(udc->gpio_pullup)
+           && !(udc->mach && udc->mach->udc_command))
                return -EOPNOTSUPP;
 
        dplus_pullup(udc, is_active);
@@ -2405,6 +2406,21 @@ static struct pxa_udc memory = {
 };
 
 /**
+ * pxa_udc_probe_pdata - legacy platform data probe
+ * @pdev: platform device
+ * @udc: pxa_udc structure to fill
+ *
+ * Simple copy of data from platform_data to udc control structure
+ */
+static void pxa_udc_probe_pdata(struct platform_device *pdev,
+                              struct pxa_udc *udc)
+{
+       udc->mach = dev_get_platdata(&pdev->dev);
+       udc->gpio_pullup = udc->mach->gpio_pullup;
+       udc->gpio_pullup_inverted = udc->mach->gpio_pullup_inverted;
+}
+
+/**
  * pxa_udc_probe - probes the udc device
  * @_dev: platform device
  *
@@ -2415,7 +2431,9 @@ static int pxa_udc_probe(struct platform_device *pdev)
 {
        struct resource *regs;
        struct pxa_udc *udc = &memory;
-       int retval = 0, gpio;
+       int retval = 0;
+
+       pxa_udc_probe_pdata(pdev, udc);
 
        regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        if (!regs)
@@ -2425,19 +2443,17 @@ static int pxa_udc_probe(struct platform_device *pdev)
                return udc->irq;
 
        udc->dev = &pdev->dev;
-       udc->mach = dev_get_platdata(&pdev->dev);
        udc->transceiver = usb_get_phy(USB_PHY_TYPE_USB2);
 
-       gpio = udc->mach->gpio_pullup;
-       if (gpio_is_valid(gpio)) {
-               retval = gpio_request(gpio, "USB D+ pullup");
+       if (gpio_is_valid(udc->gpio_pullup)) {
+               retval = gpio_request(udc->gpio_pullup, "USB D+ pullup");
                if (retval == 0)
-                       gpio_direction_output(gpio,
-                                      udc->mach->gpio_pullup_inverted);
+                       gpio_direction_output(udc->gpio_pullup,
+                                      udc->gpio_pullup_inverted);
        }
        if (retval) {
                dev_err(&pdev->dev, "Couldn't request gpio %d : %d\n",
-                       gpio, retval);
+                       udc->gpio_pullup, retval);
                return retval;
        }
 
@@ -2491,6 +2507,8 @@ err_clk_prepare:
        clk_put(udc->clk);
        udc->clk = NULL;
 err_clk:
+       if (gpio_is_valid(udc->gpio_pullup))
+               gpio_free(udc->gpio_pullup);
        return retval;
 }
 
diff --git a/drivers/usb/gadget/udc/pxa27x_udc.h 
b/drivers/usb/gadget/udc/pxa27x_udc.h
index 28f2b53..8995b34 100644
--- a/drivers/usb/gadget/udc/pxa27x_udc.h
+++ b/drivers/usb/gadget/udc/pxa27x_udc.h
@@ -421,6 +421,8 @@ struct udc_stats {
  * @driver: bound gadget (zero, g_ether, g_mass_storage, ...)
  * @dev: device
  * @mach: machine info, used to activate specific GPIO
+ * @gpio_pullup: if valid, D+ pullup GPIO
+ * @gpio_pullup_inverted: 1 if pullup has inverted logic
  * @transceiver: external transceiver to handle vbus sense and D+ pullup
  * @ep0state: control endpoint state machine state
  * @stats: statistics on udc usage
@@ -448,6 +450,8 @@ struct pxa_udc {
        struct device                           *dev;
        struct pxa2xx_udc_mach_info             *mach;
        struct usb_phy                          *transceiver;
+       int                                     gpio_pullup;
+       int                                     gpio_pullup_inverted;
 
        enum ep0_state                          ep0state;
        struct udc_stats                        stats;
-- 
2.0.0.rc2

--
To unsubscribe from this list: send the line "unsubscribe linux-usb" in
the body of a message to [email protected]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to