CMCC RAX3000M

The CMCC RAX3000M and RAX3000Me are the WiFi 6 AX3000 routers. They supports two 802.11ax streams on both 2.4GHz@40MHz and 5GHz@160MHz for a combined 3000Mbps wireless speed. Can be with or without USB 3.0 port.

CMCC RAX3000M

All hardware revisions are supported in OpenWrt 23.05.1 or newer.

NAND

NAND Flash U-Boot Support U-Boot version OpenWrt support OpenWrt Version
GigaDevice GD5F1GM7UEYIG Yes 23.05.1 or newer Yes 23.05.1 or newer
FudanMicro FM25S01A Yes SNAPSHOT Yes 24.10.3 or newer

RAM

NAND Flash U-Boot Support U-Boot version OpenWrt support OpenWrt Version
DDR3 (rev. CH EC, XW EC, CH or XW) Yes SNAPSHOT Yes 23.05.1 or newer
DDR4 (rev. WS EC, WS) Yes 23.05.1 or newer Yes 23.05.1 or newer

Switch

Switch U-Boot Support U-Boot version OpenWrt support OpenWrt Version
MediaTek MT7531AE Yes 23.05.1 or newer Yes 23.05.1 or newer
Airoha AN8855 Yes SNAPSHOT No Not supported yet

None at this time.

Click to display ⇲

Click to hide ⇱


Gain SSH access

1. Login into web interface, and download the configuration

2. Enter fakeroot, decompress the configuration:

 tar -zxf cfg_export_config_file.conf

3. Edit etc/config/dropbear, set enable to 1.

4. Edit 'etc/shadow', update (remove) root password:

 root::19523:0:99999:7:::

5. Repack etc directory:

 tar -zcf cfg_export_config_file.conf etc/

* If you find an error about etc/wireless/mediatek/DBDC_card0.dat, just ignore it.

6. Upload new configuration via web interface, now you can SSH to RAX3000M.


Check storage type

Check the label on the back of the device:

  • CH EC CMIIT ID: xxxx is eMMC version
  • CH CMIIT ID: xxxx is NAND version
Storage type Release OpenWrt U-Boot files
eMMC 23.05, 24.10 flash emmc-preloader.bin and emmc-bl31-uboot.fip
SNAPSHOT flash emmc-ddr4-preloader.bin and emmc-ddr4-bl31-uboot.fip
NAND 23.05, 24.10 flash nand-preloader.bin and nand-bl31-uboot.fip
SNAPSHOT flash nand-ddr4-preloader.bin and nand-ddr4-bl31-uboot.fip

eMMC Flash instructions

1. SSH to RAX3000M, and backup everything, especially factory part (data partition can be ignored, it's useless)

2. Write new GPT table:

 dd if=openwrt-mediatek-filogic-cmcc_rax3000m-emmc-gpt.bin of=/dev/mmcblk0 bs=512 seek=0 count=34 conv=fsync

3. Erase and write new BL2:

 echo 0 > /sys/block/mmcblk0boot0/force_ro
 dd if=/dev/zero of=/dev/mmcblk0boot0 bs=512 count=8192 conv=fsync
 dd if=openwrt-mediatek-filogic-cmcc_rax3000m-emmc-preloader.bin of=/dev/mmcblk0boot0 bs=512 conv=fsync

4. Erase and write new FIP:

 dd if=/dev/zero of=/dev/mmcblk0 bs=512 seek=13312 count=8192 conv=fsync
 dd if=openwrt-mediatek-filogic-cmcc_rax3000m-emmc-bl31-uboot.fip of=/dev/mmcblk0 bs=512 seek=13312 conv=fsync

5. Set static IP on your PC:

 IP 192.168.1.254, GW 192.168.1.1

6. Serve OpenWrt initramfs image using TFTP server

7. Cut off the power and re-engage, wait for TFTP recovery to complete

8. After OpenWrt has booted, perform sysupgrade

9. Additionally, if you want to have eMMC recovery boot feature (Don't worry! You will always have TFTP recovery boot feature):

 dd if=openwrt-mediatek-filogic-cmcc_rax3000m-initramfs-recovery.itb of=/dev/mmcblk0p4 bs=512 conv=fsync

NAND Flash instructions

1. SSH to RAX3000M, and backup everything, especially Factory part

2. Erase and write new BL2:

 mtd erase BL2
 mtd write openwrt-mediatek-filogic-cmcc_rax3000m-nand-preloader.bin BL2

3. Erase and write new FIP:

 mtd erase FIP
 mtd write openwrt-mediatek-filogic-cmcc_rax3000m-nand-bl31-uboot.fip FIP

4. Set static IP on your PC:

 IP 192.168.1.254, GW 192.168.1.1

5. Serve OpenWrt initramfs image using TFTP server

6. Cut off the power and re-engage, wait for TFTP recovery to complete

7. After OpenWrt has booted, erase UBI volumes:

 ubidetach -p /dev/mtd0
 ubiformat -y /dev/mtd0
 ubiattach -p /dev/mtd0

8. Create new ubootenv volumes:

 ubimkvol /dev/ubi0 -n 0 -N ubootenv -s 128KiB
 ubimkvol /dev/ubi0 -n 1 -N ubootenv2 -s 128KiB

9. Additionally, if you want to have NAND recovery boot feature (Don't worry! You will always have TFTP recovery boot feature):

 ubimkvol /dev/ubi0 -n 2 -N recovery -s 20MiB
 ubiupdatevol /dev/ubi0_2 openwrt-mediatek-filogic-cmcc_rax3000m-initramfs-recovery.itb

10. Perform sysupgrade.


Warning!

Check your hardware before continue. Proceed with care!

Click to display ⇲

Click to hide ⇱


Gain SSH access

1. Login into web interface, and download the configuration

2. Get the SN of the device from web interface or the label on the back of the device

3. Calculate configuration decryption password (command eval is necessary here as the encryption implementation treats $... as (empty) variables):

 decpwd="$(eval echo $(openssl passwd -1 -salt aV6dW8bD "your_device_sn"))"

4. Decrypt the configuration:

 openssl aes-256-cbc -d -pbkdf2 -k "$decpwd" -in cfg_export_config_file.conf -out cfg_export_config_file.conf.dec

5. Enter fakeroot, decompress the configuration:

 tar -zxf cfg_export_config_file.conf.dec

6. Edit etc/shadow, update (remove) root password:

 root::19179:0:99999:7:::

7. Edit etc/rc.local, insert telnetd command before exit 0:

 ( sleep 3s; telnetd; ) &

8. Repack the configuration:

 tar -zc etc/ | openssl aes-256-cbc -pbkdf2 -k "$decpwd" -out cfg_export_config_file.conf

If you find an error about etc/wireless/mediatek/DBDC_card0.dat, just ignore it

9. Upload new configuration via web interface, now you can connect to CMCC RAX3000Me via telnet (big thanks to https://github.com/lyq1996 who reverse engineered the encryption method)

10. Check the revision on the label on the back of the device:

Revision Storage type OpenWrt U-Boot files
CH EC, XW EC eMMC flash emmc-ddr3-preloader.bin and emmc-ddr3-bl31-uboot.fip from SNAPSHOT
WS EC eMMC flash emmc-ddr4-preloader.bin and emmc-ddr4-bl31-uboot.fip from SNAPSHOT
CH, XW NAND flash nand-ddr3-preloader.bin and nand-ddr3-bl31-uboot.fip from SNAPSHOT
WS NAND flash nand-ddr4-preloader.bin and nand-ddr4-bl31-uboot.fip from SNAPSHOT

eMMC Flash instructions

1. Connect to RAX3000Me, and backup everything, especially factory part (data partition can be ignored, it's useless)

2. Write new GPT table:

 dd if=openwrt-mediatek-filogic-cmcc_rax3000me-emmc-gpt.bin of=/dev/mmcblk0 bs=512 seek=0 count=34 conv=fsync

3. Write new BL2:

 echo 0 > /sys/block/mmcblk0boot0/force_ro
 dd if=openwrt-mediatek-filogic-cmcc_rax3000me-emmc-<memory type>-preloader.bin of=/dev/mmcblk0boot0 bs=512 conv=fsync

4. Write new FIP:

 dd if=openwrt-mediatek-filogic-cmcc_rax3000me-emmc-<memory type>-bl31-uboot.fip of=/dev/mmcblk0 bs=512 seek=13312 conv=fsync

5. Set static IP on your PC:

 IP 192.168.1.254/24, GW 192.168.1.1

6. Serve OpenWrt initramfs image using TFTP server

7. Cut off the power and re-engage, wait for TFTP recovery to complete

8. After OpenWrt has booted, perform sysupgrade


NAND Flash instructions

1. Connect to RAX3000Me, and backup everything, especially 'Factory' part

2. Write new BL2 and FIP:

 mtd write openwrt-mediatek-filogic-cmcc_rax3000me-nand-<memory type>-preloader.bin BL2
 mtd write openwrt-mediatek-filogic-cmcc_rax3000me-nand-<memory type>-bl31-uboot.fip FIP

3. Set static IP on your PC:

 IP 192.168.1.254/24, GW 192.168.1.1

4. Serve OpenWrt initramfs image using TFTP server

5. Cut off the power and re-engage, wait for TFTP recovery to complete

6. After OpenWrt has booted, perform sysupgrade


NAND version

mtd start end
bl2 0x0 0x100000
u-boot-env 0x100000 0x180000
fip 0x180000 0x580000
ubi 0x580000 0x7780000

None at this time.

None at this time. → generic.flashing.tftp

  • 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

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

1. Place OpenWrt initramfs-recovery.itb image on the tftp server (for example, you can use tftpd64 for Windows) with IP 192.168.1.254

2. Press “Reset” button and power on the router. After ~10 sec release the button.

3. Use OpenWrt initramfs system for recovery

Use mtk_uartboot and UART connection if BL2 and/or FIP is destroyed. https://github.com/981213/mtk_uartboot

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

The default network configuration is:

Interface Name Description Default configuration
br-lan LAN & WiFi 192.168.1.1/24
phy0 WiFi Disabled, br-lan
phy1 WiFi Disabled, br-lan
Port Switch port
Internet (WAN) eth1
LAN 1 2
LAN 2 1
LAN 3 0

hardware.button on howto use and configure the hardware button(s). Here, we merely name the buttons, so we can use them in the above Howto.

The CMCC RAX3000M has the following buttons:

BUTTON Event
Reset reset
Mesh BTN_9

Front:
CMCC RAX3000M

Back:
CMCC RAX3000M

Bottom:
CMCC RAX3000M

Note: This will void your warranty!

There are 2 screws behind adhesive label on the bottom. There are also clips around the edge of the case. You will need to try open, using, for example, a plastic card.

Main PCB:
CMCC RAX3000Me PCB

port.serial general information about the serial port, serial port cable, etc.

How to connect to the Serial Port of this specific device:
CMCC RAX3000M

Serial connection parameters
for CMCC RAX3000M
115200, 8N1, 3.3V

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

None so far.

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 024B [010F] Jump to BL NOTICE: BL2: v2.7(release):686b9643c-dirty NOTICE: BL2: Built : 20:10:22, Jan 15 2025 NOTICE: WDT: disabled NOTICE: EMI: Using DDR3 settings NOTICE: EMI: Detected DRAM size: 512MB NOTICE: EMI: complex R/W mem test passed NOTICE: CPU: MT7981 (1300MHz) NOTICE: PP COPY 0 CRC read: 0x545, compute: 0x545 NOTICE: SPI_NAND parses attributes from parameter page. NOTICE: SPI_NAND Detected ID 0xc8 NOTICE: Page size 2048, Block size 131072, size 134217728 NOTICE: Initializing NMBM ... NOTICE: Signature found at block 1023 [0x07fe0000] NOTICE: First info table with writecount 0 found in block 960 NOTICE: Second info table with writecount 0 found in block 963 NOTICE: NMBM has been successfully attached in read-only mode NOTICE: BL2: Booting BL31 NOTICE: BL31: v2.7(release):686b9643c-dirty NOTICE: BL31: Built : 20:10:27, Jan 15 2025 U-Boot 2022.10-rc2 (Jan 15 2025 - 20:09:16 +0800), Build: jenkins-RAX3000M-869 CPU: MediaTek MT7981 Model: mt7981-rfb DRAM: 512 MiB Core: 39 devices, 18 uclasses, devicetree: separate Initializing NMBM ... spi-nand: spi_nand spi_nand@0: GigaDevice SPI NAND was found. spi-nand: spi_nand spi_nand@0: 128 MiB, block size: 128 KiB, page size: 2048, OO B size: 128 Could not find a valid device for nmbm0 Signature found at block 1023 [0x07fe0000] First info table with writecount 0 found in block 960 Second info table with writecount 0 found in block 963 NMBM has been successfully attached Loading Environment from UBI... ubi0: attaching mtd6 ubi0: scanning is finished ubi0: attached mtd6 (name "ubi", size 61 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: 488, bad PEBs: 0, corrupted PEBs: 0 ubi0: user volume: 6, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 6/1, WL threshold: 4096, image sequence number: 20 23261146 ubi0: available PEBs: 101, total reserved PEBs: 387, PEBs reserved for bad PEB h andling: 19 Read 524288 bytes from volume env to 000000005f77e180 OK In: serial@11002000 Out: serial@11002000 Err: serial@11002000 Net: Switch 0x75310001 detected eth0: ethernet@15100000 *** MCUPG check failure: -64 *** *** U-Boot Boot Menu *** 1. Startup system (Default) 0. U-Boot console Press UP/DOWN to move, ENTER to select, ESC/CTRL+C to quit UBI partition 'ubi' already selected Trying to boot from image slot 0 Read 64 bytes from volume kernel to 0000000046000000 Read 3242823 bytes from volume kernel to 0000000046000000 ## 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 (fdt-emmc): crc32+ sha1+ Read 48 bytes from volume rootfs to 0000000046317b48 Read 15225196 bytes from volume rootfs to 0000000046317b48 Hash(es) for rootfs: crc32+ sha1+ Firmware integrity verification passed ## Loading kernel from FIT Image at 46000000 ... Using 'config-1' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-5.4.188 Type: Kernel Image Compression: lzma compressed Data Start: 0x460000e8 Data Size: 3204451 Bytes = 3.1 MiB Architecture: AArch64 OS: Linux Load Address: 0x48080000 Entry Point: 0x48080000 Hash algo: crc32 Hash value: a5c27796 Hash algo: sha1 Hash value: fc65805a96a1b7fbde4fc9c2151ee19050d3d494 Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt from FIT Image at 46000000 ... Using 'config-1' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt mt7981-spim-nand-rfb device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x4630e790 Data Size: 19110 Bytes = 18.7 KiB Architecture: AArch64 Hash algo: crc32 Hash value: ee8ee65f Hash algo: sha1 Hash value: d7ba465178f6341f6e7303a55b06fae78a097e3d Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x4630e790 Uncompressing Kernel Image Loading Device Tree to 000000005f7ef000, end 000000005f7f6aa5 ... OK Starting kernel ... [ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.4.188 (cmdc@opdev) (gcc version 8.4.0 (OpenWrt GCC 8.4.0 r0-686b9643c)) #0 SMP Wed Jan 15 11:34:28 2025 [ 0.000000] Machine model: MediaTek MT7981 RFB [ 0.000000] earlycon: uart8250 at MMIO32 0x0000000011002000 (options '') [ 0.000000] printk: bootconsole [uart8250] enabled [ 0.000000] On node 0 totalpages: 130128 [ 0.000000] DMA32 zone: 2048 pages used for memmap [ 0.000000] DMA32 zone: 0 pages reserved [ 0.000000] DMA32 zone: 130128 pages, LIFO batch:31 [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.0 [ 0.000000] percpu: Embedded 20 pages/cpu s43800 r8192 d29928 u81920 [ 0.000000] pcpu-alloc: s43800 r8192 d29928 u81920 alloc=20*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 128080 [ 0.000000] Kernel command line: console=ttyS0,115200n1 loglevel=8 earlycon=uart8250,mmio32,0x11002000 ubi.rootfs_volume=rootfs boot_param.boot_kernel_part=kernel boot_param.boot_rootfs_part=rootfs boot_param.upgrade_kernel_part=kernel2 boot_param.upgrade_rootfs_part=rootfs2 power=high boot_param.env_part=env boot_param.rootfs_data_part=rootfs_data boot_param.boot_image_slot=0 boot_param.upgrade_image_slot=1 boot_param.dual_boot [ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 492392K/520512K available (6590K kernel code, 414K rwdata, 1860K rodata, 448K init, 281K bss, 28120K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: CONFIG_RCU_FANOUT set to non-default value of 32. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 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] random: get_random_bytes called from start_kernel+0x2d4/0x420 with crng_init=0 [ 0.000000] arch_timer: cp15 timer(s) running at 13.00MHz (phys). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x2ff89eacb, max_idle_ns: 440795202429 ns [ 0.000003] sched_clock: 56 bits at 13MHz, resolution 76ns, wraps every 4398046511101ns [ 0.008190] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=52000) [ 0.018510] pid_max: default: 32768 minimum: 301 [ 0.023238] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.030587] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.039276] ASID allocator initialised with 65536 entries [ 0.044778] rcu: Hierarchical SRCU implementation. [ 0.049908] smp: Bringing up secondary CPUs ... [ 0.054767] Detected VIPT I-cache on CPU1 [ 0.054789] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.054813] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.054875] smp: Brought up 1 node, 2 CPUs [ 0.076490] SMP: Total of 2 processors activated. [ 0.081217] CPU features: detected: 32-bit EL0 Support [ 0.086379] CPU features: detected: CRC32 instructions [ 0.091650] CPU: All CPU(s) started at EL2 [ 0.095772] alternatives: patching kernel code [ 0.102813] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns [ 0.112627] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.119531] pinctrl core: initialized pinctrl subsystem [ 0.125331] NET: Registered protocol family 16 [ 0.130052] DMA: preallocated 256 KiB pool for atomic allocations [ 0.151340] SCSI subsystem initialized [ 0.155292] libata version 3.00 loaded. [ 0.160081] Bluetooth: Core ver 2.22 [ 0.163841] NET: Registered protocol family 31 [ 0.168313] Bluetooth: HCI device and connection manager initialized [ 0.174706] Bluetooth: HCI socket layer initialized [ 0.179608] Bluetooth: L2CAP socket layer initialized [ 0.184690] Bluetooth: SCO socket layer initialized [ 0.189842] rbus 18000000.wbsys: PCI host bridge to bus 0000:00 [ 0.195804] pci_bus 0000:00: root bus resource [mem 0x18000000-0x18ffffff] [ 0.202716] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.208229] pci_bus 0000:00: scanning bus [ 0.212270] pci 0000:00:00.0: [14c3:7981] type 00 class 0x000280 [ 0.218315] pci 0000:00:00.0: reg 0x10: [mem 0x18000000-0x1800000f 64bit] [ 0.225139] pci 0000:00:00.0: reg 0x18: [mem 0x00000000-0x0000000f] [ 0.231439] pci 0000:00:00.0: reg 0x1c: [mem 0x00000000-0x0000000f] [ 0.237738] pci 0000:00:00.0: reg 0x20: [mem 0x00000000-0x0000000f] [ 0.244037] pci 0000:00:00.0: reg 0x24: [mem 0x00000000-0x0000000f] [ 0.251254] pci_bus 0000:00: fixups for bus [ 0.255470] pci_bus 0000:00: bus scan returning with max=00 [ 0.262005] clocksource: Switched to clocksource arch_sys_counter [ 0.268750] thermal_sys: Registered thermal governor 'fair_share' [ 0.268754] thermal_sys: Registered thermal governor 'bang_bang' [ 0.274895] thermal_sys: Registered thermal governor 'step_wise' [ 0.280934] thermal_sys: Registered thermal governor 'user_space' [ 0.286969] thermal_sys: Registered thermal governor 'power_allocator' [ 0.293344] NET: Registered protocol family 2 [ 0.304372] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.311975] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.320386] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.328196] TCP bind hash table entries: 4096 (order: 4, 65536 bytes, linear) [ 0.335418] TCP: Hash tables configured (established 4096 bind 4096) [ 0.341871] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.348444] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.355535] NET: Registered protocol family 1 [ 0.359938] PCI: CLS 0 bytes, default 64 [ 0.364709] workingset: timestamp_bits=46 max_order=17 bucket_order=0 [ 0.374326] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.380213] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.403185] phy phy-usb-phy@11e10000.1: type_sw - reg 0x218, index 0 [ 0.418933] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.426081] printk: console [ttyS0] disabled [ 0.450483] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 12, base_baud = 2500000) is a ST16650V2 [ 0.459695] printk: console [ttyS0] enabled [ 0.459695] printk: console [ttyS0] enabled [ 0.468053] printk: bootconsole [uart8250] disabled [ 0.468053] printk: bootconsole [uart8250] disabled [ 0.478380] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.486962] loop: module loaded [ 0.490240] mediatek,mt2701-ice_debug ice_debug: get dbg_sel clock fail: -2 [ 0.497205] mediatek,mt2701-ice_debug: probe of ice_debug failed with error -2 [ 0.505322] mt7981-pinctrl 11d00000.pinctrl: pin_config_set op failed for pin 19 [ 0.512721] mtk-spi 1100a000.spi: Error applying setting, reverse things back [ 0.520457] spi-nand spi0.0: GigaDevice SPI NAND was found. [ 0.526057] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 [ 0.536317] tun: Universal TUN/TAP device driver, 1.6 [ 0.541815] [mtk_hw_init] reset_lock:0, force:0 [ 0.546375] [mtk_hw_init] execute fe cold reset [ 0.562737] an8855 mdio-bus:01: Airoha AN8855 DSA driver, version 1.0.2 [ 0.569461] an8855 mdio-bus:01: [ 0.569461] an8855_probe 2736 priv->phy_base_new 0 [ 0.577701] mtk_soc_eth 15100000.ethernet: generated random MAC address 3a:b1:e3:2c:b3:d2 [ 0.587957] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc011700000, irq 75 [ 0.597053] mtk_soc_eth 15100000.ethernet: generated random MAC address 82:25:ff:72:2f:e1 [ 0.607325] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc011700000, irq 75 [ 0.616379] (unnamed net_device) (dummy): netif_napi_add() called with weight 256 [ 0.624163] i2c /dev entries driver [ 0.628610] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 0.636613] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com [ 0.645161] Bluetooth: HCI UART driver ver 2.3 [ 0.649611] Bluetooth: HCI UART protocol H4 registered [ 0.654772] Bluetooth: HCI UART protocol BCSP registered [ 0.660169] Bluetooth: HCI UART protocol Broadcom registered [ 0.665842] Bluetooth: HCI UART protocol QCA registered [ 0.673204] NET: Registered protocol family 10 [ 0.678372] Segment Routing with IPv6 [ 0.682112] NET: Registered protocol family 17 [ 0.686614] Bridge firewalling registered [ 0.691429] 8021q: 802.1Q VLAN Support v1.8 [ 0.705123] nmbm nmbm_spim_nand: Signature found at block 1023 [0x07fe0000] [ 0.712869] nmbm nmbm_spim_nand: First info table with writecount 0 found in block 960 [ 0.723084] nmbm nmbm_spim_nand: Second info table with writecount 0 found in block 963 [ 0.731085] nmbm nmbm_spim_nand: NMBM has been successfully attached [ 0.737687] 8 fixed-partitions partitions found on MTD device nmbm_spim_nand [ 0.744730] Creating 8 MTD partitions on "nmbm_spim_nand": [ 0.750211] 0x000000000000-0x000000100000 : "BL2" [ 0.755484] 0x000000100000-0x000000180000 : "u-boot-env" [ 0.761295] 0x000000180000-0x000000380000 : "Factory" [ 0.766851] 0x000000380000-0x000000580000 : "FIP" [ 0.772059] 0x000000580000-0x000004280000 : "ubi" [ 0.777364] 0x000004280000-0x000006780000 : "plugins" [ 0.782980] 0x000006780000-0x000006f80000 : "fwk" [ 0.788192] 0x000006f80000-0x000007780000 : "fwk2" [ 1.004739] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [dsa-0.0:00] driver [Generic PHY] [ 1.014338] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [dsa-0.0:01] driver [Generic PHY] [ 1.023899] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [dsa-0.0:02] driver [Generic PHY] [ 1.032806] mt7530 mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.039960] DSA: tree 0 setup [ 1.040209] mt7530 mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.042922] mt7530-nl: genl_register_family_with_ops [ 1.043019] an8855 mdio-bus:01: Airoha AN8855 DSA driver, version 1.0.2 [ 1.061793] an8855 mdio-bus:01: Couldn't get our reset line [ 1.067364] an8855: probe of mdio-bus:01 failed with error -16 [ 1.073608] UBI: auto-attach mtd5 [ 1.076935] ubi0: attaching mtd5 [ 1.083522] random: fast init done [ 1.247519] ubi0: scanning is finished [ 1.256082] ubi0: attached mtd5 (name "ubi", size 61 MiB) [ 1.261489] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.268357] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.275135] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.282085] ubi0: good PEBs: 488, bad PEBs: 0, corrupted PEBs: 0 [ 1.288082] ubi0: user volume: 6, internal volumes: 1, max. volumes count: 128 [ 1.295293] ubi0: max/mean erase counter: 6/1, WL threshold: 4096, image sequence number: 2023261146 [ 1.304412] ubi0: available PEBs: 101, total reserved PEBs: 387, PEBs reserved for bad PEB handling: 19 [ 1.313798] ubi0: background thread "ubi_bgt0d" started, PID 779 [ 1.320404] block ubiblock0_1: created from ubi0:1(rootfs) [ 1.325912] ubiblock: device ubiblock0_1 (rootfs) set to be root filesystem [ 1.332867] hctosys: unable to open rtc device (rtc0) [ 1.341086] VFS: Mounted root (squashfs filesystem) readonly on device 253:0. [ 1.348462] Freeing unused kernel memory: 448K [ 1.366039] Run /sbin/init as init process [ 1.570264] init: Console is alive [ 1.573754] init: - watchdog - [ 2.289675] crng init done [ 2.345072] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 2.378723] conninfra@(mtk_conninfra_drv_init:644) Before platform_driver_register [ 2.386418] Get Index(0-TOP_MISC_BASE) phy_addr(0x11d10000) vir_addr=(0xffffffc010a55000) size=(0x1000) [ 2.395807] Get Index(1-TOPRGU_BASE) phy_addr(0x1001c000) vir_addr=(0xffffffc010a5d000) size=(0x1000) [ 2.405017] Get Index(2-GPIO_BASE) phy_addr(0x11d00000) vir_addr=(0xffffffc010a65000) size=(0x1000) [ 2.414051] Get Index(3-IOCFG_TR_BASE) phy_addr(0x11f00000) vir_addr=(0xffffffc010a6d000) size=(0x1000) [ 2.423436] Get Index(4-IOCFG_TL_BASE) phy_addr(0x11f10000) vir_addr=(0xffffffc010a75000) size=(0x1000) [ 2.432817] Get Index(5-INFRACFG_AO_BASE) phy_addr(0x10003000) vir_addr=(0xffffffc010a7d000) size=(0x1000) [ 2.442459] Get Index(6-CONN_INFRA_CFG_BASE) phy_addr(0x18001000) vir_addr=(0xffffffc010a85000) size=(0x1000) [ 2.452360] Get Index(7-CONN_INFRA_SYSRAM_BASE) phy_addr(0x18050000) vir_addr=(0xffffffc010a8d000) size=(0x1000) [ 2.462522] Get Index(8-CONN_INFRA_CLKGEN_ON_TOP_BASE) phy_addr(0x18009000) vir_addr=(0xffffffc010a95000) size=(0x1000) [ 2.473291] Get Index(9-CONN_HOST_CSR_TOP_BASE) phy_addr(0x18060000) vir_addr=(0xffffffc010a97000) size=(0x1000) [ 2.483452] Get Index(10-CONN_INFRA_BUS_CR_BASE) phy_addr(0x1800e000) vir_addr=(0xffffffc010a99000) size=(0x1000) [ 2.493701] Get Index(11-CONN_INFRA_RGU_BASE) phy_addr(0x18000000) vir_addr=(0xffffffc010a9b000) size=(0x1000) [ 2.503688] Get Index(12-CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18005000) vir_addr=(0xffffffc010a9d000) size=(0x1000) [ 2.514110] Get Index(13-INST2_CONN_WT_SLP_CTL_REG_BASE) phy_addr(0x18085000) vir_addr=(0xffffffc010aa5000) size=(0x1000) [ 2.525054] Get Index(14-CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18004000) vir_addr=(0xffffffc010aa7000) size=(0x1000) [ 2.535477] Get Index(15-INST2_CONN_RF_SPI_MST_REG_BASE) phy_addr(0x18084000) vir_addr=(0xffffffc010aa9000) size=(0x1000) [ 2.546420] Get Index(16-CONN_SEMAPHORE_BASE) phy_addr(0x18070000) vir_addr=(0xffffffc010b30000) size=(0x10000) [ 2.556495] Get Index(17-CONN_AFE_CTL_BASE) phy_addr(0x18003000) vir_addr=(0xffffffc010aab000) size=(0x1000) [ 2.566310] Get Index(18-CONN_AFE_CTL_2ND_BASE) phy_addr(0x18083000) vir_addr=(0xffffffc010aad000) size=(0x1000) [ 2.576473] Get Index(19-WF_TOP_SLPPROT_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010b50000) size=(0x10000) [ 2.586812] Get Index(20-WF_TOP_CFG_BASE) phy_addr(0x184b0000) vir_addr=(0xffffffc010af6000) size=(0x1000) [ 2.596454] Get Index(21-WF_MCU_CONFIG_LS_BASE) phy_addr(0x184f0000) vir_addr=(0xffffffc010af8000) size=(0x1000) [ 2.606616] Get Index(22-WF_MCU_BUS_CR_BASE) phy_addr(0x18400000) vir_addr=(0xffffffc010afa000) size=(0x1000) [ 2.616517] Get Index(23-WF_MCUSYS_INFRA_BUS_FULL_U_DEBUG_CTRL_AO_BASE) phy_addr(0x18500000) vir_addr=(0xffffffc010afc000) size=(0x1000) [ 2.628763] Get Index(24-WF_TOP_CFG_ON_BASE) phy_addr(0x184c0000) vir_addr=(0xffffffc010b70000) size=(0x10000) [ 2.638750] conninfra@(consys_plt_hw_init:162) adie_cfg_type = 1, one_adie_dbdc = 1 [ 2.646401] [emi_mng_init] gConEmiPhyBase = [0x47c80000] size = [0x100000] fw size = [0x100000] ops=[00000000dce3e3b2] [ 2.657173] conninfra@(mtk_conninfra_drv_init:650) After platform_driver_register [ 2.665032] ConnInfra Dev: init (0) [ 2.669977] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) [ 2.679835] conninfra@(connsys_d_die_cfg:365) D-die efuse: 0x00000000 [ 2.687291] conninfra@(_connsys_a_die_cfg_7976:919) adie_idx[0], A-die CHIP ID = 0x7976, HW Version = 0x8b00 [ 2.698110] conninfra@(consys_spi_write_nolock:501) addr=0x0a00, val=0xffffffff [ 2.706412] conninfra@(consys_spi_write_nolock:501) addr=0x04ac, val=0x0000001c [ 2.714714] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 2.724023] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x00000000 [ 2.733331] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x43a60000 [ 2.746670] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008600bc, 0x00000000] [ 2.758181] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 2.767490] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a6003a [ 2.776799] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63a7003a [ 2.790137] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008600bc, 0x00000000] [ 2.801648] conninfra@(consys_spi_write_nolock:501) addr=0x0144, val=0x00000002 [ 2.810957] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x23a7003a [ 2.820266] conninfra@(consys_spi_write_nolock:501) addr=0x0148, val=0x63ac003a [ 2.833604] conninfra@(connsys_a_die_efuse_read_nolock:737) efuse = [0x00000001, 0x00c40000, 0x008600bc, 0x00000000] [ 2.845115] conninfra@(consys_spi_write_nolock:501) addr=0x0038, val=0x4a563b00 [ 2.853416] conninfra@(consys_spi_write_nolock:501) addr=0x065c, val=0x1d59080f [ 2.861717] conninfra@(consys_spi_write_nolock:501) addr=0x0664, val=0x34c00fe0 [ 2.870021] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x88888005 [ 2.879281] conninfra@(consys_spi_write_nolock:501) addr=0x0070, val=0x00000005 [ 2.887516] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) [ 2.897328] conninfra@(_consys_hw_conninfra_wakeup:470) conninfra_wakeup refcnt=[0]->[1] wakeup!! [ 2.906192] conninfra@(_consys_hw_conninfra_sleep:490) conninfra_sleep refcnt=[1]->[0] sleep!! [ 2.914790] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[0] CONNINFRA=[1] [ 2.929298] usbcore: registered new interface driver usbfs [ 2.934840] usbcore: registered new interface driver hub [ 2.940193] usbcore: registered new device driver usb [ 2.962298] xhci-mtk 11200000.xhci: 11200000.xhci supply vbus not found, using dummy regulator [ 2.970989] xhci-mtk 11200000.xhci: 11200000.xhci supply vusb33 not found, using dummy regulator [ 2.979895] failed to open /etc/u3p-dis-msk file [ 2.984506] get mediatek,u3p-dis-msk - [1] [ 2.988760] phy phy-usb-phy@11e10000.0: try to get sw efuse [ 2.994333] phy phy-usb-phy@11e10000.1: try to get sw efuse [ 2.999895] phy phy-usb-phy@11e10000.1: try to get sw efuse+ [ 3.005569] phy phy-usb-phy@11e10000.1: u3 efuse - intr 28, rx_imp f, tx_imp e [ 3.012818] phy_efuse_set set efuse, tx_imp e, rx_imp f intr 28 [ 3.018811] xhci-mtk 11200000.xhci: xHCI Host Controller [ 3.024139] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 1 [ 3.031727] xhci-mtk 11200000.xhci: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000210010 [ 3.040969] xhci-mtk 11200000.xhci: irq 85, io mem 0x11200000 [ 3.047201] hub 1-0:1.0: USB hub found [ 3.051060] hub 1-0:1.0: 1 port detected [ 3.055293] xhci-mtk 11200000.xhci: xHCI Host Controller [ 3.060632] xhci-mtk 11200000.xhci: new USB bus registered, assigned bus number 2 [ 3.068116] xhci-mtk 11200000.xhci: Host supports USB 3.2 Enhanced SuperSpeed [ 3.075321] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 3.083788] hub 2-0:1.0: USB hub found [ 3.087567] hub 2-0:1.0: 1 port detected [ 3.096150] mediatek_soc_hnat 15100000.hnat: wan = eth1 [ 3.101408] mediatek_soc_hnat 15100000.hnat: lan = lan [ 3.106541] mediatek_soc_hnat 15100000.hnat: ppd = eth0 [ 3.111759] mediatek_soc_hnat 15100000.hnat: gmac num = 2 [ 3.117149] mediatek_soc_hnat 15100000.hnat: ppe num = 1 [ 3.123075] mediatek_soc_hnat 15100000.hnat: PPE0 entry number = 8192 [ 3.139913] mediatek_soc_hnat 15100000.hnat: PPE0 hwnat start [ 3.145718] hnat roaming work enable [ 3.152504] warp_module_init(): module init and register callback for warp [ 3.159407] create warp_ctrl ok!!! [ 3.162848] wed_get_slot_map(): assign slot_id:0 for entry: 0! [ 3.168685] wed_get_slot_map(): assign slot_id:1 for entry: 1! [ 3.176222] usbcore: registered new interface driver usb-storage [ 3.183181] usbcore: registered new interface driver uas [ 3.188772] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 3.204451] init: - preinit - [ 3.441233] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 3.449578] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 3.461534] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 3.468775] 8021q: adding VLAN 0 to HW filter on device lan1 [ 3.525933] mount_root: loading kmods from internal overlay [ 3.543629] kmodloader: loading kernel modules from //etc/modules-boot.d/* [ 3.552158] kmodloader: done loading kernel modules from //etc/modules-boot.d/* [ 4.332589] UBIFS (ubi0:4): Mounting in unauthenticated mode [ 4.338543] UBIFS (ubi0:4): background thread "ubifs_bgt0_4" started, PID 907 [ 4.366523] UBIFS (ubi0:4): recovery needed [ 4.432872] UBIFS (ubi0:4): recovery completed [ 4.437407] UBIFS (ubi0:4): UBIFS: mounted UBI device 0, volume 4, name "rootfs_data" [ 4.445235] UBIFS (ubi0:4): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 4.455147] UBIFS (ubi0:4): FS size: 7237632 bytes (6 MiB, 57 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) [ 4.465223] UBIFS (ubi0:4): reserved for root: 341850 bytes (333 KiB) [ 4.471660] UBIFS (ubi0:4): media format: w5/r0 (latest is w5/r0), UUID D196DB56-017A-4D31-929E-9AD41D793E31, small LPT model [ 4.484001] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 4.495122] block: extroot: not configured [ 4.501628] UBIFS (ubi0:4): un-mount UBI device 0 [ 4.506351] UBIFS (ubi0:4): background thread "ubifs_bgt0_4" stops [ 4.515219] UBIFS (ubi0:4): Mounting in unauthenticated mode [ 4.520973] UBIFS (ubi0:4): background thread "ubifs_bgt0_4" started, PID 911 [ 4.575756] UBIFS (ubi0:4): UBIFS: mounted UBI device 0, volume 4, name "rootfs_data" [ 4.583598] UBIFS (ubi0:4): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 4.593501] UBIFS (ubi0:4): FS size: 7237632 bytes (6 MiB, 57 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) [ 4.603575] UBIFS (ubi0:4): reserved for root: 341850 bytes (333 KiB) [ 4.610008] UBIFS (ubi0:4): media format: w5/r0 (latest is w5/r0), UUID D196DB56-017A-4D31-929E-9AD41D793E31, small LPT model [ 4.624082] mount_root: loading kmods from internal overlay [ 4.639605] kmodloader: loading kernel modules from /tmp/overlay/upper/etc/modules-boot.d/* [ 4.649127] kmodloader: done loading kernel modules from /tmp/overlay/upper/etc/modules-boot.d/* [ 5.360159] block: attempting to load /tmp/ubifs_cfg/upper/etc/config/fstab [ 5.369945] block: extroot: not configured [ 5.375613] mount_root: switching to ubifs overlay [ 5.388621] urandom-seed: Seeding with /etc/urandom.seed [ 5.444155] procd: - early - [ 5.447160] procd: - watchdog - [ 5.971051] procd: - watchdog - [ 5.975439] procd: - ubus - [ 6.031226] procd: - init - Please press Enter to activate this console. [ 6.377350] urngd: v1.0.2 started. [ 6.451288] kmodloader: loading kernel modules from /etc/modules.d/* [ 6.493767] RPC: Registered named UNIX socket transport module. [ 6.499731] RPC: Registered udp transport module. [ 6.504431] RPC: Registered tcp transport module. [ 6.509126] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 6.518844] ntfs: driver 2.1.32 [Flags: R/O MODULE]. [ 6.534175] l2tp_core: L2TP core driver, V2.0 [ 6.539274] l2tp_netlink: L2TP netlink interface [ 6.544708] gre: GRE over IPv4 demultiplexor driver [ 6.550533] ip_gre: GRE over IPv4 tunneling driver [ 6.561072] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 6.602538] fuse: init (API version 7.31) [ 6.609241] (local_dev_info_init:1046) module init success [ 6.615395] (cmdc_iptvtag_proc_init:952) proc init success [ 6.620901] (cmdc_iptvtag_init:1000) module init success [ 6.644565] Current mapfilter version v3.0.1.2 [ 8.525952] mt_wifi: module license 'Proprietary' taints kernel. [ 8.531978] Disabling lock debugging due to kernel taint [ 8.582794] conninfra@(conninfra_pwr_on:120) [conninfra_pwr_on] drv=[3] [ 8.590382] conninfra@(_consys_polling_chipid_int:306) Read CONNSYS HW IP version successfully! (0x02090000) [ 8.608258] Adie Type: 0x7976 [ 8.608262] SKU Type: 3000 [ 8.612199] conninfra@(opfunc_power_on_internal:241) [Conninfra Pwr On] BT=[0] FM=[0] GPS=[0] WF=[1] CONNINFRA=[1] [ 8.626318] WiFi@C12L1,get_dbg_setting_by_profile() 4244: debug level setting=INDEX0_debug_level not found!! [ 8.636205] WiFi@C12L1,get_dbg_setting_by_profile() 4267: debug option setting=INDEX0_debug_option not found!! [ 8.646277] mt_rbus 0000:00:00.0: runtime IRQ mapping not provided by arch [ 8.659218] mt7981_init()--> [ 8.662112] Use the default iPAiLNA bin image! [ 8.666628] <--mt7981_init() [ 8.669525] RtmpRaDevCtrlInit(): MCS_LUT not used becasue MacTb size(132) > 128! [ 8.677052] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX1 [ 8.684398] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX2 [ 8.691737] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX3 [ 8.699075] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX4 [ 8.706410] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX5 [ 8.713749] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX6 [ 8.721083] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX7 [ 8.728421] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX8 [ 8.735772] WiFi@C12L1,match_index_by_chipname() 502: not find chip name INDEX9 [ 8.743102] WiFi@C12L2,match_index_by_chipname() 507: Not find slot id, back to old rule. [ 8.751405] msta_ifname not found [ 8.765433] -->mtfwd_init(ver:2.0) [ 8.765481] <-- [ 8.769797] mtk_warp_proxy: module uses symbols from proprietary module mt_wifi, inheriting taint. [ 8.822781] usbcore: registered new interface driver ums-alauda [ 8.830521] usbcore: registered new interface driver ums-cypress [ 8.838240] usbcore: registered new interface driver ums-datafab [ 8.846066] usbcore: registered new interface driver ums-freecom [ 8.853707] usbcore: registered new interface driver ums-isd200 [ 8.861463] usbcore: registered new interface driver ums-jumpshot [ 8.869094] usbcore: registered new interface driver ums-karma [ 8.877146] usbcore: registered new interface driver ums-sddr09 [ 8.884719] usbcore: registered new interface driver ums-sddr55 [ 8.892732] usbcore: registered new interface driver ums-usbat [ 8.920942] xt_time: kernel timezone is -0000 [ 8.931751] PPP generic driver version 2.4.2 [ 8.937080] PPP MPPE Compression module registered [ 8.943501] NET: Registered protocol family 24 [ 8.949529] PPTP driver version 0.8.5 [ 8.955740] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 8.962574] kmodloader: done loading kernel modules from /etc/modules.d/* >>>>>> [20250517-134201+0800] >>>>>> Do config timer task init start! >>>>>> [20250517-134201+0800] >>>>>> Do config timer task init success! >>>>>> [20250517-134201+0800] >>>>>> Do preconfig init start! >>>>>> [20250517-134201+0800] >>>>>> Do preconfig init success! [ 11.082896] mtk_soc_eth 15100000.ethernet eth0: TX vlan offload cannot be enabled when dsa is attached. [ 11.093094] mtk_soc_eth 15100000.ethernet eth0: TX vlan offload cannot be enabled when dsa is attached. [ 16.203908] MediaTek MT798x PHY mdio-bus:00: TX-VCM SW cal result: 0x2 [ 16.220815] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:00] driver [MediaTek MT798x PHY] [ 16.229474] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/gmii link mode [ 16.246533] br-lan: port 1(eth1) entered blocking state [ 16.251809] br-lan: port 1(eth1) entered disabled state [ 16.257262] device eth1 entered promiscuous mode [ 16.267107] br-lan: port 1(eth1) entered blocking state [ 16.272391] br-lan: port 1(eth1) entered forwarding state [ 16.307918] mtk_soc_eth 15100000.ethernet eth0: Link is Down [ 16.323343] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 16.331720] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 16.351708] device eth0 entered promiscuous mode [ 16.361773] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 16.372052] 8021q: adding VLAN 0 to HW filter on device lan1 [ 16.382692] br-lan: port 2(lan1) entered blocking state [ 16.387985] br-lan: port 2(lan1) entered disabled state [ 16.394138] device lan1 entered promiscuous mode [ 16.403445] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 16.411922] 8021q: adding VLAN 0 to HW filter on device lan2 [ 16.422018] br-lan: port 3(lan2) entered blocking state [ 16.427260] br-lan: port 3(lan2) entered disabled state [ 16.433536] device lan2 entered promiscuous mode [ 16.442982] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 16.450711] 8021q: adding VLAN 0 to HW filter on device lan3 [ 16.460738] br-lan: port 4(lan3) entered blocking state [ 16.465990] br-lan: port 4(lan3) entered disabled state [ 16.472761] device lan3 entered promiscuous mode [ 17.140504] /dev/ubi0_1: Can't open blockdev [ 17.157275] /dev/ubi0_3: Can't open blockdev [ 17.194367] br-lan: port 1(eth1) entered disabled state >>>>>> [20250517-134208+0800] >>>>>> alias ipaddr [192.168.10.1] conflict with lan! >>>>>> [20250517-134208+0800] >>>>>> alias br-lan:1 disabled 1 >>>>>> [20250517-134210+0800] >>>>>> Firewall Restart! [ 20.199060] 7981@C01L2,RTMP_COM_IoctlHandle() 1511: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT [ 20.208151] msta_ifname not found [ 20.212100] client_get_axi_slot_id(): wrong BUS_TYPE [ 20.217089] warp_cap_support(): chip_id=7981 is in WHNAT support list [ 20.223570] warp_entry_acquire(): bus slot:0, hook to WARP, entry id=0, entry: 00000000a4afa1a1 [ 20.232298] client_hif_specific_get(): hw->base_phy_addr 0x18000000!! [ 20.238761] client_chip_specific_get(): 0x7981 chip id 0x7981!! [ 20.244804] warp_entry_get_by_pdev(): return entry[0] [ 20.250089] warp_msg_register():warp,pid,5493,id,0,wed_idx,0 [ 20.255833] wed_init(0): res_start = 0x15010000, size = 1000, irq=7,base_addr=0xffffffc012ffd000 [ 20.265122] wed_ring_init(): wed tx ring init result = 0 [ 20.270639] wed_ring_init(): wed rx ring init result = 0 [ 20.283457] create wed ok!!! [ 20.286443] wdma_init(): wdma(0) base_addr=0xffffffc014bed800, base_phy_addr=0x15104800 [ 20.295394] warp_woif_bus_init_hw(): bus:0000000014da4be8, txring: 20, pa: 0x000000005687a000, 0x000000005687a000, 24, 28, 3c [ 20.306743] warp_woif_bus_init_hw(): bus:0000000014da4be8, rxring: 50, pa: 0x00000000556be000, 0x00000000556be000, 54, 58, 6c [ 20.318117] get_region_info(): wed_idx = 0, base_addr = 0x0000000086dd7d98, size = 0x40000, res.start = 0x47d80000, shared:0 [ 20.329408] get_region_info(): wed_idx = 0, base_addr = 0x00000000ba5770e7, size = 0x8000, res.start = 0x151e0000, shared:0 [ 20.340622] get_region_info(): wed_idx = 0, base_addr = 0x00000000d37f3770, size = 0x240000, res.start = 0x47dc0000, shared:1 [ 20.351979] get_region_info(): wed_idx = 0, base_addr = 0x00000000cb42937f, size = 0x1000, res.start = 0x15194000, shared:0 [ 20.363136] warp_fwdl_mcu_mode(): mcu mode, need fwdl [ 20.412444] ########## WO Firmware ########## [ 20.416855] Chip ID: 0x0000 [ 20.419689] ECO version:0 [ 20.422325] Version: DEV_000000 [ 20.425459] Build date: 20240618154113 [ 20.429236] Total region:3 [ 20.431969] ################################# [ 20.436357] Parsing tailer region 0 [ 20.439866] Target address: 0x151e0000 [ 20.443718] Download size: 21968 [ 20.447083] Parsing tailer region 1 [ 20.450604] Target address: 0x47d80000 [ 20.454462] Download size: 86928 [ 20.457844] Parsing tailer region 2 [ 20.461363] Target address: 0x47dc0000 [ 20.465229] Download size: 2345040 [ 20.474147] warp_fwdl_ready_check_mcu_mode(): waiting for wocpu [ 20.494406] warp_fwdl_ready_check_mcu_mode(): wocpu is ready [ 20.500474] warp_woctrl_init_state(), wo_state: WO_STATE_ENABLE [ 20.506438] wo_proc_init done 0000000039de9cde [ 20.511046] wo_exep_proc_init done 0000000039de9cde [ 20.516085] wo_exception_init(0): exp log= 0x000000002b03971b, phy_addr= 0x0000000056968000 size= 32768 [ 20.620976] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS0 PhyMode=78 [ 20.627646] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS1 PhyMode=14 [ 20.634288] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS2 PhyMode=78 [ 20.640947] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS3 PhyMode=78 [ 20.647586] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS4 PhyMode=177 [ 20.654309] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS5 PhyMode=177 [ 20.661037] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS6 PhyMode=177 [ 20.667789] 7981@C12L1,RTMPWirelessModeCfg() 607: Init: BSS7 PhyMode=48 [ 20.674759] 7981@C23L3,auto_ch_select_set_cfg() 3438: BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 20.684366] 7981@C23L3,auto_ch_select_set_cfg() 3438: BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 20.752018] 7981@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=0, Desired MFPC=0 [ 20.759438] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=1, Desired MFPC=0 [ 20.766887] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=2, Desired MFPC=0 [ 20.774297] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=3, Desired MFPC=0 [ 20.781732] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=4, Desired MFPC=0 [ 20.789154] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=5, Desired MFPC=0 [ 20.796567] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=6, Desired MFPC=0 [ 20.803988] WiFi@C15L1,Set_PMFMFPC_Proc() 1722: [PMF] :: apidx=7, Desired MFPC=0 [ 20.813518] WiFi@C12L1,RTMPSetProfileParameters() 8516: ra0, QoSMgmtCapa=0 [ 20.820443] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.827604] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.834768] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.841938] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.849095] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.856250] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.863398] WiFi@C12L1,RTMPSetProfileParameters() 8516: (null), QoSMgmtCapa=0 [ 20.877760] WiFi@C12L1,rtmp_read_ap_client_from_file() 1635: APCLI[0] ApCliMuMimoDlEnable = 0 [ 20.886294] WiFi@C12L1,rtmp_read_ap_client_from_file() 1635: APCLI[1] ApCliMuMimoDlEnable = 0 [ 20.895023] WiFi@C12L1,rtmp_read_ap_client_from_file() 1654: APCLI[0] ApCliMuMimoUlEnable = 0 [ 20.903575] WiFi@C12L1,rtmp_read_ap_client_from_file() 1654: APCLI[1] ApCliMuMimoUlEnable = 0 [ 20.914263] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 20.925502] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension command type = 48 [ 20.933972] WiFi@C03L1,AndesSendCmdMsg() 754: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 20.945223] WiFi@C03L2,AndesSendCmdMsg() 765: Command type = ed, Extension command type = 48 [ 21.035263] wdma_dma_ctrl(): WDMA_GLO_CFG=50404e70, txrx = 0 [ 21.044895] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e70, txrx = 0 [ 21.060551] warp_tx_ring_init_hw(): configure ring 0 setting [ 21.066233] warp_tx_ring_init_hw(): wed:0000000006cf33fe wifi:000000000d5a864a: 24420=569c8000,24424=2048,24428=0 [ 21.076542] warp_tx_ring_init_hw(): configure ring 1 setting [ 21.082226] warp_tx_ring_init_hw(): wed:0000000006cf33fe wifi:000000000d5a864a: 24430=569d0000,24434=2048,24438=0 [ 21.092641] set_rrocfg,0 [ 21.120602] wdma_dma_ctrl(): WDMA_GLO_CFG=40404e74, txrx = 3 [ 21.126274] using E1 ROM patch [ 21.129321] using E1 RAM [ 21.131895] current sync CR = 0x1 [ 21.135230] Built date: 20240618153648a [ 21.139192] Platform: ALPS [ 21.141982] HW/SW version: 0x8a108a10 [ 21.145746] Patch version: 0xffffffff [ 21.154971] current sync CR = 0x1 [ 21.158325] Chip ID: 0x14 [ 21.161025] Eco version: 0x00 [ 21.164114] Region number: 0x0b [ 21.167360] Format version: 0x02 [ 21.170684] Format flag: 0x01 [ 21.173730] Ram version: ____000000 [ 21.177320] Built date: 20240618153709 [ 21.181211] Common crc: 0xc1479dd1 [ 21.184728] Release info: header tag = 0, total length = 108 [ 21.190508] tag 1, padding length = 1, tag length = 103 [ 21.195851] payload: t-neptune-main-2111-7981-imp_backup_wk2234-MT7981_E1_ASIC_ROM_RAM_REBB_IMP_BACKUP_WK2234-20240618153558 [ 21.228621] Chip ID: 0x00 [ 21.231388] Eco version: 0x00 [ 21.234471] Region number: 0x03 [ 21.237710] Format version: 0x02 [ 21.241052] Format flag: 0x01 [ 21.244142] Ram version: DEV_000000 [ 21.247766] Built date: 20240618154019 [ 21.251661] Common crc: 0x6c87dac0 [ 21.255190] Release info: header tag = 0, total length = 0 [ 21.261880] sh (5851): drop_caches: 3 [ 21.340927] current sync CR = 0x7 [ 21.344294] efuse_probe: efuse = deaddead [ 21.399447] WiFi@C02L1,is_cal_free_ic() 831: [a-die version:1] >>>>>> [20250517-134212+0800] >>>>>> [ mediatek,mt7981-spim-snand-rfb ] does not need to mount [ 22.926493] ubi1: attaching mtd6 [ 23.032531] ubi1: scanning is finished [ 23.041303] ubi1: attached mtd6 (name "plugins", size 37 MiB) [ 23.047058] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 23.053930] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 23.060711] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 23.067664] ubi1: good PEBs: 296, bad PEBs: 0, corrupted PEBs: 0 [ 23.073662] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 23.080920] ubi1: max/mean erase counter: 17/10, WL threshold: 4096, image sequence number: 961757059 [ 23.090132] ubi1: available PEBs: 0, total reserved PEBs: 296, PEBs reserved for bad PEB handling: 19 [ 23.099464] ubi1: background thread "ubi_bgt1d" started, PID 5994 [ 23.111622] UBIFS (ubi1:0): Mounting in unauthenticated mode [ 23.117384] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 5998 [ 23.145647] UBIFS (ubi1:0): recovery needed [ 23.207902] UBIFS (ubi1:0): recovery completed [ 23.212438] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "plugins" [ 23.219932] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 23.229847] UBIFS (ubi1:0): FS size: 33394688 bytes (31 MiB, 263 LEBs), journal size 1650688 bytes (1 MiB, 13 LEBs) [ 23.240284] UBIFS (ubi1:0): reserved for root: 1577313 bytes (1540 KiB) [ 23.246904] UBIFS (ubi1:0): media format: w5/r0 (latest is w5/r0), UUID 67D6F429-46BD-44CB-B5BA-0809418F1EC4, small LPT model [ 23.736943] WiFi@C17L1,RTMPReadTxPwrPerRate() 450: (450): Don't Support this now! [ 23.744484] WiFi@C01L1,AntCfgInit() 3059: Not support for HIF_MT yet! [ 23.768781] ch_switch_monitor_state_machine_init:: enter [ 23.774103] ch_switch_monitor_cfg_reset:: enter [ 23.778639] ch_switch_monitor_cfg_reset:: enter [ 23.783368] WiFi@C17L1,tx_pwr_comp_init() 641: NotSupportYet! [ 23.789166] WiFi@C12L1,SCS_init() 880: INIT SCSEnable [0]= 1 [ 23.794859] WiFi@C12L1,SCS_init() 887: INIT SCSEnable [1]= 0 [ 23.800733] WiFi@C03L1,MtCmdSetMacTxRx() 10207: (ret = 0) [ 23.806293] WiFi@C03L1,MtCmdSetMacTxRx() 10207: (ret = 0) [ 23.811977] WiFi@C14L1,IPMacTable_init() 348: IPMacTable already inited! [ 23.838849] wdma_dma_ctrl(): WDMA_GLO_CFG=58804e75, txrx = 3 [ 23.844638] WiFi@C03L1,MtCmdSetMacTxRx() 10207: (ret = 0) [ 23.850314] WiFi@C03L1,MtCmdSetMacTxRx() 10207: (ret = 0) [ 23.855823] WiFi@C00L1,set_ack_timeout_mode_byband() 13377: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 23.865749] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13465: DAT config band(0) cck_timeout Fail! [ 23.874442] WiFi@C00L1,set_ack_timeout_mode_byband() 13377: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 23.884349] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13476: DAT config band(0) ofdm_timeout Fail! [ 23.893139] WiFi@C00L1,set_ack_timeout_mode_byband() 13377: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 23.903050] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13487: DAT config band(0) ofdma_timeout Fail! [ 23.911915] WiFi@C00L1,set_ack_timeout_mode_byband() 13377: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 23.921821] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13465: DAT config band(1) cck_timeout Fail! [ 23.930515] WiFi@C00L1,set_ack_timeout_mode_byband() 13377: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 23.940431] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13476: DAT config band(1) ofdm_timeout Fail! [ 23.949214] WiFi@C00L1,set_ack_timeout_mode_byband() 13377: CTS/ACK Timeout Range should between [0xFFFF:0]!! [ 23.959122] WiFi@C00L1,set_datcfg_ack_cts_timeout() 13487: DAT config band(1) ofdma_timeout Fail! [ 23.971990] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 23.982957] WiFi@C00L2,dump_ht_cap() 29: Caller: dump_ht_cap+0x10/0x20 [mt_wifi] [ 24.049886] :(op = 1) [ 24.066833] 7981@C00L1,FastPathCheckMIC() 1010: (ret = 0)(op:1) [ 24.072772] 7981@C00L2,red_tail_drop_init() 83: red_tail_drop_init: available token:8192, whnat_en:1 [ 24.081969] 7981@C00L1,MtCmdCr4RedSet() 914: MtCmdCr4RedSet: (ret = 0) [ 24.088512] 7981@C00L1,SendRedCmd() 1049: SendRedCmd:(ret = 1) [ 24.094555] 7981@C01L2,RTMP_COM_IoctlHandle() 1488: -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 24.102571] WiFi@C01L3,wifi_sys_open() 856: wdev idx = 0 [ 24.108236] 7981@C18L3,BuildChannelList() 475: [ 24.112805] 7981@C00L3,BuildChannelList() 505: BandIdx = 0, PhyMode = 78, ChListNum = 13: [ 24.121004] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.127382] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.133840] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.140196] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.146638] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.152991] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.159431] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.165785] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.172245] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.178606] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.185061] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.191413] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.197855] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.204209] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.210654] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.217023] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.223465] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.229823] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.236269] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.242620] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.249061] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.255420] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.261861] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.268214] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.274672] 7981@C14L1,vht80_channel_group() 1560: invalid ch_band 0 [ 24.281029] 7981@C14L1,vht160_channel_group() 1629: invalid ch_band 0 [ 24.287471] 7981@C23L1,DfsBuildChannelList() 3489: [RDM]: wdev is not 5G. [ 24.294291] 7981@C23L3,RadarStateCheck() 244: Zero Wait State: 0 [ 24.300398] 7981@C23L3,operate_loader_phy() 389: oper_cfg: prim_ch(0), ht_bw(0), extcha(1), vht_bw(0), cen_ch_2(0), PhyMode=78! [ 24.311933] phy_freq_adjust : no prim_ch value for adjust! [ 24.317436] 7981@C23L1,operate_loader_phy() 393: phy_freq_adjust failed!WiFi@C00L2,dump_ht_cap() 29: Caller: wlan_operate_init+0xa4/0x148 [mt_wifi] [ 24.330902] wdev_attr_update(): wdevId0 = c0:2d:2e:c6:e9:3a [ 24.336540] WiFi@C12L1,wifi_sys_open() 907: wifi_sys_open():band0 group_idx[0]=0, bw_grp=16 omac=0 [ 24.345598] 7981@C08L3,hw_ctrl_flow_v2_open() 13: wdev_idx=0 [ 24.351506] 7981@C23L1,HcGetBandByChannel() 1139: No hdev parking on channel:0, just return a default band_idx 0! [ 24.361809] 7981@C02L2,AsicRadioOnOffCtrl() 2317: DbdcIdx=0 RadioOn [ 24.368738] 7981@C00L2,ApAutoChannelAtBootUp() 333: -----------------> [ 24.375400] 7981@C03L1,MtCmdSetMacTxRx() 10207: (ret = 0) [ 24.380961] 7981@C03L1,MtCmdSetMacTxRx() 10207: (ret = 0) [ 24.386658] 7981@C08L1,UpdateBeaconHandler() 1887: wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x108/0x420 [mt_wifi])!! [ 24.399050] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.408222] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=1, ctrl_ch2=0, cent_ch=1 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 24.447229] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=1, ctrl_ch2=0, cent_ch=1, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 24.802356] 7981@C23L2,UpdateChannelInfo() 283: channel 1 busytime 6161 [ 24.809098] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 24.818265] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 24.857165] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=2, ctrl_ch2=0, cent_ch=2, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 25.114226] 7981@C08L3,APMlmePeriodicExec() 439: RDCount=1, DfsTime=4294692344,Tmp_time=4294692344 [ 25.210362] 7981@C23L2,UpdateChannelInfo() 283: channel 2 busytime 3329 [ 25.217144] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.226304] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 25.265211] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=3, ctrl_ch2=0, cent_ch=3, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 25.630333] 7981@C23L2,UpdateChannelInfo() 283: channel 3 busytime 4411 [ 25.637211] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 25.646399] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 25.685365] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=4, ctrl_ch2=0, cent_ch=4, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 25.762433] module exit [ 26.042372] 7981@C23L2,UpdateChannelInfo() 283: channel 4 busytime 9511 [ 26.049157] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.058325] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 26.097288] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=5, ctrl_ch2=0, cent_ch=5, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 26.182213] 7981@C08L3,APMlmePeriodicExec() 439: RDCount=2, DfsTime=4294692344,Tmp_time=4294693412 [ 26.450351] 7981@C23L2,UpdateChannelInfo() 283: channel 5 busytime 4420 [ 26.457170] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.466412] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 26.505379] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=6, ctrl_ch2=0, cent_ch=6, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 26.866333] 7981@C23L2,UpdateChannelInfo() 283: channel 6 busytime 1457 [ 26.873132] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 26.882313] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 26.921301] 7981@C03L3,MtCmdSetTxRxPath() 2772: ctrl_chl=7, ctrl_ch2=0, cent_ch=7, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) DEVICE LIMIT START GUEST LIMIT OR D[ 27.204177] tcp_life = 80 EVICE LIMIT IS N[ 27.208293] fin_life = 80 OT ENABLE,ECHO 2[ 27.212389] udp_life = 80 !!! [ 27.230261] 7981@C08L3,APMlmePeriodicExec() 439: RDCount=3, DfsTime=4294692344,Tmp_time=4294694460 [ 27.277618] 7981@C23L2,UpdateChannelInfo() 283: channel 7 busytime 3385 [ 27.284383] 7981@C00L1,mt7981_apply_dpd_flatness_data() 624: eeprom 0x19a bit 0 is 0, do runtime cal [ 27.293609] 7981@C03L3,MtCmdChannelSwitch() 2529: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1)


[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.6.93 (builder@buildhost) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r28739-d9340319c6) 13.3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Mon Jun 23 20:40:36 2025 [ 0.000000] Machine model: CMCC RAX3000M [ 0.000000] OF: reserved mem: 0x0000000042ff0000..0x0000000042ffffff (64 KiB) map non-reusable ramoops@42ff0000 [ 0.000000] OF: reserved mem: 0x0000000043000000..0x000000004302ffff (192 KiB) nomap non-reusable secmon@43000000 [ 0.000000] OF: reserved mem: 0x0000000047c80000..0x0000000047d7ffff (1024 KiB) nomap non-reusable wmcpu-reserved@47c80000 [ 0.000000] OF: reserved mem: 0x0000000047d80000..0x0000000047dbffff (256 KiB) nomap non-reusable wo-emi@47d80000 [ 0.000000] OF: reserved mem: 0x0000000047dc0000..0x0000000047ffffff (2304 KiB) nomap non-reusable wo-data@47dc0000 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000042ffffff] [ 0.000000] node 0: [mem 0x0000000043000000-0x000000004302ffff] [ 0.000000] node 0: [mem 0x0000000043030000-0x0000000047c7ffff] [ 0.000000] node 0: [mem 0x0000000047c80000-0x0000000047ffffff] [ 0.000000] node 0: [mem 0x0000000048000000-0x000000005fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000005fffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.1 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.5 [ 0.000000] percpu: Embedded 18 pages/cpu s35624 r8192 d29912 u73728 [ 0.000000] pcpu-alloc: s35624 r8192 d29912 u73728 alloc=18*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: detected: GIC system register CPU interface [ 0.000000] CPU features: kernel page table isolation disabled by kernel configuration [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: root=/dev/fit0 rootwait [ 0.000000] Dentry cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] Inode-cache hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 129024 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 0MB [ 0.000000] software IO TLB: area num 2. [ 0.000000] software IO TLB: mapped [mem 0x000000005f540000-0x000000005f5c0000] (0MB) [ 0.000000] Memory: 497036K/524288K available (9024K kernel code, 1000K rwdata, 1672K rodata, 448K init, 307K bss, 27252K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.000000] 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: 0xffffffc080010080 [ 0.000000] GICv3: GICv3 features: 16 PPIs [ 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.000076] Calibrating delay loop (skipped), value calculated using timer frequency.. 26.00 BogoMIPS (lpj=130000) [ 0.000084] pid_max: default: 32768 minimum: 301 [ 0.003089] Mount-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.003098] Mountpoint-cache hash table entries: 1024 (order: 1, 8192 bytes, linear) [ 0.005304] cacheinfo: Unable to detect cache hierarchy for CPU 0 [ 0.005844] RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2. [ 0.005991] rcu: Hierarchical SRCU implementation. [ 0.005993] rcu: Max phase no-delay instances is 1000. [ 0.006396] smp: Bringing up secondary CPUs ... [ 0.006759] Detected VIPT I-cache on CPU1 [ 0.006802] GICv3: CPU1: found redistributor 1 region 0:0x000000000c0a0000 [ 0.006831] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.006899] smp: Brought up 1 node, 2 CPUs [ 0.006904] SMP: Total of 2 processors activated. [ 0.006908] CPU features: detected: 32-bit EL0 Support [ 0.006910] CPU features: detected: CRC32 instructions [ 0.006942] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.006945] CPU: All CPU(s) started at EL2 [ 0.006947] alternatives: applying system-wide alternatives [ 0.010657] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.010675] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.011967] pinctrl core: initialized pinctrl subsystem [ 0.013114] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.013472] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.013496] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.013517] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.013898] thermal_sys: Registered thermal governor 'fair_share' [ 0.013902] thermal_sys: Registered thermal governor 'bang_bang' [ 0.013905] thermal_sys: Registered thermal governor 'step_wise' [ 0.013907] thermal_sys: Registered thermal governor 'user_space' [ 0.013968] ASID allocator initialised with 65536 entries [ 0.014895] pstore: Using crash dump compression: deflate [ 0.014900] pstore: Registered ramoops as persistent store backend [ 0.014903] ramoops: using 0x10000@0x42ff0000, ecc: 0 [ 0.016381] /soc/interrupt-controller@c000000: Fixed dependency cycle(s) with /soc/interrupt-controller@c000000 [ 0.022127] Modules: 29616 pages in range for non-PLT usage [ 0.022135] Modules: 521136 pages in range for PLT usage [ 0.023099] cryptd: max_cpu_qlen set to 1000 [ 0.024193] SCSI subsystem initialized [ 0.024398] libata version 3.00 loaded. [ 0.026090] clocksource: Switched to clocksource arch_sys_counter [ 0.028397] NET: Registered PF_INET protocol family [ 0.028507] IP idents hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.029922] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.029935] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.029945] TCP established hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.029978] TCP bind hash table entries: 4096 (order: 5, 131072 bytes, linear) [ 0.030147] TCP: Hash tables configured (established 4096 bind 4096) [ 0.030502] MPTCP token hash table entries: 512 (order: 1, 12288 bytes, linear) [ 0.030615] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.030631] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.030848] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.030881] PCI: CLS 0 bytes, default 64 [ 0.032151] workingset: timestamp_bits=46 max_order=17 bucket_order=0 [ 0.037121] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.037130] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.093689] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [ 0.104819] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled [ 0.108473] printk: console [ttyS0] disabled [ 0.128828] 11002000.serial: ttyS0 at MMIO 0x11002000 (irq = 72, base_baud = 2500000) is a ST16650V2 [ 0.128870] printk: console [ttyS0] enabled [ 0.887166] loop: module loaded [ 0.892737] spi-nand spi0.0: GigaDevice SPI NAND was found. [ 0.898354] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 128 [ 0.906973] 5 fixed-partitions partitions found on MTD device spi0.0 [ 0.913571] Creating 5 MTD partitions on "spi0.0": [ 0.918487] 0x000000580000-0x000007780000 : "ubi" [ 0.978432] ubi0: default fastmap pool size: 45 [ 0.982965] ubi0: default fastmap WL pool size: 22 [ 0.987776] ubi0: attaching mtd0 [ 1.314780] ubi0: scanning is finished [ 1.323855] ubi0: attached mtd0 (name "ubi", size 114 MiB) [ 1.329370] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 1.336241] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 1.343016] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 1.349972] ubi0: good PEBs: 912, bad PEBs: 0, corrupted PEBs: 0 [ 1.355966] ubi0: user volume: 4, internal volumes: 1, max. volumes count: 128 [ 1.363177] ubi0: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 0 [ 1.371517] ubi0: available PEBs: 0, total reserved PEBs: 912, PEBs reserved for bad PEB handling: 20 [ 1.380733] ubi0: background thread "ubi_bgt0d" started, PID 240 [ 1.381450] block ubiblock0_2: created from ubi0:2(fit) [ 1.392123] 0x000000380000-0x000000580000 : "fip" [ 1.398320] 0x000000180000-0x000000380000 : "factory" [ 1.405159] 0x000000100000-0x000000180000 : "u-boot-env" [ 1.411192] 0x000000000000-0x000000100000 : "bl2" [ 1.563257] mtk_soc_eth 15100000.ethernet eth0: mediatek frame engine at 0xffffffc081780000, irq 75 [ 1.573128] mtk_soc_eth 15100000.ethernet eth1: mediatek frame engine at 0xffffffc081780000, irq 75 [ 1.582865] i2c_dev: i2c /dev entries driver [ 1.588943] mtk-wdt 1001c000.watchdog: Watchdog enabled (timeout=31 sec, nowayout=0) [ 1.597843] NET: Registered PF_INET6 protocol family [ 1.603622] Segment Routing with IPv6 [ 1.607338] In-situ OAM (IOAM) with IPv6 [ 1.611300] NET: Registered PF_PACKET protocol family [ 1.616409] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 1.629628] 8021q: 802.1Q VLAN Support v1.8 [ 1.655695] phy phy-soc:usb-phy@11e10000.1: type_sw - reg 0x218, index 0 [ 1.663767] FIT: Detected U-Boot 2025.07-OpenWrt-r30716+5-56b083221f [ 1.670159] FIT: Selected configuration: "config-1" (OpenWrt cmcc_rax3000m) [ 1.677140] FIT: kernel sub-image 0x00001000..0x005626d0 "kernel-1" (ARM64 OpenWrt Linux-6.6.93) [ 1.686890] FIT: flat_dt sub-image 0x00563000..0x0056914f "fdt-1" (ARM64 OpenWrt cmcc_rax3000m device tree blob) [ 1.697942] FIT: flat_dt sub-image 0x0056a000..0x0056abe9 "fdt-mt7981b-cmcc-rax3000m-emmc" (ARM64 OpenWrt cmcc_rax3000m device tree overlay mt7981b-cmcc-rax3000m-emmc) [ 1.713765] FIT: flat_dt sub-image 0x0056b000..0x0056bd0d "fdt-mt7981b-cmcc-rax3000m-nand" (ARM64 OpenWrt cmcc_rax3000m device tree overlay mt7981b-cmcc-rax3000m-nand) [ 1.729583] FIT: filesystem sub-image 0x0056c000..0x00a94fff "rootfs-1" (ARM64 OpenWrt cmcc_rax3000m rootfs) [ 1.740491] block ubiblock0_2: mapped 1 uImage.FIT filesystem sub-image as /dev/fit0 [ 1.813175] mt7530-mdio mdio-bus:1f: configuring for fixed/2500base-x link mode [ 1.821915] mt7530-mdio mdio-bus:1f: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 1.832926] mt7530-mdio mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7531 PHY] (irq=79) [ 1.855150] mt7530-mdio mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7531 PHY] (irq=80) [ 1.877183] mt7530-mdio mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7531 PHY] (irq=81) [ 1.888977] mtk_soc_eth 15100000.ethernet eth0: entered promiscuous mode [ 1.895721] DSA: tree 0 setup [ 1.899121] clk: Disabling unused clocks [ 1.906715] VFS: Mounted root (squashfs filesystem) readonly on device 259:0. [ 1.914029] Freeing unused kernel memory: 448K [ 1.918688] Run /sbin/init as init process [ 1.922775] with arguments: [ 1.925729] /sbin/init [ 1.928433] with environment: [ 1.931561] HOME=/ [ 1.933908] TERM=linux [ 2.119307] init: Console is alive [ 2.122850] init: - watchdog - [ 2.524559] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 2.555033] usbcore: registered new interface driver usbfs [ 2.560602] usbcore: registered new interface driver hub [ 2.565956] usbcore: registered new device driver usb [ 2.571723] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 2.583280] xhci-mtk 11200000.usb: supply vbus not found, using dummy regulator [ 2.591598] xhci-mtk 11200000.usb: xHCI Host Controller [ 2.596872] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 1 [ 2.607258] xhci-mtk 11200000.usb: hcc params 0x01403f99 hci version 0x110 quirks 0x0000000000200010 [ 2.616447] xhci-mtk 11200000.usb: irq 82, io mem 0x11200000 [ 2.622195] xhci-mtk 11200000.usb: xHCI Host Controller [ 2.627424] xhci-mtk 11200000.usb: new USB bus registered, assigned bus number 2 [ 2.634813] xhci-mtk 11200000.usb: Host supports USB 3.2 Enhanced SuperSpeed [ 2.642318] hub 1-0:1.0: USB hub found [ 2.646112] hub 1-0:1.0: 1 port detected [ 2.650410] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 2.659019] hub 2-0:1.0: USB hub found [ 2.662808] hub 2-0:1.0: 1 port detected [ 2.671071] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 2.681717] init: - preinit - [ 3.010165] mtk_soc_eth 15100000.ethernet eth0: configuring for fixed/2500base-x link mode [ 3.018672] mtk_soc_eth 15100000.ethernet eth0: Link is Up - 2.5Gbps/Full - flow control rx/tx [ 3.046893] mt7530-mdio mdio-bus:1f lan1: configuring for phy/gmii link mode [ 4.566098] random: crng init done [ 7.212999] UBIFS (ubi0:3): Mounting in unauthenticated mode [ 7.218786] UBIFS (ubi0:3): background thread "ubifs_bgt0_3" started, PID 792 [ 7.273198] UBIFS (ubi0:3): UBIFS: mounted UBI device 0, volume 3, name "rootfs_data" [ 7.281052] UBIFS (ubi0:3): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.290963] UBIFS (ubi0:3): FS size: 97517568 bytes (93 MiB, 768 LEBs), max 779 LEBs, journal size 4825088 bytes (4 MiB, 38 LEBs) [ 7.302604] UBIFS (ubi0:3): reserved for root: 4605995 bytes (4498 KiB) [ 7.309210] UBIFS (ubi0:3): media format: w5/r0 (latest is w5/r0), UUID 76329295-9262-4052-BC6A-4F221E56103A, small LPT model [ 7.321355] mount_root: overlay filesystem has not been fully initialized yet [ 7.329348] mount_root: switching to ubifs overlay [ 7.338814] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 7.550571] urandom-seed: Seed file not found (/etc/urandom.seed) [ 7.604493] procd: - early - [ 7.607498] procd: - watchdog - [ 8.174159] procd: - watchdog - [ 8.177491] procd: - ubus - [ 8.333675] procd: - init - [ 8.678466] kmodloader: loading kernel modules from /etc/modules.d/* [ 8.701057] crypto-safexcel 10320000.crypto: EIP97:230(0,1,4,4)-HIA:270(0,5,5),PE:150/433(alg:7fcdfc00)/0/0/0 [ 8.722414] Loading modules backported from Linux version v6.12.6-0-ge9d65b48ce1a [ 8.729995] Backport generated by backports.git v6.1.110-1-35-g410656ef04d2 [ 8.769541] mt798x-wmac 18000000.wifi: attaching wed device 0 version 2 [ 8.834094] platform 15010000.wed: MTK WED WO Firmware Version: DEV_000000, Build Time: 20221208202138 [ 8.843443] platform 15010000.wed: MTK WED WO Chip ID 00 Region 3 [ 8.888840] urngd: v1.0.2 started. [ 9.346563] mt798x-wmac 18000000.wifi: HW/SW Version: 0x8a108a10, Build Time: 20240823161240a [ 9.346563] [ 9.540443] mt798x-wmac 18000000.wifi: WM Firmware Version: ____000000, Build Time: 20240823161304 [ 9.634071] mt798x-wmac 18000000.wifi: WA Firmware Version: DEV_000000, Build Time: 20240823161841 [ 9.731522] mt798x-wmac 18000000.wifi: registering led 'mt76-phy0' [ 9.778137] mt798x-wmac 18000000.wifi: registering led 'mt76-phy1' [ 9.840220] PPP generic driver version 2.4.2 [ 9.845496] NET: Registered PF_PPPOX protocol family [ 9.853702] kmodloader: done loading kernel modules from /etc/modules.d/* [ 14.625221] mtk_soc_eth 15100000.ethernet eth1: PHY [mdio-bus:00] driver [MediaTek MT7981 PHY] (irq=POLL) [ 14.634867] mtk_soc_eth 15100000.ethernet eth1: configuring for phy/gmii link mode [ 14.643182] mtk_soc_eth 15100000.ethernet eth1: Link is Up - 1Gbps/Full - flow control rx/tx


None at this time.

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