From: Tony Lindgren <tony@atomide.com>
To: Vignesh R <vigneshr@ti.com>
Cc: "Strashko, Grygorii" <grygorii.strashko@ti.com>,
"GregKroah-Hartmangregkh@linuxfoundation.org"
<GregKroah-Hartmangregkh@linuxfoundation.org>,
Felipe Balbi <balbi@kernel.org>,
"linux-omap@vger.kernel.org" <linux-omap@vger.kernel.org>,
"linux-usb@vger.kernel.org" <linux-usb@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"Nori, Sekhar" <nsekhar@ti.com>
Subject: Re: [linux-next][PATCH] usb: dwc3: omap: remove IRQ_NOAUTOEN used with shared irq
Date: Wed, 28 Jun 2017 23:03:53 -0700 [thread overview]
Message-ID: <20170629060353.GE3730@atomide.com> (raw)
In-Reply-To: <463ea19c-dc60-5926-56b4-0f10d2e23e94@ti.com>
* Vignesh R <vigneshr@ti.com> [170628 21:21]:
>
>
> On Thursday 29 June 2017 05:01 AM, Strashko, Grygorii wrote:
> > IRQ_NOAUTOEN can't be used with shared IRQs and Kernel now will triggers
> > warning if it happns, since commit 04c848d39879 ("genirq: Warn when
> > IRQ_NOAUTOEN is used with shared interrupts"). And this is the case for
> > OMAP DWC 3 driver.
> >
> > Hence, remove IRQ_NOAUTOEN flag and instead call disable_irq() before
> > disabling PM runtime in probe error path handling.
>
> Or, how about requesting the irq at the end of probe after extcon
> registration?
Hmm yeah, what prevents the issue that we tried to fix with commit
12a7f17fac5b ("usb: dwc3: omap: fix race of pm runtime with irq handler
in probe")?
Regards,
Tony
> > Fixes: 12a7f17fac5b ("usb: dwc3: omap: fix race of pm runtime with...")
> > Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
> > ---
> > drivers/usb/dwc3/dwc3-omap.c | 3 +--
> > 1 file changed, 1 insertion(+), 2 deletions(-)
> >
> > diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c
> > index 9892650..cd9bef5 100644
> > --- a/drivers/usb/dwc3/dwc3-omap.c
> > +++ b/drivers/usb/dwc3/dwc3-omap.c
> > @@ -512,7 +512,6 @@ static int dwc3_omap_probe(struct platform_device *pdev)
> >
> > /* check the DMA Status */
> > reg = dwc3_omap_readl(omap->base, USBOTGSS_SYSCONFIG);
> > - irq_set_status_flags(omap->irq, IRQ_NOAUTOEN);
> > ret = devm_request_threaded_irq(dev, omap->irq, dwc3_omap_interrupt,
> > dwc3_omap_interrupt_thread, IRQF_SHARED,
> > "dwc3-omap", omap);
> > @@ -533,10 +532,10 @@ static int dwc3_omap_probe(struct platform_device *pdev)
> > }
> >
> > dwc3_omap_enable_irqs(omap);
> > - enable_irq(omap->irq);
> > return 0;
> >
> > err1:
> > + disable_irq(omap->irq);
> > pm_runtime_put_sync(dev);
> > pm_runtime_disable(dev);
> >
> >
>
> --
> Regards
> Vignesh
next prev parent reply other threads:[~2017-06-29 6:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-28 23:31 [linux-next][PATCH] usb: dwc3: omap: remove IRQ_NOAUTOEN used with shared irq Grygorii Strashko
2017-06-29 4:21 ` Vignesh R
2017-06-29 6:03 ` Tony Lindgren [this message]
2017-06-30 19:34 ` Grygorii Strashko
2017-07-03 4:27 ` Vignesh R
2017-07-03 18:28 ` Grygorii Strashko
2017-07-04 12:50 ` Vignesh R
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=20170629060353.GE3730@atomide.com \
--to=tony@atomide.com \
--cc=GregKroah-Hartmangregkh@linuxfoundation.org \
--cc=balbi@kernel.org \
--cc=grygorii.strashko@ti.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-omap@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=nsekhar@ti.com \
--cc=vigneshr@ti.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox