ODROID-M1S: dtb/dtbo: Add uart5, uart7, uart9 overlays

Signed-off-by: Steve Jeong <steve@how2flow.net>
Change-Id: Ide44b337ddf5c351f1397c1338acb37a89fdc1b4
This commit is contained in:
Steve Jeong
2023-11-28 18:30:42 +09:00
committed by codewalkerster
parent e47c1965bc
commit 2a8f739ddf
4 changed files with 45 additions and 0 deletions

View File

@@ -31,6 +31,9 @@ dtbo-$(CONFIG_ARCH_ROCKCHIP_ODROIDM1) += \
uart0-with-ctsrts.dtbo \
uart0.dtbo \
uart1.dtbo \
uart5.dtbo \
uart7.dtbo \
uart9.dtbo \
weather_board_zero.dtbo
targets += $(dtbo-y)

View File

@@ -0,0 +1,14 @@
/dts-v1/;
/plugin/;
/ {
fragment@0 {
target = <&uart5>;
__overlay__ {
status = "okay";
dma-names = "tx", "rx";
};
};
};

View File

@@ -0,0 +1,14 @@
/dts-v1/;
/plugin/;
/ {
fragment@0 {
target = <&uart7>;
__overlay__ {
status = "okay";
dma-names = "tx", "rx";
};
};
};

View File

@@ -0,0 +1,14 @@
/dts-v1/;
/plugin/;
/ {
fragment@0 {
target = <&uart9>;
__overlay__ {
status = "okay";
dma-names = "tx", "rx";
};
};
};