Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756321AbcJNTlj (ORCPT ); Fri, 14 Oct 2016 15:41:39 -0400 Received: from smtprelay.synopsys.com ([198.182.47.9]:34362 "EHLO smtprelay.synopsys.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753589AbcJNTla (ORCPT ); Fri, 14 Oct 2016 15:41:30 -0400 Subject: Re: [RFC][PATCH 2/2] usb: dwc2: Add a quirk to allow speed negotiation for Hisilicon Hi6220 To: John Stultz , lkml References: <1476401397-26497-1-git-send-email-john.stultz@linaro.org> <1476401397-26497-3-git-send-email-john.stultz@linaro.org> From: John Youn CC: Chen Yu , Wei Xu , Guodong Xu , Amit Pundir , Rob Herring , Mark Rutland , John Youn , Douglas Anderson , "Greg Kroah-Hartman" , "linux-usb@vger.kernel.org" Message-ID: <2c58c084-704e-3cac-70a1-c8b31661b3d6@synopsys.com> Date: Fri, 14 Oct 2016 12:37:15 -0700 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.3.0 MIME-Version: 1.0 In-Reply-To: <1476401397-26497-3-git-send-email-john.stultz@linaro.org> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Originating-IP: [10.9.138.107] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2914 Lines: 99 On 10/13/2016 4:36 PM, John Stultz wrote: > From: Chen Yu > > The Hi6220's usb controller is limited in that it does not > automatically autonegotiate the usb speed. Thus it requires a > quirk so that we can manually negotiate the best usb speed for > the attached device. Hi, Could you expand more on this by explaining what exactly is the limitation and the workaround? [snip] > +/* > + * HPRT0_SPD_HIGH_SPEED: high speed > + * HPRT0_SPD_FULL_SPEED: full speed > + */ > +static void dwc2_change_bus_speed(struct usb_hcd *hcd, int speed) > +{ > + struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd); > + > + if (hsotg->core_params->speed == speed) > + return; > + > + hsotg->core_params->speed = speed; > + queue_work(hsotg->wq_otg, &hsotg->wf_otg); > +} > + > +static int dwc2_alloc_dev(struct usb_hcd *hcd, struct usb_device *udev) > +{ > + struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd); > + > + if (!hsotg->change_speed_quirk) > + return 1; > + > + hsotg->device_count++; Why do you need to track the device count? > + dev_info(hsotg->dev, "Device count is %u after alloc dev\n", > + hsotg->device_count); > + > + return 1; > +} > + > +static void dwc2_free_dev(struct usb_hcd *hcd, struct usb_device *udev) > +{ > + struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd); > + > + if (!hsotg->change_speed_quirk) > + return; > + > + if (hsotg->device_count) > + hsotg->device_count--; > + > + dev_info(hsotg->dev, "Device count is %u after free dev\n", > + hsotg->device_count); > + > + if (hsotg->device_count == 1 && udev->parent && > + udev->parent->speed > USB_SPEED_UNKNOWN && > + udev->parent->speed < USB_SPEED_HIGH) { > + dev_info(hsotg->dev, "Set speed to default high-speed\n"); > + dwc2_change_bus_speed(hcd, HPRT0_SPD_HIGH_SPEED); > + } > +} > + > +static int dwc2_reset_device(struct usb_hcd *hcd, struct usb_device *udev) > +{ > + struct dwc2_hsotg *hsotg = dwc2_hcd_to_hsotg(hcd); > + > + if (!hsotg->change_speed_quirk) > + return 0; > + > + if (udev->speed == USB_SPEED_HIGH) { > + dev_info(hsotg->dev, "Set speed to high-speed\n"); > + dwc2_change_bus_speed(hcd, HPRT0_SPD_HIGH_SPEED); > + } else if (udev->speed == USB_SPEED_FULL > + || udev->speed == USB_SPEED_LOW) { > + dev_info(hsotg->dev, "Set speed to full-speed\n"); > + dwc2_change_bus_speed(hcd, HPRT0_SPD_FULL_SPEED); > + } It seems you are reinitializing the core every time a device is reset and the udev->speed does not match the core_param speed. But how is the udev->speed being set correctly if the hw cannot negotiate the speed in the first place? Also should it be for every device? What about if a device gets plugged in behind a hub? I don't think you want to execute this code in that case. This should only affect devices plugged into the root hub, correct? And the hsotg controller only has one root hub port. It seems things could be simplified a bit. Regards, John