forked from Freescale/linux-fslc
-
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.
dmaengine: xilinx: dpdma: Add the Xilinx DisplayPort DMA engine driver
The ZynqMP DisplayPort subsystem includes a DMA engine called DPDMA with 6 DMa channels (4 for display and 2 for audio). This driver exposes the DPDMA through the dmaengine API, to be used by audio (ALSA) and display (DRM) drivers for the DisplayPort subsystem. Signed-off-by: Hyun Kwon <[email protected]> Signed-off-by: Tejas Upadhyay <[email protected]> Signed-off-by: Michal Simek <[email protected]> Signed-off-by: Laurent Pinchart <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Vinod Koul <[email protected]>
- Loading branch information
1 parent
9c8ebd8
commit 7cbb0c6
Showing
4 changed files
with
1,545 additions
and
0 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 |
---|---|---|
|
@@ -18858,6 +18858,7 @@ M: Laurent Pinchart <[email protected]> | |
L: [email protected] | ||
S: Supported | ||
F: Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml | ||
F: drivers/dma/xilinx/xilinx_dpdma.c | ||
F: include/dt-bindings/dma/xlnx-zynqmp-dpdma.h | ||
|
||
XILLYBUS DRIVER | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
# SPDX-License-Identifier: GPL-2.0-only | ||
obj-$(CONFIG_XILINX_DMA) += xilinx_dma.o | ||
obj-$(CONFIG_XILINX_ZYNQMP_DMA) += zynqmp_dma.o | ||
obj-$(CONFIG_XILINX_ZYNQMP_DPDMA) += xilinx_dpdma.o |
Oops, something went wrong.