From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C127BC2BA16 for ; Sat, 4 Apr 2020 06:59:00 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 805BB206B8 for ; Sat, 4 Apr 2020 06:59:00 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="QT6Swg1V" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 805BB206B8 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-ID:Subject:To:From :Date:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=rlXWlOyiMPIBP/5QHUn52FuFUqBJFWvhYwDAvYB5q+s=; b=QT6Swg1VwlfKLD of3RtROkgvGJMXU3H/lWH8NT8/3aYgVwR3F/A5OB5LBtlGBDscRILZe2B6dPStS+OAvUDokombwZV ACAzuMsNK0mM6K0c6hK1PNuekT8B1nJ+EyNgzuiXO+zShfD+qMDkOSb0LjXxl2AqGH4zyIIe21v54 rcu4gvRcMXJrtdHrjYWQP0RlCRWwYzabeM1TEFIsHmDtdLpsmYmYGkhsogYxRPSqJ7A1Sn7rLz5fy 5NrBUfRa+RYlFYrBu5tHS2w0eZEZ3LvNOML5bP3vEb6O2s1Ke3VnziYzF+LQeVa8JDMeKTDbk7tIZ zmPwoq4bh3c9WdTuGnQQ==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jKclf-0001Z9-5z; Sat, 04 Apr 2020 06:58:59 +0000 Received: from [2001:4bb8:180:7914:2ca6:9476:bbfa:a4d0] (helo=localhost) by bombadil.infradead.org with esmtpsa (Exim 4.92.3 #3 (Red Hat Linux)) id 1jKclc-0001Yy-Tu; Sat, 04 Apr 2020 06:58:57 +0000 Date: Sat, 4 Apr 2020 08:58:55 +0200 From: Christoph Hellwig To: Linus Torvalds Subject: [GIT PULL] dma-mapping updates for 5.7 Message-ID: <20200404065855.GA656254@infradead.org> MIME-Version: 1.0 Content-Disposition: inline X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org The following changes since commit 11a48a5a18c63fd7621bb050228cebf13566e4d8: Linux 5.6-rc2 (2020-02-16 13:16:59 -0800) are available in the Git repository at: git://git.infradead.org/users/hch/dma-mapping.git tags/dma-mapping-5.7 for you to fetch changes up to fd27a526bb381f43dded6db30b3b016468ab0e6c: ARM/dma-mapping: merge __dma_supported into arm_dma_supported (2020-03-20 11:43:21 +0100) ---------------------------------------------------------------- dma-mapping updates for 5.7 - fix an integer overflow in the coherent pool (Kevin Grandemange) - provide support for in-place uncached remapping and use that for openrisc - fix the arm coherent allocator to take the bus limit into account ---------------------------------------------------------------- Christoph Hellwig (8): dma-direct: remove the cached_kernel_address hook dma-direct: consolidate the error handling in dma_direct_alloc_pages dma-direct: make uncached_kernel_address more general dma-direct: provide a arch_dma_clear_uncached hook openrisc: use the generic in-place uncached DMA allocator ARM/dma-mapping: remove get_coherent_dma_mask ARM/dma-mapping: take the bus limit into account in __dma_alloc ARM/dma-mapping: merge __dma_supported into arm_dma_supported Kevin Grandemange (1): dma-coherent: fix integer overflow in the reserved-memory dma allocation arch/Kconfig | 15 +++++--- arch/arm/include/asm/dma-iommu.h | 2 -- arch/arm/mm/dma-mapping.c | 76 ++++++++++------------------------------ arch/microblaze/Kconfig | 2 +- arch/microblaze/mm/consistent.c | 9 +---- arch/mips/Kconfig | 3 +- arch/mips/mm/dma-noncoherent.c | 7 +--- arch/nios2/Kconfig | 3 +- arch/nios2/mm/dma-mapping.c | 12 +------ arch/openrisc/Kconfig | 2 ++ arch/openrisc/kernel/dma.c | 55 ++++++----------------------- arch/xtensa/Kconfig | 2 +- arch/xtensa/kernel/pci-dma.c | 12 ++----- include/linux/dma-noncoherent.h | 4 +-- kernel/dma/coherent.c | 13 +++---- kernel/dma/direct.c | 25 +++++++------ 16 files changed, 76 insertions(+), 166 deletions(-) _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel