]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
ARM: dts: gemini: Correct the RUT1xx
authorLinus Walleij <linusw@kernel.org>
Sat, 28 Feb 2026 00:05:48 +0000 (01:05 +0100)
committerLinus Walleij <linusw@kernel.org>
Thu, 28 May 2026 08:38:45 +0000 (10:38 +0200)
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

index 0ebda4efd9d0fb366c7096c3467965b5cb6b14ee..4bdf86bd7c233a6bdbe0a0785e8e7852fb31c6cc 100644 (file)
        #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;
        };
 
                        pinctrl-0 = <&gpio1_default_pins>;
                };
 
+               pci@50000000 {
+                       status = "okay";
+               };
+
                ethernet@60000000 {
                        status = "okay";
 
                                /* Not used in this platform */
                        };
                };
-
-               usb@68000000 {
-                       status = "okay";
-               };
-
-               usb@69000000 {
-                       status = "okay";
-               };
        };
 };