Skip to content

Commit

Permalink
fix: RX also uses DMA mode
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeChenL committed Sep 5, 2024
1 parent 3126af9 commit 0f8e663
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion arch/arm64/boot/dts/rockchip/overlays/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ dtb-$(CONFIG_CPU_RK3588) += \
rock-5t-radxa-display-10hd.dtbo

dtb-$(CONFIG_ARCH_ROCKCHIP) += rockchip-watchdog.dtbo \
rockchip-uart-tx-dma.dtbo
rockchip-uart-dma.dtbo

dtbotxt-$(CONFIG_ARCH_ROCKCHIP) += \
README.overlays
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,41 +11,41 @@
};

&uart0 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart1 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart2 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart3 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart4 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart5 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart6 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart7 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart8 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

&uart9 {
dma-names = "tx", "!rx";
dma-names = "tx", "rx";
};

0 comments on commit 0f8e663

Please sign in to comment.