From patchwork Wed Apr 14 16:35:36 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 12203339 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=-21.0 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,INCLUDES_PULL_REQUEST, MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING,SPF_HELO_NONE,SPF_PASS 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 18F58C433ED for ; Wed, 14 Apr 2021 16:35:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id EC10661153 for ; Wed, 14 Apr 2021 16:35:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233638AbhDNQgD (ORCPT ); Wed, 14 Apr 2021 12:36:03 -0400 Received: from mail.kernel.org ([198.145.29.99]:42086 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231599AbhDNQgC (ORCPT ); Wed, 14 Apr 2021 12:36:02 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id B619F6113B; Wed, 14 Apr 2021 16:35:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1618418140; bh=Yk43lQt3xONHQ5mcQacuvBpjQEzfRMYBnN12EuEhqzk=; h=Date:From:To:Cc:Subject:From; b=HVAjvvZPZg1FGeF0GyMhjlgweFtOfb7q9guzW769W2QEn6562VmynrgyKIkSlkWT2 0QxzL+A0ZFGMg2vcx6k2eBODIkvh9b6l8cDykhOkTyWDIr43MgGAAh7DkYQahJpgdn 9yH6/IHvm6h/okRtZz9z88k+ejIWibnqiY6sL7tGx3tMzqALg8ciU8Oj3fZhRgV/vq EGBN8H9EIsZFqN38TSGpoipZ9N0pX7z1mui1wolFO30Df+MdWWKYg9/TygQ+1vm8CF LJjPloH45rh40HbM/TWcmgP16tNFKYvmgON8yyW1YpxB+at2wnz/SyxXtdn5eEOWgA dWVzCsFWR5T1Q== Date: Wed, 14 Apr 2021 22:05:36 +0530 From: Vinod Koul To: Linus Torvalds Cc: dma , LKML Subject: [GIT PULL]: dmaengine fixes for 5.12 Message-ID: MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org Hi Linus, Please pull to receive the fixes for dmaengine for v5.12. Mostly bunch of driver fixes. The following changes since commit a38fd8748464831584a19438cbb3082b5a2dab15: Linux 5.12-rc2 (2021-03-05 17:33:41 -0800) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git tags/dmaengine-fix-5.12 for you to fetch changes up to ea9aadc06a9f10ad20a90edc0a484f1147d88a7a: dmaengine: idxd: fix wq cleanup of WQCFG registers (2021-04-12 22:08:39 +0530) ---------------------------------------------------------------- dmaengine fixes for v5.12 Couple of dmaengine driver fixes for: - race and descriptor issue for xilinx driver - fix interrupt handling, wq state & cleanup, field sizes for completion, msix permissions for idxd driver - rumtim pm fix for tegra driver - double free fix in dma_async_device_register ---------------------------------------------------------------- Andy Shevchenko (1): dmaengine: dw: Make it dependent to HAS_IOMEM Dan Carpenter (1): dmaengine: plx_dma: add a missing put_device() on error path Dave Jiang (6): dmaengine: idxd: Fix clobbering of SWERR overflow bit on writeback dmaengine: idxd: fix delta_rec and crc size field for completion record dmaengine: idxd: fix opcap sysfs attribute output dmaengine: idxd: fix wq size store permission state dmaengine: idxd: clear MSIX permission entry on shutdown dmaengine: idxd: fix wq cleanup of WQCFG registers Dinghao Liu (1): dmaengine: tegra20: Fix runtime PM imbalance on error Laurent Pinchart (2): dmaengine: xilinx: dpdma: Fix descriptor issuing on video group dmaengine: xilinx: dpdma: Fix race condition in done IRQ Lv Yunlong (1): dmaengine: Fix a double free in dma_async_device_register drivers/dma/dmaengine.c | 1 + drivers/dma/dw/Kconfig | 2 ++ drivers/dma/idxd/device.c | 65 ++++++++++++++++++++++++++++++++------- drivers/dma/idxd/idxd.h | 3 ++ drivers/dma/idxd/init.c | 11 ++----- drivers/dma/idxd/irq.c | 4 ++- drivers/dma/idxd/sysfs.c | 19 ++++++------ drivers/dma/plx_dma.c | 18 ++++++----- drivers/dma/tegra20-apb-dma.c | 4 +-- drivers/dma/xilinx/xilinx_dpdma.c | 31 +++++++++++-------- include/uapi/linux/idxd.h | 4 +-- 11 files changed, 109 insertions(+), 53 deletions(-) Thanks