MERCUSYS MR85X v1
The MERCUSYS MR85X v1 a WiFi 6 AX3000 router. It supports two 802.11ax streams on both 2.4GHz@40MHz and 5GHz@160MHz for a combined 3000Mbps wireless speed. It has 2.5 GBit WAN port.
Supported Versions
Layouts
| Bootloader | OpenWrt Version |
|---|---|
| Stock | 25.12.0 or newer |
| OpenWrt U-Boot (All-in-UBI) | SNAPSHOT |
Experimental Versions
None at this time.
Hardware Highlights
Installation
→ Install OpenWrt (generic explanation)
Warning!
This section describes actions that might damage your device or firmware. Proceed with care! You may need access to the serial console to recovery.
Warning!
There is no ethernet functionality in current official OpenWrt U-Boot due to the specific board configuration:
1. No Realtek RTL8367S switch driver in mainline U-Boot.
2. The Airoha EN8811 PHY is physically routed to GMAC1 rather than the standard GMAC0 pipeline. This requires further adjustment to bind and trace MDIO/PHY operations over GMAC1.
Unofficial OpenWrt U-Boot with Realtek RTL8367S switch driver
Stock bootloader
1. Download files
2. Enter bootloader web recovery (debricking → Stock bootloader) - install 01_mr85x_stock_1.0.0.bin
3. Make configuration reset if you can't login to stock firmware
4. Upgrade stock firmware with 02_mr85x_oem_install.bin (the file was made using this method)
5. Once in OpenWrt initramfs system - perform sysupgrade with official OpenWrt sysupgrade.bin
Stock bootloader (serial console)
1. Attach serial console
2. Place OpenWrt initramfs-kernel.bin image on tftp server with IP 192.168.1.2
3. Attach UART, switch on the router and interrupt the boot process by pressing Ctrl-C
4. Set the uboot environment for startup:
setenv tp_boot_idx 0; saveenv
If the bootarg is set to boot from ubi1, also change it to ubi0.
5. Load and run OpenWrt initramfs image.
setenv serverip 192.168.1.2; setenv ipaddr 192.168.1.1; tftpboot initramfs-kernel.bin; bootm
6. Browse IP 192.168.1.1, upload the sysupgrade image and do upgrade.
OpenWrt U-Boot
1. Install OpenWrt (Stock bootloader)
2. Make mtd backup (Save mtdblock contents - http://192.168.1.1/cgi-bin/luci/admin/system/flash)
3. Download 01_mr85x-UBI-bl2-fip-install.bin
4. Sysupgrade your OpenWrt using 01_mr85x-UBI-bl2-fip-install.bin. This changes flash layout and install OpenWrt U-Boot (with network support). The router will reboot several times. Wait a few minutes until the LED turns a steady orange.
5. Run OpenWrt initramfs environment (debricking → OpenWrt U-Boot → OpenWrt U-Boot with network support)
6. Perform sysupgrade with official OpenWrt mercusys_mr85x-ubi-squashfs-sysupgrade.itb image
OpenWrt U-Boot (serial console)
Preparation
OpenWrt for stock U-Boot should be installed first. Before formatting or rewriting any partition structures, you must copy EEPROM data and unique MAC address. Navigate to the /tmp/tp_data directory on the router. Locate and copy these files to your PC:
- default-mac (contains your device's unique MAC address mapping)
- MT7981_EEPROM.bin (contains factory wireless calibration data)
Installation
1. Initialize the Hardware Environment
Power off the router. Run the mtk_uartboot utility on your computer. Power on the router. Wait for the utility to push the initial payload, boot the device temporarily and format the UBI partition structure.
2. Access the U-Boot Promp
Run mtk_uartboot on your computer a second time. When the utility menu appears on your terminal screen, choose Exit. This will drop you safely into the interactive U-Boot command line interface prompt (MT7981>).
3. Flash the BL2 (preloader)
You must write the second-stage bootloader (BL2) directly to the MTD partition. Prepare the router to receive the BL2 image over serial Ymodem protocol:
MT7981> loady
In your terminal application, select File → Transfer → Ymodem → Send and select the path to openwrt-mediatek-filogic-mercusys_mr85x-ubi-preloader.bin
Erase the existing BL2 partition:
MT7981> mtd erase bl2
Commit the new BL2 binary from RAM to the flash memory:
MT7981> mtd write bl2 $loadaddr 0x0 ${filesize}
4. Provision the FIP Partition (BL31 & U-Boot)
Ready the router to receive the FIP package:
MT7981> loady
In your terminal application, send the following file via Ymodem openwrt-mediatek-filogic-mercusys_mr85x-ubi-bl31-uboot.fip
Clear the legacy tracking data and configure the UBI block allocation:
MT7981> ubi write $loadaddr fip ${filesize}
5. Boot into OpenWrt Recovery
With the core partition structures and boot code firmly written, you can now push and execute the temporary OpenWrt recovery environment to finish the installation. Prepare for the final serial download:
MT7981> loady
Send the following recovery image file via Ymodem openwrt-mediatek-filogic-mercusys_mr85x-ubi-initramfs-recovery.itb
Boot the OpenWrt kernel image directly out of the memory cache:
MT7981> bootm
6. Flash OpenWrt permanently
Once the router finishes booting the initramfs image, navigate to 192.168.1.1 in your web browser to access the OpenWrt LuCI recovery interface. From there, permanently flash the production sysupgrade image.
7. Recovery factory data
Once the router finishes booting into OpenWrt, you must rebuild and flash the factory volume payload. This process combines your unique wireless calibration data and MAC address back into a single compliant block. Use SCP or an SFTP client (like WinSCP) to copy your two backup files from your PC into the router's /tmp directory:
- default-mac
- MT7981_EEPROM.bin
Connect to the router via SSH and run the following commands:
dd if=/dev/zero bs=$((0x8000)) count=1 | tr '\000' '\377' > /tmp/factory.bin dd if=/tmp/MT7981_EEPROM.bin of=/tmp/factory.bin conv=notrunc dd if=/tmp/default-mac >> /tmp/factory.bin
Query the system to confirm the exact logical UBI character device target for the factory volume:
ubinfo /dev/ubi0 -N factory | grep "Volume ID" | awk '{print $3}'
Commit the newly created factory.bin file directly into the designated factory UBI block (replace _1 below if your volume ID query returned a different number):
ubiupdatevol /dev/ubi0_1 /tmp/factory.bin
Reboot your router to apply the changes.
Flash Layout
Stock bootloader
0x0-0x200000 : "boot" 0x200000 0x200000-0x300000 : "u-boot-env" 0x100000 0x300000-0x3500000 : "ubi0" 0x3200000 0x3500000-0x6700000 : "ubi1" 0x3200000 0x6700000-0x6f00000 : "userconfig" 0x800000 0x6f00000-0x7300000 : "tp_data" 0x400000
OpenWrt U-Boot
0x0-0x100000 : "bl2" 0x100000 0x100000-0x8000000 : "ubi" 0x7f00000
OEM easy installation
None at this time.
OEM installation using the TFTP method
None at this time.
Upgrading OpenWrt
LuCI Web Upgrade Process
- Browse to
http://192.168.1.1/cgi-bin/luci/admin/system/flashLuCI Upgrade URL - Upload image file for sysupgrade to LuCI
- Wait for reboot
Terminal Upgrade Process
If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line.
Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.
sysupgrade
- Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp wget http://downloads.openwrt.org/.... sysupgrade /tmp/sysupgrade.bin
Debricking
Stock bootloader
1. Press Reset button and power on the router. Release the button after ~10 sec.
2. Navigate to U-Boot recovery web server (http://192.168.1.1/) and upload the OEM firmware.
Stock bootloader (serial console)
1. Place OpenWrt initramfs image on tftp server with IP 192.168.1.2
2. Attach UART, switch on the router and interrupt the boot process by pressing Ctrl-C
3. Load and run OpenWrt initramfs image:
tftpboot initramfs-kernel.bin bootm
4. Do what you need (restore partitions from a backup, install OpenWrt etc.)
OpenWrt U-Boot
OpenWrt U-Boot with network support:
1. Place OpenWrt openwrt-mediatek-filogic-mercusys_mr85x-ubi-initramfs-recovery.itb image on the tftp server (IP: 192.168.1.254).
2. Press reset button and power on the router. After ~10 sec release the button.
3. Use OpenWrt initramfs system for recovery (restore partitions from a backup, install OpenWrt etc.)
Official OpenWrt U-Boot (without network Realtek switch support)
1. See installation guide installation → OpenWrt U-Boot (serial console)
Full disaster
Use mtk_uartboot and UART connetion if BL2 or FIP in UBI is destroyed:
https://github.com/981213/mtk_uartboot
https://openwrt.org/toh/mercusys/mr85x_v1#serial
sudo ./mtk_uartboot \ -p mt7981-ram-ddr3-bl2.bin \ --aarch64 \ -f openwrt-mediatek-filogic-mercusys_mr85x-ubi-bl31-uboot.fip \ -s /dev/ttyUSB0 picocom -b 115200 --send-cmd "sb -vv" /dev/ttyUSB0
Failsafe mode
Basic configuration
→ Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.
Specific Configuration
The default network configuration is:
| Interface Name | Description | Default configuration |
|---|---|---|
| br-lan | LAN & WiFi | 192.168.1.1/24 |
| wan | WAN port | DHCP |
Switch Ports (for VLANs)
| Port | Switch port |
|---|---|
| Internet (WAN) | wan |
| LAN 1 | lan1 |
| LAN 2 | lan2 |
| LAN 3 | lan3 |
Buttons
→ hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.
The MERCUSYS MR85X v1 has the following buttons:
| BUTTON | Event |
|---|---|
| Reset | reset |
| WPS | wps |
Hardware
Info
Photos
Opening the case
→ Warranty
Warning!
This section describes actions that might damage your device.
Unscrew the screws. There are also clips around the edge of the case you will need to prize open, using, for example, a plastic card. Be careful. Case latches are very tight.
Serial
→ port.serial general information about the serial port, serial port cable, etc.
Warning!
This section describes actions that might damage your device.
How to connect to the Serial Port of this specific device:
| Serial connection parameters for MERCUSYS MR85X v1 | 115200, 8N1, 3.3V |
|---|
JTAG
→ port.jtag general information about the JTAG port, JTAG cable, etc.
How to connect to the JTAG Port of this specific device:
Insert photo of PCB with markings for JTAG port
Bootloader mods
Unoffical OpenWrt U-Boot with Realtek switch driver (taken from D-Link DIR-X3260 GPL sources).
Hardware mods
None so far.
Bootlogs
OEM bootlog
F0: 102B 0000 FA: 1040 0000 FA: 1040 0000 [0200] F9: 0000 0000 V0: 0000 0000 [0001] 00: 0000 0000 BP: 2400 0041 [0000] G0: 1190 0000 EC: 0000 0000 [1000] T0: 0000 0154 [010F] Jump to BL NOTICE: BL2: v2.7(release):63a7fb842d-dirty NOTICE: BL2: Built : 21:58:34, Dec 16 2025 NOTICE: WDT: disabled NOTICE: EMI: Using DDR3 settings dump toprgu registers data: 1001c000 | 00000000 0000ffe0 00000000 00000000 1001c010 | 00000fff 00000000 00f00000 00000000 1001c020 | 00000000 00000000 00000000 00000000 1001c030 | 003c0003 003c0003 00000000 00000000 1001c040 | 00000000 00000000 00000000 00000000 1001c050 | 00000000 00000000 00000000 00000000 1001c060 | 00000000 00000000 00000000 00000000 1001c070 | 00000000 00000000 00000000 00000000 1001c080 | 00000000 00000000 00000000 00000000 dump drm registers data: 1001d000 | 00000000 00000000 00000000 00000000 1001d010 | 00000000 00000000 00000000 00000000 1001d020 | 00000000 00000000 00000000 00000000 1001d030 | 00a083f1 000003ff 00100000 00000000 1001d040 | 00000000 00000000 00020303 000000ff 1001d050 | 00000000 00000000 00000000 00000000 1001d060 | 00000002 00000000 00000000 00000000 drm: 500 = 0x8 [DDR Reserve] ddr reserve mode not be enabled yet DDR RESERVE Success 0 [EMI] ComboMCP not ready, using default setting BYTE_swap:0 BYTE_swap:0 Window Sum 624, worse bit 0, min window 76 Window Sum 612, worse bit 8, min window 76 Window Sum 438, worse bit 4, min window 52 Window Sum 450, worse bit 12, min window 54 Window Sum 452, worse bit 1, min window 54 Window Sum 462, worse bit 9, min window 56 Window Sum 462, worse bit 1, min window 56 Window Sum 480, worse bit 9, min window 58 Window Sum 472, worse bit 1, min window 56 Window Sum 486, worse bit 9, min window 60 Window Sum 484, worse bit 1, min window 58 Window Sum 494, worse bit 9, min window 60 Window Sum 492, worse bit 0, min window 60 Window Sum 506, worse bit 8, min window 62 Window Sum 504, worse bit 1, min window 60 Window Sum 512, worse bit 14, min window 62 Window Sum 510, worse bit 1, min window 62 Window Sum 522, worse bit 9, min window 64 Window Sum 520, worse bit 1, min window 62 Window Sum 534, worse bit 8, min window 64 Window Sum 526, worse bit 4, min window 62 Window Sum 548, worse bit 8, min window 66 Window Sum 530, worse bit 3, min window 64 Window Sum 554, worse bit 8, min window 68 NOTICE: EMI: Detected DRAM size: 512MB NOTICE: EMI: complex R/W mem test passed NOTICE: CPU: MT7981 (1300MHz) NOTICE: SPI_NAND parses attributes from parameter page. NOTICE: SPI_NAND Detected ID 0xc8 NOTICE: Page size 2048, Block size 131072, size 134217728 NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.7(release):63a7fb842d-dirty NOTICE: BL31: Built : 21:58:37, Dec 16 2025 NOTICE: Hello BL31!!! U-Boot 2022.07-rc3 (Dec 16 2025 - 21:58:25 +0800) CPU: MediaTek MT7981 Model: mt7981-rfb DRAM: 512 MiB Core: 32 devices, 13 uclasses, devicetree: embed MMC: Loading Environment from MTD... spi-nand: spi_nand spi_nand@0: GigaDevice SPI NAND was found. spi-nand: spi_nand spi_nand@0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 *** Warning - bad CRC, using default environment In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: >>>>>> entering rtl8367s probe >>>>>> rtl8367s reset gpio=39 switch debug=========switchChip:0 >>>>>> rtl8367s_hw_init success!!! >>>>>> set_rtl8367s_sgmii mode = 10 success!!! >>>>>> rtl8367s init done!!! Warning: ethernet@15100000 (eth0) using random MAC address - ee:4e:f1:1d:08:3d eth0: ethernet@15100000 press ctrl-c or t to go to uboot cmdline 0 [7.568][ AginetConfigProcess ] 646 - ERROR: NOT FIND AGC PACKET new bootarg:ubi.mtd=ubi0 console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 init=/etc/preinit ubi0: attaching mtd3 ubi0: scanning is finished ubi0: attached mtd3 (name "ubi0", size 50 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 ubi0: good PEBs: 400, bad PEBs: 0, corrupted PEBs: 0 ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 994147324 ubi0: available PEBs: 158, total reserved PEBs: 242, PEBs reserved for bad PEB handling: 20 Reading from volume 'uboot' to 0x41dfffc0, size 0x0 ... OK Reading from volume 'rootfs' to 0x4a000000, size 0x0 ... OK Reading from volume 'kernel' to 0x46000000, size 0x0 ... OK ## Booting kernel from Legacy Image at 41dfffc0 ... Image Name: seconduboot Image Type: ARM Linux Standalone Program (uncompressed) Data Size: 1143528 Bytes = 1.1 MiB Load Address: 00000000 Entry Point: 41e00000 Verifying Checksum ... OK Loading Standalone Program U-Boot 2022.07-rc3 (Dec 16 2025 - 21:57:35 +0800) CPU: MediaTek MT7981 Model: mt7981-rfb DRAM: 512 MiB Core: 32 devices, 13 uclasses, devicetree: embed MMC: Loading Environment from MTD... spi-nand: spi_nand spi_nand@0: GigaDevice SPI NAND was found. spi-nand: spi_nand spi_nand@0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 *** Warning - bad CRC, using default environment In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: >>>>>> entering rtl8367s probe >>>>>> rtl8367s reset gpio=39 switch debug=========switchChip:0 >>>>>> rtl8367s_hw_init success!!! >>>>>> set_rtl8367s_sgmii mode = 10 success!!! >>>>>> rtl8367s init done!!! Warning: ethernet@15100000 (eth0) using random MAC address - a6:b3:2c:d5:f6:1a eth0: ethernet@15100000 new bootarg:ubi.mtd=ubi0 console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 init=/etc/preinit second uboot to boot kernel @46000000 ## Loading kernel from FIT Image at 46000000 ... Using 'config-1' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-5.4.124 Type: Kernel Image Compression: lzma compressed Data Start: 0x460000e8 Data Size: 3367150 Bytes = 3.2 MiB Architecture: AArch64 OS: Linux Load Address: 0x48080000 Entry Point: 0x48080000 Hash algo: crc32 Hash value: 76d9f9e5 Hash algo: sha1 Hash value: b7ea2d6be26c999f2bf6c47c534a132b59d87528 Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt from FIT Image at 46000000 ... Using 'config-1' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt mt7981-spim-nand-rfb device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x4633631c Data Size: 18470 Bytes = 18 KiB Architecture: AArch64 Hash algo: crc32 Hash value: ac3f53d9 Hash algo: sha1 Hash value: d22447f6b820efdaa23868ab28ea51c68cee21e6 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x4633631c Uncompressing Kernel Image Loading Device Tree to 000000005f7f3000, end 000000005f7fa825 ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.4.124 (jenkins@dca3ad4d0089) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r0-e5f9bd3a15)) #0 SMP Thu Aug 3 03:49:41 2023 [ 0.000000] Machine model: MediaTek MT7981 RFB [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] On node 0 totalpages: 130128 [ 0.000000] DMA32 zone: 2048 pages used for memmap [ 0.000000] DMA32 zone: 0 pages reserved [ 0.000000] DMA32 zone: 130128 pages, LIFO batch:31 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.0 [ 0.000000] percpu: Embedded 20 pages/cpu s44248 r8192 d29480 u81920 [ 0.000000] pcpu-alloc: s44248 r8192 d29480 u81920 alloc=20*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: ARM erratum 845719 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 128080 [ 0.000000] Kernel command line: ubi.mtd=ubi0 console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 init=/etc/preinit [ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 491996K/520512K available (6846K kernel code, 482K rwdata, 1928K rodata, 448K init, 286K bss, 28516K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: CONFIG_RCU_FANOUT set to non-default value of 32. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 640 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] GICv3: Distributor has no Range Selector support [ 0.000000] GICv3: 16 PPIs implemented [ 0.000000] GICv3: no VLPI support, no direct LPI support [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 [ 0.000000] random: get_random_bytes called from start_kernel+0x2ec/0x438 with crng_init=0 [ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns [ 0.000003] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns [ 0.008179] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.018586] pid_max: default: 32768 minimum: 301 [ 0.023304] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.030657] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.039315] ASID allocator initialised with 65536 entries [ 0.044815] rcu: Hierarchical SRCU implementation. [ 0.049911] smp: Bringing up secondary CPUs ... [ 0.054725] Detected VIPT I-cache on CPU1 [ 0.054747] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.054772] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.054853] smp: Brought up 1 node, 2 CPUs [ 0.076451] SMP: Total of 2 processors activated. [ 0.081172] CPU features: detected: 32-bit EL0 Support [ 0.086330] CPU features: detected: CRC32 instructions [ 0.091604] CPU: All CPU(s) started at EL2 [ 0.095719] alternatives: patching kernel code [ 0.102663] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.112568] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.119468] pinctrl core: initialized pinctrl subsystem [ 0.125322] NET: Registered protocol family 16 [ 0.130011] DMA: preallocated 256 KiB pool for atomic allocations [ 0.136651] cpuidle: using governor ladder [ 0.140789] cpuidle: using governor menu [ 0.156877] cryptd: max_cpu_qlen set to 1000 [ 0.162932] SCSI subsystem initialized [ 0.166877] libata version 3.00 loaded. [ 0.170901] usbcore: registered new interface driver usbfs [ 0.176458] usbcore: registered new interface driver hub [ 0.181958] usbcore: registered new device driver usb [ 0.187364] nvmem nvmem0: cell usb3-intr unaligned to nvmem stride 4 [ 0.193870] mediatek,efuse: probe of 11f20000.efuse failed with error -22 [ 0.200785] workqueue: max_active 576 requested for napi_workq is out of range, clamping between 1 and 512 [ 0.211822] rbus 18000000.wbsys: PCI host bridge to bus 0000:00 [ 0.217777] pci_bus 0000:00: root bus resource [mem 0x18000000-0x18ffffff] [ 0.224709] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.230218] pci_bus 0000:00: scanning bus [ 0.234255] pci 0000:00:00.0: [14c3:7981] type 00 class 0x000280 [ 0.240321] pci 0000:00:00.0: reg 0x10: [mem 0x18000000-0x1800000f 64bit] [ 0.247141] pci 0000:00:00.0: reg 0x18: [mem 0x00000000-0x0000000f] [ 0.253442] pci 0000:00:00.0: reg 0x1c: [mem 0x00000000-0x0000000f] [ 0.259736] pci 0000:00:00.0: reg 0x20: [mem 0x00000000-0x0000000f] [ 0.266036] pci 0000:00:00.0: reg 0x24: [mem 0x00000000-0x0000000f] [ 0.273197] pci_bus 0000:00: fixups for bus [ 0.277413] pci_bus 0000:00: bus scan returning with max=00 [ 0.283344] clocksource: Switched to clocksource arch_sys_counter [ 0.290075] thermal_sys: Registered thermal governor 'fair_share' [ 0.290078] thermal_sys: Registered thermal governor 'bang_bang' [ 0.296224] thermal_sys: Registered thermal governor 'step_wise' [ 0.302256] thermal_sys: Registered thermal governor 'user_space' [ 0.308293] thermal_sys: Registered thermal governor 'power_allocator' [ 0.314663] NET: Registered protocol family 2 [ 0.325681] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.333367] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.341768] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.349591] TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 0.356808] TCP: Hash tables configured (established 4096 bind 4096) [ 0.363259] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.369830] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.376932] NET: Registered protocol family 1 [ 0.381327] PCI: CLS 0 bytes, default 64 [ 0.387697] workingset: timestamp_bits=46 max_order=17 bucket_order=0 [ 0.396826] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.402687] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.425628] phy phy-usb-phy@11e10000.1: type_sw - reg 0x218, index 0 [ 0.441018] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.448203] printk: console [ttyS0] disabled [ 0.472609] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 12, base_baud = 2500000) is a ST16650V2 [ 0.481821] printk: console [ttyS0] enabled [ 0.481821] printk: console [ttyS0] enabled [ 0.490180] printk: bootconsole [uart8250] disabled [ 0.490180] printk: bootconsole [uart8250] disabled [ 0.500923] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.509449] loop: module loaded [ 0.512716] mediatek,mt2701-ice_debug ice_debug: get dbg_sel clock fail: -2 [ 0.519719] mediatek,mt2701-ice_debug: probe of ice_debug failed with error -2 [ 0.527754] mt7981-pinctrl 11d00000.pinctrl: pin_config_set op failed for pin 19 [ 0.535151] mtk-spi 1100a000.spi: Error applying setting, reverse things back [ 0.542969] No nand flash found, try esmt [ 0.547023] spi-nand spi0.0: ESMT SPI NAND was found. [ 0.552064] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 [ 0.560362] 6 fixed-partitions partitions found on MTD device spi0.0 [ 0.566717] Creating 6 MTD partitions on "spi0.0": [ 0.571497] 0x000000000000-0x000000200000 : "boot" [ 0.578656] 0x000000200000-0x000000300000 : "u-boot-env" [ 0.585437] 0x000000300000-0x000003500000 : "ubi0" [ 0.591197] random: fast init done [ 0.639344] 0x000003500000-0x000006700000 : "ubi1" [ 0.690720] 0x000006700000-0x000006f00000 : "userconfig" [ 0.704045] 0x000006f00000-0x000007700000 : "tp_data" [ 0.717874] libphy: Fixed MDIO Bus: probed [ 0.722526] [mtk_hw_init] reset_lock:0, force:0 [ 0.727098] [mtk_hw_init] execute fe cold reset [ 0.762868] libphy: mdio: probed [ 0.788420] mtk_soc_eth 15100000.ethernet: generated random MAC address aa:0f:b0:fe:19:98 [ 0.796992] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc011900000, irq 75 [ 0.806073] mtk_soc_eth 15100000.ethernet: generated random MAC address fa:74:48:dc:5e:17 [ 0.814540] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc011900000, irq 75 [ 0.823589] (unnamed net_device) (dummy): netif_napi_add() called with weight 256 [ 0.831404] xhci-mtk 11200000.xhci: 11200000.xhci supply vbus not found, using dummy regulator [ 0.840053] xhci-mtk 11200000.xhci: 11200000.xhci supply vusb33 not found, using dummy regulator [ 0.849172] xhci-mtk 11200000.xhci: xHCI Host Controller [ 0.854505] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 1 [ 0.864965] xhci-mtk 11200000.xhci: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000210010 [ 0.874223] xhci-mtk 11200000.xhci: irq 85, io mem 0x11200000 [ 0.880444] hub 1-0:1.0: USB hub found [ 0.884231] hub 1-0:1.0: 1 port detected [ 0.888376] xhci-mtk 11200000.xhci: xHCI Host Controller [ 0.893705] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 2 [ 0.901179] xhci-mtk 11200000.xhci: Host supports USB 3.2 Enhanced SuperSpeed [ 0.908360] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.916813] hub 2-0:1.0: USB hub found [ 0.920580] hub 2-0:1.0: 1 port detected [ 0.924892] usbcore: registered new interface driver usb-storage [ 0.930984] i2c /dev entries driver [ 0.935050] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 0.943008] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 0.952367] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433,alg:7fcdfc00 [ 0.964891] exFAT: Version 1.3.0 [ 0.969601] GACT probability on [ 0.972742] Mirror/redirect action on [ 0.976441] u32 classifier [ 0.979136] input device check on [ 0.982783] Actions configured [ 0.986279] ipip: IPv4 and MPLS over IPv4 tunneling driver [ 0.992088] gre: GRE over IPv4 demultiplexor driver [ 0.996971] ip_gre: GRE over IPv4 tunneling driver [ 1.002652] Initializing XFRM netlink socket [ 1.007292] NET: Registered protocol family 10 [ 1.012700] Segment Routing with IPv6 [ 1.016453] NET: Registered protocol family 17 [ 1.020943] Bridge firewalling registered [ 1.025272] 8021q: 802.1Q VLAN Support v1.8 [ 1.039006] ubi0: attaching mtd2 [ 1.186561] random: crng init done [ 1.204754] ubi0: scanning is finished [ 1.213750] ubi0: attached mtd2 (name "ubi0", size 50 MiB) [ 1.219226] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.226098] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.232869] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.239825] ubi0: good PEBs: 400, bad PEBs: 0, corrupted PEBs: 0 [ 1.245821] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 1.253027] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 994147324 [ 1.262058] ubi0: available PEBs: 158, total reserved PEBs: 242, PEBs reserved for bad PEB handling: 20 [ 1.271443] ubi0: background thread "ubi_bgt0d" started, PID 726 [ 3.445747] block ubiblock0_2: created from ubi0:2(rootfs) [ 3.451224] ubiblock: device ubiblock0_2 (rootfs) set to be root filesystem [ 3.458188] hctosys: unable to open rtc device (rtc0) [ 3.463804] UBIFS (ubi0:2): static UBI volume - read-only mode [ 3.469637] UBIFS error (ubi0:2 pid 1): ubifs_mount: cannot mount read-write - read-only media [ 3.480152] VFS: Mounted root (squashfs filesystem) readonly on device 253:0. [ 3.487498] Freeing unused kernel memory: 448K [ 3.523387] Run /etc/preinit as init process - preinit - - regular preinit - jffs2 not ready yet; using ramdisk ubi device is not attached, try to attach it now. [ 6.519038] ubi1: attaching mtd5 [ 6.547686] ubi1: scanning is finished [ 6.556487] ubi1: attached mtd5 (name "tp_data", size 8 MiB) [ 6.562137] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 6.569027] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 6.575811] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 6.582756] ubi1: good PEBs: 64, bad PEBs: 0, corrupted PEBs: 0 [ 6.588665] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 6.595876] ubi1: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 1885215158 [ 6.604994] ubi1: available PEBs: 0, total reserved PEBs: 64, PEBs reserved for bad PEB handling: 10 [ 6.614118] ubi1: background thread "ubi_bgt1d" started, PID 1098 [ 6.627997] UBIFS (ubi1:0): Mounting in unauthenticated mode [ 6.633748] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 1104 [ 6.665208] UBIFS (ubi1:0): recovery needed [ 6.769366] UBIFS (ubi1:0): recovery completed [ 6.773896] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "tp_data" [ 6.781368] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 6.791273] UBIFS (ubi1:0): FS size: 5079040 bytes (4 MiB, 40 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) [ 6.801353] UBIFS (ubi1:0): reserved for root: 239895 bytes (234 KiB) [ 6.807785] UBIFS (ubi1:0): media format: w5/r0 (latest is w5/r0), UUID 902B4567-5E0C-428C-A0D6-44AD2E152815, small LPT model [USERDATA]: Foun[ 6.826910] ubi2: attaching mtd4 d userconfig partition on MTD devide 4, attach it. [ 6.855644] ubi2: scanning is finished [ 6.864649] ubi2: attached mtd4 (name "userconfig", size 8 MiB) [ 6.870560] ubi2: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 6.877439] ubi2: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 6.884219] ubi2: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 6.891163] ubi2: good PEBs: 64, bad PEBs: 0, corrupted PEBs: 0 [ 6.897072] ubi2: user volume: 2, internal volumes: 1, max. volumes count: 128 [ 6.904283] ubi2: max/mean erase counter: 4/2, WL threshold: 4096, image sequence number: 1672430023 [ 6.913400] ubi2: available PEBs: 0, total reserved PEBs: 64, PEBs reserved for bad PEB handling: 20 [ 6.922520] ubi2: background thread "ubi_bgt2d" started, PID 1108 [USERDATA]: MTD4 attach succ. [USERDATA]: Mounting user_data1 UBI volume as UB[ 6.937272] UBIFS (ubi2:0): Mounting in unauthenticated mode IFS [ 6.943397] UBIFS (ubi2:0): background thread "ubifs_bgt2_0" started, PID 1113 [ 6.975179] UBIFS (ubi2:0): recovery needed [ 7.090453] UBIFS (ubi2:0): recovery completed [ 7.094963] UBIFS (ubi2:0): UBIFS: mounted UBI device 2, volume 0, name "user_data1" [ 7.102691] UBIFS (ubi2:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.112595] UBIFS (ubi2:0): FS size: 1269760 bytes (1 MiB, 10 LEBs), journal size 1396736 bytes (1 MiB, 11 LEBs) [ 7.122755] UBIFS (ubi2:0): reserved for root: 0 bytes (0 KiB) [ 7.128581] UBIFS (ubi2:0): media format: w4/r0 (latest is w5/r0), UUID 30680AAB-6408-4B98-BF12-27B4D286C373, small LPT model [USERDATA]: Mounting user_data2 UBI volume as UB[ 7.150688] UBIFS (ubi2:1): Mounting in unauthenticated mode IFS [ 7.157301] UBIFS (ubi2:1): background thread "ubifs_bgt2_1" started, PID 1118 [ 7.181840] UBIFS (ubi2:1): recovery needed [ 7.279340] UBIFS (ubi2:1): recovery completed [ 7.283876] UBIFS (ubi2:1): UBIFS: mounted UBI device 2, volume 1, name "user_data2" [ 7.291608] UBIFS (ubi2:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.301516] UBIFS (ubi2:1): FS size: 1269760 bytes (1 MiB, 10 LEBs), journal size 1396736 bytes (1 MiB, 11 LEBs) [ 7.311682] UBIFS (ubi2:1): reserved for root: 0 bytes (0 KiB) [ 7.317508] UBIFS (ubi2:1): media format: w4/r0 (latest is w5/r0), UUID 6729FCD8-ACE5-4DFF-A592-6ED40690AF86, small LPT model - init - Please press Enter to activate this console. [ 7.412193] MTD: MTD device with name "data" not found [ 7.417359] MTD: Couldn't look up 'mtd:data': -2 [ 7.457856] liblog: module license 'unspecified' taints kernel. [ 7.463795] Disabling lock debugging due to kernel taint [ 9.150577] Airoha EN8811H mdio-bus:0f: PHY = 3a2 - a411 [ 9.156091] Airoha EN8811H mdio-bus:0f: Bootmode: Download Code [ 9.163097] Airoha EN8811H mdio-bus:0f: EthMD32.dm.bin: crc32=0x3b7f8592 [ 9.402829] Airoha EN8811H mdio-bus:0f: EthMD32.DSP.bin: crc32=0xa00b9f5d [ 11.571812] Airoha EN8811H mdio-bus:0f: EN8811H PHY ready! [ 11.577755] Airoha EN8811H mdio-bus:0f: en8811h_of_init: start [ 11.584181] Airoha EN8811H mdio-bus:0f: Tx, Rx Polarity : 01a01501 [ 11.590544] Airoha EN8811H mdio-bus:0f: MD32 FW Version : 24111202 [ 11.596715] Airoha EN8811H mdio-bus:0f: surge protection mode - 0R [ 11.603277] Airoha EN8811H mdio-bus:0f: CKO Output mode - Disabled [ 11.612343] Airoha EN8811H mdio-bus:0f: LED initialize OK ! [ 11.617906] Airoha EN8811H mdio-bus:0f: EN8811H initialize OK! (v1.2.6) [ 11.696403] >>>>>> entering rtl8367s probe [ 11.700524] >>>>>> rtl8367s reset gpio=39 [ 13.855232] >>>>>> rtl8367s_hw_init success!!! [ 14.009713] >>>>>> set_rtl8367s_sgmii mode = 21 success!!! [ 14.033139] >>>>>> Register swconfig for RTL8367s done [ 14.038286] >>>>>> rtl8367s init done!!! [ 14.136237] ntfs: driver 2.1.32 [Flags: R/O MODULE]. [ 14.224440] NET: Registered protocol family 15 [ 14.238628] PPP generic driver version 2.4.2 [ 14.279123] tun: Universal TUN/TAP device driver, 1.6 [ 14.307879] PPP MPPE Compression module registered [ 14.363737] l2tp_core: L2TP core driver, V2.0 [ 14.372590] l2tp_netlink: L2TP netlink interface [ 14.393042] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 14.429092] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 14.459401] hyfi_bridging: Unknown symbol tp_hyfi_reg_flwstat_cb (err -2) [ 14.466267] hyfi_bridging: Unknown symbol tp_hyfi_get_fc_flwstats (err -2) [ 14.614832] NET: Registered protocol family 24 [ 14.624073] PPTP driver version 0.8.5 [ 14.741090] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 15.047004] nf_conntrack_rtsp v0.7 loading [ 15.055835] nf_nat_rtsp v0.7 loading [ 15.304361] fuse: init (API version 7.31) [ 15.325551] OpenVPN data channel offload (ovpn-dco) 2.0.0 -- (C) 2020-2023 OpenVPN, Inc. [ 15.358488] wireguard: enabled KERNEL_MODE_NEON success [ 15.364019] wireguard: WireGuard 1.0.20211208 loaded. See www.wireguard.com for information. [ 15.372445] wireguard: Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved. [ 15.421390] conninfra@(mtk_conninfra_drv_init:644) Before platform_driver_register [ 15.429122] Get Index(0-TOP_MISC_BASE) phy_addr(0x11d10000) vir_addr=(0xffffffc010add000) size=(0x1000) [ 15.438513] Get Index(1-TOPRGU_BASE) phy_addr(0x1001c000) vir_addr=(0xffffffc010af5000) size=(0x1000) [ 15.447721] Get Index(2-GPIO_BASE) phy_addr(0x11d00000) vir_addr=(0xffffffc010af7000) size=(0x1000) [ 15.456760] Get Index(3-IOCFG_TR_BASE) phy_addr(0x11f00000) vir_addr=(0xffffffc010af9000) size=(0x1000) [ 15.466142] Get Index(4-IOCFG_TL_BASE) phy_addr(0x11f10000) vir_addr=(0xffffffc010b06000) size=(0x1000) [ 15.475523] Get Index(5-INFRACFG_AO_BASE) phy_addr(0x10003000) vir_addr=(0xffffffc010b0d000) size=(0x1000) [ 15.485164] Get Index(6-CONN_INFRA_CFG_BASE) phy_addr(0x18001000) vir_addr=(0xffffffc010b0f000) size=(0x1000) [ 15.495066] Get Index(7-CONN_INFRA_SYSRAM_BASE) phy_addr(0x18050000) vir_addr=(0xffffffc010b11000) size=(0x1000) [ 15.505230] Get Index(8-CONN_INFRA_CLKGEN_ON_TOP_BASE) phy_addr(0x18009000) vir_addr=(0xffffffc010b13000) size=(0x1000) [ 15.515999] Get Index(9-CONN_HOST_CSR_TOP_BASE) phy_addr(0x18060000) vir_addr=(0xffffffc010afb000) size=(0x1000) [ 15.526162] Get Index(10-CONN_INFRA_BUS_CR_BASE) phy_addr(0x1800e000) vir_addr=(0xffffffc010b56000) size=(0x1000) [ 15.536410] Get Index(11-CONN_INFRA_RGU_BASE) phy_addr(0x18000000) vir_addr=(0xffffffc010b58000) size=(0x1000) [ 15.546399] Get Index(12-CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18005000) vir_addr=(0xffffffc010b5a000) size=(0x1000) [ 15.556823] Get Index(13-INST2_CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18085000) vir_addr=(0xffffffc010b5c000) size=(0x1000) [ 15.567765] Get Index(14-CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18004000) vir_addr=(0xffffffc010b65000) size=(0x1000) [ 15.578187] Get Index(15-INST2_CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18084000) vir_addr=(0xffffffc010b6d000) size=(0x1000) [ 15.589132] Get Index(16-CONN_SEMAPHORE_BASE) phy_addr(0x18070000) vir_addr=(0xffffffc010e10000) size=(0x10000) [ 15.599217] Get Index(17-CONN_AFE_CTL_BASE) phy_addr(0x18003000) vir_addr=(0xffffffc010b6f000) size=(0x1000) [ 15.609040] Get Index(18-CONN_AFE_CTL_2ND_BASE) phy_addr(0x18083000) vir_addr=(0xffffffc010b71000) size=(0x1000) [ 15.619203] Get Index(19-WF_TOP_SLPPROT_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc011070000) size=(0x10000) [ 15.629538] Get Index(20-WF_TOP_CFG_BASE) phy_addr(0x184b0000) vir_addr=(0xffffffc010b73000) size=(0x1000) [ 15.639178] Get Index(21-WF_MCU_CONFIG_LS_BASE) phy_addr(0x184f0000) vir_addr=(0xffffffc010b75000) size=(0x1000) [ 15.649339] Get Index(22-WF_MCU_BUS_CR_BASE) phy_addr(0x18400000) vir_addr=(0xffffffc010b7d000) size=(0x1000) [ 15.659241] Get Index(23-WF_MCUSYS_INFRA_BUS_FULL_U_DEBUG_CTRL_AO_BASE) phy_addr(0x18500000) vir_addr=(0xffffffc010b85000) size=(0x1000) [ 15.671484] Get Index(24-WF_TOP_CFG_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc011090000) size=(0x10000) [ 15.681470] conninfra@(consys_plt_hw_init:162) adie_cfg_type = 1, one_adie_dbdc = 1 [ 15.689120] [emi_mng_init] gConEmiPhyBase = [0x47c80000] size = [0x100000] fw size = [0x100000] ops=[00000000a05260d8] [ 15.699911] conninfra@(mtk_conninfra_drv_init:650) After platform_driver_register [ 15.707872] ConnInfra Dev: init (0) [ 15.712793] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) [ 15.722631] conninfra@(connsys_d_die_cfg:365) D-die efuse: 0x00000000 [ 15.730123] conninfra@(_connsys_a_die_cfg_7976:919) adie_idx[0], A-die CHIP ID = 0x7976, HW Version = 0x8b00 [ 15.740944] conninfra@(consys_spi_write_nolock:501) addr=0x0a00, val=0xffffffff [ 15.749247] conninfra@(consys_spi_write_nolock:501) addr=0x04ac, val=0x0000001c [ 15.757549] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 15.766859] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x00000000 [ 15.776168] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x43a60000 [ 15.789508] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008500b7, 0x00000000] [ 15.801020] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 15.810329] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a6003a [ 15.819638] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63a7003a [ 15.832978] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008500b7, 0x00000000] [ 15.844490] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 15.853795] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a7003a [ 15.863099] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63ac003a [ 15.876439] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008500b7, 0x00000000] [ 15.887951] conninfra@(consys_spi_write_nolock:501) addr=0x0038, val=0x4a563b00 [ 15.896253] conninfra@(consys_spi_write_nolock:501) addr=0x065c, val=0x1d59080f [ 15.904556] conninfra@(consys_spi_write_nolock:501) addr=0x0664, val=0x34c00fe0 [ 15.912855] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x88888005 [ 15.922116] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x00000005 [ 15.930353] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) [ 15.940165] conninfra@(_consys_hw_conninfra_wakeup:470) conninfra_wakeup refcnt=[0]->[1] wakeup!! [ 15.949028] conninfra@(_consys_hw_conninfra_sleep:490) conninfra_sleep refcnt=[1]->[0] sleep!! [ 15.957627] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[0] CONNINFRA=[1] [ 15.994477] mediatek_soc_hnat 15100000.hnat: wan = eth1 [ 15.999696] mediatek_soc_hnat 15100000.hnat: lan = eth0 [ 16.004929] mediatek_soc_hnat 15100000.hnat: ppd = eth0 [ 16.010141] mediatek_soc_hnat 15100000.hnat: gmac num = 2 [ 16.015532] mediatek_soc_hnat 15100000.hnat: ppe num = 1 [ 16.021310] mediatek_soc_hnat 15100000.hnat: PPE0 entry number = 8192 [ 16.038357] mediatek_soc_hnat 15100000.hnat: PPE0 hwnat start [ 16.044156] hnat roaming work enable [ 17.286511] conninfra@(conninfra_pwr_on:120) [conninfra_pwr_on] drv=[3] [ 17.294065] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) [ 17.311920] Adie Type: 0x7976 [ 17.311922] SKU Type: 3000 [ 17.315840] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[1] CONNINFRA=[1] [ 17.329925] WiFi@C12L1,get_dbg_setting_by_profile() 4359: debug level setting=INDEX0_debug_level not found!! [ 17.339764] WiFi@C12L1,get_dbg_setting_by_profile() 4382: debug option setting=INDEX0_debug_option not found!! [ 17.349835] mt_rbus 0000:00:00.0: runtime IRQ mapping not provided by arch [ 17.364859] mt7981_init()--> [ 17.367736] Use the default iPAiLNA bin image! [ 17.372213] <--mt7981_init() [ 17.375261] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX1 [ 17.382571] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX2 [ 17.389893] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX3 [ 17.397207] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX4 [ 17.404522] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX5 [ 17.411830] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX6 [ 17.419144] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX7 [ 17.426459] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX8 [ 17.433782] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX9 [ 17.489893] warp_module_init(): module init and register callback for warp [ 17.496822] create warp_ctrl ok!!! [ 17.500258] wed_get_slot_map(): assign slot_id:0 for entry: 0! [ 17.506097] wed_get_slot_map(): assign slot_id:1 for entry: 1! [ 17.516525] mtk_warp_proxy: module uses symbols from proprietary module mt_wifi, inheriting taint. ------------------------------------------------------------------------------------- reloadprofile() begin reloadprofile() end ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- reloadconfig() begin ................................load openvpn cert......................... bad decrypt 548127669900:error:06065064:lib(6):func(101):reason(100):NA:0: ................................start of merge user and default........................ ................................parse userconf to get mode............................. ................................end of parse userconf.................................. ................................mode : router............................... ................................remodel defaulconfig: MR85X 1.0.0.......... ................................end of merge user and default.......................... ................................new configs merged..................................... mode router,onemesh_update 1,wireless_onemesh_version 1 reloadconfig() end ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- agile config reload favicon and logo start! agile config reload favicon and logo end! agile config update replace product-info and soft-version start! agile config update replace product-info and soft-version end! [ 21.426204] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode 1 and 00 and 60 gmtoff: -12:00 and tz: +12:00 GMT+12:00 no need to generate onemesh group id wireless is starting... init_all_vif_name DEVICES=wifi0 wifi1 dev=wifi0 dev=wifi1 wifi_init [ 23.204653] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 23.227428] br-lan: port 1(eth0.2) entered blocking state [ 23.232825] br-lan: port 1(eth0.2) entered disabled state [ 23.238453] device eth0.2 entered promiscuous mode [ 23.243237] device eth0 entered promiscuous mode [ 23.247962] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01161bad8: local fdb or not deleting event, ignore [ 23.258319] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01161b9b8: local fdb or not deleting event, ignore [ 23.291618] br-lan: port 2(eth0.3) entered blocking state [ 23.297078] br-lan: port 2(eth0.3) entered disabled state [ 23.302658] device eth0.3 entered promiscuous mode [ 23.311976] br-lan: port 3(eth0.4) entered blocking state [ 23.317424] br-lan: port 3(eth0.4) entered disabled state [ 23.322999] device eth0.4 entered promiscuous mode [ 23.330598] mtk_soc_eth 15100000.ethernet eth1: configuring for fixed/2500base-x link mode config_profile_set, MacAddress=XX:XX:XX:XX:XX:F5>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WscManufacturer=Mercusys>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WscDeviceName=MR85X 1.0.0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WscModelName=MR85X>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WscModelNumber=1.0.0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WscSerialNumber=1.0.0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WSC_UUID_Str1=00000000-0000-1000-0000-088AF1AD59F5>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, WSC_UUID_E1=00000000000010000000088AF1AD59F5>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, MacAddress=XX:XX:XX:XX:XX:F4>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WscManufacturer=Mercusys>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WscDeviceName=MR85X 1.0.0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WscModelName=MR85X>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WscModelNumber=1.0.0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WscSerialNumber=1.0.0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WSC_UUID_Str6=00000000-0000-1000-0000-088AF1AD59F5>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, WSC_UUID_E6=00000000000010000000088AF1AD59F5>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, CountryRegion=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, CountryNum=276>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, CountryCode=DE>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat do not do switch set in boot stage, when iptv on or snooping on config_profile_set, AutoChannelSkipList=1;11;12;13>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat [ 25.711349] Lan Domain: tplinklogin.net [ 25.715195] Lan Domain: www.tplinklogin.net restart dnsmasq config_profile_set, CountryNum=276>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, CountryCode=DE>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, CountryRegionABand=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, EDCCAEnable=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, EDCCAEnable=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, RDRegion=CE>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, SkuTableIdx=9>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, SkuTableIdx=9>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat wifi_reload_local ========>>>>>>>>>>> insmod hyfi-bridging hyfi_linux_bridge=br-lan hyfi_bridge_mode=AP [ 26.735806] QCA Hy-Fi netfilter installation: OK wifi_shutdown_interface wifi0 ifconfig ra0 down wifi_config_profile wifi0 config_profile_set, IEEE8021X=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, AuthMode=WPA2PSK;OPEN;WPA2PSK;WPA2PSK;WPA2PSK;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, EncrypType=AES;NONE;AES;AES;AES;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, RekeyInterval=0;86400;0;0;0;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, RADIUS_Server=0;0;0;0;0;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, RADIUS_Port=1812;1812;1812;1812;1812;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, RADIUS_Key=;;;;;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, EAPifname=br-lan;br-lan;br-lan;br-lan;br-lan;>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, SSID1=m>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, SSID2=MERCUSYS_Guest_59F5>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat =====>>>>> wifi0: vif ra3 skipped =====>>>>> wifi0: vif apcli0 skipped config_profile_set, SSID3=6VHndhNLmTB3xEy8CRNMAu7Vg0GgZK>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat =====>>>>> wifi0: vif ra4 skipped config_profile_set, WirelessMode=16>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, HT_BW=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, VHT_BW=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, HT_BSSCoexistence=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, Channel=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, AutoChannelSelect=3>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, MuOfdmaDlEnable=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, MuOfdmaUlEnable=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, TWTSupport=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, HT_GI=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, VHT_SGI=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, TxPower=100>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, VOW_Airtime_Fairness_En=0>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat config_profile_set, VOW_Sta_DWRR_Max_Wait_Time=1>>/etc/wireless/mediatek/mt7981.dbdc.b0.dat wifi_shutdown_interface wifi1 wifi_config_profile wifi1 Wanvids=0 0 0 0 Portseq=1 2 3 [IPTV] WAN_PHY_IF=eth1 [IPTV] LAN_PHY_IF=eth0.2 eth0.3 eth0.4 [ 26.740417] DEBUG_LEVEL:1 [ 32.293028] [RTL8367S INFO] Set LAN VPORT-VID PAIR: 1-eth0.2: 1 2 [ 32.301781] [RTL8367S INFO] Set LAN VPORT-VID PAIR: 2-eth0.3: 2 3 [ 32.307917] [RTL8367S INFO] Set LAN VPORT-VID PAIR: 3-eth0.4 [ 32.307917] ����� ����: 3 4 [ 32.320631] [RTL8367S INFO] Detect IPTV module started config_profile_set, IEEE8021X=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, AuthMode=WPA2PSK;OPEN;WPA2PSK;WPA2PSK;WPA2PSK;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, EncrypType=AES;NONE;AES;AES;AES;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat [ 32.763773] [RTL8367S INFO] UTP_PORT0 link down speed 10 [ 32.770059] [RTL8367S INFO] UTP_PORT1 link down speed 10 [ 32.781118] [RTL8367S INFO] UTP_PORT2 link down speed 10 [ 32.788710] [RTL8367S INFO] UTP_PORT3 link down speed 10 [ 32.797305] [RTL8367S INFO] UTP_PORT4 link down speed 10 config_profile_set, RekeyInterval=0;86400;0;0;0;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, RADIUS_Server=0;0;0;0;0;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, RADIUS_Port=1812;1812;1812;1812;1812;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, RADIUS_Key=;;;;;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, EAPifname=br-lan;br-lan;br-lan;br-lan;br-lan;>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, SSID1=m>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat [ 33.307543] [RTL8367S INFO] Set LAN VPORT-VID PAIR: 1-eth0.2: 1 2 [ 33.313661] [RTL8367S INFO] Set LAN VPORT-VID PAIR: 2-eth0.3: 2 3 [ 33.319746] [RTL8367S INFO] Set LAN VPORT-VID PAIR: 3-eth0.4 [ 33.319746] ����� ����: 3 4 config_profile_set, SSID2=MERCUSYS_Guest_59F5_5G>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat =====>>>>> wifi1: vif rax3 skipped =====>>>>> wifi1: vif apclix0 skipped config_profile_set, SSID3=SRsqGRu8nyMzSNIdL0g2lFHv8DroFS>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat =====>>>>> wifi1: vif rax4 skipped [ 33.484615] br-lan: port 1(eth0.2) entered disabled state [ 33.529975] br-lan: port 2(eth0.3) entered disabled state config_profile_set, WirelessMode=17>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat [ 33.586188] br-lan: port 3(eth0.4) entered disabled state [ 33.638610] device eth0 left promiscuous mode [ 33.643102] br-lan: port 3(eth0.4) entered disabled state [ 33.664120] br-lan: port 2(eth0.3) entered disabled state [ 33.672712] br-lan: port 1(eth0.2) entered disabled state [ 33.707368] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 33.715823] device eth0 entered promiscuous mode config_profile_set, HT_BW=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat saveconfig() begin config_profile_set, VHT_BW=2>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, Channel=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, AutoChannelSelect=3>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat saveconfig() end config_profile_set, AutoChannelSkipList=100;104;108;112;116;120;124;128;132;136;140>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, DfsEnable=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, IEEE80211H=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, DfsZeroWait=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, DfsDedicatedZeroWait=3>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, DfsZeroWaitDefault=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, MuOfdmaDlEnable=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, MuOfdmaUlEnable=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, TWTSupport=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, HT_GI=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, VHT_SGI=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, TxPower=100>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, VOW_Airtime_Fairness_En=0>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat config_profile_set, VOW_Sta_DWRR_Max_Wait_Time=1>>/etc/wireless/mediatek/mt7981.dbdc.b1.dat Node 0, zone DMA32 181 86 48 26 10 2 5 0 2 1 77 wifi_start_interface wifi0 wifi_vap_local ra0 *******switch_set_snooping >>>>>> clear_switch_vlan gp_id_rand = c87d random_suffix = c87d ifconfig ra0 up [ 35.733743] client_get_axi_slot_id(): wrong BUS_TYPE [ 35.738710] warp_cap_support(): chip_id=7981 is in WHNAT support list [ 35.745183] warp_entry_acquire(): bus slot:0, hook to WARP, entry id=0, entry: 0000000056ae251f [ 35.753891] client_hif_specific_get(): hw->base_phy_addr 0x18000000!! [ 35.760320] client_chip_specific_get(): 0x7981 chip id 0x7981!! [ 35.766363] warp_entry_get_by_pdev(): return entry[0] [ 35.771906] warp_msg_register():warp,pid,8487,id,0,wed_idx,0 [ 35.777618] warp_dev0 15010000.wed: Using 32bit DMA for streaming map [ 35.784059] warp_dev0 15010000.wed: Using 32bit DMA for coherent map [ 35.790442] wed_init(0): res_start = 0x15010000, size = 1000, irq=7,base_addr=0xffffffc0128ad000 [ 35.799676] wed_ring_init(): wed tx ring init result = 0 [ 35.805523] wed_ring_init(): wed rx ring init result = 0 [ 35.820570] create wed ok!!! [ 35.823521] wdma_init(): wdma(0) base_addr=0xffffffc0128b5800, base_phy_addr=0x15104800 [ 35.832393] warp_woif_bus_init_hw(): bus:000000005091156e, txring: 20, pa: 0x00000000555c0000, 0x00000000555c0000, 24, 28, 3c [ 35.843735] warp_woif_bus_init_hw(): bus:000000005091156e, rxring: 50, pa: 0x0000000055238000, 0x0000000055238000, 54, 58, 6c [ 35.855094] get_region_info(): wed_idx = 0, base_addr = 0x000000005c3d0b37, size = 0x40000, res.start = 0x47d80000, shared:0 [ 35.866329] get_region_info(): wed_idx = 0, base_addr = 0x000000008d805d78, size = 0x8000, res.start = 0x151e0000, shared:0 [ 35.877541] get_region_info(): wed_idx = 0, base_addr = 0x000000001908000b, size = 0x240000, res.start = 0x47dc0000, shared:1 [ 35.888909] get_region_info(): wed_idx = 0, base_addr = 0x0000000010b4561d, size = 0x1000, res.start = 0x15194000, shared:0 [ 35.900041] warp_fwdl_mcu_mode(): mcu mode, need fwdl [ 35.907730] ########## WO Firmware ########## [ 35.912085] Chip ID: 0x0000 [ 35.914913] ECO version:0 [ 35.917523] Version: DEV_000000 [ 35.920653] Build date: 20220901175230 [ 35.924423] Total region:3 [ 35.927122] ################################# [ 35.931467] Parsing tailer region 0 [ 35.934987] Target address: 0x151e0000 [ 35.938814] Download size: 20768 [ 35.942144] Parsing tailer region 1 [ 35.945643] Target address: 0x47d80000 [ 35.949468] Download size: 86224 [ 35.952854] Parsing tailer region 2 [ 35.956361] Target address: 0x47dc0000 [ 35.960187] Download size: 2319824 [ 35.966230] warp_fwdl_ready_check_mcu_mode(): waiting for wocpu [ 35.987871] warp_fwdl_ready_check_mcu_mode(): wocpu is ready [ 35.993883] warp_woctrl_init_state(), wo_state: WO_STATE_ENABLE [ 35.999804] wo_proc_init done 00000000bceb3942 [ 36.004362] wo_exep_proc_init done 00000000bceb3942 [ 36.009346] wo_exception_init(0): exp log= 0x000000001efc62fe, phy_addr= 0x0000000052dc0000 size= 32768 [ 36.134132] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS0 PhyMode=78 [ 36.140746] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS1 PhyMode=78 [ 36.147432] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS2 PhyMode=78 [ 36.154052] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS3 PhyMode=78 [ 36.160655] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS4 PhyMode=78 [ 36.167268] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS5 PhyMode=177 [ 36.173963] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS6 PhyMode=177 [ 36.180652] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS7 PhyMode=177 [ 36.187365] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS8 PhyMode=177 [ 36.194062] WiFi@C12L1,RTMPWirelessModeCfg() 611: Init: BSS9 PhyMode=177 [ 36.282765] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=0, Desired MFPC=0 [ 36.290182] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=1, Desired MFPC=0 [ 36.297579] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=2, Desired MFPC=0 [ 36.304969] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=3, Desired MFPC=0 [ 36.312351] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=4, Desired MFPC=0 [ 36.319742] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=5, Desired MFPC=0 [ 36.327136] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=6, Desired MFPC=0 [ 36.334536] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=7, Desired MFPC=0 [ 36.341921] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=8, Desired MFPC=0 [ 36.349339] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=9, Desired MFPC=0 [ 36.359695] WiFi@C12L1,RTMPSetProfileParameters() 8685: ra0, QoSMgmtCapa=0 [ 36.366588] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.373720] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.380843] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.387986] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.395118] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.402239] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.409377] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.416525] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 [ 36.423678] WiFi@C12L1,RTMPSetProfileParameters() 8685: (null), QoSMgmtCapa=0 *******set_switch_vlan vid=2 mem[ 36.433521] WiFi@C12L1,rtmp_read_ap_client_from_file() 1639: APCLI[0] ApCliMuMimoDlEnable = 0 =0 tag=off cpu=6[ 36.442531] WiFi@C12L1,rtmp_read_ap_client_from_file() 1639: APCLI[1] ApCliMuMimoDlEnable = 0 [ 36.452702] WiFi@C12L1,rtmp_read_ap_client_from_file() 1658: APCLI[0] ApCliMuMimoUlEnable = 0 [ 36.461244] WiFi@C12L1,rtmp_read_ap_client_from_file() 1658: APCLI[1] ApCliMuMimoUlEnable = 0 ####port 0 set p[ 36.470171] WiFi@C14L1,MulticastDLTableReset() 2571: multicast deny list table is not ready vid 2 ####untagged_ports: 0 ####tagged_ports: ####vlan 2 set ports " 0 6t" *******set_switch_vlan vid=3 mem=1 tag=off cpu=6 ####port 1 set pvid 3 ####untagged_ports: 1 ####tagged_ports: ####vlan 3 set ports " 1 6t" *******set_switch_vlan vid=4 mem=2 tag=off cpu=6 ####port 2 set pvid 4 ####untagged_ports: 2 ####tagged_ports: ####vlan 4 set ports " 2 6t" ****switch_vlan_apply*** ****switch_vlan_apply Done*** [ 36.586428] BandIdx = 0, tpcDutyInitFlag=1 [ 36.590520] BandIdx = 1, tpcDutyInitFlag=1 [ 36.594899] BandIdx = 0, tpcnitFlag=1 [ 36.598551] BandIdx = 1, tpcnitFlag=1 [ 36.602464] BandIdx = 0, tpcDuty=100-75-50-25 [ 36.606825] BandIdx = 1, tpcDuty=100-75-50-25 [ 36.611432] BandIdx = 0, thermalHighEn=1 [ 36.615354] BandIdx = 1, thermalHighEn=1 [ 36.619530] BandIdx = 0, thermalHighCritera=125 [ 36.624059] BandIdx = 1, thermalHighCritera=125 [ 36.628848] BandIdx = 0, thermalLowEn=1 [ 36.632673] BandIdx = 1, thermalLowEn=1 [ 36.636780] BandIdx = 0, thermalLowCritera=118 [ 36.641211] BandIdx = 1, thermalLowCritera=118 [ 36.645924] BandIdx = 0, thermalRecheckTime=5 [ 36.650269] BandIdx = 1, thermalRecheckTime=5 [ 36.654890] BandIdx = 0, thermalRFOffEn=0 [ 36.658886] BandIdx = 1, thermalRFOffEn=0 [ 36.663145] BandIdx = 0, thermalRFOffCriteria=125 [ 36.667847] BandIdx = 1, thermalRFOffCriteria=125 [ 36.672805] BandIdx = 0, thermalUcType=1 [ 36.676727] BandIdx = 1, thermalUcType=1 [ 36.683850] wdma_dma_ctrl(): WDMA_GLO_CFG=50404e70, txrx = 0 [ 36.695719] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e70, txrx = 0 [ 36.710696] warp_tx_ring_init_hw(): configure ring 0 setting [ 36.716399] warp_tx_ring_init_hw(): wed:0000000022414e7c wifi:00000000de2f25de: 24420=552a0000,24424=2048,24428=0 [ 36.726659] warp_tx_ring_init_hw(): configure ring 1 setting [ 36.732315] warp_tx_ring_init_hw(): wed:0000000022414e7c wifi:00000000de2f25de: 24430=55278000,24434=2048,24438=0 [ 36.742699] set_rrocfg,0 [ 36.768114] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e74, txrx = 3 [ 36.773770] using E1 ROM patch [ 36.776811] using E1 RAM [ 36.779342] current sync CR = 0x1 [ 36.782817] Built date: 20240823171530a [ 36.786797] Platform: ALPS [ 36.789588] HW/SW version: 0x8a108a10 [ 36.793379] Patch version: 0xffffffff [ 36.807417] current sync CR = 0x1 [ 36.815097] Chip ID: 0x14 [ 36.817805] Eco version: 0x00 [ 36.820846] Region number: 0x0b [ 36.824092] Format version: 0x02 [ 36.827409] Format flag: 0x01 [ 36.830455] Ram version: ____000000 [ 36.834043] Built date: 20240823171546 [ 36.837877] Common crc: 0x460d9f6e [ 36.841356] Release info: header tag = 0, total length = 80 [ 36.847018] tag 1, padding length = 1, tag length = 75 [ 36.852228] payload: t-neptune-main-2111-7981-imp-MT7981_E1_ASIC_ROM_RAM_REBB_IMP-20240823171457 [ 36.883377] Chip ID: 0x00 [ 36.886084] Eco version: 0x00 [ 36.889126] Region number: 0x03 [ 36.892341] Format version: 0x02 [ 36.895662] Format flag: 0x01 [ 36.898707] Ram version: DEV_000000 [ 36.902273] Built date: 20240823172133 [ 36.906114] Common crc: 0xc7c84e81 [ 36.909593] Release info: header tag = 0, total length = 0 [ 37.000704] current sync CR = 0x7 [ 37.004570] efuse_probe: efuse = deaddead [ 37.008579] rtmp_ee_load_from_bin::bin FileName = /tp_data/MT7981_EEPROM.bin, bin bak = /user_data1/MT7981_EEPROM.bin, use caled e2p file [ 37.022183] Load EEPROM Buffer from /tp_data/MT7981_EEPROM.bin [ 37.028058] rtmp_btn_load_from_bin::bin FileName = /tp_data/MT7981_BTNFLAG.bin, bin bak = /user_data1/MT7981_BTNFLAG.bin [ 37.041537] WiFi@C02L1,is_cal_free_ic() 831: [a-die version:1] [ 39.401603] WiFi@C17L1,RTMPReadTxPwrPerRate() 450: (450): Don't Support this now! [ 39.409179] WiFi@C02L0,rc_radio_init() 720: radio_ctrl=00000000c232cfe1,Band=0,rfcap=1,channel=1,PhyMode=64 extCha=0xf [ 39.419906] WiFi@C02L0,rc_radio_init() 720: radio_ctrl=00000000c2fab3ef,Band=1,rfcap=2,channel=36,PhyMode=128 extCha=0xf [ 39.430844] WiFi@C01L1,AntCfgInit() 3179: Not support for HIF_MT yet! [ 39.453059] ch_switch_monitor_state_machine_init:: enter [ 39.458401] ch_switch_monitor_cfg_reset:: enter [ 39.462933] ch_switch_monitor_cfg_reset:: enter [ 39.468142] WiFi@C17L1,tx_pwr_comp_init() 641: NotSupportYet! [ 39.473982] WiFi@C12L1,SCS_init() 880: INIT SCSEnable [0]= 1 [ 39.479694] WiFi@C12L1,SCS_init() 887: INIT SCSEnable [1]= 0 [ 39.485641] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 39.491194] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 39.496732] WiFi@C14L1,IPMacTable_init() 348: IPMacTable already inited! [ 39.523648] wdma_dma_ctrl(): WDMA_GLO_CFG=50804e75, txrx = 3 [ 39.530051] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 39.535634] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 39.541167] WiFi@C00L1,set_ack_timeout_mode_byband() 13398: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 39.551116] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13486: DAT config band(0) cck_timeout Fail! [ 39.559826] WiFi@C00L1,set_ack_timeout_mode_byband() 13398: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 39.569745] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13497: DAT config band(0) ofdm_timeout Fail! [ 39.578537] WiFi@C00L1,set_ack_timeout_mode_byband() 13398: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 39.588477] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13508: DAT config band(0) ofdma_timeout Fail! [ 39.597358] WiFi@C00L1,set_ack_timeout_mode_byband() 13398: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 39.607289] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13486: DAT config band(1) cck_timeout Fail! [ 39.615994] WiFi@C00L1,set_ack_timeout_mode_byband() 13398: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 39.625926] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13497: DAT config band(1) ofdm_timeout Fail! [ 39.634718] WiFi@C00L1,set_ack_timeout_mode_byband() 13398: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 39.644650] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13508: DAT config band(1) ofdma_timeout Fail! [ 39.653650] mt_wifi_init: Band = 0, dutyLv0 = 100, dutyLv1 = 75, dutyLv2 = 50, dutyLv3 = 25 [ 39.662006] mt_wifi_init: Band = 0, high_en=1, high_thd = 125, low_en = 1, low_thd = 118, RFOFF_en = 0, RFOFF_th = 125, rec_timer = 5, Type = Duty Cycle [ 39.675757] mt_wifi_init: Band = 1, dutyLv0 = 100, dutyLv1 = 75, dutyLv2 = 50, dutyLv3 = 25 [ 39.684172] mt_wifi_init: Band = 1, high_en=1, high_thd = 125, low_en = 1, low_thd = 118, RFOFF_en = 0, RFOFF_th = 125, rec_timer = 5, Type = Duty Cycle [ 39.710279] :(op = 1) [ 39.717520] WiFi@C00L1,FastPathCheckMIC() 1010: (ret = 0)(op:1) [ 39.723531] WiFi@C00L1,MtCmdCr4RedSet() 914: MtCmdCr4RedSet: (ret = 0) [ 39.730052] WiFi@C00L1,SendRedCmd() 1049: SendRedCmd:(ret = 1) [ 39.736556] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.742906] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.749373] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.755738] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.762170] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.768529] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.774979] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.781322] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.787771] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.794145] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.800581] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.806964] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.813410] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.819753] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.826203] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.832547] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.839000] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.845369] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.845377] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.845381] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.845387] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.845391] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.845396] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 [ 39.845400] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 init_all_vif_nam[ 39.845405] WiFi@C14L1,vht80_channel_group() 1611: invalid ch_band 0 e [ 39.845409] WiFi@C14L1,vht160_channel_group() 1680: invalid ch_band 0 [ 39.845415] WiFi@C23L1,DfsBuildChannelList() 3890: [RDM]: wdev is not 5G. [ 39.845442] phy_freq_adjust : no prim_ch value for adjust! [ 39.845448] WiFi@C23L1,operate_loader_phy() 398: phy_freq_adjust failed!WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 39.865215] WiFi@C23L1,HcGetBandByChannel() 1235: No hdev parking on channel:0, just return a default band_idx 0! DEVICES=wifi0 wifi1 dev=wifi0 [ 39.943656] mtk_band_steering_netlink_init 247 band steering netlink init ok [ 39.951846] WiFi@C00L0,ApAutoChannelAtBootUp() 343: -----------------> [ 39.951853] WiFi@C00L0,ApAutoChannelAtBootUp() 359: AutoChannelBootup[0] = 1 [ 39.958831] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 39.961208] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 39.976756] WiFi@C00L1,ApAutoChannelAtBootUp() 375: PhyMode: 78, ACSChStat:0 dev=wifi1 [ 39.984045] WiFi@C08L1,UpdateBeaconHandler() 1908: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x10c/0x4b8 [mt_wifi])!! [ 39.997124] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal wifi_macfilter iwpriv ra0 set AccessPolicy=0 [ 40.383713] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 40.783716] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 41.173688] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 41.563686] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal *******set_multicast_router set_multicast_router done [ 41.953666] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 42.343682] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 42.733703] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 43.123694] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 43.513838] WiFi@C08L1,UpdateBeaconHandler() 1908: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x258/0x4b8 [mt_wifi])!! [ 43.526118] WiFi@C23L0,SelectClearChannelBusyTime() 1890: [SelectClearChannelBusyTime] - band0 START [ 43.535254] WiFi@C23L0,SelectClearChannelBusyTime() 1891: [SelectClearChannelBusyTime] - cfg_ht_bw = 1 vht_bw = 0 [ 43.545511] WiFi@C23L0,SelectClearChannelBusyTime() 1898: ==================================================================== [ 43.556898] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 2 : Busy Time = 3944, Skip Channel = FALSE, BwCap = TRUE [ 43.568281] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 3 : Busy Time = 6191, Skip Channel = FALSE, BwCap = TRUE [ 43.579674] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 4 : Busy Time = 10144, Skip Channel = FALSE, BwCap = TRUE [ 43.591057] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 5 : Busy Time = 5465, Skip Channel = FALSE, BwCap = TRUE [ 43.602439] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 6 : Busy Time = 3423, Skip Channel = FALSE, BwCap = TRUE [ 43.613830] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 7 : Busy Time = 5244, Skip Channel = FALSE, BwCap = TRUE [ 43.625215] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 8 : Busy Time = 3250, Skip Channel = FALSE, BwCap = TRUE [ 43.636596] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 9 : Busy Time = 3648, Skip Channel = FALSE, BwCap = TRUE [ 43.647981] WiFi@C23L0,SelectClearChannelBusyTime() 1904: Channel 10 : Busy Time = 4175, Skip Channel = FALSE, BwCap = TRUE [ 43.659358] WiFi@C23L0,SelectClearChannelBusyTime() 1907: ==================================================================== [ 43.670743] WiFi@C23L0,SelectClearChannelBusyTime() 2179: Rule 3 Channel Busy time value : Select Primary Channel 8 [ 43.681178] WiFi@C23L0,SelectClearChannelBusyTime() 2181: Rule 3 Channel Busy time value : Min Channel Busy = 3250 [ 43.691524] WiFi@C23L0,SelectClearChannelBusyTime() 2186: Rule 3 Channel Busy time value : BW = 20 [ 43.700477] WiFi@C23L0,SelectClearChannelBusyTime() 2225: [SelectClearChannelBusyTime] - band0 END [ 43.709431] WiFi@C00L0,ApAutoChannelAtBootUp() 407: Auto channel selection: Selected channel = 8, IsAband = 0 [ 43.719413] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 43.864314] WiFi@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 43.875315] WiFi@C23L1,DfsBuildChannelList() 3890: [RDM]: wdev is not 5G. [ 43.882098] WiFi@C00L0,ApAutoChannelAtBootUp() 599: <----------------- [ 43.888891] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 43.894349] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 44.066785] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 44.383509] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 44.388945] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 44.567200] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 44.883519] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 44.888955] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 45.061574] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 45.283680] WiFi@C08L1,UpdateBeaconHandler() 1908: wdev(0) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! [ 45.383511] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 45.388947] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 45.561561] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 45.883511] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 45.888948] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 46.061487] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 46.383513] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 46.388946] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 46.561432] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 46.883512] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 46.888947] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 47.061817] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 47.383501] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 47.388934] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 47.561707] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 47.883520] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 47.888955] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 48.062326] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 48.383514] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 48.388948] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 48.562460] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 48.883452] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 49.028517] WiFi@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 49.039601] WiFi@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 49.183808] WiFi@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 49.274370] WiFi@C00L1,TxCCKStreamCtrl() 21830: set wrong parameters [ 49.291189] PrintSrCmd: [ 49.291189] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 49.291189] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 49.305192] PrintSrCmd: [ 49.305192] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 49.305192] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 49.319183] PrintSrCmd: [ 49.319183] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 49.319183] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 49.333211] PrintSrCmd: [ 49.333211] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 49.333211] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 49.347297] PrintSrCmd: [ 49.347297] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 49.347297] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 49.361372] PrintSrCmd: [ 49.361372] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 49.361372] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 49.375485] WiFi@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 49.386488] mtk_ppe_dev_register_hook : ineterface ra0 register (1) [ 49.389693] [mtf_txpower_all_rate_info] band_idx:0 pwr:42 ChBand:2G ePAGain:0 =====>>>>>set tp_ie for vap ra0 iwpriv ra0 set tp_ie=dd1e001d0f1001600000088AF1[ 49.405545] device eth0 left promiscuous mode AD59F5088AF1AD59[ 49.411375] br-lan: port 3(eth0.4) entered disabled state F5c87d000059F500[ 49.418921] br-lan: port 2(eth0.3) entered disabled state 010000 [ 49.425518] br-lan: port 1(eth0.2) entered disabled state iwpriv rax0 set AccessPolicy=0 iwpriv ra0 set mapEnable=3 [ 49.439378] 7981@C12L1,rt28xx_ap_ioctl() 886: interface is down, cmd [8beb] return!!! [ 49.449562] Set_Map_Proc current MAP MODE is 3 iwpriv ra2 set AccessPolicy=0 i[ 49.456754] 7981@C12L1,rt28xx_ap_ioctl() 886: interface is down, cmd [8beb] return!!! wpriv ra0 set ma[ 49.465243] Set_MapR2_Proc: MAP R2 is enabled pR2Enable=1 iwpriv rax2 set AccessPolicy=0 [ 49.473082] 7981@C12L1,rt28xx_ap_ioctl() 886: interface is down, cmd [8beb] return!!! [ 49.492792] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 49.501245] device eth0 entered promiscuous mode [ 49.512088] br-lan: port 1(eth0.2) entered disabled state [ 49.519494] device eth0.2 left promiscuous mode [ 49.524102] br-lan: port 1(eth0.2) entered disabled state iwpriv ra0 set S[ 49.594965] br-lan: port 1(eth0.2) entered blocking state SID=m [ 49.601569] br-lan: port 1(eth0.2) entered disabled state [ 49.607825] device eth0.2 entered promiscuous mode [ 49.617496] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 49.707599] Set_HighPriMcs(): input param error [ 49.707599] Usage: iwpriv [inf] set HighPriMcs=[frame_type]-[mcs] [ 49.707599] The frame type format is 0 for ARP, 1 for DHCP, 2 for EAPOL [ 49.707599] MCS must in range of 0 ~ 3 and 8 ~ 11 for CCK Mode [ 49.707599] MCS must in range from 0 to 7 for OFDM Mode [ 49.739149] br-lan: port 2(eth0.3) entered disabled state iwpriv ra0 set H[ 49.746258] device eth0.3 left promiscuous mode ideSSID=0 [ 49.751332] br-lan: port 2(eth0.3) entered disabled state mumimo_config ra0 1 iwpriv ra0 set MuMimo=1 [ 49.810816] sync for : ra000 iwpriv ra0 set RTSThreshold=2346[ 49.818324] Set_RTSThreshold_Proc: set wdev0 rts length threshold=2346(0x92a) iwpriv ra0 set FragThreshold=234[ 49.831697] Set_FragThreshold_Proc::set wdev0 FragThreshold=2346) 6 [ 49.839910] br-lan: port 2(eth0.3) entered blocking state [ 49.845335] br-lan: port 2(eth0.3) entered disabled state iwpriv ra0 set D[ 49.850929] device eth0.3 entered promiscuous mode timPeriod=1 iwpriv ra0 set WmmCapable=1 [ 49.860650] br-lan: port 3(eth0.4) entered disabled state [ 49.867930] device eth0.4 left promiscuous mode [ 49.872464] br-lan: port 3(eth0.4) entered disabled state iwpriv ra0 set NoForwarding=0 iwpriv ra0 set NoForwardingBTNBSSID=0 iwpriv ra0 set UAPSDCapable=1 [ 49.974719] br-lan: port 3(eth0.4) entered blocking state [ 49.980150] br-lan: port 3(eth0.4) entered disabled state [ 49.986398] device eth0.4 entered promiscuous mode [ 49.992855] mtk_soc_eth 15100000.ethernet eth1: configuring for fixed/2500base-x link mode killall -q -SIGINT rt2860apd iwpriv ra0 set AuthMode=WPA2PSK iwpriv ra0 set EncrypType=AES iwpriv ra0 set IEEE8021X=0 iwpriv ra0 set RekeyInterval=0 iwpriv ra0 set WPAPSK=12345678iop iwpriv ra0 set WscConfMode=7 iwpriv ra0 set WscConfStatus=2 iwpriv ra0 set WscVendorPinCode=50278435 iwpriv ra0 set WscLabelDisabled=0 [ 50.511955] 7981@C12L1,RTMPAPPrivIoctlSet() 3789: IOCTL::(iwpriv) Command not Support [WscLabelDisabled=0] iwpriv ra0 set WscSetupLock=0 =====>>>>> acPolicy: off action: black!!!! iwpriv ra0 set AccessPolicy=0 iwpriv ra0 set HideSSID=0 iwpriv ra0 set SSID=m [ 50.566668] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 50.677003] Set_HighPriMcs(): input param error [ 50.677003] Usage: iwpriv [inf] set HighPriMcs=[frame_type]-[mcs] [ 50.677003] The frame type format is 0 for ARP, 1 for DHCP, 2 for EAPOL [ 50.677003] MCS must in range of 0 ~ 3 and 8 ~ 11 for CCK Mode [ 50.677003] MCS must in range from 0 to 7 for OFDM Mode iwpriv ra0 set hw_nat_register=1 [ 50.712077] mtk_ppe_dev_register_hook : ra0 has been registered in wifi_hook_if table[1] brctl addif br-lan ra0 [ 50.756687] br-lan: port 4(ra0) entered blocking state [ 50.761825] br-lan: port 4(ra0) entered disabled state [ 50.776363] device ra0 entered promiscuous mode [ 50.781012] br-lan: port 4(ra0) entered blocking state [ 50.786183] br-lan: port 4(ra0) entered forwarding state [ 50.792394] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 [ 51.119643] br-lan: port 5(apcli0) entered blocking state [ 51.125073] br-lan: port 5(apcli0) entered disabled state [ 51.151621] device apcli0 entered promiscuous mode [ 51.156567] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01147bad8: local fdb or not deleting event, ignore [ 51.166948] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01147b9b8: local fdb or not deleting event, ignore brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 can't add ra2 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra2 3 1 can't set ra2 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 can't add rax0 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax0 3 1 can't set rax0 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 [ 51.339623] br-lan: port 6(apclix0) entered blocking state [ 51.345162] br-lan: port 6(apclix0) entered disabled state [ 51.357039] device apclix0 entered promiscuous mode [ 51.362043] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0115d3ad8: local fdb or not deleting event, ignore [ 51.372439] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0115d39b8: local fdb or not deleting event, ignore brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local ra1 false 0 ========>>>>>>>>>>> do not start apsd for mode router on boot gp_id_rand = c87d random_suffix = c87d brctl delif br-lan ra1 ifconfig ra1 down brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 can't add ra2 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra2 3 1 can't set ra2 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 can't add rax0 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax0 3 1 can't set rax0 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax1 saveconfig() begin can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local ra3 do not do switch set in boot stage, when iptv on or snooping on ===>>>rftestflag=1!! [ 54.849505] Lan Domain: tplinklogin.net [ 54.853385] Lan Domain: www.tplinklogin.net restart dnsmasq saveconfig() end [aviraSentinelFull]: stop gp_id_rand = c87d random_suffix = c87d brctl delif br-lan ra3 ifconfig ra3 down [aviraSentinelLite]: stop brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 avira process is not started, also need to upload a free component! can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 can't add ra2 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra2 3 1 can't set ra2 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 can't add rax0 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax0 3 1 can't set rax0 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local apcli0 [ 57.875601] [RTL8367S INFO] proc write flow_control [ 57.884138] [RTL8367S INFO] set port= 0 flow_control= 0 [ 57.889549] [RTL8367S INFO] proc write flow_control [ 57.905727] [RTL8367S INFO] set port= 1 flow_control= 0 [ 57.911145] [RTL8367S INFO] proc write flow_control [ 57.922440] [RTL8367S INFO] set port= 2 flow_control= 0 [ 58.014337] [ 58.014337] Autonego mode vpn client if off, exit gp_id_rand = c87d random_suffix = c87d brctl delif br-lan apcli0 [ 58.358473] device apcli0 left promiscuous mode [ 58.363737] br-lan: port 5(apcli0) entered disabled state [ 58.393610] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0120b3a78: local fdb or not deleting event, ignore [ 58.403899] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0120b3a78: local fdb or not deleting event, ignore ifconfig apcli0 down brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 [del_tc_root] true true true true [del_tc_root] input: brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 [ 58.749922] br-lan: port 5(apcli0) entered blocking state [ 58.755377] br-lan: port 5(apcli0) entered disabled state [ 58.804929] device apcli0 entered promiscuous mode [ 58.809812] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0121e3ad8: local fdb or not deleting event, ignore [ 58.820168] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0121e39b8: local fdb or not deleting event, ignore brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 QDMA fc reg's bit 16 should be 0 in pppq mode. can't add ra2 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra2 3 1 can't set ra2 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 [ 58.872059] qdma_txq1: mark = 0x0 1 [ 58.876713] qdma_txq3: mark = 0x0 can't set ra4 v[ 58.881315] qdma_txq2: mark = 0x0 lan to bridge br-lan: Invalid argument brctl addif br-lan rax0 can't add rax0 to bridge br-lan[ 58.893773] qdma_txq4: mark = 0x0 : Invalid argume[ 58.897613] Per-port-per-queue mode is going to be enabled ! nt brctl setifv[ 58.904571] PPPQ use qid 0~5 (scheduler 0). lan br-lan rax0 [ 58.910100] [RTL8367S INFO] utp_port -1 out of range: is_vid 0 vid_qid 0 3 1 can't set r[ 58.918200] [hnat_qos_shaper_ebl: 2436] qid = 0, speed = 0 ax0 vlan to brid[ 58.925049] rtk_port_phyStatus_get failed... ge br-lan: Invalid argument brctl addif br-lan rax1 can't add rax1 t[ 58.938701] [hnat_qos_shaper_ebl: 2436] qid = 1, speed = 10 o bridge br-lan:[ 58.944885] [hnat_qos_shaper_ebl: 2436] qid = 2, speed = 10 Invalid argumen[ 58.951812] [hnat_qos_shaper_ebl: 2436] qid = 3, speed = 10 t brctl setifvl[ 58.958421] [RTL8367S INFO] utp_port 3 out of range: is_vid 0 vid_qid 4 an br-lan rax1 8[ 58.966377] [hnat_qos_shaper_ebl: 2436] qid = 4, speed = 0 1 [ 58.973224] rtk_port_phyStatus_get failed... [ 58.977839] get_speed_by_vid_qid = 00000000dccce2bc can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local ra2 gp_id_rand = c87d random_suffix = c87d ifconfig ra2 up [ 60.175527] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[2]=9, bw_grp=16 omac=17 [ 60.187523] mtk_band_steering_netlink_init 247 band steering netlink init ok [ 60.194816] 7981@C00L0,ApAutoChannelAtBootUp() 343: -----------------> [ 60.201361] 7981@C00L0,ApAutoChannelAtBootUp() 359: AutoChannelBootup[0] = 1 [ 60.208963] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 60.209158] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 60.209165] 7981@C00L1,ApAutoChannelAtBootUp() 375: PhyMode: 78, ACSChStat:1 [ 60.209170] 7981@C00L1,ApAutoChannelAtBootUp() 513: not A band [ 60.209174] 7981@C08L1,ap_run_at_boot() 639: ACS is disable !! [ 60.209587] 7981@C12L1,SetWPAPSKKey() 1643: WPAPSK Key length(0) error, required 8 ~ 64 characters!(keyStr=) [ 60.240308] 7981@C00L1,TxCCKStreamCtrl() 21830: set wrong parameters cwmp: stop cwmp [ 60.291250] PrintSrCmd: [ 60.291250] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 60.291250] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 60.305359] PrintSrCmd: [ 60.305359] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 60.305359] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 60.319433] PrintSrCmd: [ 60.319433] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 60.319433] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 60.333483] PrintSrCmd: [ 60.333483] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 60.333483] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 60.347610] PrintSrCmd: [ 60.347610] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 60.347610] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 sys_mode=router,[ 60.361751] PrintSrCmd: [ 60.361751] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 60.361751] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 data_model=tr18[ 60.377366] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 1 [ 60.389701] mtk_ppe_dev_register_hook : ineterface ra2 register (2) [ 60.396120] [mtf_txpower_all_rate_info] band_idx:0 pwr:42 ChBand:2G ePAGain:0 =====>>>>>set tp_ie for vap ra2 iwpriv ra2 set tp_ie=dd1e001d0f[ 60.409306] Set_Map_Proc current MAP MODE is 3 1001640000088AF1AD59F5088AF1AD59[ 60.417405] Set_MapR2_Proc MAP R2 is already enabled F5c87d000059F500010000 iwpriv ra2 set mapEnable=3 dhcp_hook_d not load iwpriv ra2 set mapR2Enable=1 iwpriv ra2 set SSID=6VHndhNLmTB3xEy8CRNMAu7Vg0GgZK [ 60.508493] 7981@C03L1,ExtEventBeaconLostHandler() 176: AP Beacon OFF!!! [ 60.520084] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[2]=9, bw_grp=16 omac=17 [ 60.531744] 7981@C12L1,SetWPAPSKKey() 1643: WPAPSK Key length(0) error, required 8 ~ 64 characters!(keyStr=) [ 60.553277] Set_HighPriMcs(): input param error [ 60.553277] Usage: iwpriv [inf] set HighPriMcs=[frame_type]-[mcs] [ 60.553277] The frame type format is 0 for ARP, 1 for DHCP, 2 for EAPOL [ 60.553277] MCS must in range of 0 ~ 3 and 8 ~ 11 for CCK Mode [ 60.553277] MCS must in range from 0 to 7 for OFDM Mode iwpriv ra2 set HideSSID=1 mumimo_config ra2 1 iwpriv ra2 set MuMimo=1 iwpriv ra2 set B[ 60.590593] sync for : ra0 [ 60.594386] sync for : ra2 iwpriv ra2 set RTSThreshold=2346[ 60.600960] Set_RTSThreshold_Proc: set wdev2 rts length threshold=2346(0x92a) iwpriv ra2 set FragThreshold=234[ 60.611604] Set_FragThreshold_Proc::set wdev2 FragThreshold=2346) 6 iwpriv ra2 set DtimPeriod=1 iwpriv ra2 set WmmCapable=1 iwpriv ra2 set NoForwarding=0 iwpriv ra2 set NoForwardingBTNBSSID=0 iwpriv ra2 set UAPSDCapable=1 iwpriv ra2 set AuthMode=WPA2PSK iwpriv ra2 set EncrypType=AES iwpriv ra2 set IEEE8021X=0 iwpriv ra2 set RekeyInterval=0 iwpriv ra2 set WPAPSK=5C6sobgOQ71R9kIufEdbawjEAdmolh iwpriv ra2 set WscConfMode=0 iwpriv ra2 set WscConfStatus=2 iwpriv ra2 set WscLabelDisab[ 60.832781] 7981@C12L1,RTMPAPPrivIoctlSet() 3789: IOCTL::(iwpriv) Command not Support [WscLabelDisabled=0] led=0 iwpriv ra2 set WscSetupLock=0 =====>>>>> acPolicy: off action: black!!!! iwpriv ra2 set AccessPolicy=0 iwpriv ra2 set HideSS[ 60.860027] 7981@C03L1,ExtEventBeaconLostHandler() 176: AP Beacon OFF!!! ID=1 iwpriv ra2 set SSID=6VHndhNLmTB3xEy8CRNMAu7Vg0GgZK [ 60.872551] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[2]=9, bw_grp=16 omac=17 [ 61.064263] Set_HighPriMcs(): input param error [ 61.064263] Usage: iwpriv [inf] set HighPriMcs=[frame_type]-[mcs] [ 61.064263] The frame type format is 0 for ARP, 1 for DHCP, 2 for EAPOL [ 61.064263] MCS must in range of 0 ~ 3 and 8 ~ 11 for CCK Mode [ 61.064263] MCS must in range from 0 to 7 for OFDM Mode iwpriv ra2 set hw_nat_register=1 [ 61.101028] mtk_ppe_dev_register_hook : ra0 has been registered in wifi_hook_if table[1] [ 61.109218] mtk_ppe_dev_register_hook : ra2 has been registered in wifi_hook_if table[2] brctl addif br-lan ra2 [ 61.124266] br-lan: port 7(ra2) entered blocking state [ 61.129424] br-lan: port 7(ra2) entered disabled state [ 61.134774] device ra2 entered promiscuous mode [ 61.139343] sfe_interface_node_br_fdb_delete_event[235]:ffffffc011febad8: local fdb or not deleting event, ignore [ 61.149656] sfe_interface_node_br_fdb_delete_event[235]:ffffffc011feb9b8: local fdb or not deleting event, ignore [ 61.159931] br-lan: port 7(ra2) entered blocking state [ 61.165062] br-lan: port 7(ra2) entered forwarding state /etc/rc.common 0 true [LAG] Disabling bonding-lag-lan [LAG] LAG ifname is: lan2 lan3 brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid [ 61.422006] bond0 (unregistering): Released all slaves argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 can't add rax0 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax0 3 1 can't set rax0 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local ra4 General shell run! [del_tc_root] true true true true [del_tc_root] input: saveconfig() begin The Hqos mode is not changed. nrd: starting daemon, AP steering is on, Band steering is on [ 62.051752] ath_band_steering_netlink_receive 161 pid = 13763 [ 62.063079] ath_band_steering_netlink_receive 161 pid = 13763 saveconfig() end The Hqos mode is not changed. [ 62.325966] export_store: invalid GPIO 424 start selfhealing [del_tc_root] true true true true [del_tc_root] input: The Hqos mode is not changed. gp_id_rand = c87d random_suffix = c87d brctl delif br-lan ra4 ifconfig ra4 down wireguard vpn if off, exit brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 can't add rax0 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax0 3 1 can't set rax0 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_start_interface wifi1 wifi_vap_local rax0 [ 63.190125] [RTL8367S INFO] Detect IPTV module started [ 63.346678] unexport_store: invalid GPIO 424 gp_id_rand = c87d random_suffix = c87d ifconfig rax0 up [ 63.740134] phy_freq_adjust : no prim_ch value for adjust! [ 63.745661] 7981@C23L1,operate_loader_phy() 398: phy_freq_adjust failed!WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[5]=4, bw_grp=16 omac=0 [ 63.763173] 7981@C23L1,HcGetBandByChannel() 1235: No hdev parking on channel:0, just return a default band_idx 0! [ 63.774365] mtk_band_steering_netlink_init 247 band steering netlink init ok [ 63.781575] 7981@C00L0,ApAutoChannelAtBootUp() 343: -----------------> [ 63.788186] 7981@C00L0,ApAutoChannelAtBootUp() 359: AutoChannelBootup[1] = 1 [ 63.795403] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 63.800914] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 63.806375] 7981@C00L1,ApAutoChannelAtBootUp() 375: PhyMode: 177, ACSChStat:0 [del_tc_root] tr[ 63.813781] 7981@C08L1,UpdateBeaconHandler() 1908: wdev(5) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x10c/0x4b8 [mt_wifi])!! ue true true tru[ 63.827342] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal e [del_tc_root] input: [ 64.043410] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 64.513688] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 65.023708] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 65.543673] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 66.053716] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 66.383697] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 66.713677] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 67.053708] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 67.313726] 7981@C08L1,UpdateBeaconHandler() 1908: wdev(5) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! [ 67.383845] 7981@C08L1,UpdateBeaconHandler() 1908: wdev(5) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x258/0x4b8 [mt_wifi])!! [ 67.396131] 7981@C23L0,SelectClearChannelBusyTime() 1890: [SelectClearChannelBusyTime] - band1 START [ 67.405260] 7981@C23L0,SelectClearChannelBusyTime() 1891: [SelectClearChannelBusyTime] - cfg_ht_bw = 1 vht_bw = 2 [ 67.415510] 7981@C23L0,SelectClearChannelBusyTime() 1898: ==================================================================== [ 67.426892] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 36 : Busy Time = 1, Skip Channel = FALSE, BwCap = TRUE [ 67.438283] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 40 : Busy Time = 288, Skip Channel = FALSE, BwCap = TRUE [ 67.449668] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 44 : Busy Time = 37, Skip Channel = FALSE, BwCap = TRUE [ 67.461051] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 48 : Busy Time = 443, Skip Channel = FALSE, BwCap = TRUE [ 67.472438] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 52 : Busy Time = 199, Skip Channel = FALSE, BwCap = TRUE [ 67.483827] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 56 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE [ 67.495209] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 60 : Busy Time = 17, Skip Channel = FALSE, BwCap = TRUE [ 67.506590] 7981@C23L0,SelectClearChannelBusyTime() 1904: Channel 64 : Busy Time = 34, Skip Channel = FALSE, BwCap = TRUE [ 67.517986] 7981@C23L0,SelectClearChannelBusyTime() 1907: ==================================================================== [ 67.529371] 7981@C23L0,SelectClearChannelBusyTime() 2174: Select Primary Channel 44 from bw160PreferCh[]! [ 67.538931] 7981@C23L0,SelectClearChannelBusyTime() 2179: Rule 3 Channel Busy time value : Select Primary Channel 44 [ 67.549516] 7981@C23L0,SelectClearChannelBusyTime() 2181: Rule 3 Channel Busy time value : Min Channel Busy = 443 [ 67.559777] 7981@C23L0,SelectClearChannelBusyTime() 2186: Rule 3 Channel Busy time value : BW = 160 [ 67.568819] 7981@C23L0,SelectClearChannelBusyTime() 2225: [SelectClearChannelBusyTime] - band1 END [ 67.577779] 7981@C00L0,ApAutoChannelAtBootUp() 407: Auto channel selection: Selected channel = 44, IsAband = 1 [ 67.587780] 7981@C12L0,Adj_ZeroWait_Status_Update() 1076: Adj_ZeroWait_Status_Update(1076), Channel(44), OutBandCh(0), vht_bw(2), OutBandBw(0), BW160ZeroWaitState(0) [ 67.602546] 7981@C12L0,Adj_ZeroWait_Status_Update() 1156: Adj_ZeroWait_Status_Update(1156), Channel(36), OutBandCh(44), vht_bw(1), OutBandBw(0), BW160ZeroWaitState(2) [ 67.617523] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 67.867545] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 67.878635] 7981@C00L0,ApAutoChannelAtBootUp() 599: <----------------- [ 67.977161] PrintSrCmd: [ 67.977161] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 67.977161] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 67.991175] PrintSrCmd: [ 67.991175] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 67.991175] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 68.005164] PrintSrCmd: [ 68.005164] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 68.005164] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 68.019191] PrintSrCmd: [ 68.019191] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 68.019191] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 68.033296] PrintSrCmd: [ 68.033296] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 68.033296] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 68.047374] PrintSrCmd: [ 68.047374] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 68.047374] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 68.061530] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 68.072579] mtk_ppe_dev_register_hook : ineterface rax0 register (3) [ 68.078964] [mtf_txpower_all_rate_info] band_idx:1 pwr:40 ChBand:5G ePAGain:0 [ 68.086762] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready =====>>>>>set tp[ 68.093410] br-lan: port 1(eth0.2) entered blocking state _ie for vap rax0[ 68.099880] br-lan: port 1(eth0.2) entered forwarding state iwpriv rax0 set tp_ie=dd1e001d0f1001600000088AF1AD59F5088AF1AD[ 68.111951] [HNAT] Detect dev: eth0.2 state change, qid = 1, speed = 10 59F5c87d000059F5[ 68.119283] br-lan: port 2(eth0.3) entered blocking state 00010000 [ 68.125824] br-lan: port 2(eth0.3) entered forwarding state [ 68.132745] [HNAT] Detect dev: eth0.3 state change, qid = 2, speed = 10 [ 68.139542] br-lan: port 3(eth0.4) entered blocking state [ 68.144974] br-lan: port 3(eth0.4) entered forwarding state [ 68.151072] [HNAT] Detect dev: eth0.4 state change, qid = 3, speed = 10 [ 68.163402] ath_band_steering_netlink_receive 161 pid = 13763 iwpriv rax0 set mapEnable=3 [ 68.174272] Set_Map_Proc current MAP MODE is 3 iwpriv rax0 set mapR2Enable=1 [ 68.188378] Set_MapR2_Proc MAP R2 is already enabled The Hqos mode is not changed. iwpriv rax0 set SSID=m [ 68.317213] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 68.337739] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 68.348942] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[5]=4, bw_grp=16 omac=0 iwpriv rax0 set HideSSID=0 mumimo_config rax0 1 iwpriv rax0 set MuMimo=1 iwpriv rax0 set BeaconPeriod=100 [ 68.458695] sync for : ra0 [ 68.464346] sync for : ra2 [ 68.469347] sync for : rax0 iwpriv rax0 set RTSThreshold=2346 [ 68.477132] Set_RTSThreshold_Proc: set wdev5 rts length threshold=2346(0x92a) iwpriv rax0 set FragThreshold=23[ 68.489184] Set_FragThreshold_Proc::set wdev5 FragThreshold=2346) 46 iwpriv rax0 set DtimPeriod=1 iwpriv rax0 set WmmCapable=1 iwpriv rax0 set NoForwarding=0 iwpriv rax0 set NoForwardingBTNBSSID=0 iwpriv rax0 set UAPSDCapable=1 killall -q -SIGINT rt2860apd_x iwpriv rax0 set AuthMode=WPA2PSK iwpriv rax0 set EncrypType=AES iwpriv rax0 set IEEE8021X=0 iwpriv rax0 set RekeyInterval=0 iwpriv rax0 set WPAPSK=12345678iop iwpriv rax0 set WscConfMode=7 iwpriv rax0 set WscConfStatus=2 iwpriv rax0 set WscVendorPinCode=50278435 iwpriv rax0 set [ 68.703777] 7981@C12L1,RTMPAPPrivIoctlSet() 3789: IOCTL::(iwpriv) Command not Support [WscLabelDisabled=0] WscLabelDisabled=0 iwpriv rax0 set WscSetupLock=0 =====>>>>> acPolicy: off action: black!!!! iwpriv rax0 set AccessPolicy=0 iwpriv rax0 set HideSSID=0 iwpriv rax0 set SSID=m [ 68.734726] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 68.754494] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 68.765683] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[5]=4, bw_grp=16 omac=0 iwpriv rax0 set hw_nat_register=[ 68.858290] mtk_ppe_dev_register_hook : ra0 has been registered in wifi_hook_if table[1] 1 [ 68.867318] mtk_ppe_dev_register_hook : ra2 has been registered in wifi_hook_if table[2] [ 68.875670] mtk_ppe_dev_register_hook : rax0 has been registered in wifi_hook_if table[3] brctl addif br-lan rax0 [ 68.886354] br-lan: port 8(rax0) entered blocking state [ 68.891913] br-lan: port 8(rax0) entered disabled state [ 68.897478] device rax0 entered promiscuous mode [ 68.902164] sfe_interface_node_br_fdb_delete_event[235]:ffffffc011423ad8: local fdb or not deleting event, ignore [ 68.912521] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0114239b8: local fdb or not deleting event, ignore [ 68.922841] br-lan: port 8(rax0) entered blocking state [ 68.928099] br-lan: port 8(rax0) entered forwarding state brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 device rax0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax0 3 1 brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local rax1 gp_id_rand = c87d random_suffix = c87d brctl delif br-lan rax1 ifconfig rax1 down brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 device rax0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax0 3 1 brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local rax3 [ 70.165957] mtk_soc_eth 15100000.ethernet eth1: configuring for fixed/2500base-x link mode [ 70.237004] S99zzzzboot_don (14368): drop_caches: 3 Don't need dual band temperature control! gp_id_rand = c87d random_suffix = c87d brctl delif br-lan rax3 ifconfig rax3 down brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 device rax0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax0 3 1 brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local apclix0 gp_id_rand = c87d random_suffix = c87d brctl delif br-lan apclix0 [ 71.609262] device apclix0 left promiscuous mode [ 71.614608] br-lan: port 6(apclix0) entered disabled state [ 71.643940] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01247ba78: local fdb or not deleting event, ignore [ 71.654283] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01247ba78: local fdb or not deleting event, ignore ifconfig apclix0 down brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 device rax0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax0 3 1 brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid[ 71.873803] br-lan: port 6(apclix0) entered blocking state argument brctl[ 71.879704] br-lan: port 6(apclix0) entered disabled state setifvlan br-la[ 71.886871] device apclix0 entered promiscuous mode n rax1 8 1 can'[ 71.892930] sfe_interface_node_br_fdb_delete_event[235]:ffffffc012493ad8: local fdb or not deleting event, ignore t set rax1 vlan [ 71.904547] sfe_interface_node_br_fdb_delete_event[235]:ffffffc0124939b8: local fdb or not deleting event, ignore to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 can't add rax2 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax2 3 1 can't set rax2 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local rax2 gp_id_rand = c87d random_suffix = c87d ifconfig rax2 up [ 72.717630] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 72.738133] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 72.749280] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[7]=25, bw_grp=16 omac=17 [ 72.762943] mtk_band_steering_netlink_init 247 band steering netlink init ok [ 72.770161] 7981@C00L0,ApAutoChannelAtBootUp() 343: -----------------> [ 72.776712] 7981@C00L0,ApAutoChannelAtBootUp() 359: AutoChannelBootup[1] = 1 [ 72.784177] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 72.791422] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 72.796887] 7981@C00L1,ApAutoChannelAtBootUp() 375: PhyMode: 177, ACSChStat:1 [ 72.804253] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 72.823701] 7981@C08L1,UpdateBeaconHandler() 1908: wdev(7) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! [ 72.836384] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 72.847522] 7981@C00L0,ApAutoChannelAtBootUp() 599: <----------------- [ 72.854403] 7981@C12L1,SetWPAPSKKey() 1643: WPAPSK Key length(0) error, required 8 ~ 64 characters!(keyStr=) [ 72.887839] PrintSrCmd: [ 72.887839] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 72.887839] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 72.901841] PrintSrCmd: [ 72.901841] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 72.901841] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 72.915833] PrintSrCmd: [ 72.915833] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 72.915833] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 72.929837] PrintSrCmd: [ 72.929837] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 72.929837] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 72.943936] PrintSrCmd: [ 72.943936] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 72.943936] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 72.958017] PrintSrCmd: [ 72.958017] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 72.958017] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 72.972126] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 72.983121] mtk_ppe_dev_register_hook : ineterface rax2 register (4) [ 72.986343] [mtf_txpower_all_rate_info] band_idx:1 pwr:40 ChBand:5G ePAGain:0 =====>>>>>set tp_ie for vap rax2 iwpriv rax2 set tp_ie=dd1e001d0f1001640000088AF1AD59F5088AF1AD59F5c87d000059F500010000 iwpriv rax2 set mapEnable=3 [ 73.030397] Set_Map_Proc current MAP MODE is 3 iwpriv rax2 set mapR2Enable=1 [ 73.037927] Set_MapR2_Proc MAP R2 is already enabled iwpriv rax2 set SSID=SRsqGRu8nyM[ 73.105264] 7981@C03L1,ExtEventBeaconLostHandler() 176: AP Beacon OFF!!! zSNIdL0g2lFHv8DroFS [ 73.117138] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 73.137612] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 73.148708] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[7]=25, bw_grp=16 omac=17 [ 73.159330] 7981@C12L1,SetWPAPSKKey() 1643: WPAPSK Key length(0) error, required 8 ~ 64 characters!(keyStr=) iwpriv rax2 set HideSSID=1 mumimo_config rax2 1 iwpriv rax2 set MuMimo=1 iwpriv rax2 set [ 73.187457] sync for : ra0 BeaconPeriod=100[ 73.191557] sync for : ra2 [ 73.195685] sync for : rax0 [ 73.199145] sync for : rax2 iwpriv rax2 set RTSThreshold=234[ 73.204932] Set_RTSThreshold_Proc: set wdev7 rts length threshold=2346(0x92a) 6 iwpriv rax2 set FragThreshold=23[ 73.215247] Set_FragThreshold_Proc::set wdev7 FragThreshold=2346) 46 iwpriv rax2 set DtimPeriod=1 iwpriv rax2 set WmmCapable=1 iwpriv rax2 set NoForwarding=0 iwpriv rax2 set NoForwardingBTNBSSID=0 iwpriv rax2 set UAPSDCapable=1 iwpriv rax2 set AuthMode=WPA2PSK iwpriv rax2 set EncrypType=AES iwpriv rax2 set IEEE8021X=0 iwpriv rax2 set RekeyInterval=0 iwpriv rax2 set WPAPSK=2k0SBClkHFXMz3XmRTwy2hpxGmCJvt iwpriv rax2 set WscConfMo[ 73.373224] 7981@C12L1,RTMPAPPrivIoctlSet() 3789: IOCTL::(iwpriv) Command not Support [WscLabelDisabled=0] de=0 iwpriv rax2 set WscConfStatus=2 iwpriv rax2 set WscLabelDisabled=0 iwpriv rax2 set WscSetupLock=0 =====>>>>> acPolicy: off action: black!!!! iwpriv rax2 set AccessPol[ 73.397567] 7981@C03L1,ExtEventBeaconLostHandler() 176: AP Beacon OFF!!! icy=0 iwpriv rax2 set HideSSID=1 iwpriv rax2 set SSID=SRsqGRu8[ 73.409299] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal nyMzSNIdL0g2lFHv8DroFS [ 73.431018] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 73.442107] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[7]=25, bw_grp=16 omac=17 iwpriv rax2 set hw_nat_register=[ 73.534267] mtk_ppe_dev_register_hook : ra0 has been registered in wifi_hook_if table[1] 1 [ 73.543237] mtk_ppe_dev_register_hook : ra2 has been registered in wifi_hook_if table[2] [ 73.551593] mtk_ppe_dev_register_hook : rax0 has been registered in wifi_hook_if table[3] [ 73.559766] mtk_ppe_dev_register_hook : rax2 has been registered in wifi_hook_if table[4] brctl addif br-lan rax2 [ 73.570259] br-lan: port 9(rax2) entered blocking state [ 73.575933] br-lan: port 9(rax2) entered disabled state [ 73.581354] device rax2 entered promiscuous mode [ 73.586061] sfe_interface_node_br_fdb_delete_event[235]:ffffffc012a8bad8: local fdb or not deleting event, ignore [ 73.596365] sfe_interface_node_br_fdb_delete_event[235]:ffffffc012a8b9b8: local fdb or not deleting event, ignore [ 73.606633] br-lan: port 9(rax2) entered blocking state [ 73.611847] br-lan: port 9(rax2) entered forwarding state brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 device rax0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax0 3 1 brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 device rax2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax2 3 1 brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument wifi_vap_local rax4 gp_id_rand = c87d random_suffix = c87d brctl delif br-lan rax4 ifconfig rax4 down brctl show br-lan brctl setifvlan br-lan eth0.2 3 1 brctl setifvlan br-lan eth0.3 3 1 brctl setifvlan br-lan eth0.4 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra0 3 1 brctl addif br-lan ra1 can't add ra1 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra1 4 1 can't set ra1 vlan to bridge br-lan: Invalid argument brctl addif br-lan ra3 can't add ra3 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra3 3 1 can't set ra3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apcli0 device apcli0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apcli0 3 1 brctl addif br-lan ra2 device ra2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan ra2 3 1 brctl addif br-lan ra4 can't add ra4 to bridge br-lan: Invalid argument brctl setifvlan br-lan ra4 3 1 can't set ra4 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax0 device rax0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax0 3 1 brctl addif br-lan rax1 can't add rax1 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax1 8 1 can't set rax1 vlan to bridge br-lan: Invalid argument brctl addif br-lan rax3 can't add rax3 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax3 3 1 can't set rax3 vlan to bridge br-lan: Invalid argument brctl addif br-lan apclix0 device apclix0 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan apclix0 3 1 brctl addif br-lan rax2 device rax2 is already a member of a bridge; can't enslave it to bridge br-lan. brctl setifvlan br-lan rax2 3 1 brctl addif br-lan rax4 can't add rax4 to bridge br-lan: Invalid argument brctl setifvlan br-lan rax4 3 1 can't set rax4 vlan to bridge br-lan: Invalid argument nrd: stopping nrd: 13763 nrd: starting daemon, AP steering is on, Band steering is on [ 74.624420] ath_band_steering_netlink_receive 161 pid = 17547 [ 74.630845] ath_band_steering_netlink_receive 161 pid = 17547 [ 74.642994] ath_band_steering_netlink_receive 161 pid = 17547 wifi_led_set 2g = ON, 5g = ON ========= don't cli WIFI-led when not cal [ 74.750263] 7981@C12L1,rt28xx_ap_ioctl() 886: interface is down, cmd [8beb] return!!! [ 74.763884] 7981@C12L1,rt28xx_ap_ioctl() 886: interface is down, cmd [8beb] return!!! File: /tmp/group-info isn't existed. vap name : rax0 vap name : apclix0 vap name : rax1 vap name : rax2 vap name : rax4 vap name : ra0 vap name : apcli0 vap name : ra1 vap name : ra2 vap name : ra4 map config params: sysmode: router role: controller map_profile: 2 brname: br-lan devname: MR85X manufacturer_name: Mercusys manufacturer_model:MR85X V1.0 registrar: on multi_chan: off guest_network: off sup_steer: off sup_usta_chan: off sup_usta_nonechan: off radio info: name: wifi0 band: 2.4g channel: 8 bandwidth: 0 max_bss_support: 3 nss: 2 name: wifi1 band: 5g channel: 36 bandwidth: 2 max_bss_support: 3 nss: 2 interface info: name: br-lan type: bridge enable: 1 name: eth0.2 type: ether enable: 1 name: eth0.3 type: ether enable: 1 name: eth0.4 type: ether enable: 1 name: ra0 type: wireless enable: 1 maptype:fBSS parent: wifi0 guest: 0 vifnum: 0 name: ra2 type: wireless enable: 1 maptype:bBSS parent: wifi0 guest: 0 vifnum: 0 name: ra4 type: wireless enable: 1 maptype:bBSS parent: wifi0 guest: 0 vifnum: 0 name: rax0 type: wireless enable: 1 maptype:fBSS parent: wifi1 guest: 0 vifnum: 0 name: rax2 type: wireless enable: 1 maptype:bBSS parent: wifi1 guest: 0 vifnum: 0 name: rax4 type: wireless enable: 1 maptype:bBSS parent: wifi1 guest: 0 vifnum: 0 >>[map_get_basic_common_vlan_config,1661] Primary VLAN ID[10] Secondary VLAN ID[20] Default PCP[0] Flags[0] >>[controller_read_vlan_config,457] Failed to load traffic separation policy either due to guest is not enabled or failed to read the data >>[main,658] controller_read_vlan_config initialed basic cap: 0x0 interface config: ifname: br-lan enable: 1 media: 0x8000 mapflag:0x0 ifname: eth0.2 enable: 1 media: 0x9002 mapflag:0x0 ifname: eth0.3 enable: 1 media: 0x9002 mapflag:0x0 ifname: eth0.4 enable: 1 media: 0x9002 mapflag:0x0 ifname: ra0 enable: 1 media: 0x9001 mapflag:0x1 ifname: ra2 enable: 1 media: 0x9001 mapflag:0x2 ifname: ra4 enable: 1 media: 0x9001 mapflag:0x2 ifname: rax0 enable: 1 media: 0x9001 mapflag:0x1 ifname: rax2 enable: 1 media: 0x9001 mapflag:0x2 ifname: rax4 enable: 1 media: 0x9001 mapflag:0x2 config radio list: radio name: wifi0 vap list: ra0, ra2, ra4, radio name: wifi1 vap list: rax0, rax2, rax4, >>[map_get_adptr_config,1606] get br-lan mac:XX:XX:XX:XX:XX:F5 as almac adptr config: multi_ap_mode: 0x1 device_mode: 0x1 freq_band_2g_enable: 1 freq_band_5g_enable: 1 backhaul_type: 0 topo_query_timeout: 3000 topo_query_retries: 7 1905 MAC: XX:XX:XX:XX:XX:f5 Controller>>[map_ieee1905_device_init,106] Received callback: Device[XX:XX:XX:XX:XX:F5] got added Controller>>[map_device_array_add,265] device array need OS_REALLOC, used=0 Controller>>[map_device_array_add,267] resize=32 socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050[i5GlueAddPrivateBackhaulInterface, 1188] Add private backhaul interface ra4 no need to generate onemesh group id socket non-blocking already set. flags=2050socket non-blocking already set. flags=2050[i5GlueAddPrivateBackhaulInterface, 1188] Add private backhaul interface rax4 Controller>>[main,660] ieee1905 initialed Controller>>[controller_add_bssinfo_to_controller,225] ifname [ra2] band [0x1] SSID [6VHndhNLmTB3xEy8CRNMAu7Vg0GgZK] AuthType [32] EncryptType [8] key [5C6sobgOQ71R9kIufEdbawjEAdmolh] map_flag [0x2] closed[0] disabled[0] Controller>>[controller_add_bssinfo_to_controller,273] ifname [ra0] band [0x1] SSID [m] AuthType [32] EncryptType [8] key [12345678iop] map_flag [0x1] closed[0] disabled[0] Controller>>[controller_add_bssinfo_to_controller,321] ifname [(null)] band [0x1] SSID [MERCUSYS_Guest_59F5] AuthType [1] EncryptType [1] key [50278435] map_flag [0x9] closed[0] disabled[1] Controller>>[controller_add_bssinfo_to_controller,225] ifname [rax2] band [0x6] SSID [SRsqGRu8nyMzSNIdL0g2lFHv8DroFS] AuthType [32] EncryptType [8] key [2k0SBClkHFXMz3XmRTwy2hpxGmCJvt] map_flag [0x2] closed[0] disabled[0] Controller>>[controller_add_bssinfo_to_controller,273] ifname [rax0] band [0x6] SSID [m] AuthType [32] EncryptType [8] key [12345678iop] map_flag [0x1] closed[0] disabled[0] Controller>>[controller_add_bssinfo_to_controller,321] ifname [(null)] band [0x6] SSID [MERCUSYS_Guest_59F5_5G] AuthType [1] EncryptType [1] key [50278435] map_flag [0x9] closed[0] disabled[1] Controller>>[main,663] controller_add_bssinfo initialed socket non-blocking already set. flags=2050Controller>>[main,669] map_ubus initialed Controller>>[main,673] map_netlink initialed Controller>>[main,677] pre_config initialed IEEE1905-Controller >> ieee1905_check_reseting_factory_status(82) : Reseting factory check: Self is not reseting factory Controller>>[main,684] ieee1905_start [ 118.033796] perform_channel_change 2814: Channel change to 44, send_event_to_network_roaming [ 119.129093] 7981@C03L1,ExtEventBeaconLostHandler() 176: AP Beacon OFF!!! [ 119.136307] 7981@C03L1,ExtEventBeaconLostHandler() 176: AP Beacon OFF!!! [ 119.153225] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 119.405028] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 119.420524] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 119.440340] 7981@C12L1,EDCCAInit() 22366: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 119.457177] mtwf_dbg_prt: vsnprintf error [ 119.461184] 7981@C23L1,ReleaseChannelOpChargeForCurrentOwner() 1491: caller:Dot11HCntDownTimeoutAction+0x514/0x7d0 [mt_wifi]. Try to release an empty owner_bit_mask!! done [ 120.045053] ath_band_steering_netlink_receive 161 pid = 17547 [ 685.096060] sfe_interface_node_br_fdb_delete_event[235]:ffffffc01000bb08: local fdb or not deleting event, ignore [ 685.884099] [RTL8367S INFO] UTP_PORT1 link up speed 1000 [ 685.890223] [HNAT] Detect dev: eth0.3 state change, qid = 2, speed = 1000
OpenWrt bootlog
F0: 102B 0000 FA: 1040 0000 FA: 1040 0000 [0200] F9: 0000 0000 V0: 0000 0000 [0001] 00: 0000 0000 BP: 2400 0041 [0000] G0: 1190 0000 EC: 0000 0000 [1000] T0: 0000 01D3 [010F] Jump to BL NOTICE: BL2: v2.14.0(release):OpenWrt v2026.01.23~e06f2586-1 (mt7981-spim-nand-ubi-ddr3-1866) NOTICE: BL2: Built : 15:21:34, Jul 29 2026 NOTICE: WDT: [40000000] Software reset (reboot) NOTICE: EMI: Using DDR3 settings NOTICE: EMI: complex R/W mem test passed NOTICE: DRAM: 512MB NOTICE: CPU: MT7981 (1300MHz) NOTICE: SPI-NAND probed by parameter page NOTICE: SPI-NAND: POWERCHIP PSU1GS20DX (128MB) NOTICE: SPI-NAND: Page size: 2KB+64, Block size: 128KB NOTICE: UBI: scanning [0x100000 - 0x8000000] ... NOTICE: UBI: scanning is finished NOTICE: UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes NOTICE: UBI: VID header offset: 2048 (aligned 2048), data offset: 4096 NOTICE: UBI: Volume fip (Id #0) size is 906412 bytes NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.14.0(release):OpenWrt v2026.01.23~e06f2586-1 (mt7981-spim-nand-ubi-ddr3-1866) NOTICE: BL31: Built : 15:21:34, Jul 29 2026 U-Boot 2026.07-OpenWrt-r35534+59-69668f8f82 (Jul 29 2026 - 15:21:34 +0000) CPU: MediaTek MT7981 Model: MERCUSYS MR85X (UBI) DRAM: 512 MiB Core: 38 devices, 17 uclasses, devicetree: embed Loading Environment from UBI... spi-nand: spi_nand spi_nand@0: CASN page check failed spi-nand: spi_nand spi_nand@0: Fallback to read ID spi-nand: spi_nand spi_nand@0: ESMT SPI NAND was found. spi-nand: spi_nand spi_nand@0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 Read 126976 bytes from volume ubootenv to 000000005f7c1d40 Read 126976 bytes from volume ubootenv2 to 000000005f7e0d80 OK In: serial@11002000 Out: serial@11002000 Err: serial@11002000 reset button found Loading Environment from UBI... UBI partition 'ubi' already selected Read 126976 bytes from volume ubootenv to 000000005f7c1d00 Read 126976 bytes from volume ubootenv2 to 000000005f7e0d40 OK Net: ============================================ mtk_eth: Initializing Architecture with Native RTL8367S Support... ============================================ rtk_switch_init ret = 0!!!!!!!!!!!! rtk_switch reg = 0x1234 !!!!!!!!!!!! rtk_vlan_init ret = 0!!!!!!!!!!!! Realtek SDK: Unlocking port matrices via rtk_port_isolation_set... Realtek SDK: Global forward routing lanes unblocked! Set RTL8367S SGMII 2.5Gbps rtk_port_macForceLinkExt_set return value is 0 rtk_port_sgmiiNway_set return value is 0 eth0: ethernet@15100000 ( ( ( OpenWrt ) ) ) U-Boot 2026.07-OpenWrt-r35534+59-69668f8f82 (Jul 29 2026 - 15:21:34 +0000) 1. Run default boot command 2. Boot system via TFTP 3. Boot production system from NAND 4. Boot recovery system from NAND 5. Load production system via TFTP then write to NAND 6. Load recovery system via TFTP then write to NAND 7. Load BL31+U-Boot FIP via TFTP then write to NAND 8. Load BL2 preloader via TFTP then write to NAND 9. Reboot a. Reset all settings to factory defaults 0. Exit Press UP/DOWN to move, ENTER to select, ESC to quit off No size specified -> Using max size (11300864) Read 11300864 bytes from volume fit to 0000000046000000 ## Checking Image at 46000000 ... FIT image found FIT description: ARM64 OpenWrt FIT (Flattened Image Tree) Image 0 (kernel-1) Description: ARM64 OpenWrt Linux-6.18.44 Type: Kernel Image Compression: lzma compressed Data Start: 0x46001000 Data Size: 4663566 Bytes = 4.4 MiB Architecture: AArch64 OS: Linux Load Address: 0x48000000 Entry Point: 0x48000000 Hash algo: crc32 Hash value: 2242beec Hash algo: sha1 Hash value: fac19055a1d00d9a6413a1d49f54d0b9d09f07c5 Image 1 (fdt-1) Description: ARM64 OpenWrt mercusys_mr85x-ubi device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x46474000 Data Size: 23460 Bytes = 22.9 KiB Architecture: AArch64 Hash algo: crc32 Hash value: d76dd0e5 Hash algo: sha1 Hash value: d9fc81b6613038d936b93df49e1da1c93f3aeab3 Image 2 (rootfs-1) Description: ARM64 OpenWrt mercusys_mr85x-ubi rootfs Type: Filesystem Image Compression: uncompressed Data Start: 0x4647a000 Data Size: 6483968 Bytes = 6.2 MiB Hash algo: crc32 Hash value: 20a260e8 Hash algo: sha1 Hash value: 0b66129339db5421ec536a74c13c47de299f0066 Default Configuration: 'config-1' Configuration 0 (config-1) Description: OpenWrt mercusys_mr85x-ubi Kernel: kernel-1 FDT: fdt-1 Loadables: rootfs-1 ## Checking hash(es) for FIT Image at 46000000 ... Hash(es) for Image 0 (kernel-1): crc32+ sha1+ Hash(es) for Image 1 (fdt-1): crc32+ sha1+ Hash(es) for Image 2 (rootfs-1): crc32+ sha1+ ## Loading kernel (any) from FIT Image at 46000000 ... Using 'config-1' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-6.18.44 Type: Kernel Image Compression: lzma compressed Data Start: 0x46001000 Data Size: 4663566 Bytes = 4.4 MiB Architecture: AArch64 OS: Linux Load Address: 0x48000000 Entry Point: 0x48000000 Hash algo: crc32 Hash value: 2242beec Hash algo: sha1 Hash value: fac19055a1d00d9a6413a1d49f54d0b9d09f07c5 Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt (any) from FIT Image at 46000000 ... Using 'config-1' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt mercusys_mr85x-ubi device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x46474000 Data Size: 23460 Bytes = 22.9 KiB Architecture: AArch64 Hash algo: crc32 Hash value: d76dd0e5 Hash algo: sha1 Hash value: d9fc81b6613038d936b93df49e1da1c93f3aeab3 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x46474000 Working FDT set to 46474000 ## Loading loadables (any) from FIT Image at 46000000 ... Trying 'rootfs-1' loadables subimage Description: ARM64 OpenWrt mercusys_mr85x-ubi rootfs Type: Filesystem Image Compression: uncompressed Data Start: 0x4647a000 Data Size: 6483968 Bytes = 6.2 MiB Hash algo: crc32 Hash value: 20a260e8 Hash algo: sha1 Hash value: 0b66129339db5421ec536a74c13c47de299f0066 Verifying Hash Integrity ... crc32+ sha1+ OK Uncompressing Kernel Image to 48000000 Loading Device Tree to 000000005e7f7000, end 000000005e7ffba3 ... OK Working FDT set to 5e7f7000 Add 'ramoops@42ff0000' node failed: FDT_ERR_EXISTS Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.18.44 (builder@buildhost) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 14.4.0 r35658-2ad49f27db) 14.4.0, GNU ld (GNU Binutils) 2.46.1) #0 SMP Sat Aug 29 10:32:59 2026 [ 0.000000] KASLR enabled [ 0.000000] Machine model: MERCUSYS MR85X (UBI) [ 0.000000] OF: reserved mem: 0x0000000042ff0000..0x0000000042ffffff (64 KiB) map non-reusable ramoops@42ff0000 [ 0.000000] OF: reserved mem: 0x0000000043000000..0x000000004302ffff (192 KiB) nomap non-reusable secmon@43000000 [ 0.000000] OF: reserved mem: 0x0000000047c80000..0x0000000047d7ffff (1024 KiB) nomap non-reusable wmcpu-reserved@47c80000 [ 0.000000] OF: reserved mem: 0x0000000047d80000..0x0000000047dbffff (256 KiB) nomap non-reusable wo-emi@47d80000 [ 0.000000] OF: reserved mem: 0x0000000047dc0000..0x0000000047ffffff (2304 KiB) nomap non-reusable wo-data@47dc0000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000042ffffff] [ 0.000000] node 0: [mem 0x0000000043000000-0x000000004302ffff] [ 0.000000] node 0: [mem 0x0000000043030000-0x0000000047c7ffff] [ 0.000000] node 0: [mem 0x0000000047c80000-0x0000000047ffffff] [ 0.000000] node 0: [mem 0x0000000048000000-0x000000005fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.5 [ 0.000000] percpu: Embedded 20 pages/cpu s43416 r8192 d30312 u81920 [ 0.000000] pcpu-alloc: s43416 r8192 d30312 u81920 alloc=20*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GICv3 CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: root=/dev/fit0 rootwait [ 0.000000] printk: log buffer data + meta data: 131072 + 458752 = 589824 bytes [ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 0MB [ 0.000000] software IO TLB: area num 2. [ 0.000000] software IO TLB: mapped [mem 0x000000005f540000-0x000000005f5c0000] (0MB) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 131072 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 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: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 640 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 0.000000] GICv3: GICD_CTLR.DS=0, SCR_EL3.FIQ=0 [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.000000] arch_timer: cp15 timer running at 13.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns [ 0.000000] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns [ 0.000090] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.000099] pid_max: default: 32768 minimum: 301 [ 0.002517] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.002526] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.007604] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.008431] rcu: Hierarchical SRCU implementation. [ 0.008438] rcu: Max phase no-delay instances is 1000. [ 0.008635] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level [ 0.008852] smp: Bringing up secondary CPUs ... [ 0.009255] Detected VIPT I-cache on CPU1 [ 0.009305] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.009337] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.009420] smp: Brought up 1 node, 2 CPUs [ 0.009425] SMP: Total of 2 processors activated. [ 0.009428] CPU: All CPU(s) started at EL2 [ 0.009430] CPU features: detected: 32-bit EL0 Support [ 0.009434] CPU features: detected: CRC32 instructions [ 0.009461] alternatives: applying system-wide alternatives [ 0.009599] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.009737] Memory: 492620K/524288K available (9664K kernel code, 946K rwdata, 2976K rodata, 960K init, 295K bss, 29744K reserved, 0K cma-reserved) [ 0.013301] posixtimers hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.013338] futex hash table entries: 512 (32768 bytes on 1 NUMA nodes, total 32 KiB, linear). [ 0.013379] 2G module region forced by RANDOMIZE_MODULE_REGION_FULL [ 0.013387] 0 pages in range for non-PLT usage [ 0.013389] 520528 pages in range for PLT usage [ 0.014976] pinctrl core: initialized pinctrl subsystem [ 0.016232] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.016572] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.016599] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.016620] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.017076] thermal_sys: Registered thermal governor 'fair_share' [ 0.017080] thermal_sys: Registered thermal governor 'bang_bang' [ 0.017084] thermal_sys: Registered thermal governor 'step_wise' [ 0.017086] thermal_sys: Registered thermal governor 'user_space' [ 0.017171] ASID allocator initialised with 65536 entries [ 0.017842] pstore: Using crash dump compression: deflate [ 0.017847] pstore: Registered ramoops as persistent store backend [ 0.017850] ramoops: using 0x10000@0x42ff0000, ecc: 0 [ 0.019384] /soc/interrupt-controller@c000000: Fixed dependency cycle(s) with /soc/interrupt-controller@c000000 [ 0.038352] SCSI subsystem initialized [ 0.038538] libata version 3.00 loaded. [ 0.040328] clocksource: Switched to clocksource arch_sys_counter [ 0.042858] NET: Registered PF_INET protocol family [ 0.042977] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.044192] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.044206] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.044221] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.044251] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 0.044360] TCP: Hash tables configured (established 4096 bind 4096) [ 0.044601] MPTCP token hash table entries: 512 (order: 2, 12288 bytes, linear) [ 0.044715] UDP hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.044737] UDP-Lite hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.044958] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.044984] PCI: CLS 0 bytes, default 64 [ 0.045970] workingset: timestamp_bits=46 max_order=17 bucket_order=0 [ 0.051191] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.051201] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.054165] cryptd: max_cpu_qlen set to 1000 [ 0.111977] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.113254] printk: legacy console [ttyS0] disabled [ 0.133687] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 72, base_baud = 2500000) is a ST16650V2 [ 0.133732] printk: legacy console [ttyS0] enabled [ 0.917175] mtk_rng trng: registered RNG driver [ 0.920397] random: crng init done [ 0.928464] loop: module loaded [ 0.934533] spi-nand spi0.0: ESMT SPI NAND was found. [ 0.939589] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 [ 0.949106] 2 fixed-partitions partitions found on MTD device spi0.0 [ 0.955763] Creating 2 MTD partitions on "spi0.0": [ 0.960605] 0x000000000000-0x000000100000 : "bl2" [ 0.966626] 0x000000100000-0x000008000000 : "ubi" [ 1.054083] ubi0: default fastmap pool size: 50 [ 1.058619] ubi0: default fastmap WL pool size: 25 [ 1.063428] ubi0: attaching mtd1 [ 2.006838] ubi0: scanning is finished [ 2.022123] ubi0: attached mtd1 (name "ubi", size 127 MiB) [ 2.027615] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 2.034498] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 2.041282] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 2.048230] ubi0: good PEBs: 1016, bad PEBs: 0, corrupted PEBs: 0 [ 2.054323] ubi0: user volume: 6, internal volumes: 1, max. volumes count: 128 [ 2.061538] ubi0: max/mean erase counter: 36/15, WL threshold: 4096, image sequence number: 1228403176 [ 2.070844] ubi0: available PEBs: 0, total reserved PEBs: 1016, PEBs reserved for bad PEB handling: 20 [ 2.080143] ubi0: background thread "ubi_bgt0d" started, PID 192 [ 2.087173] block ubiblock0_4: created from ubi0:4(fit) [ 2.096527] mtk_soc_eth 15100000.ethernet: legacy DT: using hard-coded SRAM offset. [ 2.104609] mtk_soc_eth 15100000.ethernet: legacy DT: missing interrupt-names. [ 2.257714] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc080900000, irq 75 [ 2.267660] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc080900000, irq 75 [ 2.277578] i2c_dev: i2c /dev entries driver [ 2.283836] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 2.349340] NET: Registered PF_INET6 protocol family [ 2.355216] Segment Routing with IPv6 [ 2.358902] In-situ OAM (IOAM) with IPv6 [ 2.362892] NET: Registered PF_PACKET protocol family [ 2.368082] 8021q: 802.1Q VLAN Support v1.8 [ 2.392159] FIT: Detected U-Boot 2026.07-OpenWrt-r35534+59-69668f8f82 [ 2.398607] FIT: Selected configuration: "config-1" (OpenWrt mercusys_mr85x-ubi) [ 2.406022] FIT: kernel sub-image 0x00001000..0x0047390d "kernel-1" (ARM64 OpenWrt Linux-6.18.44) [ 2.415856] FIT: flat_dt sub-image 0x00474000..0x00479ba3 "fdt-1" (ARM64 OpenWrt mercusys_mr85x-ubi device tree blob) [ 2.427336] FIT: filesystem sub-image 0x0047a000..0x00aa8fff "rootfs-1" (ARM64 OpenWrt mercusys_mr85x-ubi rootfs) [ 2.438716] block ubiblock0_4: mapped 1 uImage.FIT filesystem sub-image as /dev/fit0 [ 2.446732] clk: Disabling unused clocks [ 2.450984] PM: genpd: Disabling unused power domains [ 2.456719] check access for rdinit=/init failed: -2, ignoring [ 2.468838] VFS: Mounted root (squashfs filesystem) readonly on device 259:0. [ 2.476493] Freeing unused kernel memory: 960K [ 2.481077] Run /sbin/init as init process [ 2.485172] with arguments: [ 2.488127] /sbin/init [ 2.490850] with environment: [ 2.493980] HOME=/ [ 2.496328] TERM=linux [ 2.864211] init: Console is alive [ 2.867782] init: - watchdog - [ 3.392169] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 5.628671] Airoha EN8811H mdio-bus:0f: MD32 firmware version: 25062302 [ 5.640840] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 5.800797] rtl8365mb-mdio mdio-bus:1d: found an RTL8367S switch [ 5.984439] rtl8365mb-mdio mdio-bus:1d: missing child interrupt-controller node [ 5.991765] rtl8365mb-mdio mdio-bus:1d: no interrupt support [ 6.158255] rtl8365mb-mdio mdio-bus:1d: configuring for fixed/2500base-x link mode [ 6.172597] rtl8365mb-mdio mdio-bus:1d lan1 (uninitialized): PHY [mdio-bus:1d:user_mii:00] driver [RTL8365MB-VC Gigabit Ethernet] (irq=POLL) [ 6.172930] rtl8365mb-mdio mdio-bus:1d: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 6.189356] rtl8365mb-mdio mdio-bus:1d lan2 (uninitialized): PHY [mdio-bus:1d:user_mii:01] driver [RTL8365MB-VC Gigabit Ethernet] (irq=POLL) [ 6.209832] rtl8365mb-mdio mdio-bus:1d lan3 (uninitialized): PHY [mdio-bus:1d:user_mii:02] driver [RTL8365MB-VC Gigabit Ethernet] (irq=POLL) [ 6.226635] mtk_soc_eth 15100000.ethernet eth0: entered promiscuous mode [ 6.233406] DSA: tree 0 setup [ 6.238850] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 6.254103] init: - preinit - [ 6.738918] mtk_soc_eth 15100000.ethernet wan: renamed from eth1 [ 6.753878] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 6.762457] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 7.188107] rtl8365mb-mdio mdio-bus:1d lan1: configuring for phy/gmii link mode Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 11.403430] UBIFS (ubi0:5): default file-system created [ 11.409561] UBIFS (ubi0:5): Mounting in unauthenticated mode [ 11.415335] UBIFS (ubi0:5): background thread "ubifs_bgt0_5" started, PID 699 [ 11.503084] UBIFS (ubi0:5): UBIFS: mounted UBI device 0, volume 5, name "rootfs_data" [ 11.510952] UBIFS (ubi0:5): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 11.520864] UBIFS (ubi0:5): FS size: 111357952 bytes (106 MiB, 877 LEBs), max 888 LEBs, journal size 5586944 bytes (5 MiB, 44 LEBs) [ 11.532680] UBIFS (ubi0:5): reserved for root: 4952683 bytes (4836 KiB) [ 11.539282] UBIFS (ubi0:5): media format: w5/r0 (latest is w5/r0), UUID 3DE9D8C4-FE7E-4EB2-8B62-5E29E9263BDC, small LPT model [ 11.552946] mount_root: overlay filesystem has not been fully initialized yet [ 11.560307] mount_root: switching to ubifs overlay [ 11.568821] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 11.581111] urandom-seed: Seed file not found (/etc/urandom.seed) cfg016cb7 cfg026cb7 grep: /etc/fw_env.config: No such file or directory - generating board file - [ 12.650799] procd: - early - [ 12.653744] procd: - watchdog - [ 13.225253] procd: - watchdog - [ 13.228870] procd: - ubus - [ 13.383076] procd: - init - Please press Enter to activate this console. [ 14.054680] urngd: v1.0.2 started. [ 14.349389] kmodloader: loading kernel modules from /etc/modules.d/* [ 14.404490] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 [ 14.421496] Loading modules backported from Linux version v6.18.39-0-gf89c29685 [ 14.428807] Backport generated by backports.git 614e5ed [ 14.817667] mt798x-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20260515121445a [ 15.059388] mt798x-wmac 18000000.wifi: WM Firmware Version: ____000000, Build Time: 20260515121504 [ 15.173298] mt798x-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20260515121859 [ 15.306223] PPP generic driver version 2.4.2 [ 15.311543] NET: Registered PF_PPPOX protocol family [ 15.321697] batman_adv: B.A.T.M.A.N. advanced 6.18.44 (compatibility version 15) loaded [ 15.338987] kmodloader: done loading kernel modules from /etc/modules.d/* [ 22.134078] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 22.162523] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 22.171308] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 22.175697] rtl8365mb-mdio mdio-bus:1d lan1: configuring for phy/gmii link mode [ 22.203216] br-lan: port 1(lan1) entered blocking state [ 22.208455] br-lan: port 1(lan1) entered disabled state [ 22.213731] rtl8365mb-mdio mdio-bus:1d lan1: entered allmulticast mode [ 22.220252] mtk_soc_eth 15100000.ethernet eth0: entered allmulticast mode [ 22.241021] rtl8365mb-mdio mdio-bus:1d lan1: entered promiscuous mode [ 22.269020] rtl8365mb-mdio mdio-bus:1d lan2: configuring for phy/gmii link mode [ 22.294100] br-lan: port 2(lan2) entered blocking state [ 22.299338] br-lan: port 2(lan2) entered disabled state [ 22.304621] rtl8365mb-mdio mdio-bus:1d lan2: entered allmulticast mode [ 22.312934] rtl8365mb-mdio mdio-bus:1d lan2: entered promiscuous mode [ 22.327625] rtl8365mb-mdio mdio-bus:1d lan3: configuring for phy/gmii link mode [ 22.348627] br-lan: port 3(lan3) entered blocking state [ 22.353880] br-lan: port 3(lan3) entered disabled state [ 22.359133] rtl8365mb-mdio mdio-bus:1d lan3: entered allmulticast mode [ 22.367742] rtl8365mb-mdio mdio-bus:1d lan3: entered promiscuous mode [ 22.386078] mtk_soc_eth 15100000.ethernet wan: PHY [mdio-bus:0f] driver [Airoha EN8811H] (irq=POLL) [ 22.395538] mtk_soc_eth 15100000.ethernet wan: configuring for phy/2500base-x link mode [ 25.438830] rtl8365mb-mdio mdio-bus:1d lan2: Link is Up - 1Gbps/Full - flow control rx/tx [ 25.447101] br-lan: port 2(lan2) entered blocking state [ 25.452327] br-lan: port 2(lan2) entered forwarding state




