public inbox for linux-arm-kernel@lists.infradead.org 
 help / color / mirror / Atom feed
From: swarren@wwwdotorg•org (Stephen Warren)
To: linux-arm-kernel@lists•infradead.org
Subject: [PATCH v3 0/9] Tegra xHCI support
Date: Tue, 16 Sep 2014 09:26:16 -0600	[thread overview]
Message-ID: <54185698.7020600@wwwdotorg.org> (raw)
In-Reply-To: <CAL1qeaEK=C4j+G5CA_91xJNe25d=-y47EyZAYnaMh46fNYVDAw@mail.gmail.com>

On 09/15/2014 01:30 PM, Andrew Bresticker wrote:
> On Mon, Sep 15, 2014 at 11:09 AM, Stephen Warren <swarren@wwwdotorg•org> wrote:
>> On 09/15/2014 11:06 AM, Andrew Bresticker wrote:
>>> On Mon, Sep 15, 2014 at 12:00 AM, Tomeu Vizoso <tomeu@tomeuvizoso•net> wrote:
>>>> On 12 September 2014 18:37, Andrew Bresticker <abrestic@chromium•org> wrote:
>>>>> On Tue, Sep 9, 2014 at 1:21 AM, Tomeu Vizoso <tomeu@tomeuvizoso•net> wrote:
>>>>>> On 8 September 2014 18:22, Andrew Bresticker <abrestic@chromium•org> wrote:
>>>>>>> On Mon, Sep 8, 2014 at 8:34 AM, Tomeu Vizoso <tomeu@tomeuvizoso•net> wrote:
>>>>>>>> On 2 September 2014 23:34, Andrew Bresticker <abrestic@chromium•org> wrote:
>>>>>>>>> Tested on Venice2, Jetson TK1, and Big with a variety of USB2.0 and
>>>>>>>>> USB3.0 memory sticks and ethernet dongles using controller firmware
>>>>>>>>> recently posted by Andrew Chew [2].
...
>>> Stephen, Thierry, have either of you had a chance to test this series?
>>
>> I haven't had a chance to yet. I just went to try it out, and found that it
>> depends on a whole slew of other patches that I don't have. Is there a git
>> branch somewhere to save me having to track down all the dependencies?
>
> Yes, Tomeu has the branch he used for testing here:
> http://cgit.collabora.com/git/user/tomeu/linux.git/log/?h=3.17rc4-xhci

Hmm. That git server was quite reluctant to cough up its bits, but it 
did eventually.

> You'll also need the firmware Andrew Chew posted:
> https://patchwork.ozlabs.org/patch/384013/

The XHCI driver can't load its firmware unless it's a module; if I make 
it built-in, it fails immediately with error -2 during "Direct firmware 
loading". The driver needs to work with either immediate or deferred 
firmware loading.

I tried three USB3 mass storage devices, and they all appeared to work 
without issue.

0781:5581 SanDisk Corp.
154b:fa0a PNY
0781:5580 SanDisk Corp.

I tried the following USB2 devices without issue:

0781:5575 SanDisk Corp.
0b95:7720 ASIX Electronics Corp. AX88772
045e:0095 Microsoft Corp. IntelliMouse Explorer 4.0 (IntelliPoint)
046d:c313 Logitech, Inc. Internet 350 Keyboard

The following USB2 devices had problems:

0b95:7720 ASIX Electronics Corp. AX88772

> [  489.140536] usb 1-3: new high-speed USB device number 81 using xhci-tegra
> [  489.260860] usb 1-3: device descriptor read/64, error -71
> [  489.370804] xhci-tegra 70090000.usb: Setup ERROR: setup context command for slot 1.
> [  489.378463] usb 1-3: hub failed to enable device, error -22
> [  489.500531] usb 1-3: new high-speed USB device number 82 using xhci-tegra
> [  489.655708] usb 1-3: can't set config #1, error -71
> [  489.661231] usb 1-3: USB disconnect, device number 82
> [  489.940531] usb 1-3: new high-speed USB device number 83 using xhci-tegra
> [  490.060860] usb 1-3: device descriptor read/64, error -71
> [  490.170805] xhci-tegra 70090000.usb: Setup ERROR: setup context command for slot 1.
> [  490.178462] usb 1-3: hub failed to enable device, error -22
(repeats over and over)

15a4:1336 Afatech Technologies, Inc. SDHC/MicroSD/MMC/MS/M2/CF/XD Flash 
Card Reader

The power light comes on, and the activity light just keeps flashing 
fast. Usually the activity light flashes a couple times and then turns 
off. There is nothing in dmesg at all for this device.

05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB

Not detected. There is nothing in dmesg at all for this device.

1bcf:0c31 Sunplus Innovation Technology Inc. SPIF30x Serial-ATA bridge

Not detected. There is nothing in dmesg at all for this device.

  reply	other threads:[~2014-09-16 15:26 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-09-02 21:34 [PATCH v3 0/9] Tegra xHCI support Andrew Bresticker
2014-09-02 21:34 ` [PATCH v3 1/9] of: Add NVIDIA Tegra XUSB mailbox binding Andrew Bresticker
2014-09-03 16:19   ` Stephen Warren
2014-09-02 21:34 ` [PATCH v3 2/9] mailbox: Add NVIDIA Tegra XUSB mailbox driver Andrew Bresticker
2014-09-02 21:34 ` [PATCH v3 3/9] of: Update Tegra XUSB pad controller binding for USB Andrew Bresticker
2014-09-02 21:34 ` [PATCH v3 4/9] pinctrl: tegra-xusb: Add USB PHY support Andrew Bresticker
2014-09-02 21:34 ` [PATCH v3 5/9] of: Add NVIDIA Tegra xHCI controller binding Andrew Bresticker
2014-09-02 21:34 ` [PATCH v3 6/9] usb: xhci: Add NVIDIA Tegra xHCI host-controller driver Andrew Bresticker
2014-09-03 16:17   ` Stephen Warren
2014-09-02 21:34 ` [PATCH v3 7/9] ARM: tegra: Add Tegra124 XUSB mailbox and xHCI controller Andrew Bresticker
2014-09-02 21:35 ` [PATCH v3 8/9] ARM: tegra: jetson-tk1: Add xHCI support Andrew Bresticker
2014-09-02 21:35 ` [PATCH v3 9/9] ARM: tegra: venice2: " Andrew Bresticker
2014-09-08 15:34 ` [PATCH v3 0/9] Tegra " Tomeu Vizoso
2014-09-08 16:22   ` Andrew Bresticker
2014-09-09  8:21     ` Tomeu Vizoso
2014-09-09 17:09       ` Andrew Bresticker
2014-09-10 10:24         ` Tomeu Vizoso
2014-09-12 16:37       ` Andrew Bresticker
2014-09-15  7:00         ` Tomeu Vizoso
2014-09-15 17:06           ` Andrew Bresticker
2014-09-15 18:09             ` Stephen Warren
2014-09-15 19:30               ` Andrew Bresticker
2014-09-16 15:26                 ` Stephen Warren [this message]
2014-09-16 16:57                   ` Andrew Bresticker
2014-09-16 22:40                     ` Stephen Warren
2014-09-16 22:51                       ` Andrew Bresticker
2014-09-16 23:03                         ` Stephen Warren
2014-09-17 13:45                       ` Mikko Perttunen
2014-09-16 22:46                     ` Andrew Bresticker
2014-09-16 23:15                       ` Stephen Warren
2014-09-16 23:51                         ` Andrew Bresticker
2014-09-17 15:41                           ` Stephen Warren
2014-09-17 17:46                             ` Andrew Bresticker
2014-09-16 10:43             ` Tomeu Vizoso

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=54185698.7020600@wwwdotorg.org \
    --to=swarren@wwwdotorg$(echo .)org \
    --cc=linux-arm-kernel@lists$(echo .)infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox