From patchwork Sat Jun 8 09:09:08 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 10983077 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 016A7924 for ; Sat, 8 Jun 2019 09:12:34 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E168628B7F for ; Sat, 8 Jun 2019 09:12:33 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id D57D728BD0; Sat, 8 Jun 2019 09:12:33 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.0 required=2.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 79D3328B7F for ; Sat, 8 Jun 2019 09:12:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726535AbfFHJMd (ORCPT ); Sat, 8 Jun 2019 05:12:33 -0400 Received: from mail.kernel.org ([198.145.29.99]:37662 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726478AbfFHJMd (ORCPT ); Sat, 8 Jun 2019 05:12:33 -0400 Received: from localhost (unknown [106.200.229.24]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DA954206E0; Sat, 8 Jun 2019 09:12:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1559985152; bh=+dfOuCygM4XWeeIt+7I1WNiQHNRsX6McvspPEEKD0tQ=; h=Date:From:To:Cc:Subject:From; b=gTK1m1t1hpgJfSOsHJhw9jxnTsQ6inJpQIWW5Ku+Mb6K6H6pIAG2H0W+aLdYnxdcp qhxpQPnbUoLm+oNPy1RwFDUwbuky2fqmnoW2gDftPfYtKxfu4nDGi7/P14wrehzva3 Pk5mfG/So68FyZfFj1KN6NB1NgYoyGioIQNRMCLA= Date: Sat, 8 Jun 2019 14:39:08 +0530 From: Vinod Koul To: Linus Torvalds Cc: dma , LKML Subject: [GIT PULL]: dmaengine fixes for v5.2-rc4 Message-ID: <20190608090908.GE9160@vkoul-mobl.Dlink> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.11.3 (2019-02-01) Sender: dmaengine-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP Hi Linus, Please pull to receive dmaengine fixes. These fixes are on drivers. The following changes since commit a188339ca5a396acc588e5851ed7e19f66b0ebd9: Linux 5.2-rc1 (2019-05-19 15:47:09 -0700) are available in the Git repository at: git://git.infradead.org/users/vkoul/slave-dma.git tags/dmaengine-fix-5.2-rc4 for you to fetch changes up to 9bb9fe0cfbe0aa72fed906ade0590e1702815e5d: dmaengine: sprd: Add interrupt support for 2-stage transfer (2019-05-21 19:23:54 +0530) ---------------------------------------------------------------- dmaengine fixes for v5.2-rc4 The fixes for this round are in drivers: - jz4780 transfer fix for acking descriptors early - fsl-qdma: clean registers on error - dw-axi-dmac: null pointer dereference fix - mediatek-cqdma: fix sleeping in atomic context - tegra210-adma: fix bunch os issues like crashing in driver probe, channel FIFO configuration etc. - sprd: Fixes for possible crash on descriptor status, block length overflow. For 2-stage transfer fix incorrect start, configuration and interrupt handling. ---------------------------------------------------------------- Baolin Wang (3): dmaengine: sprd: Fix the possible crash when getting descriptor status dmaengine: sprd: Add validation of current descriptor in irq handler dmaengine: sprd: Add interrupt support for 2-stage transfer Colin Ian King (1): dmaengine: dw-axi-dmac: fix null dereference when pointer first is null Dan Carpenter (1): dmaengine: mediatek-cqdma: sleeping in atomic context Eric Long (3): dmaengine: sprd: Fix the incorrect start for 2-stage destination channels dmaengine: sprd: Fix block length overflow dmaengine: sprd: Fix the right place to configure 2-stage transfer Jon Hunter (3): dmaengine: tegra210-adma: Fix crash during probe dmaengine: tegra210-adma: Fix channel FIFO configuration dmaengine: tegra210-adma: Fix spelling Paul Cercueil (1): dmaengine: jz4780: Fix transfers being ACKed too soon Peng Ma (1): dmaengine: fsl-qdma: Add improvement drivers/dma/dma-jz4780.c | 32 ++++++++++----- drivers/dma/dw-axi-dmac/dw-axi-dmac-platform.c | 3 +- drivers/dma/fsl-qdma.c | 4 +- drivers/dma/mediatek/mtk-cqdma.c | 4 +- drivers/dma/sprd-dma.c | 49 +++++++++++++++++----- drivers/dma/tegra210-adma.c | 57 ++++++++++++++++---------- 6 files changed, 100 insertions(+), 49 deletions(-) Thanks