MERCUSYS MR90X v1
The MERCUSYS MR90X(EU) v1 router supports 4 802.11ax streams on both 2.4GHz @40MHz and 5GHz @160MHz for a combined 6000Mbps wireless speed. It is based on the MediaTek MT7986B SoC.
The Chinese model X60G(AX6000) is NOT the same, which doesn't have a 2.5 Gpbs PHY either.
Supported Versions
Installation
1. Connect network cable to the LAN1 port of the router
2. Login as root via SSH (router IP, port 20001
, password - your web interface password)
BusyBox v1.19.4 (2022-09-15 21:10:21 CST) built-in shell (ash) Enter 'help' for a list of built-in commands. MM NM MMMMMMM M M $MMMMM MMMMM MMMMMMMMMMM MMM MMM MMMMMMMM MM MMMMM. MMMMM:MMMMMM: MMMM MMMMM MMMM= MMMMMM MMM MMMM MMMMM MMMM MMMMMM MMMM MMMMM' MMMM= MMMMM MMMM MM MMMMM MMMM MMMM MMMMNMMMMM MMMM= MMMM MMMMM MMMMM MMMM MMMM MMMMMMMM MMMM= MMMM MMMMMM MMMMM MMMM MMMM MMMMMMMMM MMMM= MMMM MMMMM, NMMMMMMMM MMMM MMMM MMMMMMMMMMM MMMM= MMMM MMMMMM MMMMMMMM MMMM MMMM MMMM MMMMMM MMMM= MMMM MM MMMM MMMM MMMM MMMM MMMM MMMM MMMM$ ,MMMMM MMMMM MMMM MMM MMMM MMMMM MMMM MMMM MMMMMMM: MMMMMMM M MMMMMMMMMMMM MMMMMMM MMMMMMM MMMMMM MMMMN M MMMMMMMMM MMMM MMMM MMMM M MMMMMMM M M M --------------------------------------------------------------- For those about to rock... (Attitude Adjustment, unknown) --------------------------------------------------------------- admin@Akronite:/root$
3. Run the following command:
fw_printenv | grep tp_boot_idx
If the result is tp_boot_idx=1
then install MERCUSYS stock firmware using web interface and start from the p.2. Otherwise, go to the next step.
4. Open for editing /etc/hotplug.d/iface/65-iptv
(e.g., using WinSCP and SSH settings from the p.2)
5. Add a newline after #!/bin/sh
:
telnetd -l /bin/login.sh
6. Save 65-iptv
file
7. Toggle IPTV/VLAN Enable
checkbox in the router web interface and save
8. Make sure that telnetd is running:
netstat -ltunp | grep 23
9. Login via telnet to router IP, port 23
(no username and password are required)
BusyBox v1.19.4 (2022-09-15 21:10:21 CST) built-in shell (ash) Enter 'help' for a list of built-in commands. MM NM MMMMMMM M M $MMMMM MMMMM MMMMMMMMMMM MMM MMM MMMMMMMM MM MMMMM. MMMMM:MMMMMM: MMMM MMMMM MMMM= MMMMMM MMM MMMM MMMMM MMMM MMMMMM MMMM MMMMM' MMMM= MMMMM MMMM MM MMMMM MMMM MMMM MMMMNMMMMM MMMM= MMMM MMMMM MMMMM MMMM MMMM MMMMMMMM MMMM= MMMM MMMMMM MMMMM MMMM MMMM MMMMMMMMM MMMM= MMMM MMMMM, NMMMMMMMM MMMM MMMM MMMMMMMMMMM MMMM= MMMM MMMMMM MMMMMMMM MMMM MMMM MMMM MMMMMM MMMM= MMMM MM MMMM MMMM MMMM MMMM MMMM MMMM MMMM$ ,MMMMM MMMMM MMMM MMM MMMM MMMMM MMMM MMMM MMMMMMM: MMMMMMM M MMMMMMMMMMMM MMMMMMM MMMMMMM MMMMMM MMMMN M MMMMMMMMM MMMM MMMM MMMM M MMMMMMM M M M --------------------------------------------------------------- For those about to rock... (Attitude Adjustment, unknown) --------------------------------------------------------------- root@Akronite:/#
10. Upload OpenWrt initramfs-kernel.bin
to the /tmp
folder of the router (e.g., using WinSCP and SSH settings from the p.2, or with cat initramfs-kernel.bin | ssh -p 20001 root@YOUR_ROUTER_IP “cat > /tmp/initramfs-kernel.bin”
-- can't simply scp
the file because there's no SFTP on the router)
11. Stock busybox doesn't contain ubiupdatevol
command. Hence, we need to download and upload the full version of busybox to the router. For example, from ArchLinux - https://archlinuxarm.org/packages/aarch64/busybox. Dowload the pkg.tar.xz file, unpack it with tar xvf busybox-1.36.1-1-aarch64.pkg.tar.xz
, then upload usr/bin/busybox
to the /tmp
dir of the router and run in the telnet shell:
cd /tmp chmod a+x busybox
12. Check initramfs-kernel.bin
size:
du -h initramfs-kernel.bin
13. Delete old and create a new one kernel
volume with appropriate size (greater than initramfs-kernel.bin
size):
ubirmvol /dev/ubi0 -N kernel ubimkvol /dev/ubi0 -n 1 -N kernel -s 9MiB
14. Write OpenWrt initramfs-kernel.bin
to the flash:
./busybox ubiupdatevol /dev/ubi0_1 /tmp/initramfs-kernel.bin
15. Reboot to OpenWrt initramfs:
reboot
16. Login as root via SSH (IP 192.168.1.1
, port 22
)
17. Once inside OpenWrt, set (or update) env variables:
fw_setenv baudrate 115200 fw_setenv bootargs "ubi.mtd=ubi0 console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 init=/etc/preinit" fw_setenv fdtcontroladdr 5ffc0e70 fw_setenv ipaddr 192.168.1.1 fw_setenv loadaddr 0x46000000 fw_setenv mtdids "spi-nand0=spi-nand0" fw_setenv mtdparts "spi-nand0:2M(boot),1M(u-boot-env),50M(ubi0),50M(ubi1),8M(userconfig),4M(tp_data)" fw_setenv netmask 255.255.255.0 fw_setenv serverip 192.168.1.2 fw_setenv stderr serial@11002000 fw_setenv stdin serial@11002000 fw_setenv stdout serial@11002000 fw_setenv tp_boot_idx 0
18. Upload OpenWrt sysupgrade.bin
image to the /tmp
dir of the router
19. Run sysupgrade:
sysupgrade -n /tmp/sysupgrade.bin
Installation (using 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. Once inside OpenWrt, set (or update) env variables:
fw_setenv baudrate 115200 fw_setenv bootargs "ubi.mtd=ubi0 console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 init=/etc/preinit" fw_setenv fdtcontroladdr 5ffc0e70 fw_setenv ipaddr 192.168.1.1 fw_setenv loadaddr 0x46000000 fw_setenv mtdids "spi-nand0=spi-nand0" fw_setenv mtdparts "spi-nand0:2M(boot),1M(u-boot-env),50M(ubi0),50M(ubi1),8M(userconfig),4M(tp_data)" fw_setenv netmask 255.255.255.0 fw_setenv serverip 192.168.1.2 fw_setenv stderr serial@11002000 fw_setenv stdin serial@11002000 fw_setenv stdout serial@11002000 fw_setenv tp_boot_idx 0
5. Run sysupgrade -n
with the sysupgrade OpenWrt image
Flash Layout
0x000000000000-0x000000200000 : "boot" 0x200000 0x000000200000-0x000000300000 : "u-boot-env" 0x100000 0x000000300000-0x000003500000 : "ubi0" 0x3200000 0x000003500000-0x000006700000 : "ubi1" 0x3200000 0x000006700000-0x000006f00000 : "userconfig" 0x800000 0x000006f00000-0x000007300000 : "tp_data" 0x400000
ubi sctructure
+---------------------+--------------------+---------------------+---------------------+ | UBI Image: | | | | | Volume Name: uboot | Volume Name: uboot | Volume Name: kernel | Volume Name: rootfs | | Volume Name: kernel | Vol ID: 0 | Vol ID: 1 | Vol ID: 2 | | Volume Name: rootfs | Vol_type: 'static' | Vol_type: 'static' | Vol_type: 'static' | +---------------------+--------------------+---------------------+---------------------+
uboot - secondary u-boot in UBI
MT7986> version U-Boot 2022.01-rc4 (Sep 15 2022 - 20:55:22 +0800)
MAC address is stored in UBI partition tp_data
, file default-mac
. OEM wireless eeprom is also there (file MT7986_EEPROM.bin
).
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/flash
LuCI 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
1. Press Reset button and power on the router
2. Navigate to U-Boot recovery web server (http://192.168.1.1/) and upload the OEM firmware
UART method
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.)
Failsafe mode
Basic configuration
→ Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.
Specific Configuration
Network interfaces
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 |
---|---|
WAN/LAN 2.5Gbps | wan |
WAN/LAN 1Gbps | lan0 |
LAN1 | lan1 |
LAN2 | lan2 |
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 MR90X has the following buttons:
BUTTON | Event |
---|---|
Reset | reset |
Hardware
Info
Photos
Opening the case
Note: This may void your warranty!
Unscrew the crews. 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.
Main PCB:
Serial
→ port.serial general information about the serial port, serial port cable, etc.
How to connect to the Serial Port of this specific device:
The R3 and R6 are absent on the PCB. You should solder them or solder the jumpers.
V +-------+-------+-------+-------+ | +3.3V | GND | | | +---+---+-------+-------+-------+ | +--- Don't connect
Serial connection parameters for MERCUSYS MR90X v1 | 115200, 8N1, 3.3V |
---|
JTAG
None so far.
→ port.jtag general information about the JTAG port, JTAG cable, etc.
Bootloader mods
None so far.
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 0141 [010F] Jump to BL NOTICE: BL2: v2.6(release):02e589f3e-dirty NOTICE: BL2: Built : 20:56:26, Sep 15 2022 NOTICE: WDT: disabled NOTICE: EMI: Using DDR3 settings NOTICE: EMI: Detected DRAM size: 512MB NOTICE: EMI: complex R/W mem test passed NOTICE: SPI_NAND parses attributes from parameter page. NOTICE: SPI_NAND Detected ID 0x1 NOTICE: Page size 2048, Block size 131072, size 134217728 NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.6(release):02e589f3e-dirty NOTICE: BL31: Built : 20:56:31, Sep 15 2022 U-Boot 2022.01-rc4 (Sep 15 2022 - 20:55:22 +0800) CPU: MediaTek MT7986 Model: mt7986-rfb DRAM: 512 MiB MMC: mmc@11230000: 0 Loading Environment from MTD... spi-nand: spi_nand spi_nand@1: GigaDevice SPI NAND was found. spi-nand: spi_nand spi_nand@1: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 *** Warning - bad CRC, using default environment In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: Warning: ethernet@15100000 (eth0) using random MAC address - 7e:0c:df:07:13:c6 eth0: ethernet@15100000 press ctrl-c or t to go to uboot cmdline 0 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: 302291140 ubi0: available PEBs: 176, total reserved PEBs: 224, 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: 747088 Bytes = 729.6 KiB Load Address: 00000000 Entry Point: 41e00000 Verifying Checksum ... OK Loading Standalone Program U-Boot 2022.01-rc4 (Sep 15 2022 - 20:54:19 +0800) CPU: MediaTek MT7986 Model: mt7986-rfb DRAM: 512 MiB MMC: mmc@11230000: 0 Loading Environment from MTD... spi-nand: spi_nand spi_nand@1: GigaDevice SPI NAND was found. spi-nand: spi_nand spi_nand@1: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 *** Warning - bad CRC, using default environment In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: Warning: ethernet@15100000 (eth0) using random MAC address - 26:c7:77:6d:6d:53 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: 3200316 Bytes = 3.1 MiB Architecture: AArch64 OS: Linux Load Address: 0x48080000 Entry Point: 0x48080000 Hash algo: crc32 Hash value: 3261ac17 Hash algo: sha1 Hash value: f4dba8937ecd9002306d70e4be756e9f8224938f 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 mt7986b-ax6000-snand-rfb device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x4630d76c Data Size: 17611 Bytes = 17.2 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 10a4903f Hash algo: sha1 Hash value: b26303dad8e480332accfafd1064715b52728d2e Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x4630d76c Uncompressing Kernel Image Loading Device Tree to 000000005f7f3000, end 000000005f7fa4ca ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.4.124 (ubuntu@1da148b9d652) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r0-c067e3725)) #0 SMP Thu Aug 11 01:30:24 2022 [ 0.000000] Machine model: MediaTek MT7986b RFB [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] On node 0 totalpages: 130064 [ 0.000000] DMA32 zone: 2048 pages used for memmap [ 0.000000] DMA32 zone: 0 pages reserved [ 0.000000] DMA32 zone: 130064 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] 2 [0] 3 [ 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: 128016 [ 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: 492040K/520256K available (6462K kernel code, 482K rwdata, 1848K rodata, 448K init, 284K bss, 28216K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, 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.000002] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns [ 0.008167] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.018573] pid_max: default: 32768 minimum: 301 [ 0.023274] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.030624] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.039171] ASID allocator initialised with 65536 entries [ 0.044649] rcu: Hierarchical SRCU implementation. [ 0.049705] smp: Bringing up secondary CPUs ... [ 0.054472] Detected VIPT I-cache on CPU1 [ 0.054490] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.054509] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.054775] Detected VIPT I-cache on CPU2 [ 0.054787] GICv3: CPU2: found redistributor 2 region 0:0x000000000c0c0000 [ 0.054797] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.055017] Detected VIPT I-cache on CPU3 [ 0.055027] GICv3: CPU3: found redistributor 3 region 0:0x000000000c0e0000 [ 0.055035] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.055069] smp: Brought up 1 node, 4 CPUs [ 0.111626] SMP: Total of 4 processors activated. [ 0.116347] CPU features: detected: 32-bit EL0 Support [ 0.121505] CPU features: detected: CRC32 instructions [ 0.126761] CPU: All CPU(s) started at EL2 [ 0.130877] alternatives: patching kernel code [ 0.137233] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.147130] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.154120] pinctrl core: initialized pinctrl subsystem [ 0.159828] NET: Registered protocol family 16 [ 0.164478] DMA: preallocated 256 KiB pool for atomic allocations [ 0.171015] cpuidle: using governor ladder [ 0.175144] cpuidle: using governor menu [ 0.186659] cryptd: max_cpu_qlen set to 1000 [ 0.192115] SCSI subsystem initialized [ 0.195977] libata version 3.00 loaded. [ 0.200221] workqueue: max_active 576 requested for napi_workq is out of range, clamping between 1 and 512 [ 0.210431] rbus 18000000.wbsys: PCI host bridge to bus 0000:00 [ 0.216381] pci_bus 0000:00: root bus resource [mem 0x18000000-0x18ffffff] [ 0.223372] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.228881] pci_bus 0000:00: scanning bus [ 0.232916] pci 0000:00:00.0: [14c3:7986] type 00 class 0x000280 [ 0.238960] pci 0000:00:00.0: reg 0x10: [mem 0x18000000-0x1800000f 64bit] [ 0.245780] pci 0000:00:00.0: reg 0x18: [mem 0x00000000-0x0000000f] [ 0.252078] pci 0000:00:00.0: reg 0x1c: [mem 0x00000000-0x0000000f] [ 0.258373] pci 0000:00:00.0: reg 0x20: [mem 0x00000000-0x0000000f] [ 0.264671] pci 0000:00:00.0: reg 0x24: [mem 0x00000000-0x0000000f] [ 0.271729] pci_bus 0000:00: fixups for bus [ 0.275932] pci_bus 0000:00: bus scan returning with max=00 [ 0.281786] clocksource: Switched to clocksource arch_sys_counter [ 0.288474] thermal_sys: Registered thermal governor 'fair_share' [ 0.288477] thermal_sys: Registered thermal governor 'bang_bang' [ 0.294607] thermal_sys: Registered thermal governor 'step_wise' [ 0.300638] thermal_sys: Registered thermal governor 'user_space' [ 0.306673] thermal_sys: Registered thermal governor 'power_allocator' [ 0.312979] NET: Registered protocol family 2 [ 0.323973] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.331690] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.340113] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.347919] TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 0.355129] TCP: Hash tables configured (established 4096 bind 4096) [ 0.361565] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.368135] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.375210] NET: Registered protocol family 1 [ 0.379600] PCI: CLS 0 bytes, default 64 [ 0.384209] workingset: timestamp_bits=46 max_order=17 bucket_order=0 [ 0.393035] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.398897] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.428269] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.435194] printk: console [ttyS0] disabled [ 0.459599] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 11, base_baud = 2500000) is a ST16650V2 [ 0.468804] printk: console [ttyS0] enabled [ 0.468804] printk: console [ttyS0] enabled [ 0.477156] printk: bootconsole [uart8250] disabled [ 0.477156] printk: bootconsole [uart8250] disabled [ 0.487327] mtk_rng 1020f000.trng: registered RNG driver [ 0.487560] random: fast init done [ 0.496250] random: crng init done [ 0.500528] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.508422] loop: module loaded [ 0.512350] mt7986-pinctrl 1001f000.pinctrl: pin_config_set op failed for pin 36 [ 0.519726] mtk-spi 1100a000.spi: Error applying setting, reverse things back [ 0.527297] spi-nand spi0.1: GigaDevice SPI NAND was found. [ 0.532876] spi-nand spi0.1: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 [ 0.541157] 6 fixed-partitions partitions found on MTD device spi0.1 [ 0.547512] Creating 6 MTD partitions on "spi0.1": [ 0.552291] 0x000000000000-0x000000200000 : "boot" [ 0.559053] 0x000000200000-0x000000300000 : "u-boot-env" [ 0.565516] 0x000000300000-0x000003500000 : "ubi0" [ 0.609824] 0x000003500000-0x000006700000 : "ubi1" [ 0.654097] 0x000006700000-0x000006f00000 : "userconfig" [ 0.665980] 0x000006f00000-0x000007300000 : "tp_data" [ 0.674835] libphy: Fixed MDIO Bus: probed [ 0.690766] libphy: mdio: probed [ 0.738808] mtk_soc_eth 15100000.ethernet: generated random MAC address 16:81:e5:ed:7d:96 [ 0.747208] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc011780000, irq 120 [ 0.756339] mtk_soc_eth 15100000.ethernet: generated random MAC address a2:72:87:19:b6:31 [ 0.764677] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc011780000, irq 120 [ 0.773792] (unnamed net_device) (dummy): netif_napi_add() called with weight 256 [ 0.781436] i2c /dev entries driver [ 0.785868] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 0.793763] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 0.822725] lp5523x 0-0032: device detection err: -6 [ 0.827844] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433,alg:7fcdfc00 [ 0.839643] exFAT: Version 1.3.0 [ 0.843074] GACT probability on [ 0.846207] Mirror/redirect action on [ 0.849859] u32 classifier [ 0.852559] input device check on [ 0.856204] Actions configured [ 0.859673] ipip: IPv4 and MPLS over IPv4 tunneling driver [ 0.865397] gre: GRE over IPv4 demultiplexor driver [ 0.870256] ip_gre: GRE over IPv4 tunneling driver [ 0.875618] Initializing XFRM netlink socket [ 0.880148] NET: Registered protocol family 10 [ 0.885304] Segment Routing with IPv6 [ 0.888986] NET: Registered protocol family 17 [ 0.893474] Bridge firewalling registered [ 0.897518] 8021q: 802.1Q VLAN Support v1.8 [ 1.120181] libphy: dsa slave smi: probed [ 1.125040] mt7530 mdio-bus:1f lan0 (uninitialized): PHY [dsa-0.0:00] driver [Generic PHY] [ 1.134454] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [dsa-0.0:01] driver [Generic PHY] [ 1.143808] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [dsa-0.0:02] driver [Generic PHY] [ 1.153146] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [dsa-0.0:03] driver [Generic PHY] [ 1.161849] mt7530 mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.168973] DSA: tree 0 setup [ 1.169226] mt7530 mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.172102] ubi0: attaching mtd2 [ 1.439605] ubi0: scanning is finished [ 1.450860] ubi0: attached mtd2 (name "ubi0", size 50 MiB) [ 1.456335] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.463192] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.469957] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.476900] ubi0: good PEBs: 400, bad PEBs: 0, corrupted PEBs: 0 [ 1.482890] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 1.490089] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 302291140 [ 1.499111] ubi0: available PEBs: 176, total reserved PEBs: 224, PEBs reserved for bad PEB handling: 20 [ 1.508485] ubi0: background thread "ubi_bgt0d" started, PID 699 [ 4.823115] block ubiblock0_2: created from ubi0:2(rootfs) [ 4.828584] ubiblock: device ubiblock0_2 (rootfs) set to be root filesystem [ 4.835537] hctosys: unable to open rtc device (rtc0) [ 4.840987] UBIFS (ubi0:2): static UBI volume - read-only mode [ 4.846815] UBIFS error (ubi0:2 pid 1): ubifs_mount: cannot mount read-write - read-only media [ 4.857959] VFS: Mounted root (squashfs filesystem) readonly on device 253:0. [ 4.865270] Freeing unused kernel memory: 448K [ 4.901822] Run /etc/preinit as init process [ 5.812749] tfat: module license 'Commercial. For support email exfat-support@tuxera.com' taints kernel. [ 5.822222] Disabling lock debugging due to kernel taint [ 5.832703] Tuxera FAT 12/16/32 driver version 3021.3.22.7_lite [Flags: R/W MODULE]. [ 5.840433] Built against headers 5.4.124 #0 SMP Wed Jan 19 07:45:33 2022 aarch64 [ 5.847900] Running on kernel 5.4.124 #0 SMP Thu Aug 11 01:30:24 2022 aarch64 [ 5.948728] Tuxera NTFS driver 3021.4.23.8_lite [Flags: R/W MODULE]. [ 5.955091] Built against headers 5.4.124 #0 SMP Wed Jan 19 07:45:33 2022 aarch64 [ 5.962556] Running on kernel 5.4.124 #0 SMP Thu Aug 11 01:30:24 2022 aarch64 [ 5.998744] Tuxera HFS+ driver 3021.5.18 [ 5.998751] Built against headers 5.4.124 #0 SMP Wed Jan 19 07:45:33 2022 aarch64 [ 6.010141] Running on kernel 5.4.124 #0 SMP Thu Aug 11 01:30:24 2022 aarch64 - preinit - - regular preinit - jffs2 not ready yet; using ramdisk ubi device is not attached, try to attach it now. [ 7.190929] ubi1: attaching mtd5 [ 7.215357] ubi1: scanning is finished [ 7.226532] ubi1: attached mtd5 (name "tp_data", size 4 MiB) [ 7.232182] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 7.239034] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 7.245803] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 7.252746] ubi1: good PEBs: 32, bad PEBs: 0, corrupted PEBs: 0 [ 7.258644] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 7.265847] ubi1: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 682472375 [ 7.274868] ubi1: available PEBs: 0, total reserved PEBs: 32, PEBs reserved for bad PEB handling: 10 [ 7.283982] ubi1: background thread "ubi_bgt1d" started, PID 1078 [ 7.290267] UBIFS (ubi1:0): Mounting in unauthenticated mode [ 7.296006] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 1084 [ 7.336311] UBIFS (ubi1:0): recovery needed [ 7.433053] UBIFS (ubi1:0): recovery completed [ 7.437542] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "tp_data" [ 7.445017] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.454917] UBIFS (ubi1:0): FS size: 1269760 bytes (1 MiB, 10 LEBs), journal size 888833 bytes (0 MiB, 5 LEBs) [ 7.464899] UBIFS (ubi1:0): reserved for root: 59973 bytes (58 KiB) [ 7.471149] UBIFS (ubi1:0): media format: w5/r0 (latest is w5/r0), UUID BCFB1CE0-BA38-4F61-BFD5-EDD01DB8BDC2, small LPT model [USERDATA]: Foun[ 7.489069] ubi2: attaching mtd4 d userconfig partition on MTD devide 4, attach it. [ 7.534626] ubi2: scanning is finished [ 7.545841] ubi2: attached mtd4 (name "userconfig", size 8 MiB) [ 7.551742] ubi2: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 7.558606] ubi2: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 7.565376] ubi2: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 7.572319] ubi2: good PEBs: 64, bad PEBs: 0, corrupted PEBs: 0 [ 7.578217] ubi2: user volume: 2, internal volumes: 1, max. volumes count: 128 [ 7.585422] ubi2: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 792061674 [ 7.594444] ubi2: available PEBs: 0, total reserved PEBs: 64, PEBs reserved for bad PEB handling: 20 [ 7.603561] ubi2: background thread "ubi_bgt2d" started, PID 1088 [USERDATA]: MTD4 attach succ. [USERDATA]: Mounting user_data1 UBI volume as UB[ 7.616410] UBIFS (ubi2:0): Mounting in unauthenticated mode IFS [ 7.623285] UBIFS (ubi2:0): background thread "ubifs_bgt2_0" started, PID 1093 [ 7.663894] UBIFS (ubi2:0): recovery needed [ 7.759351] UBIFS (ubi2:0): recovery completed [ 7.763829] UBIFS (ubi2:0): UBIFS: mounted UBI device 2, volume 0, name "user_data1" [ 7.771550] UBIFS (ubi2:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.781443] UBIFS (ubi2:0): FS size: 1269760 bytes (1 MiB, 10 LEBs), journal size 1396736 bytes (1 MiB, 11 LEBs) [ 7.791594] UBIFS (ubi2:0): reserved for root: 0 bytes (0 KiB) [ 7.797414] UBIFS (ubi2:0): media format: w4/r0 (latest is w5/r0), UUID DDDD57BB-F03B-4E9B-8DE7-09C3945FDF3D, small LPT model [USERDATA]: Mounting user_data2 [ 7.816150] UBIFS (ubi2:1): Mounting in unauthenticated mode UBI volume as UB[ 7.822124] UBIFS (ubi2:1): background thread "ubifs_bgt2_1" started, PID 1098 IFS [ 7.862750] UBIFS (ubi2:1): recovery needed [ 7.982709] UBIFS (ubi2:1): recovery completed [ 7.987178] UBIFS (ubi2:1): UBIFS: mounted UBI device 2, volume 1, name "user_data2" [ 7.994907] UBIFS (ubi2:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 8.004800] UBIFS (ubi2:1): FS size: 1269760 bytes (1 MiB, 10 LEBs), journal size 1396736 bytes (1 MiB, 11 LEBs) [ 8.014950] UBIFS (ubi2:1): reserved for root: 0 bytes (0 KiB) [ 8.020764] UBIFS (ubi2:1): media format: w4/r0 (latest is w5/r0), UUID A5E4F04B-7D26-4539-ACB6-44EF2CD32DD9, small LPT model - init - Please press Enter to activate this console. [ 8.096808] MTD: MTD device with name "data" not found [ 8.101992] MTD: Couldn't look up 'mtd:data': -2 [ 8.288193] ntfs: driver 2.1.32 [Flags: R/O MODULE]. [ 8.359937] NET: Registered protocol family 15 [ 8.384359] PPP generic driver version 2.4.2 [ 8.414578] tun: Universal TUN/TAP device driver, 1.6 [ 8.426741] PPP MPPE Compression module registered [ 8.484243] l2tp_core: L2TP core driver, V2.0 [ 8.492313] l2tp_netlink: L2TP netlink interface [ 8.511638] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 8.546783] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 8.628067] NET: Registered protocol family 24 [ 8.636183] PPTP driver version 0.8.5 [ 8.741946] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 8.943325] nf_conntrack_rtsp v0.7 loading [ 8.950971] nf_nat_rtsp v0.7 loading [ 9.104537] fuse: init (API version 7.31) [ 9.143194] conninfra@(mtk_conninfra_drv_init:644) Before platform_driver_register [ 9.150842] Get Index(0-TOP_MISC_BASE) phy_addr(0x11d10000) vir_addr=(0xffffffc010a55000) size=(0x1000) [ 9.160223] Get Index(1-TOPRGU_BASE) phy_addr(0x1001c000) vir_addr=(0xffffffc010a6d000) size=(0x1000) [ 9.169421] Get Index(2-GPIO_BASE) phy_addr(0x1001f000) vir_addr=(0xffffffc010a85000) size=(0x1000) [ 9.178446] Get Index(3-IOCFG_TR_BASE) phy_addr(0x11f00000) vir_addr=(0xffffffc010a95000) size=(0x1000) [ 9.187817] Get Index(4-IOCFG_TL_BASE) phy_addr(0x11f10000) vir_addr=(0xffffffc010a9d000) size=(0x1000) [ 9.197188] Get Index(5-INFRACFG_AO_BASE) phy_addr(0x10003000) vir_addr=(0xffffffc010aa5000) size=(0x1000) [ 9.206818] Get Index(6-CONN_INFRA_CFG_BASE) phy_addr(0x18001000) vir_addr=(0xffffffc010aad000) size=(0x1000) [ 9.216709] Get Index(7-CONN_INFRA_SYSRAM_BASE) phy_addr(0x18050000) vir_addr=(0xffffffc010ab5000) size=(0x1000) [ 9.226860] Get Index(8-CONN_INFRA_CLKGEN_ON_TOP_BASE) phy_addr(0x18009000) vir_addr=(0xffffffc010abd000) size=(0x1000) [ 9.237618] Get Index(9-CONN_HOST_CSR_TOP_BASE) phy_addr(0x18060000) vir_addr=(0xffffffc010ac5000) size=(0x1000) [ 9.247768] Get Index(10-CONN_INFRA_BUS_CR_BASE) phy_addr(0x1800e000) vir_addr=(0xffffffc010acd000) size=(0x1000) [ 9.258005] Get Index(11-CONN_INFRA_RGU_BASE) phy_addr(0x18000000) vir_addr=(0xffffffc010ad5000) size=(0x1000) [ 9.267983] Get Index(12-CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18005000) vir_addr=(0xffffffc010add000) size=(0x1000) [ 9.278393] Get Index(13-INST2_CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18085000) vir_addr=(0xffffffc010ae5000) size=(0x1000) [ 9.289323] Get Index(14-CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18004000) vir_addr=(0xffffffc010aed000) size=(0x1000) [ 9.299733] Get Index(15-INST2_CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18084000) vir_addr=(0xffffffc010af5000) size=(0x1000) [ 9.310666] Get Index(16-CONN_SEMAPHORE_BASE) phy_addr(0x18070000) vir_addr=(0xffffffc010be0000) size=(0x10000) [ 9.320731] Get Index(17-CONN_AFE_CTL_BASE) phy_addr(0x18003000) vir_addr=(0xffffffc010af7000) size=(0x1000) [ 9.330534] Get Index(18-CONN_AFE_CTL_2ND_BASE) phy_addr(0x18083000) vir_addr=(0xffffffc010af9000) size=(0x1000) [ 9.340685] Get Index(19-WF_TOP_SLPPROT_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010e40000) size=(0x10000) [ 9.351009] Get Index(20-WF_TOP_CFG_BASE) phy_addr(0x184b0000) vir_addr=(0xffffffc010b04000) size=(0x1000) [ 9.360638] Get Index(21-WF_MCU_CONFIG_LS_BASE) phy_addr(0x184f0000) vir_addr=(0xffffffc010b0d000) size=(0x1000) [ 9.370788] Get Index(22-WF_MCU_BUS_CR_BASE) phy_addr(0x18400000) vir_addr=(0xffffffc010b5d000) size=(0x1000) [ 9.380678] Get Index(23-WF_MCUSYS_INFRA_BUS_FULL_U_DEBUG_CTRL_AO_BASE) phy_addr(0x18500000) vir_addr=(0xffffffc010b65000) size=(0x1000) [ 9.392913] Get Index(24-WF_TOP_CFG_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010e60000) size=(0x10000) [ 9.402897] conninfra@(FlashRead:106) Can't get mtd device! [ 9.408448] eeFlashId(0x0) isn't match with 0x7986! [ 9.408449] Flash content is empty, so use AX6000 configuration by default! [ 9.414265] conninfra@(consys_plt_hw_init:230) adie_cfg_type = 2, one_adie_dbdc = 0 [ 9.429795] [emi_mng_init] gConEmiPhyBase = [0x4fc00000] size = [0x100000] fw size = [0x100000] ops=[000000008d06f1ad] [ 9.440532] conninfra@(mtk_conninfra_drv_init:650) After platform_driver_register [ 9.448362] ConnInfra Dev: init (0) [ 9.453352] conninfra@(_consys_polling_chipid_int:459) Read CONNSYS HW IP version successfully! (0x02070000) [ 9.463176] conninfra@(consys_bus_clock_ctrl:485) drv=[4] conninfra_bus_clock_wpll=[0]->[16] enable [ 9.472204] conninfra@(connsys_d_die_cfg:530) D-die efuse: 0x00000000 [ 9.479656] conninfra@(_connsys_a_die_chip_id_confirm:1915) adie_idx[0]: A-die CHIP ID = 0x7975, HW Version = 0x8a02 [ 9.491162] conninfra@(_connsys_a_die_chip_id_confirm:1915) adie_idx[1]: A-die CHIP ID = 0x7975, HW Version = 0x8a02 [ 9.503673] conninfra@(consys_spi_write_nolock:670) addr = 0x0a00, val = 0xffffffff [ 9.513317] conninfra@(consys_spi_write_nolock:670) addr = 0x0a1c, val = 0x30000a8a [ 9.521955] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 9.531599] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x00000000 [ 9.541246] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x43a60000 [ 9.554922] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x0000aa02, 0x00c00100, 0x008400b4, 0x00000000] [ 9.566423] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 9.576071] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a60036 [ 9.585718] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63a70036 [ 9.599393] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x0000aa02, 0x00c00100, 0x008400b4, 0x00000000] [ 9.610893] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 9.620540] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a70036 [ 9.630187] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63a50036 [ 9.643863] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x0000aa02, 0x00c00100, 0x008400b4, 0x00000000] [ 9.654357] conninfra@(_connsys_a_die_form_patch_7975:1164) Form 7975 adie Patch [ 9.662735] conninfra@(consys_spi_write_nolock:670) addr = 0x0348, val = 0x00000002 [ 9.671372] conninfra@(consys_spi_write_nolock:670) addr = 0x0378, val = 0x00000002 [ 9.680013] conninfra@(consys_spi_write_nolock:670) addr = 0x03a8, val = 0x00000002 [ 9.688653] conninfra@(consys_spi_write_nolock:670) addr = 0x03d8, val = 0x00000002 [ 9.697293] conninfra@(consys_spi_write_nolock:670) addr = 0x0a1c, val = 0x30000aaa [ 9.705934] conninfra@(consys_spi_write_nolock:670) addr = 0x0a84, val = 0x8470008a [ 9.714575] conninfra@(consys_spi_write_nolock:670) addr = 0x0074, val = 0x00000002 [ 9.723215] conninfra@(consys_spi_write_nolock:670) addr = 0x0aa4, val = 0x01001fc0 [ 9.731853] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x00000005 [ 9.740489] conninfra@(consys_spi_write_nolock:670) addr = 0x0344, val = 0x00000088 [ 9.749130] conninfra@(consys_spi_write_nolock:670) addr = 0x0374, val = 0x00000088 [ 9.757770] conninfra@(consys_spi_write_nolock:670) addr = 0x03a4, val = 0x00000088 [ 9.766410] conninfra@(consys_spi_write_nolock:670) addr = 0x03d4, val = 0x00000088 [ 9.775050] conninfra@(consys_spi_write_nolock:670) addr = 0x0a80, val = 0x44d07000 [ 9.783691] conninfra@(consys_spi_write_nolock:670) addr = 0x0a88, val = 0x3900aaaa [ 9.792329] conninfra@(consys_spi_write_nolock:670) addr = 0x02c4, val = 0x00000000 [ 9.800965] conninfra@(consys_spi_write_nolock:670) addr = 0x02c8, val = 0x00000072 [ 9.810615] conninfra@(consys_spi_write_nolock:670) addr = 0x0a00, val = 0xffffffff [ 9.820262] conninfra@(consys_spi_write_nolock:670) addr = 0x0a1c, val = 0x30000a8a [ 9.828903] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 9.838550] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x00000000 [ 9.848198] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x43a60000 [ 9.861873] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x0000a902, 0x00c00100, 0x008400b4, 0x00000000] [ 9.873374] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 9.883018] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a60036 [ 9.892662] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63a70036 [ 9.906334] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x0000a902, 0x00c00100, 0x008400b4, 0x00000000] [ 9.917835] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 9.927481] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a70036 [ 9.937128] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63a50036 [ 9.950803] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x0000a902, 0x00c00100, 0x008400b4, 0x00000000] [ 9.961297] conninfra@(_connsys_a_die_form_patch_7975:1164) Form 7975 adie Patch [ 9.969677] conninfra@(consys_spi_write_nolock:670) addr = 0x0348, val = 0x00000002 [ 9.978318] conninfra@(consys_spi_write_nolock:670) addr = 0x0378, val = 0x00000002 [ 9.986958] conninfra@(consys_spi_write_nolock:670) addr = 0x03a8, val = 0x00000002 [ 9.995599] conninfra@(consys_spi_write_nolock:670) addr = 0x03d8, val = 0x00000002 [ 10.004238] conninfra@(consys_spi_write_nolock:670) addr = 0x0a1c, val = 0x30000aaa [ 10.012879] conninfra@(consys_spi_write_nolock:670) addr = 0x0a84, val = 0x8470008a [ 10.021516] conninfra@(consys_spi_write_nolock:670) addr = 0x0074, val = 0x00000002 [ 10.030156] conninfra@(consys_spi_write_nolock:670) addr = 0x0aa4, val = 0x01001fc0 [ 10.038797] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x00000005 [ 10.047437] conninfra@(consys_spi_write_nolock:670) addr = 0x0344, val = 0x00000088 [ 10.056078] conninfra@(consys_spi_write_nolock:670) addr = 0x0374, val = 0x00000088 [ 10.064719] conninfra@(consys_spi_write_nolock:670) addr = 0x03a4, val = 0x00000088 [ 10.073359] conninfra@(consys_spi_write_nolock:670) addr = 0x03d4, val = 0x00000088 [ 10.081997] conninfra@(consys_spi_write_nolock:670) addr = 0x0a80, val = 0x44d07000 [ 10.090634] conninfra@(consys_spi_write_nolock:670) addr = 0x0a88, val = 0x3900aaaa [ 10.099274] conninfra@(consys_spi_write_nolock:670) addr = 0x02c4, val = 0x00000000 [ 10.107914] conninfra@(consys_spi_write_nolock:670) addr = 0x02c8, val = 0x00000072 [ 10.116556] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x80000000 [ 10.126155] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x00000005 [ 10.134798] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x80000000 [ 10.144397] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x00000005 [ 10.152977] conninfra@(_consys_polling_chipid_int:459) Read CONNSYS HW IP version successfully! (0x02070000) [ 10.162780] conninfra@(_consys_hw_conninfra_wakeup:470) conninfra_wakeup refcnt=[0]->[1] wakeup!! [ 10.171634] conninfra@(_consys_hw_conninfra_sleep:490) conninfra_sleep refcnt=[1]->[0] sleep!! [ 10.180224] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[0] CONNINFRA=[1] [ 10.212132] mediatek_soc_hnat 15100000.hnat: wan = eth1 [ 10.217346] mediatek_soc_hnat 15100000.hnat: lan = lan [ 10.222473] mediatek_soc_hnat 15100000.hnat: ppd = eth0 [ 10.227679] mediatek_soc_hnat 15100000.hnat: gmac num = 2 [ 10.233063] mediatek_soc_hnat 15100000.hnat: ppe num = 1 [ 10.238781] mediatek_soc_hnat 15100000.hnat: PPE0 entry number = 8192 [ 10.245577] mediatek_soc_hnat 15100000.hnat: PPE0 hwnat start [ 10.251358] hnat roaming work enable [ 11.497511] conninfra@(conninfra_pwr_on:120) [conninfra_pwr_on] drv=[3] [ 11.505065] conninfra@(_consys_polling_chipid_int:459) Read CONNSYS HW IP version successfully! (0x02070000) [ 11.522909] Adie Type: 0x7975 [ 11.522911] SKU Type: 6000 [ 11.526818] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[1] CONNINFRA=[1] [ 11.540871] WiFi@C12L1,get_dbg_setting_by_profile() 4238: debug level setting=INDEX0_debug_level not found!! [ 11.550693] WiFi@C12L1,get_dbg_setting_by_profile() 4261: debug option setting=INDEX0_debug_option not found!! [ 11.560722] mt_rbus 0000:00:00.0: runtime IRQ mapping not provided by arch [ 11.574506] mt7986_init()--> [ 11.577400] sku:0xd, ADIE=MT7975 [ 11.581739] mt7986_init(), vlan2ethctrl:1 [ 11.585831] <--mt7986_init() [ 11.588723] RtmpRaDevCtrlInit(): MCS_LUT not used becasue MacTb size(544) > 128! [ 11.596207] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX1 [ 11.603517] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX2 [ 11.610817] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX3 [ 11.618120] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX4 [ 11.625424] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX5 [ 11.632728] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX6 [ 11.640027] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX7 [ 11.647331] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX8 [ 11.654635] WiFi@C12L1,match_index_by_chipname() 507: not find chip name INDEX9 [ 11.661926] WiFi@C12L2,match_index_by_chipname() 512: Not find slot id, back to old rule. [ 11.670173] msta_ifname not found [ 11.717651] warp_module_init(): module init and register callback for warp [ 11.724560] create warp_ctrl ok!!! [ 11.727982] wed_get_slot_map(): assign slot_id:0 for entry: 0! [ 11.733813] wed_get_slot_map(): assign slot_id:1 for entry: 1! [ 11.751406] mtk_warp_proxy: module uses symbols from proprietary module mt_wifi, inheriting taint. ------------------------------------------------------------------------------------- reloadprofile() begin reloadprofile() end ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- reloadconfig() begin ................................load openvpn cert......................... ................................start of merge user and default........................ ................................parse userconf to get mode............................. ................................end of parse userconf.................................. ................................mode : router............................... ................................end of merge user and default.......................... ................................new configs merged..................................... reloadconfig() end ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- ------------------------------------------------------------------------------------- agile config reload favicon and logo start! agile config reload favicon and logo end! 1 and 00 and 840 gmtoff: 1:00 and tz: -1:00 GMT-1:00 no need to generate onemesh group id wireless is starting... wifi_init config_profile_set, MacAddress=00:EB:D8:60:12:BE>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, WscManufacturer=Mercusys>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, WscDeviceName=MR90X 1.0.0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, WscModelName=MR90X>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, WscModelNumber=1.0.0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat [ 15.184928] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 15.196691] device eth0 entered promiscuous mode [ 15.201845] mt7530 mdio-bus:1f lan0: configuring for phy/gmii link mode [ 15.208956] 8021q: adding VLAN 0 to HW filter on device lan0 [ 15.217406] br-lan: port 1(lan0) entered blocking state [ 15.222649] br-lan: port 1(lan0) entered disabled state config_profile_s[ 15.228198] device lan0 entered promiscuous mode et, WscSerialNumber=1.0.0>>/etc/wireless/mediatek/mt7986-ax6000.[ 15.239125] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode dbdc.b0.dat [ 15.246591] 8021q: adding VLAN 0 to HW filter on device lan1 [ 15.255229] br-lan: port 2(lan1) entered blocking state [ 15.260446] br-lan: port 2(lan1) entered disabled state [ 15.266241] device lan1 entered promiscuous mode [ 15.274891] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode config_profile_s[ 15.282176] 8021q: adding VLAN 0 to HW filter on device lan2 et, WSC_UUID_Str1=00000000-0000-[ 15.290980] br-lan: port 3(lan2) entered blocking state 1000-0000-00XXXX[ 15.296634] br-lan: port 3(lan2) entered disabled state XXXXXX>>/etc/wir[ 15.303899] device lan2 entered promiscuous mode eless/mediatek/mt7986-ax6000.dbdc.b0.dat [ 15.312687] mtk_soc_eth 15100000.ethernet eth1: configuring for fixed/2500base-x link mode config_profile_set, WSC_UUID_E1=0000000000001000000000XXXXXXXXXXXX>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, MacAddress=00:XX:XX:XX:XX:XX>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WscManufacturer=Mercusys>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WscDeviceName=MR90X 1.0.0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WscModelName=MR90X>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WscModelNumber=1.0.0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WscSerialNumber=1.0.0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WSC_UUID_Str4=00000000-0000-1000-0000-00XXXXXXXXXX>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, WSC_UUID_E4=0000000000001000000000XXXXXXXXXX>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, CountryRegion=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, CountryNum=276>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, CountryCode=DE>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, AutoChannelSkipList=1;11;12;13>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, CountryNum=276>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, CountryCode=DE>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, CountryRegionABand=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, EDCCAEnable=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, EDCCAEnable=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, RDRegion=CE>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, SkuTableIdx=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, SkuTableIdx=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat wifi_reload_local wifi_shutdown_interface wifi0 ifconfig ra0 down wifi_config_profile wifi0 [ 16.543442] Lan Domain: tplinklogin.net [ 16.547282] Lan Domain: www.tplinklogin.net config_profile_set, WirelessMode=16>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, HT_BW=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, VHT_BW=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, HT_BSSCoexistence=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, Channel=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, AutoChannelSelect=3>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, MuOfdmaDlEnable=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, MuOfdmaUlEnable=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, TWTSupport=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, HT_GI=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, VHT_SGI=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, TxPower=100>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, VOW_Airtime_Fairness_En=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat config_profile_set, VOW_Sta_DWRR_Max_Wait_Time=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b0.dat wifi_shutdown_interface wifi1 wifi_config_profile wifi1 config_profile_set, WirelessMode=17>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, HT_BW=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, VHT_BW=2>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, Channel=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, AutoChannelSelect=3>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, AutoChannelSkipList=100;104;108;112;116;120;124;128;132;136;140>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, DfsEnable=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, IEEE80211H=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, DfsZeroWait=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, DfsDedicatedZeroWait=3>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, DfsZeroWaitDefault=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, MuOfdmaDlEnable=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, MuOfdmaUlEnable=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, TWTSupport=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, HT_GI=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, VHT_SGI=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, TxPower=100>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, VOW_Airtime_Fairness_En=0>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat config_profile_set, VOW_Sta_DWRR_Max_Wait_Time=1>>/etc/wireless/mediatek/mt7986-ax6000.dbdc.b1.dat Node 0, zone DMA32 227 221 72 25 12 2 2 2 0 0 84 wifi_start_interface wifi0 wifi_vap_local ra0 gp_id_rand = random_suffix = [ 18.893589] WiFi@C01L2,RTMP_COM_IoctlHandle() 1505: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT 5789 ifconfig r[ 18.902245] msta_ifname not found a0 up [ 18.907166] warp_cap_support(): chip_id=7986 is in WHNAT support list [ 18.913642] warp_entry_acquire(): bus slot:0, hook to WARP, entry id=0, entry: 000000001f3e536e [ 18.922334] client_hif_specific_get(): hw->base_phy_addr 0x18000000!! [ 18.928845] warp_entry_get_by_pdev(): return entry[0] [ 18.934081] warp_msg_register():warp,pid,5692,id,0,wed_idx,0 [ 18.939764] wed_init(0): res_start = 0x15010000, size = 1000, irq=6,base_addr=0xffffffc01249d000 [ 18.949006] wed_ring_init(): wed tx ring init result = 0 [ 18.954915] wed_ring_init(): wed rx ring init result = 0 [ 18.969327] create wed ok!!! [ 18.972292] wdma_init(): wdma(0) base_addr=0xffffffc0124dd800, base_phy_addr=0x15104800 [ 18.981095] warp_woif_bus_init_hw(): bus:00000000b175e992, txring: 20, pa: 0x0000000057b9a000, 0x0000000057b9a000, 24, 28, 3c [ 18.992414] warp_woif_bus_init_hw(): bus:00000000b175e992, rxring: 50, pa: 0x0000000057a42000, 0x0000000057a42000, 54, 58, 6c [ 19.003772] get_region_info(): wed_idx = 0, base_addr = 0x00000000092e2d7c, size = 0x40000, res.start = 0x4fd00000, shared:0 [ 19.015011] get_region_info(): wed_idx = 0, base_addr = 0x00000000ef42dcb6, size = 0x8000, res.start = 0x151e0000, shared:0 [ 19.026185] get_region_info(): wed_idx = 0, base_addr = 0x00000000bc5a0273, size = 0x240000, res.start = 0x4fd80000, shared:1 [ 19.037509] get_region_info(): wed_idx = 0, base_addr = 0x00000000b91b20cf, size = 0x1000, res.start = 0x15194000, shared:0 [ 19.048635] warp_fwdl_mcu_mode(): mcu mode, need fwdl [ 19.091320] ########## WO Firmware ########## [ 19.095737] Chip ID: 0x0000 [ 19.098521] ECO version:0 [ 19.101130] Version: DEV_000000 [ 19.104273] Build date: 20220527182301 [ 19.108013] Total region:3 [ 19.110706] ################################# [ 19.115079] Parsing tailer region 0 [ 19.118556] Target address: 0x151e0000 [ 19.122398] Download size: 20400 [ 19.125726] Parsing tailer region 1 [ 19.129200] Target address: 0x4fd00000 [ 19.133060] Download size: 87072 [ 19.136436] Parsing tailer region 2 [ 19.139911] Target address: 0x4fd80000 [ 19.143755] Download size: 2283984 [ 19.149035] warp_fwdl_ready_check_mcu_mode(): waiting for wocpu [ 19.171505] warp_fwdl_ready_check_mcu_mode(): wocpu is ready [ 19.177207] warp_woctrl_init_state(), wo_state: WO_STATE_ENABLE [ 19.183137] wo_proc_init done 00000000c5247668 [ 19.187657] wo_exep_proc_init done 00000000c5247668 [ 19.192658] wo_exception_init(0): exp log= 0x00000000e0c12306, phy_addr= 0x0000000057480000 size= 32768 [ 19.202164] warp_probe(): probe fail since warp is full! [ 19.207473] warp_dev0: probe of 15010000.wed2 failed with error -1 [ 19.218016] WiFi@C02L1,HwCtrlInit() 525: ser_init() return NDIS_STATUS_FAILURE [ 19.298756] WiFi@C12L1,RTMPWirelessModeCfg() 587: Init: BSS0 PhyMode=78 [ 19.305395] WiFi@C12L1,RTMPWirelessModeCfg() 587: Init: BSS1 PhyMode=78 [ 19.312025] WiFi@C12L1,RTMPWirelessModeCfg() 587: Init: BSS2 PhyMode=78 [ 19.318626] WiFi@C12L1,RTMPWirelessModeCfg() 587: Init: BSS3 PhyMode=177 [ 19.325347] WiFi@C12L1,RTMPWirelessModeCfg() 587: Init: BSS4 PhyMode=177 [ 19.332046] WiFi@C12L1,RTMPWirelessModeCfg() 587: Init: BSS5 PhyMode=177 [ 19.339051] WiFi@C23L2,auto_ch_select_set_cfg() 3481: BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 19.348627] WiFi@C23L2,auto_ch_select_set_cfg() 3481: BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 19.371469] WiFi@C12L1,SCS_Enable_set_cfg() 711: SCSEnable [0]= 1 [ 19.377590] WiFi@C12L1,SCS_Enable_set_cfg() 711: SCSEnable [1]= 1 [ 19.390695] I/F(ra0) GroupKey ReKeyInterval=86400 seconds [ 19.396105] I/F(ra1) GroupKey ReKeyInterval=86400 seconds [ 19.401487] I/F(ra2) GroupKey ReKeyInterval=86400 seconds [ 19.406888] I/F(ra3) GroupKey ReKeyInterval=86400 seconds [ 19.412283] I/F(ra4) GroupKey ReKeyInterval=86400 seconds [ 19.417667] I/F(ra5) GroupKey ReKeyInterval=86400 seconds [ 19.450976] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=0, Desired MFPC=0 [ 19.458385] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=1, Desired MFPC=0 [ 19.465791] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=2, Desired MFPC=0 [ 19.473189] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=3, Desired MFPC=0 [ 19.480565] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=4, Desired MFPC=0 [ 19.487960] WiFi@C15L1,Set_PMFMFPC_Proc() 1728: [PMF] :: apidx=5, Desired MFPC=0 [ 19.497469] WiFi@C12L1,RTMPSetProfileParameters() 8299: ra0, QoSMgmtCapa=0 [ 19.504367] WiFi@C12L1,RTMPSetProfileParameters() 8299: (null), QoSMgmtCapa=0 [ 19.511491] WiFi@C12L1,RTMPSetProfileParameters() 8299: (null), QoSMgmtCapa=0 [ 19.518623] WiFi@C12L1,RTMPSetProfileParameters() 8299: (null), QoSMgmtCapa=0 [ 19.525745] WiFi@C12L1,RTMPSetProfileParameters() 8299: (null), QoSMgmtCapa=0 [IPTV] WAN_PHY_I[ 19.532888] WiFi@C12L1,RTMPSetProfileParameters() 8299: (null), QoSMgmtCapa=0 F=eth1 [IPTV] LAN_PHY_IF=lan1 lan2 lan0 [ 19.547059] WiFi@C12L1,rtmp_read_ap_client_from_file() 1605: APCLI[0] ApCliMuMimoDlEnable = 0 [ 19.555601] WiFi@C12L1,rtmp_read_ap_client_from_file() 1605: APCLI[1] ApCliMuMimoDlEnable = 0 [ 19.564290] WiFi@C12L1,rtmp_read_ap_client_from_file() 1624: APCLI[0] ApCliMuMimoUlEnable = 0 [ 19.572812] WiFi@C12L1,rtmp_read_ap_client_from_file() 1624: APCLI[1] ApCliMuMimoUlEnable = 0 [ 19.583229] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 19.594427] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension command type = 48 [ 19.602879] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 19.614096] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension command type = 48 [ 19.627440] WiFi@C23L2,read_vht_param_from_file() 2670: [DFS_ZDFS_ENHANCE], Pre CH: 0, Pre BW: 0, Pre CAC done: 0 [ 19.637717] WiFi@C23L2,read_vht_param_from_file() 2670: [DFS_ZDFS_ENHANCE], Pre CH: 0, Pre BW: 0, Pre CAC done: 0 [ 19.647989] WiFi@C23L2,read_vht_param_from_file() 2670: [DFS_ZDFS_ENHANCE], Pre CH: 0, Pre BW: 0, Pre CAC done: 0 [ 19.722462] BandIdx = 0, tpcDutyInitFlag=1 [ 19.726551] BandIdx = 1, tpcDutyInitFlag=1 [ 19.730813] BandIdx = 0, tpcnitFlag=1 [ 19.734474] BandIdx = 1, tpcnitFlag=1 [ 19.738308] BandIdx = 0, tpcDuty=100-60-40-20 [ 19.742660] BandIdx = 1, tpcDuty=100-60-40-20 [ 19.747182] BandIdx = 0, thermalHighEn=1 [ 19.751086] BandIdx = 1, thermalHighEn=1 [ 19.755183] BandIdx = 0, thermalHighCritera=122 [ 19.759694] BandIdx = 1, thermalHighCritera=122 [ 19.764397] BandIdx = 0, thermalLowEn=1 [ 19.768215] BandIdx = 1, thermalLowEn=1 [ 19.772236] BandIdx = 0, thermalLowCritera=115 [ 19.776665] BandIdx = 1, thermalLowCritera=115 [ 19.781279] BandIdx = 0, thermalRecheckTime=5 [ 19.785652] BandIdx = 1, thermalRecheckTime=5 [ 19.790184] BandIdx = 0, thermalRFOffEn=0 [ 19.794208] BandIdx = 1, thermalRFOffEn=0 [ 19.798394] BandIdx = 0, thermalRFOffCriteria=125 [ 19.803108] BandIdx = 1, thermalRFOffCriteria=125 [ 19.807987] BandIdx = 0, thermalUcType=1 [ 19.811909] BandIdx = 1, thermalUcType=1 [ 19.817781] wdma_dma_ctrl(): WDMA_GLO_CFG=50404e70, txrx = 0 [ 19.829568] wdma_dma_ctrl(): WDMA_GLO_CFG=40804e70, txrx = 0 [ 19.843584] warp_tx_ring_init_hw(): configure ring 0 setting [ 19.849241] warp_tx_ring_init_hw(): wed:00000000af7b9108 wifi:00000000a938bbdb: 24420=565a0000,24424=2048,24428=0 [ 19.859503] warp_tx_ring_init_hw(): configure ring 1 setting [ 19.865155] warp_tx_ring_init_hw(): wed:00000000af7b9108 wifi:00000000a938bbdb: 24430=57500000,24434=2048,24438=0 [ 19.875539] set_rrocfg,0 [ 19.900925] wdma_dma_ctrl(): WDMA_GLO_CFG=40804e74, txrx = 3 [ 19.906590] sku:0xd, ADIE=MT7975 [ 19.910931] using E1 ROM patch [ 19.913981] using E1 RAM [ 19.916510] current sync CR = 0x1 [ 19.920660] Built date: 20220819135650a [ 19.924614] Platform: ALPS [ 19.927406] HW/SW version: 0x8a108a10 [ 19.931144] Patch version: 0xffffffff [ 19.940679] current sync CR = 0x1 [ 20.107422] Chip ID: 0x0f [ 20.110127] Eco version: 0x00 [ 20.113253] Region number: 0x0b [ 20.116467] Format version: 0x02 [ 20.119766] Format flag: 0x01 [ 20.122817] Ram version: ____000000 [ 20.126381] Built date: 20220819135752 [ 20.130206] Common crc: 0x3d2c5016 [ 20.133693] Release info: header tag = 0, total length = 108 [ 20.139424] tag 1, padding length = 1, tag length = 103 [ 20.144722] payload: t-neptune-main-2111-7986-imp_backup_wk2213-MT7986_E1_ASIC_ROM_RAM_REBB_IMP_BACKUP_WK2213-20220819135053 [ 20.232387] Chip ID: 0x00 [ 20.235091] Eco version: 0x00 [ 20.238130] Region number: 0x03 [ 20.241341] Format version: 0x02 [ 20.244739] Format flag: 0x01 [ 20.247778] Ram version: DEV_000000 [ 20.251340] Built date: 20220708173610 [ 20.255173] Common crc: 0xaba989ae [ 20.258648] Release info: header tag = 0, total length = 0 [ 20.358024] current sync CR = 0x7 [ 20.361383] efuse_probe: efuse = deaddead [ 20.365431] rtmp_ee_load_from_bin::bin FileName = /tp_data/MT7986_EEPROM.bin, bin bak = /user_data1/MT7986_EEPROM.bin, use caled e2p file [ 20.379583] Load EEPROM Buffer from /tp_data/MT7986_EEPROM.bin [ 20.385463] rtmp_btn_load_from_bin::bin FileName = /tp_data/MT7986_BTNFLAG.bin, bin bak = /user_data1/MT7986_BTNFLAG.bin [ 20.396364] sku:0xd, ADIE=MT7975 [ 20.400712] sku:0xd, ADIE=MT7975 [ 20.455988] sku:0xd, ADIE=MT7975 [ 20.511177] WiFi@C02L1,is_cal_free_ic() 1022: iCal free [ 20.517269] sku:0xd, ADIE=MT7975 [ 23.861798] WiFi@C17L1,RTMPReadTxPwrPerRate() 450: (450): Don't Support this now! [ 23.869273] WiFi@C02L0,rc_radio_init() 706: radio_ctrl=000000002f0a7d46,Band=0,rfcap=1,channel=1,PhyMode=64 extCha=0xf [ 23.879973] WiFi@C02L0,rc_radio_init() 706: radio_ctrl=00000000fcae3931,Band=1,rfcap=2,channel=36,PhyMode=128 extCha=0xf [ 23.890865] WiFi@C01L1,AntCfgInit() 3071: Not support for HIF_MT yet! [ 23.910584] ch_switch_monitor_state_machine_init:: enter [ 23.915892] ch_switch_monitor_cfg_reset:: enter [ 23.920405] ch_switch_monitor_cfg_reset:: enter [ 23.925287] WiFi@C17L1,tx_pwr_comp_init() 641: NotSupportYet! [ 23.931055] WiFi@C12L1,SCS_init() 880: INIT SCSEnable [0]= 1 [ 23.936722] WiFi@C12L1,SCS_init() 887: INIT SCSEnable [1]= 1 [ 23.942474] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 23.947943] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 23.953515] WiFi@C14L1,IPMacTable_init() 348: IPMacTable already inited! [ 23.980307] wdma_dma_ctrl(): WDMA_GLO_CFG=58804e75, txrx = 3 [ 23.986077] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 23.991548] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 23.996992] WiFi@C00L1,set_ack_timeout_mode_byband() 13292: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 24.006890] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13380: DAT config band(0) cck_timeout Fail! [ 24.015572] WiFi@C00L1,set_ack_timeout_mode_byband() 13292: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 24.025490] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13391: DAT config band(0) ofdm_timeout Fail! [ 24.034262] WiFi@C00L1,set_ack_timeout_mode_byband() 13292: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 24.044155] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13402: DAT config band(0) ofdma_timeout Fail! [ 24.053010] WiFi@C00L1,set_ack_timeout_mode_byband() 13292: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 24.062901] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13380: DAT config band(1) cck_timeout Fail! [ 24.071573] WiFi@C00L1,set_ack_timeout_mode_byband() 13292: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 24.081483] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13391: DAT config band(1) ofdm_timeout Fail! [ 24.090250] WiFi@C00L1,set_ack_timeout_mode_byband() 13292: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 24.100145] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13402: DAT config band(1) ofdma_timeout Fail! [ 24.109039] mt_wifi_init: Band = 0, dutyLv0 = 100, dutyLv1 = 60, dutyLv2 = 40, dutyLv3 = 20 [ 24.117384] mt_wifi_init: Band = 0, high_en=1, high_thd = 122, low_en = 1, low_thd = 115, RFOFF_en = 0, RFOFF_th = 125, rec_timer = 5, Type = Duty Cycle [ 24.131046] mt_wifi_init: Band = 1, dutyLv0 = 100, dutyLv1 = 60, dutyLv2 = 40, dutyLv3 = 20 [ 24.139390] mt_wifi_init: Band = 1, high_en=1, high_thd = 122, low_en = 1, low_thd = 115, RFOFF_en = 0, RFOFF_th = 125, rec_timer = 5, Type = Duty Cycle [ 24.155205] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 24.163272] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 24.175233] :(op = 1) [ 24.182285] WiFi@C00L1,FastPathCheckMIC() 1010: (ret = 0)(op:1) [ 24.188189] WiFi@C00L2,red_tail_drop_init() 83: red_tail_drop_init: available token:8192, whnat_en:1 [ 24.197324] WiFi@C00L1,MtCmdCr4RedSet() 914: MtCmdCr4RedSet: (ret = 0) [ 24.203838] WiFi@C00L1,SendRedCmd() 1049: SendRedCmd:(ret = 1) [ 24.209799] WiFi@C01L2,RTMP_COM_IoctlHandle() 1482: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 24.217798] WiFi@C01L2,wifi_sys_open() 832: wdev idx = 0 [ 24.223422] WiFi@C08L3,wifi_sys_op_lock() 791: wifi_sys_open+0x48/0x408 [mt_wifi](0): get wdev_op_lock. [ 24.232896] WiFi@C23L1,DfsBuildChannelList() 3432: [RDM]: wdev is not 5G. [ 24.239683] [RadarStateCheck] Zero Wait State: 0 [ 24.244318] phy_freq_adjust : no prim_ch value for adjust! [ 24.249975] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xac/0x120 [mt_wifi] [ 24.258008] wdev_attr_update(): wdevId0 = 00:XX:XX:XX:XX:XX [ 24.263622] WiFi@C12L1,wifi_sys_open() 874: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 24.272591] WiFi@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=0 [ 24.278406] WiFi@C08L3,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 24.285025] WiFi@C23L1,HcGetBandByChannel() 1102: No hdev parking on channel:0, just return a default band_idx 0! [ 24.295283] WiFi@C02L2,AsicRadioOnOffCtrl() 2279: DbdcIdx=0 RadioOn [ 24.302062] mtk_band_steering_netlink_init 247 band steering netlink init ok [ 24.309211] WiFi@C00L0,ApAutoChannelAtBootUp() 301: -----------------> [ 24.315728] WiFi@C00L0,ApAutoChannelAtBootUp() 317: AutoChannelBootup[0] = 1 [ 24.322864] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 24.328405] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 24.333806] WiFi@C00L1,ApAutoChannelAtBootUp() 336: PhyMode: 78, ACSChStat:0 [ 24.341019] WiFi@C08L1,UpdateBeaconHandler() 1999: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x10c/0x570 [mt_wifi])!! [ 24.353266] WiFi@C23L0,MTAPAutoSelectChannel() 2389: IsABand = 0, ChannelListNum = 9 [ 24.361083] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.370214] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 24.401645] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 7348 [ 24.622061] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.631190] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 24.662541] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 33687 [ 24.882084] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.891206] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 24.922427] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 66308 [ 25.142065] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.151186] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 25.182735] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 89971 [ 25.402064] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.411186] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 25.442529] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 116752 [ 25.662061] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.671181] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 25.702536] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 133619 [ 25.922065] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.931190] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 25.962526] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 150615 [ 26.182080] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.191202] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=9, ctrl_ch2=0, cent_ch=9 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 26.222550] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 175113 [ 26.442082] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.451203] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=10, ctrl_ch2=0, cent_ch=10 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 26.482719] WiFi@C23L0,MTAPAutoSelectChannel() 2422: BandIdx = 0, pre_pcca_time = 197126 [ 26.702204] WiFi@C08L1,UpdateBeaconHandler() 1999: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x2b8/0x570 [mt_wifi])!! [ 26.714483] WiFi@C23L0,SelectClearChannelBusyTime() 1855: [SelectClearChannelBusyTime] - band0 START [ 26.723651] WiFi@C23L0,SelectClearChannelBusyTime() 1856: [SelectClearChannelBusyTime] - cfg_ht_bw = 1 vht_bw = 0 [ 26.733895] WiFi@C23L0,SelectClearChannelBusyTime() 1863: ==================================================================== [ 26.745299] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 2 : Busy Time = 5992, Skip Channel = FALSE, BwCap = TRUE [ 26.756685] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 3 : Busy Time = 6679, Skip Channel = FALSE, BwCap = TRUE [ 26.768070] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 4 : Busy Time = 5245, Skip Channel = FALSE, BwCap = TRUE [ 26.779483] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 5 : Busy Time = 5308, Skip Channel = FALSE, BwCap = TRUE [ 26.790873] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 6 : Busy Time = 3538, Skip Channel = FALSE, BwCap = TRUE [ 26.802239] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 7 : Busy Time = 4245, Skip Channel = FALSE, BwCap = TRUE [ 26.813609] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 8 : Busy Time = 5258, Skip Channel = FALSE, BwCap = TRUE [ 26.825025] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 9 : Busy Time = 5122, Skip Channel = FALSE, BwCap = TRUE [ 26.836396] WiFi@C23L0,SelectClearChannelBusyTime() 1869: Channel 10 : Busy Time = 28193, Skip Channel = FALSE, BwCap = TRUE [ 26.847768] WiFi@C23L0,SelectClearChannelBusyTime() 1872: ==================================================================== [ 26.859172] WiFi@C23L0,SelectClearChannelBusyTime() 2142: Rule 3 Channel Busy time value : Select Primary Channel 6 [ 26.869604] WiFi@C23L0,SelectClearChannelBusyTime() 2144: Rule 3 Channel Busy time value : Min Channel Busy = 3538 [ 26.879983] WiFi@C23L0,SelectClearChannelBusyTime() 2149: Rule 3 Channel Busy time value : BW = 20 [ 26.888933] WiFi@C23L0,SelectClearChannelBusyTime() 2188: [SelectClearChannelBusyTime] - band0 END [ 26.897898] WiFi@C00L0,ApAutoChannelAtBootUp() 365: Auto channel selection: Selected channel = 6, IsAband = 0 [ 26.907894] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.917013] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=6, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=1, TXStream=4, RXStream=4, scan(0) [ 27.168147] WiFi@C12L0,ApAutoChannelAtBootUp() 504: Boot:1 Total:1 [ 27.174415] WiFi@C23L1,DfsBuildChannelList() 3432: [RDM]: wdev is not 5G. [ 27.181190] WiFi@C23L2,zero_wait_dfs_switch_ch() 779: outband ch 0, ch_stat 0 [ 27.188323] WiFi@C00L0,ApAutoChannelAtBootUp() 519: <----------------- [ 27.195015] WiFi@C08L2,APStartUpForMbss() 909: ===>(caller:ap_inf_open+0x198/0x590 [mt_wifi]), mbss_idx:0, CfgMode:0 [ 27.205527] WiFi@C15L2,APPMFInit() 133: [PMF] apidx=0, MFPC=0, MFPR=0, SHA256=0 [ 27.213110] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 27.220599] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 27.226134] WiFi@C03L1,MtCmdSetMacTxRx() 10214: (ret = 0) [ 27.231577] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.240703] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 27.591867] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.600988] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 27.951858] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.960979] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 28.311858] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 28.320979] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 28.671837] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 28.680964] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 29.031875] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 29.040995] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 29.401847] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 29.410968] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=9, ctrl_ch2=0, cent_ch=9 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 29.732159] WiFi@C08L1,UpdateBeaconHandler() 1999: wdev(0) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! [ 29.761839] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 29.770956] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=10, ctrl_ch2=0, cent_ch=10 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 30.121858] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 30.130989] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=11, ctrl_ch2=0, cent_ch=11 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 30.481874] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 30.490997] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=12, ctrl_ch2=0, cent_ch=12 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 30.841861] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 30.850983] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=13, ctrl_ch2=0, cent_ch=13 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 31.201877] WiFi@C00L1,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 31.210997] WiFi@C03L2,MtCmdChannelSwitch() 2530: ctrl_chl=6, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=1, TXStream=4, RXStream=4, scan(0) [ 31.462579] WiFi@C08L2,ap_link_up() 6989: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(0) [ 31.471174] WiFi@C01L2,wifi_sys_linkup() 1133: wdev idx = 0 [ 31.477076] WiFi@C08L3,wifi_sys_op_lock() 791: wifi_sys_linkup+0x80/0x460 [mt_wifi](0): get wdev_op_lock. [ 31.486690] WiFi@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=0 [ 31.496246] WiFi@C08L3,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 31.502807] WiFi@C00L1,TxCCKStreamCtrl() 21252: set wrong parameters [ 31.518954] PrintSrCmd: [ 31.518954] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.518954] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.532946] PrintSrCmd: [ 31.532946] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.532946] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.546928] PrintSrCmd: [ 31.546928] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.546928] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 31.560901] PrintSrCmd: [ 31.560901] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.560901] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 31.574984] PrintSrCmd: [ 31.574984] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.574984] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.589069] WiFi@C03L3,MtCmdTxPwrShowInfo() 13714: ucTxPowerInfoCatg: 2, BandIdx: 0 [ 31.596803] WiFi@C03L3,MtCmdTxPwrShowInfo() 13743: (ret = 0) [ 31.596897] [mtf_txpower_all_rate_info] band_idx:0 pwr:29 ChBand:2G ePAGain:0 [ 31.602460] mtk_ppe_dev_register_hook : ineterface ra0 register (1) iwpriv ra0 set SSID=MERCUSYS_12BE [ 31.672927] 7986@C08L3ra0,ap_mlme_deauth_req_action() 223: ---> wcid = 32767 [ 31.680187] 7986@C15L2ra0,APPMFInit() 133: [PMF] apidx=0, MFPC=0, MFPR=0, SHA256=0 [ 31.687822] 7986@C01L2ra0,wifi_sys_linkdown() 1257: wdev idx = 0 [ 31.688071] 7986@C03L2ra0,ExtEventBeaconLostHandler() 169: FW EVENT (00:XX:XX:XX:XX:XX), Reason 0x10 [ 31.694100] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_linkdown+0x58/0x378 [mt_wifi](0): get wdev_op_lock. [ 31.702938] 7986@C03L1ra0,ExtEventBeaconLostHandler() 175: AP Beacon OFF!!! [ 31.720065] 7986@C08L3ra0,hw_ctrl_flow_v2_link_down() 123: wdev_idx=0 [ 31.729482] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 31.736279] WiFi@C01L2,wifi_sys_close() 912: wdev idx = 0 [ 31.741987] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_close+0x88/0x270 [mt_wifi](0): get wdev_op_lock. [ 31.751747] 7986@C08L3ra0,hw_ctrl_flow_v2_close() 41: wdev_idx=0 [ 31.757891] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 31.764733] WiFi@C01L2,wifi_sys_open() 832: wdev idx = 0 [ 31.770299] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_open+0x48/0x408 [mt_wifi](0): get wdev_op_lock. [ 31.780172] 7986@C00L1ra0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 31.789567] 7986@C03L2ra0,MtCmdChannelSwitch() 2530: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(0) [ 32.036181] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xac/0x120 [mt_wifi] [ 32.044201] wdev_attr_update(): wdevId0 = 00:XX:XX:XX:XX:XX [ 32.049770] WiFi@C12L1,wifi_sys_open() 874: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 32.058814] 7986@C08L3ra0,hw_ctrl_flow_v2_open() 13: wdev_idx=0 [ 32.064865] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 32.071640] 7986@C01L2ra0,wifi_sys_linkup() 1133: wdev idx = 0 [ 32.077803] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_linkup+0x80/0x460 [mt_wifi](0): get wdev_op_lock. [ 32.087702] 7986@C08L3ra0,hw_ctrl_flow_v2_link_up() 72: wdev_idx=0 [ 32.097515] 7986@C08L2ra0,bcn_buf_init() 170: BcnPkt is allocated!, bcn offload=1 [ 32.104988] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 32.111784] 7986@C03L3ra0,bssUpdateHighPriRateEAPOL() 4043: bssUpdateHighPriRateEAPOL (BSS_INFO_HIGHPRI_INFO), CmdBssInfoHighPriRate.u2HighPriTransmit = 0 [ 32.125998] 7986@C03L3ra0,bssUpdateHighPriRateEAPOL() 4043: bssUpdateHighPriRateEAPOL (BSS_INFO_HIGHPRI_INFO), CmdBssInfoHighPriRate.u2HighPriTransmit = 0 [ 32.139955] 7986@C03L3ra0,bssUpdateHighPriRateEAPOL() 4043: bssUpdateHighPriRateEAPOL (BSS_INFO_HIGHPRI_INFO), CmdBssInfoHighPriRate.u2HighPriTransmit = 0 [ 32.153882] Set_HighPriMcs(): input param error [ 32.153882] Usage: iwpriv [inf] set HighPriMcs=[frame_type]-[mcs] [ 32.153882] The frame type format is 0 for ARP, 1 for DHCP, 2 for EAPOL [ 32.153882] MCS must in range of 0 ~ 3 and 8 ~ 11 for CCK Mode [ 32.153882] MCS must in range from 0 to 7 for OFDM Mode iwpriv ra0 set HideSSID=0 mumimo_config ra0 1 iwpriv ra0 set MuMimo=1 iw[ 32.188362] sync for : ra0 priv ra0 set BeaconPeriod=100 i[ 32.194088] Set_RTSThreshold_Proc: set wdev0 rts length threshold=2346(0x92a) [ 32.203490] Set_FragThreshold_Proc::set wdev0 FragThreshold=2346) iwpriv ra0 set FragThreshold=23[ 32.212864] 7986@C12L3ra0,Set_DtimPeriod_Proc() 13831: (i/f 0) (DtimPeriod=1) 46 [ 32.222299] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] iwpriv ra0 set WmmCapable=1 iwpriv ra0 set NoForwarding=0 iwpriv ra0 set NoForwardingBTNBSSID=0 iwpriv ra0 set UAPSDCapable=1 killall -q -SIGINT rt2860apd iwpriv ra0 set AuthMode=WPA2PSK iwpriv ra0 set EncrypType=AES iwpriv ra0 set I[ 32.334387] 7986@C12L0ra0,Set_AP_RekeyInterval_Proc() 14578: I/F(ra0) GroupKey ReKeyInterval=0 seconds EEE8021X=0 iwpriv ra0 set RekeyInterval=0 iwpriv ra0 set WPAPSK=94502985 iwpriv ra0 set WscCo[ 32.352825] 7986@C12L1ra0,RTMPAPPrivIoctlSet() 3658: IOCTL::(iwpriv) Command not Support [WscLabelDisabled=0] nfMode=7 iwpriv ra0 set WscConfStatus=2 iwpriv ra0 set WscVendorPinCode=945029[ 32.368658] 7986@C08L3ra0,ap_mlme_deauth_req_action() 223: ---> wcid = 32767 85 iwpriv ra0 s[ 32.377212] 7986@C15L2ra0,APPMFInit() 133: [PMF] apidx=0, MFPC=0, MFPR=0, SHA256=0 et WscLabelDisab[ 32.386075] 7986@C01L2ra0,wifi_sys_linkdown() 1257: wdev idx = 0 led=0 iwpriv ra[ 32.393581] 7986@C03L2ra0,ExtEventBeaconLostHandler() 169: FW EVENT (00:XX:XX:XX:XX:XX), Reason 0x10 0 set WscSetupLo[ 32.403953] 7986@C03L1ra0,ExtEventBeaconLostHandler() 175: AP Beacon OFF!!! ck=0 iwpriv ra0[ 32.412744] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_linkdown+0x58/0x378 [mt_wifi](0): get wdev_op_lock. [ 32.423992] 7986@C08L3ra0,hw_ctrl_flow_v2_link_down() 123: wdev_idx=0 iwpriv ra0 set SSID=MERCUSYS_12BE [ 32.434626] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 32.441548] WiFi@C01L2,wifi_sys_close() 912: wdev idx = 0 [ 32.447278] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_close+0x88/0x270 [mt_wifi](0): get wdev_op_lock. [ 32.457140] 7986@C08L3ra0,hw_ctrl_flow_v2_close() 41: wdev_idx=0 [ 32.463333] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 32.470115] WiFi@C01L2,wifi_sys_open() 832: wdev idx = 0 [ 32.475792] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_open+0x48/0x408 [mt_wifi](0): get wdev_op_lock. [ 32.485722] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xac/0x120 [mt_wifi] [ 32.493795] wdev_attr_update(): wdevId0 = 00:XX:XX:XX:XX:XX [ 32.499428] WiFi@C12L1,wifi_sys_open() 874: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 32.508402] 7986@C08L3ra0,hw_ctrl_flow_v2_open() 13: wdev_idx=0 [ 32.514540] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 32.521320] 7986@C01L2ra0,wifi_sys_linkup() 1133: wdev idx = 0 [ 32.527598] 7986@C08L3ra0,wifi_sys_op_lock() 791: wifi_sys_linkup+0x80/0x460 [mt_wifi](0): get wdev_op_lock. [ 32.594050] 7986@C08L3ra0,hw_ctrl_flow_v2_link_up() 72: wdev_idx=0 [ 32.603911] 7986@C08L2ra0,bcn_buf_init() 170: BcnPkt is allocated!, bcn offload=1 [ 32.611390] 7986@C08L3ra0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 32.618250] 7986@C03L3ra0,bssUpdateHighPriRateEAPOL() 4043: bssUpdateHighPriRateEAPOL (BSS_INFO_HIGHPRI_INFO), CmdBssInfoHighPriRate.u2HighPriTransmit = 0 [ 32.632244] 7986@C03L3ra0,bssUpdateHighPriRateEAPOL() 4043: bssUpdateHighPriRateEAPOL (BSS_INFO_HIGHPRI_INFO), CmdBssInfoHighPriRate.u2HighPriTransmit = 0 [ 32.646238] 7986@C03L3ra0,bssUpdateHighPriRateEAPOL() 4043: bssUpdateHighPriRateEAPOL (BSS_INFO_HIGHPRI_INFO), CmdBssInfoHighPriRate.u2HighPriTransmit = 0 [ 32.660187] Set_HighPriMcs(): input param error [ 32.660187] Usage: iwpriv [inf] set HighPriMcs=[frame_type]-[mcs] [ 32.660187] The frame type format is 0 for ARP, 1 for DHCP, 2 for EAPOL [ 32.660187] MCS must in range of 0 ~ 3 and 8 ~ 11 for CCK Mode [ 32.660187] MCS must in range from 0 to 7 for OFDM Mode iwpriv ra0 set h[ 32.690093] mtk_ppe_dev_register_hook : ra0 has been registered in wifi_hook_if table[1] w_nat_register=1 brctl addif br-lan ra0 [ 32.711516] br-lan: port 4(ra0) entered blocking state [ 32.716685] br-lan: port 4(ra0) entered disabled state [ 32.722025] device ra0 entered promiscuous mode [ 32.726632] br-lan: port 4(ra0) entered blocking state [ 32.731762] br-lan: port 4(ra0) entered forwarding state [ 32.737199] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready brctl show br-lan brctl setifvlan br-lan lan0 3 1 brctl setifvlan br-lan lan1 3 1 brctl setifvlan br-lan lan2 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't ens[ 32.804751] br-lan: port 5(apcli0) entered blocking state lave it to bridg[ 32.810587] br-lan: port 5(apcli0) entered disabled state e br-lan. brctl[ 32.817623] device apcli0 entered promiscuous mode 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 a[ 32.840657] br-lan: port 6(apclix0) entered blocking state pcli0 brctl set[ 32.847105] br-lan: port 6(apclix0) entered disabled state ifvlan br-lan ap[ 32.854148] device apclix0 entered promiscuous mode cli0 3 1 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 apclix0 brctl setifvlan br-lan apclix0 3 1 wifi_vap_local ra1 gp_id_rand = random_suffix = 5789 brctl delif br-lan ra1 ifconfig ra1 down brctl show br-lan brctl setifvlan br-lan lan0 3 1 brctl setifvlan br-lan lan1 3 1 brctl setifvlan br-lan lan2 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 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 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 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 wifi_vap_local apcli0 gp_id_rand = random_suffix = [ 33.518756] device apcli0 left promiscuous mode 5789 brctl deli[ 33.524368] br-lan: port 5(apcli0) entered disabled state f br-lan apcli0 ifconfig apcli0 down wifi_macfilter iwpriv ra0 set AccessPolicy=0 iwpriv rax0 set [ 33.590744] 7986@C12L1rax0,rt28xx_ap_ioctl() 879: interface is down, cmd [8beb] return!!! AccessPolicy=0 brctl show br-lan brctl setifvlan br-lan lan0 3 1 brctl setifvlan br-lan lan1 3 1 brctl setifvlan br-lan lan2 3 1 brctl addif br-lan ra0 device ra0 is already a member of a bridge; can't enslave it to bridg[ 33.625171] br-lan: port 5(apcli0) entered blocking state e br-lan. brctl[ 33.631449] br-lan: port 5(apcli0) entered disabled state setifvlan br-la[ 33.638484] device apcli0 entered promiscuous mode n 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 apcli0 brctl setifvlan br-lan apcli0 3 1 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 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 wifi_start_interface wifi1 wifi_vap_local rax0 gp_id_rand = random_suffix = 5789 ifconfig[ 33.934499] 7986@C08L2rax0,mbss_virtual_if_open() 134: ===> rax0 rax0 up [ 33.942011] 7986@C01L2rax0,RTMP_COM_IoctlHandle() 1505: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 33.951219] 7986@C01L2rax0,RTMP_COM_IoctlHandle() 1482: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 33.959611] WiFi@C01L2,wifi_sys_open() 832: wdev idx = 3 [ 33.965365] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_open+0x48/0x408 [mt_wifi](3): get wdev_op_lock. [ 33.975281] [RadarStateCheck] Zero Wait State: 0 [ 33.979893] 7986@C23L2rax0,RadarStateCheck() 317: RD_NORMAL_MODE [ 33.987045] phy_freq_adjust : no prim_ch value for adjust! [ 33.992728] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xac/0x120 [mt_wifi] [ 34.000718] wdev_attr_update(): wdevId3 = 00:XX:XX:XX:XX:XX [ 34.006344] WiFi@C12L1,wifi_sys_open() 874: wifi_sys_open():band1 group_idx[3]=4, bw_grp=16 omac=0 [ 34.015349] 7986@C08L3rax0,hw_ctrl_flow_v2_open() 13: wdev_idx=3 [ 34.022591] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 34.029487] 7986@C23L1rax0,HcGetBandByChannel() 1102: No hdev parking on channel:0, just return a default band_idx 0! [ 34.040153] 7986@C02L2rax0,AsicRadioOnOffCtrl() 2279: DbdcIdx=0 RadioOn [ 34.047508] mtk_band_steering_netlink_init 247 band steering netlink init ok [ 34.054730] 7986@C00L0rax0,ApAutoChannelAtBootUp() 301: -----------------> [ 34.061594] 7986@C00L0rax0,ApAutoChannelAtBootUp() 317: AutoChannelBootup[1] = 1 [ 34.069139] 7986@C03L1rax0,MtCmdSetMacTxRx() 10214: (ret = 0) [ 34.075008] 7986@C03L1rax0,MtCmdSetMacTxRx() 10214: (ret = 0) [ 34.080744] 7986@C00L1rax0,ApAutoChannelAtBootUp() 336: PhyMode: 177, ACSChStat:0 [ 34.088304] 7986@C23L2rax0,AutoChSelBuildChannelListFor56G() 2785: ChListNum56G = 19 [ 34.096260] 7986@C08L1rax0,UpdateBeaconHandler() 1999: wdev(3) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x10c/0x570 [mt_wifi])!! [ 34.108878] 7986@C23L0rax0,MTAPAutoSelectChannel() 2389: IsABand = 1, ChannelListNum = 8 false 0 [ 34.117023] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.127252] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=36, ctrl_ch2=0, cent_ch=36 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 34.169996] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 5 [ 34.392167] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.401653] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=40, ctrl_ch2=0, cent_ch=40 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 34.444528] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 1584 ===>>>rftestflag=1!! [ 34.672078] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.681553] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=44, ctrl_ch2=0, cent_ch=44 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 34.724034] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 4856 [ 34.952081] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.961551] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=48, ctrl_ch2=0, cent_ch=48 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 35.004126] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 5319 [ 35.232086] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 35.241555] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=52, ctrl_ch2=0, cent_ch=52 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 35.283665] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 5433 [ 35.301793] BcnCheck start after 1500 ms (ra0) [ 35.306580] 7986@C08L1rax0,UpdateBeaconHandler() 1999: wdev(3) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! add :!SSLv2 to uhttpd progress add :!SSLv3 to uhttpd progress add :!TLSv1 to uhttpd progress add :!RC4 to uhttpd progress [ 35.512111] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 35.521590] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=56, ctrl_ch2=0, cent_ch=56 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 35.563587] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 5441 [ 35.792089] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 35.801559] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=60, ctrl_ch2=0, cent_ch=60 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 35.843579] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 5444 [ 36.072095] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 36.081570] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=64, ctrl_ch2=0, cent_ch=64 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 36.123780] 7986@C23L0rax0,MTAPAutoSelectChannel() 2422: BandIdx = 1, pre_pcca_time = 5446 [ 36.352202] 7986@C08L1rax0,UpdateBeaconHandler() 1999: wdev(3) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x2b8/0x570 [mt_wifi])!! [ 36.364798] 7986@C23L0rax0,SelectClearChannelBusyTime() 1855: [SelectClearChannelBusyTime] - band1 START [ 36.374280] 7986@C23L0rax0,SelectClearChannelBusyTime() 1856: [SelectClearChannelBusyTime] - cfg_ht_bw = 1 vht_bw = 2 [ 36.384869] 7986@C23L0rax0,SelectClearChannelBusyTime() 1863: ==================================================================== [ 36.396587] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 36 : Busy Time = 272, Skip Channel = FALSE, BwCap = TRUE [ 36.408300] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 40 : Busy Time = 737, Skip Channel = FALSE, BwCap = TRUE [ 36.420018] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 44 : Busy Time = 1, Skip Channel = FALSE, BwCap = TRUE [ 36.431746] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 48 : Busy Time = 28, Skip Channel = FALSE, BwCap = TRUE [ 36.443466] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 52 : Busy Time = 1, Skip Channel = FALSE, BwCap = TRUE [ 36.455181] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 56 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE [ 36.466897] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 60 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE [ 36.478622] 7986@C23L0rax0,SelectClearChannelBusyTime() 1869: Channel 64 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE [ 36.490343] 7986@C23L0rax0,SelectClearChannelBusyTime() 1872: ==================================================================== [ 36.502061] 7986@C23L0rax0,SelectClearChannelBusyTime() 2137: Select Primary Channel 44 from bw160PreferCh[]! [ 36.511957] 7986@C23L0rax0,SelectClearChannelBusyTime() 2142: Rule 3 Channel Busy time value : Select Primary Channel 44 [ 36.522805] 7986@C23L0rax0,SelectClearChannelBusyTime() 2144: Rule 3 Channel Busy time value : Min Channel Busy = 737 [ 36.533398] 7986@C23L0rax0,SelectClearChannelBusyTime() 2149: Rule 3 Channel Busy time value : BW = 160 [ 36.542775] 7986@C23L0rax0,SelectClearChannelBusyTime() 2188: [SelectClearChannelBusyTime] - band1 END [ 36.552068] 7986@C00L0rax0,ApAutoChannelAtBootUp() 365: Auto channel selection: Selected channel = 44, IsAband = 1 [ 36.562397] 7986@C23L2rax0,Adj_ZeroWait_Status_Update() 890: [DFS_ZDFS_ENHANCE], Pre CH: 0, Pre BW: 0, Pre CAC done: 0 [ 36.573080] 7986@C12L0rax0,Adj_ZeroWait_Status_Update() 921: Adj_ZeroWait_Status_Update(921), Channel(44), OutBandCh(0), vht_bw(2), OutBandBw(0), BW160ZeroWaitState(0) [ 36.588007] 7986@C12L0rax0,Adj_ZeroWait_Status_Update() 993: Adj_ZeroWait_Status_Update(993), Channel(36), OutBandCh(44), vht_bw(1), OutBandBw(0), BW160ZeroWaitState(2) [ 36.603020] [RadarStateCheck] Zero Wait State: 2 [ 36.607621] 7986@C23L2rax0,RadarStateCheck() 317: RD_NORMAL_MODE [ 36.614765] 7986@C08L2rax0,DfsCacNormalStart() 3324: [RDM] TX80/RX160 mode, CAC 65 seconds start [ 36.623576] [MY_DBG] DfsCacNormalStart() pDot11h->RDMode=0 [ 36.629783] 7986@C00L1rax0,mt7986_apply_dpd_flatness_data() 619: eeprom 0x19a bit 0 is 0, do runtime cal [ 36.639259] 7986@C03L2rax0,MtCmdChannelSwitch() 2530: ctrl_chl=36, ctrl_ch2=0, cent_ch=42 DBDCIdx=1, ChBand=1, BW=2, TXStream=4, RXStream=4, scan(0) [ 36.892494] 7986@C08L2rax0,DfsCacNormalStart() 3324: [RDM] TX80/RX160 mode, CAC 65 seconds start [ 36.901265] [MY_DBG] DfsCacNormalStart() pDot11h->RDMode=0 [ 36.907455] 7986@C12L0rax0,ApAutoChannelAtBootUp() 504: Boot:1 Total:1 [ 36.913987] 7986@C23L2rax0,zero_wait_dfs_switch_ch() 779: outband ch 44, ch_stat 0 [ 36.921534] 7986@C23L2rax0,zero_wait_dfs_switch_ch() 786: bDedicatedZeroWaitDefault == 0 [ 36.929623] 7986@C00L0rax0,ApAutoChannelAtBootUp() 519: <----------------- [ 36.936660] 7986@C08L2rax0,APStartUpForMbss() 909: ===>(caller:ap_inf_open+0x198/0x590 [mt_wifi]), mbss_idx:3, CfgMode:0 [ 36.947520] 7986@C15L2rax0,APPMFInit() 133: [PMF] apidx=3, MFPC=0, MFPR=0, SHA256=0 [ 36.955360] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 36.962876] WiFi@C08L2,ap_link_up() 6989: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(3) [ 36.971464] 7986@C01L2rax0,wifi_sys_linkup() 1133: wdev idx = 3 [ 36.977699] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_linkup+0x80/0x460 [mt_wifi](3): get wdev_op_lock. [ 36.987644] 7986@C08L3rax0,hw_ctrl_flow_v2_link_up() 72: wdev_idx=3 [ 36.997476] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 37.016941] PrintSrCmd: [ 37.016941] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.016941] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.030921] PrintSrCmd: [ 37.030921] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.030921] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.044926] PrintSrCmd: [ 37.044926] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.044926] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.058904] PrintSrCmd: [ 37.058904] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.058904] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.072975] PrintSrCmd: [ 37.072975] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.072975] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.087077] 7986@C03L3rax0,MtCmdTxPwrShowInfo() 13714: ucTxPowerInfoCatg: 2, BandIdx: 1 [ 37.095175] 7986@C03L3rax0,MtCmdTxPwrShowInfo() 13743: (ret = 0) [ 37.095268] [mtf_txpower_all_rate_info] band_idx:1 pwr:32 ChBand:5G ePAGain:0 [ 37.101175] mtk_ppe_dev_register_hook : ineterface rax0 register (2) SFE STARTED--- iwpriv rax0 set [ 37.166743] 7986@C08L3rax0,ap_mlme_deauth_req_action() 223: ---> wcid = 32767 SSID=MERCUSYS_12[ 37.174391] 7986@C15L2rax0,APPMFInit() 133: [PMF] apidx=3, MFPC=0, MFPR=0, SHA256=0 BE_5G [ 37.183245] 7986@C01L2rax0,wifi_sys_linkdown() 1257: wdev idx = 3 [ 37.183644] 7986@C03L2rax0,ExtEventBeaconLostHandler() 169: FW EVENT (00:XX:XX:XX:XX:XX), Reason 0x10 [ 37.190156] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_linkdown+0x58/0x378 [mt_wifi](3): get wdev_op_lock. [ 37.199060] 7986@C03L1rax0,ExtEventBeaconLostHandler() 175: AP Beacon OFF!!! [ 37.216400] 7986@C08L3rax0,hw_ctrl_flow_v2_link_down() 123: wdev_idx=3 [ 37.226000] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 37.232938] WiFi@C01L2,wifi_sys_close() 912: wdev idx = 3 [ 37.238621] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_close+0x88/0x270 [mt_wifi](3): get wdev_op_lock. [ 37.248612] 7986@C08L3rax0,hw_ctrl_flow_v2_close() 41: wdev_idx=3 [ 37.254919] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 37.261884] WiFi@C01L2,wifi_sys_open() 832: wdev idx = 3 [ 37.267492] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_open+0x48/0x408 [mt_wifi](3): get wdev_op_lock. [ 37.277466] 7986@C08L2rax0,DfsCacNormalStart() 3324: [RDM] TX80/RX160 mode, CAC 65 seconds start [ 37.286270] [MY_DBG] DfsCacNormalStart() pDot11h->RDMode=0 [ 37.292464] 7986@C08L2rax0,DfsCacNormalStart() 3324: [RDM] TX80/RX160 mode, CAC 65 seconds start [ 37.301256] [MY_DBG] DfsCacNormalStart() pDot11h->RDMode=0 [ 37.307671] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xac/0x120 [mt_wifi] [ 37.315690] wdev_attr_update(): wdevId3 = 00:XX:XX:XX:XX:XX [ 37.321286] WiFi@C12L1,wifi_sys_open() 874: wifi_sys_open():band1 group_idx[3]=4, bw_grp=16 omac=0 [ 37.330281] 7986@C08L3rax0,hw_ctrl_flow_v2_open() 13: wdev_idx=3 [ 37.337502] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 37.344399] 7986@C01L2rax0,wifi_sys_linkup() 1133: wdev idx = 3 [ 37.350623] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_linkup+0x80/0x460 [mt_wifi](3): get wdev_op_lock. [ 37.360645] 7986@C08L3rax0,hw_ctrl_flow_v2_link_up() 72: wdev_idx=3 [ 37.370613] 7986@C08L2rax0,bcn_buf_init() 170: BcnPkt is allocated!, bcn offload=1 [ 37.378255] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. iwpriv rax0 set HideSSID=0 mumimo_config rax0 1 iwpriv rax[ 37.390563] sync for : ra0 0 set MuMimo=1 [ 37.394204] sync for : rax0 iwpriv rax0 set BeaconPeriod=100[ 37.399790] Set_RTSThreshold_Proc: set wdev3 rts length threshold=2346(0x92a) iwpriv rax0 set RTSThreshold=2[ 37.409219] Set_FragThreshold_Proc::set wdev3 FragThreshold=2346) 346 iwpriv rax0 set FragThresho[ 37.418879] 7986@C12L3rax0,Set_DtimPeriod_Proc() 13831: (i/f 3) (DtimPeriod=1) ld=2346 iwpriv rax0 set DtimPer[ 37.428245] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] iod=1 smart_home_schedule reload_service iwpriv rax0 set WmmCapable=1 maclist_smart_home: iwpriv rax0 set NoForwarding=0 iwpriv rax0 set NoForwardingBTNBSSID=0 iwpriv rax0 set UAPSDCapable=1 #### no schedule client found in blacklist config #### Call smart_home_schedule and add it to crontabs start crond... killall -q -SIGINT rt2860apd_x iwpriv rax0 set AuthMode=WPA2PSK iwpriv rax0 set EncrypType=AES iwpriv rax0 se[ 37.534088] 7986@C12L0rax0,Set_AP_RekeyInterval_Proc() 14578: I/F(ra3) GroupKey ReKeyInterval=0 seconds t IEEE8021X=0 iwpriv rax0 set RekeyInterval=0 iwpriv rax0 set WPAPSK=94502985 create "/var/run/schedule_clien[ 37.553073] 7986@C12L1rax0,RTMPAPPrivIoctlSet() 3658: IOCTL::(iwpriv) Command not Support [WscLabelDisabled=0] t" iwpriv rax0 set WscConfMode=7 iwpriv rax0 set WscConfStatu[ 37.569163] 7986@C08L3rax0,ap_mlme_deauth_req_action() 223: ---> wcid = 32767 s=2 iwpriv rax0[ 37.577135] 7986@C15L2rax0,APPMFInit() 133: [PMF] apidx=3, MFPC=0, MFPR=0, SHA256=0 set WscVendorPi[ 37.586071] 7986@C01L2rax0,wifi_sys_linkdown() 1257: wdev idx = 3 nCode=94502985 [ 37.586246] 7986@C03L2rax0,ExtEventBeaconLostHandler() 169: FW EVENT (00:XX:XX:XX:XX:XX), Reason 0x10 old_maclist is n[ 37.593761] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_linkdown+0x58/0x378 [mt_wifi](3): get wdev_op_lock. [ 37.604048] 7986@C03L1rax0,ExtEventBeaconLostHandler() 175: AP Beacon OFF!!! iwpriv rax0 set[ 37.624107] 7986@C08L3rax0,hw_ctrl_flow_v2_link_down() 123: wdev_idx=3 WscLabelDisabled=0 iwpriv rax0 set WscSetupLoc[ 37.634949] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. k=0 iwpriv rax0[ 37.642991] WiFi@C01L2,wifi_sys_close() 912: wdev idx = 3 [ 37.650023] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_close+0x88/0x270 [mt_wifi](3): get wdev_op_lock. iwpriv rax0 set[ 37.661045] 7986@C08L3rax0,hw_ctrl_flow_v2_close() 41: wdev_idx=3 SSID=MERCUSYS_1[ 37.668554] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. 2BE_5G [ 37.676657] WiFi@C01L2,wifi_sys_open() 832: wdev idx = 3 [ 37.682901] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_open+0x48/0x408 [mt_wifi](3): get wdev_op_lock. [ 37.692708] 7986@C08L2rax0,DfsCacNormalStart() 3324: [RDM] TX80/RX160 mode, CAC 65 seconds start [ 37.701475] [MY_DBG] DfsCacNormalStart() pDot11h->RDMode=0 [ 37.707649] 7986@C08L2rax0,DfsCacNormalStart() 3324: [RDM] TX80/RX160 mode, CAC 65 seconds start [ 37.716415] [MY_DBG] DfsCacNormalStart() pDot11h->RDMode=0 [ 37.722782] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xac/0x120 [mt_wifi] [ 37.730770] wdev_attr_update(): wdevId3 = 00:XX:XX:XX:XX:XX [ 37.736365] WiFi@C12L1,wifi_sys_open() 874: wifi_sys_open():band1 group_idx[3]=4, bw_grp=16 omac=0 [ 37.745321] 7986@C08L3rax0,hw_ctrl_flow_v2_open() 13: wdev_idx=3 [ 37.752465] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. [ 37.759326] 7986@C01L2rax0,wifi_sys_linkup() 1133: wdev idx = 3 [ 37.765528] 7986@C08L3rax0,wifi_sys_op_lock() 791: wifi_sys_linkup+0x80/0x460 [mt_wifi](3): get wdev_op_lock. [ 37.831995] 7986@C08L3rax0,hw_ctrl_flow_v2_link_up() 72: wdev_idx=3 [ 37.841859] 7986@C08L2rax0,bcn_buf_init() 170: BcnPkt is allocated!, bcn offload=1 [ 37.849411] 7986@C08L3rax0,wifi_sys_op_unlock() 806: release wdev_op_lock. iwpriv rax0 set hw_nat_register=[ 37.858074] mtk_ppe_dev_register_hook : ra0 has been registered in wifi_hook_if table[1] 1 [ 37.867651] mtk_ppe_dev_register_hook : rax0 has been registered in wifi_hook_if table[2] vpn client if off, exit brctl a[ 37.877629] br-lan: port 7(rax0) entered blocking state ddif br-lan rax0[ 37.884120] br-lan: port 7(rax0) entered disabled state [ 37.890858] device rax0 entered promiscuous mode [ 37.895627] br-lan: port 7(rax0) entered blocking state [ 37.900843] br-lan: port 7(rax0) entered forwarding state brctl show br-lan brctl setifvlan br-lan lan0 3 1 brctl setifvlan br-lan lan1 3 1 brctl setifvlan br-lan lan2 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 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 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 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 wifi_vap_local rax1 [del_tc_root] true true true true [ 38.091898] BcnCheck start after 4000 ms (ra0) QDMA fc reg's bit 16 should be 0 in pppq mode. hqos disable[ 38.124000] qdma_txq1: mark = 0x0 [ 38.127841] qdma_txq3: mark = 0x0 [ 38.131296] qdma_txq2: mark = 0x0 [ 38.135007] qdma_txq4: mark = 0x0 [ 38.138442] Per-port-per-queue mode is going to be enabled ! gp_id_rand = random_suffix = 5789 brctl delif br-lan rax1 ifconfig rax1 down brctl show br-lan brctl setifvlan br-lan lan0 3 1 brctl setifvlan br-lan lan1 3 1 brctl setifvlan br-lan lan2 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 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 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 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 wifi_vap_local apclix0 cwmp: stop cwmp gp_id_rand = random_suffix = [ 38.650409] device apclix0 left promiscuous mode 5789 brctl deli[ 38.656166] br-lan: port 6(apclix0) entered disabled state f br-lan apclix0 dhcp_hook_d not load ifconfig apclix0 down brctl show br-lan brctl setifvlan br-lan lan0 3 1 brctl setifvlan br-lan lan1 3 1 brctl setifvlan br-lan lan2 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 r[ 38.778589] br-lan: port 6(apclix0) entered blocking state a1 vlan to bridg[ 38.785441] br-lan: port 6(apclix0) entered disabled state e br-lan: Invali[ 38.792461] device apclix0 entered promiscuous mode d 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 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 apclix0 brctl setifvlan br-lan apclix0 3 1 nrd: stopping nrd: wifi_led_set 2g = ON, 5g = ON ========= don't cli WIFI-led when not cal /etc/rc.common 0 true [LAG] Disabling bonding-lag-lan [ 39.019175] br-lan: port 3(lan2) entered disabled state [ 39.030953] bond0: option slaves: invalid value (-lan2) [ 39.040265] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 39.047625] 8021q: adding VLAN 0 to HW filter on device lan2 [ 39.055965] bond0: option slaves: invalid value (-lan3) [ 39.062635] br-lan: port 8(lan3) entered blocking state [ 39.067850] br-lan: port 8(lan3) entered disabled state [ 39.073772] device lan3 entered promiscuous mode [ 39.083726] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 39.090876] 8021q: adding VLAN 0 to HW filter on device lan3 [ 39.101184] bond0 (unregistering): Released all slaves General shell run! saveconfig() begin The Hqos mode is not changed. start selfhealing saveconfig() end switch port [1] switch port [2] switch port [0] switch port [1] switch port [2] switch port [0] Don't need dual band temperature control!
OpenWrt bootlog
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.15.118 (builder@buildhost) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 12.3.0 r23228-cd17d8df2a) 12.3.0, GNU ld (GNU Binutils) 2.40.0) #0 SMP Mon Jun 26 11:20:39 2023 [ 0.000000] Machine model: Mercusys MR90X v1 [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 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-0x000000004fbfffff] [ 0.000000] node 0: [mem 0x000000004fc00000-0x000000004ffbffff] [ 0.000000] node 0: [mem 0x000000004ffc0000-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.2 [ 0.000000] percpu: Embedded 17 pages/cpu s30040 r8192 d31400 u69632 [ 0.000000] pcpu-alloc: s30040 r8192 d31400 u69632 alloc=17*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected VIPT I-cache on CPU0 [ 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: 129024 [ 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: 498100K/524288K available (8384K kernel code, 910K rwdata, 1468K rodata, 448K init, 301K bss, 26188K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] 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] Root IRQ handler: 0xffffffc008423104 [ 0.000000] GICv3: 16 PPIs implemented [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 [ 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.000000] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns [ 0.008178] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.018587] pid_max: default: 32768 minimum: 301 [ 0.023461] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.030813] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.039707] rcu: Hierarchical SRCU implementation. [ 0.044840] smp: Bringing up secondary CPUs ... [ 0.049673] Detected VIPT I-cache on CPU1 [ 0.049694] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.049717] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.049997] Detected VIPT I-cache on CPU2 [ 0.050010] GICv3: CPU2: found redistributor 2 region 0:0x000000000c0c0000 [ 0.050022] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.050296] Detected VIPT I-cache on CPU3 [ 0.050307] GICv3: CPU3: found redistributor 3 region 0:0x000000000c0e0000 [ 0.050318] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.050353] smp: Brought up 1 node, 4 CPUs [ 0.106920] SMP: Total of 4 processors activated. [ 0.111641] CPU features: detected: 32-bit EL0 Support [ 0.116799] CPU features: detected: CRC32 instructions [ 0.121985] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.130426] CPU: All CPU(s) started at EL2 [ 0.134550] alternatives: patching kernel code [ 0.141512] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.151419] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.158473] pinctrl core: initialized pinctrl subsystem [ 0.164391] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.170614] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.177721] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.185517] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.193741] thermal_sys: Registered thermal governor 'fair_share' [ 0.193745] thermal_sys: Registered thermal governor 'bang_bang' [ 0.199863] thermal_sys: Registered thermal governor 'step_wise' [ 0.205900] thermal_sys: Registered thermal governor 'user_space' [ 0.212108] ASID allocator initialised with 65536 entries [ 0.223996] pstore: Registered ramoops as persistent store backend [ 0.230208] ramoops: using 0x10000@0x42ff0000, ecc: 0 [ 0.243864] cryptd: max_cpu_qlen set to 1000 [ 0.249886] SCSI subsystem initialized [ 0.253740] libata version 3.00 loaded. [ 0.258471] clocksource: Switched to clocksource arch_sys_counter [ 0.265102] NET: Registered PF_INET protocol family [ 0.270082] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.277735] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.286139] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.293927] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.301735] TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 0.308947] TCP: Hash tables configured (established 4096 bind 4096) [ 0.315386] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.321957] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.329061] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.334765] PCI: CLS 0 bytes, default 64 [ 0.340838] workingset: timestamp_bits=46 max_order=17 bucket_order=0 [ 0.350367] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.356233] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.393945] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [ 0.404874] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled [ 0.413166] printk: console [ttyS0] disabled [ 0.437604] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 121, base_baud = 2500000) is a ST16650V2 [ 0.446914] printk: console [ttyS0] enabled [ 0.455268] printk: bootconsole [uart8250] disabled [ 0.465578] mtk_rng 1020f000.rng: registered RNG driver [ 0.465636] hwrng: no data available [ 0.471034] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.482798] loop: module loaded [ 0.485943] Loading iSCSI transport class v2.0-870. [ 0.492453] spi-nand spi0.0: GigaDevice SPI NAND was found. [ 0.498019] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 [ 0.506381] 6 fixed-partitions partitions found on MTD device spi0.0 [ 0.512727] Creating 6 MTD partitions on "spi0.0": [ 0.517502] 0x000000000000-0x000000200000 : "boot" [ 0.524774] 0x000000200000-0x000000300000 : "u-boot-env" [ 0.531458] 0x000000300000-0x000003500000 : "ubi0" [ 0.591088] 0x000003500000-0x000006700000 : "ubi1" [ 0.647759] 0x000006700000-0x000006f00000 : "userconfig" [ 0.660828] 0x000006f00000-0x000007300000 : "tp_data" [ 3.409474] Maxlinear Ethernet GPY211C mdio-bus:06: Firmware Version: 0x886F (release) [ 3.418846] mtk_soc_eth 15100000.ethernet: generated random MAC address 4a:44:ca:70:ce:1b [ 3.427707] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc009580000, irq 128 [ 3.436874] mtk_soc_eth 15100000.ethernet: generated random MAC address 9e:fa:38:a7:c9:62 [ 3.445733] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc009580000, irq 128 [ 3.455231] i2c_dev: i2c /dev entries driver [ 3.460509] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 3.468988] NET: Registered PF_INET6 protocol family [ 3.474618] Segment Routing with IPv6 [ 3.478288] In-situ OAM (IOAM) with IPv6 [ 3.482252] NET: Registered PF_PACKET protocol family [ 3.487306] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 3.500362] 8021q: 802.1Q VLAN Support v1.8 [ 3.505483] pstore: Using crash dump compression: deflate [ 3.550064] mt7530-mdio mdio-bus:1f: no interrupt support [ 3.560329] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode [ 3.569366] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 3.578308] mt7530-mdio mdio-bus:1f lan0 (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7531 PHY] (irq=POLL) [ 3.598601] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=POLL) [ 3.618618] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=POLL) [ 3.630411] DSA: tree 0 setup [ 3.633652] ubi0: default fastmap pool size: 20 [ 3.638171] ubi0: default fastmap WL pool size: 10 [ 3.642968] ubi0: attaching mtd2 [ 4.472546] ubi0: scanning is finished [ 4.499699] ubi0: attached mtd2 (name "ubi0", size 50 MiB) [ 4.505177] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 4.512039] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 4.518809] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 4.525749] ubi0: good PEBs: 400, bad PEBs: 0, corrupted PEBs: 0 [ 4.531738] ubi0: user volume: 4, internal volumes: 1, max. volumes count: 128 [ 4.538941] ubi0: max/mean erase counter: 21/15, WL threshold: 4096, image sequence number: 302291140 [ 4.548135] ubi0: available PEBs: 0, total reserved PEBs: 400, PEBs reserved for bad PEB handling: 20 [ 4.557336] ubi0: background thread "ubi_bgt0d" started, PID 472 [ 4.561063] block ubiblock0_2: created from ubi0:2(rootfs) [ 4.568801] ubiblock: device ubiblock0_2 (rootfs) set to be root filesystem [ 4.591116] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 4.598418] Freeing unused kernel memory: 448K [ 4.648538] Run /etc/preinit as init process [ 4.652793] with arguments: [ 4.655745] /etc/preinit [ 4.658620] with environment: [ 4.661745] HOME=/ [ 4.664089] TERM=linux [ 5.281931] init: Console is alive [ 5.285434] init: - watchdog - [ 6.268381] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 6.390598] Key type encrypted registered [ 6.397026] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com [ 6.409252] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 6.426071] init: - preinit - [ 6.725891] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 6.734331] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 6.757431] ubi1: default fastmap pool size: 8 [ 6.761905] ubi1: default fastmap WL pool size: 4 [ 6.766593] ubi1: attaching mtd5 [ 6.769831] ubi1: MTD device 5 is write-protected, attach in read-only mode [ 6.842735] ubi1: scanning is finished [ 6.869269] ubi1 warning: 0xffffffc00856b974: cannot reserve enough PEBs for bad PEB handling, reserved 8, need 20 [ 6.879906] ubi1: attached mtd5 (name "tp_data", size 4 MiB) [ 6.885554] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 6.888486] random: procd: uninitialized urandom read (4 bytes read) [ 6.892414] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 6.905507] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 6.912452] ubi1: good PEBs: 32, bad PEBs: 0, corrupted PEBs: 0 [ 6.918351] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 6.925555] ubi1: max/mean erase counter: 4/2, WL threshold: 4096, image sequence number: 682472375 [ 6.934582] ubi1: available PEBs: 0, total reserved PEBs: 32, PEBs reserved for bad PEB handling: 8 [ 6.943613] ubi1: background thread "ubi_bgt1d" started, PID 558 [ 6.953467] UBIFS (ubi1:0): read-only UBI device [ 6.960180] UBIFS (ubi1:0): Mounting in unauthenticated mode [ 7.259856] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "tp_data", R/O mode [ 7.268192] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.278088] UBIFS (ubi1:0): FS size: 1269760 bytes (1 MiB, 10 LEBs), max 18 LEBs, journal size 888833 bytes (0 MiB, 5 LEBs) [ 7.289196] UBIFS (ubi1:0): reserved for root: 59973 bytes (58 KiB) [ 7.295443] UBIFS (ubi1:0): media format: w5/r0 (latest is w5/r0), UUID BCFB1CE0-BA38-4F61-BFD5-EDD01DB8BDC2, small LPT model [ 7.391873] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode [ 9.483068] mount_root: loading kmods from internal overlay [ 9.493321] kmodloader: loading kernel modules from //etc/modules-boot.d/* [ 9.500647] kmodloader: done loading kernel modules from //etc/modules-boot.d/* [ 10.328483] random: crng init done [ 10.368872] UBIFS (ubi0:3): Mounting in unauthenticated mode [ 10.374594] UBIFS (ubi0:3): background thread "ubifs_bgt0_3" started, PID 609 [ 10.693055] UBIFS (ubi0:3): UBIFS: mounted UBI device 0, volume 3, name "rootfs_data" [ 10.700886] UBIFS (ubi0:3): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 10.710780] UBIFS (ubi0:3): FS size: 31997952 bytes (30 MiB, 252 LEBs), max 262 LEBs, journal size 1650688 bytes (1 MiB, 13 LEBs) [ 10.722407] UBIFS (ubi0:3): reserved for root: 1511341 bytes (1475 KiB) [ 10.729005] UBIFS (ubi0:3): media format: w5/r0 (latest is w5/r0), UUID FD8379A5-4A22-43E5-B06D-0E28E2E800C3, small LPT model [ 10.742540] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 10.749578] block: unable to load configuration (fstab: Entry not found) [ 10.756290] block: attempting to load /tmp/ubifs_cfg/etc/config/fstab [ 10.762767] block: unable to load configuration (fstab: Entry not found) [ 10.769495] block: attempting to load /etc/config/fstab [ 10.774764] block: unable to load configuration (fstab: Entry not found) [ 10.781478] block: no usable configuration [ 10.793020] UBIFS (ubi0:3): un-mount UBI device 0 [ 10.797722] UBIFS (ubi0:3): background thread "ubifs_bgt0_3" stops [ 10.810031] UBIFS (ubi0:3): Mounting in unauthenticated mode [ 10.815753] UBIFS (ubi0:3): background thread "ubifs_bgt0_3" started, PID 612 [ 11.133830] UBIFS (ubi0:3): UBIFS: mounted UBI device 0, volume 3, name "rootfs_data" [ 11.141654] UBIFS (ubi0:3): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 11.151549] UBIFS (ubi0:3): FS size: 31997952 bytes (30 MiB, 252 LEBs), max 262 LEBs, journal size 1650688 bytes (1 MiB, 13 LEBs) [ 11.163175] UBIFS (ubi0:3): reserved for root: 1511341 bytes (1475 KiB) [ 11.169772] UBIFS (ubi0:3): media format: w5/r0 (latest is w5/r0), UUID FD8379A5-4A22-43E5-B06D-0E28E2E800C3, small LPT model [ 11.472889] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 11.479927] block: unable to load configuration (fstab: Entry not found) [ 11.486637] block: attempting to load /tmp/ubifs_cfg/etc/config/fstab [ 11.493114] block: unable to load configuration (fstab: Entry not found) [ 11.499827] block: attempting to load /etc/config/fstab [ 11.505072] block: unable to load configuration (fstab: Entry not found) [ 11.511784] block: no usable configuration [ 11.516340] mount_root: overlay filesystem has not been fully initialized yet [ 11.525796] mount_root: switching to ubifs overlay [ 11.543641] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 11.971999] urandom-seed: Seed file not found (/etc/urandom.seed) [ 12.006266] procd: - early - [ 12.009212] procd: - watchdog - [ 12.544155] procd: - watchdog - [ 12.547449] procd: - ubus - [ 12.644023] procd: - init - [ 13.139836] urngd: v1.0.2 started. [ 13.151303] kmodloader: loading kernel modules from /etc/modules.d/* [ 13.268402] Key type dns_resolver registered [ 13.276609] RPC: Registered named UNIX socket transport module. [ 13.282533] RPC: Registered udp transport module. [ 13.287219] RPC: Registered tcp transport module. [ 13.291912] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 13.306833] NFS: Registering the id_resolver key type [ 13.311914] Key type id_resolver registered [ 13.316080] Key type id_legacy registered [ 13.321767] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 [ 13.336277] Loading modules backported from Linux version v6.1.24-0-g0102425ac76b [ 13.343802] Backport generated by backports.git v5.15.92-1-44-gd6ea70fafd36 [ 13.802254] mt7986-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20221012174743a [ 13.802254] [ 14.164469] mt7986-wmac 18000000.wifi: WM Firmware Version: ____000000, Build Time: 20221012174805 [ 14.331950] mt7986-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20221012174937 [ 14.476739] mt7986-wmac 18000000.wifi: eeprom load fail, use default bin [ 17.149334] PPP generic driver version 2.4.2 [ 17.154220] NET: Registered PF_PPPOX protocol family [ 17.161497] kmodloader: done loading kernel modules from /etc/modules.d/* [ 21.716286] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 21.729368] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 21.737789] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 21.738455] device eth0 entered promiscuous mode [ 21.751434] mt7530-mdio mdio-bus:1f lan0: configuring for phy/gmii link mode [ 21.761526] br-lan: port 1(lan0) entered blocking state [ 21.763229] mt7530-mdio mdio-bus:1f lan0: Link is Up - 1Gbps/Full - flow control rx/tx [ 21.766751] br-lan: port 1(lan0) entered disabled state [ 21.781566] device lan0 entered promiscuous mode [ 21.788125] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 21.797339] br-lan: port 1(lan0) entered blocking state [ 21.802591] br-lan: port 1(lan0) entered forwarding state [ 21.810716] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode [ 21.820748] br-lan: port 2(lan1) entered blocking state [ 21.825991] br-lan: port 2(lan1) entered disabled state [ 21.832997] device lan1 entered promiscuous mode [ 21.841147] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode [ 21.850972] br-lan: port 3(lan2) entered blocking state [ 21.856238] br-lan: port 3(lan2) entered disabled state [ 21.863525] device lan2 entered promiscuous mode [ 22.992687] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 22.999606] br-lan: port 4(phy0-ap0) entered blocking state [ 23.005181] br-lan: port 4(phy0-ap0) entered disabled state [ 23.010971] device phy0-ap0 entered promiscuous mode [ 23.618892] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready [ 23.625671] br-lan: port 4(phy0-ap0) entered blocking state [ 23.631305] br-lan: port 4(phy0-ap0) entered forwarding state [ 23.640375] br-lan: port 5(phy0-ap1) entered blocking state [ 23.645951] br-lan: port 5(phy0-ap1) entered disabled state [ 23.651739] device phy0-ap1 entered promiscuous mode [ 23.664907] br-lan: port 5(phy0-ap1) entered blocking state [ 23.670516] br-lan: port 5(phy0-ap1) entered forwarding state [ 23.920791] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap1: link becomes ready [ 24.511539] br-lan: port 6(phy1-ap0) entered blocking state [ 24.517136] br-lan: port 6(phy1-ap0) entered disabled state [ 24.522892] device phy1-ap0 entered promiscuous mode [ 24.527938] br-lan: port 6(phy1-ap0) entered blocking state [ 24.533511] br-lan: port 6(phy1-ap0) entered forwarding state [ 24.539515] br-lan: port 6(phy1-ap0) entered disabled state [ 25.668560] IPv6: ADDRCONF(NETDEV_CHANGE): phy1-ap0: link becomes ready [ 25.675280] br-lan: port 6(phy1-ap0) entered blocking state [ 25.680871] br-lan: port 6(phy1-ap0) entered forwarding state [ 25.687785] br-lan: port 7(phy1-ap1) entered blocking state [ 25.693419] br-lan: port 7(phy1-ap1) entered disabled state [ 25.699200] device phy1-ap1 entered promiscuous mode [ 25.706885] br-lan: port 7(phy1-ap1) entered blocking state [ 25.712475] br-lan: port 7(phy1-ap1) entered forwarding state [ 26.000345] IPv6: ADDRCONF(NETDEV_CHANGE): phy1-ap1: link becomes ready
Notes
None so far.