mirror of
https://github.com/coolsnowwolf/lede.git
synced 2025-04-16 04:13:31 +00:00

* kernel: bump 5.10 to 5.10.143 All patches automatically rebased. Signed-off-by: John Audia <therealgraysky@proton.me> * kernel: refresh 5.10 patches All patches automatically rebased. Signed-off-by: Linhui Liu <liulinhui36@gmail.com> Signed-off-by: John Audia <therealgraysky@proton.me> Signed-off-by: Linhui Liu <liulinhui36@gmail.com> Co-authored-by: John Audia <therealgraysky@proton.me>
27 lines
755 B
Diff
27 lines
755 B
Diff
From: David Bauer <mail@david-bauer.net>
|
|
Subject: arm64: dts: rockchip: disable UHS modes for NanoPi R4S
|
|
|
|
The NanoPi R4S leaves the SD card in 1.8V signalling when rebooting
|
|
while U-Boot requires the card to be in 3.3V mode.
|
|
|
|
Remove UHS support from the SD controller so the card remains in 3.3V
|
|
mode. This reduces transfer speeds but ensures a reboot whether from
|
|
userspace or following a kernel panic is always working.
|
|
|
|
Signed-off-by: David Bauer <mail@david-bauer.net>
|
|
|
|
--- a/arch/arm64/boot/dts/rockchip/rk3399-nanopi-r4s.dts
|
|
+++ b/arch/arm64/boot/dts/rockchip/rk3399-nanopi-r4s.dts
|
|
@@ -145,6 +145,11 @@
|
|
status = "disabled";
|
|
};
|
|
|
|
+&sdmmc {
|
|
+ /delete-property/ sd-uhs-sdr104;
|
|
+ cap-sd-highspeed;
|
|
+};
|
|
+
|
|
&u2phy0_host {
|
|
phy-supply = <&vdd_5v>;
|
|
};
|