-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
rockchip/64: improvements to pl330 dma driver
- Loading branch information
1 parent
9ce005f
commit 49714eb
Showing
25 changed files
with
3,145 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
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
25 changes: 25 additions & 0 deletions
25
patch/kernel/archive/rockchip-6.12/patches.armbian/general-increase-spdif-dma-burst.patch
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
From 379651eb82cf5966a40a5b931afc2fa91c6a311d Mon Sep 17 00:00:00 2001 | ||
From: Paolo Sabatino <[email protected]> | ||
Date: Sun, 12 Jan 2025 12:39:03 +0100 | ||
Subject: [PATCH 2/2] rockchip: increase SPDIF max burst value to maximum | ||
|
||
--- | ||
sound/soc/rockchip/rockchip_spdif.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/sound/soc/rockchip/rockchip_spdif.c b/sound/soc/rockchip/rockchip_spdif.c | ||
index d87c0e4f6f91..7a2cfecf6a94 100644 | ||
--- a/sound/soc/rockchip/rockchip_spdif.c | ||
+++ b/sound/soc/rockchip/rockchip_spdif.c | ||
@@ -329,7 +329,7 @@ static int rk_spdif_probe(struct platform_device *pdev) | ||
|
||
spdif->playback_dma_data.addr = res->start + SPDIF_SMPDR; | ||
spdif->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; | ||
- spdif->playback_dma_data.maxburst = 4; | ||
+ spdif->playback_dma_data.maxburst = 8; | ||
|
||
spdif->dev = &pdev->dev; | ||
dev_set_drvdata(&pdev->dev, spdif); | ||
-- | ||
2.43.0 | ||
|
Oops, something went wrong.