mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-23 07:22:33 +00:00
d3a337a592
* updated SNAND/SNFI driver brings support for MT7981 * add support for MediaTek NAND Memory bad Block Management (NMBM) (not used for any boards atm, but could be useful in future) * wire up NMBM support for MT7622, MT7629, MT7981 and MT7986 * replace some local patches with updated version from SDK * bring some legacy precompiler symbols which haven't been converted into Kconfig symbols in U-Boot 2022.07, remove when bumbping to U-Boot 2022.10: 100-28-include-configs-mt7986-h-from-SDK.patch Source: https://github.com/mtk-openwrt/u-boot Signed-off-by: Daniel Golle <daniel@makrotopia.org>
27 lines
869 B
Diff
27 lines
869 B
Diff
From 893368e64049fd770e55fffcc8758d2619dc337d Mon Sep 17 00:00:00 2001
|
|
From: Weijie Gao <weijie.gao@mediatek.com>
|
|
Date: Mon, 25 Jul 2022 16:33:13 +0800
|
|
Subject: [PATCH 11/31] arm: dts: mt7622: force high-speed mode for uart
|
|
|
|
The input clock for uart is too slow (25MHz) which introduces frequent data
|
|
error on both receiving and transmitting even if the baudrate is 115200.
|
|
|
|
Using high-speed can significantly solve this issue.
|
|
|
|
Reviewed-by: Simon Glass <sjg@chromium.org>
|
|
Signed-off-by: Weijie Gao <weijie.gao@mediatek.com>
|
|
---
|
|
arch/arm/dts/mt7622.dtsi | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/arch/arm/dts/mt7622.dtsi
|
|
+++ b/arch/arm/dts/mt7622.dtsi
|
|
@@ -175,6 +175,7 @@
|
|
status = "disabled";
|
|
assigned-clocks = <&topckgen CLK_TOP_AXI_SEL>;
|
|
assigned-clock-parents = <&topckgen CLK_TOP_SYSPLL1_D2>;
|
|
+ mediatek,force-highspeed;
|
|
};
|
|
|
|
mmc0: mmc@11230000 {
|