diff options
Diffstat (limited to 'target/linux/bcm27xx/patches-5.10/950-0432-bcm2711-rpi.dtsi-Bump-hdmi-audio-dma-panic-priority-.patch')
-rw-r--r-- | target/linux/bcm27xx/patches-5.10/950-0432-bcm2711-rpi.dtsi-Bump-hdmi-audio-dma-panic-priority-.patch | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/target/linux/bcm27xx/patches-5.10/950-0432-bcm2711-rpi.dtsi-Bump-hdmi-audio-dma-panic-priority-.patch b/target/linux/bcm27xx/patches-5.10/950-0432-bcm2711-rpi.dtsi-Bump-hdmi-audio-dma-panic-priority-.patch new file mode 100644 index 0000000000..e838df50c6 --- /dev/null +++ b/target/linux/bcm27xx/patches-5.10/950-0432-bcm2711-rpi.dtsi-Bump-hdmi-audio-dma-panic-priority-.patch @@ -0,0 +1,33 @@ +From c6faef087c0a9a5f89dd29e1a557cb3dfc4b993b Mon Sep 17 00:00:00 2001 +From: Dom Cobley <popcornmix@gmail.com> +Date: Wed, 6 Jan 2021 18:16:29 +0000 +Subject: [PATCH] bcm2711-rpi.dtsi: Bump hdmi audio dma panic priority + to max + +Set panic priority to 15 and leave normal priority at 0 + +Signed-off-by: Dom Cobley <popcornmix@gmail.com> +--- + arch/arm/boot/dts/bcm2711-rpi.dtsi | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +--- a/arch/arm/boot/dts/bcm2711-rpi.dtsi ++++ b/arch/arm/boot/dts/bcm2711-rpi.dtsi +@@ -179,7 +179,7 @@ + }; + + &hdmi0 { +- dmas = <&dma (10|(1<<27)|(1<<24))>; ++ dmas = <&dma (10|(1<<27)|(1<<24)|(0<<16)|(15<<20))>; + status = "disabled"; + }; + +@@ -188,7 +188,7 @@ + }; + + &hdmi1 { +- dmas = <&dma (17|(1<<27)|(1<<24))>; ++ dmas = <&dma (17|(1<<27)|(1<<24)|(0<<16)|(15<<20))>; + status = "disabled"; + }; + |