Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Nov 2015 13:41:54 +0100
From:      Hans Petter Selasky <hps@selasky.org>
To:        Sebastian Huber <sebastian.huber@embedded-brains.de>, freebsd-usb@freebsd.org
Subject:   Re: [PATCH] dwc_otg: Reduce interrupt load
Message-ID:  <56375A12.9060000@selasky.org>
In-Reply-To: <5637557A.1070007@embedded-brains.de>
References:  <1446212307-4660-1-git-send-email-sebastian.huber@embedded-brains.de> <56338480.3090607@selasky.org> <5637557A.1070007@embedded-brains.de>

next in thread | previous in thread | raw e-mail | index | archive | help
On 11/02/15 13:22, Sebastian Huber wrote:
>
>
> On 30/10/15 15:53, Hans Petter Selasky wrote:
>> On 10/30/15 14:38, Sebastian Huber wrote:
>>> Tested on an Altera Cyclone V development kit.  Here the controller has
>>> 16 host channels.  This change significantly reduced the time spent in
>>> the dwc_otg_interrupt_poll_locked() function.
>>
>> Hi,
>>
>> Thank you for your optimisation patch:
>>
>> https://svnweb.freebsd.org/changeset/base/290195
>
> Thanks.
>

Hi,

> After an update of the USB stack from 9.3 to current it worked out of
> the box. Thanks a lot for your great USB stack!
>
> It seems that this driver doesn't support DMA. I see a quite high CPU
> utilization in this area:

That's sounds right.

Adding DMA support is some extra work, because there are many USB 
endpoint combinations that needs to work. Also HOST and DEVICE mode 
needs to be tested. One problem with the DWC OTG is that you cannot 
switch individual so-called channels into DMA mode. It is either all-DMA 
or no DMA. That makes it more difficult to add. If you want to add DMA 
support I will be happy to add patches to the tree for that, but the 
patches must be such that it is possible to select DMA or PIO mode.

For some kinds of USB traffic, like USB keyboards, USB audio and USB 
mice, PIO mode is optimal, because the amount of data transferred per 
interrupt is minimal. For mass storage and ethernet you would like to 
have DMA support. Or have a dedicated CPU for USB.

Possibly the next USB controller driver to be added to FreeBSD is the 
DWC OTG v3. It is an all-DMA based controller, which also supports 
superspeed.

--HPS



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?56375A12.9060000>