From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755396Ab3LJReo (ORCPT ); Tue, 10 Dec 2013 12:34:44 -0500 Received: from avon.wwwdotorg.org ([70.85.31.133]:50761 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755343Ab3LJRel (ORCPT ); Tue, 10 Dec 2013 12:34:41 -0500 Message-ID: <52A750AE.6000903@wwwdotorg.org> Date: Tue, 10 Dec 2013 10:34:38 -0700 From: Stephen Warren User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.1.0 MIME-Version: 1.0 To: Vinod Koul CC: Dan Williams , andriy.shevchenko@intel.com, dmaengine@vger.kernel.org, linux-kernel@vger.kernel.org, Stephen Warren , Mark Brown Subject: Re: [PATCH V4] dma: add channel request API that supports deferred probe References: <1385485462-30376-1-git-send-email-swarren@wwwdotorg.org> <20131210122159.GJ29580@intel.com> In-Reply-To: <20131210122159.GJ29580@intel.com> X-Enigmail-Version: 1.5.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 12/10/2013 05:21 AM, Vinod Koul wrote: > On Tue, Nov 26, 2013 at 10:04:22AM -0700, Stephen Warren wrote: >> From: Stephen Warren >> >> dma_request_slave_channel() simply returns NULL whenever DMA channel >> lookup fails. Lookup could fail for two distinct reasons: >> >> a) No DMA specification exists for the channel name. >> This includes situations where no DMA specifications exist at all, or >> other general lookup problems. >> >> b) A DMA specification does exist, yet the driver for that channel is not >> yet registered. >> >> Case (b) should trigger deferred probe in client drivers. However, since >> they have no way to differentiate the two situations, it cannot. >> >> Implement new function dma_request_slave_channel_reason(), which performs >> identically to dma_request_slave_channel(), except that it returns an >> error-pointer rather than NULL, which allows callers to detect when >> deferred probe should occur. >> >> Eventually, all drivers should be converted to this new API, the old API >> removed, and the new API renamed to the more desirable name. This patch >> doesn't convert the existing API and all drivers in one go, since some >> drivers call dma_request_slave_channel() then dma_request_channel() if >> that fails. That would require either modifying dma_request_channel() in >> the same way, or adding extra error-handling code to all affected >> drivers, and there are close to 100 drivers using the other API, rather >> than just the 15-20 or so that use dma_request_slave_channel(), which >> might be tenable in a single patch. >> >> acpi_dma_request_slave_chan_by_name() doesn't currently implement >> deferred probe. It should, but this will be addressed later. >> >> Acked-by: Dan Williams >> Signed-off-by: Stephen Warren > > Applied, to topic/defer_probe, this wont be rebased so feel free to merge Could you also create a signed tag for Mark and myself to pull from? If we just pull in random commits from your tree, it's not obvious to anyone looking at the git history that we legitimately co-ordinated this. The same comment goes for the topic/of branch. Thanks!