mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
b11b5afa6a
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>
27 lines
428 B
Text
27 lines
428 B
Text
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
|
|
#include "imx8mq-u-boot.dtsi"
|
|
|
|
&usdhc1 {
|
|
mmc-hs400-1_8v;
|
|
};
|
|
|
|
&usdhc2 {
|
|
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;
|
|
};
|