ASUS RT-AX53U / RT-AX1800U

:!: Warning! The RT-AX1800U and RT-AX1800 (non U), aren't the same device, don't attempt to flash non U devices!

The RT-AX53U / RT-AX1800U is a dual-band 802.11ax WiFi 6 router, supporting ramips/mt7621 platform, featuring three Gbit Ethernet ports and one WAN port.

ASUS RT-AX53 Router

:!: Warning! Between versions 22.03.x and 23.05.x the WAN port was moved to a separate netcard out of the switch, so the old ethernet config is no longer valid and you need to reset the config in case of an upgrade. See https://github.com/openwrt/openwrt/issues/14801

Installation via the web interface of the original firmware or via Asus recovery tools is currently not possible. It is possible to install the factory image with the mtd-write tool over ssh.

:!: Warning! Due to some devices being shipped with uninitialized flash, please use versions >= 22.03.6 or >= 23.05.2 for initial install. One can downgrade later if really needed. See https://github.com/openwrt/openwrt/issues/12674

Steps

1. Go to Administration settings in the web interface and enable ssh access.

2. Connect to ssh and login by using the same credentials you used to login to the web interface (user is usually “admin”).

3. Download the factory image to the filesystem.

wget https://downloads.openwrt.org/releases/22.03.6/targets/ramips/mt7621/openwrt-22.03.6-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin

Alternative: Transfer the factory image from your machine to the filesystem:

cat openwrt-22.03.6-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin | ssh admin@device "cat > /root/openwrt-22.03.6-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin"

4. Flash the image to Kernel partition.

mtd-write -i openwrt-22.03.6-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin -d Kernel

5. Reboot the device. If you do the graceful reboot there is a chance that the kernel will panic and the router won't reboot. In this case just perform a forceful reboot with a physical button or power cycle the device.

6. The device should now boot OpenWrt.

To flash your device from factory firmware via TFTP, you have to open the case to get to the serial connector. A USB-TTL adapter, a terminal emulator program (e.g. minicom), a TFTP server program and soldering equipment should be available. After that you can solder a 4 pin header onto the board. Luckily the manufacturer has printed the assignment of the interface (J2) on the circuit board, please see serial. You can use 115200.8N1 as the serial connection parameter. Please disable serial control signals in the terminal emulation if they are enabled.

Steps

0. Prepare you PC

Have terminal emulation program installed, set the ip address of your PC to 192.168.1.2/24, download the OpenWrt image, place it into you root directory of your TFTP-server, fire up your TFTP-server.

1. Connect the USB-TTL-adapter to the J2 connector

PIN BOARD TTL
1 VCC not needed
2 GND GND
3 TX RX
4 RX TX

2. Plug the USB adapter into you PC, establish the serial connection with not power to the router. This is because you have to interrupt uboot very quickly, possible during approx. 3 seconds.

3. Power on the router and press any key to interrupt boot.

4. If everything worked out, you are presented a menu with some options, select 2 for firmware upgrading.

5. The following output should occur:

*** Upgrading Firmware ***
Run firmware after upgrading? (Y/n): Y

Press enter to use the default value Y.

6. Now choose 0 for the load method:

Available load methods:
    0 - TFTP client (Default)
    1 - Xmodem
    2 - Ymodem
    3 - Kermit
    4 - S-Record

Select (enter for default): 0

7. Enter the IP address configuration for the tftp setup

Input U-Boot's IP address: 192.168.1.1 
Input TFTP server's IP address: 192.168.1.2
Input IP netmask: 255.255.255.0

8. Enter the filename of the firmware (which you have placed into the root of your tftp server)

Input file name: openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin

9. The output should look something like this:

Using eth@1e100000 device
TFTP from server 192.168.1.2; our IP address is 192.168.1.1
Filename 'openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin'.
Load address: 0x83000000
Loading: T T #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #################################################################
         #########################################
         1.1 MiB/s
done
Bytes transferred = 9175040 (8c0000 hex)

*** Loaded 9175040 (0x8c0000) bytes at 0x83000000 ***

Erasing from 0x3e0000 to 0xc9ffff, size 0x8c0000 ... OK
Writting from 0x83000000 to 0x3e0000, size 0x8c0000 ... OK

*** Firmware upgrade completed! ***

10. Restart your router. You are done.

Specific values needed for tftp

Bootloader tftp server IPv4 address 192.168.1.2/24
Firmware tftp image openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-factory.bin (for first time conversion)
TFTP window start not applicable when interrupting uboot boot menu
TFTP client required IP address 192.168.1.1

Return to OEM software can be done using Asus Restoration Tool

Starting from implementation of nested partitions (from version 22.03.4), you can use the following method directly from OpenWRT:

  • Rename the asus stock firmware to asus.trx or whatever you like (optional)
  • Transfer the trx file to the device in /tmp using winscp or something else
  • Write that file using mtd -r write asus.trx firmware

generic.sysupgrade

  • 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

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:

  • sysupgrade
  • mtd

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 https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-sysupgrade.bin
sysupgrade /tmp/openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-sysupgrade.bin

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 https://downloads.openwrt.org/snapshots/targets/ramips/mt7621/openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-sysupgrade.bin
mtd write /tmp/openwrt-ramips-mt7621-asus_rt-ax53u-squashfs-sysupgrade.bin linux && reboot

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
wan WAN port DHCP

FIXME Default WiFi config missing

VLAN (802.1q) devices can be configured at the br-lan bridge device. The ASUS RT-AX53U uses the new DSA switch configuration:

Port Switch port
WAN (blue) wan
LAN 1 lan1
LAN 2 lan2
LAN 3 lan3

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.

cat /sys/kernel/debug/gpio

gpiochip2: GPIOs 416-447, parent: platform/1e000600.gpio, 1e000600.gpio-bank2:

gpiochip1: GPIOs 448-479, parent: platform/1e000600.gpio, 1e000600.gpio-bank1:

gpiochip0: GPIOs 480-511, parent: platform/1e000600.gpio, 1e000600.gpio-bank0:
 gpio-493 (                    |blue:power          ) out hi ACTIVE LOW
 gpio-494 (                    |blue:usb            ) out hi ACTIVE LOW
 gpio-495 (                    |wps                 ) in  hi IRQ ACTIVE LOW
 gpio-496 (                    |reset               ) in  hi IRQ ACTIVE LOW
 gpio-499 (                    |reset               ) out hi ACTIVE LOW

The ASUS RT-AX53U has the following buttons:

BUTTON EVENT
Power switch Power on/off
Reset button Pressed < 1 sec. = reboot, pressed > 5 sec. factory reset
WPS button WPS < 3 sec. trigger WPS on hostapd, WPS > 3 sec. trigger WPS on wpa_supplicant only

Layout by inspecting /proc/mtd and dmesg:

dev start end size erasesize name
mtd0 00000000 000e0000 000e0000 00020000 u-boot
mtd1 000e0000 001e0000 00100000 00020000 u-boot-env
mtd2 001e0000 002e0000 00100000 00020000 factory
mtd3 002e0000 003e0000 00100000 00020000 factory2
mtd4 003e0000 007e0000 00400000 00020000 kernel
mtd5 007e0000 035e0000 02e00000 00020000 ubi
mtd6 035e0000 067e0000 03200000 00020000 firmware2

Layout on snapshot from 2023-02-02:

dev start end size erasesize name
mtd0 00000000 00080000 00080000 00020000 u-boot
mtd1 00080000 000e0000 00060000 00020000 u-boot-env
mtd2 000e0000 001e0000 00100000 00020000 nvram
mtd3 001e0000 002e0000 00100000 00020000 factory
mtd4 002e0000 003e0000 00100000 00020000 factory2
mtd5 003e0000 007e0000 00400000 00020000 kernel
mtd6 007e0000 035e0000 02e00000 00020000 ubi
mtd7 035e0000 067e0000 03200000 00020000 firmware2

Top and LEDs:

Bottom:

Ports:

PCB:

Note: This will void your warranty!

  1. Remove the two top rubber feet on left and right as shown on the picture

  1. unscrew two screws that are sitting below the rubber feet casings, right one has a warranty sign
  2. use a metal pry tool and start opening form the lower part of the bottom casing (opposite side of the LEDs), slide the plier carefully around the unit in order to remove the top cover
  3. you now have access to the pcb and can move onto the soldering part

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

Serial port is identifiable easily on the left side of the pcb and has markings for each pin, jtag included:

Serial connection parameters
for ASUS RT-AX53U
PARAMS: 115200, 8N1, 3.3V, no hardware/software flow control

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

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

None so far.

Reading from 0x1e0000, size 0x100000 Succeeded RT-AX53U bootloader version: 1.0.0.0 Reading from 0x1e0000, size 0x100000 Succeeded MAC Address: 1F:F7:52:5E:B2:83 Reading from 0x1e0000, size 0x40000 Succeeded Check Factory's EEPROM successfully! (r = 18) Reading from 0x2e0000, size 0x40000 Succeeded Check Factory2's EEPROM successfully! (r = 18) Reading from 0x3e0000, size 0x2000 Succeeded Reading from 0x3e0000, size 0x25c48e5 Succeeded Image Name: Image Type: MIPS Linux Kernel Image (lzma compressed) Data Size: 39602341 Bytes = 37.8 MiB Load Address: 81001000 Entry Point: 81001000 Verifying Checksum ... OK ## Loading kernel from FIT Image at 83000040 ... Using 'config@1' configuration Trying 'kernel@1' kernel subimage Description: MIPS OpenWrt Linux-4.4.198 Type: Kernel Image Compression: lzma compressed Data Start: 0x83000124 Data Size: 3847744 Bytes = 3.7 MiB Architecture: MIPS OS: Linux Load Address: 0x81001000 Entry Point: 0x81001000 Hash algo: crc32 Hash value: f2b0d400 Hash algo: sha1 Hash value: d4dabe78fe0ff3488bd1ec286412c4bea5e46dec Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt from FIT Image at 83000040 ... Using 'config@1' configuration Trying 'fdt@1' fdt subimage Description: MIPS OpenWrt mt7621-rfb-ax-nmbm device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x833ab8a8 Data Size: 11203 Bytes = 10.9 KiB Architecture: MIPS Hash algo: crc32 Hash value: a60c718b Hash algo: sha1 Hash value: 7203d5d756400c621650318339f6e3d7f808cb3d Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x833ab8a8 Uncompressing Kernel Image ... OK Loading Device Tree to 8fe67000, end 8fe6cbc2 ... OK [ 0.000000] Linux version 4.4.198 (heidi_wen@sw4-build-server) (gcc version 5.4.0 (LEDE GCC 5.4.0 r0-22e5567) ) #1 SMP Fri May 27 17:44:17 CST 2022 [ 0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 [ 0.000000] bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) [ 0.000000] MIPS: machine is MediaTek MT7621 RFB (802.11ax, NAND with NMBM) [ 0.000000] Determined physical RAM map: [ 0.000000] memory: 10000000 @ 00000000 (usable) [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000000000000-0x0000000000ffffff] [ 0.000000] Normal [mem 0x0000000001000000-0x000000000fffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x000000000fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff] [ 0.000000] VPE topology {2,2} total 4 [ 0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 0.000000] PERCPU: Embedded 10 pages/cpu @81f34000 s9280 r8192 d23488 u40960 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 65024 [ 0.000000] Kernel command line: console=ttyS0,115200 rootfstype=squashfs,jffs2 [ 0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes) [ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes) [ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes) [ 0.000000] Writing ErrCtl register=00064990 [ 0.000000] Readback ErrCtl register=00064990 [ 0.000000] Memory: 246200K/262144K available (7949K kernel code, 2954K rwdata, 1936K rodata, 268K init, 327K bss, 15944K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] Hierarchical RCU implementation. [ 0.000000] NR_IRQS:256 [ 0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns [ 0.000000] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns [ 0.000009] sched_clock: 32 bits at 440MHz, resolution 2ns, wraps every 4880645118ns [ 0.007777] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) [ 0.070403] pid_max: default: 32768 minimum: 301 [ 0.075122] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.081647] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 7.596659] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 7.596668] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 7.596679] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 7.596822] CPU1 revision is: 0001992f (MIPS 1004Kc) [ 0.177670] Synchronize counters for CPU 1: done. [ 7.373414] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 7.373420] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 7.373426] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 7.373497] CPU2 revision is: 0001992f (MIPS 1004Kc) [ 0.268042] Synchronize counters for CPU 2: done. [ 7.463517] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 7.463524] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 7.463530] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 7.463614] CPU3 revision is: 0001992f (MIPS 1004Kc) [ 0.353225] Synchronize counters for CPU 3: done. [ 0.357960] Brought up 4 CPUs [ 0.361524] devtmpfs: initialized [ 0.369325] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.379107] futex hash table entries: 1024 (order: 3, 32768 bytes) [ 0.385405] pinctrl core: initialized pinctrl subsystem [ 0.391203] NET: Registered protocol family 16 [ 0.421614] mt7621_gpio 1e000600.gpio: registering 32 gpios [ 0.427253] mt7621_gpio 1e000600.gpio: registering 32 gpios [ 0.432903] mt7621_gpio 1e000600.gpio: registering 32 gpios [ 0.438944] mt7621-pci 1e140000.pcie: Failed to get gpio for PCIe1 [ 0.445086] mt7621-pci 1e140000.pcie: Failed to get gpio for PCIe2 [ 0.651513] PCIe port 2 link down [ 0.654746] PCI coherence region base: 0x60000000, mask/settings: 0xf0000002 [ 0.684185] PCI host bridge to bus 0000:00 [ 0.688208] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] [ 0.695063] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff] [ 0.701848] pci_bus 0000:00: root bus resource [??? 0x00000000 flags 0x0] [ 0.708609] pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff] [ 0.717210] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.725136] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 0.734514] pci 0000:00:00.0: BAR 9: assigned [mem 0x60000000-0x601fffff pref] [ 0.741658] pci 0000:00:01.0: BAR 9: assigned [mem 0x60200000-0x603fffff pref] [ 0.748804] pci 0000:00:00.0: BAR 1: assigned [mem 0x60400000-0x6040ffff] [ 0.755563] pci 0000:00:01.0: BAR 1: assigned [mem 0x60410000-0x6041ffff] [ 0.762283] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff 64bit pref] [ 0.770005] pci 0000:01:00.0: BAR 2: assigned [mem 0x60100000-0x60103fff 64bit pref] [ 0.777679] pci 0000:01:00.0: BAR 4: assigned [mem 0x60104000-0x60104fff 64bit pref] [ 0.785381] pci 0000:00:00.0: PCI bridge to [bus 01] [ 0.790273] pci 0000:00:00.0: bridge window [mem 0x60000000-0x601fffff pref] [ 0.797468] pci 0000:02:00.0: BAR 0: assigned [mem 0x60200000-0x602fffff 64bit pref] [ 0.805154] pci 0000:02:00.0: BAR 2: assigned [mem 0x60300000-0x60303fff 64bit pref] [ 0.812866] pci 0000:02:00.0: BAR 4: assigned [mem 0x60304000-0x60304fff 64bit pref] [ 0.820529] pci 0000:00:01.0: PCI bridge to [bus 02] [ 0.825456] pci 0000:00:01.0: bridge window [mem 0x60200000-0x603fffff pref] [ 0.834197] clocksource: Switched to clocksource GIC [ 0.841554] NET: Registered protocol family 2 [ 0.846640] TCP established hash table entries: 2048 (order: 1, 8192 bytes) [ 0.853535] TCP bind hash table entries: 2048 (order: 2, 16384 bytes) [ 0.859999] TCP: Hash tables configured (established 2048 bind 2048) [ 0.866363] UDP hash table entries: 256 (order: 1, 8192 bytes) [ 0.872111] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) [ 0.878667] NET: Registered protocol family 1 [ 0.894905] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.900671] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.917144] io scheduler noop registered [ 0.920984] io scheduler deadline registered (default) [ 0.927683] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled [ 0.935709] console [ttyS0] disabled [ 0.939244] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 33, base_baud = 3125000) is a 16550A [ 0.948257] console [ttyS0] enabled [ 0.948257] console [ttyS0] enabled [ 0.955133] bootconsole [early0] disabled [ 0.955133] bootconsole [early0] disabled [ 0.963803] 1e000d00.uartfull: ttyS1 at MMIO 0x1e000d00 (irq = 34, base_baud = 3125000) is a 16550A [ 0.973512] 1e000e00.uartfull: ttyS2 at MMIO 0x1e000e00 (irq = 35, base_baud = 3125000) is a 16550A [ 0.987165] IMQ driver loaded successfully. (numdevs = 3, numqueues = 1, imq_dev_accurate_stats = 1) [ 0.996303] Hooking IMQ after NAT on PREROUTING. [ 1.000982] Hooking IMQ before NAT on POSTROUTING. [ 1.006220] libphy: Fixed MDIO Bus: probed [ 1.064446] libphy: mdio: probed [ 1.068191] mtk_soc_eth 1e100000.ethernet: generated random MAC address 06:66:4b:ef:50:c3 [ 1.076845] mtk_soc_eth 1e100000.ethernet: connected mac 0 to PHY at fixed-0:00 [uid=00000000, driver=Generic PHY] [ 1.088002] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 10 [ 1.096427] mtk_soc_eth 1e100000.ethernet: generated random MAC address 9a:9d:2d:b3:27:e7 [ 1.105139] mtk_soc_eth 1e100000.ethernet: connected mac 1 to PHY at fixed-0:01 [uid=00000000, driver=Generic PHY] [ 1.116244] mtk_soc_eth 1e100000.ethernet eth1: mediatek frame engine at 0xbe100000, irq 10 [ 1.124857] PPP generic driver version 2.4.2 [ 1.129477] PPP BSD Compression module registered [ 1.134233] PPP MPPE Compression module registered [ 1.139009] NET: Registered protocol family 24 [ 1.143464] PPTP driver version 0.8.5 [ 1.147407] register mt_drv [ 1.150374] <--mt7916_hif_init() [ 1.154119] Rx[0] Ring: total 24576 bytes allocated [ 1.163365] Rx[1] Ring: total 16384 bytes allocated [ 1.168328] <-- pci_alloc_tx_rx_ring_mem, Status=0 [ 1.206800] [ 1.206800] [ 1.206800] === pAd = c0381000, size = 13482752 === [ 1.206800] [ 1.217615] <-- RTMPAllocAdapterBlock, Status=0 [ 1.222139] PCI CSRBaseAddress =0xc0280000, csr_addr=0xc0280000! [ 1.228147] RTMPInitPCIeDevice():device_id=0x7915 [ 1.232832] mt7915_init()--> [ 1.235705] Use the default iPAiLNA bin image! [ 1.240202] <--mt7915_init() [ 1.243353] RtmpOSFileOpen(): Error 2 opening /etc/wireless/l1profile.dat [ 1.251174] wdev_init(caller:RTMP_COM_IoctlHandle+0x39c/0x18ac), wdev(0) [ 1.258877] Rx[0] Ring: total 24576 bytes allocated [ 1.263915] Rx[1] Ring: total 24576 bytes allocated [ 1.271161] Rx[2] Ring: total 8192 bytes allocated [ 1.280244] Rx[3] Ring: total 16384 bytes allocated [ 1.287415] Rx[4] Ring: total 8192 bytes allocated [ 1.292239] <-- pci_alloc_tx_rx_ring_mem, Status=0 [ 1.298850] GACT probability NOT on [ 1.302350] Mirror/redirect action on [ 1.306080] u32 classifier [ 1.308771] Performance counters on [ 1.312581] input device check on [ 1.316233] Actions configured [ 1.319653] Netfilter messages via NETLINK v0.30. [ 1.324432] nf_conntrack version 0.5.0 (3846 buckets, 15384 max) [ 1.330863] ctnetlink v0.93: registering with nfnetlink. [ 1.336440] xt_time: kernel timezone is -0000 [ 1.341014] gre: GRE over IPv4 demultiplexor driver [ 1.346081] ip_tables: (C) 2000-2006 Netfilter Core Team [ 1.351677] arp_tables: (C) 2002 David S. Miller [ 1.357754] NET: Registered protocol family 10 [ 1.364363] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 1.370057] NET: Registered protocol family 17 [ 1.374542] NET: Registered protocol family 15 [ 1.379016] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. [ 1.391628] l2tp_core: L2TP core driver, V2.0 [ 1.396003] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 1.400776] 8021q: 802.1Q VLAN Support v1.8 [ 1.407701] mtkmips-pinmux pinctrl: spi is already enabled [ 1.413181] mtk-nand 1e003000.nand: Error applying setting, reverse things back [ 1.420988] nand: device found, Manufacturer ID: 0x01, Chip ID: 0xf1 [ 1.427331] nand: AMD/Spansion S34ML01G2 [ 1.431235] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 1.439467] Scanning device for bad blocks [ 3.135657] nmbm nmbm: Signature found at block 1023 [0x07fe0000] [ 3.145197] nmbm nmbm: First info table with writecount 0 found in block 960 [ 3.162186] nmbm nmbm: Second info table with writecount 0 found in block 963 [ 3.169437] nmbm nmbm: NMBM has been successfully attached [ 3.174956] 7 ofpart partitions found on MTD device nmbm [ 3.180239] Creating 7 MTD partitions on "nmbm": [ 3.184855] 0x000000000000-0x0000000e0000 : "Bootloader" [ 3.191744] 0x0000000e0000-0x0000001e0000 : "nvram" [ 3.198116] 0x0000001e0000-0x0000002e0000 : "Factory" [ 3.204692] 0x0000002e0000-0x0000003e0000 : "Factory2" [ 3.211314] 0x0000003e0000-0x0000035e0000 : "Kernel" [ 3.550277] 2 fit-fw partitions found on MTD device Kernel [ 3.555773] 0x0000003e0000-0x0000007a0000 : "linux" [ 3.562179] 0x00000078e794-0x0000035e0000 : "rootfs" [ 3.568940] mtd: device 7 (rootfs) set to be root filesystem [ 3.574652] 0x0000035e0000-0x0000067e0000 : "Kernel2" [ 3.581510] 0x0000067e0000-0x000007800000 : "jffs2" [ 3.624320] mt753x gsw: Switch is MediaTek MT7530 rev 1 [ 3.651047] libphy: mt753x_mdio: probed [ 3.661079] hctosys: unable to open rtc device (rtc0) [ 3.678664] offset 0x12000 elapse 10ms [ 3.716045] VFS: Mounted root (squashfs filesystem) readonly on device 31:7. [ 3.739692] devtmpfs: mounted [ 3.743332] Freeing unused kernel memory: 268K [ 3.747809] This architecture does not have kernel memory protection. init_main start ## mknod /dev/nvram: File exists 1: set_action 0 Hit ENTER for console... firmware version: 3.0.0.4.386_67508-g429f3d7, dev:(/1F:F7:52:5E:B2:83) mtd productid: RT-AX53U bootloader version: RT-AX53U-01-00-00-00 firmware version: 3.0.0.4 odmpid: RT-AX53U current FW productid: RT-AX53U [ 11.262213] init (1): drop_caches: 1 current FW firmver: 3.0.0.4 clean_mode(1) clean_time(2) threshold(0) free_caches: Start syncing... free_caches: Start cleaning... free_caches: waiting 2 second... free_caches: Finish. [ 13.275510] random: init: uninitialized urandom read (5 bytes read, 42 bits of entropy available) [1 init:init_nvram +14] init_nvram for model(126) set_basic_ifname_vars: WAN eth1 LAN vlan1 [vlan1 ra0 rai0] WIRED [vlan1] ETH_IFNAMES [] 2G ra0 5G rai0 60G N/A USB usb AP_LAN vlan1 DW_WAN eth1 DW_LAN vlan3 force_dwlan 0, sw_mode 1 wan_ifnames: eth1 init_amas_subunit: Set default value. init_amas_subunit(9641): update wl1_vifnames [wl1.1 wl1.2 wl1.3 wl1.4] init_amas_subunit(9660): update wl0_vifnames [wl0.1 wl0.2 wl0.3 wl0.4] 1: check_action 0: 1(init) 1: set_action 7 1: set_action 0 [ 16.082987] random: init: uninitialized urandom read (4 bytes read, 47 bits of entropy available) [ 16.092017] random: init: uninitialized urandom read (4 bytes read, 47 bits of entropy available) [AUTO_FW_UPGRADE] default tmp_time_str= 05:30 �������� config_switch(0x01f0): link down all ports rtkswitch!!!=8 config_mt7621_esw_LANWANPartition: LAN/WAN/WANS_LAN portmask 0000001e/00000021/00000000 config_mt7621_esw_LANWANPartition: P0 PVID 2 config_mt7621_esw_LANWANPartition: P1 PVID 1 config_mt7621_esw_LANWANPartition: P2 PVID 1 config_mt7621_esw_LANWANPartition: P3 PVID 1 config_mt7621_esw_LANWANPartition: P4 PVID 1 config_mt7621_esw_LANWANPartition: P5 PVID 2 mt762x_vlan_set: idx=1, vid=1, portmap=01111011, stag=0 mt762x_vlan_set: idx=2, vid=2, portmap=10000100, stag=0 config_switch(0x0240): ISP Profile/STB: none/0 config_switch(0x0510): link up wan port(s) 1+0 records in 1+0 records out 1: check_action 0: 1(init) 1: check_action 0: 1(init) 1: set_action 7 1: set_action 0 start_jffs2: getting the information of jffs2 start jffs2: 9, 16908288 start_jffs2: mounting jffs2 1: check_action 0: 1(init) 1: set_action 7 1: set_action 0 start_jffs2: create jffs2 successfully 1: check_action 0: 1(init) 1: set_action 7 1: set_action 0 1: check_action 0: 1(init) 1: set_action 7 1: set_action 0 Insert USB modules early. hotplug net INTERFACE=vlan2 ACTION=add SEQNUM=383 hotplug net INTERFACE=vlan1 ACTION=add SEQNUM=380 hotplug net INTERFACE=vlan2 ACTION=add SEQNUM=383 update_lan_state(lan_, 0, 0) hotplug net INTERFACE=vlan1 ACTION=add SEQNUM=380 1+0 records in 1+0 records out hotplug net INTERFACE=br0 ACTION=add SEQNUM=386 hotplug net INTERFACE=br0 ACTION=add SEQNUM=386 _ifconfig: name=vlan1 flags=1243 IFUP addr= netmask= gen ralink config warning: 50!!!! Miss some configuration, please check!!!! gen ralink iNIC config warning: 50[ 34.718289] ra0: ===> main_virtual_if_open !!!! Miss some [ 34.723031] RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT configuration, p[ 34.730881] check_runtime_para 1317: match [ 34.737229] load l1profile succeed! _ifconfig: name[ 34.741124] mt_service_open: wlan service opens successfully! =ra0 flags=1243 IFUP addr= netmask= [ 34.752848] APWdsInitialize():WdsEntry[0~15] [ 34.882351] [multi_profile_merge_5g_only] DBDC_MODE=1 [ 34.910295] multi-profile merge success, en:1,pf1_num:6,pf2_num:6,total:12 [ 34.917188] Open file "/etc/Wireless/RT2860/DBDC_card0.dat" to store DBDC cfg! (21) [ 34.925118] Write file "/etc/Wireless/RT2860/DBDC_card0.dat" success (size=7821)! [ 34.933348] BssidNum=12 [ 34.935830] Pf2MbssIdxMap: [ 34.938553] 0 1 2 3 4 5 6 7 8 9 10 11 [ 34.943705] MacAddress1 = 00:00:00:00:00:00 [ 34.948084] MacAddress2 = 00:00:00:00:00:00 [ 34.952457] MacAddress3 = 00:00:00:00:00:00 [ 34.957668] MacAddress6 = 00:00:00:00:00:00 [ 34.962119] MacAddress7 = 00:00:00:00:00:00 [ 34.966569] MacAddress8 = 00:00:00:00:00:00 [ 34.971000] MacAddress9 = 00:00:00:00:00:00 [ 34.977306] E2pAccessMode=2 [ 34.980807] SSID[0]=ASUS_A8, EdcaIdx=0 [ 34.984787] SSID[1]=ASUS_A8_2G_Guest, EdcaIdx=0 [ 34.989588] SSID[2]=ASUS_A8_2G_Guest2, EdcaIdx=0 [ 34.994452] SSID[3]=ASUS_A8_2G_Guest3, EdcaIdx=0 [ 34.999267] SSID[4]=ASUS_A8_2G_Guest4, EdcaIdx=0 [ 35.004020] SSID[5]=ASUS6, EdcaIdx=0 [ 35.007892] SSID[6]=ASUS_A8, EdcaIdx=0 [ 35.011888] SSID[7]=ASUS_A8_5G_Guest, EdcaIdx=0 [ 35.016734] SSID[8]=ASUS_A8_5G_Guest2, EdcaIdx=0 [ 35.021551] SSID[9]=ASUS_A8_5G_Guest3, EdcaIdx=0 [ 35.026442] SSID[10]=ASUS_A8_5G_Guest4, EdcaIdx=0 [ 35.031386] SSID[11]=ASUS6, EdcaIdx=0 [ 35.035526] RTMPSetProfileParameters(): DBDC Mode=1, eDBDC_mode = 1 [ 35.042644] cfg_mode=16 [ 35.045161] cfg_mode=16 [ 35.047665] cfg_mode=16 [ 35.050197] wmode_band_equal(): Band Equal! [ 35.054458] cfg_mode=16 [ 35.056947] cfg_mode=16 [ 35.059412] cfg_mode=16 [ 35.061873] cfg_mode=16 [ 35.064403] cfg_mode=16 [ 35.066898] cfg_mode=16 [ 35.069355] cfg_mode=16 [ 35.071813] cfg_mode=16 [ 35.074443] cfg_mode=16 [ 35.077049] cfg_mode=16 [ 35.079569] cfg_mode=16 [ 35.082027] cfg_mode=17 [ 35.084651] cfg_mode=17 [ 35.087187] cfg_mode=17 [ 35.089647] cfg_mode=17 [ 35.092102] cfg_mode=17 [ 35.094603] cfg_mode=17 [ 35.097068] cfg_mode=17 [ 35.099502] cfg_mode=17 [ 35.101935] cfg_mode=17 [ 35.104544] cfg_mode=17 [ 35.107055] cfg_mode=17 [ 35.109515] cfg_mode=17 [ 35.112720] auto_ch_select_set_cfg(): BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 35.120974] auto_ch_select_set_cfg(): BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 [ 35.130223] Index0 Channel=0 [ 35.133112] Index1 Channel=0 [ 35.139019] BndStrgBssIdx=1;0;0;0;0;0;1;0;0;0;0;0 [ 35.144279] [TxPower] BAND0: 100, BAND1: 100 [ 35.154470] [SKUenable] BAND0: 1, BAND1: 1 [ 35.162648] profile: FragThreshold[0]=2346 [ 35.166762] profile: FragThreshold[1]=2346 [ 35.170860] profile: FragThreshold[2]=2346 [ 35.175020] profile: FragThreshold[3]=2346 [ 35.179141] profile: FragThreshold[4]=2346 [ 35.183223] profile: FragThreshold[5]=2346 [ 35.187379] profile: FragThreshold[6]=2346 [ 35.191492] profile: FragThreshold[7]=2346 [ 35.195673] profile: FragThreshold[8]=2346 [ 35.199794] profile: FragThreshold[9]=2346 [ 35.203874] profile: FragThreshold[10]=2346 [ 35.208118] profile: FragThreshold[11]=2346 [ 35.213874] APEdca0 [ 35.216774] Valid=1 [ 35.218930] APAifsn[0]=3 [ 35.221464] APAifsn[1]=7 [ 35.223986] APAifsn[2]=1 [ 35.226589] APAifsn[3]=1 [ 35.229189] APEdca1 [ 35.231694] Valid=1 [ 35.233802] APAifsn[0]=3 [ 35.236790] APAifsn[1]=7 [ 35.239366] APAifsn[2]=1 [ 35.241900] APAifsn[3]=1 [ 35.244675] APEdca2 [ 35.247276] APEdca3 [ 35.264096] BSSAifsn[0]=3 [ 35.266765] BSSAifsn[1]=7 [ 35.269371] BSSAifsn[2]=2 [ 35.271972] BSSAifsn[3]=2 [ 35.274912] BSSAifsn[0]=3 [ 35.277522] BSSAifsn[1]=7 [ 35.280126] BSSAifsn[2]=2 [ 35.282743] BSSAifsn[3]=2 [ 35.286185] BSSAifsn[0]=3 [ 35.288839] BSSAifsn[1]=7 [ 35.291467] BSSAifsn[2]=2 [ 35.294087] BSSAifsn[3]=2 [ 35.297171] BSSAifsn[0]=3 [ 35.299787] BSSAifsn[1]=7 [ 35.302392] BSSAifsn[2]=2 [ 35.305089] BSSAifsn[3]=2 [ 35.308062] BSSAifsn[0]=3 [ 35.310698] BSSAifsn[1]=7 [ 35.313322] BSSAifsn[2]=2 [ 35.316369] BSSAifsn[3]=2 [ 35.319487] BSSAifsn[0]=3 [ 35.322123] BSSAifsn[1]=7 [ 35.324967] BSSAifsn[2]=2 [ 35.327640] BSSAifsn[3]=2 [ 35.330549] BSSAifsn[0]=3 [ 35.333153] BSSAifsn[1]=7 [ 35.335810] BSSAifsn[2]=2 [ 35.338439] BSSAifsn[3]=2 [ 35.341338] BSSAifsn[0]=3 [ 35.343941] BSSAifsn[1]=7 [ 35.346573] BSSAifsn[2]=2 [ 35.349192] BSSAifsn[3]=2 [ 35.352089] BSSAifsn[0]=3 [ 35.354721] BSSAifsn[1]=7 [ 35.357339] BSSAifsn[2]=2 [ 35.359941] BSSAifsn[3]=2 [ 35.362840] BSSAifsn[0]=3 [ 35.365472] BSSAifsn[1]=7 [ 35.368079] BSSAifsn[2]=2 [ 35.370681] BSSAifsn[3]=2 [ 35.373581] BSSAifsn[0]=3 [ 35.376212] BSSAifsn[1]=7 [ 35.378830] BSSAifsn[2]=2 [ 35.381433] BSSAifsn[3]=2 [ 35.384643] BSSAifsn[0]=3 [ 35.387297] BSSAifsn[1]=7 [ 35.389899] BSSAifsn[2]=2 [ 35.392501] BSSAifsn[3]=2 [ 35.395961] UAPSDCapable[0]=1 [ 35.398918] UAPSDCapable[1]=1 [ 35.401868] default ApCliUAPSDCapable[0]=1 [ 35.405998] default ApCliUAPSDCapable[1]=1 [ 35.415611] read_itxbf: ITxBfEn = 1 [ 35.419124] read_itxbf: BSSID[0] [ 35.422343] read_itxbf: MBSS[0] ITxBfEn = 1 [ 35.426564] read_itxbf: ITxBfEn = 1 [ 35.430061] read_itxbf: BSSID[1] [ 35.433282] read_itxbf: MBSS[1] ITxBfEn = 1 [ 35.437769] read_itxbf: ITxBfEn = 1 [ 35.441298] read_itxbf: BSSID[2] [ 35.444721] read_itxbf: MBSS[2] ITxBfEn = 1 [ 35.449000] read_itxbf: ITxBfEn = 1 [ 35.452491] read_itxbf: BSSID[3] [ 35.455925] read_itxbf: MBSS[3] ITxBfEn = 1 [ 35.460171] read_itxbf: ITxBfEn = 1 [ 35.463661] read_itxbf: BSSID[4] [ 35.467230] read_itxbf: MBSS[4] ITxBfEn = 1 [ 35.471479] read_itxbf: ITxBfEn = 1 [ 35.475199] read_itxbf: BSSID[5] [ 35.478440] read_itxbf: MBSS[5] ITxBfEn = 1 [ 35.482602] read_itxbf: ITxBfEn = 1 [ 35.486341] read_itxbf: BSSID[6] [ 35.489618] read_itxbf: MBSS[6] ITxBfEn = 1 [ 35.493830] read_itxbf: ITxBfEn = 1 [ 35.497723] read_itxbf: BSSID[7] [ 35.500992] read_itxbf: MBSS[7] ITxBfEn = 1 [ 35.505560] read_itxbf: ITxBfEn = 1 [ 35.509128] read_itxbf: BSSID[8] [ 35.512361] read_itxbf: MBSS[8] ITxBfEn = 1 [ 35.516965] read_itxbf: ITxBfEn = 1 [ 35.520473] read_itxbf: BSSID[9] [ 35.523697] read_itxbf: MBSS[9] ITxBfEn = 1 [ 35.527990] read_itxbf: ITxBfEn = 1 [ 35.531516] read_itxbf: BSSID[10] [ 35.535133] read_itxbf: MBSS[10] ITxBfEn = 1 [ 35.539496] read_itxbf: ITxBfEn = 1 [ 35.542986] read_itxbf: BSSID[11] [ 35.546390] read_itxbf: MBSS[11] ITxBfEn = 1 [ 35.550692] read_itxbf: Common.ITxBfEn = 1 [ 35.555145] read_etxbf: ETxBfEnCond = 0 [ 35.558994] read_etxbf: BSSID[0] [ 35.562231] read_etxbf: MBSS[0] ETxBfEnCond = 0 [ 35.567200] read_etxbf: ETxBfEnCond = 0 [ 35.571057] read_etxbf: BSSID[1] [ 35.574420] read_etxbf: MBSS[1] ETxBfEnCond = 0 [ 35.579057] read_etxbf: ETxBfEnCond = 0 [ 35.582894] read_etxbf: BSSID[2] [ 35.586217] read_etxbf: MBSS[2] ETxBfEnCond = 0 [ 35.590811] read_etxbf: ETxBfEnCond = 0 [ 35.594688] read_etxbf: BSSID[3] [ 35.597932] read_etxbf: MBSS[3] ETxBfEnCond = 0 [ 35.602480] read_etxbf: ETxBfEnCond = 0 [ 35.606715] read_etxbf: BSSID[4] [ 35.610009] read_etxbf: MBSS[4] ETxBfEnCond = 0 [ 35.614736] read_etxbf: ETxBfEnCond = 0 [ 35.618621] read_etxbf: BSSID[5] [ 35.621831] read_etxbf: MBSS[5] ETxBfEnCond = 0 [ 35.626770] read_etxbf: ETxBfEnCond = 1 [ 35.630625] read_etxbf: BSSID[6] [ 35.633853] read_etxbf: MBSS[6] ETxBfEnCond = 1 [ 35.638546] read_etxbf: ETxBfEnCond = 1 [ 35.642407] read_etxbf: BSSID[7] [ 35.646057] read_etxbf: MBSS[7] ETxBfEnCond = 1 [ 35.650691] read_etxbf: ETxBfEnCond = 1 [ 35.654579] read_etxbf: BSSID[8] [ 35.657852] read_etxbf: MBSS[8] ETxBfEnCond = 1 [ 35.662375] read_etxbf: ETxBfEnCond = 1 [ 35.666241] read_etxbf: BSSID[9] [ 35.669481] read_etxbf: MBSS[9] ETxBfEnCond = 1 [ 35.673987] read_etxbf: ETxBfEnCond = 1 [ 35.677830] read_etxbf: BSSID[10] [ 35.681130] read_etxbf: MBSS[10] ETxBfEnCond = 1 [ 35.685750] read_etxbf: ETxBfEnCond = 1 [ 35.689578] read_etxbf: BSSID[11] [ 35.692872] read_etxbf: MBSS[11] ETxBfEnCond = 1 [ 35.700754] MBSS[0] MuOfdmaDlEnable = 1 [ 35.704596] MBSS[1] MuOfdmaDlEnable = 1 [ 35.708411] MBSS[2] MuOfdmaDlEnable = 1 [ 35.712223] MBSS[3] MuOfdmaDlEnable = 1 [ 35.716072] MBSS[4] MuOfdmaDlEnable = 1 [ 35.719914] MBSS[5] MuOfdmaDlEnable = 1 [ 35.723737] MBSS[6] MuOfdmaDlEnable = 1 [ 35.727610] MBSS[7] MuOfdmaDlEnable = 1 [ 35.731452] MBSS[8] MuOfdmaDlEnable = 1 [ 35.735568] MBSS[9] MuOfdmaDlEnable = 1 [ 35.739418] MBSS[10] MuOfdmaDlEnable = 1 [ 35.743329] MBSS[11] MuOfdmaDlEnable = 1 [ 35.747658] MBSS[0] MuOfdmaUlEnable = 0 [ 35.751506] MBSS[1] MuOfdmaUlEnable = 0 [ 35.755437] MBSS[2] MuOfdmaUlEnable = 0 [ 35.759290] MBSS[3] MuOfdmaUlEnable = 0 [ 35.763111] MBSS[4] MuOfdmaUlEnable = 0 [ 35.767030] MBSS[5] MuOfdmaUlEnable = 0 [ 35.770887] MBSS[6] MuOfdmaUlEnable = 0 [ 35.774781] MBSS[7] MuOfdmaUlEnable = 0 [ 35.778648] MBSS[8] MuOfdmaUlEnable = 0 [ 35.782478] MBSS[9] MuOfdmaUlEnable = 0 [ 35.786763] MBSS[10] MuOfdmaUlEnable = 0 [ 35.790726] MBSS[11] MuOfdmaUlEnable = 0 [ 35.795230] MBSS[0] MuMimoDlEnable = 1 [ 35.799012] MBSS[1] MuMimoDlEnable = 1 [ 35.802756] MBSS[2] MuMimoDlEnable = 1 [ 35.806933] MBSS[3] MuMimoDlEnable = 1 [ 35.810713] MBSS[4] MuMimoDlEnable = 1 [ 35.814653] MBSS[5] MuMimoDlEnable = 1 [ 35.818467] MBSS[6] MuMimoDlEnable = 1 [ 35.822212] MBSS[7] MuMimoDlEnable = 1 [ 35.826358] MBSS[8] MuMimoDlEnable = 1 [ 35.830142] MBSS[9] MuMimoDlEnable = 1 [ 35.833885] MBSS[10] MuMimoDlEnable = 1 [ 35.838148] MBSS[11] MuMimoDlEnable = 1 [ 35.842322] MBSS[0] MuMimoUlEnable = 0 [ 35.846507] MBSS[1] MuMimoUlEnable = 0 [ 35.850277] MBSS[2] MuMimoUlEnable = 0 [ 35.854014] MBSS[3] MuMimoUlEnable = 0 [ 35.857857] MBSS[4] MuMimoUlEnable = 0 [ 35.861625] MBSS[5] MuMimoUlEnable = 0 [ 35.865653] MBSS[6] MuMimoUlEnable = 0 [ 35.869435] MBSS[7] MuMimoUlEnable = 0 [ 35.873180] MBSS[8] MuMimoUlEnable = 0 [ 35.877333] MBSS[9] MuMimoUlEnable = 0 [ 35.881116] MBSS[10] MuMimoUlEnable = 0 [ 35.885050] MBSS[11] MuMimoUlEnable = 0 [ 35.956799] [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0 [ 35.962364] [PMF]Set_PMFMFPC_Proc:: apidx=1, Desired MFPC=0 [ 35.967945] [PMF]Set_PMFMFPC_Proc:: apidx=2, Desired MFPC=0 [ 35.973496] [PMF]Set_PMFMFPC_Proc:: apidx=3, Desired MFPC=0 [ 35.979140] [PMF]Set_PMFMFPC_Proc:: apidx=4, Desired MFPC=0 [ 35.984769] [PMF]Set_PMFMFPC_Proc:: apidx=5, Desired MFPC=0 [ 35.990326] [PMF]Set_PMFMFPC_Proc:: apidx=6, Desired MFPC=0 [ 35.995903] [PMF]Set_PMFMFPC_Proc:: apidx=7, Desired MFPC=0 [ 36.001451] [PMF]Set_PMFMFPC_Proc:: apidx=8, Desired MFPC=0 [ 36.007090] [PMF]Set_PMFMFPC_Proc:: apidx=9, Desired MFPC=0 [ 36.012663] [PMF]Set_PMFMFPC_Proc:: apidx=10, Desired MFPC=0 [ 36.018381] [PMF]Set_PMFMFPC_Proc:: apidx=11, Desired MFPC=0 [ 36.024410] [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0 [ 36.029969] [PMF]Set_PMFMFPR_Proc:: apidx=1, Desired MFPR=0 [ 36.035563] [PMF]Set_PMFMFPR_Proc:: apidx=2, Desired MFPR=0 [ 36.041118] [PMF]Set_PMFMFPR_Proc:: apidx=3, Desired MFPR=0 [ 36.046755] [PMF]Set_PMFMFPR_Proc:: apidx=4, Desired MFPR=0 [ 36.052309] [PMF]Set_PMFMFPR_Proc:: apidx=5, Desired MFPR=0 [ 36.057937] [PMF]Set_PMFMFPR_Proc:: apidx=6, Desired MFPR=0 [ 36.063497] [PMF]Set_PMFMFPR_Proc:: apidx=7, Desired MFPR=0 [ 36.069125] [PMF]Set_PMFMFPR_Proc:: apidx=8, Desired MFPR=0 [ 36.074994] [PMF]Set_PMFMFPR_Proc:: apidx=9, Desired MFPR=0 [ 36.080634] [PMF]Set_PMFMFPR_Proc:: apidx=10, Desired MFPR=0 [ 36.086338] [PMF]Set_PMFMFPR_Proc:: apidx=11, Desired MFPR=0 [ 36.092308] [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0 [ 36.098539] [PMF]Set_PMFSHA256_Proc:: apidx=1, Desired PMFSHA256=0 [ 36.104770] [PMF]Set_PMFSHA256_Proc:: apidx=2, Desired PMFSHA256=0 [ 36.110931] [PMF]Set_PMFSHA256_Proc:: apidx=3, Desired PMFSHA256=0 [ 36.117113] [PMF]Set_PMFSHA256_Proc:: apidx=4, Desired PMFSHA256=0 [ 36.123294] [PMF]Set_PMFSHA256_Proc:: apidx=5, Desired PMFSHA256=0 [ 36.129552] [PMF]Set_PMFSHA256_Proc:: apidx=6, Desired PMFSHA256=0 [ 36.135803] [PMF]Set_PMFSHA256_Proc:: apidx=7, Desired PMFSHA256=0 [ 36.141965] [PMF]Set_PMFSHA256_Proc:: apidx=8, Desired PMFSHA256=0 [ 36.148146] [PMF]Set_PMFSHA256_Proc:: apidx=9, Desired PMFSHA256=0 [ 36.154534] [PMF]Set_PMFSHA256_Proc:: apidx=10, Desired PMFSHA256=0 [ 36.160867] [PMF]Set_PMFSHA256_Proc:: apidx=11, Desired PMFSHA256=0 [ 36.168699] ReadMboParameterFromFile::(bMboEnable[0]=1, MboCapIndication = 0x40) [ 36.176222] ReadMboParameterFromFile::(bMboEnable[1]=1, MboCapIndication = 0x40) [ 36.183592] ReadMboParameterFromFile::(bMboEnable[2]=1, MboCapIndication = 0x40) [ 36.190986] ReadMboParameterFromFile::(bMboEnable[3]=1, MboCapIndication = 0x40) [ 36.198396] ReadMboParameterFromFile::(bMboEnable[4]=1, MboCapIndication = 0x40) [ 36.206210] ReadMboParameterFromFile::(bMboEnable[5]=1, MboCapIndication = 0x40) [ 36.213677] ReadMboParameterFromFile::(bMboEnable[6]=1, MboCapIndication = 0x40) [ 36.221143] ReadMboParameterFromFile::(bMboEnable[7]=1, MboCapIndication = 0x40) [ 36.228613] ReadMboParameterFromFile::(bMboEnable[8]=1, MboCapIndication = 0x40) [ 36.236021] ReadMboParameterFromFile::(bMboEnable[9]=1, MboCapIndication = 0x40) [ 36.243398] ReadMboParameterFromFile::(bMboEnable[10]=1, MboCapIndication = 0x40) [ 36.250929] ReadMboParameterFromFile::(bMboEnable[11]=1, MboCapIndication = 0x40) [ 36.258826] ReadMboParameterFromFile::(bMboEnable[0]=1) [ 36.264038] ReadMboParameterFromFile::(bMboEnable[1]=1) [ 36.275436] ApCliEntry[0].Enable=0 [ 36.278837] ApCliEntry[1].Enable=0 [ 36.288781] rtmp_read_wds_from_file(): WDS Profile [ 36.294023] WDS Number: band[0]=0, band[1]=0 [ 36.298675] WDS-Enable mode=0 [ 36.301659] WDS-Enable mode=0 [ 36.305444] If/wds0 - PeerPhyMode=0xb1 [ 36.309260] If/wds1 - PeerPhyMode=0xb1 [ 36.314002] AsicSetReptFuncEnable, caller:RTMPSetProfileParameters+0xbce4/0x114d4 [ 36.321533] RepeaterCtrlExit, wrong state(0,0) [ 36.326219] Band_0_RpEn(0),RpEnByAnyBnd(0),RpEn(0) [ 36.331094] AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 36.340899] AndesSendCmdMsg: Command type = ed, Extension command type = 48 [ 36.347938] MACRepeaterEn=0 Band=0 [ 36.351356] AsicSetReptFuncEnable, caller:RTMPSetProfileParameters+0xbce4/0x114d4 [ 36.358838] RepeaterCtrlExit, wrong state(0,0) [ 36.363292] Band_1_RpEn(0),RpEnByAnyBnd(0),RpEn(0) [ 36.368192] AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD [ 36.377949] AndesSendCmdMsg: Command type = ed, Extension command type = 48 [ 36.384932] MACRepeaterEn=0 Band=1 [ 36.394694] HT_BAWinSize: wdev[0]: (TX=256, RX=256) [ 36.399564] HT_BAWinSize: wdev[1]: (TX=256, RX=256) [ 36.404458] HT_BAWinSize: wdev[2]: (TX=256, RX=256) [ 36.409349] HT_BAWinSize: wdev[3]: (TX=256, RX=256) [ 36.414297] HT_BAWinSize: wdev[4]: (TX=256, RX=256) [ 36.419192] HT_BAWinSize: wdev[5]: (TX=256, RX=256) [ 36.424055] HT_BAWinSize: wdev[6]: (TX=256, RX=256) [ 36.428989] HT_BAWinSize: wdev[7]: (TX=256, RX=256) [ 36.433873] HT_BAWinSize: wdev[8]: (TX=256, RX=256) [ 36.438864] HT_BAWinSize: wdev[9]: (TX=256, RX=256) [ 36.443752] HT_BAWinSize: wdev[10]: (TX=256, RX=256) [ 36.448759] HT_BAWinSize: wdev[11]: (TX=256, RX=256) [ 36.455063] HT: WDEV[0] Ext Channel = ABOVE [ 36.459242] HT: WDEV[1] Ext Channel = ABOVE [ 36.463399] HT: WDEV[2] Ext Channel = ABOVE [ 36.467592] HT: WDEV[3] Ext Channel = ABOVE [ 36.471793] HT: WDEV[4] Ext Channel = ABOVE [ 36.476021] HT: WDEV[5] Ext Channel = ABOVE [ 36.480211] HT: WDEV[6] Ext Channel = BELOW [ 36.484414] HT: WDEV[7] Ext Channel = BELOW [ 36.488626] HT: WDEV[8] Ext Channel = BELOW [ 36.492808] HT: WDEV[9] Ext Channel = BELOW [ 36.497160] HT: WDEV[a] Ext Channel = BELOW [ 36.501364] HT: WDEV[b] Ext Channel = BELOW [ 36.506216] HT: greenap_cap = 0 [ 36.510094] 0:ra0 TWTsupport = 0 [ 36.513344] 1:(null) TWTsupport = 0 [ 36.516923] 2:(null) TWTsupport = 0 [ 36.520460] 3:(null) TWTsupport = 0 [ 36.523964] 4:(null) TWTsupport = 0 [ 36.527523] 5:(null) TWTsupport = 0 [ 36.531060] 6:(null) TWTsupport = 0 [ 36.534795] 7:(null) TWTsupport = 0 [ 36.538336] 8:(null) TWTsupport = 0 [ 36.541806] 9:(null) TWTsupport = 0 [ 36.545339] 10:(null) TWTsupport = 0 [ 36.548957] 11:(null) TWTsupport = 0 [ 36.678834] WtcSetMaxStaNum: MaxStaNum:226, BssidNum:12, WdsNum:16, MSTANum:1, MaxNumChipRept:32, MinMcastWcid:275 [ 36.689210] Top Init Done! [ 36.691934] Use dev_alloc_skb [ 36.694928] token_tx_two_queues_init(): ct sw token(0) number = 2048 [ 36.701669] token_tx_two_queues_init(): token que(0) inited done!id_head/tail=0/2048 [ 36.709474] token_tx_two_queues_init(): 8c890804,8c890804 [ 36.714935] token_tx_two_queues_init(): ct sw token(1) number = 6144 [ 36.722020] token_tx_two_queues_init(): token que(1) inited done!id_head/tail=0/6144 [ 36.729793] token_tx_two_queues_init(): 8c8908ac,8c8908ac [ 36.742921] TxRing[0]: attr:0, total 2048 entry initialized [ 36.754384] TxRing[1]: attr:0, total 2048 entry initialized [ 36.764908] TxRing[2]: attr:0, total 2048 entry initialized [ 36.770670] RX[0] DESC a0c38000 size = 24576 [ 36.778101] RX[1] DESC a0c18000 size = 16384 [ 36.783553] RX[2] DESC a0dd0000 size = 24576 [ 36.791075] RX[3] DESC a0dd8000 size = 24576 [ 36.795516] RX[4] DESC a0db6000 size = 8192 [ 36.800243] RX[5] DESC a0c24000 size = 16384 [ 36.806487] RX[6] DESC a0e10000 size = 8192 [ 36.812203] -->TX_RING_0[0xd9330]: Attr:0, Base=0xc30000, Cnt=2048! [ 36.818528] -->TX_RING_1[0xd5420]: Attr:0, Base=0xdc0000, Cnt=2048! [ 36.825080] -->TX_RING_2[0xd5430]: Attr:0, Base=0xdc8000, Cnt=2048! [ 36.831401] -->TX_RING_3[0xd5400]: Attr:3, Base=0xdb5000, Cnt=128! [ 36.837614] -->TX_RING_4[0xd5410]: Attr:2, Base=0xc1e000, Cnt=256! [ 36.843813] -->TX_RING_5[0xd5440]: Attr:1, Base=0xc1f000, Cnt=256! [ 36.850064] -->RX_RING_0[0xd8510]: Base=0xc38000, Cnt=1536 [ 36.855634] -->RX_RING_1[0xd9520]: Base=0xc18000, Cnt=1024 [ 36.861105] -->RX_RING_2[0xd4500]: Base=0xdd0000, Cnt=1536 [ 36.866596] -->RX_RING_3[0xd4510]: Base=0xdd8000, Cnt=10 [ 36.871888] -->RX_RING_4[0xd5500]: Base=0xdb6000, Cnt=512 [ 36.877356] -->RX_RING_5[0xd5510]: Base=0xc24000, Cnt=1024 [ 36.882840] -->RX_RING_6[0xd5520]: Base=0xe10000, Cnt=512 [ 36.888255] Hif Init Done! [ 36.894362] pci_driver_own_by_port: success to clear p=0 fw own, from(1): 1 is interrupt mode, 2 is polling mode. [ 36.905654] pci_driver_own_by_port: success to clear p=1 fw own, from(1): 1 is interrupt mode, 2 is polling mode. [ 36.915908] fw_prepare():using E2 ROM patch [ 36.920107] fw_prepare():using E2 RAM [ 36.923874] Parsing patch header [ 36.927141] Built date: 20201105222230a [ 36.931288] [ 36.932797] Platform: ALPS [ 36.935683] HW/SW version: 0x8a108a10 [ 36.939519] Patch version: 0xffffffff [ 36.943273] Section num: 0x2, subsys: 0x4 [ 36.947434] Section 0: type = 0x30002, offset = 0xe0, size = 0xfc90 [ 36.953785] Target address: 0x200000, length: 0xfc90 [ 36.959295] Section 1: type = 0x30002, offset = 0xfd70, size = 0x13720 [ 36.966025] Target address: 0xe000f000, length: 0x13720 [ 36.971531] Patch SEM Status = 2 [ 36.974788] patch is not ready && get semaphore success [ 36.979999] Start address = 0x200000, DL length = 64656, Data mode = 0x80000000 [ 36.988649] EventGenericEventHandler: CMD Success [ 36.993454] MtCmdAddressLenReq:(ret = 0) [ 36.998212] Start address = 0xe000f000, DL length = 79648, Data mode = 0x80000000 [ 37.007303] EventGenericEventHandler: CMD Success [ 37.012176] MtCmdAddressLenReq:(ret = 0) [ 37.017564] MtCmdPatchFinishReq [ 37.024562] EventGenericEventHandler: CMD Success [ 37.029543] Patch SEM Status = 3 [ 37.032793] release patch semaphore [ 37.036815] WfMcuHwInit: Before NICLoadFirmware, check ICapMode = 0 [ 37.043999] Parsing CPU 0 fw tailer [ 37.047512] Chip ID: 0x0b [ 37.050299] Eco version: 0x01 [ 37.053346] Region number: 0x07 [ 37.056618] Format version: 0x02 [ 37.059961] Format flag: 0x01 [ 37.063008] Ram version: ____000000 [ 37.066744] Built date: 20201105222304 [ 37.070740] Common crc: 0xaa870ac [ 37.074211] Parsing tailer region 0 [ 37.077695] Decomp crc: 0x0 [ 37.080571] Decomp size: 0x0 [ 37.083537] Decomp block size: 0x0 [ 37.087072] Target address: 0x21fc00 [ 37.090751] Download size: 110592 [ 37.094194] Feature set: 0x20 [ 37.097354] Parsing tailer region 1 [ 37.100849] Decomp crc: 0x0 [ 37.103710] Decomp size: 0x0 [ 37.106703] Decomp block size: 0x0 [ 37.110208] Target address: 0x31dc00 [ 37.113872] Download size: 205824 [ 37.117369] Feature set: 0x00 [ 37.120519] Parsing tailer region 2 [ 37.124013] Decomp crc: 0x0 [ 37.126932] Decomp size: 0x0 [ 37.129896] Decomp block size: 0x0 [ 37.133378] Target address: 0x417400 [ 37.137282] Download size: 31744 [ 37.140607] Feature set: 0x00 [ 37.143654] Parsing tailer region 3 [ 37.147159] Decomp crc: 0x0 [ 37.150033] Decomp size: 0x0 [ 37.152992] Decomp block size: 0x0 [ 37.156758] Target address: 0xe0022800 [ 37.160648] Download size: 411136 [ 37.164050] Feature set: 0x00 [ 37.167440] Parsing tailer region 4 [ 37.170941] Decomp crc: 0x0 [ 37.173824] Decomp size: 0x0 [ 37.177026] Decomp block size: 0x0 [ 37.180563] Target address: 0xe0086e00 [ 37.184529] Download size: 332288 [ 37.187962] Feature set: 0x00 [ 37.191047] Parsing tailer region 5 [ 37.194637] Decomp crc: 0x0 [ 37.197515] Decomp size: 0x0 [ 37.200477] Decomp block size: 0x0 [ 37.203953] Target address: 0x23ac00 [ 37.207638] Download size: 87040 [ 37.210968] Feature set: 0x00 [ 37.214077] Parsing tailer region 6 [ 37.217812] Decomp crc: 0x0 [ 37.220726] Decomp size: 0x0 [ 37.223677] Decomp block size: 0x0 [ 37.227198] Target address: 0x400000 [ 37.230876] Download size: 81920 [ 37.234219] Feature set: 0x00 [ 37.237371] Release info: header tag = 0, total length = 68 [ 37.243008] tag 1, padding length = 3, tag length = 61 [ 37.248242] payload: t-neptune-main-mt7915-1953-MT7915D_1953_MT7621-20201105221902 [ 37.256597] Start address = 0x21fc00, DL length = 110592, Data mode = 0x80000000 [ 37.265279] EventGenericEventHandler: CMD Success [ 37.270040] MtCmdAddressLenReq:(ret = 0) [ 37.275378] Start address = 0x31dc00, DL length = 205824, Data mode = 0x80000000 [ 37.284008] EventGenericEventHandler: CMD Success [ 37.288748] MtCmdAddressLenReq:(ret = 0) [ 37.296008] Start address = 0x417400, DL length = 31744, Data mode = 0x80000000 [ 37.304626] EventGenericEventHandler: CMD Success [ 37.309406] MtCmdAddressLenReq:(ret = 0) [ 37.313659] Start address = 0xe0022800, DL length = 411136, Data mode = 0x80000000 [ 37.323158] EventGenericEventHandler: CMD Success [ 37.327941] MtCmdAddressLenReq:(ret = 0) [ 37.336362] Start address = 0xe0086e00, DL length = 332288, Data mode = 0x80000000 [ 37.345195] EventGenericEventHandler: CMD Success [ 37.349973] MtCmdAddressLenReq:(ret = 0) [ 37.358128] Start address = 0x23ac00, DL length = 87040, Data mode = 0x80000000 [ 37.366707] EventGenericEventHandler: CMD Success [ 37.371470] MtCmdAddressLenReq:(ret = 0) [ 37.377171] Start address = 0x400000, DL length = 81920, Data mode = 0x80000000 [ 37.385751] EventGenericEventHandler: CMD Success [ 37.390513] MtCmdAddressLenReq:(ret = 0) [ 37.395534] MtCmdFwStartReq: override = 0x1, address = 0x21fc00 [ 37.402938] EventGenericEventHandler: CMD Success [ 37.407687] Parsing CPU 1 fw tailer [ 37.411166] Chip ID: 0x00 [ 37.413870] Eco version: 0x01 [ 37.416969] Region number: 0x03 [ 37.420186] Format version: 0x02 [ 37.423502] Format flag: 0x01 [ 37.426625] Ram version: DEV_000000 [ 37.430347] Built date: 20201105222323 [ 37.434433] Common crc: 0x8fcbc5ad [ 37.437965] Parsing tailer region 0 [ 37.441441] Decomp crc: 0x0 [ 37.444342] Decomp size: 0x0 [ 37.447327] Decomp block size: 0x0 [ 37.450816] Target address: 0x10200000 [ 37.454811] Download size: 88512 [ 37.458145] Feature set: 0x00 [ 37.461206] Parsing tailer region 1 [ 37.464848] Decomp crc: 0x0 [ 37.467776] Decomp size: 0x0 [ 37.470749] Decomp block size: 0x0 [ 37.474271] Target address: 0x10300000 [ 37.478120] Download size: 19392 [ 37.481436] Feature set: 0x00 [ 37.484566] Parsing tailer region 2 [ 37.488048] Decomp crc: 0x0 [ 37.490918] Decomp size: 0x0 [ 37.493865] Decomp block size: 0x0 [ 37.497377] Target address: 0xe0000000 [ 37.501228] Download size: 8768 [ 37.504482] Feature set: 0x00 [ 37.507624] Release info: header tag = 0, total length = 0 [ 37.513221] Start address = 0x10200000, DL length = 88512, Data mode = 0x80000010 [ 37.522006] EventGenericEventHandler: CMD Success [ 37.526766] MtCmdAddressLenReq:(ret = 0) [ 37.531784] Start address = 0x10300000, DL length = 19392, Data mode = 0x80000010 [ 37.540737] EventGenericEventHandler: CMD Success [ 37.545518] MtCmdAddressLenReq:(ret = 0) [ 37.549859] Start address = 0xe0000000, DL length = 8768, Data mode = 0x80000010 [ 37.558847] EventGenericEventHandler: CMD Success [ 37.563725] MtCmdAddressLenReq:(ret = 0) [ 37.568587] MtCmdFwStartReq: override = 0x4, address = 0x0 [ 37.674637] EventGenericEventHandler: CMD Success [ 37.679432] MCU Init Done! [ 37.682141] efuse_probe: efuse = 10000012 [ 37.686734] RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 [ 37.692170] RtmpEepromGetDefault::e2p_dafault=1 [ 37.696756] RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 [ 37.704483] NVM is FLASH mode. dev_idx [0] FLASH OFFSET [0x0] [ 37.710332] rtmp_nv_init(): EEPROM Size[131072] [ 37.720156] [EEPROMImage - PreCalImageInfo - PreCalImage - TxDPDImage] [ 37.720156] [0x8bc00000 - 0x8bc00e00 - 0x8bc00e10 - 0x8bc0d220] [ 37.734044] validFlashEepromID(): eeFlashId=7915, pAd->ChipID=7915 [ 37.744329] [d-die version:1] [ 37.782751] [a-die version:2] [ 37.915786] [ 37.917304] NICReadEEPROMParameters: EEPROM 0x62 0 [ 42.877799] Country Region from e2p = 0 [ 42.881637] antenna_default_reset() todo [ 42.885608] antenna_default_reset() value = 0x5292, TxPath = 2, RxPath = 2 [ 42.892617] RTMPReadTxPwrPerRate(458): Don't Support this now! [ 42.898619] rc_radio_init(): DBDC MODE=1, ConcurrentBand=2 [ 42.904288] rc_radio_init(): radio_ctrl=8eb29718,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf [ 42.912936] rc_radio_init(): radio_ctrl=8eb29a70,Band=1,rfcap=3,channel=1,PhyMode=2 extCha=0xf [ 42.921714] ucAction = 0, ucBandIdx = 0, ucSmthIntlBypass = 0 [ 42.927513] ucAction = 0, ucBandIdx = 1, ucSmthIntlBypass = 0 [ 42.933247] AntCfgInit(2858): Not support for HIF_MT yet! [ 42.953273] EEPROM Init Done! [ 42.956338] mac_init()--> [ 42.958943] init_mac_cr()--> [ 42.961807] <--mac_init() [ 42.968955] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 [ 42.978284] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 [ 42.987241] CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 [ 42.994014] MAC Init Done! [ 42.996800] BBPInit():BBP Initialization..... [ 43.001183] Band 0: valid=1, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2 [ 43.009415] Band 1: valid=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0 [ 43.017641] BBPInit() todo [ 43.020342] PHY Init Done! [ 43.035745] tx_pwr_comp_init():NotSupportYet! [ 43.035753] [ 43.035753] led_send_fw_cmd: [ 43.035848] 0205000000240000 [ 43.035848] led_0 map to gpio_18... [ 43.035872] [ 43.035872] led_send_fw_cmd: [ 43.035898] 0205010000340000 [ 43.035898] led_1 map to gpio_26... [ 43.061531] Set_SCSDefaultEnable(): BandIdx=0, SCSEnable=1 [ 43.067079] Set_SCSDefaultEnable(): BandIdx=1, SCSEnable=1 [ 43.072833] MtCmdSetMacTxRx:(ret = 0) [ 43.077616] MtCmdSetMacTxRx:(ret = 0) [ 43.082836] ap_ftkd> Initialize FT KDP Module... [ 43.088441] Main bssid = 00:00:00:00:00:00 [ 43.092679] SetMuruPlatformTypeProc: param.ucPlatformType = 2 [ 43.099295] muru_cfg_dlul_limits:(Ret = 1 [ 43.103756] muru_cfg_dlul_limits:(Ret = 1 [ 43.109250] MtCmdSetMacTxRx:(ret = 0) [ 43.113246] MtCmdSetMacTxRx:(ret = 0) [ 43.117151] <==== mt_wifi_init, Status=0 [ 43.121638] CmdHeraStbcPriorityCtrl: u1BandIdx=0, u1Operation=1, u1StbcPriority=0 [ 43.129342] CmdHeraStbcPriorityCtrl: u1BandIdx=1, u1Operation=1, u1StbcPriority=0 [ 43.136970] MtCmdSetVht1024QamSupport: Vht1024QamSupport=1 [ 43.142577] Register MBSSID IF 1 (ra1) [ 43.146414] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(1) [ 43.154924] Register MBSSID IF 2 (ra2) [ 43.158908] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(2) [ 43.184289] Register MBSSID IF 3 (ra3) [ 43.188170] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(3) [ 43.224840] Register MBSSID IF 4 (ra4) [ 43.228703] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(4) [ 43.294295] Register MBSSID IF 5 (ra5) [ 43.298136] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(5) hotplug net INTERFACE=ra1 ACTION=add SEQNUM=389 hotplug net INTERFACE=ra1 ACTION=add SEQNUM=389 hotplug net INTERFACE=ra2 ACTION=add SEQNUM=392 [ 43.374276] Register MBSSID IF 6 (rai0) [ 43.378189] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(6) hotplug net INTERFACE=ra3 ACTION=add SEQNUM=395 hotplug net INTERFACE=ra2 ACTION=add SEQNUM=392 [ 43.442030] Register MBSSID IF 7 (rai1) [ 43.446017] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(7) hotplug net INTERFACE=ra4 ACTION=add SEQNUM=398 hotplug net INTERFACE=ra4 ACTION[ 43.494574] Register MBSSID IF 8 (rai2) [ 43.499606] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(8) hotplug net INTERFACE=ra5 ACTION=add SEQNUM=401 [ 43.554329] Register MBSSID IF 9 (rai3) [ 43.558252] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(9) hotplug net INTERFACE=rai0 ACTION=add SEQNUM=404 hotplug net INTERFACE=ra5 ACTION[ 43.611487] Register MBSSID IF 10 (rai4) [ 43.616593] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(10) hotplug net INTERFACE=rai0 ACTION=add SEQNUM=404 hotplug net INTERFACE=rai1 ACTION=add SEQNUM=407[ 43.674302] Register MBSSID IF 11 (rai5) [ 43.678378] wdev_init(caller:mbss_create_vif+0x2f8/0x4c0), wdev(11) [ 43.686422] MSTA_Init (2) ---> ApCli hotplug net INTERFACE=rai2 ACTION=add SEQNUM=410 hotplug net INTERFACE=rai1 ACTION=add SEQNUM=407 [ 43.735818] Register MSTA IF (apcli0) , pAd->MSTANum = 1 [ 43.741201] wdev_init(caller:MSTA_Init+0x3e8/0x654), wdev(12) [ 43.747375] Caller: SetCommonHT+0x100/0x170 [ 43.751589] [ 43.751589] phy_mode=78, ch=0, wdev_type=2 [ 43.757319] ht_cap: ht_cap->HtCapInfo, [ 43.761200] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 43.768911] ht_cap: ht_cap->HtCapParm, [ 43.772772] mdpu_density=0, ampdu_factor=3 hotplug net INTERFACE=rai3 ACTION=add SEQNUM=413 hotplug net INTERFACE=rai3 ACTION=add SEQNUM=413 hotplug net INTERFACE=rai2 ACTION=add SEQNUM=410 hotplug net INTERFACE=rai4 ACTION=add SEQNUM=416 hotplug net INTERFACE=rai4 ACTION=add SEQNUM=416 hotplug net INTERFACE=rai5 ACTION=add SEQNUM=419 [ 43.875839] Register MSTA IF (apclii0) , pAd->MSTANum = 2 [ 43.881368] wdev_init(caller:MSTA_Init+0x3e8/0x654), wdev(13) [ 43.887635] Caller: SetCommonHT+0x100/0x170 [ 43.891835] [ 43.891835] phy_mode=177, ch=0, wdev_type=2 [ 43.897621] ht_cap: ht_cap->HtCapInfo, [ 43.897643] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 43.897646] ht_cap: ht_cap->HtCapParm, [ 43.897651] mdpu_density=0, ampdu_factor=3 [ 43.899111] mt_service_init: wlan service inits successfully! [ 43.899132] WtcSetMaxStaNum: MaxStaNum:224, BssidNum:12, WdsNum:16, MSTANum:2, MaxNumChipRept:32, MinMcastWcid:274 [ 43.930606] RedInit: set CR4/N9 RED Enable to 1. [ 43.930613] RedInit: RED Initiailize Done. [ 43.930882] cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 3. [ 43.930893] RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 43.930906] wifi_sys_open(), wdev idx = 0 [ 43.930973] ucAction = 0, ucBandIdx = 0, ucSmthIntlBypass = 0 [ 43.930980] ucAction = 0, ucBandIdx = 1, ucSmthIntlBypass = 0 [ 43.931029] BuildChannelList() BandIdx = 0, PhyMode = 78, ChListNum = 13: [ 43.931097] phy_oper_init(): operate TxStream = 2, RxStream = 2 [ 43.931221] phy_freq_adjust : no prim_ch value for adjust! [ 43.931277] Caller: wlan_operate_init+0x104/0x118 [ 43.931283] [ 43.931283] phy_mode=78, ch=0, wdev_type=1 [ 43.931287] ht_cap: ht_cap->HtCapInfo, [ 43.931298] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 43.931301] ht_cap: ht_cap->HtCapParm, [ 43.931306] mdpu_density=5, ampdu_factor=3 [ 43.933434] hw_ctrl_flow_v2_open: wdev_idx=0 [ 43.933716] AP inf up for ra_0(func_idx) OmacIdx=0 [ 43.933779] AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn [ 43.934333] ApAutoChannelAtBootUp-----------------> [ 43.934345] ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 [ 43.934563] MtCmdSetMacTxRx:(ret = 0) [ 43.934752] MtCmdSetMacTxRx:(ret = 0) [ 43.934832] UpdateBeaconHandler, wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x1b8/0x464)!! [ 43.934959] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 43.934996] MtCmdChannelSwitch: ctrl_chl=1, ctrl_ch2=0, cent_ch=1 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 43.944553] MtCmdSetTxRxPath: ctrl_chl=1, ctrl_ch2=0, cent_ch=1, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) hotplug net INTERFACE=rai5 ACTION=add SEQNUM=419 hotplug net INTERFACE=apcli0 ACTION=add SEQNUM=422 hotplug net INTERFACE=apclii0 ACTION=add SEQNUM=425 hotplug net INTERFACE=apclii0 ACTION=add SEQNUM=425 [ 44.154939] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 44.163092] MtCmdChannelSwitch: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 44.183443] MtCmdSetTxRxPath: ctrl_chl=2, ctrl_ch2=0, cent_ch=2, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 44.404640] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 44.412213] MtCmdChannelSwitch: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 44.432252] MtCmdSetTxRxPath: ctrl_chl=3, ctrl_ch2=0, cent_ch=3, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 44.654648] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 44.662221] MtCmdChannelSwitch: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 44.682267] MtCmdSetTxRxPath: ctrl_chl=4, ctrl_ch2=0, cent_ch=4, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 44.904660] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 44.912233] MtCmdChannelSwitch: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 44.926465] UpdateBeaconHandler, wdev(0) bss not ready (state:0, caller:APMlmePeriodicExec+0x30c/0x554)!! [ 44.936419] MtCmdSetTxRxPath: ctrl_chl=5, ctrl_ch2=0, cent_ch=5, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 45.154623] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 45.162195] MtCmdChannelSwitch: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 45.182218] MtCmdSetTxRxPath: ctrl_chl=6, ctrl_ch2=0, cent_ch=6, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 45.404591] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 45.412165] MtCmdChannelSwitch: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 45.432213] MtCmdSetTxRxPath: ctrl_chl=7, ctrl_ch2=0, cent_ch=7, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 45.654594] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 45.662167] MtCmdChannelSwitch: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 45.682234] MtCmdSetTxRxPath: ctrl_chl=8, ctrl_ch2=0, cent_ch=8, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 45.904662] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 45.912235] MtCmdChannelSwitch: ctrl_chl=9, ctrl_ch2=0, cent_ch=9 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 45.932277] MtCmdSetTxRxPath: ctrl_chl=9, ctrl_ch2=0, cent_ch=9, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 45.934842] UpdateBeaconHandler, wdev(0) bss not ready (state:0, caller:APUpdateOperationMode+0x190/0x2a0)!! [ 46.164649] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 46.172222] MtCmdChannelSwitch: ctrl_chl=10, ctrl_ch2=0, cent_ch=10 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 46.192427] MtCmdSetTxRxPath: ctrl_chl=10, ctrl_ch2=0, cent_ch=10, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 46.414625] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 46.422199] MtCmdChannelSwitch: ctrl_chl=11, ctrl_ch2=0, cent_ch=11 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 46.442421] MtCmdSetTxRxPath: ctrl_chl=11, ctrl_ch2=0, cent_ch=11, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 46.664569] UpdateBeaconHandler, wdev(0) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x3b4/0x464)!! [ 46.674405] ==================================================================== [ 46.681766] Channel 1 : Busy Time = 84, Skip Channel = FALSE, BwCap = TRUE [ 46.689196] Channel 2 : Busy Time = 113, Skip Channel = FALSE, BwCap = TRUE [ 46.696863] Channel 3 : Busy Time = 263, Skip Channel = FALSE, BwCap = TRUE [ 46.704396] Channel 4 : Busy Time = 631, Skip Channel = FALSE, BwCap = TRUE [ 46.711800] Channel 5 : Busy Time = 293, Skip Channel = FALSE, BwCap = TRUE [ 46.719252] Channel 6 : Busy Time = 1368, Skip Channel = FALSE, BwCap = TRUE [ 46.726719] Channel 7 : Busy Time = 723, Skip Channel = FALSE, BwCap = TRUE [ 46.734092] Channel 8 : Busy Time = 575, Skip Channel = FALSE, BwCap = TRUE [ 46.741510] Channel 9 : Busy Time = 119, Skip Channel = FALSE, BwCap = TRUE [ 46.749295] Channel 10 : Busy Time = 882, Skip Channel = FALSE, BwCap = TRUE [ 46.756833] Channel 11 : Busy Time = 1731, Skip Channel = FALSE, BwCap = TRUE [ 46.764252] ==================================================================== [ 46.771646] Rule 3 Channel Busy time value : Select Primary Channel 1 [ 46.778089] Rule 3 Channel Busy time value : Min Channel Busy = 84 [ 46.784340] Rule 3 Channel Busy time value : BW = 20 [ 46.789355] [SelectClearChannelBusyTime] - band0 END [ 46.794412] ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 1, IsAband = 0 [ 46.803332] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 46.810989] MtCmdChannelSwitch: ctrl_chl=1, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=1, TXStream=2, RXStream=2, scan(0) [ 46.908759] MtCmdSetTxRxPath: ctrl_chl=1, ctrl_ch2=0, cent_ch=3, RxPath=3, BandIdx=0, ChBand=0, BW=1,TXStream=2, RXStream=3, scan(0) [ 46.920909] zero_wait_dfs_switch_ch(): outband ch 0, ch_stat 0 [ 46.926772] ApAutoChannelAtBootUp<----------------- [ 46.931827] ===> APStartUpForMbss(caller:ap_inf_open+0x178/0x1d4), mbss_idx:0, CfgMode:177 [ 46.940172] [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 [ 46.946169] Caller: SetCommonHT+0x100/0x170 [ 46.950343] [ 46.950343] phy_mode=78, ch=1, wdev_type=1 [ 46.955946] ht_cap: ht_cap->HtCapInfo, [ 46.959898] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 46.967792] ht_cap: ht_cap->HtCapParm, [ 46.971715] mdpu_density=5, ampdu_factor=3 [ 46.976184] Enable 20/40 BSSCoex Channel Scan(BssCoex=1) [ 46.982287] MtCmdSetMacTxRx:(ret = 0) [ 46.986360] MtCmdSetMacTxRx:(ret = 0) [ 46.990544] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 46.998292] MtCmdChannelSwitch: ctrl_chl=1, ctrl_ch2=0, cent_ch=1 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 47.018275] MtCmdSetTxRxPath: ctrl_chl=1, ctrl_ch2=0, cent_ch=1, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 47.030369] AP OBSS SYNC - BBP R4 to 20MHz.l [ 47.344329] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 47.351902] MtCmdChannelSwitch: ctrl_chl=2, ctrl_ch2=0, cent_ch=2 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 47.371947] MtCmdSetTxRxPath: ctrl_chl=2, ctrl_ch2=0, cent_ch=2, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 47.384084] AP OBSS SYNC - BBP R4 to 20MHz.l [ 47.694285] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 47.701859] MtCmdChannelSwitch: ctrl_chl=3, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 47.721904] MtCmdSetTxRxPath: ctrl_chl=3, ctrl_ch2=0, cent_ch=3, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 47.734035] AP OBSS SYNC - BBP R4 to 20MHz.l [ 48.044280] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 48.051852] MtCmdChannelSwitch: ctrl_chl=4, ctrl_ch2=0, cent_ch=4 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 48.071873] MtCmdSetTxRxPath: ctrl_chl=4, ctrl_ch2=0, cent_ch=4, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 48.084007] AP OBSS SYNC - BBP R4 to 20MHz.l [ 48.394329] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 48.401903] MtCmdChannelSwitch: ctrl_chl=5, ctrl_ch2=0, cent_ch=5 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 48.421952] MtCmdSetTxRxPath: ctrl_chl=5, ctrl_ch2=0, cent_ch=5, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 48.434089] AP OBSS SYNC - BBP R4 to 20MHz.l [ 48.744334] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 48.751910] MtCmdChannelSwitch: ctrl_chl=6, ctrl_ch2=0, cent_ch=6 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 48.771952] MtCmdSetTxRxPath: ctrl_chl=6, ctrl_ch2=0, cent_ch=6, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 48.784083] AP OBSS SYNC - BBP R4 to 20MHz.l [ 48.934509] UpdateBeaconHandler, wdev(0) bss not ready (state:0, caller:update_ap_qload_to_bcn+0x94/0xc4)!! [ 49.094301] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 49.101873] MtCmdChannelSwitch: ctrl_chl=7, ctrl_ch2=0, cent_ch=7 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 49.121927] MtCmdSetTxRxPath: ctrl_chl=7, ctrl_ch2=0, cent_ch=7, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 49.134060] AP OBSS SYNC - BBP R4 to 20MHz.l [ 49.444300] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 49.451873] MtCmdChannelSwitch: ctrl_chl=8, ctrl_ch2=0, cent_ch=8 DBDCIdx=0, ChBand=0, BW=0, TXStream=2, RXStream=2, scan(1) [ 49.471914] MtCmdSetTxRxPath: ctrl_chl=8, ctrl_ch2=0, cent_ch=8, RxPath=3, BandIdx=0, ChBand=0, BW=0,TXStream=2, RXStream=3, scan(1) [ 49.484053] AP OBSS SYNC - BBP R4 to 20MHz.l [ 49.794205] Channel[Idx=0, Ch=1].bEffectedChannel=0x0! [ 49.799338] Channel[Idx=1, Ch=2].bEffectedChannel=0x0! [ 49.804502] Channel[Idx=2, Ch=3].bEffectedChannel=0x0! [ 49.809750] Channel[Idx=3, Ch=4].bEffectedChannel=0x0! [ 49.815062] Channel[Idx=4, Ch=5].bEffectedChannel=0x0! [ 49.820308] Channel[Idx=5, Ch=6].bEffectedChannel=0x6! [ 49.825597] needFallBack=TRUE due to OP/OT! [ 49.829900] Channel[Idx=6, Ch=7].bEffectedChannel=0x0! [ 49.835202] Channel[Idx=7, Ch=8].bEffectedChannel=0x0! [ 49.840922] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 49.848651] MtCmdChannelSwitch: ctrl_chl=1, ctrl_ch2=0, cent_ch=3 DBDCIdx=0, ChBand=0, BW=1, TXStream=2, RXStream=2, scan(0) [ 49.946342] MtCmdSetTxRxPath: ctrl_chl=1, ctrl_ch2=0, cent_ch=3, RxPath=3, BandIdx=0, ChBand=0, BW=1,TXStream=2, RXStream=3, scan(0) [ 49.958548] ap_link_up(caller:APStartUpForMbss+0x440/0x6c8), wdev(0) [ 49.964933] wifi_sys_linkup, wdev idx = 0 [ 49.969286] wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:287 for WDEV_TYPE:1 [ 49.969286] LinkToOmacIdx = 0, LinkToWdevType = 1 [ 49.982266] TRTableInsertMcastEntry:band0 group_idx[0]=0 [ 49.988077] wifi_sys_linkup:wdev(type=0,func_idx=1,wdev_idx=0),BssIndex(0) [ 49.995165] hw_ctrl_flow_v2_link_up: wdev_idx=0 [ 49.999870] (bssUpdateChannel), ucPrimCh=1, ucCentChSeg0=3, ucCentChSeg1=0, BW=1, ucHetbRU26Disable=0, ucHetbAllDisable=1 [ 50.010858] bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 [ 50.026865] UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 (ra0) [ 50.033123] Band0 BcnInitedRnd = 60 [ 50.036777] MtCmdTxPowerSKUCtrl: tx_pwr_sku_en: 1, BandIdx: 0 [ 50.042626] MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 [ 50.048802] MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 0, BandIdx: 0 [ 50.063878] set muru_update_he_cfg()!!!! [ 50.067867] PrintSrCmd: [ 50.067867] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 50.067867] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 50.082002] PrintSrCmd: [ 50.082002] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 50.082002] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 50.096061] PrintSrCmd: [ 50.096061] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 50.096061] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 50.110153] PrintSrCmd: [ 50.110153] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 0, u1Status = 0 [ 50.110153] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 50.124425] apidx 0 for WscUUIDInit [ 50.128021] Generate UUID for apidx(0) [ 50.132038] WDS_Init():wds_num[0]=0, count=0, MAX_WDS_ENTRY=16, if_idx=0, flg_wds_init=0 [ 50.140613] Total allocated 0 WDS(es) for band0! [doSystem] iwpriv ra0 set TxPower=100 [ 50.157480] Set_TxPower_Proc: BandIdx = 0 [ 50.168308] [ 50.168308] Set_Led_Proc ==> arg = 00-00-01-00-02-00-00-02 [ 50.175389] [ 50.175389] Set_Led_Proc [ 50.179380] 00 [ 50.181031] 00 [ 50.182681] 01 [ 50.184361] 00 [ 50.186034] 02 [ 50.187693] 00 [ 50.189351] 00 [ 50.191018] 02 gen ralink iNIC config warning: 50[ 50.238879] rai0: ===> mbss_virtual_if_open !!!! Miss some [ 50.243706] RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT configuration, p[ 50.251754] RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP [ 50.259787] wifi_sys_open(), wdev idx = 6 _ifconfig: name[ 50.265106] ucAction = 0, ucBandIdx = 0, ucSmthIntlBypass = 0 =rai0 flags=1243[ 50.272038] ucAction = 0, ucBandIdx = 1, ucSmthIntlBypass = 0 IFUP addr= netm[ 50.279268] BuildChannelList() BandIdx = 1, PhyMode = 177, ChListNum = 16: ask= [ 50.287572] DfsBuildChannelList(): Done [ 50.291759] phy_oper_init(): operate TxStream = 2, RxStream = 2 [ 50.297736] [RadarStateCheck] RD_NORMAL_MODE [ 50.303282] phy_freq_adjust : no prim_ch value for adjust! [ 50.309029] Caller: wlan_operate_init+0x104/0x118 [ 50.313763] [ 50.313763] phy_mode=177, ch=0, wdev_type=1 [ 50.319463] ht_cap: ht_cap->HtCapInfo, [ 50.323351] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 50.331064] ht_cap: ht_cap->HtCapParm, [ 50.335229] mdpu_density=5, ampdu_factor=3 [ 50.339609] hw_ctrl_flow_v2_open: wdev_idx=6 [ 50.344113] AP inf up for ra_6(func_idx) OmacIdx=0 [ 50.349728] AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn [ 50.355217] ApAutoChannelAtBootUp-----------------> [ 50.360124] ApAutoChannelAtBootUp: AutoChannelBootup[1] = 1 [ 50.366027] MtCmdSetMacTxRx:(ret = 0) [ 50.370122] MtCmdSetMacTxRx:(ret = 0) [ 50.373942] [AutoChSelBuildChannelListFor5G] ChListNum5G = 16 [ 50.379921] UpdateBeaconHandler, wdev(6) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x1b8/0x464)!! [ 50.389976] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 50.397600] MtCmdChannelSwitch: ctrl_chl=36, ctrl_ch2=0, cent_ch=36 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 50.417668] MtCmdSetTxRxPath: ctrl_chl=36, ctrl_ch2=0, cent_ch=36, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 50.634660] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 50.642236] MtCmdChannelSwitch: ctrl_chl=40, ctrl_ch2=0, cent_ch=40 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 50.662395] MtCmdSetTxRxPath: ctrl_chl=40, ctrl_ch2=0, cent_ch=40, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 50.884686] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 50.892277] MtCmdChannelSwitch: ctrl_chl=44, ctrl_ch2=0, cent_ch=44 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 50.912395] MtCmdSetTxRxPath: ctrl_chl=44, ctrl_ch2=0, cent_ch=44, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 50.944970] UpdateBeaconHandler, wdev(6) bss not ready (state:0, caller:APUpdateOperationMode+0x190/0x2a0)!! [ 51.134661] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 51.142253] MtCmdChannelSwitch: ctrl_chl=48, ctrl_ch2=0, cent_ch=48 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 51.162364] MtCmdSetTxRxPath: ctrl_chl=48, ctrl_ch2=0, cent_ch=48, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 51.384662] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 51.392254] MtCmdChannelSwitch: ctrl_chl=52, ctrl_ch2=0, cent_ch=52 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 51.410226] MtCmdSetTxRxPath: ctrl_chl=52, ctrl_ch2=0, cent_ch=52, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 51.624633] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 51.632225] MtCmdChannelSwitch: ctrl_chl=56, ctrl_ch2=0, cent_ch=56 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 51.650195] MtCmdSetTxRxPath: ctrl_chl=56, ctrl_ch2=0, cent_ch=56, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 51.864657] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 51.872249] MtCmdChannelSwitch: ctrl_chl=60, ctrl_ch2=0, cent_ch=60 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 51.890286] MtCmdSetTxRxPath: ctrl_chl=60, ctrl_ch2=0, cent_ch=60, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 52.104644] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 52.112220] MtCmdChannelSwitch: ctrl_chl=64, ctrl_ch2=0, cent_ch=64 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 52.130211] MtCmdSetTxRxPath: ctrl_chl=64, ctrl_ch2=0, cent_ch=64, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 52.344648] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 52.352224] MtCmdChannelSwitch: ctrl_chl=100, ctrl_ch2=0, cent_ch=100 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 52.370390] MtCmdSetTxRxPath: ctrl_chl=100, ctrl_ch2=0, cent_ch=100, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 52.584635] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 52.592211] MtCmdChannelSwitch: ctrl_chl=104, ctrl_ch2=0, cent_ch=104 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 52.610358] MtCmdSetTxRxPath: ctrl_chl=104, ctrl_ch2=0, cent_ch=104, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 52.824689] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 52.832265] MtCmdChannelSwitch: ctrl_chl=108, ctrl_ch2=0, cent_ch=108 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 52.850459] MtCmdSetTxRxPath: ctrl_chl=108, ctrl_ch2=0, cent_ch=108, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 53.064624] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 53.072200] MtCmdChannelSwitch: ctrl_chl=112, ctrl_ch2=0, cent_ch=112 DBDCIdx=1, ChBand=1, BW=0, TXStream=2, RXStream=2, scan(1) [ 53.091308] MtCmdSetTxRxPath: ctrl_chl=112, ctrl_ch2=0, cent_ch=112, RxPath=3, BandIdx=1, ChBand=1, BW=0,TXStream=2, RXStream=3, scan(1) [ 53.304582] UpdateBeaconHandler, wdev(6) bss not ready (state:0, caller:MTAPAutoSelectChannel+0x3b4/0x464)!! [ 53.314422] ==================================================================== [ 53.321783] Channel 36 : Busy Time = 41, Skip Channel = FALSE, BwCap = TRUE [ 53.329302] Channel 40 : Busy Time = 2163, Skip Channel = FALSE, BwCap = TRUE [ 53.336858] Channel 44 : Busy Time = 836, Skip Channel = FALSE, BwCap = TRUE [ 53.344369] Channel 48 : Busy Time = 707, Skip Channel = FALSE, BwCap = TRUE [ 53.351769] Channel 52 : Busy Time = 3257, Skip Channel = FALSE, BwCap = TRUE [ 53.359454] Channel 56 : Busy Time = 1388, Skip Channel = FALSE, BwCap = TRUE [ 53.366954] Channel 60 : Busy Time = 550, Skip Channel = FALSE, BwCap = TRUE [ 53.374391] Channel 64 : Busy Time = 736, Skip Channel = FALSE, BwCap = TRUE [ 53.381763] Channel 100 : Busy Time = 121, Skip Channel = FALSE, BwCap = TRUE [ 53.389189] Channel 104 : Busy Time = 18, Skip Channel = FALSE, BwCap = TRUE [ 53.396660] Channel 108 : Busy Time = 230, Skip Channel = FALSE, BwCap = TRUE [ 53.404069] Channel 112 : Busy Time = 1529, Skip Channel = FALSE, BwCap = TRUE [ 53.411538] ==================================================================== [ 53.419396] Rule 3 Channel Busy time value : Select Primary Channel 104 [ 53.426323] Rule 3 Channel Busy time value : Min Channel Busy = 1529 [ 53.432675] Rule 3 Channel Busy time value : BW = 80 [ 53.437721] [SelectClearChannelBusyTime] - band1 END [ 53.442802] ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 104, IsAband = 1 [ 53.451668] [RadarStateCheck] RD_SILENCE_MODE [ 53.457955] [DfsCacNormalStart][RDM] CAC 65 seconds start . Disable MAC TX [ 53.465033] [DfsSwitchCheck]: DFS ByPass TX calibration. [ 53.470976] mt7915_apply_dpd_flatness_data: eeprom 0x62 bit 0 is 0, do runtime cal [ 53.478640] MtCmdChannelSwitch: ctrl_chl=104, ctrl_ch2=0, cent_ch=106 DBDCIdx=1, ChBand=1, BW=2, TXStream=2, RXStream=2, scan(0) [ 53.496713] MtCmdSetTxRxPath: ctrl_chl=104, ctrl_ch2=0, cent_ch=106, RxPath=3, BandIdx=1, ChBand=1, BW=2,TXStream=2, RXStream=3, scan(0) [ 53.509300] DfsBuildChannelList(): Done [ 53.513144] zero_wait_dfs_switch_ch(): outband ch 0, ch_stat 0 [ 53.519016] ApAutoChannelAtBootUp<----------------- [ 53.524074] ===> APStartUpForMbss(caller:ap_inf_open+0x178/0x1d4), mbss_idx:6, CfgMode:177 [ 53.532510] [PMF]APPMFInit:: apidx=6, MFPC=0, MFPR=0, SHA256=0 [ 53.538724] Caller: SetCommonHT+0x100/0x170 [ 53.542910] [ 53.542910] phy_mode=177, ch=104, wdev_type=1 [ 53.548782] ht_cap: ht_cap->HtCapInfo, [ 53.552723] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 53.560788] ht_cap: ht_cap->HtCapParm, [ 53.564704] mdpu_density=5, ampdu_factor=3 [ 53.568795] Enable 20/40 BSSCoex Channel Scan(BssCoex=1) [ 53.574170] ap_link_up(caller:APStartUpForMbss+0x440/0x6c8), wdev(6) [ 53.580659] wifi_sys_linkup, wdev idx = 6 [ 53.585347] wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:286 for WDEV_TYPE:1 [ 53.585347] LinkToOmacIdx = 0, LinkToWdevType = 1 [ 53.598360] TRTableInsertMcastEntry:band1 group_idx[6]=6 [ 53.603733] wifi_sys_linkup:wdev(type=6,func_idx=1,wdev_idx=6),BssIndex(1) [ 53.610804] hw_ctrl_flow_v2_link_up: wdev_idx=6 [ 53.615733] (bssUpdateChannel), ucPrimCh=104, ucCentChSeg0=106, ucCentChSeg1=0, BW=2, ucHetbRU26Disable=0, ucHetbAllDisable=1 [ 53.627200] bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 [ 53.643668] UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 (ra0) [ 53.649982] Band1 BcnInitedRnd = 96 [ 53.654295] MtCmdTxPowerSKUCtrl: tx_pwr_sku_en: 1, BandIdx: 1 [ 53.660133] MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 1 [ 53.666221] MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 0, BandIdx: 1 [ 53.680925] set muru_update_he_cfg()!!!! [ 53.684892] PrintSrCmd: [ 53.684892] u1CmdSubId = 1, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 53.684892] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 53.698876] PrintSrCmd: [ 53.698876] u1CmdSubId = 5, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 53.698876] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 53.713295] PrintSrCmd: [ 53.713295] u1CmdSubId = 3, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 53.713295] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 53.727365] PrintSrCmd: [ 53.727365] u1CmdSubId = 23, u1ArgNum = 0, u1DbdcIdx = 1, u1Status = 0 [ 53.727365] u1DropTaIdx = 0, u1StaIdx = 0, u4Value = 0 [ 53.742038] apidx 6 for WscUUIDInit [ 53.745630] Generate UUID for apidx(6) [ 53.749546] WDS_Init():wds_num[1]=0, count=0, MAX_WDS_ENTRY=16, if_idx=0, flg_wds_init=0 [ 53.757666] Total allocated 0 WDS(es) for band1! [doSystem] iwpriv rai0 set TxPower=100 [ 53.770032] Set_TxPower_Proc: BandIdx = 1 [ 53.780421] [ 53.780421] Set_Led_Proc ==> arg = 01-00-01-01-02-00-00-02 [ 53.787547] [ 53.787547] Set_Led_Proc [ 53.791545] 01 [ 53.793196] 00 [ 53.794912] 01 [ 53.796598] 01 [ 53.798268] 02 [ 53.799933] 00 [ 53.801599] 00 [ 53.803258] 02 start_lan: setting MAC address of bridge br0 as 1F:F7:52:5E:B2:83 _ifconfig: name=br0 flags=1243 IFUP addr=192.168.50.1 netmask=255.255.255.0 _ifconfig: name=lo flags=1043 IFUP addr=127.0.0.1 netmask=255.0.0.0 route_manip: cmd=ADD name=lo addr=127.0.0.0 netmask=255.0.0.0 gateway=0.0.0.0 metric=0 update_lan_state(lan_, 2, 0) nat_rule: stop_nat_rules 1. stop_nat_rules: apply the redirect_rules state 0 ret 0 start_lan 2386 # wanduck: Got LAN(-1) information: wanduck: delay 1 seconds before the first detect... wanduck: delay 2 seconds before the first detect... start_wsc_pin_enrollee: start wsc (0) [doSystem] iwpriv ra0 set WscConfMode=7 WPS: PIN [doSystem] iwpriv ra0 set WscMode=1 [1 init:start_dnsmasq +56] begin [1 init:stop_dnsmasq +56] begin [1 init:stop_dnsmasq +56] end wanduck: delay 3 seconds before the first detect... [1 init:start_dnsmasq +57] end start_lan_port(0) 1 rtkswitch!!!=14 stop_amas_lanctrl start_amas_lanctrl 17046 decomp: fname=/var/lib/misc/rstats-speed.gz decomp: gzip -dc /var/lib/misc/rstats-speed.gz > /var/tmp/rstats-uncomp != 0 load: speed_count = 0 load: read source= save_path= load_history: fname=/var/lib/misc/rstats-history.gz decomp: fname=/var/lib/misc/rstats-history.gz ### onboarding model=RT-AX53U, reboot_time=180, connection_timeout=120, traffic_timeout=60 [doSystem] iwpriv ra[ 57.386456] set watchdog pid as: 1042 0 set WatchdogPid=1042 decomp: gzip -dc /var/lib/misc/rstats-history.gz > /var/tmp/rstats-uncomp != 0 [doSystem] iwpriv rai0 set WatchdogPid=1042 decomp: fname=/var/lib/misc[ 57.405070] set watchdog pid as: 1042 /rstats-history.gz decomp: gzip -dc /var/lib/misc/rstats-history.gz > /var/tmp/rstats-uncomp != 0 load_history: load failed wanduck: delay 4 seconds before the first detect... wanduck: delay 5 seconds before the first detect... get_all_pc_list, enabled_str=, enabled=0. [bwdpi check] starting... rc: ==> binding interface(eth1) for lldpd wanduck(0): NC send SYS_WAN_CABLE_UNPLUGGED_EVENT. # Enable direct rule reinit_hwnat:DUALWAN: unit -1,0 type 0 iptv [none] nat_x -1 qos 0 wans_mode fo link 1,1: action 1. sh: wl: not found [Mastiff]init start_wan: start_wan_if(0)! [1 init:start_wan_if +65] unit=0. update_wan_state(wan0_, 0, 0) convert_wan_nvram(wan0_) _ifconfig: name=eth1 flags=1043 IFUP addr= netmask= update_wan_state(wan0_, 1, 0) start_wan_if(0x0752): ifup:eth1 _ifconfig: name=eth1 flags=1043 IFUP addr= netmask= start_wan_if(0x0756): start auth:0 start_auth:: done start_wan_if(0x075a): start udhcpc:eth1, 0 start_wan_if(): End. Enable USB power. Start USB with the original procedure. start_usb udhcpc_wan:: deconfig _ifconfig: name=eth1 flags=1043 IFUP addr=0.0.0.0 netmask= wan_down(eth1) wan_down(eth1): . stop_auth:: done route_manip: cmd=DEL name=eth1 addr=0.0.0.0 netmask=0.0.0.0 gateway=(null) metric=0 update_wan_state(wan0_, 3, 0) update_wan_state(wan0_, 4, 3) udhcpc:: deconfig done clean_mode(1) clean_time(2) threshold(0) free_caches: Start syncing... free_caches: Start cleaning... free_caches: waiting 2 second... amas_lanctrl_main(0x0345): This is ASUS router free_caches: Finish. RAST 70: ROAMAST Start... RAST 70: ROAMING Start... _ifconfig: name=[ 69.200019] apcli0: ===> msta_virtual_if_open apcli0 flags=104[ 69.205619] RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_INIT 3 IFUP addr= net[ 69.205637] RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP mask= [ 69.205675] wifi_sys_open(), wdev idx = 12 [ 69.205812] ucAction = 0, ucBandIdx = 0, ucSmthIntlBypass = 0 [ 69.205816] ucAction = 0, ucBandIdx = 1, ucSmthIntlBypass = 0 [ 69.205837] phy_oper_init(): operate TxStream = 2, RxStream = 2 [ 69.206018] Caller: wlan_operate_init+0x104/0x118 [ 69.206023] [ 69.206023] phy_mode=78, ch=1, wdev_type=2 [ 69.206025] ht_cap: ht_cap->HtCapInfo, [ 69.206032] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 69.206034] ht_cap: ht_cap->HtCapParm, [ 69.206037] mdpu_density=0, ampdu_factor=3 [ 69.207811] hw_ctrl_flow_v2_open: wdev_idx=12 [ 69.208117] Caller: SetCommonHT+0x100/0x170 [ 69.208121] [ 69.208121] phy_mode=78, ch=1, wdev_type=2 [ 69.208123] ht_cap: ht_cap->HtCapInfo, [ 69.208130] ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 [ 69.208131] ht_cap: ht_cap->HtCapParm, [ 69.208134] mdpu_density=0, ampdu_factor=3 [ 69.208177] MSTA interface up for apcli0 func_idx=0 OmacIdx=1 obdeth_main(0x0350): model=RT-AX53U, reboot_time=180, connection_timeout=120, traffic_timeout=60 [rast_init_bssinfo]: WI[ra0], id[ 70.106024] ##### drivers/net/wireless/mediatek/mt_wifi_7915_v7400/mt_wifi_ap/../mt_wifi/embedded/ap/ap_cfg.c: RTMPIoctlGetMacMode:12622 MacMode = 0 x[0] [rast_ini[ 70.120947] ##### drivers/net/wireless/mediatek/mt_wifi_7915_v7400/mt_wifi_ap/../mt_wifi/embedded/ap/ap_cfg.c: RTMPIoctlGetMacMode:12622 MacMode = 0 t_bssinfo]: WIF[ra0], idx[0] rssi threshold: [-70] rssi hit count: [2] idle period: [10] idle rate: [100] [rast_init_bssinfo]: WI[rai0], idx[1] [rast_init_bssinfo]: WIF[rai0], idx[1] rssi threshold: [-70] rssi hit count: [2] idle period: [10] idle rate: [100] [rast_init_bssinfo]: TotalWI[2]


Reading from 0x1e0000, size 0x100000 Succeeded RT-AX53U bootloader version: 1.0.0.0 Reading from 0x1e0000, size 0x100000 Succeeded MAC Address: 1F:F7:52:5E:B2:83 Reading from 0x1e0000, size 0x40000 Succeeded Check Factory's EEPROM successfully! (r = 18) Reading from 0x2e0000, size 0x40000 Succeeded Check Factory2's EEPROM successfully! (r = 18) Reading from 0x3e0000, size 0x2000 Succeeded Reading from 0x3e0000, size 0x2bea67 Succeeded Image Name: MIPS OpenWrt Linux-5.10.135 Image Type: MIPS Linux Kernel Image (lzma compressed) Data Size: 2877991 Bytes = 2.7 MiB Load Address: 80001000 Entry Point: 80001000 Verifying Checksum ... OK ## Booting kernel from Legacy Image at 83000000 ... Image Name: MIPS OpenWrt Linux-5.10.135 Image Type: MIPS Linux Kernel Image (lzma compressed) Data Size: 2877991 Bytes = 2.7 MiB Load Address: 80001000 Entry Point: 80001000 Verifying Checksum ... OK Uncompressing Kernel Image ... OK [ 0.000000] Linux version 5.10.135 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.3.0 r20256-23c77384f3) 11.3.0, GNU ld (GNU Binutils) 2.37) #0 SMP Sun Aug 7 14:17:40 2022 [ 0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 [ 0.000000] printk: bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) [ 0.000000] MIPS: machine is ASUS RT-AX53U [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] VPE topology {2,2} total 4 [ 0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000000000-0x000000000fffffff] [ 0.000000] HighMem empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000000000-0x000000000fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff] [ 0.000000] percpu: Embedded 15 pages/cpu s30448 r8192 d22800 u61440 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64960 [ 0.000000] Kernel command line: console=ttyS0,115200 [ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes, linear) [ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Writing ErrCtl register=00064180 [ 0.000000] Readback ErrCtl register=00064180 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 248724K/262144K available (7041K kernel code, 628K rwdata, 1416K rodata, 1268K init, 243K bss, 13420K reserved, 0K cma-reserved, 0K highmem) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 256 [ 0.000000] CPU Clock: 880MHz [ 0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns [ 0.000012] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns [ 0.007942] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns [ 0.017000] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) [ 0.083166] pid_max: default: 32768 minimum: 301 [ 0.087930] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.095134] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.105777] rcu: Hierarchical SRCU implementation. [ 0.110823] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build [ 0.118935] smp: Bringing up secondary CPUs ... [ 0.124222] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.124232] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.124245] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 0.124322] CPU1 revision is: 0001992f (MIPS 1004Kc) [ 0.178735] Synchronize counters for CPU 1: done. [ 0.211235] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.211245] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.211254] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 0.211301] CPU2 revision is: 0001992f (MIPS 1004Kc) [ 0.270180] Synchronize counters for CPU 2: done. [ 0.300780] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. [ 0.300789] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes [ 0.300798] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. [ 0.300847] CPU3 revision is: 0001992f (MIPS 1004Kc) [ 0.355373] Synchronize counters for CPU 3: done. [ 0.385245] smp: Brought up 1 node, 4 CPUs [ 0.393403] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.403228] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.410250] pinctrl core: initialized pinctrl subsystem [ 0.417927] NET: Registered protocol family 16 [ 0.423632] thermal_sys: Registered thermal governor 'step_wise' [ 0.424402] cpuidle: using governor teo [ 0.477190] clocksource: Switched to clocksource GIC [ 0.483957] NET: Registered protocol family 2 [ 0.488657] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.497021] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) [ 0.505461] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear) [ 0.513107] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.520193] TCP: Hash tables configured (established 2048 bind 2048) [ 0.526609] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.533101] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.540296] NET: Registered protocol family 1 [ 0.544588] PCI: CLS 0 bytes, default 32 [ 0.551457] workingset: timestamp_bits=14 max_order=16 bucket_order=2 [ 0.562031] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.567833] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.578469] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) [ 0.587654] mt7621_gpio 1e000600.gpio: registering 32 gpios [ 0.593545] mt7621_gpio 1e000600.gpio: registering 32 gpios [ 0.599428] mt7621_gpio 1e000600.gpio: registering 32 gpios [ 0.605861] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled [ 0.616125] printk: console [ttyS0] disabled [ 0.620472] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A [ 0.629488] printk: console [ttyS0] enabled [ 0.629488] printk: console [ttyS0] enabled [ 0.637766] printk: bootconsole [early0] disabled [ 0.637766] printk: bootconsole [early0] disabled [ 0.650350] nand: device found, Manufacturer ID: 0x01, Chip ID: 0xf1 [ 0.656700] nand: AMD/Spansion S34ML01G2 [ 0.660653] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 0.668247] mt7621-nand 1e003000.nand: ECC strength adjusted to 4 bits [ 0.674857] 7 fixed-partitions partitions found on MTD device mt7621-nand [ 0.682455] Creating 7 MTD partitions on "mt7621-nand": [ 0.687714] 0x000000000000-0x0000000e0000 : "u-boot" [ 0.707104] 0x0000000e0000-0x0000001e0000 : "u-boot-env" [ 0.728760] 0x0000001e0000-0x0000002e0000 : "factory" [ 0.750311] 0x0000002e0000-0x0000003e0000 : "factory2" [ 0.771859] 0x0000003e0000-0x0000007e0000 : "kernel" [ 0.839209] 0x0000007e0000-0x0000035e0000 : "ubi" [ 1.550630] 0x0000035e0000-0x0000067e0000 : "firmware2" [ 2.368383] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module [ 2.378553] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 [ 2.388512] i2c /dev entries driver [ 2.394573] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: [ 2.401333] mt7621-pci 1e140000.pcie: No bus range found for /pcie@1e140000, using [bus 00-ff] [ 2.410136] mt7621-pci 1e140000.pcie: MEM 0x0060000000..0x006fffffff -> 0x0000000000 [ 2.418323] mt7621-pci 1e140000.pcie: IO 0x001e160000..0x001e16ffff -> 0x0000000000 [ 2.426561] mt7621-pci 1e140000.pcie: Parsing DT failed [ 2.434281] NET: Registered protocol family 10 [ 2.440461] Segment Routing with IPv6 [ 2.444226] NET: Registered protocol family 17 [ 2.448833] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. [ 2.462127] 8021q: 802.1Q VLAN Support v1.8 [ 2.469970] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module [ 2.500465] mt7530 mdio-bus:1f wan (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7530 PHY] (irq=26) [ 2.512762] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7530 PHY] (irq=27) [ 2.525032] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=28) [ 2.537399] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=29) [ 2.549690] mt7530 mdio-bus:1f lan4 (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7530 PHY] (irq=30) [ 2.562321] mt7530 mdio-bus:1f: configuring for fixed/rgmii link mode [ 2.572754] DSA: tree 0 setup [ 2.576027] rt2880-pinmux pinctrl: pcie is already enabled [ 2.581608] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: [ 2.588317] mt7621-pci 1e140000.pcie: No bus range found for /pcie@1e140000, using [bus 00-ff] [ 2.597093] mt7621-pci 1e140000.pcie: MEM 0x0060000000..0x006fffffff -> 0x0000000000 [ 2.605269] mt7621-pci 1e140000.pcie: IO 0x001e160000..0x001e16ffff -> 0x0000000000 [ 2.613542] mt7621-pci-phy 1e149000.pcie-phy: PHY for 0xbe149000 (dual port = 1) [ 2.621267] mt7621-pci-phy 1e14a000.pcie-phy: PHY for 0xbe14a000 (dual port = 0) [ 2.628933] mt7621-pci 1e140000.pcie: failed to parse bus ranges property: -22 [ 2.736325] mt7621-pci-phy 1e149000.pcie-phy: Xtal is 40MHz [ 2.741912] mt7621-pci-phy 1e14a000.pcie-phy: Xtal is 40MHz [ 2.847626] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK) [ 2.854564] mt7621-pci 1e140000.pcie: PCIE0 enabled [ 2.859431] mt7621-pci 1e140000.pcie: PCIE1 enabled [ 2.864293] mt7621-pci 1e140000.pcie: PCI coherence region base: 0x60000000, mask/settings: 0xf0000002 [ 2.873749] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00 [ 2.880116] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff] [ 2.886966] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] [ 2.893829] pci_bus 0000:00: root bus resource [bus 00-ff] [ 2.899332] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff]) [ 2.909531] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400 [ 2.915529] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff] [ 2.921786] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid [ 2.928825] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000] [ 2.934616] pci 0000:00:00.0: supports D1 [ 2.938622] pci 0000:00:00.0: PME# supported from D0 D1 D3hot [ 2.944759] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400 [ 2.950808] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff] [ 2.957055] pci 0000:00:01.0: reg 0x14: initial BAR value 0x00000000 invalid [ 2.964096] pci 0000:00:01.0: reg 0x14: [mem size 0x00010000] [ 2.969898] pci 0000:00:01.0: supports D1 [ 2.973891] pci 0000:00:01.0: PME# supported from D0 D1 D3hot [ 2.980889] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.988903] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring [ 2.997114] pci 0000:01:00.0: [14c3:7916] type 00 class 0x000280 [ 3.003188] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid [ 3.010235] pci 0000:01:00.0: reg 0x10: [mem size 0x00100000 64bit pref] [ 3.016921] pci 0000:01:00.0: reg 0x18: initial BAR value 0x00000000 invalid [ 3.023967] pci 0000:01:00.0: reg 0x18: [mem size 0x00004000 64bit pref] [ 3.030678] pci 0000:01:00.0: reg 0x20: initial BAR value 0x00000000 invalid [ 3.037713] pci 0000:01:00.0: reg 0x20: [mem size 0x00001000 64bit pref] [ 3.044511] pci 0000:01:00.0: supports D1 D2 [ 3.048777] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 3.055404] pci 0000:01:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:00.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link) [ 3.071426] pci 0000:00:00.0: PCI bridge to [bus 01-ff] [ 3.076648] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff] [ 3.082754] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff] [ 3.089534] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff pref] [ 3.096731] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 [ 3.103607] pci 0000:02:00.0: [14c3:7915] type 00 class 0x000280 [ 3.109666] pci 0000:02:00.0: reg 0x10: initial BAR value 0x00000000 invalid [ 3.116693] pci 0000:02:00.0: reg 0x10: [mem size 0x00100000 64bit pref] [ 3.123393] pci 0000:02:00.0: reg 0x18: initial BAR value 0x00000000 invalid [ 3.130427] pci 0000:02:00.0: reg 0x18: [mem size 0x00004000 64bit pref] [ 3.137111] pci 0000:02:00.0: reg 0x20: initial BAR value 0x00000000 invalid [ 3.144159] pci 0000:02:00.0: reg 0x20: [mem size 0x00001000 64bit pref] [ 3.150971] pci 0000:02:00.0: supports D1 D2 [ 3.155223] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold [ 3.161863] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:01.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link) [ 3.177979] pci 0000:00:01.0: PCI bridge to [bus 02-ff] [ 3.183205] pci 0000:00:01.0: bridge window [io 0x0000-0x0fff] [ 3.189297] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff] [ 3.196059] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff pref] [ 3.203279] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02 [ 3.209934] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000] [ 3.216520] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000] [ 3.223474] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000] [ 3.230076] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000] [ 3.237010] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff] [ 3.243786] pci 0000:00:00.0: BAR 9: assigned [mem 0x60100000-0x602fffff pref] [ 3.251001] pci 0000:00:01.0: BAR 8: assigned [mem 0x60300000-0x603fffff] [ 3.257786] pci 0000:00:01.0: BAR 9: assigned [mem 0x60400000-0x605fffff pref] [ 3.264977] pci 0000:00:00.0: BAR 1: assigned [mem 0x60600000-0x6060ffff] [ 3.271758] pci 0000:00:01.0: BAR 1: assigned [mem 0x60610000-0x6061ffff] [ 3.278544] pci 0000:00:00.0: BAR 7: assigned [io 0x1e160000-0x1e160fff] [ 3.285303] pci 0000:00:01.0: BAR 7: assigned [io 0x1e161000-0x1e161fff] [ 3.292089] pci 0000:01:00.0: BAR 0: assigned [mem 0x60100000-0x601fffff 64bit pref] [ 3.299830] pci 0000:01:00.0: BAR 2: assigned [mem 0x60200000-0x60203fff 64bit pref] [ 3.307577] pci 0000:01:00.0: BAR 4: assigned [mem 0x60204000-0x60204fff 64bit pref] [ 3.315298] pci 0000:00:00.0: PCI bridge to [bus 01] [ 3.320262] pci 0000:00:00.0: bridge window [io 0x1e160000-0x1e160fff] [ 3.327022] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff] [ 3.333796] pci 0000:00:00.0: bridge window [mem 0x60100000-0x602fffff pref] [ 3.341018] pci 0000:02:00.0: BAR 0: assigned [mem 0x60400000-0x604fffff 64bit pref] [ 3.348760] pci 0000:02:00.0: BAR 2: assigned [mem 0x60500000-0x60503fff 64bit pref] [ 3.356481] pci 0000:02:00.0: BAR 4: assigned [mem 0x60504000-0x60504fff 64bit pref] [ 3.364214] pci 0000:00:01.0: PCI bridge to [bus 02] [ 3.369180] pci 0000:00:01.0: bridge window [io 0x1e161000-0x1e161fff] [ 3.375940] pci 0000:00:01.0: bridge window [mem 0x60300000-0x603fffff] [ 3.382720] pci 0000:00:01.0: bridge window [mem 0x60400000-0x605fffff pref] [ 3.394177] UBI: auto-attach mtd5 [ 3.397581] ubi0: attaching mtd5 [ 3.401147] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx [ 3.515979] UBI: EOF marker found, PEBs from 33 will be erased [ 4.162049] ubi0: scanning is finished [ 4.210232] ubi0: volume 1 ("rootfs_data") re-sized from 9 to 313 LEBs [ 4.217884] ubi0: attached mtd5 (name "ubi", size 46 MiB) [ 4.223286] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 4.230153] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 4.236909] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 4.243856] ubi0: good PEBs: 368, bad PEBs: 0, corrupted PEBs: 0 [ 4.249856] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 [ 4.257047] ubi0: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1659881860 [ 4.266149] ubi0: available PEBs: 0, total reserved PEBs: 368, PEBs reserved for bad PEB handling: 20 [ 4.275368] ubi0: background thread "ubi_bgt0d" started, PID 447 [ 4.277898] block ubiblock0_0: created from ubi0:0(rootfs) [ 4.286853] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem [ 4.347350] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 4.360073] Freeing unused kernel memory: 1268K [ 4.364640] This architecture does not have kernel memory protection. [ 4.371120] Run /sbin/init as init process [ 5.155104] init: Console is alive [ 5.159060] init: - watchdog - [ 6.503290] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 6.599632] usbcore: registered new interface driver usbfs [ 6.605269] usbcore: registered new interface driver hub [ 6.610759] usbcore: registered new device driver usb [ 6.626600] xhci-mtk 1e1c0000.xhci: supply vbus not found, using dummy regulator [ 6.634321] xhci-mtk 1e1c0000.xhci: supply vusb33 not found, using dummy regulator [ 6.642182] xhci-mtk 1e1c0000.xhci: xHCI Host Controller [ 6.647556] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 1 [ 6.667414] xhci-mtk 1e1c0000.xhci: hcc params 0x01401198 hci version 0x96 quirks 0x0000000000290010 [ 6.676595] xhci-mtk 1e1c0000.xhci: irq 20, io mem 0x1e1c0000 [ 6.683666] hub 1-0:1.0: USB hub found [ 6.687623] hub 1-0:1.0: 2 ports detected [ 6.692281] xhci-mtk 1e1c0000.xhci: xHCI Host Controller [ 6.697673] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 2 [ 6.705148] xhci-mtk 1e1c0000.xhci: Host supports USB 3.0 SuperSpeed [ 6.711738] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 6.720839] hub 2-0:1.0: USB hub found [ 6.724727] hub 2-0:1.0: 1 port detected [ 6.735614] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 6.757619] init: - preinit - [ 7.662497] random: jshn: uninitialized urandom read (4 bytes read) [ 7.739777] random: jshn: uninitialized urandom read (4 bytes read) [ 7.779862] random: jshn: uninitialized urandom read (4 bytes read) [ 8.036248] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode [ 8.044663] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 8.047781] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 8.060042] 8021q: adding VLAN 0 to HW filter on device lan1 [ 8.068330] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready 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 [ 10.284994] UBIFS (ubi0:1): default file-system created [ 10.294090] UBIFS (ubi0:1): Mounting in unauthenticated mode [ 10.300283] UBIFS (ubi0:1): background thread "ubifs_bgt0_1" started, PID 589 [ 10.344156] random: procd: uninitialized urandom read (4 bytes read) [ 10.429220] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name "rootfs_data" [ 10.437040] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 10.446982] UBIFS (ubi0:1): FS size: 38473728 bytes (36 MiB, 303 LEBs), journal size 1904640 bytes (1 MiB, 15 LEBs) [ 10.457408] UBIFS (ubi0:1): reserved for root: 1817208 bytes (1774 KiB) [ 10.463998] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID 04B018F7-8400-480F-A6A4-0644713E312C, small LPT model [ 10.478734] mount_root: overlay filesystem has not been fully initialized yet [ 10.486587] mount_root: switching to ubifs overlay [ 10.500222] urandom-seed: Seed file not found (/etc/urandom.seed) [ 10.702426] procd: - early - [ 10.705537] procd: - watchdog - [ 11.367389] procd: - watchdog - [ 11.371194] procd: - ubus - [ 11.524498] random: ubusd: uninitialized urandom read (4 bytes read) [ 11.532844] random: ubusd: uninitialized urandom read (4 bytes read) [ 11.539789] random: ubusd: uninitialized urandom read (4 bytes read) [ 11.552523] procd: - init - Please press Enter to activate this console. [ 12.316519] kmodloader: loading kernel modules from /etc/modules.d/* [ 12.458737] urngd: v1.0.2 started. [ 12.510926] Loading modules backported from Linux version v5.15.58-0-g7d8048d4e064 [ 12.518522] Backport generated by backports.git v5.15.58-1-0-g42a95ce7 [ 12.636873] random: crng init done [ 12.640347] random: 29 urandom warning(s) missed due to ratelimiting [ 12.683361] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=22 [ 12.688817] pci 0000:00:00.0: enabling device (0004 -> 0007) [ 12.694460] mt7915e_hif 0000:01:00.0: enabling device (0000 -> 0002) [ 12.701215] mt7621-pci 1e140000.pcie: bus=2 slot=1 irq=23 [ 12.706669] pci 0000:00:01.0: enabling device (0004 -> 0007) [ 12.712361] mt7915e 0000:02:00.0: enabling device (0000 -> 0002) [ 12.976570] mt7915e 0000:02:00.0: HW/SW Version: 0x8a108a10, Build Time: 20211222184017a [ 12.976570] [ 13.309235] mt7915e 0000:02:00.0: WM Firmware Version: ____000000, Build Time: 20211222184052 [ 13.346991] mt7915e 0000:02:00.0: WA Firmware Version: DEV_000000, Build Time: 20211222184111 [ 18.481347] PPP generic driver version 2.4.2 [ 18.487649] NET: Registered protocol family 24 [ 18.500804] kmodloader: done loading kernel modules from /etc/modules.d/* [ 40.236920] mtk_soc_eth 1e100000.ethernet eth0: Link is Down [ 40.252988] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode [ 40.261230] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx [ 40.264880] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode [ 40.276829] 8021q: adding VLAN 0 to HW filter on device lan1 [ 40.285240] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready [ 40.292828] br-lan: port 1(lan1) entered blocking state [ 40.298600] br-lan: port 1(lan1) entered disabled state [ 40.304959] device lan1 entered promiscuous mode [ 40.309938] device eth0 entered promiscuous mode [ 40.342661] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode [ 40.349862] 8021q: adding VLAN 0 to HW filter on device lan2 [ 40.359183] br-lan: port 2(lan2) entered blocking state [ 40.364439] br-lan: port 2(lan2) entered disabled state [ 40.371910] device lan2 entered promiscuous mode [ 40.390887] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode [ 40.398254] 8021q: adding VLAN 0 to HW filter on device lan3 [ 40.407909] br-lan: port 3(lan3) entered blocking state [ 40.413212] br-lan: port 3(lan3) entered disabled state [ 40.420624] device lan3 entered promiscuous mode [ 40.441180] mt7530 mdio-bus:1f lan4: configuring for phy/gmii link mode [ 40.448525] 8021q: adding VLAN 0 to HW filter on device lan4 [ 40.458601] br-lan: port 4(lan4) entered blocking state [ 40.463888] br-lan: port 4(lan4) entered disabled state [ 40.471339] device lan4 entered promiscuous mode [ 40.494125] mt7530 mdio-bus:1f wan: configuring for phy/gmii link mode [ 40.501243] 8021q: adding VLAN 0 to HW filter on device wan [ 43.637873] mt7530 mdio-bus:1f wan: Link is Up - 1Gbps/Full - flow control rx/tx [ 43.645296] IPv6: ADDRCONF(NETDEV_CHANGE): wan: link becomes ready


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

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: 2024/03/12 16:50
  • by humaita