linux-omap.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org>
To: Felipe Balbi
	<felipe.balbi-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>,
	Felipe Balbi <balbif-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Linux USB Mailing List
	<linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>
Cc: Santosh Shilimkar
	<ssantosh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Tony Lindgren <tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org>,
	Linux OMAP Mailing List
	<linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org>,
	Srinivas Kandagatla
	<srinivas.kandagatla-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Maxime Coquelin <maxime.coquelin-qxv4g6HH51o@public.gmane.org>,
	Patrice Chotard <patrice.chotard-qxv4g6HH51o@public.gmane.org>,
	Andy Gross <andy.gross-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>,
	"Ivan T . Ivanov"
	<ivan.ivanov-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
Subject: Re: [PATCH 2/6] usb: dwc3: omap: don't access DMA bits directly
Date: Tue, 5 Apr 2016 12:30:19 +0300	[thread overview]
Message-ID: <570385AB.8060507@ti.com> (raw)
In-Reply-To: <87y48s4n7y.fsf-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>

On 04/05/2016 08:51 AM, Felipe Balbi wrote:
> Grygorii Strashko <grygorii.strashko-l0cyMroinI0@public.gmane.org> writes:
>> On 04/02/2016 11:28 AM, Felipe Balbi wrote:
>>> Instead of having a static global just for
>>> initializing dma_mask directly, let's use
>>> dma_coerce_mask_and_coherent() for that.
>>>
>>> Signed-off-by: Felipe Balbi <felipe.balbi-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
>>> ---
>>>    drivers/usb/dwc3/dwc3-omap.c | 4 +---
>>>    1 file changed, 1 insertion(+), 3 deletions(-)
>>>
>>> diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c
>>> index 22e9606d8e08..c219118bfda0 100644
>>> --- a/drivers/usb/dwc3/dwc3-omap.c
>>> +++ b/drivers/usb/dwc3/dwc3-omap.c
>>> @@ -331,8 +331,6 @@ static void dwc3_omap_disable_irqs(struct dwc3_omap *omap)
>>>    	dwc3_omap_write_irqmisc_clr(omap, reg);
>>>    }
>>>    
>>> -static u64 dwc3_omap_dma_mask = DMA_BIT_MASK(32);
>>> -
>>>    static int dwc3_omap_id_notifier(struct notifier_block *nb,
>>>    	unsigned long event, void *ptr)
>>>    {
>>> @@ -490,7 +488,7 @@ static int dwc3_omap_probe(struct platform_device *pdev)
>>>    	omap->irq	= irq;
>>>    	omap->base	= base;
>>>    	omap->vbus_reg	= vbus_reg;
>>> -	dev->dma_mask	= &dwc3_omap_dma_mask;
>>> +	dma_coerce_mask_and_coherent(dev, DMA_BIT_MASK(32));
>>
>> I think, It'll be better to just remove DMA configuration code
>> from this driver and other drivers which support DT-boot mode only.
> 
> I don't have HW, can you test that on AM57x and/or AM437x ?
> 

Yes. I can. With below change I see no issues with USB in Host mode
on my AM57x board:

diff --git a/drivers/usb/dwc3/dwc3-omap.c b/drivers/usb/dwc3/dwc3-omap.c
index 16cb14f..d5feaf9 100644
--- a/drivers/usb/dwc3/dwc3-omap.c
+++ b/drivers/usb/dwc3/dwc3-omap.c
@@ -367,8 +367,6 @@ static void dwc3_omap_disable_irqs(struct dwc3_omap *omap)
        dwc3_omap_write_irqmisc_clr(omap, reg);
 }
 
-static u64 dwc3_omap_dma_mask = DMA_BIT_MASK(32);

  parent reply	other threads:[~2016-04-05  9:30 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-04-02  8:28 [PATCH 0/6] usb: dwc3: DMA API usage Felipe Balbi
     [not found] ` <1459585739-21204-1-git-send-email-felipe.balbi-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2016-04-02  8:28   ` [PATCH 1/6] usb: dwc3: st: fix dma initialization Felipe Balbi
2016-04-02  8:28   ` [PATCH 2/6] usb: dwc3: omap: don't access DMA bits directly Felipe Balbi
     [not found]     ` <1459585739-21204-3-git-send-email-felipe.balbi-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2016-04-04 13:53       ` Grygorii Strashko
     [not found]         ` <570271BF.9040902-l0cyMroinI0@public.gmane.org>
2016-04-05  5:51           ` Felipe Balbi
     [not found]             ` <87y48s4n7y.fsf-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-04-05  9:30               ` Grygorii Strashko [this message]
     [not found]                 ` <570385AB.8060507-l0cyMroinI0@public.gmane.org>
2016-04-05 10:29                   ` Felipe Balbi
     [not found]                     ` <87egak4adi.fsf-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
2016-04-05 11:42                       ` Grygorii Strashko
     [not found]                         ` <5703A4AE.1090301-l0cyMroinI0@public.gmane.org>
2016-04-05 11:44                           ` Felipe Balbi
2016-04-02  8:28   ` [PATCH 3/6] usb: dwc3: keystone: initialize dma_mask and coherent Felipe Balbi
2016-04-02  8:28   ` [PATCH 4/6] usb: dwc3: of-simple: " Felipe Balbi
2016-04-02  8:28   ` [PATCH 5/6] usb: dwc3: core: don't access DMA bits directly Felipe Balbi
     [not found]     ` <1459585739-21204-6-git-send-email-felipe.balbi-VuQAYsv1563Yd54FQh9/CA@public.gmane.org>
2016-04-04 13:53       ` Grygorii Strashko
     [not found]         ` <570271C3.9030707-l0cyMroinI0@public.gmane.org>
2016-04-05  5:52           ` Felipe Balbi
2016-04-02  8:28   ` [PATCH 6/6] usb: dwc3: host: " Felipe Balbi

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=570385AB.8060507@ti.com \
    --to=grygorii.strashko-l0cymroini0@public.gmane.org \
    --cc=andy.gross-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=balbif-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=felipe.balbi-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
    --cc=ivan.ivanov-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org \
    --cc=linux-omap-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=linux-usb-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=maxime.coquelin-qxv4g6HH51o@public.gmane.org \
    --cc=patrice.chotard-qxv4g6HH51o@public.gmane.org \
    --cc=srinivas.kandagatla-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=ssantosh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=tony-4v6yS6AI5VpBDgjK7y7TUQ@public.gmane.org \
    /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;
as well as URLs for NNTP newsgroup(s).