Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752307AbcCRH3G (ORCPT ); Fri, 18 Mar 2016 03:29:06 -0400 Received: from mout.kundenserver.de ([217.72.192.73]:49753 "EHLO mout.kundenserver.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751015AbcCRH3D (ORCPT ); Fri, 18 Mar 2016 03:29:03 -0400 From: Arnd Bergmann To: Peter Chen Cc: Li Yang , Bjorn Andersson , Peter Chen , Greg Kroah-Hartman , Rajesh Bhagat , "linux-usb@vger.kernel.org" , lkml , Srinivas Kandagatla , linux-arm-msm , "linux-arm-kernel@lists.infradead.org" Subject: Re: [PATCH] usb: chipidea: Configure DMA properties and ops from DT Date: Fri, 18 Mar 2016 08:28:26 +0100 Message-ID: <3761533.8BImebjOQF@wuerfel> User-Agent: KMail/4.11.5 (Linux/3.16.0-10-generic; KDE/4.11.5; x86_64; ; ) In-Reply-To: <20160318015414.GA30851@shlinux2.ap.freescale.net> References: <1456119133-16114-1-git-send-email-bjorn.andersson@linaro.org> <3240370.XdEELlSA8f@wuerfel> <20160318015414.GA30851@shlinux2.ap.freescale.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" X-Provags-ID: V03:K0:ujUmjPi+BQWrsJ6ktnQerhnZJQFS8jj7eaqljlcP40/6tFfLq/E 1KayF6CCSxtnkHCDIR0c4tJ+ufJdc1BX5qCI23qzxt0BH9IEgCFTuVvEpwn/uPFFLMp3fUa sKANAFjE32HYO5Dy7/p0Din4Ui7quhJLcjjE6cAsVvET0CQyG2NSFZyhTn5+YraTHrhn+Na 0lF1evS1LGpba3XdK7FTw== X-UI-Out-Filterresults: notjunk:1;V01:K0:nb4GY/hylhU=://fO/yfeQihhMoTmIGoR8P Szq58uqlYW8zhdRRTgdKXFrmyj7D92A6MRhvYX2rFc6/+DS+T6O0pvAf87O3jjvRsQ1k/502J nUuAKKmgO2ICtBv6YMF44OB0J33KgKoz8dBxBF2iUYMbH6c7pXGOTbq3CFuhbZ6LOc6xduytg HlFRzKGrRO8YdOg6r5CvTZctqjZXkJak5iz2iSf+zH2ny3Oh0nD0ZSZIps9V6UPCwDb65cEvu q1pzXy65MWEc/GsaeK3o3ct97UtJP3p4F+lSvQossiOTJvDSPBNlmkexFrdi8nrF2wQGatZ6D 7tIupayzyR6QjxfnISWSwbu2zv361N1sXGdotaK01jmUArX8B8b/mbVGVWd98MOQxy7InOR5V jYcjKecEBO5hWD2gD6AkDjLbKGp2t5YvMJlgvGx6sCUrZJReh8wO9dfICh+B4otSWswkKy9rH f0cWXX8m+kyb7wLbZMp1K9hcEmgC9SBVKQTVr9aahjBE2fjOoYSgT4mU8LK/gFKtQAhld6mcI MNkmc5g9/Q0K0r4p8s31IcFObAaAzYuVUu6qhBue6+b9rCzTRQ68oHuc8bYhsBqXFvY+SAjYE Woihms5sKIrzES9bspzFuFfx0t1uQjsO/3hMDDDXT63hn1hXk8PU0hS6JsKypxcJRc9QimDf6 lxLpSvgjdRll5nkQTrKlbPUcv3VY3zHsDCW1OGd/cWMWdGBYFieXxK+8qW5VggJptMKrELiZ6 2WObaeYUBdT9NDS0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2072 Lines: 45 On Friday 18 March 2016 09:54:14 Peter Chen wrote: > > > > I don't think it's a very widespread problem, there are only very few > > developers that intentionally use this method, and some use the > > platform_device_register_full() call to create a device with a known > > mask, which is generally ok for the limited case where the driver > > is only ever going to run on a single platform, but not in the > > more general case that of_dma_configure is designed to handle. > > Even only for qualcomm platforms, it may be possible have different > DMA masks at ARM64 platforms, so we may can't use a fixed value > at glue layer driver. So, using of_dma_configure is suitable choice > for DT platforms for this case, right? Yes. > > I think we should fix the drivers to consistently use the device > > that was created by the platform (DT or ACPI or board file) > > to pass that into the DMA API, anything else will just cause > > more subtle bugs. > > > > Although I don't know what kinds of bugs it may have, it may be > met before, otherwise, why most of platform drivers need to call > dma_set_coherent_mask or dma_coerce_mask_and_coherent explicitly Any driver that wants to do 64-bit addressing on DMA should call dma_set_mask()/dma_set_coherent_mask() on its device and check the return code. No driver should call dma_coerce_mask_and_coherent() on its own device, it's basically always a bug and we named the function to make that more obvious. The problem with dma_coerce_mask_and_coherent() is that it just overrides whatever the platform knows about the device when the driver thinks it knows better. The reason for having those calls in a lot of drivers is that traditionally, ARM platforms booting with DT did not set up any DMA mask and the drivers worked around it by manually setting up a mask that happened to work for them (almost all 32-bit ARM devices need a 32-bit mask without coherency or offset or iommu, so that's easy). We now call of_dma_configure() for all devices that get probed from DT, so we should be removing those calls. Arnd