aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeiko Thiery <heiko.thiery@gmail.com>2022-06-11 08:09:04 +0200
committerTom Rini <trini@konsulko.com>2022-06-16 15:22:55 -0400
commitb11b5afa6a17a2aedf174d4d4ee5d70b04e245c6 (patch)
treedf8af0672ff57ef883679b9f19668fbcd7dc84c7
parent81755b8c20fe8ab7e10bd3a15fd48d37426ee45d (diff)
downloadu-boot-b11b5afa6a17a2aedf174d4d4ee5d70b04e245c6.zip
u-boot-b11b5afa6a17a2aedf174d4d4ee5d70b04e245c6.tar.gz
u-boot-b11b5afa6a17a2aedf174d4d4ee5d70b04e245c6.tar.bz2
arm64: dts: imx8mq-kontron-pitx-imx8m-u-boot.dtsi: disable assigned clocks
With the move to use DM_CLK the boards uart stops working. The used properties are not supported by the imx8mq clock driver. Thus the correct baudrate cannot be selected. Remove this properties here and the board can start with working uart. Keep it in the main dts because linux handles these porperties fine. Signed-off-by: Heiko Thiery <heiko.thiery@gmail.com>
-rw-r--r--arch/arm/dts/imx8mq-kontron-pitx-imx8m-u-boot.dtsi15
1 files changed, 15 insertions, 0 deletions
diff --git a/arch/arm/dts/imx8mq-kontron-pitx-imx8m-u-boot.dtsi b/arch/arm/dts/imx8mq-kontron-pitx-imx8m-u-boot.dtsi
index 6f9c814..d361f3f 100644
--- a/arch/arm/dts/imx8mq-kontron-pitx-imx8m-u-boot.dtsi
+++ b/arch/arm/dts/imx8mq-kontron-pitx-imx8m-u-boot.dtsi
@@ -10,3 +10,18 @@
sd-uhs-sdr104;
sd-uhs-ddr50;
};
+
+&uart1 {
+ /delete-property/ assigned-clocks;
+ /delete-property/ assigned-clock-parents;
+};
+
+&uart2 {
+ /delete-property/ assigned-clocks;
+ /delete-property/ assigned-clock-parents;
+};
+
+&uart3 {
+ /delete-property/ assigned-clocks;
+ /delete-property/ assigned-clock-parents;
+};