From patchwork Thu Apr 21 12:47:11 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vinod Koul X-Patchwork-Id: 12821576 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id D8FE5C433EF for ; Thu, 21 Apr 2022 12:47:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1385577AbiDUMuI (ORCPT ); Thu, 21 Apr 2022 08:50:08 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:48586 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1385569AbiDUMuH (ORCPT ); Thu, 21 Apr 2022 08:50:07 -0400 Received: from ams.source.kernel.org (ams.source.kernel.org [IPv6:2604:1380:4601:e00::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 18E2D32059; Thu, 21 Apr 2022 05:47:18 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ams.source.kernel.org (Postfix) with ESMTPS id CAFAEB82293; Thu, 21 Apr 2022 12:47:16 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id E266EC385A5; Thu, 21 Apr 2022 12:47:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1650545235; bh=UcQO2s3LFwB24HB203UWRaa916KVKDAPA2bum0jrpc4=; h=Date:From:To:Cc:Subject:From; b=R7beJJ2o0zop79DQR1f+UbtCD11yR8gBGKvpCJLoJE/nMNl0GlhnVeDWDeonVDuOF yke27azpRE3Ub9kmnzUxrZAjKBUoLEgWILu/wgXgOW3ND0+0MUe6YEBrvWxQ09kP1u q8tr63py9kKxJTOXaR19kT+7WhpTyRfxDBzEkFxyZiMRez3tMqmA8Mh6Q2u9VNRECv IOkCQdSvairDgghDeGbgwKCilr5T1vICYdH/0716vfI7kftADKY9D3EpLEswKEvv4B 3ORpcMSvMM2lZ/WZF48+hN4CKg5RJDcArz1Njk+SDAfQJ/cj8zgyuVRQtD1QwyujhM DvZytEy+g7c8Q== Date: Thu, 21 Apr 2022 18:17:11 +0530 From: Vinod Koul To: Linus Torvalds Cc: dma , LKML Subject: [GIT PULL]: dmaengine updates for v5.18 Message-ID: MIME-Version: 1.0 Content-Disposition: inline Precedence: bulk List-ID: X-Mailing-List: dmaengine@vger.kernel.org Hello Linus, Please pull to receive the dmanegine fixes for v5.18. This contains bunch of driver fixes. The following changes since commit 3123109284176b1532874591f7c81f3837bbdc17: Linux 5.18-rc1 (2022-04-03 14:08:21 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git tags/dmaengine-fix-5.18 for you to fetch changes up to 7495a5bbf89f68c8880757c112fd0994f5dba309: dt-bindings: dmaengine: qcom: gpi: Add minItems for interrupts (2022-04-20 18:11:20 +0530) ---------------------------------------------------------------- dmaengine fixes for v5.17 Bunch of driver fixes for: - idxd device RO checks and device cleanup - dw-edma unaligned access and alignment - qcom: missing minItems in binding - mediatek pm usage fix - imx init script ---------------------------------------------------------------- Dave Jiang (6): dmaengine: idxd: fix device cleanup on disable dmaengine: idxd: match type for retries var in idxd_enqcmds() dmaengine: idxd: fix retry value to be constant for duration of function call dmaengine: idxd: add RO check for wq max_batch_size write dmaengine: idxd: add RO check for wq max_transfer_size write dmaengine: idxd: skip clearing device context when device is read-only Herve Codina (1): dmaengine: dw-edma: Fix unaligned 64bit access Jiapeng Chong (1): dmaengine: dw-edma: Fix inconsistent indenting Kevin Groeneveld (1): dmaengine: imx-sdma: fix init of uart scripts Miaoqian Lin (1): dmaengine: imx-sdma: Fix error checking in sdma_event_remap Vinod Koul (1): dt-bindings: dmaengine: qcom: gpi: Add minItems for interrupts Xiaomeng Tong (1): dma: at_xdmac: fix a missing check on list iterator zhangqilong (1): dmaengine: mediatek:Fix PM usage reference leak of mtk_uart_apdma_alloc_chan_resources .../devicetree/bindings/dma/qcom,gpi.yaml | 1 + drivers/dma/at_xdmac.c | 12 ++++---- drivers/dma/dw-edma/dw-edma-v0-core.c | 16 +++++++---- drivers/dma/idxd/device.c | 6 ++-- drivers/dma/idxd/submit.c | 5 ++-- drivers/dma/idxd/sysfs.c | 6 ++++ drivers/dma/imx-sdma.c | 32 +++++++++++----------- drivers/dma/mediatek/mtk-uart-apdma.c | 9 ++++-- 8 files changed, 53 insertions(+), 34 deletions(-)