From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from newverein.lst.de (verein.lst.de [213.95.11.211]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 42Lf2b4FVZzDqCK for ; Fri, 28 Sep 2018 01:32:55 +1000 (AEST) Date: Thu, 27 Sep 2018 17:32:52 +0200 From: Christoph Hellwig To: Robin Murphy Cc: Christoph Hellwig , iommu@lists.linux-foundation.org, Marek Szyprowski , Benjamin Herrenschmidt , Greg Kroah-Hartman , linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH 4/5] dma-direct: implement complete bus_dma_mask handling Message-ID: <20180927153252.GE10566@lst.de> References: <20180920185247.20037-1-hch@lst.de> <20180920185247.20037-5-hch@lst.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Thu, Sep 27, 2018 at 03:58:04PM +0100, Robin Murphy wrote: >> } >> #endif /* !CONFIG_ARCH_HAS_PHYS_TO_DMA */ >> diff --git a/kernel/dma/direct.c b/kernel/dma/direct.c >> index 3c404e33d946..64466b7ef67b 100644 >> --- a/kernel/dma/direct.c >> +++ b/kernel/dma/direct.c >> @@ -43,10 +43,11 @@ check_addr(struct device *dev, dma_addr_t dma_addr, size_t size, >> return false; >> } >> - if (*dev->dma_mask >= DMA_BIT_MASK(32)) { >> + if (*dev->dma_mask >= DMA_BIT_MASK(32) || dev->bus_dma_mask) { > > Hmm... say *dev->dma_mask is 31 bits and dev->bus_dma_mask is 40 bits due > to a global DT property, we'll now scream where we didn't before even > though the bus mask is almost certainly irrelevant - is that desirable? This is just the reporting in the error case - we'll only hit this IFF dma_capable already returned false. But if you don't want a message here we can probably drop this hunk. >> @@ -65,12 +66,18 @@ u64 dma_direct_get_required_mask(struct device *dev) >> { >> u64 max_dma = phys_to_dma_direct(dev, (max_pfn - 1) << PAGE_SHIFT); >> + if (dev->bus_dma_mask && dev->bus_dma_mask < max_dma) >> + max_dma = dev->bus_dma_mask; > > Again, I think we could just do another min_not_zero() here. A device wired > to address only one single page of RAM isn't a realistic prospect (and we > could just flip the -1 and the shift in the max_dma calculation if we > *really* wanted to support such things). This just seemed more readable to me than min_not_zero, but if others prefer min_not_zero I can switch.