All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Yegor Yefremov <yegorslists@googlemail.com>
Cc: linux-omap@vger.kernel.org, vkoul@kernel.org,
	Bin Liu <b-liu@ti.com>, linux-usb <linux-usb@vger.kernel.org>,
	Andrey Skvortsov <andrej.skvortzov@gmail.com>,
	giulio.benetti@benettiengineering.com,
	Sebastian Andrzej Siewior <bigeasy@linutronix.de>
Subject: Re: musb: cppi41: broken high speed FTDI functionality when connected to musb directly
Date: Mon, 30 Sep 2019 07:57:11 -0700	[thread overview]
Message-ID: <20190930145711.GG5610@atomide.com> (raw)
In-Reply-To: <CAGm1_ktjndofS_N-qh7GVRuJFG1Jn87rf4D8Lt2XMj=+RrL2aw@mail.gmail.com>

* Yegor Yefremov <yegorslists@googlemail.com> [190930 08:20]:
> On Mon, Sep 30, 2019 at 8:59 AM Yegor Yefremov
> <yegorslists@googlemail.com> wrote:
> >
> > On Sat, Sep 28, 2019 at 6:09 PM Yegor Yefremov
> > <yegorslists@googlemail.com> wrote:
> > >
> > > On Fri, Sep 27, 2019 at 5:57 PM Tony Lindgren <tony@atomide.com> wrote:
> > > > Looks like I'm unable to reproduce this with bbb and FT232R
> > > > USB UART.
> > > >
> > > > I tried v5.3 with omap2plus_defconfig, then boot, load musb
> > > > and ftdi-sio modules, then connect ftdi directly to bbb,
> > > > and then run "minicom -D /dev/ttyUSB0" on bbb and it works
> > > > just fine for me.
> > > >
> > > > I tried also rebooting the device inbetween in case it only
> > > > happens on the first connect after boot but still no luck
> > > > reproducing.
> > >
> > > Strange. I've used a loopback to check whether the characters will be echoed.
> > > FTDI cable was connected all the time so that I could check RX right after boot.
> > > Both Buildroot and OpenWrt rootfs's showed this behaviour.
> > >
> > > > Maybe try adding some debug prints to cppi41_runtime_suspend()
> > > > and cppi41_runtime_resume() to see if gets runtime suspended
> > > > too early?
> > >
> > > Will do on Mo.
> >
> > I've added the printks to both routines and the result is quite
> > interesting. On the system with a directly attached FTDI both routines
> > will be always invoked before (resume) and after (suspend) the
> > test/minicom i.e. during the USB initialization.
> >
> > On the systems with a USB hub, these routines will be invoked only
> > during the USB initialization and the last invocation is resume.
> > During the test, there are no invocations.

Hmm OK thanks. Hard to say still based on that what might be missing.

I just tried also musb and phy built-in with FTDI connected on
boot, but still no luck reproducing the issue here.

> Removing PM routines workarounds the issue. Quick and dirty.
> 
>  static struct platform_driver cpp41_dma_driver = {
>           .probe  = cppi41_dma_probe,
>           .remove = cppi41_dma_remove,
>           .driver = {
>                   .name = "cppi41-dma-engine",
>                   /*.pm = &cppi41_pm_ops,*/
>                   .of_match_table = of_match_ptr(cppi41_dma_ids),
>           },
>   };

Well doing something like this to disable autosuspend might
be less intrusive until this one is fixed:

# echo on > /sys/bus/platform/drivers/musb-hdrc/musb-hdrc.1/power/control

But before that, maybe try with control set to auto, and increase the
autosuspend_delay_ms from 500 ms to let's say 2500 ms:

# echo 2500 > /sys/bus/platform/drivers/musb-hdrc/musb-hdrc.1/power/autosuspend_delay_ms

That is assuming the musb instance is 1 on your board, replace
with musb-hdrc.0 if a different interface from bbb.

Regards,

Tony

  reply	other threads:[~2019-09-30 14:57 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-27  8:18 musb: cppi41: broken high speed FTDI functionality when connected to musb directly Yegor Yefremov
2019-09-27 12:30 ` Yegor Yefremov
2019-09-27 15:19   ` Tony Lindgren
2019-09-27 15:57     ` Tony Lindgren
2019-09-28 16:09       ` Yegor Yefremov
2019-09-30  6:59         ` Yegor Yefremov
2019-09-30  8:19           ` Yegor Yefremov
2019-09-30 14:57             ` Tony Lindgren [this message]
2019-09-30 15:23               ` Tony Lindgren
2019-09-30 19:54                 ` Sebastian Reichel
2019-10-01  8:03                   ` Johan Hovold
2019-10-01  9:19                     ` Yegor Yefremov
2019-10-01 16:43                       ` Tony Lindgren
2019-10-01 22:03                         ` Tony Lindgren
2019-10-02  6:56                           ` Yegor Yefremov
2019-10-02 16:52                             ` Tony Lindgren
2019-10-03  8:39                               ` Yegor Yefremov
2019-10-21  8:39                                 ` Yegor Yefremov
2019-10-22 14:56                                   ` Tony Lindgren

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=20190930145711.GG5610@atomide.com \
    --to=tony@atomide.com \
    --cc=andrej.skvortzov@gmail.com \
    --cc=b-liu@ti.com \
    --cc=bigeasy@linutronix.de \
    --cc=giulio.benetti@benettiengineering.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=vkoul@kernel.org \
    --cc=yegorslists@googlemail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.