ZyXEL GS1900-48HP
The GS1900-48HP is a 48-port Gigabit managed PoE switch with 2 SFP slots and a 170W PoE power budget (ports 1-24).
Supported Versions
Hardware Highlights
| Feature | Details |
|---|---|
| SoC | Realtek RTL8393M (MIPS 34Kc, 750 MHz, 2 cores) |
| RAM | 128 MB DDR3 (SK hynix H5TQ1G63EFR) |
| Flash | 16 MB SPI NOR (Macronix MX25L12805D) |
| Ethernet | 48x 1GbE RJ45 (6x RTL8218B PHY) |
| SFP | 2x 1GbE SFP (SGMII, SerDes 12/13) |
| PoE | 170W budget, ports 1-24 (IEEE 802.3af/at) |
| PoE hardware | STM32F100 controller, 6x Broadcom BCM59111 PSE |
| LEDs | 1x system, 50x port (LED scan matrix via RTL8231) |
| Serial | RS232 via header J4 (IDC10), 115200 8N1 |
| GPIO expanders | 2x RTL8231 on MDIO aux bus |
Installation
Backup original configuration
Before installing OpenWrt, it is highly recommended to back up the original flash partitions, especially the device MAC addresses and U-Boot environment. If you already installed OpenWrt without backing up, you can still back up the partitions from within OpenWrt using SSH.
Connect via SSH and run:
cat /dev/mtd0 > /tmp/mtd0_u-boot.bin cat /dev/mtd1 > /tmp/mtd1_u-boot-env.bin cat /dev/mtd2 > /tmp/mtd2_u-boot-env2.bin
Then use SCP to copy the files to your computer:
scp root@192.168.1.1:/tmp/mtd* .
Flash Layout
The GS1900-48HP uses 16 MB SPI NOR flash (Macronix MX25L12805D) with the following partition layout:
| Partition | MTD | Start | End | Size | Description |
|---|---|---|---|---|---|
| u-boot | mtd0 | 0x000000 | 0x040000 | 256 KB | Bootloader (v2.0.0.59413) |
| u-boot-env | mtd1 | 0x040000 | 0x050000 | 64 KB | U-Boot environment variables |
| u-boot-env2 | mtd2 | 0x050000 | 0x060000 | 64 KB | Zyxel product info (MAC addresses, bootpartition, firmware names) |
| jffs | mtd3 | 0x060000 | 0x160000 | 1 MB | OEM config (JFFS2) |
| jffs2 | mtd4 | 0x160000 | 0x260000 | 1 MB | OEM logs (JFFS2) |
| firmware | mtd5 | 0x260000 | 0x1000000 | 13.6 MB | Active firmware image |
The firmware partition is split automatically by OpenWrt:
| Partition | MTD | Offset in firmware | Size |
|---|---|---|---|
| kernel | mtd6 | 0x000000 | ~2.9 MB |
| rootfs | mtd7 | 0x2f0000 | ~10.7 MB |
| rootfs_data | mtd8 | 0x660000 | ~7.6 MB |
OEM dual-image layout: The original Zyxel firmware uses a dual-image scheme. The u-boot-env2 partition stores a bootpartition variable (0 or 1) that determines which image is booted. OEM firmware image headers were found at offsets 0x260000 and 0x930000 in flash. OpenWrt uses the firmware partition starting at 0x260000.
OEM easy installation
This section describes the installation from the original Zyxel firmware.
Two step flashing
Note: Reset the switch to factory defaults if it has been previously configured.
- Log in to the OEM management web interface at
http://192.168.1.1 - Navigate to Maintenance > Firmware > Management
- If “Active Image” is set to the first option, OpenWrt must be flashed to the “Active” partition. If the second option is selected, OpenWrt must be flashed to the “Backup” partition.
- Rename the initramfs image to
openwrt-kernel.bin:mv openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-initramfs-kernel.bin openwrt-kernel.bin
- Navigate to Maintenance > Firmware > Upload
- Upload the
openwrt-kernel.binfile to the determined partition. Select to boot from the newly flashed image when prompted and reboot the switch. - After OpenWrt boots, transfer the sysupgrade image to the device and flash it:
scp -O openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-squashfs-sysupgrade.bin root@192.168.1.1:/tmp/ ssh root@192.168.1.1 sysupgrade -n /tmp/openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-squashfs-sysupgrade.bin
Recovery from flashing the wrong partition
The switch may reset itself continuously if it boots from the wrong partition. This can be fixed via the serial console:
- Run
fw_printsysto verify access. - Set the boot partition variable to 0:
fw_setsys bootpartition 0
- Reboot the device.
LuCI Web Upgrade Process
- Browse to
http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/ - Upload the sysupgrade image
- Wait for reboot
TFTP installation via serial console
This method requires a serial console connection and a TFTP server.
Requirements
- RS232 serial adapter (USB-to-RS232) connected to header J4 (UART0/ttyS0)
- Terminal program (e.g.
screen,minicom,putty) at 115200 8N1 - TFTP server running on your PC
- Ethernet cable between your PC and any switch port
- The initramfs image (
openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-initramfs-kernel.bin)
Procedure
- Configure your PC with IP 192.168.1.10 (or any IP in the 192.168.1.0/24 subnet, except 192.168.1.1)
- Copy the initramfs image to your TFTP server directory
- Connect serial console and power on the switch
- Quickly press SPACE when you see
Press SPACE to abort boot scriptto interrupt u-boot. The boot delay is very short (bootdelay=0), so you need to be fast. - Enable networking and boot via TFTP:
RTL839x# rtk network on RTL839x# tftpboot 0x84f00000 192.168.1.10:openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-initramfs-kernel.bin RTL839x# bootm 0x84f00000
- Once OpenWrt has booted from RAM, flash the sysupgrade image:
scp -O openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-squashfs-sysupgrade.bin root@192.168.1.1:/tmp/ ssh root@192.168.1.1 sysupgrade -n /tmp/openwrt-realtek-rtl839x-zyxel_gs1900-48hp-a1-squashfs-sysupgrade.bin
Note: Use scp -O (legacy SCP protocol) since openssh-sftp-server is not installed in the initramfs image.
The default u-boot network configuration uses:
- Switch IP:
192.168.1.1 - Server IP:
192.168.1.111 - Netmask:
255.255.255.0
You can override the server IP on the tftpboot command line as shown above.
Debricking
Failsafe mode
Basic configuration
Specific Configuration
Network interfaces
The default network configuration puts all 50 ports (lan1-lan48, lan49/lan50 SFP) into a single bridge br-lan with IP 192.168.1.1/24.
| Interface Name | Description | Default configuration |
|---|---|---|
| br-lan | All ports bridged | 192.168.1.1/24 |
| lan1 - lan48 | RJ45 copper ports | Bridge member |
| lan49, lan50 | SFP slots | Bridge member |
Buttons
→ hardware.button on howto use and configure the hardware button(s).
| BUTTON | Event |
|---|---|
| CPU Reset | reset |
| Soft Reset | user |
LEDs
Port LEDs are registered in sysfs but are not enabled by default. There is no hardware LED offloading. The LEDs are driven via a scan matrix on the RTL8231 expander. Users must manually configure them, for example via the netdev trigger:
# Enable LED for a single port (e.g. lan1) echo netdev > /sys/class/leds/green:lan-1/trigger echo lan1 > /sys/class/leds/green:lan-1/device_name echo 1 > /sys/class/leds/green:lan-1/link
PoE
The GS1900-48HP has a 170W PoE budget providing IEEE 802.3af/at power on ports 1-24 only. Ports 25-48 are data-only.
Note: PoE support requires the realtek-poe package with an additional PSE ID quirk for the GS1900-48HP. The required pull request (Hurricos/realtek-poe#68) is not yet merged upstream. Until it is merged, you need to build the package manually.
PoE configuration
The PoE configuration is in /etc/config/poe. The 02_network board script automatically configures the budget (170W) and the PoE-capable ports (lan1-lan24) on first boot.
Example /etc/config/poe configuration:
config global option budget '170' config port option enable '1' option id '1' option name 'lan1' option poe_plus '1' option priority '2' config port option enable '1' option id '2' option name 'lan2' option poe_plus '1' option priority '2'
Repeat config port sections for ports 3-24. Ports 25-48 do not support PoE.
PoE ubus commands
# Show PoE status ubus call poe info # Show detailed debug info (power budget, per-port consumption) ubus call poe debug # Reload configuration after editing /etc/config/poe ubus call poe reload
Hardware
Info
Serial
| Serial connection parameters | Value |
|---|---|
| Voltage | RS232 |
| Baud rate | 115200 |
| Data bits | 8 |
| Parity | None |
| Stop bits | 1 |
| Flow control | None |
The serial port is directly RS232 level (via onboard Sipex 3232EC level converter). Use a standard USB-to-RS232 adapter, not a 3.3V TTL adapter.
The connector is header J4 (IDC10 pinout):
| Pin | Function |
|---|---|
| J4.2 | RX |
| J4.3 | TX |
| J4.5 | GND |
The device has two UARTs:
- UART0 (ttyS0): Main console, active at boot (exposed on J4)
- UART1 (ttyS1): Connected to the PoE MCU (used by
realtek-poe)
Opening the case
After removing the screws, the top cover slides off. The main PCB is accessible without further disassembly.
A system reset switch (SW1) is reachable through a vent hole on the side of the case without opening it.
Photos
Board photos are available at svanheule.net.
Notes
- This device is based on the RTL8393M SoC (rtl839x target), unlike the smaller GS1900 models (e.g. GS1900-10HP, GS1900-24EP) which use RTL838x.
- SFP ports (lan49/lan50) may show
pcs_config failed: -ENOTSUPPin the kernel log. This is a known limitation of therealtek-otto-pcsdriver for SGMII on SerDes 12/13. - The two RTL8231 GPIO expanders are on the MDIO aux bus. Expander@3 provides GPIOs (reset lines, buttons). Expander@0 drives the port LED matrix.
- Expander@0 uses a deferred probe during boot (depends on GPIO from expander@3 for its reset line). This is normal and resolves automatically.
Boot log
U-Boot output
U-Boot Version: 2.0.0.59413 (Jul 08 2015 - 10:04:07) CPU: 750MHz DRAM: 128 MB FLASH: 16 MB Model: ZyXEL_GS1900_48HP SN: <SN> MAC: <MAC START> - <MAC END> Press SPACE to abort boot script: 0 RTL839x#
Kernel boot log
Boot log after sysupgrade installation (OpenWrt SNAPSHOT, kernel 6.12.79):
[ 0.000000] Linux version 6.12.79 (builder@buildhost) (mips-openwrt-linux-musl-gcc (OpenWrt GCC 14.3.0 r33658+3-457775f875) 14.3.0, GNU ld (GNU Binutils) 2.44) #0 SMP Tue Apr 7 16:55:29 2026 [ 0.000000] Realtek RTL8393M rev B (6290) SoC with 128 MB [ 0.000000] printk: legacy bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 00019555 (MIPS 34Kc) [ 0.000000] MIPS: machine is Zyxel GS1900-48HP A1 [ 0.000000] earlycon: ns16550a0 at MMIO 0x18002000 (options '115200n8') [ 0.000000] printk: legacy bootconsole [ns16550a0] enabled [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Using appended Device Tree. [ 0.000000] OF: reserved mem: Reserved memory: No reserved-memory node in the DT [ 0.000000] Detected 1 available secondary CPU(s) [ 0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000007ffffff] [ 0.000000] percpu: Embedded 12 pages/cpu s18512 r8192 d22448 u49152 [ 0.000000] pcpu-alloc: s18512 r8192 d22448 u49152 alloc=12*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Kernel command line: earlycon [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] Writing ErrCtl register=000659f0 [ 0.000000] Readback ErrCtl register=000659f0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32768 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2. [ 0.000000] NR_IRQS: 256 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] rtl83xx-clk: initialized, CPU 750 MHz, MEM 400 MHz (16 Bit DDR3), LXB 200 MHz [ 0.000000] clocksource: realtek_otto_timer: mask: 0xfffffff max_cycles: 0xfffffff, max_idle_ns: 38225208801 ns [ 0.000002] sched_clock: 28 bits at 3125kHz, resolution 320ns, wraps every 42949672800ns [ 0.009329] Calibrating delay loop... 498.89 BogoMIPS (lpj=2494464) [ 0.075923] pid_max: default: 32768 minimum: 301 [ 0.093015] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.101176] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.123340] rcu: Hierarchical SRCU implementation. [ 0.128662] rcu: Max phase no-delay instances is 1000. [ 0.136813] smp: Bringing up secondary CPUs ... [ 0.143542] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.143597] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.143694] CPU1 revision is: 00019555 (MIPS 34Kc) [ 0.219002] Counter synchronization [CPU#0 -> CPU#1]: passed [ 0.246705] smp: Brought up 1 node, 2 CPUs [ 0.252735] Memory: 117300K/131072K available (7944K kernel code, 683K rwdata, 1068K rodata, 1304K init, 230K bss, 12732K reserved, 0K cma-reserved) [ 0.280491] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.291496] futex hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.306111] pinctrl core: initialized pinctrl subsystem [ 0.315324] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.322723] thermal_sys: Registered thermal governor 'step_wise' [ 0.350219] rtl83xx-clk clock-controller: rate setting enabled, CPU 400-850 MHz, MEM 400-400 MHz, LXB 200-200 MHz, OVERCLOCK AT OWN RISK [ 0.371160] i2c-gpio i2c-gpio-0: using DT '/i2c-gpio-0' for 'sda' GPIO lookup [ 0.379220] i2c-gpio i2c-gpio-0: No GPIO consumer sda found [ 0.385467] i2c-gpio i2c-gpio-0: using DT '/i2c-gpio-0' for '(default)' GPIO lookup [ 0.394036] of_get_named_gpiod_flags: can't parse 'gpios' property of node '/i2c-gpio-0[0]' [ 0.403359] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/i2c-gpio-0[0]' [ 0.412591] i2c-gpio i2c-gpio-0: using lookup tables for GPIO lookup [ 0.419679] i2c-gpio i2c-gpio-0: No GPIO consumer (default) found [ 0.426553] i2c-gpio i2c-gpio-1: using DT '/i2c-gpio-1' for 'sda' GPIO lookup [ 0.434616] i2c-gpio i2c-gpio-1: No GPIO consumer sda found [ 0.440893] i2c-gpio i2c-gpio-1: using DT '/i2c-gpio-1' for '(default)' GPIO lookup [ 0.449444] of_get_named_gpiod_flags: can't parse 'gpios' property of node '/i2c-gpio-1[0]' [ 0.458715] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/i2c-gpio-1[0]' [ 0.467924] i2c-gpio i2c-gpio-1: using lookup tables for GPIO lookup [ 0.475031] i2c-gpio i2c-gpio-1: No GPIO consumer (default) found [ 0.485394] clocksource: Switched to clocksource realtek_otto_timer [ 0.505210] NET: Registered PF_INET protocol family [ 0.511083] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.521085] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.530440] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.539103] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.547676] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.555712] TCP: Hash tables configured (established 1024 bind 1024) [ 0.563545] MPTCP token hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.572097] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.579435] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.588567] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.599197] workingset: timestamp_bits=14 max_order=15 bucket_order=1 [ 0.609040] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.615603] jffs2: version 2.2 (NAND) (SUMMARY) (ZLIB) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.633313] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252) [ 0.643248] pinctrl-single 1b000004.pinmux: allocating 32 pins [ 0.649863] pinctrl-single 1b000004.pinmux: try to register 32 pins ... [ 0.657261] pinctrl core: registered pin 0 (PIN0) on pinctrl-single [ 0.664216] pinctrl core: registered pin 1 (PIN1) on pinctrl-single [ 0.671211] pinctrl core: registered pin 2 (PIN2) on pinctrl-single [ 0.678224] pinctrl core: registered pin 3 (PIN3) on pinctrl-single [ 0.685174] pinctrl core: registered pin 4 (PIN4) on pinctrl-single [ 0.692152] pinctrl core: registered pin 5 (PIN5) on pinctrl-single [ 0.699166] pinctrl core: registered pin 6 (PIN6) on pinctrl-single [ 0.706168] pinctrl core: registered pin 7 (PIN7) on pinctrl-single [ 0.713122] pinctrl core: registered pin 8 (PIN8) on pinctrl-single [ 0.720116] pinctrl core: registered pin 9 (PIN9) on pinctrl-single [ 0.727125] pinctrl core: registered pin 10 (PIN10) on pinctrl-single [ 0.734268] pinctrl core: registered pin 11 (PIN11) on pinctrl-single [ 0.741465] pinctrl core: registered pin 12 (PIN12) on pinctrl-single [ 0.748713] pinctrl core: registered pin 13 (PIN13) on pinctrl-single [ 0.755925] pinctrl core: registered pin 14 (PIN14) on pinctrl-single [ 0.763070] pinctrl core: registered pin 15 (PIN15) on pinctrl-single [ 0.770240] pinctrl core: registered pin 16 (PIN16) on pinctrl-single [ 0.777430] pinctrl core: registered pin 17 (PIN17) on pinctrl-single [ 0.784574] pinctrl core: registered pin 18 (PIN18) on pinctrl-single [ 0.791757] pinctrl core: registered pin 19 (PIN19) on pinctrl-single [ 0.798964] pinctrl core: registered pin 20 (PIN20) on pinctrl-single [ 0.806158] pinctrl core: registered pin 21 (PIN21) on pinctrl-single [ 0.813297] pinctrl core: registered pin 22 (PIN22) on pinctrl-single [ 0.820485] pinctrl core: registered pin 23 (PIN23) on pinctrl-single [ 0.827669] pinctrl core: registered pin 24 (PIN24) on pinctrl-single [ 0.834809] pinctrl core: registered pin 25 (PIN25) on pinctrl-single [ 0.841984] pinctrl core: registered pin 26 (PIN26) on pinctrl-single [ 0.849197] pinctrl core: registered pin 27 (PIN27) on pinctrl-single [ 0.856406] pinctrl core: registered pin 28 (PIN28) on pinctrl-single [ 0.863606] pinctrl core: registered pin 29 (PIN29) on pinctrl-single [ 0.870821] pinctrl core: registered pin 30 (PIN30) on pinctrl-single [ 0.878028] pinctrl core: registered pin 31 (PIN31) on pinctrl-single [ 0.885183] pinctrl-single 1b000004.pinmux: 32 pins, size 4 [ 0.891403] pinctrl-single 1b000004.pinmux: no hogs found [ 0.898048] pinctrl-single 1b0000e4.pinmux: allocating 32 pins [ 0.904590] pinctrl-single 1b0000e4.pinmux: try to register 32 pins ... [ 0.912048] pinctrl core: registered pin 0 (PIN0) on pinctrl-single [ 0.919067] pinctrl core: registered pin 1 (PIN1) on pinctrl-single [ 0.926066] pinctrl core: registered pin 2 (PIN2) on pinctrl-single [ 0.933014] pinctrl core: registered pin 3 (PIN3) on pinctrl-single [ 0.940006] pinctrl core: registered pin 4 (PIN4) on pinctrl-single [ 0.947002] pinctrl core: registered pin 5 (PIN5) on pinctrl-single [ 0.953950] pinctrl core: registered pin 6 (PIN6) on pinctrl-single [ 0.960944] pinctrl core: registered pin 7 (PIN7) on pinctrl-single [ 0.967965] pinctrl core: registered pin 8 (PIN8) on pinctrl-single [ 0.974969] pinctrl core: registered pin 9 (PIN9) on pinctrl-single [ 0.981979] pinctrl core: registered pin 10 (PIN10) on pinctrl-single [ 0.989164] pinctrl core: registered pin 11 (PIN11) on pinctrl-single [ 0.996366] pinctrl core: registered pin 12 (PIN12) on pinctrl-single [ 1.003506] pinctrl core: registered pin 13 (PIN13) on pinctrl-single [ 1.010677] pinctrl core: registered pin 14 (PIN14) on pinctrl-single [ 1.017865] pinctrl core: registered pin 15 (PIN15) on pinctrl-single [ 1.025010] pinctrl core: registered pin 16 (PIN16) on pinctrl-single [ 1.032203] pinctrl core: registered pin 17 (PIN17) on pinctrl-single [ 1.039409] pinctrl core: registered pin 18 (PIN18) on pinctrl-single [ 1.046594] pinctrl core: registered pin 19 (PIN19) on pinctrl-single [ 1.053734] pinctrl core: registered pin 20 (PIN20) on pinctrl-single [ 1.060920] pinctrl core: registered pin 21 (PIN21) on pinctrl-single [ 1.068116] pinctrl core: registered pin 22 (PIN22) on pinctrl-single [ 1.075318] pinctrl core: registered pin 23 (PIN23) on pinctrl-single [ 1.082502] pinctrl core: registered pin 24 (PIN24) on pinctrl-single [ 1.089768] pinctrl core: registered pin 25 (PIN25) on pinctrl-single [ 1.096979] pinctrl core: registered pin 26 (PIN26) on pinctrl-single [ 1.104118] pinctrl core: registered pin 27 (PIN27) on pinctrl-single [ 1.111288] pinctrl core: registered pin 28 (PIN28) on pinctrl-single [ 1.118490] pinctrl core: registered pin 29 (PIN29) on pinctrl-single [ 1.125675] pinctrl core: registered pin 30 (PIN30) on pinctrl-single [ 1.132816] pinctrl core: registered pin 31 (PIN31) on pinctrl-single [ 1.140002] pinctrl-single 1b0000e4.pinmux: 32 pins, size 4 [ 1.146251] pinctrl-single 1b0000e4.pinmux: no hogs found [ 1.153379] gpiochip_find_base_unlocked: found new base at 512 [ 1.160248] gpio gpiochip0: (18003500.gpio-controller): added GPIO chardev (254:0) [ 1.168941] gpio gpiochip0: registered GPIOs 512 to 535 on 18003500.gpio-controller [ 1.177984] pinctrl-single 1b0000e4.pinmux: disable_sys_led index: 0x0 value: 0x0 mask: 0x4000 [ 1.187702] pinctrl core: add 1 pinctrl maps [ 1.192473] pinctrl-single 1b0000e4.pinmux: found group selector 0 for disable_sys_led [ 1.201299] pinctrl-single 1b0000e4.pinmux: request pin 14 (PIN14) for leds [ 1.209080] pinctrl-single 1b0000e4.pinmux: enabling disable_sys_led function0 [ 1.217205] leds-gpio leds: using DT '/leds/sys' for '(default)' GPIO lookup [ 1.225064] of_get_named_gpiod_flags: parsed 'gpios' property of node '/leds/sys[0]' - status (0) [ 1.234960] gpio gpiochip0: Persistence not supported for GPIO 0 [ 1.241672] gpio-512 (?): no flags found for GPIO (default) [ 1.249362] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled [ 1.270405] serial8250 serial8250: no of_node; not parsing pinctrl DT [ 1.278794] printk: legacy console [ttyS0] disabled [ 1.284693] of_serial 18002000.uart: using DT '/soc/uart@2000' for 'rs485-term' GPIO lookup [ 1.294143] of_get_named_gpiod_flags: can't parse 'rs485-term-gpios' property of node '/soc/uart@2000[0]' [ 1.304836] of_get_named_gpiod_flags: can't parse 'rs485-term-gpio' property of node '/soc/uart@2000[0]' [ 1.315413] of_serial 18002000.uart: using lookup tables for GPIO lookup [ 1.322843] of_serial 18002000.uart: No GPIO consumer rs485-term found [ 1.330125] of_serial 18002000.uart: using DT '/soc/uart@2000' for 'rs485-rx-during-tx' GPIO lookup [ 1.340215] of_get_named_gpiod_flags: can't parse 'rs485-rx-during-tx-gpios' property of node '/soc/uart@2000[0]' [ 1.351666] of_get_named_gpiod_flags: can't parse 'rs485-rx-during-tx-gpio' property of node '/soc/uart@2000[0]' [ 1.363008] of_serial 18002000.uart: using lookup tables for GPIO lookup [ 1.370491] of_serial 18002000.uart: No GPIO consumer rs485-rx-during-tx found [ 1.379069] 18002000.uart: ttyS0 at MMIO 0x18002000 (irq = 31, base_baud = 12500000) is a 16550A [ 1.388971] printk: legacy console [ttyS0] enabled [ 1.399731] printk: legacy bootconsole [early0] disabled [ 1.412929] printk: legacy bootconsole [ns16550a0] disabled [ 1.426289] pinctrl-single 1b000004.pinmux: pinmux_enable_uart1 index: 0x0 value: 0x1 mask: 0x3 [ 1.436323] pinctrl core: add 1 pinctrl maps [ 1.441192] pinctrl-single 1b000004.pinmux: found group selector 0 for pinmux_enable_uart1 [ 1.450559] pinctrl-single 1b000004.pinmux: request pin 0 (PIN0) for 18002100.uart [ 1.459103] pinctrl-single 1b000004.pinmux: request pin 1 (PIN1) for 18002100.uart [ 1.467636] pinctrl-single 1b000004.pinmux: enabling pinmux_enable_uart1 function0 [ 1.476716] of_serial 18002100.uart: using DT '/soc/uart@2100' for 'rs485-term' GPIO lookup [ 1.486337] of_get_named_gpiod_flags: can't parse 'rs485-term-gpios' property of node '/soc/uart@2100[0]' [ 1.497177] of_get_named_gpiod_flags: can't parse 'rs485-term-gpio' property of node '/soc/uart@2100[0]' [ 1.507865] of_serial 18002100.uart: using lookup tables for GPIO lookup [ 1.515459] of_serial 18002100.uart: No GPIO consumer rs485-term found [ 1.522766] of_serial 18002100.uart: using DT '/soc/uart@2100' for 'rs485-rx-during-tx' GPIO lookup [ 1.532940] of_get_named_gpiod_flags: can't parse 'rs485-rx-during-tx-gpios' property of node '/soc/uart@2100[0]' [ 1.544488] of_get_named_gpiod_flags: can't parse 'rs485-rx-during-tx-gpio' property of node '/soc/uart@2100[0]' [ 1.555925] of_serial 18002100.uart: using lookup tables for GPIO lookup [ 1.563418] of_serial 18002100.uart: No GPIO consumer rs485-rx-during-tx found [ 1.572061] 18002100.uart: ttyS1 at MMIO 0x18002100 (irq = 30, base_baud = 12500000) is a 16550A [ 1.621501] brd: module loaded [ 1.629038] spi-nor spi0.0: using DT '/soc/spi@1200/flash@0' for 'reset' GPIO lookup [ 1.637876] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/soc/spi@1200/flash@0[0]' [ 1.648888] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/soc/spi@1200/flash@0[0]' [ 1.659747] spi-nor spi0.0: using lookup tables for GPIO lookup [ 1.666409] spi-nor spi0.0: No GPIO consumer reset found [ 1.672543] 6 fixed-partitions partitions found on MTD device spi0.0 [ 1.680064] Creating 6 MTD partitions on "spi0.0": [ 1.685589] 0x000000000000-0x000000040000 : "u-boot" [ 1.693349] 0x000000040000-0x000000050000 : "u-boot-env" [ 1.701489] 0x000000050000-0x000000060000 : "u-boot-env2" [ 1.709562] 0x000000060000-0x000000160000 : "jffs" [ 1.716120] 0x000000160000-0x000000260000 : "jffs2" [ 1.722486] 0x000000260000-0x000001000000 : "firmware" [ 1.730888] 2 uimage-fw partitions found on MTD device firmware [ 1.737616] Creating 2 MTD partitions on "firmware": [ 1.743213] 0x000000000000-0x0000002f0000 : "kernel" [ 1.749808] 0x0000002f0000-0x000000da0000 : "rootfs" [ 1.757746] mtd: setting mtd7 (rootfs) as root device [ 1.763512] 1 squashfs-split partitions found on MTD device rootfs [ 1.770519] 0x000000660000-0x000000da0000 : "rootfs_data" [ 1.784982] mdio_bus fixed-0: using lookup tables for GPIO lookup [ 1.792008] mdio_bus fixed-0: No GPIO consumer reset found [ 1.803254] mdio_bus realtek-mdio: using DT '/switchcore@1b000000/mdio-controller' for 'reset' GPIO lookup [ 1.814336] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller[0]' [ 1.826819] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller[0]' [ 1.839143] mdio_bus realtek-mdio: using lookup tables for GPIO lookup [ 1.846486] mdio_bus realtek-mdio: No GPIO consumer reset found [ 1.854851] mdio_bus realtek-mdio:00: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@0' for 'reset' GPIO lookup [ 1.868600] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@0[0]' [ 1.883548] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@0[0]' [ 1.898389] mdio_bus realtek-mdio:00: using lookup tables for GPIO lookup [ 1.906024] mdio_bus realtek-mdio:00: No GPIO consumer reset found [ 1.920695] mdio_bus realtek-mdio:01: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@1' for 'reset' GPIO lookup [ 1.934428] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@1[0]' [ 1.949372] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@1[0]' [ 1.964209] mdio_bus realtek-mdio:01: using lookup tables for GPIO lookup [ 1.971848] mdio_bus realtek-mdio:01: No GPIO consumer reset found [ 1.986890] mdio_bus realtek-mdio:02: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@2' for 'reset' GPIO lookup [ 2.000664] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@2[0]' [ 2.015604] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@2[0]' [ 2.030444] mdio_bus realtek-mdio:02: using lookup tables for GPIO lookup [ 2.038095] mdio_bus realtek-mdio:02: No GPIO consumer reset found [ 2.053186] mdio_bus realtek-mdio:03: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@3' for 'reset' GPIO lookup [ 2.066932] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@3[0]' [ 2.081889] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@3[0]' [ 2.096732] mdio_bus realtek-mdio:03: using lookup tables for GPIO lookup [ 2.104328] mdio_bus realtek-mdio:03: No GPIO consumer reset found [ 2.119017] mdio_bus realtek-mdio:04: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@4' for 'reset' GPIO lookup [ 2.132767] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@4[0]' [ 2.147711] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@4[0]' [ 2.162568] mdio_bus realtek-mdio:04: using lookup tables for GPIO lookup [ 2.170201] mdio_bus realtek-mdio:04: No GPIO consumer reset found [ 2.185495] mdio_bus realtek-mdio:05: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@5' for 'reset' GPIO lookup [ 2.199264] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@5[0]' [ 2.214215] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@5[0]' [ 2.229085] mdio_bus realtek-mdio:05: using lookup tables for GPIO lookup [ 2.236731] mdio_bus realtek-mdio:05: No GPIO consumer reset found [ 2.251542] mdio_bus realtek-mdio:06: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@6' for 'reset' GPIO lookup [ 2.265366] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@6[0]' [ 2.280339] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@6[0]' [ 2.295205] mdio_bus realtek-mdio:06: using lookup tables for GPIO lookup [ 2.302866] mdio_bus realtek-mdio:06: No GPIO consumer reset found [ 2.317839] mdio_bus realtek-mdio:07: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@7' for 'reset' GPIO lookup [ 2.331570] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@7[0]' [ 2.346528] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@7[0]' [ 2.361371] mdio_bus realtek-mdio:07: using lookup tables for GPIO lookup [ 2.369002] mdio_bus realtek-mdio:07: No GPIO consumer reset found [ 2.384107] mdio_bus realtek-mdio:08: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@8' for 'reset' GPIO lookup [ 2.397863] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@8[0]' [ 2.412824] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@8[0]' [ 2.427653] mdio_bus realtek-mdio:08: using lookup tables for GPIO lookup [ 2.435304] mdio_bus realtek-mdio:08: No GPIO consumer reset found [ 2.449983] mdio_bus realtek-mdio:09: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@9' for 'reset' GPIO lookup [ 2.463712] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@9[0]' [ 2.478647] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@9[0]' [ 2.493485] mdio_bus realtek-mdio:09: using lookup tables for GPIO lookup [ 2.501123] mdio_bus realtek-mdio:09: No GPIO consumer reset found [ 2.515968] mdio_bus realtek-mdio:0a: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@10' for 'reset' GPIO lookup [ 2.529810] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@10[0]' [ 2.544850] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@10[0]' [ 2.559789] mdio_bus realtek-mdio:0a: using lookup tables for GPIO lookup [ 2.567437] mdio_bus realtek-mdio:0a: No GPIO consumer reset found [ 2.582473] mdio_bus realtek-mdio:0b: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@11' for 'reset' GPIO lookup [ 2.596314] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@11[0]' [ 2.611356] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@11[0]' [ 2.626297] mdio_bus realtek-mdio:0b: using lookup tables for GPIO lookup [ 2.633894] mdio_bus realtek-mdio:0b: No GPIO consumer reset found [ 2.648738] mdio_bus realtek-mdio:0c: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@12' for 'reset' GPIO lookup [ 2.662582] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@12[0]' [ 2.677622] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@12[0]' [ 2.692575] mdio_bus realtek-mdio:0c: using lookup tables for GPIO lookup [ 2.700208] mdio_bus realtek-mdio:0c: No GPIO consumer reset found [ 2.715006] mdio_bus realtek-mdio:0d: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@13' for 'reset' GPIO lookup [ 2.728854] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@13[0]' [ 2.743906] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@13[0]' [ 2.758844] mdio_bus realtek-mdio:0d: using lookup tables for GPIO lookup [ 2.766485] mdio_bus realtek-mdio:0d: No GPIO consumer reset found [ 2.781224] mdio_bus realtek-mdio:0e: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@14' for 'reset' GPIO lookup [ 2.795048] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@14[0]' [ 2.810082] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@14[0]' [ 2.825037] mdio_bus realtek-mdio:0e: using lookup tables for GPIO lookup [ 2.832665] mdio_bus realtek-mdio:0e: No GPIO consumer reset found [ 2.847508] mdio_bus realtek-mdio:0f: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@15' for 'reset' GPIO lookup [ 2.861350] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@15[0]' [ 2.876401] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@15[0]' [ 2.891332] mdio_bus realtek-mdio:0f: using lookup tables for GPIO lookup [ 2.898965] mdio_bus realtek-mdio:0f: No GPIO consumer reset found [ 2.913766] mdio_bus realtek-mdio:10: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@16' for 'reset' GPIO lookup [ 2.927615] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@16[0]' [ 2.942670] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@16[0]' [ 2.957607] mdio_bus realtek-mdio:10: using lookup tables for GPIO lookup [ 2.965197] mdio_bus realtek-mdio:10: No GPIO consumer reset found [ 2.980071] mdio_bus realtek-mdio:11: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@17' for 'reset' GPIO lookup [ 2.993905] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@17[0]' [ 3.008946] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@17[0]' [ 3.023878] mdio_bus realtek-mdio:11: using lookup tables for GPIO lookup [ 3.031518] mdio_bus realtek-mdio:11: No GPIO consumer reset found [ 3.046300] mdio_bus realtek-mdio:12: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@18' for 'reset' GPIO lookup [ 3.060147] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@18[0]' [ 3.075324] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@18[0]' [ 3.090279] mdio_bus realtek-mdio:12: using lookup tables for GPIO lookup [ 3.097943] mdio_bus realtek-mdio:12: No GPIO consumer reset found [ 3.113009] mdio_bus realtek-mdio:13: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@19' for 'reset' GPIO lookup [ 3.126848] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@19[0]' [ 3.141890] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@19[0]' [ 3.156811] mdio_bus realtek-mdio:13: using lookup tables for GPIO lookup [ 3.164401] mdio_bus realtek-mdio:13: No GPIO consumer reset found [ 3.179280] mdio_bus realtek-mdio:14: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@20' for 'reset' GPIO lookup [ 3.193112] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@20[0]' [ 3.208141] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@20[0]' [ 3.223074] mdio_bus realtek-mdio:14: using lookup tables for GPIO lookup [ 3.230706] mdio_bus realtek-mdio:14: No GPIO consumer reset found [ 3.245697] mdio_bus realtek-mdio:15: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@21' for 'reset' GPIO lookup [ 3.259550] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@21[0]' [ 3.274619] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@21[0]' [ 3.289562] mdio_bus realtek-mdio:15: using lookup tables for GPIO lookup [ 3.297198] mdio_bus realtek-mdio:15: No GPIO consumer reset found [ 3.312188] mdio_bus realtek-mdio:16: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@22' for 'reset' GPIO lookup [ 3.326018] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@22[0]' [ 3.341045] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@22[0]' [ 3.355970] mdio_bus realtek-mdio:16: using lookup tables for GPIO lookup [ 3.363564] mdio_bus realtek-mdio:16: No GPIO consumer reset found [ 3.378459] mdio_bus realtek-mdio:17: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@23' for 'reset' GPIO lookup [ 3.392289] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@23[0]' [ 3.407336] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@23[0]' [ 3.422272] mdio_bus realtek-mdio:17: using lookup tables for GPIO lookup [ 3.429904] mdio_bus realtek-mdio:17: No GPIO consumer reset found [ 3.444734] mdio_bus realtek-mdio:18: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@24' for 'reset' GPIO lookup [ 3.458574] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@24[0]' [ 3.473620] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@24[0]' [ 3.488545] mdio_bus realtek-mdio:18: using lookup tables for GPIO lookup [ 3.496195] mdio_bus realtek-mdio:18: No GPIO consumer reset found [ 3.511002] mdio_bus realtek-mdio:19: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@25' for 'reset' GPIO lookup [ 3.524845] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@25[0]' [ 3.539875] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@25[0]' [ 3.554808] mdio_bus realtek-mdio:19: using lookup tables for GPIO lookup [ 3.562463] mdio_bus realtek-mdio:19: No GPIO consumer reset found [ 3.577264] mdio_bus realtek-mdio:1a: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@26' for 'reset' GPIO lookup [ 3.591095] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@26[0]' [ 3.606130] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@26[0]' [ 3.621085] mdio_bus realtek-mdio:1a: using lookup tables for GPIO lookup [ 3.628723] mdio_bus realtek-mdio:1a: No GPIO consumer reset found [ 3.643527] mdio_bus realtek-mdio:1b: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@27' for 'reset' GPIO lookup [ 3.657367] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@27[0]' [ 3.672419] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@27[0]' [ 3.687358] mdio_bus realtek-mdio:1b: using lookup tables for GPIO lookup [ 3.694945] mdio_bus realtek-mdio:1b: No GPIO consumer reset found [ 3.709783] mdio_bus realtek-mdio:1c: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@28' for 'reset' GPIO lookup [ 3.723622] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@28[0]' [ 3.738666] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@28[0]' [ 3.753616] mdio_bus realtek-mdio:1c: using lookup tables for GPIO lookup [ 3.761250] mdio_bus realtek-mdio:1c: No GPIO consumer reset found [ 3.776130] mdio_bus realtek-mdio:1d: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@29' for 'reset' GPIO lookup [ 3.789971] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@29[0]' [ 3.805010] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@29[0]' [ 3.819960] mdio_bus realtek-mdio:1d: using lookup tables for GPIO lookup [ 3.827602] mdio_bus realtek-mdio:1d: No GPIO consumer reset found [ 3.842341] mdio_bus realtek-mdio:1e: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@30' for 'reset' GPIO lookup [ 3.856190] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@30[0]' [ 3.871218] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@30[0]' [ 3.886157] mdio_bus realtek-mdio:1e: using lookup tables for GPIO lookup [ 3.893746] mdio_bus realtek-mdio:1e: No GPIO consumer reset found [ 3.908618] mdio_bus realtek-mdio:1f: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@31' for 'reset' GPIO lookup [ 3.922449] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@31[0]' [ 3.937500] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@31[0]' [ 3.952453] mdio_bus realtek-mdio:1f: using lookup tables for GPIO lookup [ 3.960087] mdio_bus realtek-mdio:1f: No GPIO consumer reset found [ 3.974865] mdio_bus realtek-mdio:20: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@32' for 'reset' GPIO lookup [ 3.988705] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@32[0]' [ 4.003749] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@32[0]' [ 4.018686] mdio_bus realtek-mdio:20: using lookup tables for GPIO lookup [ 4.026316] mdio_bus realtek-mdio:20: No GPIO consumer reset found [ 4.041194] mdio_bus realtek-mdio:21: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@33' for 'reset' GPIO lookup [ 4.055025] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@33[0]' [ 4.070057] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@33[0]' [ 4.085014] mdio_bus realtek-mdio:21: using lookup tables for GPIO lookup [ 4.092657] mdio_bus realtek-mdio:21: No GPIO consumer reset found [ 4.107389] mdio_bus realtek-mdio:22: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@34' for 'reset' GPIO lookup [ 4.121231] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@34[0]' [ 4.136309] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@34[0]' [ 4.151256] mdio_bus realtek-mdio:22: using lookup tables for GPIO lookup [ 4.158890] mdio_bus realtek-mdio:22: No GPIO consumer reset found [ 4.173627] mdio_bus realtek-mdio:23: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@35' for 'reset' GPIO lookup [ 4.187479] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@35[0]' [ 4.202531] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@35[0]' [ 4.217457] mdio_bus realtek-mdio:23: using lookup tables for GPIO lookup [ 4.225049] mdio_bus realtek-mdio:23: No GPIO consumer reset found [ 4.239910] mdio_bus realtek-mdio:24: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@36' for 'reset' GPIO lookup [ 4.253747] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@36[0]' [ 4.268780] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@36[0]' [ 4.283712] mdio_bus realtek-mdio:24: using lookup tables for GPIO lookup [ 4.291358] mdio_bus realtek-mdio:24: No GPIO consumer reset found [ 4.306211] mdio_bus realtek-mdio:25: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@37' for 'reset' GPIO lookup [ 4.320047] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@37[0]' [ 4.335087] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@37[0]' [ 4.350037] mdio_bus realtek-mdio:25: using lookup tables for GPIO lookup [ 4.357678] mdio_bus realtek-mdio:25: No GPIO consumer reset found [ 4.372403] mdio_bus realtek-mdio:26: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@38' for 'reset' GPIO lookup [ 4.386252] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@38[0]' [ 4.401285] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@38[0]' [ 4.416233] mdio_bus realtek-mdio:26: using lookup tables for GPIO lookup [ 4.423824] mdio_bus realtek-mdio:26: No GPIO consumer reset found [ 4.438681] mdio_bus realtek-mdio:27: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@39' for 'reset' GPIO lookup [ 4.452523] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@39[0]' [ 4.467560] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@39[0]' [ 4.482494] mdio_bus realtek-mdio:27: using lookup tables for GPIO lookup [ 4.490127] mdio_bus realtek-mdio:27: No GPIO consumer reset found [ 4.504933] mdio_bus realtek-mdio:28: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@40' for 'reset' GPIO lookup [ 4.518786] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@40[0]' [ 4.533834] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@40[0]' [ 4.548760] mdio_bus realtek-mdio:28: using lookup tables for GPIO lookup [ 4.556411] mdio_bus realtek-mdio:28: No GPIO consumer reset found [ 4.571256] mdio_bus realtek-mdio:29: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@41' for 'reset' GPIO lookup [ 4.585087] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@41[0]' [ 4.600117] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@41[0]' [ 4.615048] mdio_bus realtek-mdio:29: using lookup tables for GPIO lookup [ 4.622704] mdio_bus realtek-mdio:29: No GPIO consumer reset found [ 4.637504] mdio_bus realtek-mdio:2a: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@42' for 'reset' GPIO lookup [ 4.651344] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@42[0]' [ 4.666382] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@42[0]' [ 4.681335] mdio_bus realtek-mdio:2a: using lookup tables for GPIO lookup [ 4.688964] mdio_bus realtek-mdio:2a: No GPIO consumer reset found [ 4.703761] mdio_bus realtek-mdio:2b: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@43' for 'reset' GPIO lookup [ 4.717601] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@43[0]' [ 4.732651] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@43[0]' [ 4.747600] mdio_bus realtek-mdio:2b: using lookup tables for GPIO lookup [ 4.755196] mdio_bus realtek-mdio:2b: No GPIO consumer reset found [ 4.770010] mdio_bus realtek-mdio:2c: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@44' for 'reset' GPIO lookup [ 4.783848] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@44[0]' [ 4.798882] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@44[0]' [ 4.813832] mdio_bus realtek-mdio:2c: using lookup tables for GPIO lookup [ 4.821465] mdio_bus realtek-mdio:2c: No GPIO consumer reset found [ 4.836287] mdio_bus realtek-mdio:2d: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@45' for 'reset' GPIO lookup [ 4.850122] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@45[0]' [ 4.865208] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@45[0]' [ 4.880240] mdio_bus realtek-mdio:2d: using lookup tables for GPIO lookup [ 4.887877] mdio_bus realtek-mdio:2d: No GPIO consumer reset found [ 4.902547] mdio_bus realtek-mdio:2e: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@46' for 'reset' GPIO lookup [ 4.916381] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@46[0]' [ 4.931428] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@46[0]' [ 4.946360] mdio_bus realtek-mdio:2e: using lookup tables for GPIO lookup [ 4.953952] mdio_bus realtek-mdio:2e: No GPIO consumer reset found [ 4.968778] mdio_bus realtek-mdio:2f: using DT '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@47' for 'reset' GPIO lookup [ 4.982606] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@47[0]' [ 4.997646] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-controller/mdio-bus@0/ethernet-phy@47[0]' [ 5.012581] mdio_bus realtek-mdio:2f: using lookup tables for GPIO lookup [ 5.020213] mdio_bus realtek-mdio:2f: No GPIO consumer reset found [ 5.034061] pinctrl-single 1b0000e4.pinmux: port-led-offload index: 0x0 value: 0x0 mask: 0x20 [ 5.043794] pinctrl core: add 1 pinctrl maps [ 5.048735] pinctrl-single 1b0000e4.pinmux: found group selector 1 for port-led-offload [ 5.057750] pinctrl-single 1b0000e4.pinmux: request pin 5 (PIN5) for 1b000000.switchcore:mdio-aux [ 5.067709] pinctrl-single 1b0000e4.pinmux: enabling port-led-offload function1 [ 5.076699] mdio_bus realtek-aux-mdio: using DT '/switchcore@1b000000/mdio-aux' for 'reset' GPIO lookup [ 5.087312] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-aux[0]' [ 5.099091] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-aux[0]' [ 5.110720] mdio_bus realtek-aux-mdio: using lookup tables for GPIO lookup [ 5.118464] mdio_bus realtek-aux-mdio: No GPIO consumer reset found [ 5.126084] rtl8231-expander realtek-aux-mdio:00: using DT '/switchcore@1b000000/mdio-aux/expander@0' for 'reset' GPIO lookup [ 5.138819] rtl8231-expander realtek-aux-mdio:00: No GPIO consumer reset found [ 5.146952] gpiod_set_value_cansleep: invalid GPIO (errorpointer) [ 5.156009] rtl8231-expander realtek-aux-mdio:03: using DT '/switchcore@1b000000/mdio-aux/expander@3' for 'reset' GPIO lookup [ 5.168828] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/switchcore@1b000000/mdio-aux/expander@3[0]' - status (0) [ 5.182432] gpio gpiochip0: Persistence not supported for GPIO 1 [ 5.189484] rtl8231-pinctrl rtl8231-pinctrl.0.auto: no of_node; not parsing pinctrl DT [ 5.198957] rtl8231-expander realtek-aux-mdio:03: try to register 37 pins ... [ 5.207007] pinctrl core: registered pin 0 (gpio0) on rtl8231-pinctrl [ 5.214213] pinctrl core: registered pin 1 (gpio1) on rtl8231-pinctrl [ 5.221451] pinctrl core: registered pin 2 (gpio2) on rtl8231-pinctrl [ 5.228697] pinctrl core: registered pin 3 (gpio3) on rtl8231-pinctrl [ 5.235953] pinctrl core: registered pin 4 (gpio4) on rtl8231-pinctrl [ 5.243161] pinctrl core: registered pin 5 (gpio5) on rtl8231-pinctrl [ 5.250379] pinctrl core: registered pin 6 (gpio6) on rtl8231-pinctrl [ 5.257628] pinctrl core: registered pin 7 (gpio7) on rtl8231-pinctrl [ 5.264836] pinctrl core: registered pin 8 (gpio8) on rtl8231-pinctrl [ 5.272068] pinctrl core: registered pin 9 (gpio9) on rtl8231-pinctrl [ 5.279320] pinctrl core: registered pin 10 (gpio10) on rtl8231-pinctrl [ 5.286760] pinctrl core: registered pin 11 (gpio11) on rtl8231-pinctrl [ 5.294156] pinctrl core: registered pin 12 (gpio12) on rtl8231-pinctrl [ 5.301592] pinctrl core: registered pin 13 (gpio13) on rtl8231-pinctrl [ 5.309040] pinctrl core: registered pin 14 (gpio14) on rtl8231-pinctrl [ 5.316479] pinctrl core: registered pin 15 (gpio15) on rtl8231-pinctrl [ 5.323883] pinctrl core: registered pin 16 (gpio16) on rtl8231-pinctrl [ 5.331308] pinctrl core: registered pin 17 (gpio17) on rtl8231-pinctrl [ 5.338760] pinctrl core: registered pin 18 (gpio18) on rtl8231-pinctrl [ 5.346202] pinctrl core: registered pin 19 (gpio19) on rtl8231-pinctrl [ 5.353601] pinctrl core: registered pin 20 (gpio20) on rtl8231-pinctrl [ 5.361032] pinctrl core: registered pin 21 (gpio21) on rtl8231-pinctrl [ 5.368467] pinctrl core: registered pin 22 (gpio22) on rtl8231-pinctrl [ 5.375905] pinctrl core: registered pin 23 (gpio23) on rtl8231-pinctrl [ 5.383309] pinctrl core: registered pin 24 (gpio24) on rtl8231-pinctrl [ 5.390735] pinctrl core: registered pin 25 (gpio25) on rtl8231-pinctrl [ 5.398236] pinctrl core: registered pin 26 (gpio26) on rtl8231-pinctrl [ 5.405684] pinctrl core: registered pin 27 (gpio27) on rtl8231-pinctrl [ 5.413080] pinctrl core: registered pin 28 (gpio28) on rtl8231-pinctrl [ 5.420515] pinctrl core: registered pin 29 (gpio29) on rtl8231-pinctrl [ 5.427955] pinctrl core: registered pin 30 (gpio30) on rtl8231-pinctrl [ 5.435440] pinctrl core: registered pin 31 (gpio31) on rtl8231-pinctrl [ 5.442842] pinctrl core: registered pin 32 (gpio32) on rtl8231-pinctrl [ 5.450269] pinctrl core: registered pin 33 (gpio33) on rtl8231-pinctrl [ 5.457723] pinctrl core: registered pin 34 (gpio34) on rtl8231-pinctrl [ 5.465123] pinctrl core: registered pin 35 (gpio35) on rtl8231-pinctrl [ 5.472553] pinctrl core: registered pin 36 (gpio36) on rtl8231-pinctrl [ 5.480109] rtl8231-expander realtek-aux-mdio:03: no hogs found [ 5.486955] gpiochip_find_base_unlocked: found new base at 536 [ 5.493716] gpio gpiochip1: (realtek-aux-mdio:03): created GPIO range 0->36 ==> realtek-aux-mdio:03 PIN 0->36 [ 5.504876] rtl8231-expander realtek-aux-mdio:03: request pin 6 (gpio6) for realtek-aux-mdio:03:542 [ 5.515059] gpio gpiochip1: Persistence not supported for GPIO 6 [ 5.521849] gpio-542 (phy-reset): hogged as output/low [ 5.527682] rtl8231-expander realtek-aux-mdio:03: request pin 13 (gpio13) for realtek-aux-mdio:03:549 [ 5.538052] gpio gpiochip1: Persistence not supported for GPIO 13 [ 5.544911] gpio-549 (poe-mcu-enable): hogged as output/high [ 5.551302] rtl8231-expander realtek-aux-mdio:03: request pin 36 (gpio36) for realtek-aux-mdio:03:572 [ 5.561716] gpio gpiochip1: Persistence not supported for GPIO 36 [ 5.568684] gpio-572 (poe-mcu-reset): hogged as output/low [ 5.575032] gpio gpiochip1: (realtek-aux-mdio:03): added GPIO chardev (254:1) [ 5.583312] gpio gpiochip1: registered GPIOs 536 to 572 on realtek-aux-mdio:03 [ 5.593165] mdio_bus realtek-serdes-mdio: using DT '/switchcore@1b000000/mdio-serdes' for 'reset' GPIO lookup [ 5.604366] of_get_named_gpiod_flags: can't parse 'reset-gpios' property of node '/switchcore@1b000000/mdio-serdes[0]' [ 5.616395] of_get_named_gpiod_flags: can't parse 'reset-gpio' property of node '/switchcore@1b000000/mdio-serdes[0]' [ 5.628332] mdio_bus realtek-serdes-mdio: using lookup tables for GPIO lookup [ 5.636375] mdio_bus realtek-serdes-mdio: No GPIO consumer reset found [ 5.644134] realtek-otto-serdes-mdio 1b000000.switchcore:mdio-serdes: Realtek SerDes mdio bus initialized, 14 SerDes, 12 pages, 32 registers [ 9.015337] realtek-otto-pcs 1b000000.switchcore:pcs: Realtek PCS driver initialized [ 9.025008] Probing RTL838X eth device pdev: 81958400, dev: 81958410 [ 9.034380] Using MAC 00:11:22:00:11:22 [ 9.040010] (NULL device *): using DT '/switchcore@1b000000/ethernet/fixed-link' for 'link' GPIO lookup [ 9.050658] of_get_named_gpiod_flags: can't parse 'link-gpios' property of node '/switchcore@1b000000/ethernet/fixed-link[0]' [ 9.063413] of_get_named_gpiod_flags: can't parse 'link-gpio' property of node '/switchcore@1b000000/ethernet/fixed-link[0]' [ 9.076041] (NULL device *): No GPIO consumer link found [ 9.082295] i2c_dev: i2c /dev entries driver [ 9.089556] cpufreq-dt cpufreq-dt: no of_node; not parsing pinctrl DT [ 9.104830] NET: Registered PF_INET6 protocol family [ 9.114193] Segment Routing with IPv6 [ 9.118632] In-situ OAM (IOAM) with IPv6 [ 9.123227] NET: Registered PF_PACKET protocol family [ 9.129057] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 9.144525] 8021q: 802.1Q VLAN Support v1.8 [ 9.206436] i2c-gpio i2c-gpio-0: using DT '/i2c-gpio-0' for 'sda' GPIO lookup [ 9.214522] of_get_named_gpiod_flags: parsed 'sda-gpios' property of node '/i2c-gpio-0[0]' - status (0) [ 9.225171] rtl8231-expander realtek-aux-mdio:03: request pin 24 (gpio24) for realtek-aux-mdio:03:560 [ 9.235615] gpio gpiochip1: Persistence not supported for GPIO 24 [ 9.242443] i2c-gpio i2c-gpio-0: using DT '/i2c-gpio-0' for 'scl' GPIO lookup [ 9.250538] of_get_named_gpiod_flags: parsed 'scl-gpios' property of node '/i2c-gpio-0[0]' - status (0) [ 9.261155] rtl8231-expander realtek-aux-mdio:03: request pin 25 (gpio25) for realtek-aux-mdio:03:561 [ 9.271560] gpio gpiochip1: Persistence not supported for GPIO 25 [ 9.278475] i2c-gpio i2c-gpio-0: Slow GPIO pins might wreak havoc into I2C/SMBus bus timing [ 9.288237] i2c-gpio i2c-gpio-0: using lines 560 (SDA) and 561 (SCL) [ 9.296278] i2c-gpio i2c-gpio-1: using DT '/i2c-gpio-1' for 'sda' GPIO lookup [ 9.304374] of_get_named_gpiod_flags: parsed 'sda-gpios' property of node '/i2c-gpio-1[0]' - status (0) [ 9.315012] rtl8231-expander realtek-aux-mdio:03: request pin 30 (gpio30) for realtek-aux-mdio:03:566 [ 9.325411] gpio gpiochip1: Persistence not supported for GPIO 30 [ 9.332239] i2c-gpio i2c-gpio-1: using DT '/i2c-gpio-1' for 'scl' GPIO lookup [ 9.340324] of_get_named_gpiod_flags: parsed 'scl-gpios' property of node '/i2c-gpio-1[0]' - status (0) [ 9.350943] rtl8231-expander realtek-aux-mdio:03: request pin 31 (gpio31) for realtek-aux-mdio:03:567 [ 9.361384] gpio gpiochip1: Persistence not supported for GPIO 31 [ 9.368294] i2c-gpio i2c-gpio-1: Slow GPIO pins might wreak havoc into I2C/SMBus bus timing [ 9.378124] i2c-gpio i2c-gpio-1: using lines 566 (SDA) and 567 (SCL) [ 9.386193] sfp sfp-p49: using DT '/sfp-p49' for 'mod-def0' GPIO lookup [ 9.393691] of_get_named_gpiod_flags: can't parse 'mod-def0-gpios' property of node '/sfp-p49[0]' [ 9.403736] of_get_named_gpiod_flags: parsed 'mod-def0-gpio' property of node '/sfp-p49[0]' - status (0) [ 9.414452] rtl8231-expander realtek-aux-mdio:03: request pin 26 (gpio26) for realtek-aux-mdio:03:562 [ 9.424883] gpio gpiochip1: Persistence not supported for GPIO 26 [ 9.431797] sfp sfp-p49: using DT '/sfp-p49' for 'los' GPIO lookup [ 9.438832] of_get_named_gpiod_flags: can't parse 'los-gpios' property of node '/sfp-p49[0]' [ 9.448381] of_get_named_gpiod_flags: parsed 'los-gpio' property of node '/sfp-p49[0]' - status (0) [ 9.458601] rtl8231-expander realtek-aux-mdio:03: request pin 27 (gpio27) for realtek-aux-mdio:03:563 [ 9.469010] gpio gpiochip1: Persistence not supported for GPIO 27 [ 9.475955] sfp sfp-p49: using DT '/sfp-p49' for 'tx-fault' GPIO lookup [ 9.483382] of_get_named_gpiod_flags: can't parse 'tx-fault-gpios' property of node '/sfp-p49[0]' [ 9.493395] of_get_named_gpiod_flags: parsed 'tx-fault-gpio' property of node '/sfp-p49[0]' - status (0) [ 9.504119] rtl8231-expander realtek-aux-mdio:03: request pin 22 (gpio22) for realtek-aux-mdio:03:558 [ 9.514522] gpio gpiochip1: Persistence not supported for GPIO 22 [ 9.521440] sfp sfp-p49: using DT '/sfp-p49' for 'tx-disable' GPIO lookup [ 9.529141] of_get_named_gpiod_flags: can't parse 'tx-disable-gpios' property of node '/sfp-p49[0]' [ 9.539393] of_get_named_gpiod_flags: parsed 'tx-disable-gpio' property of node '/sfp-p49[0]' - status (0) [ 9.550293] rtl8231-expander realtek-aux-mdio:03: request pin 23 (gpio23) for realtek-aux-mdio:03:559 [ 9.560708] gpio gpiochip1: Persistence not supported for GPIO 23 [ 9.567604] gpio-559 (tx-disable): no flags found for GPIO tx-disable [ 9.574876] sfp sfp-p49: using DT '/sfp-p49' for 'rate-select0' GPIO lookup [ 9.582773] of_get_named_gpiod_flags: can't parse 'rate-select0-gpios' property of node '/sfp-p49[0]' [ 9.593183] of_get_named_gpiod_flags: can't parse 'rate-select0-gpio' property of node '/sfp-p49[0]' [ 9.603508] sfp sfp-p49: using lookup tables for GPIO lookup [ 9.609915] sfp sfp-p49: No GPIO consumer rate-select0 found [ 9.616340] sfp sfp-p49: using DT '/sfp-p49' for 'rate-select1' GPIO lookup [ 9.624152] of_get_named_gpiod_flags: can't parse 'rate-select1-gpios' property of node '/sfp-p49[0]' [ 9.634549] of_get_named_gpiod_flags: can't parse 'rate-select1-gpio' property of node '/sfp-p49[0]' [ 9.644848] sfp sfp-p49: using lookup tables for GPIO lookup [ 9.651258] sfp sfp-p49: No GPIO consumer rate-select1 found [ 9.657696] sfp sfp-p49: Host maximum power 1.0W [ 9.663494] sfp sfp-p50: using DT '/sfp-p50' for 'mod-def0' GPIO lookup [ 9.671076] of_get_named_gpiod_flags: can't parse 'mod-def0-gpios' property of node '/sfp-p50[0]' [ 9.681132] of_get_named_gpiod_flags: parsed 'mod-def0-gpio' property of node '/sfp-p50[0]' - status (0) [ 9.691855] rtl8231-expander realtek-aux-mdio:03: request pin 32 (gpio32) for realtek-aux-mdio:03:568 [ 9.702320] gpio gpiochip1: Persistence not supported for GPIO 32 [ 9.709264] sfp sfp-p50: using DT '/sfp-p50' for 'los' GPIO lookup [ 9.716311] of_get_named_gpiod_flags: can't parse 'los-gpios' property of node '/sfp-p50[0]' [ 9.725878] of_get_named_gpiod_flags: parsed 'los-gpio' property of node '/sfp-p50[0]' - status (0) [ 9.736119] rtl8231-expander realtek-aux-mdio:03: request pin 33 (gpio33) for realtek-aux-mdio:03:569 [ 9.746594] gpio gpiochip1: Persistence not supported for GPIO 33 [ 9.753452] sfp sfp-p50: using DT '/sfp-p50' for 'tx-fault' GPIO lookup [ 9.760947] of_get_named_gpiod_flags: can't parse 'tx-fault-gpios' property of node '/sfp-p50[0]' [ 9.770989] of_get_named_gpiod_flags: parsed 'tx-fault-gpio' property of node '/sfp-p50[0]' - status (0) [ 9.781721] rtl8231-expander realtek-aux-mdio:03: request pin 28 (gpio28) for realtek-aux-mdio:03:564 [ 9.792122] gpio gpiochip1: Persistence not supported for GPIO 28 [ 9.799048] sfp sfp-p50: using DT '/sfp-p50' for 'tx-disable' GPIO lookup [ 9.806746] of_get_named_gpiod_flags: can't parse 'tx-disable-gpios' property of node '/sfp-p50[0]' [ 9.816972] of_get_named_gpiod_flags: parsed 'tx-disable-gpio' property of node '/sfp-p50[0]' - status (0) [ 9.827876] rtl8231-expander realtek-aux-mdio:03: request pin 29 (gpio29) for realtek-aux-mdio:03:565 [ 9.838308] gpio gpiochip1: Persistence not supported for GPIO 29 [ 9.845123] gpio-565 (tx-disable): no flags found for GPIO tx-disable [ 9.852408] sfp sfp-p50: using DT '/sfp-p50' for 'rate-select0' GPIO lookup [ 9.860306] of_get_named_gpiod_flags: can't parse 'rate-select0-gpios' property of node '/sfp-p50[0]' [ 9.870715] of_get_named_gpiod_flags: can't parse 'rate-select0-gpio' property of node '/sfp-p50[0]' [ 9.881018] sfp sfp-p50: using lookup tables for GPIO lookup [ 9.887424] sfp sfp-p50: No GPIO consumer rate-select0 found [ 9.893755] sfp sfp-p50: using DT '/sfp-p50' for 'rate-select1' GPIO lookup [ 9.901652] of_get_named_gpiod_flags: can't parse 'rate-select1-gpios' property of node '/sfp-p50[0]' [ 9.912068] of_get_named_gpiod_flags: can't parse 'rate-select1-gpio' property of node '/sfp-p50[0]' [ 9.922386] sfp sfp-p50: using lookup tables for GPIO lookup [ 9.928792] sfp sfp-p50: No GPIO consumer rate-select1 found [ 9.935125] sfp sfp-p50: Host maximum power 1.0W [ 9.940874] gpiod_set_value_cansleep: invalid GPIO (errorpointer) [ 9.948048] rtl8231-expander realtek-aux-mdio:00: using DT '/switchcore@1b000000/mdio-aux/expander@0' for 'reset' GPIO lookup [ 9.960850] of_get_named_gpiod_flags: parsed 'reset-gpios' property of node '/switchcore@1b000000/mdio-aux/expander@0[0]' - status (0) [ 9.974483] rtl8231-expander realtek-aux-mdio:03: request pin 8 (gpio8) for realtek-aux-mdio:03:544 [ 9.984711] gpio gpiochip1: Persistence not supported for GPIO 8 [ 9.991800] rtl8231-pinctrl rtl8231-pinctrl.1.auto: no of_node; not parsing pinctrl DT [ 10.001260] rtl8231-expander realtek-aux-mdio:00: try to register 37 pins ... [ 10.009326] pinctrl core: registered pin 0 (gpio0) on rtl8231-pinctrl [ 10.016663] pinctrl core: registered pin 1 (gpio1) on rtl8231-pinctrl [ 10.023876] pinctrl core: registered pin 2 (gpio2) on rtl8231-pinctrl [ 10.031156] pinctrl core: registered pin 3 (gpio3) on rtl8231-pinctrl [ 10.038467] pinctrl core: registered pin 4 (gpio4) on rtl8231-pinctrl [ 10.045772] pinctrl core: registered pin 5 (gpio5) on rtl8231-pinctrl [ 10.052976] pinctrl core: registered pin 6 (gpio6) on rtl8231-pinctrl [ 10.060258] pinctrl core: registered pin 7 (gpio7) on rtl8231-pinctrl [ 10.067567] pinctrl core: registered pin 8 (gpio8) on rtl8231-pinctrl [ 10.074775] pinctrl core: registered pin 9 (gpio9) on rtl8231-pinctrl [ 10.082164] pinctrl core: registered pin 10 (gpio10) on rtl8231-pinctrl [ 10.089663] pinctrl core: registered pin 11 (gpio11) on rtl8231-pinctrl [ 10.097168] pinctrl core: registered pin 12 (gpio12) on rtl8231-pinctrl [ 10.104572] pinctrl core: registered pin 13 (gpio13) on rtl8231-pinctrl [ 10.112037] pinctrl core: registered pin 14 (gpio14) on rtl8231-pinctrl [ 10.119496] pinctrl core: registered pin 15 (gpio15) on rtl8231-pinctrl [ 10.126954] pinctrl core: registered pin 16 (gpio16) on rtl8231-pinctrl [ 10.134353] pinctrl core: registered pin 17 (gpio17) on rtl8231-pinctrl [ 10.141842] pinctrl core: registered pin 18 (gpio18) on rtl8231-pinctrl [ 10.149312] pinctrl core: registered pin 19 (gpio19) on rtl8231-pinctrl [ 10.156781] pinctrl core: registered pin 20 (gpio20) on rtl8231-pinctrl [ 10.164183] pinctrl core: registered pin 21 (gpio21) on rtl8231-pinctrl [ 10.171615] pinctrl core: registered pin 22 (gpio22) on rtl8231-pinctrl [ 10.179069] pinctrl core: registered pin 23 (gpio23) on rtl8231-pinctrl [ 10.186529] pinctrl core: registered pin 24 (gpio24) on rtl8231-pinctrl [ 10.193927] pinctrl core: registered pin 25 (gpio25) on rtl8231-pinctrl [ 10.201396] pinctrl core: registered pin 26 (gpio26) on rtl8231-pinctrl [ 10.208856] pinctrl core: registered pin 27 (gpio27) on rtl8231-pinctrl [ 10.216321] pinctrl core: registered pin 28 (gpio28) on rtl8231-pinctrl [ 10.223724] pinctrl core: registered pin 29 (gpio29) on rtl8231-pinctrl [ 10.231154] pinctrl core: registered pin 30 (gpio30) on rtl8231-pinctrl [ 10.238609] pinctrl core: registered pin 31 (gpio31) on rtl8231-pinctrl [ 10.246070] pinctrl core: registered pin 32 (gpio32) on rtl8231-pinctrl [ 10.253468] pinctrl core: registered pin 33 (gpio33) on rtl8231-pinctrl [ 10.260937] pinctrl core: registered pin 34 (gpio34) on rtl8231-pinctrl [ 10.268397] pinctrl core: registered pin 35 (gpio35) on rtl8231-pinctrl [ 10.275863] pinctrl core: registered pin 36 (gpio36) on rtl8231-pinctrl [ 10.283306] rtl8231-expander realtek-aux-mdio:00: no hogs found [ 10.290095] gpiochip_find_base_unlocked: found new base at 573 [ 10.296977] gpio gpiochip2: (realtek-aux-mdio:00): created GPIO range 0->36 ==> realtek-aux-mdio:00 PIN 0->36 [ 10.308341] gpio gpiochip2: (realtek-aux-mdio:00): added GPIO chardev (254:2) [ 10.316596] gpio gpiochip2: registered GPIOs 573 to 609 on realtek-aux-mdio:00 [ 10.325198] pinctrl core: add 20 pinctrl maps [ 10.330234] rtl8231-expander realtek-aux-mdio:00: found group selector 0 for gpio0 [ 10.338782] rtl8231-expander realtek-aux-mdio:00: found group selector 1 for gpio1 [ 10.347375] rtl8231-expander realtek-aux-mdio:00: found group selector 2 for gpio2 [ 10.355911] rtl8231-expander realtek-aux-mdio:00: found group selector 3 for gpio3 [ 10.364382] rtl8231-expander realtek-aux-mdio:00: found group selector 4 for gpio4 [ 10.372910] rtl8231-expander realtek-aux-mdio:00: found group selector 5 for gpio5 [ 10.381468] rtl8231-expander realtek-aux-mdio:00: found group selector 6 for gpio6 [ 10.390004] rtl8231-expander realtek-aux-mdio:00: found group selector 7 for gpio7 [ 10.398549] rtl8231-expander realtek-aux-mdio:00: found group selector 8 for gpio8 [ 10.407081] rtl8231-expander realtek-aux-mdio:00: found group selector 9 for gpio9 [ 10.415611] rtl8231-expander realtek-aux-mdio:00: found group selector 10 for gpio10 [ 10.424277] rtl8231-expander realtek-aux-mdio:00: found group selector 11 for gpio11 [ 10.432998] rtl8231-expander realtek-aux-mdio:00: found group selector 12 for gpio12 [ 10.441758] rtl8231-expander realtek-aux-mdio:00: found group selector 13 for gpio13 [ 10.450485] rtl8231-expander realtek-aux-mdio:00: found group selector 14 for gpio14 [ 10.459228] rtl8231-expander realtek-aux-mdio:00: found group selector 15 for gpio15 [ 10.467961] rtl8231-expander realtek-aux-mdio:00: found group selector 16 for gpio16 [ 10.476693] rtl8231-expander realtek-aux-mdio:00: found group selector 17 for gpio17 [ 10.485429] rtl8231-expander realtek-aux-mdio:00: found group selector 18 for gpio18 [ 10.494097] rtl8231-expander realtek-aux-mdio:00: found group selector 19 for gpio19 [ 10.502836] rtl8231-expander realtek-aux-mdio:00: request pin 0 (gpio0) for rtl8231-leds.2.auto [ 10.512630] rtl8231-expander realtek-aux-mdio:00: request pin 1 (gpio1) for rtl8231-leds.2.auto [ 10.522436] rtl8231-expander realtek-aux-mdio:00: request pin 2 (gpio2) for rtl8231-leds.2.auto [ 10.532234] rtl8231-expander realtek-aux-mdio:00: request pin 3 (gpio3) for rtl8231-leds.2.auto [ 10.542076] rtl8231-expander realtek-aux-mdio:00: request pin 4 (gpio4) for rtl8231-leds.2.auto [ 10.551882] rtl8231-expander realtek-aux-mdio:00: request pin 5 (gpio5) for rtl8231-leds.2.auto [ 10.561710] rtl8231-expander realtek-aux-mdio:00: request pin 6 (gpio6) for rtl8231-leds.2.auto [ 10.571499] rtl8231-expander realtek-aux-mdio:00: request pin 7 (gpio7) for rtl8231-leds.2.auto [ 10.581308] rtl8231-expander realtek-aux-mdio:00: request pin 8 (gpio8) for rtl8231-leds.2.auto [ 10.591109] rtl8231-expander realtek-aux-mdio:00: request pin 9 (gpio9) for rtl8231-leds.2.auto [ 10.600906] rtl8231-expander realtek-aux-mdio:00: request pin 10 (gpio10) for rtl8231-leds.2.auto [ 10.610901] rtl8231-expander realtek-aux-mdio:00: request pin 11 (gpio11) for rtl8231-leds.2.auto [ 10.620916] rtl8231-expander realtek-aux-mdio:00: request pin 12 (gpio12) for rtl8231-leds.2.auto [ 10.630899] rtl8231-expander realtek-aux-mdio:00: request pin 13 (gpio13) for rtl8231-leds.2.auto [ 10.640901] rtl8231-expander realtek-aux-mdio:00: request pin 14 (gpio14) for rtl8231-leds.2.auto [ 10.650884] rtl8231-expander realtek-aux-mdio:00: request pin 15 (gpio15) for rtl8231-leds.2.auto [ 10.660879] rtl8231-expander realtek-aux-mdio:00: request pin 16 (gpio16) for rtl8231-leds.2.auto [ 10.670870] rtl8231-expander realtek-aux-mdio:00: request pin 17 (gpio17) for rtl8231-leds.2.auto [ 10.680887] rtl8231-expander realtek-aux-mdio:00: request pin 18 (gpio18) for rtl8231-leds.2.auto [ 10.690872] rtl8231-expander realtek-aux-mdio:00: request pin 19 (gpio19) for rtl8231-leds.2.auto [ 10.700888] rtl8231-leds rtl8231-leds.2.auto: DMA mask not set [ 10.721558] mdio_bus rtldsa_mdio-0: using lookup tables for GPIO lookup [ 10.729152] mdio_bus rtldsa_mdio-0: No GPIO consumer reset found [ 10.741880] In rtldsa_vlan_setup [ 11.815353] rtldsa_enable_phy_polling: 3ffffffffffff [ 12.855626] (NULL device *): using DT '/switchcore@1b000000/ethernet-switch/ethernet-ports/port@52/fixed-link' for 'link' GPIO lookup [ 12.869140] of_get_named_gpiod_flags: can't parse 'link-gpios' property of node '/switchcore@1b000000/ethernet-switch/ethernet-ports/port@52/fixed-link[0]' [ 12.884767] of_get_named_gpiod_flags: can't parse 'link-gpio' property of node '/switchcore@1b000000/ethernet-switch/ethernet-ports/port@52/fixed-link[0]' [ 12.900285] (NULL device *): No GPIO consumer link found [ 12.906330] rtl83xx-switch 1b000000.switchcore:ethernet-switch: configuring for fixed/internal link mode [ 12.917399] rtl83xx-switch 1b000000.switchcore:ethernet-switch: Link is Up - 1Gbps/Full - flow control off [ 12.936748] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan1 (uninitialized): PHY [realtek-mdio:00] driver [Realtek RTL8218B (external)] (irq=POLL) [ 12.956019] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan2 (uninitialized): PHY [realtek-mdio:01] driver [Realtek RTL8218B (external)] (irq=POLL) [ 12.975518] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan3 (uninitialized): PHY [realtek-mdio:02] driver [Realtek RTL8218B (external)] (irq=POLL) [ 12.994996] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan4 (uninitialized): PHY [realtek-mdio:03] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.014646] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan5 (uninitialized): PHY [realtek-mdio:04] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.033805] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan6 (uninitialized): PHY [realtek-mdio:05] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.053112] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan7 (uninitialized): PHY [realtek-mdio:06] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.072375] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan8 (uninitialized): PHY [realtek-mdio:07] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.109714] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan9 (uninitialized): PHY [realtek-mdio:08] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.129375] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan10 (uninitialized): PHY [realtek-mdio:09] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.149028] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan11 (uninitialized): PHY [realtek-mdio:0a] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.169125] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan12 (uninitialized): PHY [realtek-mdio:0b] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.188806] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan13 (uninitialized): PHY [realtek-mdio:0c] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.208544] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan14 (uninitialized): PHY [realtek-mdio:0d] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.228051] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan15 (uninitialized): PHY [realtek-mdio:0e] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.247332] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan16 (uninitialized): PHY [realtek-mdio:0f] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.285038] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan17 (uninitialized): PHY [realtek-mdio:10] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.304281] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan18 (uninitialized): PHY [realtek-mdio:11] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.323938] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan19 (uninitialized): PHY [realtek-mdio:12] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.343648] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan20 (uninitialized): PHY [realtek-mdio:13] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.362896] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan21 (uninitialized): PHY [realtek-mdio:14] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.382185] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan22 (uninitialized): PHY [realtek-mdio:15] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.401847] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan23 (uninitialized): PHY [realtek-mdio:16] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.421454] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan24 (uninitialized): PHY [realtek-mdio:17] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.459276] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan25 (uninitialized): PHY [realtek-mdio:18] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.478887] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan26 (uninitialized): PHY [realtek-mdio:19] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.498512] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan27 (uninitialized): PHY [realtek-mdio:1a] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.518220] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan28 (uninitialized): PHY [realtek-mdio:1b] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.537894] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan29 (uninitialized): PHY [realtek-mdio:1c] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.557231] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan30 (uninitialized): PHY [realtek-mdio:1d] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.576836] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan31 (uninitialized): PHY [realtek-mdio:1e] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.596521] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan32 (uninitialized): PHY [realtek-mdio:1f] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.634266] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan33 (uninitialized): PHY [realtek-mdio:20] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.653463] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan34 (uninitialized): PHY [realtek-mdio:21] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.672705] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan35 (uninitialized): PHY [realtek-mdio:22] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.691997] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan36 (uninitialized): PHY [realtek-mdio:23] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.711204] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan37 (uninitialized): PHY [realtek-mdio:24] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.730437] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan38 (uninitialized): PHY [realtek-mdio:25] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.749671] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan39 (uninitialized): PHY [realtek-mdio:26] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.768992] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan40 (uninitialized): PHY [realtek-mdio:27] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.807152] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan41 (uninitialized): PHY [realtek-mdio:28] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.826323] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan42 (uninitialized): PHY [realtek-mdio:29] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.845704] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan43 (uninitialized): PHY [realtek-mdio:2a] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.864821] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan44 (uninitialized): PHY [realtek-mdio:2b] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.884079] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan45 (uninitialized): PHY [realtek-mdio:2c] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.903326] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan46 (uninitialized): PHY [realtek-mdio:2d] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.922555] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan47 (uninitialized): PHY [realtek-mdio:2e] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.941814] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan48 (uninitialized): PHY [realtek-mdio:2f] driver [Realtek RTL8218B (external)] (irq=POLL) [ 13.962923] rtl838x_eth 1b000000.switchcore:ethernet eth0: entered promiscuous mode [ 13.971731] DSA: tree 0 setup [ 13.975162] LINK state irq: 20 [ 13.978708] Setting up RTL839X QoS [ 13.982511] RTL839X_PRI_SEL_TBL_CTRL(i): 01112111 [ 13.987792] Current Intprio2queue setting: 00000000 [ 13.993247] QM_PKT2CPU_INTPRI_MAP: 00fac688 [ 13.998300] rtl838x_dbgfs_init called [ 14.002469] rtl83xx_fib_event_work_do: FIB4 default rule failed [ 14.014411] rtl83xx_fib_event_work_do: FIB4 default rule failed [ 14.021269] clk: Disabling unused clocks [ 14.032759] VFS: Mounted root (squashfs filesystem) readonly on device 31:7. [ 14.047186] Freeing unused kernel image (initmem) memory: 1304K [ 14.053818] This architecture does not have kernel memory protection. [ 14.061081] Run /sbin/init as init process [ 14.065730] with arguments: [ 14.069057] /sbin/init [ 14.072075] with environment: [ 14.075638] HOME=/ [ 14.078289] TERM=linux [ 14.699159] init: Console is alive [ 14.703409] init: - watchdog - [ 15.088149] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 15.152955] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 15.161613] gpio-keys-polled keys: using DT '/keys/reset' for '(default)' GPIO lookup [ 15.170505] of_get_named_gpiod_flags: parsed 'gpios' property of node '/keys/reset[0]' - status (0) [ 15.180778] rtl8231-expander realtek-aux-mdio:03: request pin 3 (gpio3) for realtek-aux-mdio:03:539 [ 15.191018] gpio gpiochip1: Persistence not supported for GPIO 3 [ 15.199964] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 15.217120] init: - preinit - [ 17.475398] random: crng init done [ 21.564341] RESETTING CPU_PORT 52 [ 21.767803] rtl838x_eth 1b000000.switchcore:ethernet eth0: configuring for fixed/internal link mode [ 21.777920] In rteth_mac_config, mode 1 [ 21.783607] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan1: configuring for phy/qsgmii link mode [ 21.794386] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 0 for mode qsgmii [ 21.803650] rtl838x_eth 1b000000.switchcore:ethernet eth0: Link is Up - 1Gbps/Full - flow control off [ 21.805620] 8021q: adding VLAN 0 to HW filter on device lan1 [ 21.821120] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 21.828846] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 21.841900] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 192.168.1.1/32 (VLAN 0, MAC 00:11:22:00:11:22) [ 21.854737] rtl83xx-switch 1b000000.switchcore:ethernet-switch: lower interface lan1 not found [ 21.864505] rtl83xx-switch 1b000000.switchcore:ethernet-switch: fib_add() failed [ 21.874186] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 192.168.1.255/32 (VLAN 0, MAC 00:11:22:00:11:22) [ 21.887152] rtl83xx-switch 1b000000.switchcore:ethernet-switch: skip loopback/broadcast addresses and default routes [ 21.898999] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 192.168.1.0/24 (VLAN 0, MAC 00:11:22:00:11:22) [ 21.911758] rtl83xx-switch 1b000000.switchcore:ethernet-switch: lower interface lan1 not found [ 21.921515] rtl83xx-switch 1b000000.switchcore:ethernet-switch: fib_add() failed [ 23.415378] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 26.279524] mount_root: jffs2 not ready yet, using temporary tmpfs overlay [ 26.296154] urandom-seed: Seed file not found (/etc/urandom.seed) [ 26.421974] rtl83xx-switch 1b000000.switchcore:ethernet-switch: delete IPv4 route 192.168.1.0/24 (VLAN 0, MAC 00:11:22:00:11:22) [ 26.435057] rtl83xx-switch 1b000000.switchcore:ethernet-switch: no such gateway: 0.0.0.0 [ 26.444186] rtl83xx-switch 1b000000.switchcore:ethernet-switch: fib_del() failed [ 26.452651] rtl83xx-switch 1b000000.switchcore:ethernet-switch: delete IPv4 route 192.168.1.255/32 (VLAN 0, MAC 00:11:22:00:11:22) [ 26.465928] rtl83xx-switch 1b000000.switchcore:ethernet-switch: skip loopback/broadcast addresses and default routes [ 26.479897] rtl83xx-switch 1b000000.switchcore:ethernet-switch: delete IPv4 route 192.168.1.1/32 (VLAN 0, MAC 00:11:22:00:11:22) [ 26.493009] rtl83xx-switch 1b000000.switchcore:ethernet-switch: no such gateway: 0.0.0.0 [ 26.502351] rtl83xx-switch 1b000000.switchcore:ethernet-switch: fib_del() failed [ 26.508975] procd: - early - [ 26.514328] procd: - watchdog - [ 27.235041] procd: - watchdog - [ 27.239860] procd: - ubus - [ 27.402365] procd: - init - [ 28.408944] kmodloader: loading kernel modules from /etc/modules.d/* [ 28.759304] kmodloader: done loading kernel modules from /etc/modules.d/* [ 30.145777] urngd: v1.0.2 started. [ 37.101826] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 61.583695] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 61.651215] in rteth_stop [ 61.654328] rtl838x_eth 1b000000.switchcore:ethernet eth0: Link is Down [ 62.440621] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 62.448056] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 62.455588] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 62.462980] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 62.485092] RESETTING CPU_PORT 52 [ 62.729632] rtl838x_eth 1b000000.switchcore:ethernet eth0: configuring for fixed/internal link mode [ 62.739822] In rteth_mac_config, mode 1 [ 62.745590] rtl838x_eth 1b000000.switchcore:ethernet eth0: Link is Up - 1Gbps/Full - flow control off [ 62.755567] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 62.763363] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 62.791326] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan1: configuring for phy/qsgmii link mode [ 62.802208] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 0 for mode qsgmii [ 62.845911] 8021q: adding VLAN 0 to HW filter on device lan1 [ 62.866898] switch: port 1(lan1) entered blocking state [ 62.872789] switch: port 1(lan1) entered disabled state [ 62.879489] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan1: entered allmulticast mode [ 62.890905] rtl838x_eth 1b000000.switchcore:ethernet eth0: entered allmulticast mode [ 62.901949] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan1: entered promiscuous mode [ 63.039474] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 63.047160] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 192.168.1.1/32 (VLAN 1, MAC 00:11:22:00:11:22) [ 63.060118] rtl83xx-switch 1b000000.switchcore:ethernet-switch: route hashtable extended for gw 0.0.0.0 [ 63.077623] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 63.125529] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 192.168.1.255/32 (VLAN 1, MAC 00:11:22:00:11:22) [ 63.138579] rtl83xx-switch 1b000000.switchcore:ethernet-switch: skip loopback/broadcast addresses and default routes [ 63.231136] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 192.168.1.0/24 (VLAN 1, MAC 00:11:22:00:11:22) [ 63.244059] rtl83xx-switch 1b000000.switchcore:ethernet-switch: route hashtable extended for gw 0.0.0.0 [ 63.256836] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan2: configuring for phy/qsgmii link mode [ 63.267823] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 0 for mode qsgmii [ 63.345838] 8021q: adding VLAN 0 to HW filter on device lan2 [ 63.353070] switch: port 2(lan2) entered blocking state [ 63.359269] switch: port 2(lan2) entered disabled state [ 63.365515] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan2: entered allmulticast mode [ 63.448205] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan2: entered promiscuous mode [ 63.523703] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan3: configuring for phy/qsgmii link mode [ 63.534601] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 0 for mode qsgmii [ 63.565838] 8021q: adding VLAN 0 to HW filter on device lan3 [ 63.595576] switch: port 3(lan3) entered blocking state [ 63.601516] switch: port 3(lan3) entered disabled state [ 63.607586] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan3: entered allmulticast mode [ 63.636458] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan3: entered promiscuous mode [ 63.717426] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan4: configuring for phy/qsgmii link mode [ 63.728412] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 0 for mode qsgmii [ 63.741456] 8021q: adding VLAN 0 to HW filter on device lan4 [ 63.798264] switch: port 4(lan4) entered blocking state [ 63.804267] switch: port 4(lan4) entered disabled state [ 63.810479] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan4: entered allmulticast mode [ 63.866429] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan4: entered promiscuous mode [ 63.935041] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan5: configuring for phy/qsgmii link mode [ 63.945990] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 1 for mode qsgmii [ 63.958468] 8021q: adding VLAN 0 to HW filter on device lan5 [ 63.972275] switch: port 5(lan5) entered blocking state [ 63.978410] switch: port 5(lan5) entered disabled state [ 63.984422] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan5: entered allmulticast mode [ 63.999478] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan5: entered promiscuous mode [ 64.052909] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan6: configuring for phy/qsgmii link mode [ 64.065213] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 1 for mode qsgmii [ 64.105794] 8021q: adding VLAN 0 to HW filter on device lan6 [ 64.117721] switch: port 6(lan6) entered blocking state [ 64.123616] switch: port 6(lan6) entered disabled state [ 64.129715] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan6: entered allmulticast mode [ 64.140912] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan6: entered promiscuous mode [ 64.225162] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan7: configuring for phy/qsgmii link mode [ 64.236113] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 1 for mode qsgmii [ 64.275689] 8021q: adding VLAN 0 to HW filter on device lan7 [ 64.289667] switch: port 7(lan7) entered blocking state [ 64.295873] switch: port 7(lan7) entered disabled state [ 64.301856] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan7: entered allmulticast mode [ 64.313042] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan7: entered promiscuous mode [ 64.359239] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan8: configuring for phy/qsgmii link mode [ 64.370181] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 1 for mode qsgmii [ 64.383780] 8021q: adding VLAN 0 to HW filter on device lan8 [ 64.403173] switch: port 8(lan8) entered blocking state [ 64.409201] switch: port 8(lan8) entered disabled state [ 64.415153] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan8: entered allmulticast mode [ 64.426642] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan8: entered promiscuous mode [ 64.496330] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan9: configuring for phy/qsgmii link mode [ 64.507330] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 2 for mode qsgmii [ 64.531301] 8021q: adding VLAN 0 to HW filter on device lan9 [ 64.551735] switch: port 9(lan9) entered blocking state [ 64.557897] switch: port 9(lan9) entered disabled state [ 64.563908] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan9: entered allmulticast mode [ 64.575487] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan9: entered promiscuous mode [ 64.660467] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan10: configuring for phy/qsgmii link mode [ 64.671473] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 2 for mode qsgmii [ 64.700905] 8021q: adding VLAN 0 to HW filter on device lan10 [ 64.716208] switch: port 10(lan10) entered blocking state [ 64.722315] switch: port 10(lan10) entered disabled state [ 64.728620] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan10: entered allmulticast mode [ 64.774170] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan10: entered promiscuous mode [ 64.785108] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 64.792789] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 64.836295] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan11: configuring for phy/qsgmii link mode [ 64.847328] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 2 for mode qsgmii [ 64.870773] 8021q: adding VLAN 0 to HW filter on device lan11 [ 64.888993] switch: port 11(lan11) entered blocking state [ 64.895110] switch: port 11(lan11) entered disabled state [ 64.901657] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan11: entered allmulticast mode [ 64.913132] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan11: entered promiscuous mode [ 65.017304] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan12: configuring for phy/qsgmii link mode [ 65.028451] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 2 for mode qsgmii [ 65.056208] 8021q: adding VLAN 0 to HW filter on device lan12 [ 65.076192] switch: port 12(lan12) entered blocking state [ 65.082300] switch: port 12(lan12) entered disabled state [ 65.088638] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan12: entered allmulticast mode [ 65.100268] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan12: entered promiscuous mode [ 65.143938] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan13: configuring for phy/qsgmii link mode [ 65.154927] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 3 for mode qsgmii [ 65.185692] 8021q: adding VLAN 0 to HW filter on device lan13 [ 65.200863] switch: port 13(lan13) entered blocking state [ 65.207115] switch: port 13(lan13) entered disabled state [ 65.213332] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan13: entered allmulticast mode [ 65.224354] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan13: entered promiscuous mode [ 65.262225] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan14: configuring for phy/qsgmii link mode [ 65.273250] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 3 for mode qsgmii [ 65.285012] 8021q: adding VLAN 0 to HW filter on device lan14 [ 65.299522] switch: port 14(lan14) entered blocking state [ 65.305752] switch: port 14(lan14) entered disabled state [ 65.311922] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan14: entered allmulticast mode [ 65.323392] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan14: entered promiscuous mode [ 65.364073] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan15: configuring for phy/qsgmii link mode [ 65.375088] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 3 for mode qsgmii [ 65.385122] 8021q: adding VLAN 0 to HW filter on device lan15 [ 65.398322] switch: port 15(lan15) entered blocking state [ 65.404417] switch: port 15(lan15) entered disabled state [ 65.410824] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan15: entered allmulticast mode [ 65.422302] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan15: entered promiscuous mode [ 65.472162] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan16: configuring for phy/qsgmii link mode [ 65.483120] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 3 for mode qsgmii [ 65.495648] 8021q: adding VLAN 0 to HW filter on device lan16 [ 65.511347] switch: port 16(lan16) entered blocking state [ 65.517563] switch: port 16(lan16) entered disabled state [ 65.523710] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan16: entered allmulticast mode [ 65.535472] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan16: entered promiscuous mode [ 65.571455] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan17: configuring for phy/qsgmii link mode [ 65.582487] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 4 for mode qsgmii [ 65.593939] 8021q: adding VLAN 0 to HW filter on device lan17 [ 65.610075] switch: port 17(lan17) entered blocking state [ 65.616293] switch: port 17(lan17) entered disabled state [ 65.622436] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan17: entered allmulticast mode [ 65.634009] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan17: entered promiscuous mode [ 65.671159] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan18: configuring for phy/qsgmii link mode [ 65.682217] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 4 for mode qsgmii [ 65.695749] 8021q: adding VLAN 0 to HW filter on device lan18 [ 65.708733] switch: port 18(lan18) entered blocking state [ 65.714833] switch: port 18(lan18) entered disabled state [ 65.721177] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan18: entered allmulticast mode [ 65.733080] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan18: entered promiscuous mode [ 65.779755] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan19: configuring for phy/qsgmii link mode [ 65.790770] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 4 for mode qsgmii [ 65.800760] 8021q: adding VLAN 0 to HW filter on device lan19 [ 65.814098] switch: port 19(lan19) entered blocking state [ 65.820414] switch: port 19(lan19) entered disabled state [ 65.826674] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan19: entered allmulticast mode [ 65.838304] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan19: entered promiscuous mode [ 65.873052] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan20: configuring for phy/qsgmii link mode [ 65.884109] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 4 for mode qsgmii [ 65.894092] 8021q: adding VLAN 0 to HW filter on device lan20 [ 65.912404] switch: port 20(lan20) entered blocking state [ 65.918722] switch: port 20(lan20) entered disabled state [ 65.924888] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan20: entered allmulticast mode [ 65.936865] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan20: entered promiscuous mode [ 65.970384] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan21: configuring for phy/qsgmii link mode [ 65.981414] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 5 for mode qsgmii [ 65.991247] 8021q: adding VLAN 0 to HW filter on device lan21 [ 66.004309] switch: port 21(lan21) entered blocking state [ 66.010603] switch: port 21(lan21) entered disabled state [ 66.016945] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan21: entered allmulticast mode [ 66.028826] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan21: entered promiscuous mode [ 66.067718] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan22: configuring for phy/qsgmii link mode [ 66.078782] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 5 for mode qsgmii [ 66.088794] 8021q: adding VLAN 0 to HW filter on device lan22 [ 66.102097] switch: port 22(lan22) entered blocking state [ 66.108438] switch: port 22(lan22) entered disabled state [ 66.114615] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan22: entered allmulticast mode [ 66.126572] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan22: entered promiscuous mode [ 66.164872] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan23: configuring for phy/qsgmii link mode [ 66.175911] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 5 for mode qsgmii [ 66.185823] 8021q: adding VLAN 0 to HW filter on device lan23 [ 66.198225] switch: port 23(lan23) entered blocking state [ 66.204309] switch: port 23(lan23) entered disabled state [ 66.210693] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan23: entered allmulticast mode [ 66.222682] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan23: entered promiscuous mode [ 66.265516] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan24: configuring for phy/qsgmii link mode [ 66.276532] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 5 for mode qsgmii [ 66.286518] 8021q: adding VLAN 0 to HW filter on device lan24 [ 66.299435] switch: port 24(lan24) entered blocking state [ 66.305658] switch: port 24(lan24) entered disabled state [ 66.311840] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan24: entered allmulticast mode [ 66.323815] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan24: entered promiscuous mode [ 66.358318] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan25: configuring for phy/qsgmii link mode [ 66.369360] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 6 for mode qsgmii [ 66.379469] 8021q: adding VLAN 0 to HW filter on device lan25 [ 66.397663] switch: port 25(lan25) entered blocking state [ 66.403763] switch: port 25(lan25) entered disabled state [ 66.410100] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan25: entered allmulticast mode [ 66.422247] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan25: entered promiscuous mode [ 66.456021] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan26: configuring for phy/qsgmii link mode [ 66.466972] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 6 for mode qsgmii [ 66.477029] 8021q: adding VLAN 0 to HW filter on device lan26 [ 66.495084] switch: port 26(lan26) entered blocking state [ 66.501329] switch: port 26(lan26) entered disabled state [ 66.507647] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan26: entered allmulticast mode [ 66.519853] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan26: entered promiscuous mode [ 66.558172] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan27: configuring for phy/qsgmii link mode [ 66.569303] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 6 for mode qsgmii [ 66.579092] 8021q: adding VLAN 0 to HW filter on device lan27 [ 66.592150] switch: port 27(lan27) entered blocking state [ 66.598432] switch: port 27(lan27) entered disabled state [ 66.604608] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan27: entered allmulticast mode [ 66.616997] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan27: entered promiscuous mode [ 66.653907] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan28: configuring for phy/qsgmii link mode [ 66.664944] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 6 for mode qsgmii [ 66.674982] 8021q: adding VLAN 0 to HW filter on device lan28 [ 66.688020] switch: port 28(lan28) entered blocking state [ 66.694133] switch: port 28(lan28) entered disabled state [ 66.700481] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan28: entered allmulticast mode [ 66.712921] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan28: entered promiscuous mode [ 66.750925] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan29: configuring for phy/qsgmii link mode [ 66.761902] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 7 for mode qsgmii [ 66.772470] 8021q: adding VLAN 0 to HW filter on device lan29 [ 66.790435] switch: port 29(lan29) entered blocking state [ 66.796708] switch: port 29(lan29) entered disabled state [ 66.802853] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan29: entered allmulticast mode [ 66.815443] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan29: entered promiscuous mode [ 66.855527] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan30: configuring for phy/qsgmii link mode [ 66.866575] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 7 for mode qsgmii [ 66.879365] 8021q: adding VLAN 0 to HW filter on device lan30 [ 66.895143] switch: port 30(lan30) entered blocking state [ 66.901473] switch: port 30(lan30) entered disabled state [ 66.907767] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan30: entered allmulticast mode [ 66.920143] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan30: entered promiscuous mode [ 66.966857] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan31: configuring for phy/qsgmii link mode [ 66.977902] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 7 for mode qsgmii [ 66.990449] 8021q: adding VLAN 0 to HW filter on device lan31 [ 67.006016] switch: port 31(lan31) entered blocking state [ 67.012135] switch: port 31(lan31) entered disabled state [ 67.018556] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan31: entered allmulticast mode [ 67.031217] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan31: entered promiscuous mode [ 67.099117] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan32: configuring for phy/qsgmii link mode [ 67.110266] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 7 for mode qsgmii [ 67.122150] 8021q: adding VLAN 0 to HW filter on device lan32 [ 67.135658] switch: port 32(lan32) entered blocking state [ 67.141761] switch: port 32(lan32) entered disabled state [ 67.148224] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan32: entered allmulticast mode [ 67.160770] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan32: entered promiscuous mode [ 67.197819] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan33: configuring for phy/qsgmii link mode [ 67.208970] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 8 for mode qsgmii [ 67.264504] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan6: Link is Up - 1Gbps/Full - flow control rx/tx [ 67.389127] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0 [ 67.397039] jffs2_build_filesystem(): unlocking the mtd device... [ 67.397158] done. [ 67.406413] jffs2_build_filesystem(): erasing all blocks after the end marker... [ 68.058607] 8021q: adding VLAN 0 to HW filter on device lan33 [ 68.074607] switch: port 6(lan6) entered blocking state [ 68.080602] switch: port 6(lan6) entered forwarding state [ 68.094368] switch: port 33(lan33) entered blocking state [ 68.100524] switch: port 33(lan33) entered disabled state [ 68.106836] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan33: entered allmulticast mode [ 68.119688] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan33: entered promiscuous mode [ 68.158260] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan34: configuring for phy/qsgmii link mode [ 68.170060] 8021q: adding VLAN 0 to HW filter on device lan34 [ 68.183385] switch: port 34(lan34) entered blocking state [ 68.189705] switch: port 34(lan34) entered disabled state [ 68.195980] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan34: entered allmulticast mode [ 68.208910] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan34: entered promiscuous mode [ 68.244895] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan35: configuring for phy/qsgmii link mode [ 68.256578] 8021q: adding VLAN 0 to HW filter on device lan35 [ 68.269093] switch: port 35(lan35) entered blocking state [ 68.275183] switch: port 35(lan35) entered disabled state [ 68.281485] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan35: entered allmulticast mode [ 68.294448] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan35: entered promiscuous mode [ 68.326893] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan36: configuring for phy/qsgmii link mode [ 68.340312] 8021q: adding VLAN 0 to HW filter on device lan36 [ 68.357614] switch: port 36(lan36) entered blocking state [ 68.363706] switch: port 36(lan36) entered disabled state [ 68.370001] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan36: entered allmulticast mode [ 68.383076] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan36: entered promiscuous mode [ 68.413961] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan37: configuring for phy/qsgmii link mode [ 68.424969] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 9 for mode qsgmii [ 69.267593] 8021q: adding VLAN 0 to HW filter on device lan37 [ 69.280840] switch: port 37(lan37) entered blocking state [ 69.287014] switch: port 37(lan37) entered disabled state [ 69.293143] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan37: entered allmulticast mode [ 69.306676] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan37: entered promiscuous mode [ 69.338397] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan38: configuring for phy/qsgmii link mode [ 69.350187] 8021q: adding VLAN 0 to HW filter on device lan38 [ 69.366864] switch: port 38(lan38) entered blocking state [ 69.372957] switch: port 38(lan38) entered disabled state [ 69.379256] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan38: entered allmulticast mode [ 69.392542] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan38: entered promiscuous mode [ 69.428216] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan39: configuring for phy/qsgmii link mode [ 69.439585] 8021q: adding VLAN 0 to HW filter on device lan39 [ 69.452360] switch: port 39(lan39) entered blocking state [ 69.458630] switch: port 39(lan39) entered disabled state [ 69.464770] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan39: entered allmulticast mode [ 69.478533] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan39: entered promiscuous mode [ 69.527583] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan40: configuring for phy/qsgmii link mode [ 69.539622] 8021q: adding VLAN 0 to HW filter on device lan40 [ 69.553211] switch: port 40(lan40) entered blocking state [ 69.559408] switch: port 40(lan40) entered disabled state [ 69.565614] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan40: entered allmulticast mode [ 69.579223] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan40: entered promiscuous mode [ 69.610212] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan41: configuring for phy/qsgmii link mode [ 69.621242] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 10 for mode qsgmii [ 69.631278] 8021q: adding VLAN 0 to HW filter on device lan41 [ 69.644046] switch: port 41(lan41) entered blocking state [ 69.650308] switch: port 41(lan41) entered disabled state [ 69.656966] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan41: entered allmulticast mode [ 69.670399] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan41: entered promiscuous mode [ 69.701036] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan42: configuring for phy/qsgmii link mode [ 69.712058] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 10 for mode qsgmii [ 69.722065] 8021q: adding VLAN 0 to HW filter on device lan42 [ 69.734759] switch: port 42(lan42) entered blocking state [ 69.740999] switch: port 42(lan42) entered disabled state [ 69.747307] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan42: entered allmulticast mode [ 69.761219] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan42: entered promiscuous mode [ 69.792181] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan43: configuring for phy/qsgmii link mode [ 69.806060] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 10 for mode qsgmii [ 69.817708] 8021q: adding VLAN 0 to HW filter on device lan43 [ 69.832696] switch: port 43(lan43) entered blocking state [ 69.838961] switch: port 43(lan43) entered disabled state [ 69.845119] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan43: entered allmulticast mode [ 69.859091] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan43: entered promiscuous mode [ 69.889354] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan44: configuring for phy/qsgmii link mode [ 69.900390] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 10 for mode qsgmii [ 69.913190] 8021q: adding VLAN 0 to HW filter on device lan44 [ 69.926160] switch: port 44(lan44) entered blocking state [ 69.932251] switch: port 44(lan44) entered disabled state [ 69.938527] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan44: entered allmulticast mode [ 69.952507] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan44: entered promiscuous mode [ 69.988872] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan45: configuring for phy/qsgmii link mode [ 69.999841] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 11 for mode qsgmii [ 70.009964] 8021q: adding VLAN 0 to HW filter on device lan45 [ 70.022653] switch: port 45(lan45) entered blocking state [ 70.028931] switch: port 45(lan45) entered disabled state [ 70.035074] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan45: entered allmulticast mode [ 70.049179] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan45: entered promiscuous mode [ 70.088922] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan46: configuring for phy/qsgmii link mode [ 70.099928] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 11 for mode qsgmii [ 70.110719] 8021q: adding VLAN 0 to HW filter on device lan46 [ 70.129267] switch: port 46(lan46) entered blocking state [ 70.135641] switch: port 46(lan46) entered disabled state [ 70.141783] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan46: entered allmulticast mode [ 70.156177] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan46: entered promiscuous mode [ 70.191499] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan47: configuring for phy/qsgmii link mode [ 70.202517] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 11 for mode qsgmii [ 70.212635] 8021q: adding VLAN 0 to HW filter on device lan47 [ 70.225849] switch: port 47(lan47) entered blocking state [ 70.231963] switch: port 47(lan47) entered disabled state [ 70.238293] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan47: entered allmulticast mode [ 70.252518] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan47: entered promiscuous mode [ 70.282728] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan48: configuring for phy/qsgmii link mode [ 70.293768] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 11 for mode qsgmii [ 70.303858] 8021q: adding VLAN 0 to HW filter on device lan48 [ 70.311014] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 70.318591] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 70.344529] switch: port 48(lan48) entered blocking state [ 70.350712] switch: port 48(lan48) entered disabled state [ 70.356994] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan48: entered allmulticast mode [ 70.371425] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan48: entered promiscuous mode [ 70.432288] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan49: configuring for inband/sgmii link mode [ 70.443470] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 12 for mode sgmii [ 70.452704] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan49: pcs_config failed: -ENOTSUPP [ 70.463112] 8021q: adding VLAN 0 to HW filter on device lan49 [ 70.475993] switch: port 49(lan49) entered blocking state [ 70.482082] switch: port 49(lan49) entered disabled state [ 70.488428] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan49: entered allmulticast mode [ 70.503117] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan49: entered promiscuous mode [ 70.534792] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan50: configuring for inband/sgmii link mode [ 70.545999] realtek-otto-pcs 1b000000.switchcore:pcs: configure SerDes 13 for mode sgmii [ 70.555080] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan50: pcs_config failed: -ENOTSUPP [ 70.565570] 8021q: adding VLAN 0 to HW filter on device lan50 [ 70.573250] switch: port 50(lan50) entered blocking state [ 70.579501] switch: port 50(lan50) entered disabled state [ 70.585794] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan50: entered allmulticast mode [ 70.600411] rtl83xx-switch 1b000000.switchcore:ethernet-switch lan50: entered promiscuous mode [ 70.641630] rtl83xx_fib_event: FIB_RULE ADD/DEL for IPv6 not supported [ 70.649343] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 127.0.0.1/32 (VLAN 0, MAC 00:00:00:00:00:00) [ 70.661923] rtl83xx-switch 1b000000.switchcore:ethernet-switch: skip loopback/broadcast addresses and default routes [ 70.697001] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 127.0.0.0/8 (VLAN 0, MAC 00:00:00:00:00:00) [ 70.710368] rtl83xx-switch 1b000000.switchcore:ethernet-switch: skip loopback/broadcast addresses and default routes [ 70.765480] rtl83xx-switch 1b000000.switchcore:ethernet-switch: add IPv4 route 127.255.255.255/32 (VLAN 0, MAC 00:00:00:00:00:00) [ 70.778762] rtl83xx-switch 1b000000.switchcore:ethernet-switch: skip loopback/broadcast addresses and default routes [ 101.919694] done. [ 101.921885] jffs2: notice: (2801) jffs2_build_xattr_subsystem: complete building xattr subsystem, 0 of xdatum (0 unchecked, 0 orphan) and 0 of xref (0 dead, 0 orphan) found. [ 102.069880] overlayfs: upper fs does not support tmpfile.