From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933511AbcJYUmp (ORCPT ); Tue, 25 Oct 2016 16:42:45 -0400 Received: from mout.kundenserver.de ([212.227.17.10]:57973 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754050AbcJYUmn (ORCPT ); Tue, 25 Oct 2016 16:42:43 -0400 From: Arnd Bergmann To: Sriram Dash Cc: linux-kernel@vger.kernel.org, linux-usb@vger.kernel.org, mathias.nyman@intel.com, gregkh@linuxfoundation.org, suresh.gupta@nxp.com, felipe.balbi@linux.intel.com, stern@rowland.harvard.edu, pku.leo@gmail.com Subject: Re: [PATCH 2/3] usb: dwc3: host: Do not use dma_set_coherent_mask Date: Tue, 25 Oct 2016 22:42:24 +0200 Message-ID: <3451589.MhzIjWDHep@wuerfel> User-Agent: KMail/5.1.3 (Linux/4.4.0-34-generic; KDE/5.18.0; x86_64; ; ) In-Reply-To: <1477392988-7253-3-git-send-email-sriram.dash@nxp.com> References: <1477392988-7253-1-git-send-email-sriram.dash@nxp.com> <1477392988-7253-3-git-send-email-sriram.dash@nxp.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:1IOBSSukDsvH0gapMz0ZQZSBKupHtW9ONLZeG7c/KRwv00NwZpi dm1EEsJX5wWW5r0SiqJI9ubgaZY2rJEzofJBh7Xvb1q1ZkoEZv0k6LxQ74QcuSU4ivPIPnD D+BsxYgKFW5cDh+ha2G930egvUpzC4VAr5imkCvbYAsOt3wJpBxaVppgd5T8H5NjtNWVmnJ TNnRMyL5QmI7FUl6VooaQ== X-UI-Out-Filterresults: notjunk:1;V01:K0:UYyDbdlJQgY=:iCJmpmmM0MOuUoXi8jqTxZ RQnlXm+b4nY90QWv/+ZykmQIDjAssfGhhr3nWqKSR9g3QxCB84spSbB9nkQFO0jrq/SaeklJs d5Ld8PcY/o4wV4cpPidcbA42yFbmQwQlRs1xf9V7oGIi+dWakYEW7jw28ov+InlCaQpRMbrKF d2wd1kNM3l3uvDu/5JZMa6k3ahL+EzP0gPjq21mdrmrOSAYAVGqyaNWvOQ35qI9xpIIi/O/Xp wupUlnCbnNohZztlo6eHMgg39imHQnv5DWFljrqm6ofD2BnS+YLF9JlLPN+DrP0XBU2YU3pCd YEg/WQ6zRyM4fNSvEsKYPHm9/V4hKt1I7HDqtFF3geSwiTea+/EqGuC6LYEO928X9Iv5A+YD3 +vkrgTV2pUpVpm3POh/fHze1jdwtGwsp/e9t0VG8PmFxTTybfCCVqRJT5ukxs5oUuXvk/nLl0 kvssiDznRQ+rQ5ZOay4USaDlVpyno5MJIp0yv0yHnkcP6vp0hHu8kTrl8XNp+F6NPLn4LD1j8 tJughl3QkZCc1uGsg1NrI01UwHQGF8DkjK3J/L58g8ZEfib/fXxu7Pban9hI5Gz6NBxn/ilNp 6DiiXmSUtQQLhqQ1aahscobfoLAOxZqHYEpoGInD/dKdWbX3mk1Nr+c+6oKMfoq9+GXO5sKsO 9sPpKPo08Xk18mVLtKuCTQe+5F5uY+5O+Rd4EiG3thBBvKMPfzqA9V8mre76ZcdNqBeexKN1r gvZR7DB4gkVuBUV2 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tuesday, October 25, 2016 4:26:27 PM CEST Sriram Dash wrote: > Do not require dma_set_coherent_mask for hcd > > Signed-off-by: Arnd Bergmann Aside from the comments I had for patch 3, you are doing two different things here: > diff --git a/drivers/usb/dwc3/dwc3-st.c b/drivers/usb/dwc3/dwc3-st.c > index 89a2f71..4d7439c 100644 > --- a/drivers/usb/dwc3/dwc3-st.c > +++ b/drivers/usb/dwc3/dwc3-st.c > @@ -218,7 +218,6 @@ static int st_dwc3_probe(struct platform_device *pdev) > if (IS_ERR(regmap)) > return PTR_ERR(regmap); > > - dma_set_coherent_mask(dev, dev->coherent_dma_mask); > dwc3_data->dev = dev; > dwc3_data->regmap = regmap; > This one was setting the mask for the device itself (incorrectly), so it can be removed along with the dma_coerce_mask_and_coherent() call in dwc3_exynos_probe, or as a separate patch. It is an independent cleanup. > --- a/drivers/usb/chipidea/core.c > +++ b/drivers/usb/chipidea/core.c > @@ -833,9 +833,6 @@ struct platform_device *ci_hdrc_add_device(struct device *dev, > > - dma_set_coherent_mask(&pdev->dev, dev->coherent_dma_mask); > > ret = platform_device_add_resources(pdev, res, nres); > if (ret) > --- a/drivers/usb/dwc3/core.c > +++ b/drivers/usb/dwc3/core.c > @@ -1059,12 +1059,6 @@ static int dwc3_probe(struct platform_device *pdev) > > spin_lock_init(&dwc->lock); > > - dma_set_coherent_mask(dev, dev->parent->coherent_dma_mask); > --- a/drivers/usb/dwc3/host.c > +++ b/drivers/usb/dwc3/host.c > @@ -72,11 +72,7 @@ int dwc3_host_init(struct dwc3 *dwc) > return -ENOMEM; > } > > - dma_set_coherent_mask(&xhci->dev, dwc->dev->coherent_dma_mask); > - These three all set the mask for the *child* devices, as that is no longer needed after the change in patch 1/3. I'd suggest leaving those changes together with the rest of that patch. However, it's probably better to split up that patch along the boundaries of the drivers, starting with the USB core: 1/4 usb: separate out sysdev pointer from usb_bus 2/4 usb: chipidea: use bus->sysdev for DMA configuration 3/4 usb: xhci: use bus->sysdev for DMA configuration 4/4 usb: dwc3: use bus->sysdev for DMA configuration Arnd