Acer Predator Connect W6x
The Acer Predator Connect W6x is a high-performance gaming router equipped with a 2.0 GHz quad-core processor and 1 GB of RAM. It supports dual-band Wi-Fi 6 (802.11ax) with a combined throughput of up to 6 Gbps, ensuring low latency and high-speed connections. The device features four Gigabit Ethernet ports, a 2.5 Gbps WAN port, and USB 3.0 connectivity, making it versatile for both wired and wireless networks
Supported Versions
Hardware Highlights
Flash Layout
| dev | size(hex) | erasesize | name | size |
|---|---|---|---|---|
| mtd0 | 00100000 | 00020000 | “bl2” | 1MB |
| mtd1 | 00080000 | 00020000 | “u-boot-env” | 512KB |
| mtd2 | 00200000 | 00020000 | “factory” | 2MB |
| mtd3 | 00200000 | 00020000 | “fip” | 2MB |
| mtd4 | 00020000 | 00020000 | “prod” | 128KB |
| mtd5 | 00100000 | 00020000 | “dual” | 1MB |
| mtd6 | 00100000 | 00020000 | “pot” | 1MB |
| mtd7 | 06400000 | 00020000 | “ubi” | 100MB |
| mtd8 | 06400000 | 00020000 | “ubi1” | 100MB |
| mtd9 | 00800000 | 00020000 | “storage” | 8MB |
Installation
As of this writing, only UART is supported for flashing.
UART Installation
READ FIRST
OpenWrt Stock vs Ubootmod Layout
The stock layout retains the flash storage partitions from the factory. It includes 2 partitions for firmware, each with 100MB usable space. This layout allows the flexibility of having both Openwrt and OEM firmware installed, and allow a way to switch between the two on startup. In addition, it retains the OEM preloader (BL2) and U-Boot (FIP).
The ubootmod layout maximizes allowable flash storage space to a single installation of Openwrt (210MB). It combines the two firmware partitions into a single partition, therefore, removing the ability to switch between firmware types. In addition, ubootmod layout replaces the OEM preloader (BL2) and U-Boot (FIP) with the Openwrt versions, allowing as close to an open source experience as possible.
If 100MB usable space is enough for your needs, stick with openwrt stock layout. Ubootmod requires additional modifications to the device some users may not be comfortable with.
There is a method to switch from stock layout to ubootmod layout and vice versa.
Gaining Root Access on OEM firmware
Gaining root access to the OEM firmware is not necessary to installing Openwrt.
Files needed:
- Configure TFTP server with IP 192.168.1.66. Copy
openwrt-mediatek-filogic-acer_predator-w6x-stock-initramfs-kernel.binto TFTP root and rename topredator.bin - Interrupt boot by pressing 0 on startup or select
U-Boot Consolein U-Boot Boot Menu. - Run
setenv serverip 192.168.1.66; setenv ipaddr 192.168.1.1; tftpboot 0x46000000 predator.bin; bootmin uboot console. - Wait for boot complete on Openwrt initramfs env.
- This device has two firmware partitions (ubi and ubi1). Next steps will modify both.
- Mount /dev/ubi0_2:
mkdir /tmp/ubi0_2; mount -t ubifs /dev/ubi0_2 /tmp/ubi0_2 - Modify
/tmp/ubi0_2/upper/etc/passwdand change line withroot:x:0:0...toroot::0:0..., remove thex. - Mount /dev/ubi1_2:
mkdir /tmp/ubi1_2; mount -t ubifs /dev/ubi1_2 /tmp/ubi1_2 - Modify
/tmp/ubi1_2/upper/etc/passwdand change line withroot:x:0:0...toroot::0:0..., remove thex. - Save and reboot.
- You should now be able to log in with root and empty password while booted in OEM firmware.
Openwrt Stock Layout
Please back up your device according to instructions, DO NOT skip that step.
This device ships with two firmware partitions (ubi and ubi1) containing the stock firmware. Regardless of which partition is currently being used, we will only use ubi for openwrt installation and leave ubi1 intact with stock firmware. You can freely switch between firmware by running mkdual set <num> in uboot console. Example: After openwrt stock installation, you can run mkdual set 2 to switch back to stock, and mkdual set 1 to use openwrt.
Files needed:
- Configure TFTP server with IP 192.168.1.66. Copy
openwrt-mediatek-filogic-acer_predator-w6x-stock-initramfs-kernel.binto TFTP root and rename topredator.bin - Interrupt boot by pressing 0 on startup or select
U-Boot Consolein U-Boot Boot Menu. - Run
mkdual set 1in uboot console to set ubi as boot partition. - Run
setenv serverip 192.168.1.66; setenv ipaddr 192.168.1.1; tftpboot 0x46000000 predator.bin; bootmin uboot console. - Wait for boot complete on Openwrt initramfs env.
- You can back up the MTD partitions at this point. Refer to the Backup section. Please do not skip.
- On client PC, transfer
openwrt-mediatek-filogic-acer_predator-w6x-stock-squashfs-sysupgrade.binto /tmp/ -scp -O openwrt-mediatek-filogic-acer_predator-w6x-stock-squashfs-sysupgrade.bin root@192.168.1.1:/tmp/sysupgrade.bin - On router, run sysupgrade -
sysupgrade -n /tmp/sysupgrade.bin - Should now boot to Openwrt.
Openwrt Ubootmod Layout
Stock Layout Openwrt is technically not necessary. You can go straight to ubootmod version of the firmware. However, it is recommended to follow stock layout instructions to backup NAND storage.
Files needed:
- Configure TFTP server with IP 192.168.1.66. Copy
openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-initramfs-recovery.itbto TFTP root and rename topredator-ubootmod.itb - Interrupt boot by pressing 0 on startup or select
U-Boot Consolein U-Boot Boot Menu. - Run
setenv serverip 192.168.1.66; setenv ipaddr 192.168.1.1; tftpboot 0x46000000 predator-ubootmod.itb; bootmin uboot console. - Wait for boot complete on Openwrt initramfs env.
- Transfer
openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-initramfs-recovery.itb,openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-squashfs-sysupgrade.itb,openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-bl31-uboot.fip,openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-preloader.binto router's /tmp/ directory. - install
kmod-mtd-rwpackage:apk update && apk add kmod-mtd-rw - run
insmod /lib/modules/$(uname -r)/mtd-rw.ko i_want_a_brick=1 - run
ubidetach -p /dev/mtd5; ubiformat /dev/mtd5 -y; ubiattach -p /dev/mtd5 - run
ubimkvol /dev/ubi0 -n 0 -N ubootenv -s 128KiB - run
ubimkvol /dev/ubi0 -n 1 -N ubootenv2 -s 128KiB - run
ubimkvol /dev/ubi0 -n 2 -N recovery -s 10MiB - run
ubiupdatevol /dev/ubi0_2 /tmp/openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-initramfs-recovery.itb - run
mtd write /tmp/openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-preloader.bin bl2 - run
mtd write /tmp/openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-bl31-uboot.fip fip - run
sysupgrade -n /tmp/openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-squashfs-sysupgrade.itb - router should now boot to Openwrt Ubootmod Layout. To confirm, run
cat /proc/mtdand output should match below.
Flash layout BEFORE ubootmod:
| dev | size(hex) | erasesize | name | size |
|---|---|---|---|---|
| mtd0 | 00100000 | 00020000 | “bl2” | 1MB |
| mtd1 | 00080000 | 00020000 | “u-boot-env” | 512KB |
| mtd2 | 00200000 | 00020000 | “factory” | 2MB |
| mtd3 | 00200000 | 00020000 | “fip” | 2MB |
| mtd4 | 00020000 | 00020000 | “prod” | 128KB |
| mtd5 | 00100000 | 00020000 | “dual” | 1MB |
| mtd6 | 00100000 | 00020000 | “pot” | 1MB |
| mtd7 | 06400000 | 00020000 | “ubi” | 100MB |
| mtd8 | 06400000 | 00020000 | “ubi1” | 100MB |
| mtd9 | 00800000 | 00020000 | “storage” | 8MB |
Flash layout AFTER ubootmod:
| dev | size(hex) | erasesize | name | size |
|---|---|---|---|---|
| mtd0 | 00100000 | 00020000 | “bl2” | 1MB |
| mtd1 | 00080000 | 00020000 | “u-boot-env” | 512KB |
| mtd2 | 00200000 | 00020000 | “factory” | 2MB |
| mtd3 | 00200000 | 00020000 | “fip” | 2MB |
| mtd4 | 00020000 | 00020000 | “prod” | 128KB |
| mtd5 | 0d200000 | 00020000 | “ubi” | 210MB |
Backup
1. While in Openwrt stock layout initramfs environment, back up all the partitions by running the following:
cat /dev/mtd0 > /tmp/bl2.bin cat /dev/mtd1 > /tmp/u-boot-env.bin cat /dev/mtd2 > /tmp/factory.bin cat /dev/mtd3 > /tmp/fip.bin cat /dev/mtd4 > /tmp/prod.bin cat /dev/mtd5 > /tmp/dual.bin cat /dev/mtd6 > /tmp/pot.bin cat /dev/mtd7 > /tmp/ubi.bin cat /dev/mtd8 > /tmp/ubi1.bin cat /dev/mtd9 > /tmp/storage.bin
2. Transfer files to client PC for safekeeping. On client PC, run scp -O root@192.168.1.1:/tmp/*.bin ./
Configuration
Set WiFi country code
Before enabling each SSID set your Country Code to ensure the correct WiFi channels and transmit power are used:
- In LuCI go to Network → Wireless
- Click “Edit” on the SSID you want to enable
- Select your “Country Code” from the dropdown
- Save and Apply
Alternatively, set via SSH with iw reg set.
Hardware Acceleration
MediaTek supports hardware acceleration for their SoCs which increases throughput and greatly reduces load off the CPU. It does this by processing traffic on their Packet Processing Engine (aka Network Accelerator). Users can expect 2.5Gbit routing with near 0/0/0/0 load across the CPU cores. The downside to this approach is it cannot be used in combination with QoS features such as SQM and AQL. This is not enabled by default in OpenWrt. To enable, read below.
Hardware Flow Offloading
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:
- Network → Firewall → Flow offloading type → Hardware flow offloading
- Save and Apply
Wireless Ethernet Dispatch
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:
- SSH:
nano /etc/modules.conf - Append:
options mt7915e wed_enable=Y - 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
To check traffic offloaded to the PPEs for wired and wireless, cat ppe0/ppe1 bind/status, e.g.: cat /sys/kernel/debug/ppe0/bind.
Other Performance Features
Packet Steering may be enabled for single-core or multi-core. This being a 4 core device “all CPUs” is generally recommended, especially when used with SQM. Note that with HFO enabled instead this will not matter as flows are offloaded. Irqbalance may be used as well, this will not affect bandwidth however may help with other tasks. While these can be enabled via SSH using LuCI is described below:
- Packet Steering: Network → Interfaces → Global Network Options → Packet Steering: Enabled (all CPUs), RPS: enabled with suggested setting.
- Irqbalance: install the
luci-app-irqbalancepackage and enable on: Services → irqbalance. - Save and Apply.
Adjusting AQL
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
Access Point mode
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.
LED
LED color can be controlled by specifying values in GRB format in `/sys/class/leds/rgb:status/multi_intensity`. Default is `255 255 255` (white). Example: `echo '75 0 130' > /sys/class/leds/rgb:status/multi_intensity`
LED brightness can be changed by specifying the value from 0-255 in /sys/class/leds/rgb:status/brightness. Default is `255` (full brightness). Example: `echo 100 > /sys/class/leds/rgb:status/brightness`
For persistence across reboots, put the relevant command(s) in /etc/rc.local.
Basic configuration
→ Basic configuration After flashing, proceed with this.
Set up your Internet connection, configure wireless, configure USB port, etc.
Specific Configuration
Network interfaces
The default network configuration is:
| Interface Name | Description | Default configuration |
|---|---|---|
| br-lan | LAN & WiFi | 192.168.1.1/24 |
| eth1 | WAN | DHCP |
Upgrading OpenWrt
Subsequent upgrades does not require UART.
LuCI Web Upgrade Process
- Browse to
http://192.168.1.1/cgi-bin/luci/mini/system/upgrade/LuCI Upgrade URL - Upload image file for sysupgrade to LuCI
- Wait for reboot
Terminal Upgrade Process
If you don't have a GUI (LuCI) available, you can alternatively upgrade via the command line. There are two command line methods for upgrading:
sysupgrademtd
Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.
sysupgrade
- Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc sysupgrade /tmp/xxx.abc
mtd
If sysupgrade does not support this router, use mtd.
- Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc mtd write /tmp/xxx.abc linux && reboot
Revert to OEM Firmware
Backups are required!
These instructions can be used while flashed with any of the Openwrt layouts. You will need the Openwrt stock layout's initramfs-kernel file.
Files needed:
- Configure TFTP server with IP 192.168.1.66. Copy
openwrt-mediatek-filogic-acer_predator-w6x-stock-initramfs-kernel.binto TFTP root and rename topredator.bin - Interrupt boot by pressing 0 on startup or select
U-Boot Consolein U-Boot Boot Menu. - Run
setenv serverip 192.168.1.66; setenv ipaddr 192.168.1.1; tftpboot 0x46000000 predator.bin; bootmin uboot console. - Wait for boot complete on Openwrt initramfs env.
- Install
kmod-mtd-rwpackage:apk update && apk add kmod-mtd-rw - On client PC, transfer all partition backup files to the device:
scp -O ./*.bin root@192.168.1.1:/tmp/ - Run
insmod /lib/modules/$(uname -r)/mtd-rw.ko i_want_a_brick=1 - Run
ubiformat /dev/mtd7 -y -f /tmp/ubi.bin - Run
ubiformat /dev/mtd8 -y -f /tmp/ubi1.bin - Run
mtd write /tmp/bl2.bin bl2 - Run
mtd write /tmp/fip.bin fip - Run
mtd write /tmp/prod.bin prod - Run
mtd write /tmp/pot.bin pot - Run
mtd write /tmp/dual.bin dual - Run
mtd write /tmp/storage.bin storage - Run
rebootto reboot back to OEM firmware.
Debricking
It is VERY important to have backups.
Files needed:
- mtk_uartboot (https://github.com/981213/mtk_uartboot)
Debricking is available using Openwrt Ubootmod layout's BL31 Uboot files. However, after sucessfully debricking, you can revert to stock layout.
- Rename
openwrt-mediatek-filogic-acer_predator-w6x-ubootmod-bl31-uboot.fiptobl31.bin. - Unplug router power and have UART connected.
- If on Mac or Linux, run
mtk_uartboot -s <serial port> -a -p mt7986-ram-ddr4-bl2.bin -f bl31.bin && screen <serial port> 115200, wait forHandshake... - If on Windows, run
mtk_uartboot -s <serial port> -a -p mt7986-ram-ddr4-bl2.bin -f bl31.bin && putty.exe -serial <serial port> -sercfg 115200,8,n,1,N, wait forHandshake... - Plug in router.
- At this point, your device should boot, interrupt boot by press 0 (you may need to be quick) to get to Uboot console prompt.
- Follow Revert to OEM Firmware section to get your device back to OEM state.
Hardware
Photos
Opening the case
→ Warranty
On bottom of router, remove the 4 rubber pads and unscrew the 4 screws underneath. Using a pryer tool, remove top cover. It may require a bit of force to pry open, but be careful not to snap anything.
If you're opening the case to gain serial access, removal of heatsink is not necessary. On top side, to the right of the heatsink are connections for serial access.
Serial
→ port.serial general information about the serial port, serial port cable, etc.
Gaining access to the serial connections may be difficult without opening the case. There is quite a bit of space between the top cover and the PCB, and the plastic cover may be blocking access. It's not impossible but very difficult and awkward to get to.
Solder pads are available on the top side of PCB to connect/solder jumper cables. Removal of heatsink is not necessary. Connections are clearly labeled on the PCB.
| Serial connection parameters | 115200, 8N1 |
|---|
Bootloader mods
Replacing the stock bootloader with openwrt bootloader is available with the Ubootmod version of the firmware. Please see Ubootmod installation in above sections.
Bootlogs
OEM bootlog
F0: 102B 0000 FA: 1040 0000 FA: 1040 0000 [0200] F9: 0000 0000 V0: 0000 0000 [0001] 00: 0000 0000 BP: 2400 0041 [0000] G0: 1190 0000 EC: 0000 0000 [1000] T0: 0000 021E [010F] Jump to BL
NOTICE: BL2: v2.8(release):5fceb3af-dirty NOTICE: BL2: Built : 16:45:21, Jan 19 2024 NOTICE: WDT: Cold boot NOTICE: WDT: disabled NOTICE: CPU: MT7986 (2000MHz) NOTICE: EMI: Using DDR4 settings NOTICE: EMI: Detected DRAM size: 1024MB NOTICE: EMI: complex R/W mem test passed NOTICE: SPI_NAND parses attributes from parameter page. NOTICE: SPI_NAND Detected ID 0xef NOTICE: Page size 2048, Block size 131072, size 268435456 NOTICE: Initializing NMBM ... NOTICE: Signature found at block 2047 [0x0ffe0000] NOTICE: First info table with writecount 0 found in block 1920 NOTICE: Second info table with writecount 0 found in block 1923 NOTICE: NMBM has been successfully attached in read-only mode NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.8(release):5fceb3af-dirty NOTICE: BL31: Built : 16:45:25, Jan 19 2024
U-Boot 2022.07-rc5 1.00.01 (Jan 19 2024 - 16:44:38 +0800)
CPU: MediaTek MT7986 Model: mt7986-rfb DRAM: 1 GiB Core: 48 devices, 18 uclasses, devicetree: separate
Initializing NMBM ... spi-nand: spi_nand spi_nand@1: Winbond SPI NAND was found. spi-nand: spi_nand spi_nand@1: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 Could not find a valid device for nmbm0 Signature found at block 2047 [0x0ffe0000] First info table with writecount 0 found in block 1920 Second info table with writecount 0 found in block 1923 NMBM has been successfully attached
MMC: mmc@11230000: 0 Loading Environment from MTD... OK In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: eth0: ethernet@15100000
*** U-Boot Boot Menu ***
1. Startup system (Default)
2. Upgrade firmware
3. Upgrade ATF BL2
4. Upgrade ATF FIP
5. Upgrade single image
6. Load image
0. U-Boot console
Press UP/DOWN to move, ENTER to select, ESC/CTRL+C to quit
Reading 'dual' from 0x0 to 0x7f7fb9d8, size 0x24 ... OK Current bootnum[255] ubi_boot_image - the bootnum is error number, try boot from ubi Boot ubi name[ubi] ubi0: attaching mtd9 ubi0: scanning is finished ubi0: attached mtd9 (name “ubi”, size 100 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 ubi0: good PEBs: 800, bad PEBs: 0, corrupted PEBs: 0 ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1721983423 ubi0: available PEBs: 0, total reserved PEBs: 800, PEBs reserved for bad PEB handling: 38 No size specified → Using max size (3682304) Read 3682304 bytes from volume kernel to 0000000046000000 ## Loading kernel from FIT Image at 46000000 ...
Using 'config-1' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-5.4.246 Type: Kernel Image Compression: lzma compressed Data Start: 0x460000e8 Data Size: 3598255 Bytes = 3.4 MiB Architecture: AArch64 OS: Linux Load Address: 0x48080000 Entry Point: 0x48080000 Hash algo: crc32 Hash value: a386773a Hash algo: sha1 Hash value: 329077a64527c68e5416e1a22e3e696b89ed4a40 Verifying Hash Integrity ... crc32+ sha1+ OK
## Loading fdt from FIT Image at 46000000 ...
Using 'config-1' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt mt7986b-ax6000-2500wan-spim-nand-rfb device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x4636e9ec Data Size: 19161 Bytes = 18.7 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 898288bf Hash algo: sha1 Hash value: ca3c833b854e506905a7333b62c6d9e8feb85c85 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x4636e9ec Uncompressing Kernel Image Loading Device Tree to 000000007f7ef000, end 000000007f7f6ad8 ... OK
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.4.246 (libo@yzbder-70UEA000CN) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r0-ca01d31b5)) #0 SMP Fri Jul 26 08:43:43 2024 [ 0.000000] Machine model: MediaTek MT7986b RFB [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] On node 0 totalpages: 261056 [ 0.000000] DMA32 zone: 4096 pages used for memmap [ 0.000000] DMA32 zone: 0 pages reserved [ 0.000000] DMA32 zone: 261056 pages, LIFO batch:63 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.0 [ 0.000000] percpu: Embedded 20 pages/cpu s44056 r8192 d29672 u81920 [ 0.000000] pcpu-alloc: s44056 r8192 d29672 u81920 alloc=20*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 256960 [ 0.000000] Kernel command line: console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 1012912K/1044224K available (7422K kernel code, 554K rwdata, 2140K rodata, 448K init, 290K bss, 31312K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: CONFIG_RCU_FANOUT set to non-default value of 32. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode [ 0.000000] GICv3: 640 SPIs implemented [ 0.000000] GICv3: 0 Extended SPIs implemented [ 0.000000] GICv3: Distributor has no Range Selector support [ 0.000000] GICv3: 16 PPIs implemented [ 0.000000] GICv3: no VLPI support, no direct LPI support [ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 [ 0.000000] arch_timer: cp15 timer(s) running at 12.98MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2feb955e7, max_idle_ns: 440795202655 ns [ 0.000002] sched_clock: 56 bits at 12MHz, resolution 77ns, wraps every 4398046511072ns [ 0.008188] Calibrating delay loop (skipped), value calculated using timer frequency.. 25.97 BogoMIPS (lpj=51944) [ 0.018514] pid_max: default: 32768 minimum: 301 [ 0.023223] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.030666] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.039335] ASID allocator initialised with 65536 entries [ 0.044817] rcu: Hierarchical SRCU implementation. [ 0.049899] smp: Bringing up secondary CPUs ... [ 0.054695] Detected VIPT I-cache on CPU1 [ 0.054714] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.054734] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.054981] Detected VIPT I-cache on CPU2 [ 0.054990] GICv3: CPU2: found redistributor 2 region 0:0x000000000c0c0000 [ 0.054998] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.055228] Detected VIPT I-cache on CPU3 [ 0.055236] GICv3: CPU3: found redistributor 3 region 0:0x000000000c0e0000 [ 0.055243] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.055271] smp: Brought up 1 node, 4 CPUs [ 0.111882] SMP: Total of 4 processors activated. [ 0.116610] CPU features: detected: 32-bit EL0 Support [ 0.121774] CPU features: detected: CRC32 instructions [ 0.127030] CPU: All CPU(s) started at EL2 [ 0.131152] alternatives: patching kernel code [ 0.137387] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.147209] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.154217] pinctrl core: initialized pinctrl subsystem [ 0.159992] NET: Registered protocol family 16 [ 0.164634] DMA: preallocated 256 KiB pool for atomic allocations [ 0.179384] cryptd: max_cpu_qlen set to 1000 [ 0.184907] SCSI subsystem initialized [ 0.188764] libata version 3.00 loaded. [ 0.192879] usbcore: registered new interface driver usbfs [ 0.198415] usbcore: registered new interface driver hub [ 0.203774] usbcore: registered new device driver usb [ 0.209529] Bluetooth: Core ver 2.22 [ 0.213149] NET: Registered protocol family 31 [ 0.217613] Bluetooth: HCI device and connection manager initialized [ 0.224003] Bluetooth: HCI socket layer initialized [ 0.228906] Bluetooth: L2CAP socket layer initialized [ 0.233987] Bluetooth: SCO socket layer initialized [ 0.239609] rbus 18000000.wbsys: PCI host bridge to bus 0000:00 [ 0.245565] pci_bus 0000:00: root bus resource [mem 0x18000000-0x18ffffff] [ 0.252479] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.257994] pci_bus 0000:00: scanning bus [ 0.262033] pci 0000:00:00.0: [14c3:7986] type 00 class 0x000280 [ 0.268081] pci 0000:00:00.0: reg 0x10: [mem 0x18000000-0x1800000f 64bit] [ 0.274907] pci 0000:00:00.0: reg 0x18: [mem 0x00000000-0x0000000f] [ 0.281208] pci 0000:00:00.0: reg 0x1c: [mem 0x00000000-0x0000000f] [ 0.287510] pci 0000:00:00.0: reg 0x20: [mem 0x00000000-0x0000000f] [ 0.293811] pci 0000:00:00.0: reg 0x24: [mem 0x00000000-0x0000000f] [ 0.300754] pci_bus 0000:00: fixups for bus [ 0.304958] pci_bus 0000:00: bus scan returning with max=00 [ 0.310843] clocksource: Switched to clocksource arch_sys_counter [ 0.317469] thermal_sys: Registered thermal governor 'fair_share' [ 0.317472] thermal_sys: Registered thermal governor 'bang_bang' [ 0.323605] thermal_sys: Registered thermal governor 'step_wise' [ 0.329644] thermal_sys: Registered thermal governor 'user_space' [ 0.335682] thermal_sys: Registered thermal governor 'power_allocator' [ 0.341986] NET: Registered protocol family 2 [ 0.353013] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.360868] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 0.369290] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.377114] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 0.384451] TCP: Hash tables configured (established 8192 bind 8192) [ 0.390907] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.397570] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.404742] NET: Registered protocol family 1 [ 0.409142] PCI: CLS 0 bytes, default 64 [ 0.413747] workingset: timestamp_bits=46 max_order=18 bucket_order=0 [ 0.422348] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.428224] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) © 2001-2006 Red Hat, Inc. [ 0.454795] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.461649] printk: console [ttyS0] disabled [ 0.486060] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 11, base_baud = 2500000) is a ST16650V2 [ 0.495276] printk: console [ttyS0] enabled [ 0.495276] printk: console [ttyS0] enabled [ 0.503634] printk: bootconsole [uart8250] disabled [ 0.503634] printk: bootconsole [uart8250] disabled [ 0.513804] mtk_rng 1020f000.trng: registered RNG driver [ 0.514012] random: crng init done [ 0.519230] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.530305] loop: module loaded [ 0.534707] spi-nor: probe of spi0.0 failed with error -22 [ 0.540290] spi-nand spi0.1: Failed to calibrate SPI-NAND (err = -22) [ 0.546937] spi-nand spi0.1: Winbond SPI NAND was found. [ 0.552242] spi-nand spi0.1: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 [ 0.562449] [mtk_hw_init] reset_lock:0, force:0 [ 0.567019] [mtk_hw_init] execute fe cold reset [ 0.582554] mtk_soc_eth 15100000.ethernet: MDC is running on 2500000 Hz [ 0.611139] Maxlinear Ethernet GPY211C mdio-bus:06: Firmware Version: 0x886F (release) [ 0.619512] mtk_soc_eth 15100000.ethernet: generated random MAC address 5a:c9:13:cb:05:b6 [ 0.627901] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc011a00000, irq 124 [ 0.637041] mtk_soc_eth 15100000.ethernet: generated random MAC address 7e:4e:8e:49:ad:c0 [ 0.645365] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc011a00000, irq 124 [ 0.654488] (unnamed net_device) (dummy): netif_napi_add() called with weight 256 [ 0.662141] usbcore: registered new interface driver r8152 [ 0.667644] usbcore: registered new interface driver ax88179_178a [ 0.673851] xhci-mtk 11200000.xhci: 11200000.xhci supply vbus not found, using dummy regulator [ 0.682474] xhci-mtk 11200000.xhci: 11200000.xhci supply vusb33 not found, using dummy regulator [ 0.691344] phy phy-usb-phy@11e10000.1: try to get sw efuse [ 0.696908] phy phy-usb-phy@11e10000.1: try to get sw efuse+ [ 0.702569] phy phy-usb-phy@11e10000.1: u3 auto load valid efuse: ENABLE with value: 1 [ 0.710490] phy phy-usb-phy@11e10000.1: u3 efuse - intr 29, rx_imp 10, tx_imp 10 [ 0.717878] phy phy-usb-phy@11e10000.2: try to get sw efuse [ 0.723439] phy phy-usb-phy@11e10000.2: try to get sw efuse+ [ 0.729093] phy phy-usb-phy@11e10000.2: u2 auto load valid efuse: ENABLE with value: 1 [ 0.737006] phy phy-usb-phy@11e10000.2: u2 efuse - intr 16 [ 0.742796] xhci-mtk 11200000.xhci: xHCI Host Controller [ 0.748194] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 1 [ 0.758740] xhci-mtk 11200000.xhci: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000210010 [ 0.768014] xhci-mtk 11200000.xhci: irq 134, io mem 0x11200000 [ 0.773916] xhci-mtk 11200000.xhci: xHCI Host Controller [ 0.779224] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 2 [ 0.786700] xhci-mtk 11200000.xhci: Host supports USB 3.2 Enhanced SuperSpeed [ 0.794110] hub 1-0:1.0: USB hub found [ 0.797869] hub 1-0:1.0: 2 ports detected [ 0.802082] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 0.810355] hub 2-0:1.0: USB hub found [ 0.814126] hub 2-0:1.0: 1 port detected [ 0.818349] usbcore: registered new interface driver uas [ 0.823701] usbcore: registered new interface driver usb-storage [ 0.829787] i2c /dev entries driver [ 0.834336] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 0.842247] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 0.850756] Bluetooth: HCI UART driver ver 2.3 [ 0.855200] Bluetooth: HCI UART protocol H4 registered [ 0.860351] Bluetooth: HCI UART protocol BCSP registered [ 0.865710] Bluetooth: HCI UART protocol Broadcom registered [ 0.871370] Bluetooth: HCI UART protocol QCA registered [ 0.876949] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 [ 0.889220] dev-monitor: Device monitor module version 0.0.1 init [ 0.895751] Initializing XFRM netlink socket [ 0.900236] NET: Registered protocol family 10 [ 0.905142] Segment Routing with IPv6 [ 0.908936] NET: Registered protocol family 17 [ 0.913405] Bridge firewalling registered [ 0.917471] 8021q: 802.1Q VLAN Support v1.8 [ 0.928257] nmbm nmbm_spim_nand: Signature found at block 2047 [0x0ffe0000] [ 0.936170] nmbm nmbm_spim_nand: First info table with writecount 0 found in block 1920 [ 0.946939] nmbm nmbm_spim_nand: Second info table with writecount 0 found in block 1923 [ 0.955025] nmbm nmbm_spim_nand: NMBM has been successfully attached [ 0.961601] 10 fixed-partitions partitions found on MTD device nmbm_spim_nand [ 0.968731] Creating 10 MTD partitions on “nmbm_spim_nand”: [ 0.974297] 0x000000000000-0x000000100000 : “BL2” [ 0.979424] 0x000000100000-0x000000180000 : “u-boot-env” [ 0.985032] 0x000000180000-0x000000380000 : “Factory” [ 0.990379] 0x000000380000-0x000000580000 : “FIP” [ 0.995378] 0x000000580000-0x000000600000 : “prod” [ 1.000461] 0x000000600000-0x000000700000 : “dual” [ 1.005527] 0x000000700000-0x000000800000 : “pot” [ 1.010516] 0x000000800000-0x000006c00000 : “ubi” [ 1.015626] 0x000006c00000-0x00000d000000 : “ubi1” [ 1.020801] 0x00000d000000-0x00000d800000 : “storage” [ 1.249826] mt7530 mdio-bus:1f lan0 (uninitialized): PHY [dsa-0.0:01] driver [MediaTek MT7531 PHY] [ 1.269407] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [dsa-0.0:02] driver [MediaTek MT7531 PHY] [ 1.288872] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [dsa-0.0:03] driver [MediaTek MT7531 PHY] [ 1.308364] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [dsa-0.0:04] driver [MediaTek MT7531 PHY] [ 1.317760] mt7530 mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.324816] DSA: tree 0 setup [ 1.325069] mt7530 mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.327777] mt7530-nl: genl_register_family_with_ops [ 1.340380] mtd_dual.dual_area_crc[0xFFFFFFFF] [ 1.344816] mtd_dual.dual_area.bootnum[255] [ 1.349145] UBI: auto-attach mtd8 [ 1.352459] ubi0: attaching mtd8 [ 1.598415] ubi0: scanning is finished [ 1.606061] ubi0: attached mtd8 (name “ubi”, size 100 MiB) [ 1.611542] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.618404] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.625178] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.632126] ubi0: good PEBs: 800, bad PEBs: 0, corrupted PEBs: 0 [ 1.638120] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 1.645329] ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1721983423 [ 1.654446] ubi0: available PEBs: 0, total reserved PEBs: 800, PEBs reserved for bad PEB handling: 38 [ 1.663655] ubi0: background thread “ubi_bgt0d” started, PID 821 [ 1.664184] block ubiblock0_1: created from ubi0:1(rootfs) [ 1.675133] ubiblock: device ubiblock0_1 (rootfs) set to be root filesystem [ 1.682086] hctosys: unable to open rtc device (rtc0) [ 1.689786] VFS: Mounted root (squashfs filesystem) readonly on device 253:0. [ 1.697089] Freeing unused kernel memory: 448K [ 1.718872] Run /sbin/init as init process [ 1.843400] init: Console is alive [ 1.846879] init: - watchdog - [ 2.262916] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 2.286370] conninfra@(mtk_conninfra_drv_init:644) Before platform_driver_register [ 2.294059] Get Index(0-TOP_MISC_BASE) phy_addr(0x11d10000) vir_addr=(0xffffffc010bd5000) size=(0x1000) [ 2.303441] Get Index(1-TOPRGU_BASE) phy_addr(0x1001c000) vir_addr=(0xffffffc010bdd000) size=(0x1000) [ 2.312650] Get Index(2-GPIO_BASE) phy_addr(0x1001f000) vir_addr=(0xffffffc010be5000) size=(0x1000) [ 2.321681] Get Index(3-IOCFG_TR_BASE) phy_addr(0x11f00000) vir_addr=(0xffffffc010bed000) size=(0x1000) [ 2.331064] Get Index(4-IOCFG_TL_BASE) phy_addr(0x11f10000) vir_addr=(0xffffffc010bf5000) size=(0x1000) [ 2.340442] Get Index(5-INFRACFG_AO_BASE) phy_addr(0x10003000) vir_addr=(0xffffffc010bfd000) size=(0x1000) [ 2.350082] Get Index(6-CONN_INFRA_CFG_BASE) phy_addr(0x18001000) vir_addr=(0xffffffc010e0d000) size=(0x1000) [ 2.359981] Get Index(7-CONN_INFRA_SYSRAM_BASE) phy_addr(0x18050000) vir_addr=(0xffffffc010e15000) size=(0x1000) [ 2.370140] Get Index(8-CONN_INFRA_CLKGEN_ON_TOP_BASE) phy_addr(0x18009000) vir_addr=(0xffffffc010e1d000) size=(0x1000) [ 2.380907] Get Index(9-CONN_HOST_CSR_TOP_BASE) phy_addr(0x18060000) vir_addr=(0xffffffc010e25000) size=(0x1000) [ 2.391068] Get Index(10-CONN_INFRA_BUS_CR_BASE) phy_addr(0x1800e000) vir_addr=(0xffffffc010e2d000) size=(0x1000) [ 2.401315] Get Index(11-CONN_INFRA_RGU_BASE) phy_addr(0x18000000) vir_addr=(0xffffffc010e35000) size=(0x1000) [ 2.411301] Get Index(12-CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18005000) vir_addr=(0xffffffc010e3d000) size=(0x1000) [ 2.421720] Get Index(13-INST2_CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18085000) vir_addr=(0xffffffc010e3f000) size=(0x1000) [ 2.432661] Get Index(14-CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18004000) vir_addr=(0xffffffc010e41000) size=(0x1000) [ 2.443082] Get Index(15-INST2_CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18084000) vir_addr=(0xffffffc010e43000) size=(0x1000) [ 2.454023] Get Index(16-CONN_SEMAPHORE_BASE) phy_addr(0x18070000) vir_addr=(0xffffffc010ee0000) size=(0x10000) [ 2.464096] Get Index(17-CONN_AFE_CTL_BASE) phy_addr(0x18003000) vir_addr=(0xffffffc010e45000) size=(0x1000) [ 2.473909] Get Index(18-CONN_AFE_CTL_2ND_BASE) phy_addr(0x18083000) vir_addr=(0xffffffc010e47000) size=(0x1000) [ 2.484070] Get Index(19-WF_TOP_SLPPROT_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010f00000) size=(0x10000) [ 2.494403] Get Index(20-WF_TOP_CFG_BASE) phy_addr(0x184b0000) vir_addr=(0xffffffc010e49000) size=(0x1000) [ 2.504041] Get Index(21-WF_MCU_CONFIG_LS_BASE) phy_addr(0x184f0000) vir_addr=(0xffffffc010e4b000) size=(0x1000) [ 2.514201] Get Index(22-WF_MCU_BUS_CR_BASE) phy_addr(0x18400000) vir_addr=(0xffffffc010e4d000) size=(0x1000) [ 2.524099] Get Index(23-WF_MCUSYS_INFRA_BUS_FULL_U_DEBUG_CTRL_AO_BASE) phy_addr(0x18500000) vir_addr=(0xffffffc010e4f000) size=(0x1000) [ 2.536341] Get Index(24-WF_TOP_CFG_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010f20000) size=(0x10000) [ 2.546519] eeFlashId: 0x7986, EEPROM_content_valid = 1 [ 2.546830] conninfra@(consys_plt_hw_init:221) tx_stream = 0x4, rx_stream = 0x4, band0_pa_type = 0x3, band1_pa_type = 0x3 [ 2.563953] conninfra@(consys_plt_hw_init:230) adie_cfg_type = 2, one_adie_dbdc = 0 [ 2.571604] [emi_mng_init] gConEmiPhyBase = [0x4fc00000] size = [0x100000] fw size = [0x100000] ops=[000000006a1dd2c7] [ 2.582351] conninfra@(mtk_conninfra_drv_init:650) After platform_driver_register [ 2.590098] ConnInfra Dev: init (0) [ 2.595066] conninfra@(_consys_polling_chipid_int:459) Read CONNSYS HW IP version successfully! (0x02070000) [ 2.604882] conninfra@(consys_bus_clock_ctrl:485) drv=[4] conninfra_bus_clock_wpll=[0]→[16] enable [ 2.613916] conninfra@(connsys_d_die_cfg:530) D-die efuse: 0x00000000 [ 2.621377] conninfra@(_connsys_a_die_chip_id_confirm:1914) adie_idx[0]: A-die CHIP ID = 0x7976, HW Version = 0x8a20 [ 2.632892] conninfra@(_connsys_a_die_chip_id_confirm:1914) adie_idx[1]: A-die CHIP ID = 0x7976, HW Version = 0x8a20 [ 2.645413] conninfra@(consys_spi_write_nolock:670) addr = 0x0a00, val = 0xffffffff [ 2.654060] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 2.663714] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x00000000 [ 2.673369] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x43a60000 [ 2.687051] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x00000001, 0x00c40000, 0x008700b6, 0x00000000] [ 2.698561] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 2.708215] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a6003a [ 2.717870] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63a7003a [ 2.731552] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x00000001, 0x00c40000, 0x008700b6, 0x00000000] [ 2.743063] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 2.752718] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a7003a [ 2.762372] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63ac003a [ 2.776054] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x00000001, 0x00c40000, 0x008700b6, 0x00000000] [ 2.787565] conninfra@(consys_spi_write_nolock:670) addr = 0x0038, val = 0x4a563b00 [ 2.796213] conninfra@(consys_spi_write_nolock:670) addr = 0x065c, val = 0x1959f80f [ 2.804860] conninfra@(consys_spi_write_nolock:670) addr = 0x0664, val = 0x34d00fe0 [ 2.814516] conninfra@(consys_spi_write_nolock:670) addr = 0x0a00, val = 0xffffffff [ 2.823164] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 2.832818] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x00000000 [ 2.842472] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x43a60000 [ 2.856155] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x00000001, 0x00c40000, 0x008800be, 0x00000000] [ 2.867665] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 2.877320] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a6003a [ 2.886976] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63a7003a [ 2.900658] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x00000001, 0x00c40000, 0x008800be, 0x00000000] [ 2.912168] conninfra@(consys_spi_write_nolock:670) addr = 0x0144, val = 0x00000002 [ 2.921823] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x23a7003a [ 2.931477] conninfra@(consys_spi_write_nolock:670) addr = 0x0148, val = 0x63ac003a [ 2.945158] conninfra@(connsys_a_die_efuse_read_nolock:906) efuse = [0x00000001, 0x00c40000, 0x008800be, 0x00000000] [ 2.956669] conninfra@(consys_spi_write_nolock:670) addr = 0x0038, val = 0x4a563b00 [ 2.965317] conninfra@(consys_spi_write_nolock:670) addr = 0x065c, val = 0x1959f80f [ 2.973965] conninfra@(consys_spi_write_nolock:670) addr = 0x0664, val = 0x34d00fe0 [ 2.982615] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x88888005 [ 2.992220] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x00000005 [ 3.000869] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x88888005 [ 3.010474] conninfra@(consys_spi_write_nolock:670) addr = 0x0070, val = 0x00000005 [ 3.019061] conninfra@(_consys_polling_chipid_int:459) Read CONNSYS HW IP version successfully! (0x02070000) [ 3.028873] conninfra@(_consys_hw_conninfra_wakeup:470) conninfra_wakeup refcnt=[0]→[1] wakeup!! [ 3.037739] conninfra@(_consys_hw_conninfra_sleep:490) conninfra_sleep refcnt=[1]→[0] sleep!! [ 3.046336] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[0] CONNINFRA=[1] [ 3.064344] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 3.071324] fsl-ehci: Freescale EHCI Host controller driver [ 3.077316] ehci-platform: EHCI generic platform driver [ 3.083598] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 3.090189] ohci-platform: OHCI generic platform driver [ 3.097772] mediatek_soc_hnat 15100000.hnat: wan = eth1 [ 3.103004] mediatek_soc_hnat 15100000.hnat: lan = lan [ 3.108131] mediatek_soc_hnat 15100000.hnat: lan2 = eth2 [ 3.113431] mediatek_soc_hnat 15100000.hnat: ppd = eth0 [ 3.118646] mediatek_soc_hnat 15100000.hnat: gmac num = 2 [ 3.124034] mediatek_soc_hnat 15100000.hnat: ppe num = 1 [ 3.129684] mediatek_soc_hnat 15100000.hnat: PPE0 entry number = 8192 [ 3.146376] mediatek_soc_hnat 15100000.hnat: PPE0 hwnat start [ 3.152165] hnat roaming work enable [ 3.158270] warp_module_init(): module init and register callback for warp [ 3.165171] create warp_ctrl ok!!! [ 3.168608] wed_get_slot_map(): assign slot_id:0 for entry: 0! [ 3.174442] wed_get_slot_map(): assign slot_id:1 for entry: 1! [ 3.181330] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 3.198734] init: - preinit - [ 3.478153] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 3.486583] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 3.598805] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 3.605927] 8021q: adding VLAN 0 to HW filter on device lan1 Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 7.664857] mount_root: loading kmods from internal overlay [ 7.677651] kmodloader: loading kernel modules from etc/modules-boot.d/* [ 7.685631] kmodloader: done loading kernel modules from etc/modules-boot.d/* [ 8.433592] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 8.439350] UBIFS (ubi0:2): background thread “ubifs_bgt0_2” started, PID 968 [ 8.457455] UBIFS (ubi0:2): recovery needed [ 8.526370] UBIFS (ubi0:2): recovery completed [ 8.530856] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name “rootfs_data” [ 8.538675] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 8.548575] UBIFS (ubi0:2): FS size: 57520128 bytes (54 MiB, 453 LEBs), journal size 2920448 bytes (2 MiB, 23 LEBs) [ 8.558994] UBIFS (ubi0:2): reserved for root: 2716817 bytes (2653 KiB) [ 8.565598] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 0E9EB5F6-FABD-452E-B6E1-B0CA1A32B89A, small LPT model [ 8.577656] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 8.587926] block: extroot: not configured [ 8.592111] UBIFS (ubi0:2): un-mount UBI device 0 [ 8.596816] UBIFS (ubi0:2): background thread “ubifs_bgt0_2” stops [ 8.605148] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 8.610883] UBIFS (ubi0:2): background thread “ubifs_bgt0_2” started, PID 971 [ 8.650653] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name “rootfs_data” [ 8.658478] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 8.668379] UBIFS (ubi0:2): FS size: 57520128 bytes (54 MiB, 453 LEBs), journal size 2920448 bytes (2 MiB, 23 LEBs) [ 8.678799] UBIFS (ubi0:2): reserved for root: 2716817 bytes (2653 KiB) [ 8.685404] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 0E9EB5F6-FABD-452E-B6E1-B0CA1A32B89A, small LPT model [ 8.699018] mount_root: loading kmods from internal overlay [ 8.711050] kmodloader: loading kernel modules from /tmp/overlay/upper/etc/modules-boot.d/* [ 8.720506] kmodloader: done loading kernel modules from /tmp/overlay/upper/etc/modules-boot.d/* [ 9.418559] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 9.427850] block: extroot: not configured [ 9.433149] mount_root: switching to ubifs overlay [ 9.443962] urandom-seed: Seeding with /etc/urandom.seed [ 9.477022] procd: - early - [ 9.479945] procd: - watchdog - [ 10.004915] procd: - watchdog - [ 10.008271] procd: - ubus - [ 10.062683] procd: - init - [ 10.480863] kmodloader: loading kernel modules from /etc/modules.d/* [ 10.501484] MACsec IEEE 802.1AE [ 10.511486] RPC: Registered named UNIX socket transport module. [ 10.517418] RPC: Registered udp transport module. [ 10.522127] RPC: Registered tcp transport module. [ 10.526820] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 10.537238] NET: Registered protocol family 15 [ 10.542707] tun: Universal TUN/TAP device driver, 1.6 [ 10.556212] l2tp_core: L2TP core driver, V2.0 [ 10.561168] l2tp_netlink: L2TP netlink interface [ 10.566585] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 10.573769] nat46: module (version 362640b41ae52b732d9e9729e61ac555492442a3) loaded. [ 10.582704] gre: GRE over IPv4 demultiplexor driver [ 10.586516] urngd: v1.0.2 started. [ 10.591174] ip_gre: GRE over IPv4 tunneling driver [ 10.597844] ip6_gre: GRE over IPv6 tunneling driver [ 10.606655] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 10.615291] GACT probability on [ 10.619193] Mirror/redirect action on [ 10.625773] u32 classifier [ 10.628492] input device check on [ 10.632159] Actions configured [ 10.639540] fuse: init (API version 7.31) [ 10.648596] Current mapfilter version v3.0.1.2 [ 11.564244] mt_wifi: module license 'Proprietary' taints kernel. [ 11.570254] Disabling lock debugging due to kernel taint [ 11.609297] conninfra@(conninfra_pwr_on:120) [conninfra_pwr_on] drv=[3] [ 11.616843] conninfra@(_consys_polling_chipid_int:459) Read CONNSYS HW IP version successfully! (0x02070000) [ 11.634700] Adie Type: 0x7976 [ 11.634702] SKU Type: 6000 [ 11.638619] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[1] CONNINFRA=[1] [ 11.652685] WiFi@C12L1,get_dbg_setting_by_profile() 4425: debug level setting=INDEX0_debug_level not found!! [ 11.662521] WiFi@C12L1,get_dbg_setting_by_profile() 4448: debug option setting=INDEX0_debug_option not found!! [ 11.672580] mt_rbus 0000:00:00.0: runtime IRQ mapping not provided by arch [ 11.685170] mt7986_init()-→ [ 11.688084] sku:0xf, ADIE=MT7976 [ 11.692447] ←-mt7986_init() [ 11.695359] RtmpRaDevCtrlInit(): MCS_LUT not used becasue MacTb size(544) > 128! [ 11.702869] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX1 [ 11.710204] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX2 [ 11.717531] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX3 [ 11.724848] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX4 [ 11.732161] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX5 [ 11.739470] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX6 [ 11.746779] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX7 [ 11.754086] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX8 [ 11.761394] WiFi@C12L1,match_index_by_chipname() 758: not find chip name INDEX9 [ 11.768691] WiFi@C12L2,match_index_by_chipname() 763: Not find slot id, back to old rule. [ 11.776944] msta_ifname not found [ 11.786933] -→mtfwd_init(ver:2.0) [ 11.786972] ←- [ 11.790861] mtk_warp_proxy: module uses symbols from proprietary module mt_wifi, inheriting taint. [ 11.802583] -→mtqos_init(), mtqos ver:1.0 [ 11.802621] ←- [ 11.821230] nf_conntrack_rtsp v0.7 loading [ 11.830046] nf_nat_rtsp v0.7 loading [ 11.847696] xt_time: kernel timezone is -0000 [ 11.853571] PPP generic driver version 2.4.2 [ 11.858403] PPP MPPE Compression module registered [ 11.863971] NET: Registered protocol family 24 [ 11.869026] PPTP driver version 0.8.5 [ 11.873794] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 11.879880] kmodloader: done loading kernel modules from /etc/modules.d/* [ 12.342062] mtk_soc_eth 15100000.ethernet eth0: TX vlan offload cannot be enabled when dsa is attached. [ 12.352102] mtk_soc_eth 15100000.ethernet eth0: TX vlan offload cannot be enabled when dsa is attached. [ 12.521859] copy from user[46]: |ra0 ra1 ra2 rax0 rax1 rax2 lan0 lan1 lan2 lan3| [ 12.529260] listening on interface: [ 12.529262] |ra0| [ 12.532840] |ra1| [ 12.534754] |ra2| [ 12.536680] |rax0| [ 12.538594] |rax1| [ 12.540602] |rax2| [ 12.542603] |lan0| [ 12.544639] |lan1| [ 12.546640] |lan2| [ 12.548650] |lan3| [ 12.550651] [ 13.767432] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 13.786567] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 13.794988] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 13.796104] mt7530 mdio-bus:1f lan0: configuring for phy/gmii link mode [ 13.810769] 8021q: adding VLAN 0 to HW filter on device lan0 [ 13.818714] br-lan: port 1(lan0) entered blocking state [ 13.823950] br-lan: port 1(lan0) entered disabled state [ 13.829519] device lan0 entered promiscuous mode [ 13.834143] device eth0 entered promiscuous mode [ 13.845055] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 13.852495] 8021q: adding VLAN 0 to HW filter on device lan1 [ 13.860525] br-lan: port 2(lan1) entered blocking state [ 13.865799] br-lan: port 2(lan1) entered disabled state [ 13.871628] device lan1 entered promiscuous mode [ 13.880898] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 13.888070] 8021q: adding VLAN 0 to HW filter on device lan2 [ 13.896013] br-lan: port 3(lan2) entered blocking state [ 13.901245] br-lan: port 3(lan2) entered disabled state [ 13.907174] device lan2 entered promiscuous mode [ 13.916239] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 13.923380] 8021q: adding VLAN 0 to HW filter on device lan3 [ 13.931315] br-lan: port 4(lan3) entered blocking state [ 13.936538] br-lan: port 4(lan3) entered disabled state [ 13.942699] device lan3 entered promiscuous mode [ 13.980096] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:06] driver [Maxlinear Ethernet GPY211C] [ 13.989331] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/2500base-x link mode [ 14.782908] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 15.173743] /dev/ubi0_1: Can't open blockdev [ 15.383032] 7986@C01L2,RTMP_COM_IoctlHandle() 1517: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 15.391348] msta_ifname not found [ 15.395228] warp_cap_support(): chip_id=7986 is in WHNAT support list [ 15.401754] warp_entry_acquire(): bus slot:0, hook to WARP, entry id=0, entry: 00000000a568e924 [ 15.410469] client_hif_specific_get(): hw→base_phy_addr 0x18000000!! [ 15.417020] warp_entry_get_by_pdev(): return entry[0] [ 15.422420] warp_msg_register():warp,pid,2998,id,0,wed_idx,0 [ 15.428093] warp_dev0 15010000.wed: Using 32bit DMA for streaming map [ 15.434533] warp_dev0 15010000.wed: Using 32bit DMA for coherent map [ 15.440951] wed_init(0): res_start = 0x15010000, size = 1000, irq=6,base_addr=0xffffffc0125a5000 [ 15.450172] wed_ring_init(): wed tx ring init result = 0 [ 15.456116] wed_ring_init(): wed rx ring init result = 0 [ 15.465254] GetEntryFromFreeList: allocated new pool [ 15.471791] GetEntryFromFreeList: allocated new pool [ 15.478172] GetEntryFromFreeList: allocated new pool [ 15.484542] GetEntryFromFreeList: allocated new pool [ 15.491568] create wed ok!!! [ 15.494466] wdma_init(): wdma(0) base_addr=0xffffffc0125ad800, base_phy_addr=0x15104800 [ 15.503248] warp_woif_bus_init_hw(): bus:0000000069aa7673, txring: 20, pa: 0x0000000073a6a000, 0x0000000073a6a000, 24, 28, 3c [ 15.514552] warp_woif_bus_init_hw(): bus:0000000069aa7673, rxring: 50, pa: 0x0000000073ac4000, 0x0000000073ac4000, 54, 58, 6c [ 15.525917] get_region_info(): wed_idx = 0, base_addr = 0x0000000057b619f7, size = 0x40000, res.start = 0x4fd00000, shared:0 [ 15.537161] get_region_info(): wed_idx = 0, base_addr = 0x00000000b09dd6af, size = 0x8000, res.start = 0x151e0000, shared:0 [ 15.548348] get_region_info(): wed_idx = 0, base_addr = 0x00000000c61ecc01, size = 0x240000, res.start = 0x4fd80000, shared:1 [ 15.559696] get_region_info(): wed_idx = 0, base_addr = 0x00000000c984308e, size = 0x1000, res.start = 0x15194000, shared:0 [ 15.570819] warp_fwdl_mcu_mode(): mcu mode, need fwdl [ 15.610723] ########## WO Firmware ########## [ 15.615094] Chip ID: 0x0000 [ 15.617876] ECO version:0 [ 15.620507] Version: DEV_000000 [ 15.623652] Build date: 20230628111146 [ 15.627400] Total region:3 [ 15.630095] ################################# [ 15.634478] Parsing tailer region 0 [ 15.637985] Target address: 0x151e0000 [ 15.641838] Download size: 21968 [ 15.645204] Parsing tailer region 1 [ 15.648714] Target address: 0x4fd00000 [ 15.652555] Download size: 87712 [ 15.655985] Parsing tailer region 2 [ 15.659502] Target address: 0x4fd80000 [ 15.663343] Download size: 2345040 [ 15.669766] warp_fwdl_ready_check_mcu_mode(): waiting for wocpu [ 15.694165] warp_fwdl_ready_check_mcu_mode(): wocpu is ready [ 15.699861] warp_woctrl_init_state(), wo_state: WO_STATE_ENABLE [ 15.705816] wo_proc_init done 00000000c808bac3 [ 15.710368] wo_exep_proc_init done 00000000c808bac3 [ 15.715385] wo_exception_init(0): exp log= 0x00000000d98621a7, phy_addr= 0x00000000735a8000 size= 32768 [ 15.724942] warp_probe(): probe fail since warp is full! [ 15.730326] warp_dev0: probe of 15010000.wed2 failed with error -1 [ 15.736698] 7986@C01L3,mt_wifi_open() 345: whnat_en=1 [ 15.803368] 7986@C12L1,RTMPWirelessModeCfg() 610: Init: BSS0 PhyMode=78 [ 15.810034] 7986@C12L1,RTMPWirelessModeCfg() 610: Init: BSS1 PhyMode=78 [ 15.816675] 7986@C12L1,RTMPWirelessModeCfg() 610: Init: BSS2 PhyMode=78 [ 15.823305] 7986@C12L1,RTMPWirelessModeCfg() 610: Init: BSS3 PhyMode=177 [ 15.830025] 7986@C12L1,RTMPWirelessModeCfg() 610: Init: BSS4 PhyMode=177 [ 15.836741] 7986@C12L1,RTMPWirelessModeCfg() 610: Init: BSS5 PhyMode=177 [ 15.843680] 7986@C23L3,auto_ch_select_set_cfg() 3440: BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 15.853272] 7986@C23L3,auto_ch_select_set_cfg() 3440: BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 15.873121] 7986@C12L1,SCS_Enable_set_cfg() 734: SCSEnable [0]= 1 [ 15.879226] 7986@C12L1,SCS_Enable_set_cfg() 734: SCSEnable [0]= 1 [ 15.910411] 7986@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=0, Desired MFPC=1 [ 15.917815] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=1, Desired MFPC=1 [ 15.925222] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=2, Desired MFPC=1 [ 15.932649] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=3, Desired MFPC=1 [ 15.940064] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=4, Desired MFPC=1 [ 15.947524] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=5, Desired MFPC=1 [ 15.956199] WiFi@C12L1,RTMPSetProfileParameters() 8700: ra0, QoSMgmtCapa=0 [ 15.963087] WiFi@C12L1,RTMPSetProfileParameters() 8700: (null), QoSMgmtCapa=0 [ 15.970228] WiFi@C12L1,RTMPSetProfileParameters() 8700: (null), QoSMgmtCapa=0 [ 15.977413] WiFi@C12L1,RTMPSetProfileParameters() 8700: (null), QoSMgmtCapa=0 [ 15.984553] WiFi@C12L1,RTMPSetProfileParameters() 8700: (null), QoSMgmtCapa=0 [ 15.991693] WiFi@C12L1,RTMPSetProfileParameters() 8700: (null), QoSMgmtCapa=0 [ 16.003001] WiFi@C12L1,rtmp_read_ap_client_from_file() 1638: APCLI[0] ApCliMuMimoDlEnable = 0 [ 16.011521] WiFi@C12L1,rtmp_read_ap_client_from_file() 1638: APCLI[1] ApCliMuMimoDlEnable = 0 [ 16.020163] WiFi@C12L1,rtmp_read_ap_client_from_file() 1657: APCLI[0] ApCliMuMimoUlEnable = 0 [ 16.028694] WiFi@C12L1,rtmp_read_ap_client_from_file() 1657: APCLI[1] ApCliMuMimoUlEnable = 0 [ 16.038582] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 16.049795] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension command type = 48 [ 16.058249] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 16.069476] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension command type = 48 [ 16.138653] wdma_dma_ctrl(): WDMA_GLO_CFG=50404e70, txrx = 0 [ 16.150812] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e70, txrx = 0 [ 16.166333] warp_tx_ring_init_hw(): configure ring 0 setting [ 16.172032] warp_tx_ring_init_hw(): wed:00000000d140157e wifi:00000000bf03d84e: 24420=7c2c8000,24424=2048,24428=0 [ 16.182326] warp_tx_ring_init_hw(): configure ring 1 setting [ 16.188016] warp_tx_ring_init_hw(): wed:00000000d140157e wifi:00000000bf03d84e: 24430=7c2d0000,24434=2048,24438=0 [ 16.198414] set_rrocfg,0 [ 16.223968] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e74, txrx = 3 [ 16.229679] sku:0xf, ADIE=MT7976 [ 16.234067] using E1 ROM patch [ 16.237149] using E1 RAM [ 16.239719] current sync CR = 0x1 [ 16.243059] Built date: 20230628111101a [ 16.246997] Platform: ALPS [ 16.249802] HW/SW version: 0x8a108a10 [ 16.253578] Patch version: 0xffffffff [ 16.265062] current sync CR = 0x1 [ 16.268501] Chip ID: 0x0f [ 16.271235] Eco version: 0x00 [ 16.274283] Region number: 0x0b [ 16.277537] Format version: 0x02 [ 16.280871] Format flag: 0x01 [ 16.283942] Ram version: 000000 [ 16.287537] Built date: 20230628111145 [ 16.291395] Common crc: 0x40cdfd02 [ 16.294901] Release info: header tag = 0, total length = 64 [ 16.300576] tag 1, padding length = 1, tag length = 59 [ 16.305817] payload: t-neptune-main-mt7915-1953-MT7986_MP2111_IMP-20230628110614 [ 16.331161] Chip ID: 0x00 [ 16.333871] Eco version: 0x00 [ 16.336934] Region number: 0x03 [ 16.340168] Format version: 0x02 [ 16.343495] Format flag: 0x01 [ 16.346545] Ram version: DEV_000000 [ 16.350130] Built date: 20230628111126 [ 16.353988] Common crc: 0x4af019e5 [ 16.357488] Release info: header tag = 0, total length = 0 [ 16.458068] current sync CR = 0x7 [ 16.461525] efuse_probe: efuse = deaddead [ 16.722447] sku:0xf, ADIE=MT7976 [ 16.728591] WiFi@C02L1,is_cal_free_ic() 1011: is_cal_free_ic(1011) offset:1000, 0,a [ 16.737103] sku:0xf, ADIE=MT7976 [ 16.756395] sku:0xf, ADIE=MT7976 [ 16.775373] WiFi@C02L1,is_cal_free_ic() 1030: iCal free [ 16.781434] sku:0xf, ADIE=MT7976 [ 17.627001] Per-port-per-queue mode is going to be enabled! [ 17.632656] PPPQ use qid 0~5 (scheduler 0). [ 20.741053] WiFi@C17L1,RTMPReadTxPwrPerRate() 450: (450): Don't Support this now! [ 20.748585] WiFi@C01L1,AntCfgInit() 3154: Not support for HIF_MT yet! [ 20.768413] ch_switch_monitor_state_machine_init:: enter [ 20.773729] ch_switch_monitor_cfg_reset:: enter [ 20.778281] ch_switch_monitor_cfg_reset:: enter [ 20.783121] WiFi@C17L1,tx_pwr_comp_init() 641: NotSupportYet! [ 20.788903] WiFi@C12L1,SCS_init() 880: INIT SCSEnable [0]= 1 [ 20.794593] WiFi@C12L1,SCS_init() 887: INIT SCSEnable [1]= 1 [ 20.800366] WiFi@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 20.805865] WiFi@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 20.811336] WiFi@C14L1,IPMacTable_init() 348: IPMacTable already inited! [ 20.838181] wdma_dma_ctrl(): WDMA_GLO_CFG=50804e75, txrx = 3 [ 20.843956] WiFi@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 20.849455] WiFi@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 20.854920] WiFi@C00L1,set_ack_timeout_mode_byband() 13506: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 20.864837] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13594: DAT config band(0) cck_timeout Fail! [ 20.873529] WiFi@C00L1,set_ack_timeout_mode_byband() 13506: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 20.883438] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13605: DAT config band(0) ofdm_timeout Fail! [ 20.892216] WiFi@C00L1,set_ack_timeout_mode_byband() 13506: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 20.902121] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13616: DAT config band(0) ofdma_timeout Fail! [ 20.910991] WiFi@C00L1,set_ack_timeout_mode_byband() 13506: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 20.920921] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13594: DAT config band(1) cck_timeout Fail! [ 20.929625] WiFi@C00L1,set_ack_timeout_mode_byband() 13506: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 20.939540] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13605: DAT config band(1) ofdm_timeout Fail! [ 20.948320] WiFi@C00L1,set_ack_timeout_mode_byband() 13506: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 20.958227] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13616: DAT config band(1) ofdma_timeout Fail! [ 20.969293] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 20.977492] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 21.185323] :(op = 1) [ 21.192390] 7986@C00L1,FastPathCheckMIC() 1010: (ret = 0)(op:1) [ 21.198321] 7986@C00L2,red_tail_drop_init() 83: red_tail_drop_init: available token:8192, whnat_en:1 [ 21.207466] 7986@C00L1,MtCmdCr4RedSet() 914: MtCmdCr4RedSet: (ret = 0) [ 21.213991] 7986@C00L1,SendRedCmd() 1049: SendRedCmd:(ret = 1) [ 21.219973] 7986@C01L2,RTMP_COM_IoctlHandle() 1494: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 21.227980] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 0 [ 21.233606] 7986@C18L3,BuildChannelList() 507: [ 21.238157] 7986@C00L3,BuildChannelList() 537: BandIdx = 0, PhyMode = 78, ChListNum = 11: [ 21.246333] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.252681] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.259119] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.265466] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.271904] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.278251] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.284688] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.291036] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.297473] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.303819] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.310256] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.316603] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.323040] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.329387] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.335824] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.342171] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.348608] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.354956] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.361392] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.367740] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.374177] 7986@C14L1,vht80_channel_group() 1982: invalid ch_band 0 [ 21.380524] 7986@C14L1,vht160_channel_group() 2073: invalid ch_band 0 [ 21.386960] 7986@C23L1,DfsBuildChannelList() 4069: [RDM]: wdev is not 5G. [ 21.393762] 7986@C23L3,RadarStateCheck() 263: Bw160 Zero Wait State: 0, phy_bw=1, band_bw[band_idx]=0 [ 21.403035] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(0), ht_bw(1), extcha(1), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 21.414520] phy_freq_adjust : no prim_ch value for adjust! [ 21.420005] 7986@C23L1,operate_loader_phy() 364: phy_freq_adjust failed!WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 21.433456] wdev_attr_update(): wdevId0 = 70:5a:6f:50:40:ac [ 21.439068] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 21.448041] 7986@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=0 [ 21.453874] 7986@C23L1,HcGetBandByChannel() 1233: No hdev parking on channel:0, just return a default band_idx 0! [ 21.464152] 7986@C02L2,AsicRadioOnOffCtrl() 2375: DbdcIdx=0 RadioOn [ 21.471008] 7986@C00L2,ApAutoChannelAtBootUp() 339: ----------------→ [ 21.477637] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 21.483130] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 21.488774] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x120/0x440 [mt_wifi])!! [ 21.501044] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 21.511558] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:1 cench1:1 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 21.523270] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 21.532412] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=1, ctrl_ch2=0, cent_ch=1 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 21.591027] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=1, ctrl_ch2=0, cent_ch=1, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 21.811105] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 21.821627] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:2 cench1:2 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 21.833331] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 21.842478] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 21.901099] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=2, ctrl_ch2=0, cent_ch=2, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 22.123119] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 22.133640] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:3 cench1:3 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 22.145346] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 22.154490] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 22.213032] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=3, ctrl_ch2=0, cent_ch=3, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 22.435114] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 22.445641] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:4 cench1:4 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 22.457347] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 22.466490] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 22.525130] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=4, ctrl_ch2=0, cent_ch=4, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 22.747109] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 22.757636] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:5 cench1:5 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 22.769342] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 22.778484] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 22.837066] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=5, ctrl_ch2=0, cent_ch=5, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) System loading complete. [ 23.059127] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 23.069678] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:6 cench1:6 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 23.081463] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 23.090673] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 23.149262] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=6, ctrl_ch2=0, cent_ch=6, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 23.371125] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 23.381648] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:7 cench1:7 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 23.393401] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 23.402567] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 23.461187] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=7, ctrl_ch2=0, cent_ch=7, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 23.683119] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 23.693646] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:8 cench1:8 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 23.705352] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 23.714502] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 23.773137] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=8, ctrl_ch2=0, cent_ch=8, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 23.995146] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 24.005759] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:9 cench1:9 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 24.017496] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.026676] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=9, ctrl_ch2=0, cent_ch=9 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 24.085287] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=9, ctrl_ch2=0, cent_ch=9, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 24.307157] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 24.317713] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:10 cench1:10 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 24.329628] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.338801] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=10, ctrl_ch2=0, cent_ch=10 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 24.397633] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=10, ctrl_ch2=0, cent_ch=10, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 24.619155] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 24.629718] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:11 cench1:11 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 24.641646] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.650821] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=11, ctrl_ch2=0, cent_ch=11 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 24.709674] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=11, ctrl_ch2=0, cent_ch=11, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 24.931425] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x2d0/0x440 [mt_wifi])!! [ 24.943745] 7986@C23L3,SelectClearChannelBusyTime() 1893:
[ 24.955169] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 1 : Busy Time = 37401, Skip Channel = FALSE, BwCap = TRUE [ 24.966574] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 2 : Busy Time = 41254, Skip Channel = FALSE, BwCap = TRUE [ 24.977979] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 3 : Busy Time = 43603, Skip Channel = FALSE, BwCap = TRUE [ 24.989380] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 4 : Busy Time = 21249, Skip Channel = FALSE, BwCap = TRUE [ 25.000810] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 5 : Busy Time = 20552, Skip Channel = FALSE, BwCap = TRUE [ 25.012229] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 6 : Busy Time = 36672, Skip Channel = FALSE, BwCap = TRUE [ 25.023636] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 7 : Busy Time = 21150, Skip Channel = FALSE, BwCap = TRUE [ 25.035033] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 8 : Busy Time = 7395, Skip Channel = FALSE, BwCap = TRUE [ 25.046435] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 9 : Busy Time = 13087, Skip Channel = FALSE, BwCap = TRUE [ 25.057840] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 10 : Busy Time = 15539, Skip Channel = FALSE, BwCap = TRUE [ 25.069271] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 11 : Busy Time = 10612, Skip Channel = FALSE, BwCap = TRUE [ 25.080677] 7986@C23L3,SelectClearChannelBusyTime() 1902:
[ 25.092079] 7986@C23L3,SelectClearChannelBusyTime() 2138: Rule 3 Channel Busy time value : Select Primary Channel 8 [ 25.102530] 7986@C23L3,SelectClearChannelBusyTime() 2140: Rule 3 Channel Busy time value : Min Channel Busy = 7395 [ 25.112893] 7986@C23L3,SelectClearChannelBusyTime() 2145: Rule 3 Channel Busy time value : BW = 20 [ 25.121885] 7986@C23L3,SelectClearChannelBusyTime() 2179: [SelectClearChannelBusyTime] - band0 END [ 25.130870] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(1), extcha(3), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 25.142367] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(1), prim_ch(8), cen_ch_1(6), cen_ch_2(0),ext_cha(3)! [ 25.153879] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(1), prim_ch(8), cen_ch_1(6), cen_ch_2(0)! [ 25.164591] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 25.172881] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:1 vht_bw:0 bw:1 extcha:3 [ 25.183410] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:8 cench1:6 cench2:0 rxstream:4 ap_bw:0 apCenCh:0 Scan:0 [ 25.195134] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.204310] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=8, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=1, TXStream=4, RXStream=4, scan(0) [ 25.524807] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=8, ctrl_ch2=0, cent_ch=6, RxPath=f, BandIdx=0, ChBand=0, BW=1,TXStream=4, RXStream=15, scan(0) [ 25.538719] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 25.549864] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 25.555823] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 25.564118] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(1), extcha(3), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 25.575607] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(1), prim_ch(8), cen_ch_1(6), cen_ch_2(0),ext_cha(3)! [ 25.587092] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(1), prim_ch(8), cen_ch_1(6), cen_ch_2(0)! [ 25.597795] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 25.606076] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 25.612010] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 25.620301] 7986@C23L1,DfsBuildChannelList() 4069: [RDM]: wdev is not 5G. [ 25.627095] 7986@C23L3,zero_wait_dfs_switch_ch() 1215: outband ch 0, ch_stat 0 [ 25.634635] 7986@C08L2,APStartUpForMbss() 1001: ==⇒(caller:ap_inf_open+0x158/0x560 [mt_wifi]), mbss_idx:0, CfgMode:0 [ 25.645337] 7986@C15L2,APPMFInit() 133: [PMF] apidx=0, MFPC=1, MFPR=0, SHA256=0 [ 25.694800] 7986@C18L3,BuildChannelList() 507: [ 25.699625] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 25.707189] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 25.712649] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 25.723178] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:1 cench1:1 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 25.734962] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.744130] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=1, ctrl_ch2=0, cent_ch=1 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 25.802822] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=1, ctrl_ch2=0, cent_ch=1, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 25.816670] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 26.143035] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 26.148589] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 26.159191] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:2 cench1:2 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 26.171002] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.180182] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 26.238898] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=2, ctrl_ch2=0, cent_ch=2, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 26.252730] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 26.423309] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(0) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! [ 26.591033] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 26.596462] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 26.606981] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:3 cench1:3 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 26.618717] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.627856] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 26.686469] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=3, ctrl_ch2=0, cent_ch=3, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 26.700321] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 27.039017] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 27.044469] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 27.055003] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:4 cench1:4 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 27.066737] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.075930] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 27.134629] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=4, ctrl_ch2=0, cent_ch=4, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 27.148505] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 27.486951] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 27.492357] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 27.502880] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:5 cench1:5 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 27.514574] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.523704] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 27.582264] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=5, ctrl_ch2=0, cent_ch=5, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 27.596040] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 27.934953] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 27.940352] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 27.950866] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:6 cench1:6 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 27.962550] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.971682] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 28.030255] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=6, ctrl_ch2=0, cent_ch=6, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 28.044065] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 28.382972] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 28.388378] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 28.398912] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:7 cench1:7 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 28.410613] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 28.419742] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 28.478332] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=7, ctrl_ch2=0, cent_ch=7, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 28.492109] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 28.830955] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 28.836358] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 28.846873] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:8 cench1:8 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 28.858560] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 28.867690] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 28.926252] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=8, ctrl_ch2=0, cent_ch=8, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 28.940029] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 29.278987] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 29.284395] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 29.294914] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:9 cench1:9 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 29.306600] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 29.315733] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=9, ctrl_ch2=0, cent_ch=9 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 29.374309] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=9, ctrl_ch2=0, cent_ch=9, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 29.388082] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 29.726943] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 29.732343] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 29.742860] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:10 cench1:10 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 29.754713] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 29.763845] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=10, ctrl_ch2=0, cent_ch=10 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 29.822576] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=10, ctrl_ch2=0, cent_ch=10, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 29.836522] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 30.174985] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 30.180408] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 30.190925] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:11 cench1:11 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 30.202782] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 30.211914] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=11, ctrl_ch2=0, cent_ch=11 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(1) [ 30.270670] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=11, ctrl_ch2=0, cent_ch=11, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(1) [ 30.284619] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 30.622851] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(1), extcha(3), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 30.634323] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(1), prim_ch(8), cen_ch_1(6), cen_ch_2(0),ext_cha(3)! [ 30.645790] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(1), prim_ch(8), cen_ch_1(6), cen_ch_2(0)! [ 30.656476] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 30.664735] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:1 vht_bw:0 bw:1 extcha:3 [ 30.675245] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:8 cench1:6 cench2:0 rxstream:4 ap_bw:0 apCenCh:0 Scan:0 [ 30.686932] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 30.696072] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=8, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=1, TXStream=4, RXStream=4, scan(0) [ 31.021794] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=8, ctrl_ch2=0, cent_ch=6, RxPath=f, BandIdx=0, ChBand=0, BW=1,TXStream=4, RXStream=15, scan(0) [ 31.035467] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 31.046433] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 31.052352] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 31.060617] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(0), extcha(0), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 31.072084] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0),ext_cha(0)! [ 31.083548] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0)! [ 31.094231] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 31.102488] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:0 ch_band:0 htbw:0 vht_bw:0 bw:0 extcha:0 [ 31.112999] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:8 cench1:8 cench2:0 rxstream:4 ap_bw:0 apCenCh:0 Scan:0 [ 31.124670] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 31.133800] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=4, RXStream=4, scan(0) [ 31.459279] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=8, ctrl_ch2=0, cent_ch=8, RxPath=f, BandIdx=0, ChBand=0, BW=0,TXStream=4, RXStream=15, scan(0) [ 31.472962] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 31.483930] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 31.489849] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 31.498357] WiFi@C08L2,ap_link_up() 7199: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(0) [ 31.506971] 7986@C01L3,wifi_sys_linkup() 1231: wdev idx = 0 [ 31.557887] 7986@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wtbl_idx:543 for WDEV_TYPE:1 [ 31.557887] LinkToOmacIdx = 0, LinkToWdevType = 1 [ 31.572247] 7986@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=0 [ 31.592813] 7986@C08L3,UpdateBeaconHandler() 2067: BCN_UPDATE_INIT, OmacIdx = 0 (ra0) [ 31.600638] 7986@C08L3,UpdateBeaconHandler() 2080: Band0 BcnInitedRnd = 99 [ 31.607637] 7986@C00L1,TxCCKStreamCtrl() 20651: set wrong parameters [ 31.623152] PrintSrCmd: [ 31.623152] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.623152] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 31.637137] PrintSrCmd: [ 31.637137] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.637137] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.651123] PrintSrCmd: [ 31.651123] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.651123] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 31.665106] PrintSrCmd: [ 31.665106] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.665106] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.679176] BcnCheck start after 4900 ms (ra0) [ 31.683942] PrintSrCmd: [ 31.683942] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.683942] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.698014] PrintSrCmd: [ 31.698014] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 31.698014] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 31.712114] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 31.723063] 7986@C03L3,MtCmdTxPwrShowInfo() 13944: ucTxPowerInfoCatg: 2, BandIdx: 0 [ 31.730801] 7986@C03L3,MtCmdTxPwrShowInfo() 13973: (ret = 0) [ 31.730895] [mtf_txpower_all_rate_info] band_idx:0 pwr:48 ChBand:2G ePAGain:0 [ 31.736487] mtk_ppe_dev_register_hook : ineterface ra0 register (1) [ 31.750752] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 31.760317] 7986@C08L2,mbss_virtual_if_open() 134: ==⇒ ra1 [ 31.766032] 7986@C01L2,RTMP_COM_IoctlHandle() 1517: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 31.774169] 7986@C01L2,RTMP_COM_IoctlHandle() 1494: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 31.782212] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 1 [ 31.787874] 7986@C18L3,BuildChannelList() 507: [ 31.792509] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(0), extcha(0), vht_bw(0), cen_ch_2(0), PhyMode=78! W6x login: [ 31.804005] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0),ext_cha(0)! [ 31.816445] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0)! [ 31.827178] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 31.835462] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 31.841420] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 31.849943] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 31.857987] wdev_attr_update(): wdevId1 = 72:5a:6f:10:40:ac [ 31.863638] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[1]=9, bw_grp=16 omac=17 [ 31.872769] 7986@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=1 [ 31.878688] 7986@C02L2,AsicRadioOnOffCtrl() 2375: DbdcIdx=0 RadioOn [ 31.885608] 7986@C00L2,ApAutoChannelAtBootUp() 339: ----------------→ [ 31.892329] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 31.897914] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 31.903359] 7986@C00L1,ApAutoChannelAtBootUp() 507: not A band [ 31.909224] 7986@C08L1,ap_run_at_boot() 640: ACS is disable !! [ 31.916148] 7986@C08L2,APStartUpForMbss() 1001: ==⇒(caller:ap_inf_open+0x158/0x560 [mt_wifi]), mbss_idx:1, CfgMode:0 [ 31.926862] 7986@C15L2,APPMFInit() 133: [PMF] apidx=1, MFPC=1, MFPR=0, SHA256=0 [ 31.976284] 7986@C18L3,BuildChannelList() 507: [ 31.981099] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 31.988544] 7986@C08L2,APOverlappingBSSScan() 5200: leverage result of wdev(0@BN0), FallBack=1 (remaining 53720 ms) [ 31.998996] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(0), extcha(0), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 32.010501] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0),ext_cha(0)! [ 32.022001] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0)! [ 32.032711] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 32.041004] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 32.046939] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 32.055479] WiFi@C08L2,ap_link_up() 7199: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(1) [ 32.064116] 7986@C01L3,wifi_sys_linkup() 1231: wdev idx = 1 [ 32.115106] 7986@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wtbl_idx:542 for WDEV_TYPE:1 [ 32.115106] LinkToOmacIdx = 11, LinkToWdevType = 1 [ 32.129554] 7986@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=1 [ 32.142883] 7986@C08L3,UpdateBeaconHandler() 2067: BCN_UPDATE_INIT, OmacIdx = 11 (ra1) [ 32.150857] 7986@C00L1,TxCCKStreamCtrl() 20651: set wrong parameters [ 32.166371] PrintSrCmd: [ 32.166371] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 32.166371] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 32.180422] PrintSrCmd: [ 32.180422] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 32.180422] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 32.194451] PrintSrCmd: [ 32.194451] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 32.194451] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 32.208458] PrintSrCmd: [ 32.208458] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 32.208458] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 32.222533] PrintSrCmd: [ 32.222533] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 32.222533] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 32.236607] PrintSrCmd: [ 32.236607] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 32.236607] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 32.250703] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 32.261653] 7986@C03L3,MtCmdTxPwrShowInfo() 13944: ucTxPowerInfoCatg: 2, BandIdx: 0 [ 32.269392] 7986@C03L3,MtCmdTxPwrShowInfo() 13973: (ret = 0) [ 32.269496] [mtf_txpower_all_rate_info] band_idx:0 pwr:48 ChBand:2G ePAGain:0 [ 32.275057] mtk_ppe_dev_register_hook : ineterface ra1 register (2) [ 32.288960] br-guest: port 1(ra1) entered blocking state [ 32.294297] br-guest: port 1(ra1) entered disabled state [ 32.299822] device ra1 entered promiscuous mode [ 32.305375] br-guest: port 1(ra1) entered blocking state [ 32.310727] br-guest: port 1(ra1) entered forwarding state [ 32.316833] 7986@C08L2,mbss_virtual_if_open() 134: ==⇒ rax0 [ 32.322857] 7986@C01L2,RTMP_COM_IoctlHandle() 1517: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 32.330951] 7986@C01L2,RTMP_COM_IoctlHandle() 1494: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 32.338955] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 3 [ 32.344540] 7986@C18L3,BuildChannelList() 507: [ 32.349089] 7986@C00L3,BuildChannelList() 537: BandIdx = 1, PhyMode = 177, ChListNum = 9: [ 32.357313] 7986@C23L3,DfsBuildChannelList() 4114: Done [ 32.362554] 7986@C23L3,RadarStateCheck() 263: Bw160 Zero Wait State: 0, phy_bw=2, band_bw[band_idx]=0 [ 32.371762] 7986@C23L3,RadarStateCheck() 322: RD_NORMAL_MODE [ 32.378543] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(0), ht_bw(1), extcha(1), vht_bw(1), cen_ch_2(0), PhyMode=177! [ 32.390093] phy_freq_adjust : no prim_ch value for adjust! [ 32.395571] 7986@C23L1,operate_loader_phy() 364: phy_freq_adjust failed!WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 32.409032] wdev_attr_update(): wdevId3 = 70:5a:6f:50:40:ad [ 32.414638] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[3]=4, bw_grp=16 omac=0 [ 32.423636] 7986@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=3 [ 32.430518] 7986@C23L1,HcGetBandByChannel() 1233: No hdev parking on channel:0, just return a default band_idx 0! [ 32.440854] 7986@C02L2,AsicRadioOnOffCtrl() 2375: DbdcIdx=0 RadioOn [ 32.447670] 7986@C00L2,ApAutoChannelAtBootUp() 339: ----------------→ [ 32.454286] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 32.459834] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 32.465242] 7986@C23L2,build_acs_scan_ch_list_by_bw() 2731: ChListNum56G = 9 [ 32.472286] 7986@C23L3,build_acs_scan_ch_list_by_bw() 2839: ACSChListNum = 8, ACSChBW = 2 [ 32.480671] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(3) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x120/0x440 [mt_wifi])!! [ 32.492928] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 32.503439] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:36 cench1:36 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 32.515301] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 32.524431] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=36, ctrl_ch2=0, cent_ch=36 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 32.600505] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=36, ctrl_ch2=0, cent_ch=36, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 32.827084] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 32.837604] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:40 cench1:40 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 32.849455] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 32.858592] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=40, ctrl_ch2=0, cent_ch=40 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 32.934645] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=40, ctrl_ch2=0, cent_ch=40, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 33.159102] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 33.169625] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:44 cench1:44 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 33.181477] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 33.190611] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=44, ctrl_ch2=0, cent_ch=44 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 33.266709] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=44, ctrl_ch2=0, cent_ch=44, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 33.491081] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 33.501597] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:48 cench1:48 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 33.513475] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 33.522619] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=48, ctrl_ch2=0, cent_ch=48 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 33.598774] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=48, ctrl_ch2=0, cent_ch=48, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 33.823081] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 33.833598] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:149 cench1:149 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 33.845620] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 33.854753] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=149, ctrl_ch2=0, cent_ch=149 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 33.930997] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=149, ctrl_ch2=0, cent_ch=149, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 34.155087] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 34.165608] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:153 cench1:153 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 34.177630] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.186764] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=153, ctrl_ch2=0, cent_ch=153 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 34.263011] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=153, ctrl_ch2=0, cent_ch=153, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 34.382839] BcnCheck start after 2400 ms (ra0) [ 34.487074] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 34.497589] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:157 cench1:157 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 34.509616] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.518749] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=157, ctrl_ch2=0, cent_ch=157 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 34.594970] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=157, ctrl_ch2=0, cent_ch=157, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 34.819092] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:0 vht_bw:0 bw:0 extcha:0 [ 34.829611] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:161 cench1:161 cench2:0 rxstream:0 ap_bw:0 apCenCh:0 Scan:1 [ 34.841636] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 34.850771] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=161, ctrl_ch2=0, cent_ch=161 DBDCIdx=1, ChBand=1, BW=0, TXStream=4, RXStream=4, scan(1) [ 34.926990] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=161, ctrl_ch2=0, cent_ch=161, RxPath=f, BandIdx=1, ChBand=1, BW=0,TXStream=4, RXStream=15, scan(1) [ 35.151287] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(3) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x2d0/0x440 [mt_wifi])!! [ 35.163548] 7986@C23L3,SelectClearChannelBusyTime() 1893:
[ 35.174930] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 36 : Busy Time = 17877, Skip Channel = FALSE, BwCap = TRUE [ 35.186308] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 40 : Busy Time = 16460, Skip Channel = FALSE, BwCap = TRUE [ 35.197685] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 44 : Busy Time = 15563, Skip Channel = FALSE, BwCap = TRUE [ 35.209064] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 48 : Busy Time = 6065, Skip Channel = FALSE, BwCap = TRUE [ 35.220440] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 149 : Busy Time = 4107, Skip Channel = FALSE, BwCap = TRUE [ 35.231852] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 153 : Busy Time = 1892, Skip Channel = FALSE, BwCap = TRUE [ 35.243253] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 157 : Busy Time = 10390, Skip Channel = FALSE, BwCap = TRUE [ 35.254662] 7986@C23L3,SelectClearChannelBusyTime() 1899: Channel 161 : Busy Time = 15002, Skip Channel = FALSE, BwCap = TRUE [ 35.266054] 7986@C23L3,SelectClearChannelBusyTime() 1902:
[ 35.277438] 7986@C23L3,SelectClearChannelBusyTime() 2138: Rule 3 Channel Busy time value : Select Primary Channel 153 [ 35.288035] 7986@C23L3,SelectClearChannelBusyTime() 2140: Rule 3 Channel Busy time value : Min Channel Busy = 15002 [ 35.298460] 7986@C23L3,SelectClearChannelBusyTime() 2145: Rule 3 Channel Busy time value : BW = 80 [ 35.307410] 7986@C23L3,SelectClearChannelBusyTime() 2179: [SelectClearChannelBusyTime] - band1 END [ 35.316364] 7986@C23L3,RadarStateCheck() 263: Bw160 Zero Wait State: 0, phy_bw=2, band_bw[band_idx]=0 [ 35.325573] 7986@C23L3,RadarStateCheck() 322: RD_NORMAL_MODE [ 35.332360] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(153), ht_bw(1), extcha(1), vht_bw(1), cen_ch_2(0), PhyMode=177! [ 35.344090] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(2), prim_ch(153), cen_ch_1(155), cen_ch_2(0),ext_cha(3)! [ 35.355903] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(2), prim_ch(153), cen_ch_1(155), cen_ch_2(0)! [ 35.366939] 7986@C08L1,AsicSwitchChannel() 334: AsicSwitchChannel::bandIdx:1 ch_band:1 htbw:1 vht_bw:1 bw:2 extcha:3 [ 35.377449] 7986@C08L1,AsicSwitchChannel() 339: AsicSwitchChannel::primch:153 cench1:155 cench2:0 rxstream:4 ap_bw:0 apCenCh:0 Scan:0 [ 35.389489] 7986@C00L1,mt7986_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 35.398624] 7986@C03L3,MtCmdChannelSwitch() 2650: ctrl_chl=153, ctrl_ch2=0, cent_ch=155 DBDCIdx=1, ChBand=1, BW=2, TXStream=4, RXStream=4, scan(0) [ 35.780303] 7986@C03L3,MtCmdSetTxRxPath() 2910: ctrl_chl=153, ctrl_ch2=0, cent_ch=155, RxPath=f, BandIdx=1, ChBand=1, BW=2,TXStream=4, RXStream=15, scan(0) [ 35.799252] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 35.810240] 7986@C23L3,DfsBuildChannelList() 4114: Done [ 35.815464] 7986@C23L3,zero_wait_dfs_switch_ch() 1215: outband ch 0, ch_stat 0 [ 35.822676] 7986@C23L3,zero_wait_dfs_switch_ch() 1222: bDedicatedZeroWaitDefault == 0 [ 35.830709] 7986@C08L2,APStartUpForMbss() 1001: ==⇒(caller:ap_inf_open+0x158/0x560 [mt_wifi]), mbss_idx:3, CfgMode:0 [ 35.841330] 7986@C15L2,APPMFInit() 133: [PMF] apidx=3, MFPC=1, MFPR=0, SHA256=0 [ 35.890153] 7986@C18L3,BuildChannelList() 507: [ 35.894925] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 35.902523] WiFi@C08L2,ap_link_up() 7199: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(3) [ 35.911140] 7986@C01L3,wifi_sys_linkup() 1231: wdev idx = 3 [ 35.963908] 7986@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wtbl_idx:541 for WDEV_TYPE:1 [ 35.963908] LinkToOmacIdx = 0, LinkToWdevType = 1 [ 35.978267] 7986@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=3 [ 35.991034] 7986@C08L3,UpdateBeaconHandler() 2067: BCN_UPDATE_INIT, OmacIdx = 0 (rax0) [ 35.998946] 7986@C08L3,UpdateBeaconHandler() 2080: Band1 BcnInitedRnd = 140 [ 36.017038] PrintSrCmd: [ 36.017038] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 36.017038] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.031032] PrintSrCmd: [ 36.031032] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 36.031032] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.045020] PrintSrCmd: [ 36.045020] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 36.045020] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.059007] PrintSrCmd: [ 36.059007] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 36.059007] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.073079] PrintSrCmd: [ 36.073079] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 36.073079] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.087150] PrintSrCmd: [ 36.087150] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 36.087150] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.101231] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 36.112181] 7986@C03L3,MtCmdTxPwrShowInfo() 13944: ucTxPowerInfoCatg: 2, BandIdx: 1 [ 36.119922] 7986@C03L3,MtCmdTxPwrShowInfo() 13973: (ret = 0) [ 36.120020] [mtf_txpower_all_rate_info] band_idx:1 pwr:47 ChBand:5G ePAGain:0 [ 36.125609] mtk_ppe_dev_register_hook : ineterface rax0 register (3) [ 36.139457] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 36.155647] 7986@C08L2,mbss_virtual_if_open() 134: ==⇒ ra2 [ 36.161420] 7986@C01L2,RTMP_COM_IoctlHandle() 1517: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 36.169574] 7986@C01L2,RTMP_COM_IoctlHandle() 1494: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 36.177601] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 2 [ 36.183195] 7986@C18L3,BuildChannelList() 507: [ 36.187789] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(0), extcha(0), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 36.199300] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0),ext_cha(0)! [ 36.210796] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0)! [ 36.221511] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 36.229792] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 36.235725] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 36.244255] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 36.252287] wdev_attr_update(): wdevId2 = 72:5a:6f:20:40:ac [ 36.257935] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[2]=10, bw_grp=16 omac=18 [ 36.267220] 7986@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=2 [ 36.273204] 7986@C02L2,AsicRadioOnOffCtrl() 2375: DbdcIdx=0 RadioOn [ 36.280103] 7986@C00L2,ApAutoChannelAtBootUp() 339: ----------------→ [ 36.286896] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 36.292467] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 36.297909] 7986@C00L1,ApAutoChannelAtBootUp() 507: not A band [ 36.303796] 7986@C08L1,ap_run_at_boot() 640: ACS is disable !! [ 36.310737] 7986@C08L2,APStartUpForMbss() 1001: ==⇒(caller:ap_inf_open+0x158/0x560 [mt_wifi]), mbss_idx:2, CfgMode:0 [ 36.321428] 7986@C15L2,APPMFInit() 133: [PMF] apidx=2, MFPC=1, MFPR=0, SHA256=0 [ 36.370872] 7986@C18L3,BuildChannelList() 507: [ 36.375703] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 36.383138] 7986@C08L2,APOverlappingBSSScan() 5200: leverage result of wdev(0@BN0), FallBack=1 (remaining 49324 ms) [ 36.393593] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(8), ht_bw(0), extcha(0), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 36.405095] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0),ext_cha(0)! [ 36.416593] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(0), prim_ch(8), cen_ch_1(8), cen_ch_2(0)! [ 36.427296] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 36.435582] 7986@C23L3,DfsCacNormalStart() 3950: wdev is not 5G [ 36.441524] 7986@C23L3,DfsRadarChannelCheck() 3423: [DfsRadarChannelCheck]: wdev is not 5G [ 36.450099] WiFi@C08L2,ap_link_up() 7199: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(2) [ 36.458775] 7986@C01L3,wifi_sys_linkup() 1231: wdev idx = 2 [ 36.509791] 7986@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wtbl_idx:540 for WDEV_TYPE:1 [ 36.509791] LinkToOmacIdx = 12, LinkToWdevType = 1 [ 36.524234] 7986@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=2 [ 36.537705] 7986@C08L3,UpdateBeaconHandler() 2067: BCN_UPDATE_INIT, OmacIdx = 12 (ra2) [ 36.545685] 7986@C00L1,TxCCKStreamCtrl() 20651: set wrong parameters [ 36.561350] PrintSrCmd: [ 36.561350] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.561350] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.575340] PrintSrCmd: [ 36.575340] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.575340] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.589324] PrintSrCmd: [ 36.589324] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.589324] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 36.603308] PrintSrCmd: [ 36.603308] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.603308] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.617377] PrintSrCmd: [ 36.617377] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.617377] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.631446] PrintSrCmd: [ 36.631446] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 36.631446] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 36.645524] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 36.656472] 7986@C03L3,MtCmdTxPwrShowInfo() 13944: ucTxPowerInfoCatg: 2, BandIdx: 0 [ 36.664209] 7986@C03L3,MtCmdTxPwrShowInfo() 13973: (ret = 0) [ 36.664306] [mtf_txpower_all_rate_info] band_idx:0 pwr:48 ChBand:2G ePAGain:0 [ 36.669875] mtk_ppe_dev_register_hook : ineterface ra2 register (4) [ 36.683994] br-smart: port 1(ra2) entered blocking state [ 36.689331] br-smart: port 1(ra2) entered disabled state [ 36.694871] device ra2 entered promiscuous mode [ 36.699778] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 36.707648] br-lan: port 5(apcli0) entered blocking state [ 36.713057] br-lan: port 5(apcli0) entered disabled state [ 36.718656] device apcli0 entered promiscuous mode [ 36.724040] nf_unregister_hooks() [ 36.724257] br-smart: port 1(ra2) entered blocking state [ 36.732703] br-smart: port 1(ra2) entered forwarding state [ 36.739418] br-lan: port 6(apclix0) entered blocking state [ 36.744924] br-lan: port 6(apclix0) entered disabled state [ 36.750611] device apclix0 entered promiscuous mode [ 36.757381] 7986@C08L2,mbss_virtual_if_open() 134: ==⇒ rax1 [ 36.763144] 7986@C01L2,RTMP_COM_IoctlHandle() 1517: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 36.771335] 7986@C01L2,RTMP_COM_IoctlHandle() 1494: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 36.779342] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 4 [ 36.784994] 7986@C18L3,BuildChannelList() 507: [ 36.789561] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(153), ht_bw(1), extcha(1), vht_bw(1), cen_ch_2(0), PhyMode=177! [ 36.801293] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(2), prim_ch(153), cen_ch_1(155), cen_ch_2(0),ext_cha(3)! [ 36.813104] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(2), prim_ch(153), cen_ch_1(155), cen_ch_2(0)! [ 36.824366] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 36.832380] wdev_attr_update(): wdevId4 = 72:5a:6f:40:40:ac [ 36.837962] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[4]=25, bw_grp=16 omac=17 [ 36.847120] 7986@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=4 [ 36.853982] 7986@C02L2,AsicRadioOnOffCtrl() 2375: DbdcIdx=1 RadioOn [ 36.860800] 7986@C00L2,ApAutoChannelAtBootUp() 339: ----------------→ [ 36.867448] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 36.872935] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 36.878330] 7986@C00L1,ApAutoChannelAtBootUp() 501: zero-wait DFS is not enabled [ 36.885718] 7986@C08L1,ap_run_at_boot() 640: ACS is disable !! [ 36.892537] 7986@C08L2,APStartUpForMbss() 1001: ==⇒(caller:ap_inf_open+0x158/0x560 [mt_wifi]), mbss_idx:4, CfgMode:0 [ 36.903174] 7986@C15L2,APPMFInit() 133: [PMF] apidx=4, MFPC=1, MFPR=0, SHA256=0 [ 36.951949] 7986@C18L3,BuildChannelList() 507: [ 36.956705] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 36.964309] WiFi@C08L2,ap_link_up() 7199: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(4) [ 36.972926] 7986@C01L3,wifi_sys_linkup() 1231: wdev idx = 4 [ 37.002848] BcnCheck start after 4000 ms (ra0) [ 37.007642] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(4) bss not ready (state:0, caller:update_ap_qload_to_bcn+0xa0/0xc8 [mt_wifi])!! [ 37.024213] 7986@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wtbl_idx:539 for WDEV_TYPE:1 [ 37.024213] LinkToOmacIdx = 11, LinkToWdevType = 1 [ 37.038657] 7986@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=4 [ 37.052141] 7986@C08L3,UpdateBeaconHandler() 2067: BCN_UPDATE_INIT, OmacIdx = 11 (rax1) [ 37.071178] PrintSrCmd: [ 37.071178] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.071178] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.085171] PrintSrCmd: [ 37.085171] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.085171] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.099158] PrintSrCmd: [ 37.099158] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.099158] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.113142] PrintSrCmd: [ 37.113142] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.113142] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.127282] PrintSrCmd: [ 37.127282] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.127282] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.141353] PrintSrCmd: [ 37.141353] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.141353] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.155439] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 37.166389] 7986@C03L3,MtCmdTxPwrShowInfo() 13944: ucTxPowerInfoCatg: 2, BandIdx: 1 [ 37.174127] 7986@C03L3,MtCmdTxPwrShowInfo() 13973: (ret = 0) [ 37.174223] [mtf_txpower_all_rate_info] band_idx:1 pwr:47 ChBand:5G ePAGain:0 [ 37.179793] mtk_ppe_dev_register_hook : ineterface rax1 register (5) [ 37.193796] br-guest: port 2(rax1) entered blocking state [ 37.199203] br-guest: port 2(rax1) entered disabled state [ 37.204839] device rax1 entered promiscuous mode [ 37.209603] br-guest: port 2(rax1) entered blocking state [ 37.215005] br-guest: port 2(rax1) entered forwarding state [ 37.221568] 7986@C08L2,mbss_virtual_if_open() 134: ==⇒ rax2 [ 37.227337] 7986@C01L2,RTMP_COM_IoctlHandle() 1517: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 37.235424] 7986@C01L2,RTMP_COM_IoctlHandle() 1494: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 37.243425] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 5 [ 37.249007] 7986@C18L3,BuildChannelList() 507: [ 37.253567] 7986@C23L3,operate_loader_phy() 360: oper_cfg: prim_ch(153), ht_bw(1), extcha(1), vht_bw(1), cen_ch_2(0), PhyMode=177! [ 37.265298] 7986@C23L3,operate_loader_phy() 374: oper_dev after adjust: bw(2), prim_ch(153), cen_ch_1(155), cen_ch_2(0),ext_cha(3)! [ 37.277114] 7986@C23L3,operate_loader_phy() 393: oper_dev after decision: bw(2), prim_ch(153), cen_ch_1(155), cen_ch_2(0)! [ 37.288455] WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 37.296501] wdev_attr_update(): wdevId5 = 72:5a:6f:50:40:ac [ 37.302104] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band1 group_idx[5]=26, bw_grp=16 omac=18 [ 37.311264] 7986@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=5 [ 37.318110] 7986@C02L2,AsicRadioOnOffCtrl() 2375: DbdcIdx=1 RadioOn [ 37.324921] 7986@C00L2,ApAutoChannelAtBootUp() 339: ----------------→ [ 37.331539] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 37.337021] 7986@C03L1,MtCmdSetMacTxRx() 10440: (ret = 0) [ 37.342417] 7986@C00L1,ApAutoChannelAtBootUp() 501: zero-wait DFS is not enabled [ 37.349806] 7986@C08L1,ap_run_at_boot() 640: ACS is disable !! [ 37.356632] 7986@C08L2,APStartUpForMbss() 1001: ==⇒(caller:ap_inf_open+0x158/0x560 [mt_wifi]), mbss_idx:5, CfgMode:0 [ 37.367264] 7986@C15L2,APPMFInit() 133: [PMF] apidx=5, MFPC=1, MFPR=0, SHA256=0 [ 37.416026] 7986@C18L3,BuildChannelList() 507: [ 37.420778] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 37.428383] WiFi@C08L2,ap_link_up() 7199: (caller:wdev_do_linkup+0x20/0x38 [mt_wifi]), wdev(5) [ 37.436996] 7986@C01L3,wifi_sys_linkup() 1231: wdev idx = 5 [ 37.488335] 7986@C00L3,wtc_acquire_groupkey_wcid() 84: Found a non-occupied wtbl_idx:538 for WDEV_TYPE:1 [ 37.488335] LinkToOmacIdx = 12, LinkToWdevType = 1 [ 37.502782] 7986@C08L3,hw_ctrl_flow_v2_link_up() 72: wdev_idx=5 [ 37.516140] 7986@C08L3,UpdateBeaconHandler() 2067: BCN_UPDATE_INIT, OmacIdx = 12 (rax2) [ 37.535183] PrintSrCmd: [ 37.535183] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.535183] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.549173] PrintSrCmd: [ 37.549173] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.549173] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.563158] PrintSrCmd: [ 37.563158] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.563158] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 1 [ 37.577144] PrintSrCmd: [ 37.577144] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.577144] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.591214] PrintSrCmd: [ 37.591214] u1CmdSubId = 31, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.591214] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.605285] PrintSrCmd: [ 37.605285] u1CmdSubId = 33, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 37.605285] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 37.619368] 7986@C12L1,EDCCAInit() 21238: EDCCA compensation: uni_compensation=0, bw_compensation=0, final compensation=0 [ 37.630318] 7986@C03L3,MtCmdTxPwrShowInfo() 13944: ucTxPowerInfoCatg: 2, BandIdx: 1 [ 37.638056] 7986@C03L3,MtCmdTxPwrShowInfo() 13973: (ret = 0) [ 37.638151] [mtf_txpower_all_rate_info] band_idx:1 pwr:47 ChBand:5G ePAGain:0 [ 37.643721] mtk_ppe_dev_register_hook : ineterface rax2 register (6) [ 37.657832] br-smart: port 2(rax2) entered blocking state [ 37.663244] br-smart: port 2(rax2) entered disabled state [ 37.668877] device rax2 entered promiscuous mode [ 37.673580] br-smart: port 2(rax2) entered blocking state [ 37.678977] br-smart: port 2(rax2) entered forwarding state [ 37.684642] br-lan: port 7(ra0) entered blocking state [ 37.689778] br-lan: port 7(ra0) entered disabled state [ 37.695072] device ra0 entered promiscuous mode [ 37.699643] br-lan: port 7(ra0) entered blocking state [ 37.704777] br-lan: port 7(ra0) entered forwarding state [ 37.710156] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 37.731259] br-lan: port 8(rax0) entered blocking state [ 37.736520] br-lan: port 8(rax0) entered disabled state [ 37.737718] HQoS is going to be disabled! [ 37.741979] device rax0 entered promiscuous mode [ 37.750571] br-lan: port 8(rax0) entered blocking state [ 37.755825] br-lan: port 8(rax0) entered forwarding state [ 37.768056] 7986@C08L2,mbss_virtual_if_close() 171: ==⇒ ra1 [ 37.773821] 7986@C01L2,RTMP_COM_IoctlHandle() 1505: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DOWN [ 37.782265] WiFi@C08L2,ap_link_down() 7219: (caller:wdev_do_linkdown+0x20/0x38 [mt_wifi]), wdev(1) [ 37.791654] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(1) bss not ready (state:2, caller:ap_link_down+0x98/0x250 [mt_wifi])!! [ 37.803052] 7986@C01L3,wifi_sys_linkdown() 1364: wdev idx = 1 [ 37.809003] 7986@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=1 [ 37.818406] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 1 [ 37.824078] 7986@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=1 [ 37.830001] 7986@C01L2,RTMP_COM_IoctlHandle() 1528: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DEINIT [ 37.838259] extif_put_dev(ra1) [ 37.841307] mtk_ppe_dev_unregister_hook : ineterface ra1 set null (2) [ 37.847902] br-guest: port 1(ra1) entered disabled state [ 37.858684] 7986@C08L2,mbss_virtual_if_close() 171: ==⇒ ra2 [ 37.864491] 7986@C01L2,RTMP_COM_IoctlHandle() 1505: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DOWN [ 37.872983] WiFi@C08L2,ap_link_down() 7219: (caller:wdev_do_linkdown+0x20/0x38 [mt_wifi]), wdev(2) [ 37.882390] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(2) bss not ready (state:2, caller:ap_link_down+0x98/0x250 [mt_wifi])!! [ 37.893843] 7986@C01L3,wifi_sys_linkdown() 1364: wdev idx = 2 [ 37.899907] 7986@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=2 [ 37.909309] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 2 [ 37.915147] 7986@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=2 [ 37.921148] 7986@C01L2,RTMP_COM_IoctlHandle() 1528: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DEINIT [ 37.929482] extif_put_dev(ra2) [ 37.932531] mtk_ppe_dev_unregister_hook : ineterface ra2 set null (4) [ 37.939138] br-smart: port 1(ra2) entered disabled state [ 37.950248] 7986@C08L2,mbss_virtual_if_close() 171: ==⇒ rax1 [ 37.956140] 7986@C01L2,RTMP_COM_IoctlHandle() 1505: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DOWN [ 37.964633] WiFi@C08L2,ap_link_down() 7219: (caller:wdev_do_linkdown+0x20/0x38 [mt_wifi]), wdev(4) [ 37.974035] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(4) bss not ready (state:2, caller:ap_link_down+0x98/0x250 [mt_wifi])!! [ 37.985526] 7986@C01L3,wifi_sys_linkdown() 1364: wdev idx = 4 [ 37.991595] 7986@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=4 [ 38.001115] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 4 [ 38.006942] 7986@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=4 [ 38.013111] 7986@C01L2,RTMP_COM_IoctlHandle() 1528: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DEINIT [ 38.021418] extif_put_dev(rax1) [ 38.024580] mtk_ppe_dev_unregister_hook : ineterface rax1 set null (5) [ 38.031332] br-guest: port 2(rax1) entered disabled state [ 38.042506] 7986@C08L2,mbss_virtual_if_close() 171: ==⇒ rax2 [ 38.048406] 7986@C01L2,RTMP_COM_IoctlHandle() 1505: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DOWN [ 38.056841] WiFi@C08L2,ap_link_down() 7219: (caller:wdev_do_linkdown+0x20/0x38 [mt_wifi]), wdev(5) [ 38.066186] 7986@C08L1,UpdateBeaconHandler() 2047: wdev(5) bss not ready (state:2, caller:ap_link_down+0x98/0x250 [mt_wifi])!! [ 38.077701] 7986@C01L3,wifi_sys_linkdown() 1364: wdev idx = 5 [ 38.083874] 7986@C08L3,hw_ctrl_flow_v2_link_down() 123: wdev_idx=5 [ 38.093280] WiFi@C01L3,wifi_sys_close() 945: wdev idx = 5 [ 38.099180] 7986@C08L3,hw_ctrl_flow_v2_close() 41: wdev_idx=5 [ 38.105180] 7986@C01L2,RTMP_COM_IoctlHandle() 1528: → CMD_RTPRIV_IOCTL_VIRTUAL_INF_DEINIT [ 38.113540] extif_put_dev(rax2) [ 38.116706] mtk_ppe_dev_unregister_hook : ineterface rax2 set null (6) [ 38.123427] br-smart: port 2(rax2) entered disabled state [ 38.174610] SetThermalProtectDutyCfg(): band_idx: 0, level_idx: 0, duty: 100 [ 38.183739] SetThermalProtectDutyCfg(): band_idx: 0, level_idx: 1, duty: 80 [ 38.193124] SetThermalProtectDutyCfg(): band_idx: 0, level_idx: 2, duty: 70 [ 38.201831] SetThermalProtectDutyCfg(): band_idx: 0, level_idx: 3, duty: 60 [ 38.210616] SetThermalProtectDisable(): band_idx: 0, protection_type: 1, trigger_type: 1 [ 38.222175] SetThermalProtectDisable(): band_idx: 0, protection_type: 2, trigger_type: 1 [ 38.230470] (Thermal Protect) Radio Notify. [ 38.234684] band_idx: 0, level_idx: 0 [ 38.240444] SetThermalProtectEnable(): band_idx: 0, protection_type: 1, trigger_type: 1 [ 38.248497] SetThermalProtectEnable(): trigger_temp: 112, restore_temp: 107, recheck_time: 60 [ 38.259094] SetThermalProtectEnable(): band_idx: 0, protection_type: 2, trigger_type: 1 [ 38.267196] SetThermalProtectEnable(): trigger_temp: 124, restore_temp: 0, recheck_time: 60 [ 38.275701] (Thermal Protect) Radio Notify. [ 38.279904] band_idx: 0, level_idx: 0 [ 38.285144] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 0, duty: 100 [ 38.293847] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 1, duty: 80 [ 38.303819] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 2, duty: 70 [ 38.313420] SetThermalProtectDutyCfg(): band_idx: 1, level_idx: 3, duty: 60 [ 38.322189] SetThermalProtectDisable(): band_idx: 1, protection_type: 1, trigger_type: 1 [ 38.340368] SetThermalProtectDisable(): band_idx: 1, protection_type: 2, trigger_type: 1 [ 38.348601] (Thermal Protect) Radio Notify. [ 38.352788] band_idx: 0, level_idx: 0 [ 38.357838] SetThermalProtectEnable(): band_idx: 1, protection_type: 1, trigger_type: 1 [ 38.365885] SetThermalProtectEnable(): trigger_temp: 112, restore_temp: 107, recheck_time: 60 [ 38.376180] SetThermalProtectEnable(): band_idx: 1, protection_type: 2, trigger_type: 1 [ 38.384240] SetThermalProtectEnable(): trigger_temp: 124, restore_temp: 0, recheck_time: 60 [ 38.392723] (Thermal Protect) Radio Notify. [ 38.396927] band_idx: 1, level_idx: 0 [ 38.772321] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 38.780376] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 38.788426] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 38.796482] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.634851] BcnCheck start after 1500 ms (ra0) [ 39.860336] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.868301] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.876336] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.884548] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.892505] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.900404] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 39.918364] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:8 [ 39.924508] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:0 [ 39.930607] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:1 [ 39.936700] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:2 [ 39.942789] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:3 [ 39.949460] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:8 [ 39.955595] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:0 [ 39.961691] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:1 [ 39.967783] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:2 [ 39.973872] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:3 [ 39.979984] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 16 [ 39.987118] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 9 [ 39.994179] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 111) [ 40.000536] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 110) [ 40.006901] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 16 [ 40.014046] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 9 [ 40.065463] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.073319] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 111) [ 40.079679] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.087511] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 110) [ 40.093862] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.101701] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.153998] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.161856] Set_Fh_Bss_Proc ra0 wdev→MAPCfg.DevOwnRole 0x0 [ 40.167444] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.175301] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.183159] Set_Fh_Bss_Proc ra0 wdev→MAPCfg.DevOwnRole 0x20 [ 40.188815] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 40.198612] Set_Fh_Bss_Proc rax0 wdev→MAPCfg.DevOwnRole 0x0 [ 40.205659] Set_Fh_Bss_Proc rax0 wdev→MAPCfg.DevOwnRole 0x20 [ 43.757539] module exit [ 44.083164] br-lan: port 1(lan0) entered disabled state [ 44.093313] mt7530 mdio-bus:1f lan0: configuring for phy/gmii link mode [ 44.100705] 8021q: adding VLAN 0 to HW filter on device lan0 [ 44.117720] br-lan: port 2(lan1) entered disabled state [ 44.127872] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 44.135222] 8021q: adding VLAN 0 to HW filter on device lan1 [ 44.151947] br-lan: port 3(lan2) entered disabled state [ 44.162068] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 44.169391] 8021q: adding VLAN 0 to HW filter on device lan2 [ 44.187217] br-lan: port 4(lan3) entered disabled state [ 44.197419] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 44.204750] 8021q: adding VLAN 0 to HW filter on device lan3 [ 44.241995] Set_MapR2_Proc MAP R2 is already disabled [ 44.248061] Set_MapTS_Proc MAP TS is already disabled [ 44.256504] Set_MapR2_Proc MAP R2 is already disabled [ 44.262515] Set_MapTS_Proc MAP TS is already disabled [ 44.272741] Set_Enable_Dpp_Proc DPP is already disabled [ 44.278977] Set_MapTS_Proc MAP TS is already disabled [ 44.288139] Set_Enable_Dpp_Proc DPP is already disabled [ 44.294292] Set_MapTS_Proc MAP TS is already disabled [ 44.311582] Set_Map_Proc current MAP MODE is 0 [ 44.319229] Set_Map_Proc current MAP MODE is 0 [ 44.335815] br-lan: port 1(lan0) entered disabled state [ 44.346025] mt7530 mdio-bus:1f lan0: configuring for phy/gmii link mode [ 44.353364] 8021q: adding VLAN 0 to HW filter on device lan0 [ 44.366155] br-lan: port 2(lan1) entered disabled state [ 44.376713] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 44.384045] 8021q: adding VLAN 0 to HW filter on device lan1 [ 44.396840] br-lan: port 3(lan2) entered disabled state [ 44.407256] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 44.414688] 8021q: adding VLAN 0 to HW filter on device lan2 [ 44.427622] br-lan: port 4(lan3) entered disabled state [ 44.437894] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 44.445235] 8021q: adding VLAN 0 to HW filter on device lan3 [ 44.550779] -→update_qos_map() [ 46.594048] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.602002] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.610130] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.618296] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.626302] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.634286] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.643296] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:8 [ 46.649456] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:0 [ 46.655591] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:1 [ 46.661689] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:2 [ 46.712133] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:3 [ 46.718222] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.726056] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.733892] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.741827] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.794057] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:8 [ 46.800150] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.807980] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.815808] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.823635] 7986@C12L1,rt28xx_ap_ioctl() 833: interface is down, cmd [8be1] return!!! [ 46.831463] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:0 [ 46.837555] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:1 [ 46.843645] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:2 [ 46.849735] 7986@C14L1,set_wapp_param() 3577: Unknown Parameter:3 [ 46.855850] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 16 [ 46.862982] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 9 [ 46.870045] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 111) [ 46.876404] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 110) [ 46.882762] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 16 [ 46.889893] 7986@C12L1,Set_AP_VENDOR_SPECIFIC_IE() 3825: Unknown OUIType = 9 [ 46.896955] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 111) [ 46.903309] 7986@C12L1,set_wapp_cmm_ie() 3721: Unknown IE(EID = 110) [ 46.913591] Set_Fh_Bss_Proc ra0 wdev→MAPCfg.DevOwnRole 0x0 [ 46.920592] Set_Fh_Bss_Proc ra0 wdev→MAPCfg.DevOwnRole 0x20 [ 46.928408] Set_Fh_Bss_Proc rax0 wdev→MAPCfg.DevOwnRole 0x0 [ 46.935506] Set_Fh_Bss_Proc rax0 wdev→MAPCfg.DevOwnRole 0x20
W6x login:
OpenWrt Stock Layout Bootlog
F0: 102B 0000 FA: 1040 0000 FA: 1040 0000 [0200] F9: 0000 0000 V0: 0000 0000 [0001] 00: 0000 0000 BP: 2400 0041 [0000] G0: 1190 0000 EC: 0000 0000 [1000] T0: 0000 021E [010F] Jump to BL
NOTICE: BL2: v2.8(release):5fceb3af-dirty NOTICE: BL2: Built : 16:45:21, Jan 19 2024 NOTICE: WDT: Reboot status is 0x40000000: NOTICE: Software reset (reboot) NOTICE: WDT: disabled NOTICE: CPU: MT7986 (2000MHz) NOTICE: EMI: Using DDR4 settings NOTICE: EMI: Detected DRAM size: 1024MB NOTICE: EMI: complex R/W mem test passed NOTICE: SPI_NAND parses attributes from parameter page. NOTICE: SPI_NAND Detected ID 0xef NOTICE: Page size 2048, Block size 131072, size 268435456 NOTICE: Initializing NMBM ... NOTICE: Signature found at block 2047 [0x0ffe0000] NOTICE: First info table with writecount 0 found in block 1920 NOTICE: Second info table with writecount 0 found in block 1923 NOTICE: NMBM has been successfully attached in read-only mode NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.8(release):5fceb3af-dirty NOTICE: BL31: Built : 16:45:25, Jan 19 2024
U-Boot 2022.07-rc5 1.00.01 (Jan 19 2024 - 16:44:38 +0800)
CPU: MediaTek MT7986 Model: mt7986-rfb DRAM: 1 GiB Core: 48 devices, 18 uclasses, devicetree: separate
Initializing NMBM ... spi-nand: spi_nand spi_nand@1: Winbond SPI NAND was found. spi-nand: spi_nand spi_nand@1: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 Could not find a valid device for nmbm0 Signature found at block 2047 [0x0ffe0000] First info table with writecount 0 found in block 1920 Second info table with writecount 0 found in block 1923 NMBM has been successfully attached
MMC: mmc@11230000: 0 Loading Environment from MTD... OK In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: eth0: ethernet@15100000
- U-Boot Boot Menu *
1. Startup system (Default)
2. Upgrade firmware
3. Upgrade ATF BL2
4. Upgrade ATF FIP
5. Upgrade single image
6. Load image
0. U-Boot console
Press UP/DOWN to move, ENTER to select, ESC/CTRL+C to quit
Reading 'dual' from 0x0 to 0x7f7fb9d8, size 0x24 ... OK Current bootnum[255] ubi_boot_image - the bootnum is error number, try boot from ubi Boot ubi name[ubi] ubi0: attaching mtd9 ubi0: scanning is finished ubi0: attached mtd9 (name “ubi”, size 100 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 ubi0: good PEBs: 800, bad PEBs: 0, corrupted PEBs: 0 ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 18/12, WL threshold: 4096, image sequence number: 885572832 ubi0: available PEBs: 4, total reserved PEBs: 796, PEBs reserved for bad PEB handling: 38 No size specified → Using max size (4571136) Read 4571136 bytes from volume kernel to 0000000046000000 ## Loading kernel from FIT Image at 46000000 ...
Using 'config-1' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-6.12.40 Type: Kernel Image Compression: lzma compressed Data Start: 0x460000e8 Data Size: 4448642 Bytes = 4.2 MiB Architecture: AArch64 OS: Linux Load Address: 0x48000000 Entry Point: 0x48000000 Hash algo: crc32 Hash value: e2a07c17 Hash algo: sha1 Hash value: 35d2cfa9006acb36f35f391e79667e65b8520ad7 Verifying Hash Integrity ... crc32+ sha1+ OK
## Loading fdt from FIT Image at 46000000 ...
Using 'config-1' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt acer_predator-w6x-stock device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x4643e3b4 Data Size: 21240 Bytes = 20.7 KiB Architecture: AArch64 Load Address: 0x47000000 Hash algo: crc32 Hash value: 6a3beb3f Hash algo: sha1 Hash value: a5ea1271d61a3abe938c30084b31f7c093b9b2e5 Verifying Hash Integrity ... crc32+ sha1+ OK Loading fdt from 0x4643e3b4 to 0x47000000 Booting using the fdt blob at 0x47000000 Uncompressing Kernel Image Loading Device Tree to 000000007f7ee000, end 000000007f7f62f7 ... OK
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.12.40 (x@y) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 14.3.0 r30815-fe719aa1e8) 14.3.0, GNU ld (GNU Binutils) 2.44) #0 SMP Fri Aug 22 00:28:22 2025 [ 0.000000] Machine model: Acer Predator Connect W6x (Stock Layout) [ 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: 0x000000004fc00000..0x000000004fcfffff (1024 KiB) nomap non-reusable wmcpu-reserved@4fc00000 [ 0.000000] OF: reserved mem: 0x000000004fd00000..0x000000004fd3ffff (256 KiB) nomap non-reusable wo-emi@4fd00000 [ 0.000000] OF: reserved mem: 0x000000004fd40000..0x000000004fd7ffff (256 KiB) nomap non-reusable wo-emi@4fd40000 [ 0.000000] OF: reserved mem: 0x000000004fd80000..0x000000004ffbffff (2304 KiB) nomap non-reusable wo-data@4fd80000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000042ffffff] [ 0.000000] node 0: [mem 0x0000000043000000-0x000000004302ffff] [ 0.000000] node 0: [mem 0x0000000043030000-0x000000004fbfffff] [ 0.000000] node 0: [mem 0x000000004fc00000-0x000000004ffbffff] [ 0.000000] node 0: [mem 0x000000004ffc0000-0x000000007fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] [ 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] 2 [0] 3 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 262144 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 1MB [ 0.000000] software IO TLB: area num 4. [ 0.000000] software IO TLB: mapped [mem 0x000000007fb03000-0x000000007fc03000] (1MB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4. [ 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.000060] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.000067] pid_max: default: 32768 minimum: 301 [ 0.002067] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.002075] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.003657] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.004278] rcu: Hierarchical SRCU implementation. [ 0.004280] rcu: Max phase no-delay instances is 1000. [ 0.004396] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level [ 0.004610] smp: Bringing up secondary CPUs ... [ 0.004869] Detected VIPT I-cache on CPU1 [ 0.004911] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.004939] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.005256] Detected VIPT I-cache on CPU2 [ 0.005282] GICv3: CPU2: found redistributor 2 region 0:0x000000000c0c0000 [ 0.005294] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.005561] Detected VIPT I-cache on CPU3 [ 0.005581] GICv3: CPU3: found redistributor 3 region 0:0x000000000c0e0000 [ 0.005591] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.005625] smp: Brought up 1 node, 4 CPUs [ 0.005629] SMP: Total of 4 processors activated. [ 0.005631] CPU: All CPU(s) started at EL2 [ 0.005633] CPU features: detected: 32-bit EL0 Support [ 0.005636] CPU features: detected: CRC32 instructions [ 0.005659] alternatives: applying system-wide alternatives [ 0.005768] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.005890] Memory: 1005764K/1048576K available (9216K kernel code, 974K rwdata, 2732K rodata, 448K init, 298K bss, 39376K reserved, 0K cma-reserved) [ 0.008033] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.008047] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.008117] 29312 pages in range for non-PLT usage [ 0.008119] 520832 pages in range for PLT usage [ 0.009094] pinctrl core: initialized pinctrl subsystem [ 0.010014] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.010255] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.010273] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.010288] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.010571] thermal_sys: Registered thermal governor 'fair_share' [ 0.010574] thermal_sys: Registered thermal governor 'bang_bang' [ 0.010576] thermal_sys: Registered thermal governor 'step_wise' [ 0.010578] thermal_sys: Registered thermal governor 'user_space' [ 0.010610] ASID allocator initialised with 65536 entries [ 0.011088] pstore: Using crash dump compression: deflate [ 0.011092] pstore: Registered ramoops as persistent store backend [ 0.011093] ramoops: using 0x10000@0x42ff0000, ecc: 0 [ 0.012094] /soc/interrupt-controller@c000000: Fixed dependency cycle(s) with /soc/interrupt-controller@c000000 [ 0.023781] cryptd: max_cpu_qlen set to 1000 [ 0.025414] SCSI subsystem initialized [ 0.025549] libata version 3.00 loaded. [ 0.026728] clocksource: Switched to clocksource arch_sys_counter [ 0.028348] NET: Registered PF_INET protocol family [ 0.028443] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.029413] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 0.029425] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.029432] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.029469] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.029636] TCP: Hash tables configured (established 8192 bind 8192) [ 0.029891] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear) [ 0.029969] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.029986] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.030138] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.030160] PCI: CLS 0 bytes, default 64 [ 0.031092] workingset: timestamp_bits=46 max_order=18 bucket_order=0 [ 0.034400] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.034403] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) © 2001-2006 Red Hat, Inc. [ 0.073220] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.074118] printk: legacy console [ttyS0] disabled [ 0.094407] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 116, base_baud = 2500000) is a ST16650V2 [ 0.094445] printk: legacy console [ttyS0] enabled [ 0.887103] mtk_rng 1020f000.rng: registered RNG driver [ 0.887338] random: crng init done [ 0.897712] loop: module loaded [ 0.902348] spi-nand spi0.0: Winbond SPI NAND was found. [ 0.907692] spi-nand spi0.0: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 [ 0.916269] 10 fixed-partitions partitions found on MTD device spi0.0 [ 0.922705] Creating 10 MTD partitions on “spi0.0”: [ 0.927572] 0x000000000000-0x000000100000 : “bl2” [ 0.933026] 0x000000100000-0x000000180000 : “u-boot-env” [ 0.938820] 0x000000180000-0x000000380000 : “factory” [ 0.945143] 0x000000380000-0x000000580000 : “fip” [ 0.951235] 0x000000580000-0x0000005a0000 : “prod” [ 0.956284] 0x000000600000-0x000000700000 : “dual” [ 0.961781] 0x000000700000-0x000000800000 : “pot” [ 0.967258] 0x000000800000-0x000006c00000 : “ubi” [ 1.019880] 0x000006c00000-0x00000d000000 : “ubi1” [ 1.072528] 0x00000d000000-0x00000d800000 : “storage” [ 1.197965] mtk_soc_eth 15100000.ethernet: generated random MAC address 20:08:02:00:00:00 [ 1.206142] mtk_soc_eth 15100000.ethernet: generated random MAC address 20:08:02:00:00:00 [ 1.215749] Maxlinear Ethernet GPY211C mdio-bus:06: Firmware Version: 8.111 (0x886F) [ 1.225876] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc081680000, irq 121 [ 1.235624] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc081680000, irq 121 [ 1.245271] i2c_dev: i2c /dev entries driver [ 1.250765] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 1.259121] NET: Registered PF_INET6 protocol family [ 1.264705] Segment Routing with IPv6 [ 1.268395] In-situ OAM (IOAM) with IPv6 [ 1.272339] NET: Registered PF_PACKET protocol family [ 1.277638] 8021q: 802.1Q VLAN Support v1.8 [ 1.334079] mt7530-mdio mdio-bus:1f: no interrupt support [ 1.353234] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.362360] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.372518] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=POLL) [ 1.393601] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=POLL) [ 1.414377] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7531 PHY] (irq=POLL) [ 1.435192] mt7530-mdio mdio-bus:1f lan4 (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7531 PHY] (irq=POLL) [ 1.446249] mtk_soc_eth 15100000.ethernet eth0: entered promiscuous mode [ 1.452966] DSA: tree 0 setup [ 1.456327] UBI: auto-attach mtd7 [ 1.459653] ubi0: default fastmap pool size: 40 [ 1.464168] ubi0: default fastmap WL pool size: 20 [ 1.468943] ubi0: attaching mtd7 [ 1.796825] ubi0: scanning is finished [ 1.804966] ubi0: attached mtd7 (name “ubi”, size 100 MiB) [ 1.810454] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.817314] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.824080] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.831023] ubi0: good PEBs: 800, bad PEBs: 0, corrupted PEBs: 0 [ 1.837012] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 1.844213] ubi0: max/mean erase counter: 18/12, WL threshold: 4096, image sequence number: 885572832 [ 1.853410] ubi0: available PEBs: 0, total reserved PEBs: 800, PEBs reserved for bad PEB handling: 40 [ 1.862614] ubi0: background thread “ubi_bgt0d” started, PID 612 [ 1.863232] block ubiblock0_1: created from ubi0:1(rootfs) [ 1.874078] ubiblock: device ubiblock0_1 (rootfs) set to be root filesystem [ 1.881107] clk: Disabling unused clocks [ 1.885254] PM: genpd: Disabling unused power domains [ 1.894219] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 1.901521] Freeing unused kernel memory: 448K [ 1.905988] Run /sbin/init as init process [ 1.910075] with arguments: [ 1.913027] /sbin/init [ 1.915719] with environment: [ 1.918858] HOME=/ [ 1.921204] TERM=linux [ 2.055434] init: Console is alive [ 2.058963] init: - watchdog - [ 2.349542] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 2.367015] usbcore: registered new interface driver usbfs [ 2.372526] usbcore: registered new interface driver hub [ 2.377867] usbcore: registered new device driver usb [ 2.383474] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 2.395433] xhci-mtk 11200000.usb: xHCI Host Controller [ 2.400685] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 1 [ 2.411049] xhci-mtk 11200000.usb: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000200010 [ 2.420205] xhci-mtk 11200000.usb: irq 125, io mem 0x11200000 [ 2.426022] xhci-mtk 11200000.usb: xHCI Host Controller [ 2.431275] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 2 [ 2.438658] xhci-mtk 11200000.usb: Host supports USB 3.2 Enhanced SuperSpeed [ 2.446083] hub 1-0:1.0: USB hub found [ 2.449849] hub 1-0:1.0: 2 ports detected [ 2.454090] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.462393] hub 2-0:1.0: USB hub found [ 2.466141] hub 2-0:1.0: 1 port detected [ 2.473991] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 2.485550] init: - preinit - [ 2.692539] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 2.701035] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 2.721826] mtdblock: MTD device 'u-boot-env' is NAND, please consider using UBI block devices instead. [ 3.190395] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 5.292552] mt7530-mdio mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control rx/tx [ 7.256493] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 7.262283] UBIFS (ubi0:2): background thread “ubifs_bgt0_2” started, PID 796 [ 7.282492] UBIFS (ubi0:2): recovery needed [ 7.360784] UBIFS (ubi0:2): recovery completed [ 7.365294] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name “rootfs_data” [ 7.373112] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.383005] UBIFS (ubi0:2): FS size: 84058112 bytes (80 MiB, 662 LEBs), max 673 LEBs, journal size 4190208 bytes (3 MiB, 33 LEBs) [ 7.394631] UBIFS (ubi0:2): reserved for root: 3970271 bytes (3877 KiB) [ 7.401229] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 94853B7E-B118-4148-89BF-ED657F8E1CE5, small LPT model [ 7.415218] mount_root: switching to ubifs overlay [ 7.423859] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 7.437284] urandom-seed: Seeding with /etc/urandom.seed [ 7.482806] mt7530-mdio mdio-bus:1f lan1: Link is Down [ 7.491181] procd: - early - [ 7.494110] procd: - watchdog - [ 8.036382] procd: - watchdog - [ 8.043269] procd: - ubus - [ 8.196352] procd: - init - Please press Enter to activate this console. [ 8.408327] kmodloader: loading kernel modules from /etc/modules.d/* [ 8.428291] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 [ 8.442740] Loading modules backported from Linux version v6.16-0-g038d61fd6422 [ 8.450061] Backport generated by backports.git v6.1.145-1-47-g6194bf852a3e [ 8.558175] urngd: v1.0.2 started. [ 8.790567] mt798x-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20240823160656a [ 8.790567] [ 8.924843] mt798x-wmac 18000000.wifi: WM Firmware Version: 000000, Build Time: 20240823160721 [ 9.005368] mt798x-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20240823160840 [ 9.111399] mt798x-wmac 18000000.wifi: registering led 'mt76-phy0' [ 9.168066] mt798x-wmac 18000000.wifi: registering led 'mt76-phy1' [ 9.227048] mtdblock: MTD device 'u-boot-env' is NAND, please consider using UBI block devices instead. [ 9.239062] PPP generic driver version 2.4.2 [ 9.244137] NET: Registered PF_PPPOX protocol family [ 9.251748] kmodloader: done loading kernel modules from /etc/modules.d/* [ 9.560898] mtdblock: MTD device 'u-boot-env' is NAND, please consider using UBI block devices instead. [ 11.294886] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 11.310587] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 11.319140] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx
Openwrt Ubootmod Layout Bootlog
F0: 102B 0000 FA: 1040 0000 FA: 1040 0000 [0200] F9: 0000 0000 V0: 0000 0000 [0001] 00: 0000 0000 BP: 2400 0041 [0000] G0: 1190 0000 EC: 0000 0000 [1000] T0: 0000 0211 [010F] Jump to BL
NOTICE: BL2: v2.13.0(release):OpenWrt v2025.07.11~78a0dfd9-1 (mt7986-spim-nand-ddr4) NOTICE: BL2: Built : 06:30:23, Aug 24 2025 NOTICE: WDT: [40000000] Software reset (reboot) NOTICE: CPU: MT7986 (2000MHz) NOTICE: EMI: Using DDR4 settings NOTICE: EMI: Detected DRAM size: 1024MB NOTICE: EMI: complex R/W mem test passed NOTICE: SPI_NAND parses attributes from parameter page. NOTICE: SPI_NAND Detected ID 0xef NOTICE: Page size 2048, Block size 131072, size 268435456 NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.13.0(release):OpenWrt v2025.07.11~78a0dfd9-1 (mt7986-spim-nand-ddr4) NOTICE: BL31: Built : 06:30:23, Aug 24 2025
U-Boot 2025.07-OpenWrt-r30837-7dfbe9c846 (Aug 24 2025 - 06:30:23 +0000)
CPU: MediaTek MT7986 Model: Acer Predator Connect W6x DRAM: 1 GiB Core: 26 devices, 13 uclasses, devicetree: embed Loading Environment from UBI... spi-nand: spi_nand spi_nand@0: CASN page check failed spi-nand: spi_nand spi_nand@0: Fallback to read ID spi-nand: spi_nand spi_nand@0: Winbond SPI NAND was found. spi-nand: spi_nand spi_nand@0: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 Read 126976 bytes from volume ubootenv to 000000007f7c1d40 Read 126976 bytes from volume ubootenv2 to 000000007f7e0d80 OK In: serial@11002000 Out: serial@11002000 Err: serial@11002000 reset button found Loading Environment from UBI... UBI partition 'ubi' already selected Read 126976 bytes from volume ubootenv to 000000007f7c1d00 Read 126976 bytes from volume ubootenv2 to 000000007f7e0d40 OK Net: MediaTek MT7531 eth0: ethernet@15100000
( ( ( OpenWrt ) ) ) U-Boot 2025.07-OpenWrt-r30837-ec4dfcd074 (Aug 24 2025 - 05:16:27 +0000)
1. Run default boot command.
2. Boot system via TFTP.
3. Boot production system from NAND.
4. Boot recovery system from NAND.
5. Load production system via TFTP then write to NAND.
6. Load recovery system via TFTP then write to NAND.
7. Load BL31+U-Boot FIP via TFTP then write to NAND.
8. Load BL2 preloader via TFTP then write to NAND.
9. Reboot.
a. Reset all settings to factory defaults.
0. Exit
Press UP/DOWN to move, ENTER to select, ESC to quit
No size specified → Using max size (11808768) Read 11808768 bytes from volume fit to 0000000046000000
## Checking Image at 46000000 ...
FIT image found FIT description: ARM64 OpenWrt FIT (Flattened Image Tree) Image 0 (kernel-1) Description: ARM64 OpenWrt Linux-6.12.40 Type: Kernel Image Compression: gzip compressed Data Start: 0x46001000 Data Size: 6071706 Bytes = 5.8 MiB Architecture: AArch64 OS: Linux Load Address: 0x48000000 Entry Point: 0x48000000 Hash algo: crc32 Hash value: e528862b Hash algo: sha1 Hash value: d52b3aab4dfa3f0590fb33175e43826d94ba40cb Image 1 (fdt-1) Description: ARM64 OpenWrt acer_predator-w6x-ubootmod device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x465cc000 Data Size: 21289 Bytes = 20.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: e41daa3d Hash algo: sha1 Hash value: d4d4a0eff5ed6d0053be9cf651b7b6cb63f39f65 Image 2 (rootfs-1) Description: ARM64 OpenWrt acer_predator-w6x-ubootmod rootfs Type: Filesystem Image Compression: uncompressed Data Start: 0x465d2000 Data Size: 5611520 Bytes = 5.4 MiB Hash algo: crc32 Hash value: b952f7a9 Hash algo: sha1 Hash value: 19c48651a14a41b3d5d97c931bfba8cbfd56caeb Default Configuration: 'config-1' Configuration 0 (config-1) Description: OpenWrt acer_predator-w6x-ubootmod Kernel: kernel-1 FDT: fdt-1 Loadables: rootfs-1
## Checking hash(es) for FIT Image at 46000000 ...
Hash(es) for Image 0 (kernel-1): crc32+ sha1+ Hash(es) for Image 1 (fdt-1): crc32+ sha1+ Hash(es) for Image 2 (rootfs-1): crc32+ sha1+
## Loading kernel (any) from FIT Image at 46000000 ...
Using 'config-1' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-6.12.40 Type: Kernel Image Compression: gzip compressed Data Start: 0x46001000 Data Size: 6071706 Bytes = 5.8 MiB Architecture: AArch64 OS: Linux Load Address: 0x48000000 Entry Point: 0x48000000 Hash algo: crc32 Hash value: e528862b Hash algo: sha1 Hash value: d52b3aab4dfa3f0590fb33175e43826d94ba40cb Verifying Hash Integrity ... crc32+ sha1+ OK
## Loading fdt (any) from FIT Image at 46000000 ...
Using 'config-1' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt acer_predator-w6x-ubootmod device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x465cc000 Data Size: 21289 Bytes = 20.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: e41daa3d Hash algo: sha1 Hash value: d4d4a0eff5ed6d0053be9cf651b7b6cb63f39f65 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x465cc000
Working FDT set to 465cc000 ## Loading loadables (any) from FIT Image at 46000000 ...
Trying 'rootfs-1' loadables subimage Description: ARM64 OpenWrt acer_predator-w6x-ubootmod rootfs Type: Filesystem Image Compression: uncompressed Data Start: 0x465d2000 Data Size: 5611520 Bytes = 5.4 MiB Hash algo: crc32 Hash value: b952f7a9 Hash algo: sha1 Hash value: 19c48651a14a41b3d5d97c931bfba8cbfd56caeb Verifying Hash Integrity ... crc32+ sha1+ OK Uncompressing Kernel Image to 48000000 Loading Device Tree to 000000007e7f7000, end 000000007e7ff328 ... OK
Working FDT set to 7e7f7000 Add 'ramoops@42ff0000' node failed: FDT_ERR_EXISTS
Starting kernel ...
<6>[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] <5>[ 0.000000] Linux version 6.12.40 (x@y) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 14.3.0 r30815-d870e803a5) 14.3.0, GNU ld (GNU Binutils) 2.44) #0 SMP Sun Aug 24 06:30:23 2025 <6>[ 0.000000] Machine model: Acer Predator Connect W6x (OpenWrt U-Boot Layout) <6>[ 0.000000] OF: reserved mem: 0x0000000042ff0000..0x0000000042ffffff (64 KiB) map non-reusable ramoops@42ff0000 <6>[ 0.000000] OF: reserved mem: 0x0000000043000000..0x000000004302ffff (192 KiB) nomap non-reusable secmon@43000000 <6>[ 0.000000] OF: reserved mem: 0x000000004fc00000..0x000000004fcfffff (1024 KiB) nomap non-reusable wmcpu-reserved@4fc00000 <6>[ 0.000000] OF: reserved mem: 0x000000004fd00000..0x000000004fd3ffff (256 KiB) nomap non-reusable wo-emi@4fd00000 <6>[ 0.000000] OF: reserved mem: 0x000000004fd40000..0x000000004fd7ffff (256 KiB) nomap non-reusable wo-emi@4fd40000 <6>[ 0.000000] OF: reserved mem: 0x000000004fd80000..0x000000004ffbffff (2304 KiB) nomap non-reusable wo-data@4fd80000 <6>[ 0.000000] Zone ranges: <6>[ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff] <6>[ 0.000000] DMA32 empty <6>[ 0.000000] Normal empty <6>[ 0.000000] Movable zone start for each node <6>[ 0.000000] Early memory node ranges <6>[ 0.000000] node 0: [mem 0x0000000040000000-0x0000000042ffffff] <6>[ 0.000000] node 0: [mem 0x0000000043000000-0x000000004302ffff] <6>[ 0.000000] node 0: [mem 0x0000000043030000-0x000000004fbfffff] <6>[ 0.000000] node 0: [mem 0x000000004fc00000-0x000000004ffbffff] <6>[ 0.000000] node 0: [mem 0x000000004ffc0000-0x000000007fffffff] <6>[ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] <6>[ 0.000000] psci: probing for conduit method from DT. <6>[ 0.000000] psci: PSCIv1.1 detected in firmware. <6>[ 0.000000] psci: Using standard PSCI v0.2 function IDs <6>[ 0.000000] psci: MIGRATE_INFO_TYPE not supported. <6>[ 0.000000] psci: SMC Calling Convention v1.5 <6>[ 0.000000] percpu: Embedded 20 pages/cpu s42520 r8192 d31208 u81920 <7>[ 0.000000] pcpu-alloc: s42520 r8192 d31208 u81920 alloc=20*4096 <7>[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 <6>[ 0.000000] Detected VIPT I-cache on CPU0 <6>[ 0.000000] CPU features: detected: GIC system register CPU interface <6>[ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration <6>[ 0.000000] alternatives: applying boot alternatives <5>[ 0.000000] Kernel command line: console=ttyS0,115200n8 console_msg_format=syslog root=/dev/fit0 rootwait <6>[ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) <6>[ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) <6>[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 262144 <6>[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off <6>[ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 1MB <6>[ 0.000000] software IO TLB: area num 4. <6>[ 0.000000] software IO TLB: mapped [mem 0x000000007eb00000-0x000000007ec00000] (1MB) <6>[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 <6>[ 0.000000] rcu: Hierarchical RCU implementation. <6>[ 0.000000] Tracing variant of Tasks RCU enabled. <6>[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. <6>[ 0.000000] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=4. <6>[ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 <6>[ 0.000000] GICv3: GIC: Using split EOI/Deactivate mode <6>[ 0.000000] GICv3: 640 SPIs implemented <6>[ 0.000000] GICv3: 0 Extended SPIs implemented <6>[ 0.000000] Root IRQ handler: gic_handle_irq <6>[ 0.000000] GICv3: GICv3 features: 16 PPIs <6>[ 0.000000] GICv3: GICD_CTRL.DS=0, SCR_EL3.FIQ=0 <6>[ 0.000000] GICv3: CPU0: found redistributor 0 region 0:0x000000000c080000 <6>[ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. <6>[ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). <6>[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns <6>[ 0.000000] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns <6>[ 0.000060] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) <6>[ 0.000068] pid_max: default: 32768 minimum: 301 <6>[ 0.002072] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) <6>[ 0.002080] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) <4>[ 0.003657] cacheinfo: Unable to detect cache hierarchy for CPU 0 <6>[ 0.004274] rcu: Hierarchical SRCU implementation. <6>[ 0.004276] rcu: Max phase no-delay instances is 1000. <6>[ 0.004393] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level <6>[ 0.004605] smp: Bringing up secondary CPUs ... <6>[ 0.004862] Detected VIPT I-cache on CPU1 <6>[ 0.004902] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 <6>[ 0.004930] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] <6>[ 0.005244] Detected VIPT I-cache on CPU2 <6>[ 0.005268] GICv3: CPU2: found redistributor 2 region 0:0x000000000c0c0000 <6>[ 0.005280] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] <6>[ 0.005546] Detected VIPT I-cache on CPU3 <6>[ 0.005565] GICv3: CPU3: found redistributor 3 region 0:0x000000000c0e0000 <6>[ 0.005575] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] <6>[ 0.005609] smp: Brought up 1 node, 4 CPUs <6>[ 0.005613] SMP: Total of 4 processors activated. <6>[ 0.005615] CPU: All CPU(s) started at EL2 <6>[ 0.005617] CPU features: detected: 32-bit EL0 Support <6>[ 0.005620] CPU features: detected: CRC32 instructions <6>[ 0.005642] alternatives: applying system-wide alternatives <6>[ 0.005748] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching <6>[ 0.005868] Memory: 1005764K/1048576K available (9216K kernel code, 974K rwdata, 2732K rodata, 448K init, 298K bss, 39376K reserved, 0K cma-reserved) <6>[ 0.008070] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns <6>[ 0.008085] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) <6>[ 0.008155] 29312 pages in range for non-PLT usage <6>[ 0.008157] 520832 pages in range for PLT usage <6>[ 0.009129] pinctrl core: initialized pinctrl subsystem <6>[ 0.010052] NET: Registered PF_NETLINK/PF_ROUTE protocol family <6>[ 0.010320] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations <6>[ 0.010339] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations <6>[ 0.010354] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations <6>[ 0.010637] thermal_sys: Registered thermal governor 'fair_share' <6>[ 0.010640] thermal_sys: Registered thermal governor 'bang_bang' <6>[ 0.010642] thermal_sys: Registered thermal governor 'step_wise' <6>[ 0.010644] thermal_sys: Registered thermal governor 'user_space' <6>[ 0.010699] ASID allocator initialised with 65536 entries <6>[ 0.011174] pstore: Using crash dump compression: deflate <6>[ 0.011178] pstore: Registered ramoops as persistent store backend <6>[ 0.011180] ramoops: using 0x10000@0x42ff0000, ecc: 0 <6>[ 0.012160] /soc/interrupt-controller@c000000: Fixed dependency cycle(s) with /soc/interrupt-controller@c000000 <6>[ 0.023791] cryptd: max_cpu_qlen set to 1000 <5>[ 0.025456] SCSI subsystem initialized <7>[ 0.025703] libata version 3.00 loaded. <6>[ 0.026904] clocksource: Switched to clocksource arch_sys_counter <6>[ 0.028569] NET: Registered PF_INET protocol family <6>[ 0.028663] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) <6>[ 0.029651] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) <6>[ 0.029664] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) <6>[ 0.029671] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) <6>[ 0.029708] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear) <6>[ 0.029876] TCP: Hash tables configured (established 8192 bind 8192) <6>[ 0.030131] MPTCP token hash table entries: 1024 (order: 2, 24576 bytes, linear) <6>[ 0.030210] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) <6>[ 0.030226] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) <6>[ 0.030372] NET: Registered PF_UNIX/PF_LOCAL protocol family <6>[ 0.030393] PCI: CLS 0 bytes, default 64 <6>[ 0.031302] workingset: timestamp_bits=46 max_order=18 bucket_order=0 <6>[ 0.034630] squashfs: version 4.0 (2009/01/31) Phillip Lougher <6>[ 0.034634] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) © 2001-2006 Red Hat, Inc. <6>[ 0.073506] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled <6>[ 0.074379] printk: legacy console [ttyS0] disabled <6>[ 0.094674] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 116, base_baud = 2500000) is a ST16650V2 <6>[ 0.094712] printk: legacy console [ttyS0] enabled <6>[ 0.926933] mtk_rng 1020f000.rng: registered RNG driver <6>[ 0.934867] loop: module loaded <6>[ 0.940104] spi-nand spi0.0: Winbond SPI NAND was found. <6>[ 0.945674] spi-nand spi0.0: 256 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 <5>[ 0.954285] 6 fixed-partitions partitions found on MTD device spi0.0 <5>[ 0.961108] Creating 6 MTD partitions on “spi0.0”: <5>[ 0.966147] 0x000000000000-0x000000100000 : “bl2” <5>[ 0.971983] 0x000000100000-0x000000180000 : “u-boot-env” <5>[ 0.978031] 0x000000180000-0x000000380000 : “factory” <5>[ 0.984699] 0x000000380000-0x000000580000 : “fip” <5>[ 0.990924] 0x000000580000-0x0000005a0000 : “prod” <5>[ 0.996244] 0x000000580000-0x00000d780000 : “ubi” <5>[ 1.105256] ubi0: default fastmap pool size: 80 <5>[ 1.110049] ubi0: default fastmap WL pool size: 40 <5>[ 1.115083] ubi0: attaching mtd5 <5>[ 1.616904] random: crng init done <5>[ 1.717972] ubi0: scanning is finished <5>[ 1.726708] ubi0: attached mtd5 (name “ubi”, size 210 MiB) <5>[ 1.732460] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes <5>[ 1.739578] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 <5>[ 1.746606] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 <5>[ 1.753809] ubi0: good PEBs: 1680, bad PEBs: 0, corrupted PEBs: 0 <5>[ 1.760145] ubi0: user volume: 5, internal volumes: 1, max. volumes count: 128 <5>[ 1.767608] ubi0: max/mean erase counter: 35/27, WL threshold: 4096, image sequence number: 85987210 <5>[ 1.776978] ubi0: available PEBs: 0, total reserved PEBs: 1680, PEBs reserved for bad PEB handling: 40 <5>[ 1.786523] ubi0: background thread “ubi_bgt0d” started, PID 214 <6>[ 1.787115] block ubiblock0_3: created from ubi0:3(fit) <3>[ 1.918134] mtk_soc_eth 15100000.ethernet: generated random MAC address 20:08:02:00:00:00 <3>[ 1.926571] mtk_soc_eth 15100000.ethernet: generated random MAC address 20:08:02:00:00:00 <6>[ 1.936465] Maxlinear Ethernet GPY211C mdio-bus:06: Firmware Version: 8.111 (0x886F) <6>[ 1.946936] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc081680000, irq 121 <6>[ 1.956953] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc081680000, irq 121 <6>[ 1.966859] i2c_dev: i2c /dev entries driver <6>[ 1.972633] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) <6>[ 1.981294] NET: Registered PF_INET6 protocol family <6>[ 1.987124] Segment Routing with IPv6 <6>[ 1.991055] In-situ OAM (IOAM) with IPv6 <6>[ 1.995258] NET: Registered PF_PACKET protocol family <6>[ 2.000636] 8021q: 802.1Q VLAN Support v1.8 <6>[ 2.018412] FIT: Detected U-Boot 2025.07-OpenWrt-r30837-7dfbe9c846 <6>[ 2.024851] FIT: Selected configuration: “config-1” (OpenWrt acer_predator-w6x-ubootmod) <6>[ 2.033208] FIT: kernel sub-image 0x00001000..0x005cb599 “kernel-1” (ARM64 OpenWrt Linux-6.12.40) <6>[ 2.043289] FIT: flat_dt sub-image 0x005cc000..0x005d1328 “fdt-1” (ARM64 OpenWrt acer_predator-w6x-ubootmod device tree blob) <6>[ 2.055705] FIT: filesystem sub-image 0x005d2000..0x00b2bfff “rootfs-1” (ARM64 OpenWrt acer_predator-w6x-ubootmod rootfs) <6>[ 2.067835] block ubiblock0_3: mapped 1 uImage.FIT filesystem sub-image as /dev/fit0 <6>[ 2.115906] mt7530-mdio mdio-bus:1f: no interrupt support <6>[ 2.135370] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode <6>[ 2.144596] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx <6>[ 2.154563] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=POLL) <6>[ 2.175907] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=POLL) <6>[ 2.196957] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7531 PHY] (irq=POLL) <6>[ 2.217989] mt7530-mdio mdio-bus:1f lan4 (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7531 PHY] (irq=POLL) <6>[ 2.229289] mtk_soc_eth 15100000.ethernet eth0: entered promiscuous mode <6>[ 2.236253] DSA: tree 0 setup <6>[ 2.239740] clk: Disabling unused clocks <6>[ 2.244154] PM: genpd: Disabling unused power domains <6>[ 2.252647] VFS: Mounted root (squashfs filesystem) readonly on device 259:0. <6>[ 2.260201] Freeing unused kernel memory: 448K <6>[ 2.264931] Run /sbin/init as init process <7>[ 2.269280] with arguments: <7>[ 2.272492] /sbin/init <7>[ 2.275443] with environment: <7>[ 2.278840] HOME=/ <7>[ 2.281445] TERM=linux <14>[ 2.415810] init: Console is alive <14>[ 2.419672] init: - watchdog - <14>[ 2.709382] kmodloader: loading kernel modules from /etc/modules-boot.d/* <6>[ 2.727134] usbcore: registered new interface driver usbfs <6>[ 2.732900] usbcore: registered new interface driver hub <6>[ 2.738522] usbcore: registered new device driver usb <4>[ 2.744400] gpio_button_hotplug: loading out-of-tree module taints kernel. <6>[ 2.756681] xhci-mtk 11200000.usb: xHCI Host Controller <6>[ 2.762190] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 1 <6>[ 2.772846] xhci-mtk 11200000.usb: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000200010 <6>[ 2.782259] xhci-mtk 11200000.usb: irq 125, io mem 0x11200000 <6>[ 2.788370] xhci-mtk 11200000.usb: xHCI Host Controller <6>[ 2.793841] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 2 <6>[ 2.801483] xhci-mtk 11200000.usb: Host supports USB 3.2 Enhanced SuperSpeed <6>[ 2.809090] hub 1-0:1.0: USB hub found <6>[ 2.813103] hub 1-0:1.0: 2 ports detected <6>[ 2.817618] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. <6>[ 2.826151] hub 2-0:1.0: USB hub found <6>[ 2.830177] hub 2-0:1.0: 1 port detected <14>[ 2.838354] kmodloader: done loading kernel modules from /etc/modules-boot.d/* <14>[ 2.846657] init: - preinit - <6>[ 3.053909] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode <6>[ 3.062647] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx <4>[ 3.089640] mtdblock: MTD device 'u-boot-env' is NAND, please consider using UBI block devices instead. <6>[ 3.540560] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level <5>[ 7.605494] UBIFS (ubi0:4): Mounting in unauthenticated mode <5>[ 7.611550] UBIFS (ubi0:4): background thread “ubifs_bgt0_4” started, PID 783 <5>[ 7.639369] UBIFS (ubi0:4): recovery needed <5>[ 7.696036] UBIFS (ubi0:4): recovery completed <5>[ 7.700787] UBIFS (ubi0:4): UBIFS: mounted UBI device 0, volume 4, name “rootfs_data” <5>[ 7.708867] UBIFS (ubi0:4): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes <5>[ 7.719019] UBIFS (ubi0:4): FS size: 183099392 bytes (174 MiB, 1442 LEBs), max 1454 LEBs, journal size 9142272 bytes (8 MiB, 72 LEBs) <5>[ 7.731253] UBIFS (ubi0:4): reserved for root: 4952683 bytes (4836 KiB) <5>[ 7.738111] UBIFS (ubi0:4): media format: w5/r0 (latest is w5/r0), UUID 15CAC093-BA8A-4F20-9FA3-4A23B1061319, small LPT model <14>[ 7.752447] mount_root: switching to ubifs overlay <4>[ 7.760691] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. <15>[ 7.774378] urandom-seed: Seeding with /etc/urandom.seed <14>[ 7.823327] procd: - early - <14>[ 7.826604] procd: - watchdog - <14>[ 8.367962] procd: - watchdog - <14>[ 8.375258] procd: - ubus - <14>[ 8.528684] procd: - init - Please press Enter to activate this console. <14>[ 8.741202] kmodloader: loading kernel modules from /etc/modules.d/* <6>[ 8.761540] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 <6>[ 8.776185] Loading modules backported from Linux version v6.16-0-g038d61fd6422 <6>[ 8.783766] Backport generated by backports.git v6.1.145-1-47-g6194bf852a3e <14>[ 8.919363] urngd: v1.0.2 started. <6>[ 9.130676] mt798x-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20240823160656a <6>[ 9.130676] <6>[ 9.265806] mt798x-wmac 18000000.wifi: WM Firmware Version: 000000, Build Time: 20240823160721 <6>[ 9.346788] mt798x-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20240823160840 <6>[ 9.453099] mt798x-wmac 18000000.wifi: registering led 'mt76-phy0' <6>[ 9.518202] mt798x-wmac 18000000.wifi: registering led 'mt76-phy1' <4>[ 9.573096] mtdblock: MTD device 'u-boot-env' is NAND, please consider using UBI block devices instead. <6>[ 9.617986] PPP generic driver version 2.4.2 <6>[ 9.623328] NET: Registered PF_PPPOX protocol family <14>[ 9.631178] kmodloader: done loading kernel modules from /etc/modules.d/* <4>[ 9.903456] mtdblock: MTD device 'u-boot-env' is NAND, please consider using UBI block devices instead. <6>[ 11.684106] mtk_soc_eth 15100000.ethernet eth0: Link is Down <6>[ 11.700483] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode <6>[ 11.710136] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx <6>[ 11.715996] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode <6>[ 11.730382] br-lan: port 1(lan1) entered blocking state <6>[ 11.735880] br-lan: port 1(lan1) entered disabled state <6>[ 11.741479] mt7530-mdio mdio-bus:1f lan1: entered allmulticast mode <6>[ 11.748068] mtk_soc_eth 15100000.ethernet eth0: entered allmulticast mode <6>[ 11.758550] mt7530-mdio mdio-bus:1f lan1: entered promiscuous mode <6>[ 11.773856] mt7530-mdio mdio-bus:1f lan2: configuring for phy/gmii link mode <6>[ 11.784950] br-lan: port 2(lan2) entered blocking state <6>[ 11.790528] br-lan: port 2(lan2) entered disabled state <6>[ 11.796063] mt7530-mdio mdio-bus:1f lan2: entered allmulticast mode <6>[ 11.804436] mt7530-mdio mdio-bus:1f lan2: entered promiscuous mode <6>[ 11.818895] mt7530-mdio mdio-bus:1f lan3: configuring for phy/gmii link mode <6>[ 11.830141] br-lan: port 3(lan3) entered blocking state <6>[ 11.835640] br-lan: port 3(lan3) entered disabled state <6>[ 11.841225] mt7530-mdio mdio-bus:1f lan3: entered allmulticast mode <6>[ 11.849673] mt7530-mdio mdio-bus:1f lan3: entered promiscuous mode <6>[ 11.864010] mt7530-mdio mdio-bus:1f lan4: configuring for phy/gmii link mode <6>[ 11.875132] br-lan: port 4(lan4) entered blocking state <6>[ 11.880626] br-lan: port 4(lan4) entered disabled state <6>[ 11.886114] mt7530-mdio mdio-bus:1f lan4: entered allmulticast mode <6>[ 11.894588] mt7530-mdio mdio-bus:1f lan4: entered promiscuous mode <6>[ 11.910660] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:06] driver [Maxlinear Ethernet GPY211C] (irq=POLL) <6>[ 11.921174] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/2500base-x link mode
Notes
Space for additional notes, links to forum threads or other resources.
- ...
Tags
Add tags below, then remove this fixme.








