Commit 42f4891c authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Merge tag 'fixes-for-v3.12-rc2' of...

Merge tag 'fixes-for-v3.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb into usb-linus

Felipe writes:

usb: fixes for v3.12-rc2

Here's first set of fixes for v3.12-rc series, patches have
been soaking in linux-usb for a while now.

We have the usual sparse and build warnings, a Kconfig fix
to a mismerge on dwc3 Kconfig, fix for a possible memory leak
in dwc3, s3c-hsotg won't disconnect when bus goes idle, locking
fix in mv_u3d_core, endpoint disable fix in f_mass_storage.

We also have one device ID added to dwc3's PCI glue layer in order
to support Intel's BayTrail devices.
Signed-of-by: default avatarFelipe Balbi <balbi@ti.com>
parents 7d26a78f d3675e3a
config USB_DWC3 config USB_DWC3
tristate "DesignWare USB3 DRD Core Support" tristate "DesignWare USB3 DRD Core Support"
depends on (USB || USB_GADGET) && HAS_DMA depends on (USB || USB_GADGET) && HAS_DMA
depends on EXTCON
select USB_XHCI_PLATFORM if USB_SUPPORT && USB_XHCI_HCD select USB_XHCI_PLATFORM if USB_SUPPORT && USB_XHCI_HCD
help help
Say Y or M here if your system has a Dual Role SuperSpeed Say Y or M here if your system has a Dual Role SuperSpeed
......
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
/* FIXME define these in <linux/pci_ids.h> */ /* FIXME define these in <linux/pci_ids.h> */
#define PCI_VENDOR_ID_SYNOPSYS 0x16c3 #define PCI_VENDOR_ID_SYNOPSYS 0x16c3
#define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd #define PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3 0xabcd
#define PCI_DEVICE_ID_INTEL_BYT 0x0f37
struct dwc3_pci { struct dwc3_pci {
struct device *dev; struct device *dev;
...@@ -187,6 +188,7 @@ static DEFINE_PCI_DEVICE_TABLE(dwc3_pci_id_table) = { ...@@ -187,6 +188,7 @@ static DEFINE_PCI_DEVICE_TABLE(dwc3_pci_id_table) = {
PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS, PCI_DEVICE(PCI_VENDOR_ID_SYNOPSYS,
PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3), PCI_DEVICE_ID_SYNOPSYS_HAPSUSB3),
}, },
{ PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_BYT), },
{ } /* Terminating Entry */ { } /* Terminating Entry */
}; };
MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table); MODULE_DEVICE_TABLE(pci, dwc3_pci_id_table);
......
...@@ -2611,15 +2611,13 @@ int dwc3_gadget_init(struct dwc3 *dwc) ...@@ -2611,15 +2611,13 @@ int dwc3_gadget_init(struct dwc3 *dwc)
ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget); ret = usb_add_gadget_udc(dwc->dev, &dwc->gadget);
if (ret) { if (ret) {
dev_err(dwc->dev, "failed to register udc\n"); dev_err(dwc->dev, "failed to register udc\n");
goto err5; goto err4;
} }
return 0; return 0;
err5:
dwc3_gadget_free_endpoints(dwc);
err4: err4:
dwc3_gadget_free_endpoints(dwc);
dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE, dma_free_coherent(dwc->dev, DWC3_EP0_BOUNCE_SIZE,
dwc->ep0_bounce, dwc->ep0_bounce_addr); dwc->ep0_bounce, dwc->ep0_bounce_addr);
......
...@@ -113,12 +113,6 @@ static int __init cdc_do_config(struct usb_configuration *c) ...@@ -113,12 +113,6 @@ static int __init cdc_do_config(struct usb_configuration *c)
c->bmAttributes |= USB_CONFIG_ATT_WAKEUP; c->bmAttributes |= USB_CONFIG_ATT_WAKEUP;
} }
fi_ecm = usb_get_function_instance("ecm");
if (IS_ERR(fi_ecm)) {
status = PTR_ERR(fi_ecm);
goto err_func_ecm;
}
f_ecm = usb_get_function(fi_ecm); f_ecm = usb_get_function(fi_ecm);
if (IS_ERR(f_ecm)) { if (IS_ERR(f_ecm)) {
status = PTR_ERR(f_ecm); status = PTR_ERR(f_ecm);
...@@ -129,35 +123,24 @@ static int __init cdc_do_config(struct usb_configuration *c) ...@@ -129,35 +123,24 @@ static int __init cdc_do_config(struct usb_configuration *c)
if (status) if (status)
goto err_add_ecm; goto err_add_ecm;
fi_serial = usb_get_function_instance("acm");
if (IS_ERR(fi_serial)) {
status = PTR_ERR(fi_serial);
goto err_get_acm;
}
f_acm = usb_get_function(fi_serial); f_acm = usb_get_function(fi_serial);
if (IS_ERR(f_acm)) { if (IS_ERR(f_acm)) {
status = PTR_ERR(f_acm); status = PTR_ERR(f_acm);
goto err_func_acm; goto err_get_acm;
} }
status = usb_add_function(c, f_acm); status = usb_add_function(c, f_acm);
if (status) if (status)
goto err_add_acm; goto err_add_acm;
return 0; return 0;
err_add_acm: err_add_acm:
usb_put_function(f_acm); usb_put_function(f_acm);
err_func_acm:
usb_put_function_instance(fi_serial);
err_get_acm: err_get_acm:
usb_remove_function(c, f_ecm); usb_remove_function(c, f_ecm);
err_add_ecm: err_add_ecm:
usb_put_function(f_ecm); usb_put_function(f_ecm);
err_get_ecm: err_get_ecm:
usb_put_function_instance(fi_ecm);
err_func_ecm:
return status; return status;
} }
......
...@@ -923,8 +923,9 @@ static int dummy_udc_stop(struct usb_gadget *g, ...@@ -923,8 +923,9 @@ static int dummy_udc_stop(struct usb_gadget *g,
struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g); struct dummy_hcd *dum_hcd = gadget_to_dummy_hcd(g);
struct dummy *dum = dum_hcd->dum; struct dummy *dum = dum_hcd->dum;
dev_dbg(udc_dev(dum), "unregister gadget driver '%s'\n", if (driver)
driver->driver.name); dev_dbg(udc_dev(dum), "unregister gadget driver '%s'\n",
driver->driver.name);
dum->driver = NULL; dum->driver = NULL;
...@@ -1000,8 +1001,8 @@ static int dummy_udc_remove(struct platform_device *pdev) ...@@ -1000,8 +1001,8 @@ static int dummy_udc_remove(struct platform_device *pdev)
{ {
struct dummy *dum = platform_get_drvdata(pdev); struct dummy *dum = platform_get_drvdata(pdev);
usb_del_gadget_udc(&dum->gadget);
device_remove_file(&dum->gadget.dev, &dev_attr_function); device_remove_file(&dum->gadget.dev, &dev_attr_function);
usb_del_gadget_udc(&dum->gadget);
return 0; return 0;
} }
......
...@@ -995,7 +995,7 @@ static void ecm_unbind(struct usb_configuration *c, struct usb_function *f) ...@@ -995,7 +995,7 @@ static void ecm_unbind(struct usb_configuration *c, struct usb_function *f)
usb_ep_free_request(ecm->notify, ecm->notify_req); usb_ep_free_request(ecm->notify, ecm->notify_req);
} }
struct usb_function *ecm_alloc(struct usb_function_instance *fi) static struct usb_function *ecm_alloc(struct usb_function_instance *fi)
{ {
struct f_ecm *ecm; struct f_ecm *ecm;
struct f_ecm_opts *opts; struct f_ecm_opts *opts;
......
...@@ -624,7 +624,7 @@ static void eem_unbind(struct usb_configuration *c, struct usb_function *f) ...@@ -624,7 +624,7 @@ static void eem_unbind(struct usb_configuration *c, struct usb_function *f)
usb_free_all_descriptors(f); usb_free_all_descriptors(f);
} }
struct usb_function *eem_alloc(struct usb_function_instance *fi) static struct usb_function *eem_alloc(struct usb_function_instance *fi)
{ {
struct f_eem *eem; struct f_eem *eem;
struct f_eem_opts *opts; struct f_eem_opts *opts;
......
...@@ -2260,10 +2260,12 @@ static int do_set_interface(struct fsg_common *common, struct fsg_dev *new_fsg) ...@@ -2260,10 +2260,12 @@ static int do_set_interface(struct fsg_common *common, struct fsg_dev *new_fsg)
/* Disable the endpoints */ /* Disable the endpoints */
if (fsg->bulk_in_enabled) { if (fsg->bulk_in_enabled) {
usb_ep_disable(fsg->bulk_in); usb_ep_disable(fsg->bulk_in);
fsg->bulk_in->driver_data = NULL;
fsg->bulk_in_enabled = 0; fsg->bulk_in_enabled = 0;
} }
if (fsg->bulk_out_enabled) { if (fsg->bulk_out_enabled) {
usb_ep_disable(fsg->bulk_out); usb_ep_disable(fsg->bulk_out);
fsg->bulk_out->driver_data = NULL;
fsg->bulk_out_enabled = 0; fsg->bulk_out_enabled = 0;
} }
......
...@@ -179,7 +179,7 @@ static __init int rndis_do_config(struct usb_configuration *c) ...@@ -179,7 +179,7 @@ static __init int rndis_do_config(struct usb_configuration *c)
return ret; return ret;
} }
static int rndis_config_register(struct usb_composite_dev *cdev) static __ref int rndis_config_register(struct usb_composite_dev *cdev)
{ {
static struct usb_configuration config = { static struct usb_configuration config = {
.bConfigurationValue = MULTI_RNDIS_CONFIG_NUM, .bConfigurationValue = MULTI_RNDIS_CONFIG_NUM,
...@@ -194,7 +194,7 @@ static int rndis_config_register(struct usb_composite_dev *cdev) ...@@ -194,7 +194,7 @@ static int rndis_config_register(struct usb_composite_dev *cdev)
#else #else
static int rndis_config_register(struct usb_composite_dev *cdev) static __ref int rndis_config_register(struct usb_composite_dev *cdev)
{ {
return 0; return 0;
} }
...@@ -241,7 +241,7 @@ static __init int cdc_do_config(struct usb_configuration *c) ...@@ -241,7 +241,7 @@ static __init int cdc_do_config(struct usb_configuration *c)
return ret; return ret;
} }
static int cdc_config_register(struct usb_composite_dev *cdev) static __ref int cdc_config_register(struct usb_composite_dev *cdev)
{ {
static struct usb_configuration config = { static struct usb_configuration config = {
.bConfigurationValue = MULTI_CDC_CONFIG_NUM, .bConfigurationValue = MULTI_CDC_CONFIG_NUM,
...@@ -256,7 +256,7 @@ static int cdc_config_register(struct usb_composite_dev *cdev) ...@@ -256,7 +256,7 @@ static int cdc_config_register(struct usb_composite_dev *cdev)
#else #else
static int cdc_config_register(struct usb_composite_dev *cdev) static __ref int cdc_config_register(struct usb_composite_dev *cdev)
{ {
return 0; return 0;
} }
......
...@@ -645,6 +645,7 @@ static int mv_u3d_ep_disable(struct usb_ep *_ep) ...@@ -645,6 +645,7 @@ static int mv_u3d_ep_disable(struct usb_ep *_ep)
struct mv_u3d_ep *ep; struct mv_u3d_ep *ep;
struct mv_u3d_ep_context *ep_context; struct mv_u3d_ep_context *ep_context;
u32 epxcr, direction; u32 epxcr, direction;
unsigned long flags;
if (!_ep) if (!_ep)
return -EINVAL; return -EINVAL;
...@@ -661,7 +662,9 @@ static int mv_u3d_ep_disable(struct usb_ep *_ep) ...@@ -661,7 +662,9 @@ static int mv_u3d_ep_disable(struct usb_ep *_ep)
direction = mv_u3d_ep_dir(ep); direction = mv_u3d_ep_dir(ep);
/* nuke all pending requests (does flush) */ /* nuke all pending requests (does flush) */
spin_lock_irqsave(&u3d->lock, flags);
mv_u3d_nuke(ep, -ESHUTDOWN); mv_u3d_nuke(ep, -ESHUTDOWN);
spin_unlock_irqrestore(&u3d->lock, flags);
/* Disable the endpoint for Rx or Tx and reset the endpoint type */ /* Disable the endpoint for Rx or Tx and reset the endpoint type */
if (direction == MV_U3D_EP_DIR_OUT) { if (direction == MV_U3D_EP_DIR_OUT) {
......
...@@ -2475,8 +2475,6 @@ static irqreturn_t s3c_hsotg_irq(int irq, void *pw) ...@@ -2475,8 +2475,6 @@ static irqreturn_t s3c_hsotg_irq(int irq, void *pw)
if (gintsts & GINTSTS_ErlySusp) { if (gintsts & GINTSTS_ErlySusp) {
dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n"); dev_dbg(hsotg->dev, "GINTSTS_ErlySusp\n");
writel(GINTSTS_ErlySusp, hsotg->regs + GINTSTS); writel(GINTSTS_ErlySusp, hsotg->regs + GINTSTS);
s3c_hsotg_disconnect(hsotg);
} }
/* /*
...@@ -2962,9 +2960,6 @@ static int s3c_hsotg_udc_stop(struct usb_gadget *gadget, ...@@ -2962,9 +2960,6 @@ static int s3c_hsotg_udc_stop(struct usb_gadget *gadget,
if (!hsotg) if (!hsotg)
return -ENODEV; return -ENODEV;
if (!driver || driver != hsotg->driver || !driver->unbind)
return -EINVAL;
/* all endpoints should be shutdown */ /* all endpoints should be shutdown */
for (ep = 0; ep < hsotg->num_of_eps; ep++) for (ep = 0; ep < hsotg->num_of_eps; ep++)
s3c_hsotg_ep_disable(&hsotg->eps[ep].ep); s3c_hsotg_ep_disable(&hsotg->eps[ep].ep);
...@@ -2972,15 +2967,15 @@ static int s3c_hsotg_udc_stop(struct usb_gadget *gadget, ...@@ -2972,15 +2967,15 @@ static int s3c_hsotg_udc_stop(struct usb_gadget *gadget,
spin_lock_irqsave(&hsotg->lock, flags); spin_lock_irqsave(&hsotg->lock, flags);
s3c_hsotg_phy_disable(hsotg); s3c_hsotg_phy_disable(hsotg);
regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
hsotg->driver = NULL; if (!driver)
hsotg->driver = NULL;
hsotg->gadget.speed = USB_SPEED_UNKNOWN; hsotg->gadget.speed = USB_SPEED_UNKNOWN;
spin_unlock_irqrestore(&hsotg->lock, flags); spin_unlock_irqrestore(&hsotg->lock, flags);
dev_info(hsotg->dev, "unregistered gadget driver '%s'\n", regulator_bulk_disable(ARRAY_SIZE(hsotg->supplies), hsotg->supplies);
driver->driver.name);
return 0; return 0;
} }
......
...@@ -24,7 +24,7 @@ struct fsl_usb2_dev_data { ...@@ -24,7 +24,7 @@ struct fsl_usb2_dev_data {
enum fsl_usb2_operating_modes op_mode; /* operating mode */ enum fsl_usb2_operating_modes op_mode; /* operating mode */
}; };
struct fsl_usb2_dev_data dr_mode_data[] = { static struct fsl_usb2_dev_data dr_mode_data[] = {
{ {
.dr_mode = "host", .dr_mode = "host",
.drivers = { "fsl-ehci", NULL, NULL, }, .drivers = { "fsl-ehci", NULL, NULL, },
...@@ -42,7 +42,7 @@ struct fsl_usb2_dev_data dr_mode_data[] = { ...@@ -42,7 +42,7 @@ struct fsl_usb2_dev_data dr_mode_data[] = {
}, },
}; };
struct fsl_usb2_dev_data *get_dr_mode_data(struct device_node *np) static struct fsl_usb2_dev_data *get_dr_mode_data(struct device_node *np)
{ {
const unsigned char *prop; const unsigned char *prop;
int i; int i;
...@@ -75,7 +75,7 @@ static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type) ...@@ -75,7 +75,7 @@ static enum fsl_usb2_phy_modes determine_usb_phy(const char *phy_type)
return FSL_USB2_PHY_NONE; return FSL_USB2_PHY_NONE;
} }
struct platform_device *fsl_usb2_device_register( static struct platform_device *fsl_usb2_device_register(
struct platform_device *ofdev, struct platform_device *ofdev,
struct fsl_usb2_platform_data *pdata, struct fsl_usb2_platform_data *pdata,
const char *name, int id) const char *name, int id)
......
...@@ -79,7 +79,7 @@ static struct usb_dpll_params *omap_usb3_get_dpll_params(unsigned long rate) ...@@ -79,7 +79,7 @@ static struct usb_dpll_params *omap_usb3_get_dpll_params(unsigned long rate)
return &dpll_map[i].params; return &dpll_map[i].params;
} }
return 0; return NULL;
} }
static int omap_usb3_suspend(struct usb_phy *x, int suspend) static int omap_usb3_suspend(struct usb_phy *x, int suspend)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment