Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755129Ab3DRJA3 (ORCPT ); Thu, 18 Apr 2013 05:00:29 -0400 Received: from caramon.arm.linux.org.uk ([78.32.30.218]:33553 "EHLO caramon.arm.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752978Ab3DRJA1 (ORCPT ); Thu, 18 Apr 2013 05:00:27 -0400 Date: Thu, 18 Apr 2013 10:00:09 +0100 From: Russell King - ARM Linux To: Lee Jones Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, arnd@arndb.de, linus.walleij@stericsson.com, Greg Kroah-Hartman , Jiri Slaby Subject: Re: [PATCH v2] serial: pl011: Add Device Tree support to request DMA channels Message-ID: <20130418090008.GG14496@n2100.arm.linux.org.uk> References: <1366272857-14038-1-git-send-email-lee.jones@linaro.org> <20130418081811.GF14496@n2100.arm.linux.org.uk> <20130418083922.GC3137@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130418083922.GC3137@gmail.com> User-Agent: Mutt/1.5.19 (2009-01-05) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2245 Lines: 51 On Thu, Apr 18, 2013 at 09:39:22AM +0100, Lee Jones wrote: > On Thu, 18 Apr 2013, Russell King - ARM Linux wrote: > > This suffers the same problem with your MMCI patch. If you're using DT and > > don't provide the DMA information, you get errors printed. That's not on > > for an optional driver feature, especially when that feature causes > > functional difficulties on various platforms and so is _purposely_ omitted. > > How does that differ from using pdata and not passing DMA information? If you have pdata but no DMA information then, this gets triggered: if (!plat || !plat->dma_filter) { dev_info(uap->port.dev, "no DMA platform data\n"); return; } However, with your change, this becomes: if (!(plat && plat->dma_filter) && !np) { dev_info(uap->port.dev, "no DMA platform data or DT\n"); return; } wihch means it is _unconditionally_ bypassed if there is a DT node. So, if the MMC device has been created from DT, we will drop through to the following code irrespective of whether there is any DMA data passed. Hence, we get to here unconditionally in the DT case: chan = dma_request_slave_channel_compat(mask, (plat) ? plat->dma_filter : NULL, (plat) ? plat->dma_tx_param : NULL, uap->port.dev, "tx"); if (!chan) { dev_err(uap->port.dev, "no TX DMA channel!\n"); return; and if the DT transmit DMA information is not provided, chan will be NULL, which means we produce an error level "no TX DMA channel!" message. That message is supposed to indicate only when it has not been possible to request the channel, not when there has been no DMA information provided. This is where AMBA drivers differ from the majority of other drivers - DMA is *strictly* optional for them, and that must remain the case as long as we have platforms where AMBA devices are not hooked up to DMA engines or where the DMA engines they are hooked up to are buggy, or the entire DMA design (PL08x connected to PL18x) is buggy. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/