WAVLINK WL-WN586X3 Rev. a

The WL-WN586X3 achieves a total networking speed of about 2975Mbps — 2402Mbps on the 5GHz band and 573Mbps on the 2.4GHz band. It's Features include one Gigabit WAN port, two Gigabit LAN ports and four 5dBi omni directional antennas offering versatile customization options for WAN/LAN applications.

WARNING: DO NOT install OpenWrt if your device has the spi-nor Boya BY25Q128AS 16MB flash chip. There is no driver for this chip. You will soft brick the device and need to use serial recovery to get back to stock. Once you've install the modified stock firmware search the system log for 'spi-nor' to see which chip is installed (see below). If it is the BY25Q128AS, again DO NOT install OpenWrt. More info here https://forum.openwrt.org/t/wavlink-wl-wn586x3-ver-a-installation-advice/243893

Section of modified-stock system log showing chip ID:

[    0.509816] mtk-spi 11009000.spi: Error applying setting, reverse things back
[    0.517573] spi-nor spi0.0: calibration result: 0x2
[    0.522521] [WAV_FLASH]FOUND_BY_FM_ENC_FLASH
[    0.526791] Wavlink Encryption System is unlocked!

[    0.531593] spi-nor spi0.0: BY25Q128AS (16384 Kbytes)      <------- THIS LINE----<

[    0.536803] 7 fixed-partitions partitions found on MTD device spi0.0
[    0.543171] Creating 7 MTD partitions on "spi0.0":
[    0.547962] 0x000000000000-0x000000040000 : "BL2"
[    0.553204] 0x000000040000-0x000000050000 : "u-boot-env"
[    0.558990] 0x000000050000-0x000000100000 : "Factory"
[    0.564503] 0x000000100000-0x000000180000 : "FIP"
[    0.569672] 0x000000180000-0x000000f80000 : "firmware"
[    0.575384] 2 fit-fw partitions found on MTD device firmware
[    0.581056] 0x000000180000-0x000000480000 : "kernel"
[    0.586526] 0x000000480000-0x000000f80000 : "rootfs"
[    0.591939] mtd: device 6 (rootfs) set to be root filesystem
[    0.597653] 1 squashfs-split partitions found on MTD device rootfs
[    0.603844] 0x000000f20000-0x000000f80000 : "rootfs_data"
[    0.609729] 0x000000f80000-0x000001000000 : "HW"
[    0.614829] 0x000000000000-0x000001000000 : "all"

Before enabling each SSID set your Country Code to ensure the correct WiFi channels and transmit power are used:

  1. In LuCI go to Network → Wireless
  2. Click “Edit” on the SSID you want to enable
  3. Select your “Country Code” from the dropdown
  4. Save and Apply

Alternatively, set via SSH with iw reg set.

HFO enables hardware offloading of routing/NAT packets. The caveat being it is incompatible with SQM. This can be enabled via /etc/config/firewall or in LuCI as follows:

  1. Network → Firewall → Flow offloading type → Hardware flow offloading
  2. Save and Apply

WED enables hardware offloading of wireless traffic. The caveat being it will also bypass AQL which may result in higher WiFi latency. This feature is not yet available in LuCI. To enable it, use the command line:

  1. SSH: nano /etc/modules.conf
  2. Append: options mt7915e wed_enable=Y
  3. Save and reboot

To check if WED is enabled, the following module will return either Y or N (yes or no): cat /sys/module/mt7915e/parameters/wed_enable

Beamforming (explicit beamforming is part of the 802.11ac standard) improves data rates and extends range by directing signals toward specific clients instead of in every direction at once. By carefully controlling transmissions from several antennas, we can cause their signals to interfere on purpose and redirect the resulting signal in a new direction.

Basic Service Set (BSS) Coloring marks shared frequencies to allow 802.11ax access points to determine whether simultaneous use of spectrum is permissible. This technology reduces interference due to congestion and ensures consistent service to multiple connected devices in high-density environments.

Edit /etc/config/wireless and insert the following option under the radio section corresponding to the device which should be using beam forming:

config wifi-device 'radio1'
...
option he_su_beamformee '1'
option he_bss_color '8'
  • Valid selections for he_bbs_color are integers 1-63.

Restart wireless or reboot the device.

This device uses the mt76 mac80211 wifi driver which supports AQL. While the default values are sensible, reducing TX queue limits can improve latency, albeit with a reduction in peak throughput. See forum post for adjusting AQL limits showing limits in the 1500-2500 range yield the lowest latency results. As always with WiFi, results will vary due to a variety of clients, frequencies, obstructions, etc. As noted above this cannot be used with WED enabled.

Check current AQL limits: cat /sys/kernel/debug/ieee80211/phy*/aql_txq_limit

Example for setting different limits on both radios:
for ac in 0 1 2 3; do echo $ac 2500 8500 > /sys/kernel/debug/ieee80211/phy0/aql_txq_limit; done
for ac in 0 1 2 3; do echo $ac 2500 8500 > /sys/kernel/debug/ieee80211/phy1/aql_txq_limit; done

To retain configuration after reboot save to /etc/rc.local:

# AQL Tweaks
aql_txq_limit_l=2500
aql_txq_limit_h=8500
for ac in 0 1 2 3; do echo $ac $aql_txq_limit_l $aql_txq_limit_h > /sys/kernel/debug/ieee80211/phy0/aql_txq_limit; done
for ac in 0 1 2 3; do echo $ac $aql_txq_limit_l $aql_txq_limit_h > /sys/kernel/debug/ieee80211/phy1/aql_txq_limit; done

If configuring this device to function only as a wireless access point (dumb AP) follow the bridgedap guide and consider leaving hardware acceleration features off as explained below.

Flow Offloading

A dumb AP does not perform routing/NAT since it is on the same LAN as the router. Flow offloading (SFO and HFO) will therefore have no impact, better to leave these off.

WED

Since a dumb AP does not perform other functions there is plenty of CPU headroom, therefore WiFi will typically have lower latency by leaving WED disabled so it will utilize AQL. Nevertheless if you would like to use WED, enable it as described above, then install the bridger package which does some BPF (Berkeley Packet Filter) magic to track and offload bridged streams. Optionally, edit /etc/config/bridger and define a device or bridge to exclude from bridge forwarding acceleration.

Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.

The default network configuration is:

Interface Name Description Default configuration
br-lan LAN & WiFi 192.168.1.1/24
eth1 WAN DHCP

This is not possible. The sysupgrade.bin files that are currently created are incorrect, they are the wrong format. They will soft brick the device. They will, however, work fine for an initial flash on non-Boya chip models . I have one with a Fudan FM25Q128 that I have tested this on. There may be other flash chips that were used in this device as well. I only have experience with the two mentioned. Again DO NOT use the sysupgrade.bin file to do a sysupgrade in Luci or Terminal.

See above.

Port Switch port
Internet (WAN) eth1
LAN 1 lan1
LAN 2 lan2

The WAVLINK WL-WN536AX6 has the following buttons:

BUTTON Event
reset/wps reset/wps
Serial connection parameters 115200, 8N1

port.jtag general information about the JTAG port, JTAG cable, etc.

How to connect to the JTAG Port of this specific device:
Insert photo of PCB with markings for JTAG port

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.4.194 (lijunda@server3) (gcc version 8.4.0 (OpenWrt4 [ 0.000000] Machine model: MediaTek MT7981 RFB [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] On node 0 totalpages: 64592 [ 0.000000] DMA32 zone: 1024 pages used for memmap [ 0.000000] DMA32 zone: 0 pages reserved [ 0.000000] DMA32 zone: 64592 pages, LIFO batch:15 [ 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 22 pages/cpu s49304 r8192 d32616 u90112 [ 0.000000] pcpu-alloc: s49304 r8192 d32616 u90112 alloc=22*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 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 confign [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 63568 [ 0.000000] Kernel command line: console=ttyS0,115200n1 loglevel=8 0 [ 0.000000] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes, lin) [ 0.000000] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes, line) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 231416K/258368K available (6334K kernel code, 412K rwdata, ) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: CONFIG_RCU_FANOUT set to non-default value of 32. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffi. [ 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+0x2d4/0x420 with 0 [ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0s [ 0.000004] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046s [ 0.008171] Calibrating delay loop (skipped), value calculated using timer freq) [ 0.018490] pid_max: default: 32768 minimum: 301 [ 0.023211] Mount-cache hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.030472] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes, lin) [ 0.039027] ASID allocator initialised with 65536 entries [ 0.044527] rcu: Hierarchical SRCU implementation. [ 0.049614] smp: Bringing up secondary CPUs ... [ 0.054462] Detected VIPT I-cache on CPU1 [ 0.054482] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.054504] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.054564] smp: Brought up 1 node, 2 CPUs [ 0.076177] SMP: Total of 2 processors activated. [ 0.080902] CPU features: detected: 32-bit EL0 Support [ 0.086064] CPU features: detected: CRC32 instructions [ 0.091335] CPU: All CPU(s) started at EL2 [ 0.095457] alternatives: patching kernel code [ 0.102108] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_s [ 0.111923] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.118823] pinctrl core: initialized pinctrl subsystem [ 0.124606] NET: Registered protocol family 16 [ 0.129283] DMA: preallocated 256 KiB pool for atomic allocations [ 0.149567] SCSI subsystem initialized [ 0.153501] libata version 3.00 loaded. [ 0.158234] Bluetooth: Core ver 2.22 [ 0.161918] NET: Registered protocol family 31 [ 0.166389] Bluetooth: HCI device and connection manager initialized [ 0.172780] Bluetooth: HCI socket layer initialized [ 0.177682] Bluetooth: L2CAP socket layer initialized [ 0.182763] Bluetooth: SCO socket layer initialized [ 0.187905] rbus 18000000.wbsys: PCI host bridge to bus 0000:00 [ 0.193864] pci_bus 0000:00: root bus resource [mem 0x18000000-0x18ffffff] [ 0.200775] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.206287] pci_bus 0000:00: scanning bus [ 0.210327] pci 0000:00:00.0: [14c3:7981] type 00 class 0x000280 [ 0.216372] pci 0000:00:00.0: reg 0x10: [mem 0x18000000-0x1800000f 64bit] [ 0.223196] pci 0000:00:00.0: reg 0x18: [mem 0x00000000-0x0000000f] [ 0.229495] pci 0000:00:00.0: reg 0x1c: [mem 0x00000000-0x0000000f] [ 0.235794] pci 0000:00:00.0: reg 0x20: [mem 0x00000000-0x0000000f] [ 0.242093] pci 0000:00:00.0: reg 0x24: [mem 0x00000000-0x0000000f] [ 0.249220] pci_bus 0000:00: fixups for bus [ 0.253429] pci_bus 0000:00: bus scan returning with max=00 [ 0.259909] clocksource: Switched to clocksource arch_sys_counter [ 0.266613] thermal_sys: Registered thermal governor 'fair_share' [ 0.266616] thermal_sys: Registered thermal governor 'bang_bang' [ 0.272758] thermal_sys: Registered thermal governor 'step_wise' [ 0.278795] thermal_sys: Registered thermal governor 'user_space' [ 0.284831] thermal_sys: Registered thermal governor 'power_allocator' [ 0.291192] NET: Registered protocol family 2 [ 0.302204] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.309728] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 by) [ 0.318136] TCP established hash table entries: 2048 (order: 2, 16384 bytes, li) [ 0.325934] TCP bind hash table entries: 2048 (order: 3, 32768 bytes, linear) [ 0.333128] TCP: Hash tables configured (established 2048 bind 2048) [ 0.339574] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.346146] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.353224] NET: Registered protocol family 1 [ 0.357626] PCI: CLS 0 bytes, default 64 [ 0.362298] workingset: timestamp_bits=46 max_order=16 bucket_order=0 [ 0.371739] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.377622] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY). [ 0.400236] phy phy-usb-phy@11e10000.1: type_sw - reg 0x218, index 0 [ 0.416420] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.423513] printk: console [ttyS0] disabled [ 0.447930] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 12, base_baud = 252 [ 0.457140] printk: console [ttyS0] enabled [ 0.457140] printk: console [ttyS0] enabled [ 0.465504] printk: bootconsole [uart8250] disabled [ 0.465504] printk: bootconsole [uart8250] disabled [ 0.475816] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.484204] loop: module loaded [ 0.487459] mediatek,mt2701-ice_debug ice_debug: get dbg_sel clock fail: -2 [ 0.494431] mediatek,mt2701-ice_debug: probe of ice_debug failed with error -2 [ 0.502356] mt7981-pinctrl 11d00000.pinctrl: pin_config_set op failed for pin 29 [ 0.509757] mtk-spi 11009000.spi: Error applying setting, reverse things back [ 0.517534] spi-nor spi0.0: calibration result: 0x2 [ 0.522483] [WAV_FLASH]FOUND_BY_FM_ENC_FLASH [ 0.526752] Wavlink Encryption System is unlocked! [ 0.533224] spi-nor spi0.0: fm25q128 (16384 Kbytes) [ 0.538259] 7 fixed-partitions partitions found on MTD device spi0.0 [ 0.544621] Creating 7 MTD partitions on “spi0.0”: [ 0.549409] 0x000000000000-0x000000040000 : “BL2” [ 0.554654] 0x000000040000-0x000000050000 : “u-boot-env” [ 0.560447] 0x000000050000-0x000000100000 : “Factory” [ 0.565972] 0x000000100000-0x000000180000 : “FIP” [ 0.571144] 0x000000180000-0x000000f80000 : “firmware” [ 0.576857] 2 fit-fw partitions found on MTD device firmware [ 0.582530] 0x000000180000-0x000000480000 : “kernel” [ 0.588022] 0x000000480000-0x000000f80000 : “rootfs” [ 0.593439] mtd: device 6 (rootfs) set to be root filesystem [ 0.599147] 1 squashfs-split partitions found on MTD device rootfs [ 0.605341] 0x000000ed0000-0x000000f80000 : “rootfs_data” [ 0.611226] 0x000000f80000-0x000001000000 : “HW” [ 0.616338] 0x000000000000-0x000001000000 : “all” [ 0.622793] [mtk_hw_init] reset_lock:0, force:0 [ 0.627367] [mtk_hw_init] execute fe cold reset [ 0.643044] mtk_soc_eth 15100000.ethernet: MDC is running on 2500000 Hz [ 0.690108] MediaTek MT7981 PHY mdio-bus:00: TX-VCM SW cal result: 0x2 [ 0.697771] mtk_soc_eth 15100000.ethernet: generated random MAC address a2:0d:dd [ 0.706247] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffff5 [ 0.715324] mtk_soc_eth 15100000.ethernet: generated random MAC address 12:b9:37 [ 0.723774] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffff5 [ 0.732820] (unnamed net_device) (dummy): netif_napi_add() called with weight 26 [ 0.740560] i2c /dev entries driver [ 0.744976] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayo) [ 0.752964] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devm [ 0.761507] Bluetooth: HCI UART driver ver 2.3 [ 0.766027] Bluetooth: HCI UART protocol H4 registered [ 0.771162] Bluetooth: HCI UART protocol BCSP registered [ 0.776562] Bluetooth: HCI UART protocol Broadcom registered [ 0.782241] Bluetooth: HCI UART protocol QCA registered [ 0.789841] ---------------------------- [ 0.793771] --------igd mtk inited---------- [ 0.798031] ---------------------------- [ 0.802285] NET: Registered protocol family 10 [ 0.807472] Segment Routing with IPv6 [ 0.811201] NET: Registered protocol family 17 [ 0.815688] Bridge firewalling registered [ 0.820026] 8021q: 802.1Q VLAN Support v1.8 [ 1.044504] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [dsa-0.0:00] driver [G] [ 1.054059] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [dsa-0.0:01] driver [G] [ 1.063601] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [dsa-0.0:02] driver [G] [ 1.073162] mt7530 mdio-bus:1f lan4 (uninitialized): PHY [dsa-0.0:03] driver [G] [ 1.082040] mt7530 mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.089193] DSA: tree 0 setup [ 1.089443] mt7530 mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.092154] mt7530-nl: genl_register_family_with_ops [ 1.092245] hctosys: unable to open rtc device (rtc0) [ 1.111571] VFS: Mounted root (squashfs filesystem) readonly on device 31:6. [ 1.118874] Freeing unused kernel memory: 448K [ 1.143943] Run /sbin/init as init process [ 1.156871] random: fast init done [ 1.330895] init: Console is alive [ 1.334451] init: - watchdog - [ 1.756882] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 1.781439] conninfra@(mtk_conninfra_drv_init:644) Before platform_driver_regisr [ 1.789116] Get Index(0-TOP_MISC_BASE) phy_addr(0x11d10000) vir_addr=(0xffffffc) [ 1.798501] Get Index(1-TOPRGU_BASE) phy_addr(0x1001c000) vir_addr=(0xffffffc01) [ 1.807708] Get Index(2-GPIO_BASE) phy_addr(0x11d00000) vir_addr=(0xffffffc010a) [ 1.816742] Get Index(3-IOCFG_TR_BASE) phy_addr(0x11f00000) vir_addr=(0xffffffc) [ 1.826121] Get Index(4-IOCFG_TL_BASE) phy_addr(0x11f10000) vir_addr=(0xffffffc) [ 1.835504] Get Index(5-INFRACFG_AO_BASE) phy_addr(0x10003000) vir_addr=(0xffff) [ 1.845144] Get Index(6-CONN_INFRA_CFG_BASE) phy_addr(0x18001000) vir_addr=(0xf) [ 1.855043] Get Index(7-CONN_INFRA_SYSRAM_BASE) phy_addr(0x18050000) vir_addr=() [ 1.865203] Get Index(8-CONN_INFRA_CLKGEN_ON_TOP_BASE) phy_addr(0x18009000) vir) [ 1.875970] Get Index(9-CONN_HOST_CSR_TOP_BASE) phy_addr(0x18060000) vir_addr=() [ 1.886130] Get Index(10-CONN_INFRA_BUS_CR_BASE) phy_addr(0x1800e000) vir_addr=) [ 1.896381] Get Index(11-CONN_INFRA_RGU_BASE) phy_addr(0x18000000) vir_addr=(0x) [ 1.906370] Get Index(12-CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18005000) vir_add) [ 1.916790] Get Index(13-INST2_CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18085000) v) [ 1.927730] Get Index(14-CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18004000) vir_add) [ 1.938154] Get Index(15-INST2_CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18084000) v) [ 1.949096] Get Index(16-CONN_SEMAPHORE_BASE) phy_addr(0x18070000) vir_addr=(0x) [ 1.959170] Get Index(17-CONN_AFE_CTL_BASE) phy_addr(0x18003000) vir_addr=(0xff) [ 1.968987] Get Index(18-CONN_AFE_CTL_2ND_BASE) phy_addr(0x18083000) vir_addr=() [ 1.979149] Get Index(19-WF_TOP_SLPPROT_ON_BASE) phy_addr(0x184c0000) vir_addr=) [ 1.989483] Get Index(20-WF_TOP_CFG_BASE) phy_addr(0x184b0000) vir_addr=(0xffff) [ 1.999122] Get Index(21-WF_MCU_CONFIG_LS_BASE) phy_addr(0x184f0000) vir_addr=() [ 2.009282] Get Index(22-WF_MCU_BUS_CR_BASE) phy_addr(0x18400000) vir_addr=(0xf) [ 2.019182] Get Index(23-WF_MCUSYS_INFRA_BUS_FULL_U_DEBUG_CTRL_AO_BASE) phy_add) [ 2.031425] Get Index(24-WF_TOP_CFG_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xf) [ 2.041413] conninfra@(consys_plt_hw_init:162) adie_cfg_type = 1, one_adie_dbdc1 [ 2.049062] [emi_mng_init] gConEmiPhyBase = [0x47c80000] size = [0x100000] fw s] [ 2.059826] conninfra@(mtk_conninfra_drv_init:650) After platform_driver_registr [ 2.067678] ConnInfra Dev: init (0) [ 2.072616] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP versi) [ 2.082443] conninfra@(connsys_d_die_cfg:365) D-die efuse: 0x00000000 [ 2.089899] conninfra@(_connsys_a_die_cfg_7976:919) adie_idx[0], A-die CHIP ID 0 [ 2.100716] conninfra@(consys_spi_write_nolock:501) addr=0x0a00, val=0xffffffff [ 2.109018] conninfra@(consys_spi_write_nolock:501) addr=0x04ac, val=0x0000001c [ 2.117321] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 2.126630] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x00000000 [ 2.135939] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x43a60000 [ 2.149279] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001] [ 2.160790] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 2.170103] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a6003a [ 2.179413] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63a7003a [ 2.192752] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001] [ 2.204262] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 2.213571] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a7003a [ 2.222880] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63ac003a [ 2.236219] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001] [ 2.247730] conninfra@(consys_spi_write_nolock:501) addr=0x0038, val=0x4a563b00 [ 2.256032] conninfra@(consys_spi_write_nolock:501) addr=0x065c, val=0x1d59080f [ 2.264334] conninfra@(consys_spi_write_nolock:501) addr=0x0664, val=0x34c00fe0 [ 2.272640] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x88888005 [ 2.281900] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x00000005 [ 2.290136] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP versi) [ 2.299948] conninfra@(_consys_hw_conninfra_wakeup:470) conninfra_wakeup refcnt! [ 2.308811] conninfra@(_consys_hw_conninfra_sleep:490) conninfra_sleep refcnt=[! [ 2.317410] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] ] [ 2.331747] mediatek_soc_hnat 15100000.hnat: wan = eth1 [ 2.336999] mediatek_soc_hnat 15100000.hnat: lan = lan [ 2.342132] mediatek_soc_hnat 15100000.hnat: lan2 = eth2 [ 2.347434] mediatek_soc_hnat 15100000.hnat: ppd = eth0 [ 2.352651] mediatek_soc_hnat 15100000.hnat: gmac num = 2 [ 2.358040] mediatek_soc_hnat 15100000.hnat: ppe num = 1 [ 2.363787] mediatek_soc_hnat 15100000.hnat: PPE0 entry number = 8192 [ 2.380595] mediatek_soc_hnat 15100000.hnat: PPE0 hwnat start [ 2.386386] hnat roaming work enable [ 2.393037] warp_module_init(): module init and register callback for warp [ 2.399962] create warp_ctrl ok!!! [ 2.403397] wed_get_slot_map(): assign slot_id:0 for entry: 0! [ 2.409241] wed_get_slot_map(): assign slot_id:1 for entry: 1! [ 2.415608] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 2.430292] init: - preinit - [ 2.677830] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-e [ 2.686165] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flox Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 4.732843] mount_root: loading kmods from internal overlay [ 4.746042] kmodloader: loading kernel modules from etc/modules-boot.d/* [ 4.754230] kmodloader: done loading kernel modules from etc/modules-boot.d/* [ 4.952705] mount_root: jffs2 not ready yet, using temporary tmpfs overlay [ 4.961767] urandom-seed: Seed file not found (/etc/urandom.seed) /etc/preinit: line 1: blkid: not found [ 5.102300] procd: - early - [ 5.105247] procd: - watchdog - [ 5.165447] sh (824): drop_caches: 3 [ 5.401946] sh (834): drop_caches: 3 [ 5.609863] sh (844): drop_caches: 3 [ 5.622700] procd: - watchdog - [ 5.641777] procd: - ubus - [ 5.728901] random: ubusd: uninitialized urandom read (4 bytes read) [ 5.796071] random: ubusd: uninitialized urandom read (4 bytes read) [ 5.802736] random: ubusd: uninitialized urandom read (4 bytes read) [ 5.810175] procd: - init - [ 5.827173] sh (856): drop_caches: 3 [ 6.008018] sh (876): drop_caches: 3 [ 6.160632] sh (898): drop_caches: 3 [ 6.200997] crng init done [ 6.203702] random: 7 urandom warning(s) missed due to ratelimiting [ 6.357836] urngd: v1.0.2 started. [ 6.464219] sh (921): drop_caches: 3 [ 6.789331] sh (984): drop_caches: 3 [ 7.040485] kmodloader: loading kernel modules from /etc/modules.d/* [ 7.046360] sh (994): drop_caches: 3 [ 7.300384] sh (1016): drop_caches: 3 [ 7.432132] RPC: Registered named UNIX socket transport module. [ 7.438074] RPC: Registered udp transport module. [ 7.442794] RPC: Registered tcp transport module. [ 7.447509] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 7.548830] sh (1048): drop_caches: 3 [ 7.682452] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 7.786672] sh (1070): drop_caches: 3 [ 7.976017] Current mapfilter version v3.0.1.2 [ 8.037487] sh (1115): drop_caches: 3 [ 8.256226] sh (1136): drop_caches: 3 [ 8.477471] sh (1146): drop_caches: 3 [ 8.706668] sh (1156): drop_caches: 3 [ 8.923305] mt_wifi: module license 'Proprietary' taints kernel. [ 8.929324] Disabling lock debugging due to kernel taint [ 8.936627] sh (1166): drop_caches: 3 [ 8.971846] conninfra@(conninfra_pwr_on:120) [conninfra_pwr_on] drv=[3] [ 8.979425] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP versi) [ 8.997307] Adie Type: 0x7976 [ 8.997309] SKU Type: 3000 [ 9.001228] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] ] [ 9.059760] WiFi@C12L1,get_dbg_setting_by_profile() 4310: debug level setting=I! [ 9.069633] WiFi@C12L1,get_dbg_setting_by_profile() 4333: debug option setting=! [ 9.079715] mt_rbus 0000:00:00.0: runtime IRQ mapping not provided by arch [ 9.094899] mt7981_init()-→ [ 9.097811] Use the default iPAiLNA bin image! [ 9.102313] ←-mt7981_init() [ 9.105231] RtmpRaDevCtrlInit(): MCS_LUT not used becasue MacTb size(288) > 128! [ 9.112768] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX1 [ 9.120111] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX2 [ 9.127466] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX3 [ 9.134804] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX4 [ 9.142135] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX5 [ 9.149483] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX6 [ 9.156812] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX7 [ 9.164136] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX8 [ 9.171463] WiFi@C12L1,match_index_by_chipname() 566: not find chip name INDEX9 [ 9.178790] WiFi@C12L2,match_index_by_chipname() 571: Not find slot id, back to. [ 9.187087] msta_ifname not found [ 9.203004] sh (1176): drop_caches: 3 [ 9.209110] -→mtfwd_init(ver:2.0) [ 9.209150] ←- [ 9.213356] mtk_warp_proxy: module uses symbols from proprietary module mt_wifi. [ 9.245892] -→mtqos_init(), mtqos ver:1.0 [ 9.245937] ←- [ 9.731111] xt_time: kernel timezone is -0000 [ 9.739600] PPP generic driver version 2.4.2 [ 9.744852] PPP MPPE Compression module registered [ 9.750526] NET: Registered protocol family 24 [ 9.756922] kmodloader: done loading kernel modules from /etc/modules.d/* ⇐==================================== INIT FW START ==============================⇒ ⇐================================INIT MAC ADDRESS=================================⇒ [ 13.819387] mtk_soc_eth 15100000.ethernet eth0: TX vlan offload cannot be enabl. [ 13.829711] mtk_soc_eth 15100000.ethernet eth0: TX vlan offload cannot be enabl. [ 15.236445] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 15.256525] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-e [ 15.264882] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flox [ 15.269925] device eth0 entered promiscuous mode [ 15.286773] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 15.297739] 8021q: adding VLAN 0 to HW filter on device lan1 [ 15.310771] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 15.318022] br-lan: port 1(lan1) entered blocking state [ 15.323296] br-lan: port 1(lan1) entered disabled state [ 15.330651] device lan1 entered promiscuous mode [ 15.353539] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 15.367443] 8021q: adding VLAN 0 to HW filter on device lan2 [ 15.377539] br-lan: port 2(lan2) entered blocking state [ 15.382799] br-lan: port 2(lan2) entered disabled state [ 15.391841] device lan2 entered promiscuous mode [ 15.404391] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 15.414328] 8021q: adding VLAN 0 to HW filter on device lan3 [ 15.428207] mt7530 mdio-bus:1f lan3: Link is Up - 1Gbps/Full - flow control off [ 15.440100] br-lan: port 3(lan3) entered blocking state [ 15.445341] br-lan: port 3(lan3) entered disabled state [ 15.462692] device lan3 entered promiscuous mode [ 15.471429] br-lan: port 3(lan3) entered blocking state [ 15.476686] br-lan: port 3(lan3) entered forwarding state [ 15.482258] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 15.492753] mt7530 mdio-bus:1f lan4: configuring for phy/gmii link mode [ 15.507832] 8021q: adding VLAN 0 to HW filter on device lan4 [ 15.518607] br-lan: port 4(lan4) entered blocking state [ 15.523914] br-lan: port 4(lan4) entered disabled state [ 15.539934] device lan4 entered promiscuous mode [ 15.560018] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:00] driver [Media] [ 15.568684] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/gmii link me [ 17.755279] jffs2_scan_eraseblock(): End of filesystem marker found at 0x0 [ 17.771450] jffs2_build_filesystem(): unlocking the mtd device... [ 17.771510] done. [ 17.779628] jffs2_build_filesystem(): erasing all blocks after the end marker.. [ 18.878518] done. [ 18.887980] jffs2: notice: (3558) jffs2_build_xattr_subsystem: complete buildin. [ 19.184879] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 19.193223] msta_ifname not found [ 19.197159] client_get_axi_slot_id(): wrong BUS_TYPE [ 19.202137] warp_cap_support(): chip_id=7981 is in WHNAT support list [ 19.208583] warp_entry_acquire(): bus slot:0, hook to WARP, entry id=0, entry: 8 [ 19.217288] client_hif_specific_get(): hw→base_phy_addr 0x18000000!! [ 19.223734] client_chip_specific_get(): 0x7981 chip id 0x7981!! [ 19.229771] warp_entry_get_by_pdev(): return entry[0] [ 19.235205] warp_msg_register():warp,pid,3868,id,0,wed_idx,0 [ 19.240918] warp_dev0 15010000.wed: Using 32bit DMA for streaming map [ 19.247368] warp_dev0 15010000.wed: Using 32bit DMA for coherent map [ 19.253775] wed_init(0): res_start = 0x15010000, size = 1000, irq=7,base_addr=00 [ 19.263127] wed_ring_init(): wed tx ring init result = 0 [ 19.268681] wed_ring_init(): wed rx ring init result = 0 [ 19.276480] create wed ok!!! [ 19.279401] wdma_init(): wdma(0) base_addr=0xffffffc0110cd800, base_phy_addr=0x0 [ 19.288392] warp_woif_bus_init_hw(): bus:00000000a815a795, txring: 20, pa: 0x00c [ 19.299706] warp_woif_bus_init_hw(): bus:00000000a815a795, rxring: 50, pa: 0x00c [ 19.311057] get_region_info(): wed_idx = 0, base_addr = 0x00000000f8ea6104, siz0 [ 19.322312] get_region_info(): wed_idx = 0, base_addr = 0x000000006243a881, siz0 [ 19.333485] get_region_info(): wed_idx = 0, base_addr = 0x000000006fce5e9d, siz1 [ 19.344834] get_region_info(): wed_idx = 0, base_addr = 0x00000000751f3d8e, siz0 [ 19.355962] warp_fwdl_mcu_mode(): mcu mode, need fwdl [ 19.401861] ########## WO Firmware ########## [ 19.406257] Chip ID: 0x0000 [ 19.409061] ECO version:0 [ 19.411679] Version: DEV_000000 [ 19.414829] Build date: 20221208202138 [ 19.418581] Total region:3 [ 19.421290] ################################# [ 19.425649] Parsing tailer region 0 [ 19.429137] Target address: 0x151e0000 [ 19.432979] Download size: 20768 [ 19.436327] Parsing tailer region 1 [ 19.439809] Target address: 0x47d80000 [ 19.443647] Download size: 86816 [ 19.447064] Parsing tailer region 2 [ 19.450557] Target address: 0x47dc0000 [ 19.454394] Download size: 2319824 [ 19.460356] warp_fwdl_ready_check_mcu_mode(): waiting for wocpu [ 19.481478] warp_fwdl_ready_check_mcu_mode(): wocpu is ready [ 19.487173] warp_woctrl_init_state(), wo_state: WO_STATE_ENABLE [ 19.493102] wo_proc_init done 0000000047e1c21f [ 19.497650] wo_exep_proc_init done 0000000047e1c21f [ 19.502652] wo_exception_init(0): exp log= 0x00000000b85f6b32, phy_addr= 0x00008 [ 19.595101] 7981@C08L2,profile_wds_reg() 1329: WdsEnable is unknow(0;0;0;0) [ 19.602232] 7981@C08L2,profile_wds_reg() 1329: WdsEnable is unknow(0;0;0;0) [ 19.622961] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS0 PhyMode=78 [ 19.629590] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS1 PhyMode=78 [ 19.636213] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS2 PhyMode=78 [ 19.642833] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS3 PhyMode=78 [ 19.649451] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS4 PhyMode=177 [ 19.656165] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS5 PhyMode=177 [ 19.662875] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS6 PhyMode=177 [ 19.669587] 7981@C12L1,RTMPWirelessModeCfg() 611: Init: BSS7 PhyMode=177 [ 19.676637] 7981@C23L3,auto_ch_select_set_cfg() 3458: BandIdx0, AutoChannelAtBo3 [ 19.686219] 7981@C23L3,auto_ch_select_set_cfg() 3458: BandIdx1, AutoChannelAtBo3 [ 19.754706] 7981@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=0, Desired MFPC=1 [ 19.762109] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=1, Desired MFPC=1 [ 19.769517] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=2, Desired MFPC=1 [ 19.776932] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=3, Desired MFPC=1 [ 19.784340] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=4, Desired MFPC=1 [ 19.791745] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=5, Desired MFPC=1 [ 19.799151] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=6, Desired MFPC=1 [ 19.806556] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=7, Desired MFPC=1 [ 19.816095] WiFi@C12L1,RTMPSetProfileParameters() 8614: ra0, QoSMgmtCapa=0 [ 19.822980] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.830118] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.837260] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.844402] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.851549] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.858691] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.865832] WiFi@C12L1,RTMPSetProfileParameters() 8614: (null), QoSMgmtCapa=0 [ 19.880274] WiFi@C12L1,rtmp_read_ap_client_from_file() 1639: APCLI[0] ApCliMuMi0 [ 19.888798] WiFi@C12L1,rtmp_read_ap_client_from_file() 1639: APCLI[1] ApCliMuMi0 [ 19.897517] WiFi@C12L1,rtmp_read_ap_client_from_file() 1658: APCLI[0] ApCliMuMi0 [ 19.906056] WiFi@C12L1,rtmp_read_ap_client_from_file() 1658: APCLI[1] ApCliMuMi0 [ 19.916748] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command duD [ 19.927973] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension comm8 [ 19.936435] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command duD [ 19.947659] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension comm8 [ 20.037891] wdma_dma_ctrl(): WDMA_GLO_CFG=50404e70, txrx = 0 [ 20.047311] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e70, txrx = 0 [ 20.063484] warp_tx_ring_init_hw(): configure ring 0 setting [ 20.069165] warp_tx_ring_init_hw(): wed:00000000ee2f992e wifi:00000000f82835ee:0 [ 20.079437] warp_tx_ring_init_hw(): configure ring 1 setting [ 20.085116] warp_tx_ring_init_hw(): wed:00000000ee2f992e wifi:00000000f82835ee:0 [ 20.095499] set_rrocfg,0 [ 20.120959] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e74, txrx = 3 [ 20.126623] using E1 ROM patch [ 20.129690] using E1 RAM [ 20.132239] current sync CR = 0x1 [ 20.155617] Built date: 20220901174831a [ 20.159567] Platform: ALPS [ 20.162375] HW/SW version: 0x8a108a10 [ 20.166132] Patch version: 0xffffffff [ 20.174162] current sync CR = 0x1 [ 20.609804] overlayfs: upper fs does not support tmpfile. [ 20.616035] overlayfs: “xino” feature enabled using 32 upper inode bits. [ 20.700684] Chip ID: 0x14 [ 20.703394] Eco version: 0x00 [ 20.706463] Region number: 0x0b [ 20.709695] Format version: 0x02 [ 20.713010] Format flag: 0x01 [ 20.716062] Ram version: 000000 [ 20.719632] Built date: 20220901174855 [ 20.723472] Common crc: 0x62c52fee [ 20.726960] Release info: header tag = 0, total length = 64 [ 20.732630] tag 1, padding length = 1, tag length = 59 [ 20.737855] payload: t-neptune-main-mt7915-1953-MT7981_MP2111_IMP-2022090117470 [ 20.841546] Chip ID: 0x00 [ 20.844274] Eco version: 0x00 [ 20.847321] Region number: 0x03 [ 20.850563] Format version: 0x02 [ 20.853895] Format flag: 0x01 [ 20.856952] Ram version: DEV_000000 [ 20.860532] Built date: 20220901175135 [ 20.864376] Common crc: 0xdc1c7789 [ 20.867856] Release info: header tag = 0, total length = 0 [ 20.953091] current sync CR = 0x7 [ 20.956912] efuse_probe: efuse = deaddead [ 20.966026] WiFi@C02L1,is_cal_free_ic() 831: [a-die version:1] [ 23.246741] WiFi@C17L1,RTMPReadTxPwrPerRate() 450: (450): Don't Support this no! [ 23.254272] WiFi@C01L1,AntCfgInit() 3118: Not support for HIF_MT yet! [ 23.278362] ch_switch_monitor_state_machine_init:: enter [ 23.283687] ch_switch_monitor_cfg_reset:: enter [ 23.288219] ch_switch_monitor_cfg_reset:: enter [ 23.293064] WiFi@C17L1,tx_pwr_comp_init() 641: NotSupportYet! [ 23.298907] WiFi@C12L1,SCS_init() 880: INIT SCSEnable [0]= 1 [ 23.304612] WiFi@C12L1,SCS_init() 887: INIT SCSEnable [1]= 0 [ 23.310394] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 23.315950] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 23.321418] WiFi@C14L1,IPMacTable_init() 348: IPMacTable already inited! [ 23.348282] wdma_dma_ctrl(): WDMA_GLO_CFG=50804e75, txrx = 3 [ 23.354052] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 23.359739] WiFi@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 23.365224] WiFi@C00L1,set_ack_timeout_mode_byband() 13357: CTS/ACK Timeout Ran! [ 23.375142] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13445: DAT config band(0) c! [ 23.383838] WiFi@C00L1,set_ack_timeout_mode_byband() 13357: CTS/ACK Timeout Ran! [ 23.393746] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13456: DAT config band(0) o! [ 23.402528] WiFi@C00L1,set_ack_timeout_mode_byband() 13357: CTS/ACK Timeout Ran! [ 23.412435] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13467: DAT config band(0) o! [ 23.421301] WiFi@C00L1,set_ack_timeout_mode_byband() 13357: CTS/ACK Timeout Ran! [ 23.431209] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13445: DAT config band(1) c! [ 23.439905] WiFi@C00L1,set_ack_timeout_mode_byband() 13357: CTS/ACK Timeout Ran! [ 23.449812] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13456: DAT config band(1) o! [ 23.458592] WiFi@C00L1,set_ack_timeout_mode_byband() 13357: CTS/ACK Timeout Ran! [ 23.468498] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13467: DAT config band(1) o! [ 23.481891] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 23.490420] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 23.619668] :(op = 1) [ 23.626938] 7981@C00L1,FastPathCheckMIC() 1010: (ret = 0)(op:1) [ 23.632900] 7981@C00L2,red_tail_drop_init() 83: red_tail_drop_init: available t1 [ 23.642116] 7981@C00L1,MtCmdCr4RedSet() 914: MtCmdCr4RedSet: (ret = 0) [ 23.648682] 7981@C00L1,SendRedCmd() 1049: SendRedCmd:(ret = 1) [ 23.654750] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 23.662786] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 0 [ 23.668407] 7981@C18L3,BuildChannelList() 484: [ 23.672988] 7981@C00L3,BuildChannelList() 514: BandIdx = 0, PhyMode = 78, ChLis: [ 23.681195] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.687580] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.694046] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.700417] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.706886] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.713267] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.719739] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.726107] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.732570] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.738941] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.745414] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.751793] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.758259] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.764629] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.771100] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.777482] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.783943] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.790321] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.796786] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.803160] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.809625] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.815997] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.822471] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.828846] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.835319] 7981@C14L1,vht80_channel_group() 1571: invalid ch_band 0 [ 23.841702] 7981@C14L1,vht160_channel_group() 1640: invalid ch_band 0 [ 23.848161] 7981@C23L1,DfsBuildChannelList() 3663: [RDM]: wdev is not 5G. [ 23.854999] 7981@C23L3,RadarStateCheck() 244: Zero Wait State: 0 [ 23.861041] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(0), ht_bw(1)! [ 23.872537] phy_freq_adjust : no prim_ch value for adjust! [ 23.878059] 7981@C23L1,operate_loader_phy() 398: phy_freq_adjust failed!WiFi@C0] [ 23.891532] wdev_attr_update(): wdevId0 = 80:3f:5d:72:97:4d [ 23.897157] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[0]=0 [ 23.906255] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=0 [ 23.912537] 7981@C23L1,HcGetBandByChannel() 1230: No hdev parking on channel:0,! [ 23.925897] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=0 RadioOn [ 23.933093] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 23.940172] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 23.946104] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 23.951780] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 23.964194] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 23.973361] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=1, ctrl_ch2=0, cent_) [ 24.011675] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=1, ctrl_ch2=0, cent_ch) [ 24.364561] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 24.373812] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=2, ctrl_ch2=0, cent_) [ 24.412208] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=2, ctrl_ch2=0, cent_ch) [ 24.764339] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 24.773482] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=3, ctrl_ch2=0, cent_) [ 24.811777] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=3, ctrl_ch2=0, cent_ch) [ 25.164327] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 25.173484] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=4, ctrl_ch2=0, cent_) [ 25.211839] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=4, ctrl_ch2=0, cent_ch) [ 25.564325] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 25.573496] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=5, ctrl_ch2=0, cent_) [ 25.611829] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=5, ctrl_ch2=0, cent_ch) [ 25.964313] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 25.973542] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=6, ctrl_ch2=0, cent_) [ 26.011870] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=6, ctrl_ch2=0, cent_ch) [ 26.364376] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 26.373619] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=7, ctrl_ch2=0, cent_) [ 26.412037] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=7, ctrl_ch2=0, cent_ch) [ 26.764235] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 26.773378] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=8, ctrl_ch2=0, cent_) [ 26.811627] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=8, ctrl_ch2=0, cent_ch) [ 27.164225] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 27.173371] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=9, ctrl_ch2=0, cent_) [ 27.211592] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=9, ctrl_ch2=0, cent_ch) [ 27.568236] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 27.577379] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=10, ctrl_ch2=0, cent) [ 27.615771] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=10, ctrl_ch2=0, cent_c) [ 27.780772] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 27.786697] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 27.968237] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 27.977384] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=11, ctrl_ch2=0, cent) [ 28.015805] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=11, ctrl_ch2=0, cent_c) [ 28.368382] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 28.380650] 7981@C23L3,SelectClearChannelBusyTime() 1880:

[ 28.392040] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 1 : Busy TiE [ 28.403437] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 2 : Busy TiE [ 28.414828] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 3 : Busy TiE [ 28.426224] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 4 : Busy TiE [ 28.437614] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 5 : Busy TiE [ 28.449320] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 6 : Busy TiE [ 28.460712] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 7 : Busy TiE [ 28.472107] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 8 : Busy TiE [ 28.483494] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 9 : Busy TiE [ 28.494889] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 10 : Busy TiE [ 28.506279] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 11 : Busy TiE [ 28.517688] 7981@C23L3,SelectClearChannelBusyTime() 1889:

[ 28.529082] 7981@C23L3,SelectClearChannelBusyTime() 2125: Rule 3 Channel Busy t5 [ 28.539518] 7981@C23L3,SelectClearChannelBusyTime() 2127: Rule 3 Channel Busy t3 [ 28.549774] 7981@C23L3,SelectClearChannelBusyTime() 2132: Rule 3 Channel Busy t0 [ 28.558736] 7981@C23L3,SelectClearChannelBusyTime() 2166: [SelectClearChannelBuD [ 28.567704] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 28.579200] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 28.590680] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 28.601625] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 28.610777] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=5, ctrl_ch2=0, cent_) [ 28.756419] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=5, ctrl_ch2=0, cent_ch) [ 28.770017] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 28.780995] 7981@C23L1,DfsBuildChannelList() 3663: [RDM]: wdev is not 5G. [ 28.787801] 7981@C23L3,zero_wait_dfs_switch_ch() 925: outband ch 0, ch_stat 0 [ 28.795143] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 28.805709] 7981@C15L2,APPMFInit() 121: [PMF] Security is not WPA2/WPA2PSK AES [ 28.812945] 7981@C15L2,APPMFInit() 133: [PMF] apidx=0, MFPC=0, MFPR=0, SHA256=0 [ 28.820299] 7981@C18L3,BuildChannelList() 484: [ 28.825077] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 28.832777] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 28.838265] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 28.847419] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=1, ctrl_ch2=0, cent_) [ 28.885682] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=1, ctrl_ch2=0, cent_ch) [ 29.031335] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 29.040203] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 29.052690] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 29.343991] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 29.349461] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 29.358603] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=2, ctrl_ch2=0, cent_) [ 29.396842] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=2, ctrl_ch2=0, cent_ch) [ 29.550625] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 29.888050] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 29.893516] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 29.902662] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=3, ctrl_ch2=0, cent_) [ 29.940919] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=3, ctrl_ch2=0, cent_ch) [ 30.086198] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 30.108297] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 30.400039] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 30.405504] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 30.414645] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=4, ctrl_ch2=0, cent_) [ 30.452871] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=4, ctrl_ch2=0, cent_ch) [ 30.598121] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 30.912049] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 30.917513] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 30.926658] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=5, ctrl_ch2=0, cent_) [ 30.931994] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 30.945406] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 30.964914] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=5, ctrl_ch2=0, cent_ch) [ 31.110802] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 31.187509] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 31.193436] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 31.424040] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 31.429504] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 31.438649] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=6, ctrl_ch2=0, cent_) [ 31.476923] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=6, ctrl_ch2=0, cent_ch) [ 31.621560] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 31.936037] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 31.941504] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 31.950646] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=7, ctrl_ch2=0, cent_) [ 31.988879] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=7, ctrl_ch2=0, cent_ch) [ 32.133902] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 32.448039] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 32.453503] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 32.462643] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=8, ctrl_ch2=0, cent_) [ 32.500852] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=8, ctrl_ch2=0, cent_ch) [ 32.651297] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 32.992032] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 32.997498] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 33.006638] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=9, ctrl_ch2=0, cent_) [ 33.044888] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=9, ctrl_ch2=0, cent_ch) [ 33.190750] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 33.504028] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 33.509491] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 33.518636] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=10, ctrl_ch2=0, cent) [ 33.557082] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=10, ctrl_ch2=0, cent_c) [ 33.702364] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 34.016035] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 34.021501] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 34.030642] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=11, ctrl_ch2=0, cent) [ 34.069073] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=11, ctrl_ch2=0, cent_c) [ 34.214405] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 34.296207] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 34.308700] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 34.528045] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 34.533515] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 34.542660] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=12, ctrl_ch2=0, cent) [ 34.581109] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=12, ctrl_ch2=0, cent_c) [ 34.726805] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 35.040031] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 35.045494] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 35.054641] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=13, ctrl_ch2=0, cent) [ 35.093056] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=13, ctrl_ch2=0, cent_c) [ 35.237894] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 35.364280] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(0) bss not ready (state! [ 35.551924] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 35.563401] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 35.574949] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 35.585906] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 35.595050] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=5, ctrl_ch2=0, cent_) [ 35.739959] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=5, ctrl_ch2=0, cent_ch) [ 35.753565] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 35.764775] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 35.773413] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 0 [ 35.779215] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 35.779215] LinkToOmacIdx = 0, LinkToWdevType = 1 [ 35.793599] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=0 [ 35.806485] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 0) [ 35.814331] 7981@C08L3,UpdateBeaconHandler() 1924: Band0 BcnInitedRnd = 114 [ 35.821610] 7981@C00L1,TxCCKStreamCtrl() 20689: set wrong parameters [ 35.838088] PrintSrCmd: [ 35.838088] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 35.838088] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 35.852127] PrintSrCmd: [ 35.852127] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 35.852127] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 35.866127] PrintSrCmd: [ 35.866127] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 35.866127] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 35.880171] PrintSrCmd: [ 35.880171] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 35.880171] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 35.894251] PrintSrCmd: [ 35.894251] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 35.894251] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 35.908363] PrintSrCmd: [ 35.908363] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 35.908363] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 35.922531] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 35.933554] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 35.941328] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 35.947019] [mtf_txpower_all_rate_info] band_idx:0 pwr:44 ChBand:2G ePAGain:0 [ 35.954178] mtk_ppe_dev_register_hook : ineterface ra0 register (1) [ 35.974516] br-lan: port 5(ra0) entered blocking state [ 35.979714] br-lan: port 5(ra0) entered disabled state [ 35.985048] device ra0 entered promiscuous mode [ 35.989742] br-lan: port 5(ra0) entered blocking state [ 35.994928] br-lan: port 5(ra0) entered forwarding state [ 36.000736] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.021244] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.043184] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.062018] br-lan: port 6(apcli0) entered blocking state [ 36.067451] br-lan: port 6(apcli0) entered disabled state [ 36.073095] device apcli0 entered promiscuous mode [ 36.078222] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.093036] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.100946] br-lan: port 7(apclix0) entered blocking state [ 36.106481] br-lan: port 7(apclix0) entered disabled state [ 36.112174] device apclix0 entered promiscuous mode [ 36.121997] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.138895] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ ra1 [ 36.144607] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 36.152770] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 36.160789] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 1 [ 36.166404] 7981@C18L3,BuildChannelList() 484: [ 36.171006] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 36.182503] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 36.194012] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 36.205124] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 36.213151] wdev_attr_update(): wdevId1 = 82:3f:5d:12:97:4d [ 36.218780] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[1]=7 [ 36.227945] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=1 [ 36.235269] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=0 RadioOn [ 36.242197] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 36.248866] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 36.254433] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 36.259843] 7981@C00L1,ApAutoChannelAtBootUp() 497: not A band [ 36.265680] 7981@C08L1,ap_run_at_boot() 623: ACS is disable !! [ 36.272500] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 36.283066] 7981@C15L2,APPMFInit() 121: [PMF] Security is not WPA2/WPA2PSK AES [ 36.290299] 7981@C15L2,APPMFInit() 133: [PMF] apidx=1, MFPC=0, MFPR=0, SHA256=0 [ 36.297635] 7981@C18L3,BuildChannelList() 484: [ 36.302394] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 36.309806] 7981@C08L2,APOverlappingBSSScan() 5161: leverage result of wdev(0@B) [ 36.320242] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 36.331716] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 36.343200] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 36.354303] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 36.362941] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 1 [ 36.368724] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 36.368724] LinkToOmacIdx = 11, LinkToWdevType = 1 [ 36.383218] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=1 [ 36.396743] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 1) [ 36.404736] 7981@C00L1,TxCCKStreamCtrl() 20689: set wrong parameters [ 36.421186] PrintSrCmd: [ 36.421186] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.421186] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.435192] PrintSrCmd: [ 36.435192] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.435192] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.449179] PrintSrCmd: [ 36.449179] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.449179] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.463218] PrintSrCmd: [ 36.463218] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.463218] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.477304] PrintSrCmd: [ 36.477304] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.477304] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.491453] PrintSrCmd: [ 36.491453] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.491453] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.505625] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 36.516635] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 36.524394] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 36.530075] [mtf_txpower_all_rate_info] band_idx:0 pwr:44 ChBand:2G ePAGain:0 [ 36.537230] mtk_ppe_dev_register_hook : ineterface ra1 register (2) [ 36.543934] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 36.551810] br-lan: port 8(ra1) entered blocking state [ 36.557087] br-lan: port 8(ra1) entered disabled state [ 36.562467] device ra1 entered promiscuous mode [ 36.567145] br-lan: port 8(ra1) entered blocking state [ 36.572300] br-lan: port 8(ra1) entered forwarding state [ 36.579388] nf_unregister_hooks() [ 36.616037] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ ra2 [ 36.621733] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 36.629846] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 36.637920] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 2 [ 36.643526] 7981@C18L3,BuildChannelList() 484: [ 36.648117] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 36.659624] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 36.671122] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 36.682232] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 36.690270] wdev_attr_update(): wdevId2 = 82:3f:5d:22:97:4d [ 36.695948] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[2]=8 [ 36.705127] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=2 [ 36.716273] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=0 RadioOn [ 36.725068] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 36.731829] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 36.738102] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 36.743576] 7981@C00L1,ApAutoChannelAtBootUp() 497: not A band [ 36.749426] 7981@C08L1,ap_run_at_boot() 623: ACS is disable !! [ 36.756261] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 36.766851] 7981@C15L2,APPMFInit() 121: [PMF] Security is not WPA2/WPA2PSK AES [ 36.774139] 7981@C15L2,APPMFInit() 133: [PMF] apidx=2, MFPC=0, MFPR=0, SHA256=0 [ 36.781508] 7981@C18L3,BuildChannelList() 484: [ 36.786322] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 36.793752] 7981@C08L2,APOverlappingBSSScan() 5161: leverage result of wdev(0@B) [ 36.804199] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 36.815699] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 36.827206] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 36.838353] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 36.847044] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 2 [ 36.852892] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 36.852892] LinkToOmacIdx = 12, LinkToWdevType = 1 [ 36.867420] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=2 [ 36.881345] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 1) [ 36.894030] 7981@C00L1,TxCCKStreamCtrl() 20689: set wrong parameters [ 36.911267] PrintSrCmd: [ 36.911267] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.911267] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.925313] PrintSrCmd: [ 36.925313] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.925313] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.939421] PrintSrCmd: [ 36.939421] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.939421] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.953507] PrintSrCmd: [ 36.953507] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.953507] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.967628] PrintSrCmd: [ 36.967628] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.967628] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.981789] PrintSrCmd: [ 36.981789] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.981789] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.995947] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 37.006935] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 37.014701] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 37.014814] [mtf_txpower_all_rate_info] band_idx:0 pwr:44 ChBand:2G ePAGain:0 [ 37.020368] mtk_ppe_dev_register_hook : ineterface ra2 register (3) [ 37.047227] br-lan: port 9(ra2) entered blocking state [ 37.052421] br-lan: port 9(ra2) entered disabled state [ 37.057866] device ra2 entered promiscuous mode [ 37.059924] BcnCheck start after 3900 ms (ra0) [ 37.062521] br-lan: port 9(ra2) entered blocking state [ 37.071987] br-lan: port 9(ra2) entered forwarding state ⇐============WCLOUD : setup HW Seed ==============⇒ [ 37.105379] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ ra3 [ 37.111112] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 37.119235] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 37.127258] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 3 [ 37.132871] 7981@C18L3,BuildChannelList() 484: [ 37.137472] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 37.148966] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 37.160462] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 37.171603] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 37.179623] wdev_attr_update(): wdevId3 = 82:3f:5d:32:97:4d [ 37.185304] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[3]=9 [ 37.198240] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=3 MeshLink login: [ 37.206899] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=0 Radn [ 37.214708] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 37.222588] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 37.228532] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 37.234026] 7981@C00L1,ApAutoChannelAtBootUp() 497: not A band [ 37.239889] 7981@C08L1,ap_run_at_boot() 623: ACS is disable !! [ 37.246748] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 37.257380] 7981@C15L2,APPMFInit() 133: [PMF] apidx=3, MFPC=1, MFPR=0, SHA256=0 [ 37.264757] 7981@C18L3,BuildChannelList() 484: [ 37.269577] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 37.277001] 7981@C08L2,APOverlappingBSSScan() 5161: leverage result of wdev(0@B) [ 37.287447] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 37.298936] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 37.310422] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 37.321566] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 37.330196] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 3 [ 37.406271] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 37.406271] LinkToOmacIdx = 13, LinkToWdevType = 1 [ 37.420727] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=3 [ 37.434709] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 1) [ 37.442871] 7981@C00L1,TxCCKStreamCtrl() 20689: set wrong parameters [ 37.459361] PrintSrCmd: [ 37.459361] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 37.459361] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.473411] PrintSrCmd: [ 37.473411] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 37.473411] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.487467] PrintSrCmd: [ 37.487467] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 37.487467] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.501501] PrintSrCmd: [ 37.501501] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 37.501501] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.515615] PrintSrCmd: [ 37.515615] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 37.515615] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.529757] PrintSrCmd: [ 37.529757] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 37.529757] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.543917] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 37.554925] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 37.562698] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 37.568378] [mtf_txpower_all_rate_info] band_idx:0 pwr:44 ChBand:2G ePAGain:0 [ 37.575541] mtk_ppe_dev_register_hook : ineterface ra3 register (4) [ 37.590571] br-lan: port 10(ra3) entered blocking state [ 37.595886] br-lan: port 10(ra3) entered disabled state [ 37.601312] device ra3 entered promiscuous mode [ 37.605918] br-lan: port 10(ra3) entered blocking state [ 37.611141] br-lan: port 10(ra3) entered forwarding state [ 37.680148] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ rax0 [ 37.685901] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 37.694069] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 37.702081] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 4 [ 37.707683] 7981@C18L3,BuildChannelList() 484: [ 37.712253] 7981@C00L3,BuildChannelList() 514: BandIdx = 1, PhyMode = 177, ChLi: [ 37.720726] 7981@C23L3,DfsBuildChannelList() 3708: Done [ 37.725970] 7981@C23L3,RadarStateCheck() 244: Zero Wait State: 0 [ 37.732034] 7981@C23L3,RadarStateCheck() 290: RD_NORMAL_MODE [ 37.738840] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(0), ht_bw(1)! [ 37.750395] phy_freq_adjust : no prim_ch value for adjust! [ 37.755880] 7981@C23L1,operate_loader_phy() 398: phy_freq_adjust failed!WiFi@C0] [ 37.769302] wdev_attr_update(): wdevId4 = 82:3f:5d:42:97:4d [ 37.774930] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[4]=0 [ 37.783995] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=4 [ 37.790896] 7981@C23L1,HcGetBandByChannel() 1230: No hdev parking on channel:0,! [ 37.801213] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=0 RadioOn [ 37.808103] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 37.814743] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 37.820266] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 37.825698] 7981@C23L3,AutoChSelBuildChannelListFor56G() 2724: ChListNum56G = 25 [ 37.833122] 7981@C23L3,AutoChSelBuildChannelListFor56G() 2917: ACSChListNum = 4 [ 37.840627] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(4) bss not ready (state! [ 37.852981] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 37.862137] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=36, ctrl_ch2=0, cent) [ 37.922902] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=36, ctrl_ch2=0, cent_c) [ 38.564235] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 38.573381] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=40, ctrl_ch2=0, cent) [ 38.634289] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=40, ctrl_ch2=0, cent_c) [ 39.088251] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 39.097397] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=44, ctrl_ch2=0, cent) [ 39.106070] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 39.116276] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 39.158140] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=44, ctrl_ch2=0, cent_c) [ 39.612234] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 39.621379] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=48, ctrl_ch2=0, cent) [ 39.667909] BcnCheck start after 1400 ms (ra0) [ 39.672721] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(4) bss not ready (state! [ 39.682143] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=48, ctrl_ch2=0, cent_c) [ 40.140405] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(4) bss not ready (state! [ 40.152698] 7981@C23L3,SelectClearChannelBusyTime() 1880:

[ 40.164156] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 36 : Busy TiE [ 40.175599] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 40 : Busy TiE [ 40.186987] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 44 : Busy TiE [ 40.198374] 7981@C23L3,SelectClearChannelBusyTime() 1886: Channel 48 : Busy TiE [ 40.209803] 7981@C23L3,SelectClearChannelBusyTime() 1889:

[ 40.221202] 7981@C23L3,SelectClearChannelBusyTime() 2125: Rule 3 Channel Busy t0 [ 40.231721] 7981@C23L3,SelectClearChannelBusyTime() 2127: Rule 3 Channel Busy t5 [ 40.242066] 7981@C23L3,SelectClearChannelBusyTime() 2132: Rule 3 Channel Busy t0 [ 40.251021] 7981@C23L3,SelectClearChannelBusyTime() 2166: [SelectClearChannelBuD [ 40.260046] 7981@C23L3,RadarStateCheck() 244: Zero Wait State: 0 [ 40.266057] 7981@C23L3,RadarStateCheck() 290: RD_NORMAL_MODE [ 40.272900] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(40), ht_bw(1! [ 40.284552] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(2), ! [ 40.296217] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 40.307360] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0l [ 40.316505] 7981@C03L3,MtCmdChannelSwitch() 2538: ctrl_chl=40, ctrl_ch2=0, cent) [ 40.564028] 7981@C03L3,MtCmdSetTxRxPath() 2799: ctrl_chl=40, ctrl_ch2=0, cent_c) [ 40.582780] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 40.593836] 7981@C23L3,DfsBuildChannelList() 3708: Done [ 40.599079] 7981@C23L3,zero_wait_dfs_switch_ch() 925: outband ch 0, ch_stat 0 [ 40.606218] 7981@C23L3,zero_wait_dfs_switch_ch() 932: bDedicatedZeroWaitDefault0 [ 40.614164] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 40.624770] 7981@C15L2,APPMFInit() 121: [PMF] Security is not WPA2/WPA2PSK AES [ 40.632004] 7981@C15L2,APPMFInit() 133: [PMF] apidx=4, MFPC=0, MFPR=0, SHA256=0 [ 40.639346] 7981@C18L3,BuildChannelList() 484: [ 40.644120] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 40.651766] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 40.660397] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 4 [ 40.666182] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 40.666182] LinkToOmacIdx = 0, LinkToWdevType = 1 [ 40.680630] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=4 [ 40.693450] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 0) [ 40.701367] 7981@C08L3,UpdateBeaconHandler() 1924: Band1 BcnInitedRnd = 159 [ 40.721458] PrintSrCmd: [ 40.721458] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 40.721458] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 40.735464] PrintSrCmd: [ 40.735464] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 40.735464] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 40.749854] PrintSrCmd: [ 40.749854] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 40.749854] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 40.763879] PrintSrCmd: [ 40.763879] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 40.763879] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 40.777961] PrintSrCmd: [ 40.777961] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 40.777961] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 40.792052] PrintSrCmd: [ 40.792052] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 40.792052] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 40.806150] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 40.817129] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 40.824890] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 40.825002] [mtf_txpower_all_rate_info] band_idx:1 pwr:45 ChBand:5G ePAGain:0 [ 40.830566] mtk_ppe_dev_register_hook : ineterface rax0 register (5) [ 40.857130] br-lan: port 11(rax0) entered blocking state [ 40.862471] br-lan: port 11(rax0) entered disabled state [ 40.867993] device rax0 entered promiscuous mode [ 40.872745] br-lan: port 11(rax0) entered blocking state [ 40.878069] br-lan: port 11(rax0) entered forwarding state [ 40.933662] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ rax1 [ 40.939586] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 40.947688] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 40.955698] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 5 [ 40.961276] 7981@C18L3,BuildChannelList() 484: [ 40.965849] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(40), ht_bw(1! [ 40.977508] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(2), ! [ 40.989168] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 41.000434] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 41.008490] wdev_attr_update(): wdevId5 = 82:3f:5d:52:97:4d [ 41.014100] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[5]=7 [ 41.023314] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=5 [ 41.030405] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=1 RadioOn [ 41.037435] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 41.044126] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 41.049655] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 41.055067] 7981@C00L1,ApAutoChannelAtBootUp() 491: zero-wait DFS is not enabled [ 41.062468] 7981@C08L1,ap_run_at_boot() 623: ACS is disable !! [ 41.069280] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 41.079866] 7981@C15L2,APPMFInit() 121: [PMF] Security is not WPA2/WPA2PSK AES [ 41.087093] 7981@C15L2,APPMFInit() 133: [PMF] apidx=5, MFPC=0, MFPR=0, SHA256=0 [ 41.094428] 7981@C18L3,BuildChannelList() 484: [ 41.099191] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 41.106882] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 41.115729] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 5 [ 41.115754] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 41.121528] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 41.121528] LinkToOmacIdx = 11, LinkToWdevType = 1 [ 41.127240] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 41.141745] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=5 [ 41.164232] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 1) [ 41.185159] PrintSrCmd: [ 41.185159] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.185159] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 41.199157] PrintSrCmd: [ 41.199157] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.199157] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.213156] PrintSrCmd: [ 41.213156] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.213156] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 41.227157] PrintSrCmd: [ 41.227157] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.227157] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.241239] PrintSrCmd: [ 41.241239] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.241239] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.255324] PrintSrCmd: [ 41.255324] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.255324] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.269428] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 41.280419] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 41.288172] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 41.288288] [mtf_txpower_all_rate_info] band_idx:1 pwr:45 ChBand:5G ePAGain:0 [ 41.293839] mtk_ppe_dev_register_hook : ineterface rax1 register (6) [ 41.308065] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 41.316838] br-lan: port 12(rax1) entered blocking state [ 41.322173] br-lan: port 12(rax1) entered disabled state [ 41.327693] device rax1 entered promiscuous mode [ 41.332443] br-lan: port 12(rax1) entered blocking state [ 41.337768] br-lan: port 12(rax1) entered forwarding state [ 41.343543] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] ret! [ 41.382128] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ rax2 [ 41.387906] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 41.396010] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 41.404023] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 6 [ 41.409592] 7981@C18L3,BuildChannelList() 484: [ 41.414188] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(40), ht_bw(1! [ 41.425845] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(2), ! [ 41.437504] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 41.448765] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 41.456831] wdev_attr_update(): wdevId6 = 82:3f:5d:62:97:4d [ 41.462439] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[6]=8 [ 41.471661] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=6 [ 41.478576] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=1 RadioOn [ 41.485474] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 41.492151] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 41.497677] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 41.503099] 7981@C00L1,ApAutoChannelAtBootUp() 491: zero-wait DFS is not enabled [ 41.510506] 7981@C08L1,ap_run_at_boot() 623: ACS is disable !! [ 41.517362] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 41.527955] 7981@C15L2,APPMFInit() 121: [PMF] Security is not WPA2/WPA2PSK AES [ 41.535176] 7981@C15L2,APPMFInit() 133: [PMF] apidx=6, MFPC=0, MFPR=0, SHA256=0 [ 41.542516] 7981@C18L3,BuildChannelList() 484: [ 41.547280] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 41.554962] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 41.563593] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 6 [ 41.569376] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 41.569376] LinkToOmacIdx = 12, LinkToWdevType = 1 [ 41.583924] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=6 [ 41.597497] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 1) [ 41.618430] PrintSrCmd: [ 41.618430] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.618430] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 41.632434] PrintSrCmd: [ 41.632434] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.632434] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.646434] PrintSrCmd: [ 41.646434] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.646434] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 41.660443] PrintSrCmd: [ 41.660443] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.660443] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.674536] PrintSrCmd: [ 41.674536] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.674536] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.688653] PrintSrCmd: [ 41.688653] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 41.688653] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 41.702771] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 41.713756] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 41.721508] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 41.721621] [mtf_txpower_all_rate_info] band_idx:1 pwr:45 ChBand:5G ePAGain:0 [ 41.727177] mtk_ppe_dev_register_hook : ineterface rax2 register (7) [ 41.746153] br-lan: port 13(rax2) entered blocking state [ 41.751481] br-lan: port 13(rax2) entered disabled state [ 41.757092] device rax2 entered promiscuous mode [ 41.761835] br-lan: port 13(rax2) entered blocking state [ 41.767167] br-lan: port 13(rax2) entered forwarding state [ 41.796956] 7981@C08L2,mbss_virtual_if_open() 134: ==⇒ rax3 [ 41.802782] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 41.811341] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 41.819380] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 7 [ 41.824941] 7981@C18L3,BuildChannelList() 484: [ 41.829517] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(40), ht_bw(1! [ 41.841175] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(2), ! [ 41.852870] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 41.864172] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 41.872254] wdev_attr_update(): wdevId7 = 82:3f:5d:72:97:4d [ 41.877868] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[7]=9 [ 41.887089] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=7 [ 41.894213] 7981@C02L2,AsicRadioOnOffCtrl() 2340: DbdcIdx=1 RadioOn [ 41.901126] 7981@C00L2,ApAutoChannelAtBootUp() 333: ----------------→ [ 41.907818] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 41.913357] 7981@C03L1,MtCmdSetMacTxRx() 10246: (ret = 0) [ 41.918792] 7981@C00L1,ApAutoChannelAtBootUp() 491: zero-wait DFS is not enabled [ 41.926193] 7981@C08L1,ap_run_at_boot() 623: ACS is disable !! [ 41.932999] 7981@C08L2,APStartUpForMbss() 983: ==⇒(caller:ap_inf_open+0x144/0x0 [ 41.943581] 7981@C15L2,APPMFInit() 133: [PMF] apidx=7, MFPC=1, MFPR=0, SHA256=0 [ 41.950935] 7981@C18L3,BuildChannelList() 484: [ 41.955707] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 41.963373] WiFi@C08L2,ap_link_up() 7157: (caller:wdev_do_linkup+0x20/0x38 [mt_) [ 41.971998] 7981@C01L3,wifi_sys_linkup() 1231: wdev idx = 7 [ 42.048111] 7981@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wt1 [ 42.048111] LinkToOmacIdx = 13, LinkToWdevType = 1 [ 42.062563] 7981@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=7 [ 42.076138] 7981@C08L3,UpdateBeaconHandler() 1911: BCN_UPDATE_INIT, OmacIdx = 1) [ 42.097169] PrintSrCmd: [ 42.097169] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 42.097169] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 42.111187] PrintSrCmd: [ 42.111187] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 42.111187] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 42.125177] PrintSrCmd: [ 42.125177] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 42.125177] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 42.139211] PrintSrCmd: [ 42.139211] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 42.139211] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 42.153340] PrintSrCmd: [ 42.153340] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 42.153340] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 42.167439] PrintSrCmd: [ 42.167439] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 42.167439] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 42.181564] 7981@C12L1,EDCCAInit() 21225: EDCCA compensation: uni_compensation=0 [ 42.192545] 7981@C03L3,MtCmdTxPwrShowInfo() 13746: ucTxPowerInfoCatg: 2, BandId [ 42.200305] 7981@C03L3,MtCmdTxPwrShowInfo() 13775: (ret = 0) [ 42.205986] [mtf_txpower_all_rate_info] band_idx:1 pwr:45 ChBand:5G ePAGain:0 [ 42.213142] mtk_ppe_dev_register_hook : ineterface rax3 register (8) [ 42.225687] br-lan: port 14(rax3) entered blocking state [ 42.231031] br-lan: port 14(rax3) entered disabled state [ 42.236546] device rax3 entered promiscuous mode [ 42.241286] br-lan: port 14(rax3) entered blocking state [ 42.246610] br-lan: port 14(rax3) entered forwarding state [ 42.252428] Set_Bh_Bss_Proc rax3 bandIdx = 1 ,DevOwnRole 0x60 [ 42.260490] Set_Fh_Bss_Proc rax3 wdev→MAPCfg.DevOwnRole 0x40 [ 42.269331] 7981@C08L2,mbss_virtual_if_close() 171: ==⇒ ra3 [ 42.275160] 7981@C01L2,RTMP_COM_IoctlHandle() 1499: → CMD_RTPRIV_IOCTL_VIRTUAN [ 42.283599] WiFi@C08L2,ap_link_down() 7175: (caller:wdev_do_linkdown+0x20/0x38 ) [ 42.292850] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(3) bss not ready (state! [ 42.304262] 7981@C01L3,wifi_sys_linkdown() 1363: wdev idx = 3 [ 42.310336] 7981@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=3 [ 42.320279] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 3 [ 42.326055] 7981@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=3 [ 42.332203] 7981@C01L2,RTMP_COM_IoctlHandle() 1522: → CMD_RTPRIV_IOCTL_VIRTUALT [ 42.340494] BcnCheck start after 3400 ms (ra0) [ 42.345008] extif_put_dev(ra3) [ 42.348067] mtk_ppe_dev_unregister_hook : ineterface ra3 set null (4) [ 42.354663] br-lan: port 10(ra3) entered disabled state [ 42.362359] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 42.370483] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 42.378509] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 8 [ 42.384084] 7981@C18L3,BuildChannelList() 484: [ 42.388642] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(5), ht_bw(1)! [ 42.400114] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(1), ! [ 42.411606] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 42.422678] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 42.430697] wdev_attr_update(): wdevId8 = 86:3f:5d:72:97:4d [ 42.436299] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=8 [ 42.442432] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 42.449880] mtk_ppe_dev_register_hook : ineterface apcli0 register (4) [ 42.456597] br-lan: port 6(apcli0) entered blocking state [ 42.462013] br-lan: port 6(apcli0) entered forwarding state [ 42.468036] br-lan: port 6(apcli0) entered disabled state [ 42.474449] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: → CMD_RTPRIV_IOCTL_VIRTUALT [ 42.482586] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: → CMD_RTPRIV_IOCTL_VIRTUAP [ 42.490627] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 9 [ 42.496246] 7981@C18L3,BuildChannelList() 484: [ 42.500817] 7981@C23L3,operate_loader_phy() 394: oper_cfg: prim_ch(40), ht_bw(1! [ 42.512535] 7981@C23L3,operate_loader_phy() 408: oper_dev after adjust: bw(2), ! [ 42.524221] 7981@C23L3,operate_loader_phy() 428: oper_radio after decision: bw(! [ 42.535521] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [] [ 42.543548] wdev_attr_update(): wdevId9 = 8a:3f:5d:72:97:4d [ 42.549148] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=9 [ 42.556174] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 42.563636] mtk_ppe_dev_register_hook : ineterface apclix0 register (9) [ 42.570434] br-lan: port 7(apclix0) entered blocking state [ 42.575942] br-lan: port 7(apclix0) entered forwarding state [ 42.583735] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 0, duty: 100 [ 42.592745] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 1, duty: 20 [ 42.601856] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 2, duty: 15 [ 42.610570] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 3, duty: 10 [ 42.619262] SetThermalProtectEnable(): band_idx: 1, protection_type: 1, trigger1 [ 42.627349] SetThermalProtectEnable(): trigger_temp: 115, restore_temp: 106, re0 [ 42.640901] 7981@C08L2,mbss_virtual_if_close() 171: ==⇒ ra1 [ 42.646744] 7981@C01L2,RTMP_COM_IoctlHandle() 1499: → CMD_RTPRIV_IOCTL_VIRTUAN [ 42.655138] WiFi@C08L2,ap_link_down() 7175: (caller:wdev_do_linkdown+0x20/0x38 ) [ 42.664390] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(1) bss not ready (state! [ 42.675795] 7981@C01L3,wifi_sys_linkdown() 1363: wdev idx = 1 [ 42.681787] 7981@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=1 [ 42.691207] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 1 [ 42.696969] 7981@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=1 [ 42.702937] 7981@C01L2,RTMP_COM_IoctlHandle() 1522: → CMD_RTPRIV_IOCTL_VIRTUALT [ 42.711215] extif_put_dev(ra1) [ 42.714278] mtk_ppe_dev_unregister_hook : ineterface ra1 set null (2) [ 42.720856] br-lan: port 8(ra1) entered disabled state [ 42.726452] 7981@C12L2,Set_ACLClearAll_Proc() 14998: The Access Control List is! [ 42.734385] 7981@C12L2,Set_ACLClearAll_Proc() 14999: No need to clear the Acces! [ 42.747351] 7981@C08L2,mbss_virtual_if_close() 171: ==⇒ ra2 [ 42.753139] 7981@C01L2,RTMP_COM_IoctlHandle() 1499: → CMD_RTPRIV_IOCTL_VIRTUAN [ 42.761526] WiFi@C08L2,ap_link_down() 7175: (caller:wdev_do_linkdown+0x20/0x38 ) [ 42.770748] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(2) bss not ready (state! [ 42.782143] 7981@C01L3,wifi_sys_linkdown() 1363: wdev idx = 2 [ 42.788399] 7981@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=2 [ 42.797882] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 2 [ 42.803609] 7981@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=2 [ 42.809585] 7981@C01L2,RTMP_COM_IoctlHandle() 1522: → CMD_RTPRIV_IOCTL_VIRTUALT [ 42.817864] extif_put_dev(ra2) [ 42.820922] mtk_ppe_dev_unregister_hook : ineterface ra2 set null (3) [ 42.827496] br-lan: port 9(ra2) entered disabled state [ 42.833066] 7981@C12L2,Set_ACLAddEntry_Proc() 14664: An unnecessary delimiter e! [ 42.842683] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 42.850606] Set_Fh_Bss_Proc rax1 wdev→MAPCfg.DevOwnRole 0x20 [ 42.858132] Set_Fh_Bss_Proc rax2 wdev→MAPCfg.DevOwnRole 0x20 [ 42.866600] Set_Fh_Bss_Proc rax2 wdev→MAPCfg.DevOwnRole 0x0 [ 42.875699] 7981@C08L2,mbss_virtual_if_close() 171: ==⇒ rax2 [ 42.881995] 7981@C01L2,RTMP_COM_IoctlHandle() 1499: → CMD_RTPRIV_IOCTL_VIRTUAN [ 42.890397] WiFi@C08L2,ap_link_down() 7175: (caller:wdev_do_linkdown+0x20/0x38 ) [ 42.899638] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(6) bss not ready (state! [ 42.911038] 7981@C01L3,wifi_sys_linkdown() 1363: wdev idx = 6 [ 42.917023] 7981@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=6 [ 42.926499] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 6 [ 42.932179] 7981@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=6 [ 42.938149] 7981@C01L2,RTMP_COM_IoctlHandle() 1522: → CMD_RTPRIV_IOCTL_VIRTUALT [ 42.946436] extif_put_dev(rax2) [ 42.949580] mtk_ppe_dev_unregister_hook : ineterface rax2 set null (7) [ 42.956239] br-lan: port 13(rax2) entered disabled state [ 42.963690] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 42.971618] Set_Fh_Bss_Proc rax1 wdev→MAPCfg.DevOwnRole 0x0 [ 42.980436] 7981@C08L2,mbss_virtual_if_close() 171: ==⇒ rax1 [ 42.986380] 7981@C01L2,RTMP_COM_IoctlHandle() 1499: → CMD_RTPRIV_IOCTL_VIRTUAN [ 42.994786] WiFi@C08L2,ap_link_down() 7175: (caller:wdev_do_linkdown+0x20/0x38 ) [ 43.004057] 7981@C08L1,UpdateBeaconHandler() 1891: wdev(5) bss not ready (state! [ 43.015578] 7981@C01L3,wifi_sys_linkdown() 1363: wdev idx = 5 [ 43.021986] 7981@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=5 [ 43.031513] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 5 [ 43.037293] 7981@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=5 [ 43.043255] 7981@C01L2,RTMP_COM_IoctlHandle() 1522: → CMD_RTPRIV_IOCTL_VIRTUALT [ 43.051549] extif_put_dev(rax1) [ 43.054695] mtk_ppe_dev_unregister_hook : ineterface rax1 set null (6) [ 43.061363] br-lan: port 12(rax1) entered disabled state [ 43.083195] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.237298] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.259526] change http status to disable [ 43.273646] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.388308] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.416955] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.444985] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.488090] br-lan: port 7(apclix0) entered disabled state [ 43.524065] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! [ 43.551809] 7981@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8bee] ret! ------igd_system_init ------! led_on = 1 app_on = 1 [ 44.680274] br-lan: port 1(lan1) entered disabled state [ 44.696003] br-lan: port 2(lan2) entered disabled state [ 44.706502] mt7530 mdio-bus:1f lan3: Link is Down [ 44.712210] br-lan: port 3(lan3) entered disabled state [ 44.723636] device eth0 left promiscuous mode [ 44.728220] br-lan: port 4(lan4) entered disabled state [ 44.959913] BcnCheck start after 900 ms (ra0) [ 45.128892] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 45.134823] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 45.755430] device eth0 entered promiscuous mode [ 45.760527] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 45.768271] 8021q: adding VLAN 0 to HW filter on device lan1 [ 45.778240] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 45.785606] 8021q: adding VLAN 0 to HW filter on device lan2 [ 45.795656] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 45.803007] 8021q: adding VLAN 0 to HW filter on device lan3 [ 45.813148] mt7530 mdio-bus:1f lan4: configuring for phy/gmii link mode [ 45.820571] 8021q: adding VLAN 0 to HW filter on device lan4 [ 48.866068] mt7530 mdio-bus:1f lan3: Link is Up - 1Gbps/Full - flow control off [ 48.873445] br-lan: port 3(lan3) entered blocking state [ 48.878704] br-lan: port 3(lan3) entered forwarding state [ 52.125913] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 52.131848] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 55.166971] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 55.172938] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 59.106257] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 59.112193] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 59.181364] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 59.187309] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 65.939549] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 65.945478] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 67.212845] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 67.218783] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 71.227593] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 71.233569] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 73.233946] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 73.239875] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang! PeerPr! [ 75.129530] Virtual device eth0 asks to queue packet! [ 75.188403] Virtual device eth0 asks to queue packet! [ 77.252165] PeerProbeReqSanity() - wrong IE_HT_CAP. eid_len = 0 [ 77.258093] 7981@C08L1,sync_fsm_peer_request_idle_action() 2168: shiang!

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.12.60 (user@mint-M920s) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 14.3.0 r32244-dfefd1a811) 14.3.0, GNU ld (GNU Binutils) 2.44) #0 SMP Sat Dec 6 12:39:47 2025 [ 0.000000] Machine model: WAVLINK WL-WN586X3 [ 0.000000] OF: reserved mem: 0x0000000042ff0000..0x0000000042ffffff (64 KiB) map non-reusable ramoops@42ff0000 [ 0.000000] OF: reserved mem: 0x0000000043000000..0x000000004302ffff (192 KiB) nomap non-reusable secmon@43000000 [ 0.000000] OF: reserved mem: 0x0000000047c80000..0x0000000047d7ffff (1024 KiB) nomap non-reusable wmcpu-reserved@47c80000 [ 0.000000] OF: reserved mem: 0x0000000047d80000..0x0000000047dbffff (256 KiB) nomap non-reusable wo-emi@47d80000 [ 0.000000] OF: reserved mem: 0x0000000047dc0000..0x0000000047ffffff (2304 KiB) nomap non-reusable wo-data@47dc0000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x000000004fffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000042ffffff] [ 0.000000] node 0: [mem 0x0000000043000000-0x000000004302ffff] [ 0.000000] node 0: [mem 0x0000000043030000-0x0000000047c7ffff] [ 0.000000] node 0: [mem 0x0000000047c80000-0x0000000047ffffff] [ 0.000000] node 0: [mem 0x0000000048000000-0x000000004fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000004fffffff] [ 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 20 pages/cpu s42520 r8192 d31208 u81920 [ 0.000000] pcpu-alloc: s42520 r8192 d31208 u81920 alloc=20*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: [ 0.000000] Dentry cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.000000] Inode-cache hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 65536 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 0MB [ 0.000000] software IO TLB: area num 2. [ 0.000000] software IO TLB: SWIOTLB bounce buffer size roundup to 0MB [ 0.000000] software IO TLB: mapped [mem 0x000000004fe4a000-0x000000004feca000] (0MB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2. [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 640 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=0 [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] 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.000075] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.000084] pid_max: default: 32768 minimum: 301 [ 0.003012] Mount-cache hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.003020] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.005121] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.005951] rcu: Hierarchical SRCU implementation. [ 0.005959] rcu: Max phase no-delay instances is 1000. [ 0.006156] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level [ 0.006387] smp: Bringing up secondary CPUs ... [ 0.006746] Detected VIPT I-cache on CPU1 [ 0.006794] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.006824] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.006908] smp: Brought up 1 node, 2 CPUs [ 0.006913] SMP: Total of 2 processors activated. [ 0.006916] CPU: All CPU(s) started at EL2 [ 0.006918] CPU features: detected: 32-bit EL0 Support [ 0.006921] CPU features: detected: CRC32 instructions [ 0.006946] alternatives: applying system-wide alternatives [ 0.007080] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.007191] Memory: 236916K/262144K available (9216K kernel code, 982K rwdata, 2760K rodata, 448K init, 298K bss, 23600K reserved, 0K cma-reserved) [ 0.010261] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.010277] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.010334] 29296 pages in range for non-PLT usage [ 0.010337] 520816 pages in range for PLT usage [ 0.011832] pinctrl core: initialized pinctrl subsystem [ 0.013106] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.013421] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.013449] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.013469] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.013845] thermal_sys: Registered thermal governor 'fair_share' [ 0.013849] thermal_sys: Registered thermal governor 'bang_bang' [ 0.013852] thermal_sys: Registered thermal governor 'step_wise' [ 0.013855] thermal_sys: Registered thermal governor 'user_space' [ 0.013891] ASID allocator initialised with 65536 entries [ 0.014540] pstore: Using crash dump compression: deflate [ 0.014546] pstore: Registered ramoops as persistent store backend [ 0.014549] ramoops: using 0x10000@0x42ff0000, ecc: 0 [ 0.016013] /soc/interrupt-controller@c000000: Fixed dependency cycle(s) with /soc/interrupt-controller@c000000 [ 0.032160] cryptd: max_cpu_qlen set to 1000 [ 0.034483] SCSI subsystem initialized [ 0.034635] libata version 3.00 loaded. [ 0.036226] clocksource: Switched to clocksource arch_sys_counter [ 0.038543] NET: Registered PF_INET protocol family [ 0.038645] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.039698] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.039712] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.039721] TCP established hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.039740] TCP bind hash table entries: 2048 (order: 4, 65536 bytes, linear) [ 0.039790] TCP: Hash tables configured (established 2048 bind 2048) [ 0.040156] MPTCP token hash table entries: 256 (order: 1, 6144 bytes, linear) [ 0.040265] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.040282] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.040498] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.040523] PCI: CLS 0 bytes, default 64 [ 0.041691] workingset: timestamp_bits=46 max_order=16 bucket_order=0 [ 0.046689] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.046697] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) © 2001-2006 Red Hat, Inc. [ 0.113819] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.114968] printk: legacy console [ttyS0] disabled [ 0.135347] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 72, base_baud = 2500000) is a ST16650V2 [ 0.135393] printk: legacy console [ttyS0] enabled [ 0.898658] random: crng init done [ 0.905152] loop: module loaded [ 0.910545] 6 fixed-partitions partitions found on MTD device spi0.0 [ 0.916950] Creating 6 MTD partitions on “spi0.0”: [ 0.921734] 0x000000000000-0x000000040000 : “bl2” [ 0.927299] 0x000000040000-0x000000050000 : “u-boot-env” [ 0.932949] 0x000000050000-0x000000100000 : “factory” [ 0.938779] 0x000000100000-0x000000180000 : “fip” [ 0.943810] 0x000000180000-0x000000f80000 : “firmware” [ 0.949419] 2 fit-fw partitions found on MTD device firmware [ 0.955081] 0x000000180000-0x0000005d0000 : “kernel” [ 0.960389] 0x0000005e0000-0x000000f80000 : “ubi” [ 0.965511] 0x000000f80000-0x000001000000 : “hw” [ 1.104328] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc081500000, irq 75 [ 1.114225] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc081500000, irq 75 [ 1.124047] i2c_dev: i2c /dev entries driver [ 1.130072] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 1.138859] NET: Registered PF_INET6 protocol family [ 1.144678] Segment Routing with IPv6 [ 1.148451] In-situ OAM (IOAM) with IPv6 [ 1.152413] NET: Registered PF_PACKET protocol family [ 1.157974] 8021q: 802.1Q VLAN Support v1.8 [ 1.220012] mt7530-mdio mdio-bus:1f: no interrupt support [ 1.233114] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.242118] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.252091] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=POLL) [ 1.273294] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=POLL) [ 1.285077] mtk_soc_eth 15100000.ethernet eth0: entered promiscuous mode [ 1.291853] DSA: tree 0 setup [ 1.295136] UBI: auto-attach mtd6 [ 1.298492] ubi0: default fastmap pool size: 8 [ 1.302928] ubi0: default fastmap WL pool size: 4 [ 1.307637] ubi0: attaching mtd6 [ 1.390748] ubi0: scanning is finished [ 1.397132] ubi0: attached mtd6 (name “ubi”, size 9 MiB) [ 1.402449] ubi0: PEB size: 65536 bytes (64 KiB), LEB size: 65408 bytes [ 1.409075] ubi0: min./max. I/O unit sizes: 1/256, sub-page size 1 [ 1.415244] ubi0: VID header offset: 64 (aligned 64), data offset: 128 [ 1.421764] ubi0: good PEBs: 154, bad PEBs: 0, corrupted PEBs: 0 [ 1.427764] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 [ 1.434973] ubi0: max/mean erase counter: 4/2, WL threshold: 4096, image sequence number: 1462699760 [ 1.444096] ubi0: available PEBs: 0, total reserved PEBs: 154, PEBs reserved for bad PEB handling: 0 [ 1.453226] ubi0: background thread “ubi_bgt0d” started, PID 571 [ 1.459250] UBI: block: volume size is not a multiple of 512, last 256 bytes are ignored! [ 1.467958] block ubiblock0_0: created from ubi0:0(rootfs) [ 1.473444] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem [ 1.480522] clk: Disabling unused clocks [ 1.484702] PM: genpd: Disabling unused power domains [ 1.492600] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 1.499959] Freeing unused kernel memory: 448K [ 1.504454] Run /sbin/init as init process [ 1.508552] with arguments: [ 1.511507] /sbin/init [ 1.514202] with environment: [ 1.517347] HOME=/ [ 1.519696] TERM=linux [ 1.679939] init: Console is alive [ 1.683456] init: - watchdog - [ 1.981622] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 1.999634] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 2.011261] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 2.019862] init: - preinit - [ 2.338550] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 2.347093] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 2.370165] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode [ 4.482179] mt7530-mdio mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control off [ 5.517471] mt7530-mdio mdio-bus:1f lan1: Link is Down [ 6.570879] UBIFS (ubi0:1): Mounting in unauthenticated mode [ 6.576688] UBIFS (ubi0:1): background thread “ubifs_bgt0_1” started, PID 687 [ 6.582566] UBIFS (ubi0:1): recovery needed [ 7.111477] UBIFS (ubi0:1): recovery completed [ 7.115987] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name “rootfs_data” [ 7.123829] UBIFS (ubi0:1): LEB size: 65408 bytes (63 KiB), min./max. I/O unit sizes: 8 bytes/256 bytes [ 7.133217] UBIFS (ubi0:1): FS size: 3401216 bytes (3 MiB, 52 LEBs), max 62 LEBs, journal size 523265 bytes (0 MiB, 6 LEBs) [ 7.144343] UBIFS (ubi0:1): reserved for root: 160647 bytes (156 KiB) [ 7.150779] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID 27DBDE86-16DC-437E-B86E-29C7C2482C46, small LPT model [ 7.188445] mount_root: switching to ubifs overlay [ 7.206513] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 7.218444] urandom-seed: Seeding with /etc/urandom.seed [ 7.270326] procd: - early - [ 7.273277] procd: - watchdog - [ 7.808991] procd: - watchdog - [ 7.812684] procd: - ubus - [ 7.968140] procd: - init - [ 8.245016] kmodloader: loading kernel modules from /etc/modules.d/* [ 8.277161] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 [ 8.301831] Loading modules backported from Linux version v6.16-0-g038d61fd6422 [ 8.309185] Backport generated by backports.git v6.1.145-1-47-g6194bf852a3e [ 8.463915] urngd: v1.0.2 started. [ 8.646679] mt798x-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20240823161240a [ 8.646679] [ 8.806136] mt798x-wmac 18000000.wifi: WM Firmware Version: 000000, Build Time: 20240823161304 [ 8.892138] mt798x-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20240823161841 [ 8.989596] mt798x-wmac 18000000.wifi: registering led 'mt76-phy0' [ 9.047902] mt798x-wmac 18000000.wifi: registering led 'mt76-phy1' [ 9.145439] PPP generic driver version 2.4.2 [ 9.151020] NET: Registered PF_PPPOX protocol family [ 9.160714] kmodloader: done loading kernel modules from /etc/modules.d/* [ 11.949469] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 11.967267] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 11.977871] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 11.993580] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode [ 12.005464] br-lan: port 1(lan1) entered blocking state [ 12.010766] br-lan: port 1(lan1) entered disabled state [ 12.016024] mt7530-mdio mdio-bus:1f lan1: entered allmulticast mode [ 12.022324] mtk_soc_eth 15100000.ethernet eth0: entered allmulticast mode [ 12.045352] mt7530-mdio mdio-bus:1f lan1: entered promiscuous mode [ 12.071213] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode [ 12.094715] br-lan: port 2(lan2) entered blocking state [ 12.099990] br-lan: port 2(lan2) entered disabled state [ 12.105248] mt7530-mdio mdio-bus:1f lan2: entered allmulticast mode [ 12.113367] mt7530-mdio mdio-bus:1f lan2: entered promiscuous mode [ 12.151038] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:00] driver [MediaTek MT7981 PHY] (irq=POLL) [ 12.160693] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/gmii link mode [ 17.202085] mt7530-mdio mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control off [ 17.202154] br-lan: port 1(lan1) entered blocking state [ 17.215054] br-lan: port 1(lan1) entered forwarding state [ 18.237974] mt7530-mdio mdio-bus:1f lan1: Link is Down [ 18.243302] br-lan: port 1(lan1) entered disabled state [ 20.322065] mt7530-mdio mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control off [ 20.322131] br-lan: port 1(lan1) entered blocking state [ 20.335035] br-lan: port 1(lan1) entered forwarding state


Space for additional notes, links to forum threads or other resources.

  • ...

FIXME Add tags below, then remove this fixme.

How to add tags

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2025/12/09 13:31
  • by dadogroove