Skip to content

Commit

Permalink
dts: Enable NO_WAIT_RESP for hdmi audio dma
Browse files Browse the repository at this point in the history
Without this set, DVP_CFG_MAI0_CTL indicates occasional
DLATE errors when configured to 8 channel 192kHz

Signed-off-by: Dom Cobley <[email protected]>
  • Loading branch information
popcornmix authored and pelwell committed Jul 10, 2020
1 parent 74bb333 commit 3c860a6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/bcm2711-rpi.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
clock-names = "hdmi";
resets = <&dvp 0>;
ddc = <&ddc0>;
dmas = <&dma 10>;
dmas = <&dma (10|(1<<27))>;
dma-names = "audio-rx";
interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
status = "disabled";
Expand Down Expand Up @@ -114,7 +114,7 @@
clocks = <&firmware_clocks 13>;
clock-names = "hdmi";
resets = <&dvp 1>;
dmas = <&dma 17>;
dmas = <&dma (17|(1<<27))>;
dma-names = "audio-rx";
interrupts = <GIC_SPI 96 IRQ_TYPE_LEVEL_HIGH>;
status = "disabled";
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/boot/dts/bcm2835-common.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
clocks = <&clocks BCM2835_PLLH_PIX>,
<&clocks BCM2835_CLOCK_HSM>;
clock-names = "pixel", "hdmi";
dmas = <&dma 17>;
dmas = <&dma (17|(1<<27))>;
dma-names = "audio-rx";
status = "disabled";
};
Expand Down

0 comments on commit 3c860a6

Please sign in to comment.