* Re: [PATCH 1/2] ufs-pltfrm: initialize DMA mask for device-tree probed device [not found] ` <1376922720.2069.10.camel@dabdike.int.hansenpartnership.com> @ 2013-08-20 7:26 ` Sujit Reddy Thumma 2013-08-20 15:03 ` Akinobu Mita 0 siblings, 1 reply; 3+ messages in thread From: Sujit Reddy Thumma @ 2013-08-20 7:26 UTC (permalink / raw) To: James Bottomley Cc: Akinobu Mita, linux-scsi, Vinayak Holikatti, Santosh Y, devicetree On 8/19/2013 8:02 PM, James Bottomley wrote: > On Mon, 2013-08-19 at 22:56 +0900, Akinobu Mita wrote: >> The device-tree probed device for ARM doesn't have dev->dma_mask. >> So dma_set_mask() for the device doesn't succeed. The popular trick >> for this is - dev->dma_mask = &dev->coherent_dma_mask; >> >> Currently there is no dma_set_mask() call in ufs-pltfrm, but the >> forthcoming fix needs proper DMA mask setting in ufs core driver. So >> initializing dev->dma_mask as described above is required. >> >> Signed-off-by: Akinobu Mita <mita@fixstars.com> >> Cc: Sujit Reddy Thumma <sthumma@codeaurora.org> >> Cc: Vinayak Holikatti <vinholikatti@gmail.com> >> Cc: Santosh Y <santoshsy@gmail.com> >> Cc: "James E.J. Bottomley" <JBottomley@parallels.com> >> Cc: linux-scsi@vger.kernel.org >> --- >> drivers/scsi/ufs/ufshcd-pltfrm.c | 3 +++ >> 1 file changed, 3 insertions(+) >> >> diff --git a/drivers/scsi/ufs/ufshcd-pltfrm.c b/drivers/scsi/ufs/ufshcd-pltfrm.c >> index 94ba40c..c780840 100644 >> --- a/drivers/scsi/ufs/ufshcd-pltfrm.c >> +++ b/drivers/scsi/ufs/ufshcd-pltfrm.c >> @@ -122,6 +122,9 @@ static int ufshcd_pltfrm_probe(struct platform_device *pdev) >> goto out; >> } >> >> + if (!dev->dma_mask) >> + dev->dma_mask = &dev->coherent_dma_mask; >> + > > If the DMA mask is NULL, it means there's buggy platform code somewhere; > I'm not sure we should be hacking a fix in a SCSI driver. Yes, ideally DT core should do this, there are patches lying around but are not converged. Adding devicetree@vger.kernel.org to see if someone has better suggestions. Recent additions to kernel with similar hacks - https://patchwork.kernel.org/patch/2537021/ -- Regards, Sujit ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ufs-pltfrm: initialize DMA mask for device-tree probed device 2013-08-20 7:26 ` [PATCH 1/2] ufs-pltfrm: initialize DMA mask for device-tree probed device Sujit Reddy Thumma @ 2013-08-20 15:03 ` Akinobu Mita 2013-08-20 20:54 ` Russell King - ARM Linux 0 siblings, 1 reply; 3+ messages in thread From: Akinobu Mita @ 2013-08-20 15:03 UTC (permalink / raw) To: Sujit Reddy Thumma Cc: James Bottomley, Akinobu Mita, linux-scsi, Vinayak Holikatti, Santosh Y, devicetree, Russell King > On 8/19/2013 8:02 PM, James Bottomley wrote: >> On Mon, 2013-08-19 at 22:56 +0900, Akinobu Mita wrote: >>> The device-tree probed device for ARM doesn't have dev->dma_mask. >>> So dma_set_mask() for the device doesn't succeed. The popular trick >>> for this is - dev->dma_mask = &dev->coherent_dma_mask; >>> >>> Currently there is no dma_set_mask() call in ufs-pltfrm, but the >>> forthcoming fix needs proper DMA mask setting in ufs core driver. So >>> initializing dev->dma_mask as described above is required. >>> >>> Signed-off-by: Akinobu Mita <mita@fixstars.com> >>> Cc: Sujit Reddy Thumma <sthumma@codeaurora.org> >>> Cc: Vinayak Holikatti <vinholikatti@gmail.com> >>> Cc: Santosh Y <santoshsy@gmail.com> >>> Cc: "James E.J. Bottomley" <JBottomley@parallels.com> >>> Cc: linux-scsi@vger.kernel.org >>> --- >>> drivers/scsi/ufs/ufshcd-pltfrm.c | 3 +++ >>> 1 file changed, 3 insertions(+) >>> >>> diff --git a/drivers/scsi/ufs/ufshcd-pltfrm.c >>> b/drivers/scsi/ufs/ufshcd-pltfrm.c >>> index 94ba40c..c780840 100644 >>> --- a/drivers/scsi/ufs/ufshcd-pltfrm.c >>> +++ b/drivers/scsi/ufs/ufshcd-pltfrm.c >>> @@ -122,6 +122,9 @@ static int ufshcd_pltfrm_probe(struct >>> platform_device *pdev) >>> goto out; >>> } >>> >>> +if (!dev->dma_mask) >>> +dev->dma_mask = &dev->coherent_dma_mask; >>> + >> >> If the DMA mask is NULL, it means there's buggy platform code somewhere; >> I'm not sure we should be hacking a fix in a SCSI driver. > > Yes, ideally DT core should do this, there are patches lying around but > are not converged. Adding devicetree@vger.kernel.org to see if someone > has better suggestions. > > Recent additions to kernel with similar hacks - > https://patchwork.kernel.org/patch/2537021/ The discussion in that thread is useful. Also, I found that Russell King proposed replacing the boilerplate by using dma_coerce_mask_and_coherent() in his patch set "Preview of DMA mask changes". https://patchwork.kernel.org/patch/2837359/ ^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ufs-pltfrm: initialize DMA mask for device-tree probed device 2013-08-20 15:03 ` Akinobu Mita @ 2013-08-20 20:54 ` Russell King - ARM Linux 0 siblings, 0 replies; 3+ messages in thread From: Russell King - ARM Linux @ 2013-08-20 20:54 UTC (permalink / raw) To: Akinobu Mita Cc: Sujit Reddy Thumma, James Bottomley, linux-scsi, Vinayak Holikatti, Santosh Y, devicetree On Wed, Aug 21, 2013 at 12:03:50AM +0900, Akinobu Mita wrote: > The discussion in that thread is useful. Also, I found that Russell King > proposed replacing the boilerplate by using dma_coerce_mask_and_coherent() > in his patch set "Preview of DMA mask changes". > https://patchwork.kernel.org/patch/2837359/ That is an attempt to pull all that stuff into one central place so we don't have loads of drivers dealing with it in their own way. As far as I can gather from those who deal with DT, such as Arnd, is that they believe it to be wrong that the DT code sets up the DMA masks, and they think that stuff will break if the DT code does set these pointers up. The big problem which we have is we have a whole bunch of drivers which don't bother at all with the DMA set mask functions (because they've been fiddling with the mask directly) and sorting that mess out is going to be pretty damn difficult. So, the above series is all about bringing stuff to a central place where we can then start thinking about changing the behaviour and not have to patch lots of drivers throughout the tree for every change that's made. The way I envision the change happening is this: 1. Introduce the notion of mask coercion (drivers forcing the mask to a particular value.) 2. Add dma_set_mask() and similar functions to these drivers incrementally. 3. Move the initialization of the mask up to the device creation level (iow, the DT code) and out of the drivers (this can be done by adding it to the DT code, and removing it from the mask coercion code.) 4. Remove dma_coerce_mask_and_coherent() from the kernel once complete. So, why bother with dma_coerce_mask_and_coherent()? Not only does it centralise the "hack" but it also provides a means to identify drivers which need work and/or have been missed (you just have to grep for the direct assignments to the DMA masks.) Not only that but once the hack is centralised, it removes some of the variability in the drivers, and provides a step where we can allow things to be tested hopefully without causing any regressions. At least that's the theory. ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-08-20 20:54 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- [not found] <1376920566-20325-1-git-send-email-mita@fixstars.com> [not found] ` <1376922720.2069.10.camel@dabdike.int.hansenpartnership.com> 2013-08-20 7:26 ` [PATCH 1/2] ufs-pltfrm: initialize DMA mask for device-tree probed device Sujit Reddy Thumma 2013-08-20 15:03 ` Akinobu Mita 2013-08-20 20:54 ` Russell King - ARM Linux
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).