This is an automatically generated commit which aids following Kernel patch history, as git will see the move and copy as a rename thus defeating the purpose. For the original discussion see: https://lists.openwrt.org/pipermail/openwrt-devel/2023-October/041673.html Link: https://github.com/openwrt/openwrt/pull/22875 Signed-off-by: Linus Walleij <linusw@kernel.org>
61 lines
1.3 KiB
Diff
61 lines
1.3 KiB
Diff
From 1cf93e2435f0d7a7e8c9fd0d4355e6a521f72fc1 Mon Sep 17 00:00:00 2001
|
|
From: Linus Walleij <linusw@kernel.org>
|
|
Date: Sat, 14 Feb 2026 00:12:51 +0100
|
|
Subject: [PATCH 1/2] ARM: dts: gemini: Correct the RUT1xx
|
|
|
|
Fix two problems with the RUT1xx device tree:
|
|
- The memory is 32MB not 128MB
|
|
- The console is 19200 BPS
|
|
- Activate the PCI
|
|
- Disable the unused USB ports
|
|
|
|
Signed-off-by: Linus Walleij <linusw@kernel.org>
|
|
---
|
|
arch/arm/boot/dts/gemini/gemini-rut1xx.dts | 18 +++++++-----------
|
|
1 file changed, 7 insertions(+), 11 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/gemini/gemini-rut1xx.dts
|
|
+++ b/arch/arm/boot/dts/gemini/gemini-rut1xx.dts
|
|
@@ -14,13 +14,13 @@
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
- memory@0 { /* 128 MB */
|
|
+ memory@0 { /* 32 MB */
|
|
device_type = "memory";
|
|
- reg = <0x00000000 0x8000000>;
|
|
+ reg = <0x00000000 0x2000000>;
|
|
};
|
|
|
|
chosen {
|
|
- bootargs = "console=ttyS0,115200n8";
|
|
+ bootargs = "console=ttyS0,19200n8";
|
|
stdout-path = &uart0;
|
|
};
|
|
|
|
@@ -113,6 +113,10 @@
|
|
pinctrl-0 = <&gpio1_default_pins>;
|
|
};
|
|
|
|
+ pci@50000000 {
|
|
+ status = "okay";
|
|
+ };
|
|
+
|
|
ethernet@60000000 {
|
|
status = "okay";
|
|
|
|
@@ -124,13 +128,5 @@
|
|
/* Not used in this platform */
|
|
};
|
|
};
|
|
-
|
|
- usb@68000000 {
|
|
- status = "okay";
|
|
- };
|
|
-
|
|
- usb@69000000 {
|
|
- status = "okay";
|
|
- };
|
|
};
|
|
};
|