Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751825AbdITWSM (ORCPT ); Wed, 20 Sep 2017 18:18:12 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:51678 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751520AbdITWSL (ORCPT ); Wed, 20 Sep 2017 18:18:11 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 4343F60722 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=timur@codeaurora.org To: linux-kernel@vger.kernel.org From: Timur Tabi Subject: Proper way to allocate DMA buffer within a single 4GB block? Message-ID: Date: Wed, 20 Sep 2017 17:18:09 -0500 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1892 Lines: 58 I have a device that requires I allocated a few buffers for DMA. The problem is that this device has only one register for the upper 32 bits of all of the buffers. That is, all of buffers must reside within the same 4GB block of memory. In order words, end = start + size - 1; if (upper_32_bits(start) != upper_32_bits(end)) // Oh no, the buffer spans across a 4GB boundary! The buffer is typically less than 16KB in size, so we've never seen it actually span across a 4GB boundary. However, I want to ensure that it's impossible. I wrote this function that re-tries the allocation if the first one is invalid, but I suspect that it's too hackish. Is there a better way? static void *dma_alloc_4gb_block(struct device *dev, size_t size, dma_addr_t *dma_handle) { dma_addr_t start, start2, end; void *v, *v2; v = dma_zalloc_coherent(dev, size, &start, GFP_KERNEL); if (!v) return NULL; /* Test to see if the entire buffer is within one 4G block */ end = start + size - 1; if (upper_32_bits(start) == upper_32_bits(end)) { *dma_handle = start; return v; } /* The DMA buffer spanned a 32-bit boundry! Allocate another * block and try again. Assuming this block as adjacent to * the first one, it should be valid. */ v2 = dma_zalloc_coherent(dev, size, &start2, GFP_KERNEL); dma_free_coherent(dev, size, v, start); if (!v2) { return NULL; } /* Test to see if the entire buffer is within one 4G block */ end = start2 + size - 1; if (upper_32_bits(start2) == upper_32_bits(end)) { *dma_handle = start2; return v2; } /* We tried twice and still failed, so just give up. */ dma_free_coherent(dev, size, v2, start2); return NULL; } -- Qualcomm Datacenter Technologies, Inc. as an affiliate of Qualcomm Technologies, Inc. Qualcomm Technologies, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project.