forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'dmaengine-fix-5.11' of git://git.kernel.org/pub/scm/linux/…
…kernel/git/vkoul/dmaengine Pull dmaengine fixes from Vinod Koul: "A bunch of dmaengine driver fixes for: - coverity discovered issues for xilinx driver - qcom, gpi driver fix for undefined bhaviour and one off cleanup - update Peter's email for TI DMA drivers - one-off for idxd driver - resource leak fix for mediatek and milbeaut drivers" * tag 'dmaengine-fix-5.11' of git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine: dmaengine: stm32-mdma: fix STM32_MDMA_VERY_HIGH_PRIORITY value dmaengine: xilinx_dma: fix mixed_enum_type coverity warning dmaengine: xilinx_dma: fix incompatible param warning in _child_probe() dmaengine: xilinx_dma: check dma_async_device_register return value dmaengine: qcom: fix gpi undefined behavior dt-bindings: dma: ti: Update maintainer and author information MAINTAINERS: Add entry for Texas Instruments DMA drivers qcom: bam_dma: Delete useless kfree code dmaengine: dw-edma: Fix use after free in dw_edma_alloc_chunk() dmaengine: milbeaut-xdmac: Fix a resource leak in the error handling path of the probe function dmaengine: mediatek: mtk-hsdma: Fix a resource leak in the error handling path of the probe function dmaengine: qcom: gpi: Fixes a format mismatch dmaengine: idxd: off by one in cleanup code dmaengine: ti: k3-udma: Fix pktdma rchan TPL level setup
- Loading branch information
Showing
13 changed files
with
48 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
# Copyright (C) 2020 Texas Instruments Incorporated | ||
# Author: Peter Ujfalusi <[email protected]> | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/dma/ti/k3-bcdma.yaml# | ||
|
@@ -7,7 +9,7 @@ $schema: http://devicetree.org/meta-schemas/core.yaml# | |
title: Texas Instruments K3 DMSS BCDMA Device Tree Bindings | ||
|
||
maintainers: | ||
- Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
- Peter Ujfalusi <peter.ujfalusi@gmail.com> | ||
|
||
description: | | ||
The Block Copy DMA (BCDMA) is intended to perform similar functions as the TR | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
# Copyright (C) 2020 Texas Instruments Incorporated | ||
# Author: Peter Ujfalusi <[email protected]> | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/dma/ti/k3-pktdma.yaml# | ||
|
@@ -7,7 +9,7 @@ $schema: http://devicetree.org/meta-schemas/core.yaml# | |
title: Texas Instruments K3 DMSS PKTDMA Device Tree Bindings | ||
|
||
maintainers: | ||
- Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
- Peter Ujfalusi <peter.ujfalusi@gmail.com> | ||
|
||
description: | | ||
The Packet DMA (PKTDMA) is intended to perform similar functions as the packet | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) | ||
# Copyright (C) 2019 Texas Instruments Incorporated | ||
# Author: Peter Ujfalusi <[email protected]> | ||
%YAML 1.2 | ||
--- | ||
$id: http://devicetree.org/schemas/dma/ti/k3-udma.yaml# | ||
|
@@ -7,7 +9,7 @@ $schema: http://devicetree.org/meta-schemas/core.yaml# | |
title: Texas Instruments K3 NAVSS Unified DMA Device Tree Bindings | ||
|
||
maintainers: | ||
- Peter Ujfalusi <peter.ujfalusi@ti.com> | ||
- Peter Ujfalusi <peter.ujfalusi@gmail.com> | ||
|
||
description: | | ||
The UDMA-P is intended to perform similar (but significantly upgraded) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17552,6 +17552,19 @@ S: Supported | |
F: Documentation/devicetree/bindings/iio/dac/ti,dac7612.txt | ||
F: drivers/iio/dac/ti-dac7612.c | ||
|
||
TEXAS INSTRUMENTS DMA DRIVERS | ||
M: Peter Ujfalusi <[email protected]> | ||
L: [email protected] | ||
S: Maintained | ||
F: Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt | ||
F: Documentation/devicetree/bindings/dma/ti-edma.txt | ||
F: Documentation/devicetree/bindings/dma/ti/ | ||
F: drivers/dma/ti/ | ||
X: drivers/dma/ti/cppi41.c | ||
F: include/linux/dma/k3-udma-glue.h | ||
F: include/linux/dma/ti-cppi5.h | ||
F: include/linux/dma/k3-psil.h | ||
|
||
TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER | ||
M: Nishanth Menon <[email protected]> | ||
M: Tero Kristo <[email protected]> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters