Merge 4.12-rc5 into usb-next
We want the USB fixes in here as well. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
@@ -396,7 +396,11 @@ static int fsg_set_halt(struct fsg_dev *fsg, struct usb_ep *ep)
|
||||
/* Caller must hold fsg->lock */
|
||||
static void wakeup_thread(struct fsg_common *common)
|
||||
{
|
||||
smp_wmb(); /* ensure the write of bh->state is complete */
|
||||
/*
|
||||
* Ensure the reading of thread_wakeup_needed
|
||||
* and the writing of bh->state are completed
|
||||
*/
|
||||
smp_mb();
|
||||
/* Tell the main thread that something has happened */
|
||||
common->thread_wakeup_needed = 1;
|
||||
if (common->thread_task)
|
||||
@@ -627,7 +631,12 @@ static int sleep_thread(struct fsg_common *common, bool can_freeze)
|
||||
}
|
||||
__set_current_state(TASK_RUNNING);
|
||||
common->thread_wakeup_needed = 0;
|
||||
smp_rmb(); /* ensure the latest bh->state is visible */
|
||||
|
||||
/*
|
||||
* Ensure the writing of thread_wakeup_needed
|
||||
* and the reading of bh->state are completed
|
||||
*/
|
||||
smp_mb();
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
@@ -623,7 +623,6 @@ static void renesas_usb3_stop_controller(struct renesas_usb3 *usb3)
|
||||
{
|
||||
usb3_disconnect(usb3);
|
||||
usb3_write(usb3, 0, USB3_P0_INT_ENA);
|
||||
usb3_write(usb3, 0, USB3_PN_INT_ENA);
|
||||
usb3_write(usb3, 0, USB3_USB_OTG_INT_ENA);
|
||||
usb3_write(usb3, 0, USB3_USB_INT_ENA_1);
|
||||
usb3_write(usb3, 0, USB3_USB_INT_ENA_2);
|
||||
@@ -1475,7 +1474,13 @@ static void usb3_request_done_pipen(struct renesas_usb3 *usb3,
|
||||
struct renesas_usb3_request *usb3_req,
|
||||
int status)
|
||||
{
|
||||
usb3_pn_stop(usb3);
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&usb3->lock, flags);
|
||||
if (usb3_pn_change(usb3, usb3_ep->num))
|
||||
usb3_pn_stop(usb3);
|
||||
spin_unlock_irqrestore(&usb3->lock, flags);
|
||||
|
||||
usb3_disable_pipe_irq(usb3, usb3_ep->num);
|
||||
usb3_request_done(usb3_ep, usb3_req, status);
|
||||
|
||||
@@ -1504,30 +1509,46 @@ static void usb3_irq_epc_pipen_bfrdy(struct renesas_usb3 *usb3, int num)
|
||||
{
|
||||
struct renesas_usb3_ep *usb3_ep = usb3_get_ep(usb3, num);
|
||||
struct renesas_usb3_request *usb3_req = usb3_get_request(usb3_ep);
|
||||
bool done = false;
|
||||
|
||||
if (!usb3_req)
|
||||
return;
|
||||
|
||||
spin_lock(&usb3->lock);
|
||||
if (usb3_pn_change(usb3, num))
|
||||
goto out;
|
||||
|
||||
if (usb3_ep->dir_in) {
|
||||
/* Do not stop the IN pipe here to detect LSTTR interrupt */
|
||||
if (!usb3_write_pipe(usb3_ep, usb3_req, USB3_PN_WRITE))
|
||||
usb3_clear_bit(usb3, PN_INT_BFRDY, USB3_PN_INT_ENA);
|
||||
} else {
|
||||
if (!usb3_read_pipe(usb3_ep, usb3_req, USB3_PN_READ))
|
||||
usb3_request_done_pipen(usb3, usb3_ep, usb3_req, 0);
|
||||
done = true;
|
||||
}
|
||||
|
||||
out:
|
||||
/* need to unlock because usb3_request_done_pipen() locks it */
|
||||
spin_unlock(&usb3->lock);
|
||||
|
||||
if (done)
|
||||
usb3_request_done_pipen(usb3, usb3_ep, usb3_req, 0);
|
||||
}
|
||||
|
||||
static void usb3_irq_epc_pipen(struct renesas_usb3 *usb3, int num)
|
||||
{
|
||||
u32 pn_int_sta;
|
||||
|
||||
if (usb3_pn_change(usb3, num) < 0)
|
||||
spin_lock(&usb3->lock);
|
||||
if (usb3_pn_change(usb3, num) < 0) {
|
||||
spin_unlock(&usb3->lock);
|
||||
return;
|
||||
}
|
||||
|
||||
pn_int_sta = usb3_read(usb3, USB3_PN_INT_STA);
|
||||
pn_int_sta &= usb3_read(usb3, USB3_PN_INT_ENA);
|
||||
usb3_write(usb3, pn_int_sta, USB3_PN_INT_STA);
|
||||
spin_unlock(&usb3->lock);
|
||||
if (pn_int_sta & PN_INT_LSTTR)
|
||||
usb3_irq_epc_pipen_lsttr(usb3, num);
|
||||
if (pn_int_sta & PN_INT_BFRDY)
|
||||
@@ -1660,6 +1681,7 @@ static int usb3_disable_pipe_n(struct renesas_usb3_ep *usb3_ep)
|
||||
|
||||
spin_lock_irqsave(&usb3->lock, flags);
|
||||
if (!usb3_pn_change(usb3, usb3_ep->num)) {
|
||||
usb3_write(usb3, 0, USB3_PN_INT_ENA);
|
||||
usb3_write(usb3, 0, USB3_PN_RAMMAP);
|
||||
usb3_clear_bit(usb3, PN_CON_EN, USB3_PN_CON);
|
||||
}
|
||||
@@ -1799,6 +1821,9 @@ static int renesas_usb3_start(struct usb_gadget *gadget,
|
||||
/* hook up the driver */
|
||||
usb3->driver = driver;
|
||||
|
||||
pm_runtime_enable(usb3_to_dev(usb3));
|
||||
pm_runtime_get_sync(usb3_to_dev(usb3));
|
||||
|
||||
renesas_usb3_init_controller(usb3);
|
||||
|
||||
return 0;
|
||||
@@ -1807,14 +1832,14 @@ static int renesas_usb3_start(struct usb_gadget *gadget,
|
||||
static int renesas_usb3_stop(struct usb_gadget *gadget)
|
||||
{
|
||||
struct renesas_usb3 *usb3 = gadget_to_renesas_usb3(gadget);
|
||||
unsigned long flags;
|
||||
|
||||
spin_lock_irqsave(&usb3->lock, flags);
|
||||
usb3->softconnect = false;
|
||||
usb3->gadget.speed = USB_SPEED_UNKNOWN;
|
||||
usb3->driver = NULL;
|
||||
renesas_usb3_stop_controller(usb3);
|
||||
spin_unlock_irqrestore(&usb3->lock, flags);
|
||||
|
||||
pm_runtime_put(usb3_to_dev(usb3));
|
||||
pm_runtime_disable(usb3_to_dev(usb3));
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -1891,9 +1916,6 @@ static int renesas_usb3_remove(struct platform_device *pdev)
|
||||
|
||||
device_remove_file(&pdev->dev, &dev_attr_role);
|
||||
|
||||
pm_runtime_put(&pdev->dev);
|
||||
pm_runtime_disable(&pdev->dev);
|
||||
|
||||
usb_del_gadget_udc(&usb3->gadget);
|
||||
|
||||
__renesas_usb3_ep_free_request(usb3->ep0_req);
|
||||
@@ -2099,9 +2121,6 @@ static int renesas_usb3_probe(struct platform_device *pdev)
|
||||
|
||||
usb3->workaround_for_vbus = priv->workaround_for_vbus;
|
||||
|
||||
pm_runtime_enable(&pdev->dev);
|
||||
pm_runtime_get_sync(&pdev->dev);
|
||||
|
||||
dev_info(&pdev->dev, "probed\n");
|
||||
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user