Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752854AbcD0L12 (ORCPT ); Wed, 27 Apr 2016 07:27:28 -0400 Received: from mga02.intel.com ([134.134.136.20]:8504 "EHLO mga02.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751866AbcD0L10 convert rfc822-to-8bit (ORCPT ); Wed, 27 Apr 2016 07:27:26 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,541,1455004800"; d="scan'208";a="963752641" From: "Du, Changbin" To: Felipe Balbi CC: "gregkh@linuxfoundation.org" , "linux-usb@vger.kernel.org" , "linux-kernel@vger.kernel.org" Subject: RE: [PATCH] usb: dwc3: usb/dwc3: fake dissconnect event when turn off pullup Thread-Topic: [PATCH] usb: dwc3: usb/dwc3: fake dissconnect event when turn off pullup Thread-Index: AQHRoGB5p/fE5aKiUU66gPyOe1iKvZ+dCGGAgACN9PA= Date: Wed, 27 Apr 2016 11:27:08 +0000 Message-ID: <0C18FE92A7765D4EB9EE5D38D86A563A05D1E1A7@SHSMSX103.ccr.corp.intel.com> References: <1461745745-3954-1-git-send-email-changbin.du@intel.com> <87wpnjmm7u.fsf@intel.com> In-Reply-To: <87wpnjmm7u.fsf@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYjIxMGM5MzQtMzg5OS00ODIyLTk2NzQtMTY4MWRhZGNmYmJkIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6ImRjMXhrcU9BM2FuUGk3MjgrV0ZnenN6a2JQQTdhb0dZajBycU41VHRmNzg9In0= x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 8BIT MIME-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 4350 Lines: 127 Hi, Balbi, The step to reproduce this issue is: 1) connect device to a host and wait its enumeration. 2) trigger software disconnect by calling function usb_gadget_disconnect(), which finally call dwc3_gadget_pullup(false). Do not reconnect device (I mean no enumeration go on, keep bit Run/Stop 0.). At here, gadget driver's disconnect callback should be Called, right? We has been disconnected. But no, as You said " not generating disconnect IRQ after you drop Run/Stop is expected". And I am testing on an Android device, Android only use dwc3_gadget_pullup(false) to issue a soft disconnection. This confused user that the UI still show usb as connected State, caused by missing a disconnect event. > Hi, > > changbin.du@intel.com writes: > > From: "Du, Changbin" > > > > The dwc3 controller can't generate a disconnect event after it is > > stopped. Thus gadget dissconnect callback is not invoked when do > > not generating disconnect IRQ after you drop Run/Stop is expected. > > > soft dissconnect. Call dissconnect here to workaround this issue. > > I'm rather sure this is a bug elsewhere. How do you trigger this ? > > > Note, most time we still see disconnect be called that because > > it is invoked by dwc3_gadget_reset_interrupt(). But if we > > disconnect cable once pullup disabled quickly, issue can be > > observed. > > I can't understand what you're trying to say with this. > > > Signed-off-by: Du, Changbin > > --- > > drivers/usb/dwc3/gadget.c | 33 ++++++++++++++++++++++++--------- > > 1 file changed, 24 insertions(+), 9 deletions(-) > > > > diff --git a/drivers/usb/dwc3/gadget.c b/drivers/usb/dwc3/gadget.c > > index 8e4a1b1..cd73187 100644 > > --- a/drivers/usb/dwc3/gadget.c > > +++ b/drivers/usb/dwc3/gadget.c > > @@ -1566,6 +1566,15 @@ static int dwc3_gadget_run_stop(struct dwc3 > *dwc, int is_on, int suspend) > > return 0; > > } > > > > +static void dwc3_disconnect_gadget(struct dwc3 *dwc) > > +{ > > + if (dwc->gadget_driver && dwc->gadget_driver->disconnect) { > > + spin_unlock(&dwc->lock); > > + dwc->gadget_driver->disconnect(&dwc->gadget); > > + spin_lock(&dwc->lock); > > + } > > +} > > + > > static int dwc3_gadget_pullup(struct usb_gadget *g, int is_on) > > { > > struct dwc3 *dwc = gadget_to_dwc(g); > > @@ -1575,6 +1584,21 @@ static int dwc3_gadget_pullup(struct usb_gadget > *g, int is_on) > > is_on = !!is_on; > > > > spin_lock_irqsave(&dwc->lock, flags); > > + /** > > + * WORKAROUND: The dwc3 controller can't generate a disconnect > > + * event after it is stopped. Thus gadget dissconnect callback > > + * is not invoked when do soft dissconnect. Call dissconnect > > + * here to workaround this issue. > > + * Note, most time we still see disconnect be called that because > > + * it is invoked by dwc3_gadget_reset_interrupt(). But if we > > + * disconnect cable once pullup disabled quickly, issue can be > > + * observed. > > + */ > > + if (!is_on && (dwc->gadget.speed != USB_SPEED_UNKNOWN)) { > > + dev_dbg(dwc->dev, "fake dissconnect event on pullup > off\n"); > > + dwc3_disconnect_gadget(dwc); > > + dwc->gadget.speed = USB_SPEED_UNKNOWN; > > + } > > this is *really* wrong. You shouldn't be calling pullup directly. This > patch looks wrong and you didn't even explain how to trigger this > problem; when does the problem happen ? > > Gadget load/unload does the right thing here, so that can't be the > case. We also do the right thing on soft_connect sysfs file: > > static ssize_t usb_udc_softconn_store(struct device *dev, > struct device_attribute *attr, const char *buf, size_t n) > { > struct usb_udc *udc = container_of(dev, struct usb_udc, > dev); > > if (!udc->driver) { > dev_err(dev, "soft-connect without a gadget driver\n"); > return -EOPNOTSUPP; > } > > if (sysfs_streq(buf, "connect")) { > usb_gadget_udc_start(udc); > usb_gadget_connect(udc->gadget); > } else if (sysfs_streq(buf, "disconnect")) { > usb_gadget_disconnect(udc->gadget); > udc->driver->disconnect(udc->gadget); > usb_gadget_udc_stop(udc); > } else { > dev_err(dev, "unsupported command '%s'\n", buf); > return -EINVAL; > } > > return n; > } > static DEVICE_ATTR(soft_connect, S_IWUSR, NULL, > usb_udc_softconn_store); > > So really, what _is_ the problem ? > > -- > balbi