Beeline Smartbox Flash

The Beeline Smartbox Flash is a wireless router based on the MT7621 platform with USB 3.0 port. While it can be acquired for relatively low cost compared to other units with similar specifications. Also known as Arcadyan WG443223.

Beeline Smartbox Flash

It's strongly recommended to make a backup before you start:

* Set up a tftp server (e.g. tftpd64 for windows)

* Connect to a router using Telnet and run the following commands:

cd /tmp
for i in 0 1 2 3 4 5 6 7 8 9 10 11 12; do nanddump -f mtd$i /dev/mtd$i; \
tftp -l mtd$i -p 192.168.1.2; md5sum mtd$i >> mtd.md5; rm mtd$i; done
tftp -l mtd.md5 -p 192.168.1.2

192.168.1.2 - IP of the tftp server

* Check backups in your tftp root folder.

Install OpenWrt (generic explanation)

CAUTION:
If you have any third-party firmware (e.g. Padavan, Keenetic, AsusWrt, non-official OpenWrt community builds (especially for Breed bootloader) etc.) installed on your device it's strongly recommended to restore original OEM firmware (including bootloader, EEPROM, partition map etc.) from your backup before you start the OpenWrt installation on your device.

1. Login via telnet on 192.168.1.1 (no password). Note: If telnet is unavailable then downgrade to OEM firmware v1.0.13 (it would be better to make it twice to have this version in both slots) and perform the Factory reset.

2. Check the bootpartition:

uboot_env --get --name bootpartition

If the result is 1 then go to the next step, otherwise (0) - change the boot partition and reboot:

uboot_env --set --name bootpartition --value 1
reboot

3. Install OpenWrt image:

Main

cd /tmp
wget https://downloads.openwrt.org/releases/22.03.0/targets/ramips/mt7621/openwrt-22.03.0-ramips-mt7621-beeline_smartbox-flash-squashfs-factory.trx
mtd_write erase /dev/mtd4
mtd_write write openwrt-22.03.0-ramips-mt7621-beeline_smartbox-flash-squashfs-factory.trx /dev/mtd4

Alternative

wget --no-check-certificate -P /tmp/ https://downloads.openwrt.org/releases/22.03.1/targets/ramips/mt7621/openwrt-22.03.1-ramips-mt7621-beeline_smartbox-flash-squashfs-factory.trx
mtd_write -e Kernel write /tmp/openwrt-22.03.1-ramips-mt7621-beeline_smartbox-flash-squashfs-factory.trx Kernel

4. Set 1st boot partition and reboot:

uboot_env --set --name bootpartition --value 0
reboot

Under development

generic.flashing.tftp

Not applicable

* Login as root via SSH on 192.168.1.1, then enter the following commands:

fw_setenv bootpartition 1
reboot

* Optional step. Upgrade the stock firmware with any version to overwrite the OpenWrt in Slot 1.

mtd partition start size
mtd0 u-boot 0x0 0x100000
mtd1 u-boot-env 0x100000 0x200000
mtd2 Factory 0x200000 0x100000
mtd3 firmware 0x300000 0x2000000
mtd4 kernel 0x300000 0x440000
mtd5 ubiconcat0 0x740000 0x1bc0000
mtd6 Firmware2 0x2300000 0x2000000
mtd7 glbcfg 0x4300000 0x200000
mtd8 board_data 0x4500000 0x100000
mtd9 glbcfg2 0x4600000 0x200000
mtd10 board_data2 0x4800000 0x100000
mtd11 ubiconcat1 0x4900000 0x3680000

* MAC addresses hasn't been found neither in factory nor in other places

* /tmp/etc/config/.glbcfg contains serial number, WiFi preshared keys etc.

* arccfg util unencrypts (cipher aes-128-cbc + some obfuscation) the configuration from mtd8(10) at every boot

~ # arccfg 
fgets partition name ok!the partition is [glbcfg] 
fgets the second partition name ok!the the second partition is [glbcfg2] 
The primary glbcfg is mtd8 
The second glbcfg is mtd10

* mtd9(11): board_data or board_data2 also contain MAC address (only *base* MAC). Other addresses should be calculated

* @abyrga & @r3d5ky from telegram group Beeline SmarBox Giga found a way how to decrypt a partition. Issue

$ dd status=none if=mtd9 bs=1 count=368 skip=256 | openssl aes-128-cbc -d -nopad \
-K 2A4B303D7644395C3B2B7053553C5200 -iv 00000000000000000000000000000000
mac=ec:6c:##:##:##:b8
sn=AG##########
ssid=Beeline_2G_######
psk=###########
ssid2=Beeline_5G_######
psk2=###########
guest_ssid=Beeline_2G_######-Guest
guest_psk=###########
guest_ssid2=Beeline_5G_######-Guest
guest_psk2=###########
group_ssid=BH-Beeline_2G_######
group_psk=###########
group_ssid2=BH-Beeline_5G_######
group_psk2=###########
hw=01
password=#####
+--------------+---------------+----------------------------------------+
| Offset       | 1.0.15        | Description                            |
+==============+===============+========================================+
| 0x0          | 5d 43 6f 74   | TRX magic "]Cot"                       |
+--------------+---------------+----------------------------------------+
| 0x4          | 00 70 ff 00   | Length (reverse)                       |
+--------------+---------------+----------------------------------------+
|              |               | htonl(~crc) from 0xc ("flag_version")  |
| 0x8          | 72 b3 93 16   | to "Length"                            |
+--------------+---------------+----------------------------------------+
| 0xc          | 00 00 01 00   | Flags                                  |
+--------------+---------------+----------------------------------------+
|              |               | Offset (reverse) of Kernel partition   |
| 0x10         | 1c 00 00 00   | from the start of the header           |
+--------------+---------------+----------------------------------------+
|              |               | Offset (reverse) of RootFS partition   |
| 0x14         | 00 00 42 00   | from the start of the header           |
+--------------+---------------+----------------------------------------+
| 0x18         | 00 00 00 00   | Zeroes                                 |
+--------------+---------------+----------------------------------------+
| 0x1c         | 27 05 19 56| Kernel data + zero padding             |
+--------------+---------------+----------------------------------------+
|              |               | RootFS data (starting with "hsqs") +   |
| 0x420000     | 68 73 71 73| zero padding to "Length"               |
+--------------+---------------+----------------------------------------+
|              |               | Some signature data (format is         |
|              |               | unknown). Necessary for the fw         |
| "Lenght"     | 00 00 00 00 … | update via oem fw web interface.       |
+--------------+---------------+----------------------------------------+
| "Lenght" +   |               | TRX magic "HDR0". U-Boot is            |
| 0x10c        | 48 44 52 30   | checking it at every boot.             |
+--------------+---------------+----------------------------------------+
|              |               | 1.00:                                  |
|              |               |   Zero padding to ("Lenght" + 0x23000) |
|              |               | 1.0.12:                                |
|              |               |   Zero padding to ("Lenght" + 0x2a000) |
| "Lenght" +   |               | 1.0.13, 1.0.15, 1.0.16:                |
| 0x110        | 00 00 00 00   |   Zero padding to ("Lenght" + 0x10000) |
+--------------+---------------+----------------------------------------+

bootloader

* Ralink UBoot Version: 5.0.0.2

* U-boot protected by unknown password (hash 95f9f8f58a972c3bb653854cc54e85b4). Therefore, it isn't possible to load initramfs image or choose boot option except “3: Boot system code via Flash (default).”.

* There is no any bootcounters

  • 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-beeline_smartbox-flash-squashfs-sysupgrade.bin
sysupgrade /tmp/openwrt-ramips-mt7621-beeline_smartbox-flash-squashfs-sysupgrade.bin

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-beeline_smartbox-flash-squashfs-sysupgrade.bin
mtd write openwrt-ramips-mt7621-beeline_smartbox-flash-squashfs-sysupgrade.bin firmware && reboot

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

hardware.button

The Beeline Smartbox Flash has the following buttons:

BUTTON Event
Reset / WPS reset

Front:
Beeline Smartbox Front case

Back and backside label:
Beeline Smartbox Front rear

Note: This will void your warranty!

There is 4 screws on the backplate. There are also clips around the edge of the case you will need to prize open, using, for example, a plastic card.

Main PCB (top):
Beeline Smartbox PCB top

Main PCB (bottom):
Beeline Smartbox PCB bottom

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

This is how to connect to the Serial Port. There are no serial pins on the PCB out-a-box. You need to solder them by yourself.
Beeline Smartbox Serial

Serial connection parameters
for Beeline Smartbox Flash
57600, 8N1

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

None so far.

MT7621 stage1 code 10:33:11 (ASIC) CPU=50000000 HZ BUS=16666666 HZ

Change MPLL source from XTAL to CR... do MEMPLL setting..

MT7621 stage1 code 10:33:11 (ASIC) CPU=50000000 HZ BUS=16666666 HZ

Change MPLL source from XTAL to CR... do MEMPLL setting.. MEMPLL Config : 0x11100000 3PLL mode + External loopback

XTAL-40Mhz === DDR-1200Mhz

PLL2 FB_DL: 0xe, 1/0 = 755/269 39000000 PLL4 FB_DL: 0x13, 1/0 = 720/304 4D000000 PLL3 FB_DL: 0x15, 1/0 = 662/362 55000000 do DDR setting..[00320381] Apply DDR3 Setting...(use customer AC)

        0    8   16   24   32   40   48   56   64   72   80   88   96  104  112  120
    --------------------------------------------------------------------------------

0000:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0002:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0003:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0004:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0005:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0006:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0007:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0008:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0009:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 000E:| 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 000F:| 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0010:| 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0011:| 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0012:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0013:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0014:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0015:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0016:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0017:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0018:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0019:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001E:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001F:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 rank 0 coarse = 15 rank 0 fine = 64 B:| 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 opt_dle value:9 DRAMC_R0DELDLY[018]=00001E20

RX DQS perbit delay software calibration

1.0-15 bit dq delay value

bit| 0 1 2 3 4 5 6 7 8 9


0 | 11 10 11 12 11 11 12 9 8 10 10 | 9 11 9 13 9 12


2.dqs window x=pass dqs delay value (min~max)center y=0-7bit DQ of every group input delay:DQS0 =32 DQS1 = 30

bit DQS0 bit DQS1 0 (1~61)31 8 (1~58)29 1 (1~60)30 9 (1~57)29 2 (1~60)30 10 (1~58)29 3 (1~61)31 11 (1~56)28 4 (1~60)30 12 (1~58)29 5 (1~63)32 13 (1~58)29 6 (1~61)31 14 (1~58)29 7 (1~63)32 15 (1~59)30

3.dq delay value last

bit| 0 1 2 3 4 5 6 7 8 9


0 | 12 12 13 13 13 11 13 9 9 11 10 | 10 13 10 14 10 12

TX perbyte calibration

DQS loop = 15, cmp_err_1 = ffff0000 dqs_perbyte_dly.last_dqsdly_pass[0]=15, finish count=1 dqs_perbyte_dly.last_dqsdly_pass[1]=15, finish count=2 DQ loop=15, cmp_err_1 = ffff00aa dqs_perbyte_dly.last_dqdly_pass[1]=15, finish count=1 DQ loop=14, cmp_err_1 = ffff0080 DQ loop=13, cmp_err_1 = ffff0080 DQ loop=12, cmp_err_1 = ffff0000 dqs_perbyte_dly.last_dqdly_pass[0]=12, finish count=2 byte:0, (DQS,DQ)=(9,8) byte:1, (DQS,DQ)=(8,8) 20,data:89 [EMI] DRAMC calibration passed

MT7621 stage1 code done CPU=50000000 HZ BUS=16666666 HZ

U-Boot 1.1.3 (Dec 31 2019 - 10:03:16) 0.00

Board: Ralink APSoC DRAM: 256 MB relocate_code Pointer at: 8ff88000

Config XHCI 40M PLL Allocate 16 byte aligned buffer: 8ffc8030 Enable NFI Clock # MTK NAND # : Use HW ECC NAND ID [EF F1 00 95 00] Device found in MTK table, ID: eff1, EXT_ID: 9500 Support this Device in MTK table! eff1 select_chip [NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 Signature matched and data read! load_fact_bbt success 1023 load fact bbt success [mtk_nand] probe successfully! mtd→writesize=2048 mtd→oobsize=64, mtd→erasesize=131072 devinfo.iowidth=8 ..

Ralink UBoot Version: 5.0.0.2


ASIC MT7621A DualCore (MAC to MT7530 Mode) DRAM_CONF_FROM: Auto-Detection DRAM_TYPE: DDR3 DRAM bus: 16 bit Xtal Mode=3 OCP Ratio=1/3 Flash component: NAND Flash Date:Dec 31 2019 Time:10:03:16

icache: sets:256, ways:4, linesz:32 ,total:32768 dcache: sets:256, ways:4, linesz:32 ,total:32768

##### The CPU freq = 880 MHZ #### estimate memory size =256 Mbytes #Reset_MT7530 set LAN/WAN LLLLW

Please choose the operation:

 1: Load system code to SDRAM via TFTP.
 2: Load system code then write to Flash via TFTP.
 3: Boot system code via Flash (default).
 4: Entr boot command line interface.
 7: Load Boot Loader code then write to Flash via Serial.
 9: Load Boot Loader code then write to Flash via TFTP.

default: 3 0

3: System Boot system code via Flash[0]. ## Booting image at bc300000 ...

 Verifying Trx ...
              MT7621   stage1 code 10:33:11 (ASIC)
              CPU=50000000 HZ BUS=16666666 HZ

Change MPLL source from XTAL to CR... do MEMPLL setting.. MEMPLL Config : 0x11100000 3PLL mode + External loopback

XTAL-40Mhz === DDR-1200Mhz

PLL2 FB_DL: 0xe, 1/0 = 685/339 39000000 PLL4 FB_DL: 0x13, 1/0 = 668/356 4D000000 PLL3 FB_DL: 0x15, 1/0 = 631/393 55000000 do DDR setting..[00320381] Apply DDR3 Setting...(use customer AC)

        0    8   16   24   32   40   48   56   64   72   80   88   96  104  112  120
    --------------------------------------------------------------------------------

0000:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0002:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0003:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0004:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0005:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0006:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0007:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0008:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0009:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 000E:| 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 000F:| 0 0 0 1 1 1 1 1 1 1 1 1 1 0 0 0 0010:| 1 1 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0011:| 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0012:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0013:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0014:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0015:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0016:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0017:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0018:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0019:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001D:| 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 001E:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001F:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 rank 0 coarse = 15 rank 0 fine = 64 B:| 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 opt_dle value:10 DRAMC_R0DELDLY[018]=00001E20

              RX      DQS perbit delay software calibration

1.0-15 bit dq delay value

bit| 0 1 2 3 4 5 6 7 8 9


0 | 11 10 11 12 11 11 12 9 7 10 10 | 9 11 9 13 9 12


2.dqs window x=pass dqs delay value (min~max)center y=0-7bit DQ of every group input delay:DQS0 =32 DQS1 = 30

bit DQS0 bit DQS1 0 (1~62)31 8 (1~56)28 1 (1~60)30 9 (1~58)29 2 (1~61)31 10 (1~58)29 3 (1~62)31 11 (1~56)28 4 (1~62)31 12 (1~58)29 5 (1~63)32 13 (1~57)29 6 (1~60)30 14 (1~58)29 7 (1~64)32 15 (1~59)30

3.dq delay value last

bit| 0 1 2 3 4 5 6 7 8 9


0 | 12 12 12 13 12 11 14 9 9 11 10 | 10 13 10 14 10 12

   TX  perbyte calibration

DQS loop = 15, cmp_err_1 = ffff0000 dqs_perbyte_dly.last_dqsdly_pass[0]=15, finish count=1 dqs_perbyte_dly.last_dqsdly_pass[1]=15, finish count=2 DQ loop=15, cmp_err_1 = ffff00a8 dqs_perbyte_dly.last_dqdly_pass[1]=15, finish count=1 DQ loop=14, cmp_err_1 = ffff0080 DQ loop=13, cmp_err_1 = ffff0080 DQ loop=12, cmp_err_1 = ffff0000 dqs_perbyte_dly.last_dqdly_pass[0]=12, finish count=2 byte:0, (DQS,DQ)=(9,8) byte:1, (DQS,DQ)=(8,8) 20,data:89 [EMI] DRAMC calibration passed

              MT7621   stage1 code done
              CPU=50000000 HZ BUS=16666666 HZ

U-Boot 1.1.3 (Dec 31 2019 - 10:03:16) 0.00

Board: Ralink APSoC DRAM: 256 MB relocate_code Pointer at: 8ff88000

Config XHCI 40M PLL Allocate 16 byte aligned buffer: 8ffc8030 Enable NFI Clock # MTK NAND # : Use HW ECC NAND ID [EF F1 00 95 00] Device found in MTK table, ID: eff1, EXT_ID: 9500 Support this Device in MTK table! eff1 select_chip [NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 Signature matched and data read! load_fact_bbt success 1023 load fact bbt success [mtk_nand] probe successfully! mtd→writesize=2048 mtd→oobsize=64, mtd→erasesize=131072 devinfo.iowidth=8 ..

Ralink UBoot Version: 5.0.0.2


ASIC MT7621A DualCore (MAC to MT7530 Mode) DRAM_CONF_FROM: Auto-Detection DRAM_TYPE: DDR3 DRAM bus: 16 bit Xtal Mode=3 OCP Ratio=1/3 Flash component: NAND Flash Date:Dec 31 2019 Time:10:03:16

icache: sets:256, ways:4, linesz:32 ,total:32768 dcache: sets:256, ways:4, linesz:32 ,total:32768

##### The CPU freq = 880 MHZ #### estimate memory size =256 Mbytes #Reset_MT7530 set LAN/WAN LLLLW

Please choose the operation:

 1: Load system code to SDRAM via TFTP.
 2: Load system code then write to Flash via TFTP.
 3: Boot system code via Flash (default).
 4: Entr boot command line interface.
 7: Load Boot Loader code then write to Flash via Serial.
 9: Load Boot Loader code then write to Flash via TFTP.

default: 3 0

3: System Boot system code via Flash[0]. ## Booting image at bc300000 ...

 Verifying Trx ... OK
 Image Name:   Linux Kernel Image
 Image Type:   MIPS Linux Kernel Image (lzma compressed)
 Data Size:    4194240 Bytes =  4 MB
 Load Address: 81001000
 Entry Point:  817da420

................................................................ Verifying Checksum ... OK

 Uncompressing Kernel Image ... OK

No initrd ## Transferring control to Linux (at address 817da420) ... ## Giving linux memsize in MB, 256

Starting kernel ...

for led test (red off) ...

LINUX started...

THIS IS ASIC

SDK 5.0.S.0 Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled serial8250: ttyS0 at MMIO 0x1e000d00 (irq = 27) is a 16550A serial8250: ttyS1 at MMIO 0x1e000c00 (irq = 26) is a 16550A Ralink gpio driver initialized SSFDC read-only Flash Translation layer MediaTek Nand driver init, version v2.1 Fix AHB virt2phys error Allocate 16 byte aligned buffer: 81b444b0 Enable NFI Clock # MTK NAND # : Use HW ECC NAND ID [EF F1 00 95 00, 00009500] Device found in MTK table, ID: eff1, EXT_ID: 9500 Support this Device in MTK table! eff1 NAND device: Manufacturer ID: 0xef, Chip ID: 0xf1 (Unknown NAND 128MiB 3,3V 8-bit), 128MiB, page size: 2048, OOB size: 64 [NAND]select ecc bit:4, sparesize :64 spare_per_sector=16 Scanning device for bad blocks Signature matched and data read! load_fact_bbt success 1023 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 in find_rootfs_partitions off=0x00300000 end=0x02300000 The trx header magic offset 0x00420000 MT7621-NAND: squash filesystem found at offset 0x00720000 Found image1 partition off 0x00720000 size 0x01be0000 in find_rootfs_partitions off=0x02300000 end=0x04300000 The trx header magic offset 0x00420000 MT7621-NAND: squash filesystem found at offset 0x02720000 Found image2 partition off 0x02720000 size 0x01be0000 Creating 13 MTD partitions on “MT7621-NAND”: 0x000000000000-0x000007f80000 : “ALL” 0x000000000000-0x000000100000 : “Bootloader” 0x000000100000-0x000000200000 : “Config” 0x000000200000-0x000000300000 : “Factory” 0x000000300000-0x000002300000 : “Kernel” 0x000000720000-0x000002300000 : “RootFS” 0x000002300000-0x000004300000 : “Kernel2” 0x000002720000-0x000004300000 : “RootFS2” 0x000004300000-0x000004500000 : “glbcfg” 0x000004500000-0x000004600000 : “board_data” 0x000004600000-0x000004800000 : “glbcfg2” 0x000004800000-0x000004900000 : “board_data2” 0x000004900000-0x000007f80000 : “data” [mtk_nand] probe successfully! IMQ driver loaded successfully. (numdevs = 16, numqueues = 1)

      Hooking IMQ after NAT on PREROUTING.
      Hooking IMQ before NAT on POSTROUTING.

PPP generic driver version 2.4.2 PPP BSD Compression module registered NET: Registered protocol family 24 PPTP driver version 0.8.5 register mt_drv

pAd = c0281000, size = 6831936, Status=0

pAd→PciHif.CSRBaseAddress =0xc0180000, csr_addr=0xc0180000! RTMPInitPCIeDevice():device_id=0x7615 mt_pci_chip_cfg(): HWVer=0x8a10, FWVer=0x8a10, pAd→ChipID=0x7615 mt_pci_chip_cfg(): HIF_SYS_REV=0x76150001 AP Driver version-5.0.4.0 RtmpChipOpsHook(223): Not support for HIF_MT yet! MACVersion=0x0 mt7615_init()-→ Use the default ePAeLNA bin image! Use the default /etc_ro/wlan/MT7615E_EEPROM1.bin bin image! ←-mt7615_init() ←- RTMPAllocTxRxRingMemory, Status=0 rdm_major = 253 GMAC1_MAC_ADRH -- : 0x0000000c GMAC1_MAC_ADRL -- : 0x43288036 Ralink APSoC Ethernet Driver Initilization. v3.1 1024 rx/tx descriptors allocated, mtu = 1500! GMAC1_MAC_ADRH -- : 0x0000000c GMAC1_MAC_ADRL -- : 0x43288036 PROC INIT OK! ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver ehci-pci: EHCI PCI platform driver ehci-platform: EHCI generic platform driver ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver *run project phy. FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) FM_OUT value: u4FmOut = 0(0x00000000) xhci-hcd xhci-hcd: xHCI Host Controller xhci-hcd xhci-hcd: new USB bus registered, assigned bus number 1 xhci-hcd xhci-hcd: irq 22, io mem 0x1e1c0000 usb usb1: New USB device found, idVendor=1d6b, idProduct=0002 usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb1: Product: xHCI Host Controller usb usb1: Manufacturer: Linux 3.10.14 xhci-hcd usb usb1: SerialNumber: xhci-hcd hub 1-0:1.0: USB hub found hub 1-0:1.0: 2 ports detected xhci-hcd xhci-hcd: xHCI Host Controller xhci-hcd xhci-hcd: new USB bus registered, assigned bus number 2 usb usb2: New USB device found, idVendor=1d6b, idProduct=0003 usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 usb usb2: Product: xHCI Host Controller usb usb2: Manufacturer: Linux 3.10.14 xhci-hcd usb usb2: SerialNumber: xhci-hcd hub 2-0:1.0: USB hub found hub 2-0:1.0: 1 port detected usbcore: registered new interface driver usb-storage usbcore: registered new interface driver ums-alauda usbcore: registered new interface driver ums-sddr09 usbcore: registered new interface driver ums-sddr55 GACT probability on Mirror/redirect action on netem: version 1.3 u32 classifier

  Performance counters on
  input device check on
  Actions configured

Netfilter messages via NETLINK v0.30. nfnl_acct: registering with nfnetlink. nf_conntrack version 0.5.0 (3875 buckets, 15500 max) ctnetlink v0.93: registering with nfnetlink. xt_time: kernel timezone is -0000 ip_set: protocol 6 ipip: IPv4 over IPv4 tunneling driver gre: GRE over IPv4 demultiplexor driver ip_gre: GRE over IPv4 tunneling driver ip_tables: (C) 2000-2006 Netfilter Core Team Type=Restricted Cone ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully arp_tables: (C) 2002 David S. Miller TCP: cubic registered Initializing XFRM netlink socket NET: Registered protocol family 10 ip6_tables: (C) 2000-2006 Netfilter Core Team sit: IPv6 over IPv4 tunneling driver ip6_gre: GRE over IPv6 tunneling driver NET: Registered protocol family 17 Ebtables v2.0 registered l2tp_core: L2TP core driver, V2.0 l2tp_ppp: PPPoL2TP kernel driver, V2.0 l2tp_ip: L2TP IP encapsulation support (L2TPv3) l2tp_netlink: L2TP netlink interface l2tp_eth: L2TP ethernet pseudowire support (L2TPv3) l2tp_ip6: L2TP IP encapsulation support for IPv6 (L2TPv3) 8021q: 802.1Q VLAN Support v1.8 Key type dns_resolver registered boot_part=0 /dev/mtdblock5 Boot from /dev/mtdblock5 VFS: Mounted root (squashfs filesystem) readonly on device 31:5. devtmpfs: mounted Freeing unused kernel memory: 292K (81ae7000 - 81b30000) Arcadyan the primary config checkout succeed. Arcadyan the second config checkout succeed. arca.dbus.mng: is ready agent_handler(236):arca.dbus.misc: is ready

Please press Enter to activate this console. MD5=[6a22c2ca805fe15a6cdd4c4d1558f597] 30:FFFFFFB1:FFFFFFB5:51:FFFFFFB1: 9 Raeth v3.1 (Tasklet) set CLK_CFG_0 = 0x40a00020!!!!!!!!!!!!!!!!!!1 phy_free_head is 0xc1c000!!! phy_free_tail_phy is 0xc1dff0!!! txd_pool=a0c20000 phy_txd_pool=00C20000 ei_local→skb_free start address is 0x8ec6a6cc. free_txd: 00c20010, ei_local→cpu_ptr: 00C20000 POOL HEAD_PTR | DMA_PTR | CPU_PTR ----------------+---------+--------

   0xa0c20000 0x00C20000 0x00C20000

phy_qrx_ring = 0x00c1e000, qrx_ring = 0xa0c1e000

phy_rx_ring0 = 0x00c28000, rx_ring[0] = 0xa0c28000 MT7530 Reset Completed!! change HW-TRAP to 0x17c8f set LAN/WAN LLLLW

fe_sw_init[7042] .... Power Down Ether PHY >>>>>>>>>>>>>>>

fe_sw_init[7045] .... Ether PHY End of Initialization >>>>>>>>>>>>>>>

GMAC1_MAC_ADRH -- : 0x000030b1 GMAC1_MAC_ADRL -- : 0xb551b109 GDMA2_MAC_ADRH -- : 0x0000000c GDMA2_MAC_ADRL -- : 0x4328803a eth3: ==⇒ VirtualIF_open MT7621 GE2 link rate to 1G CDMA_CSG_CFG = 81000000 GDMA1_FWD_CFG = 20710000 GDMA2_FWD_CFG = 20710000 GDMA2_MAC_ADRH -- : 0x000030b1 GDMA2_MAC_ADRL -- : 0xb551b106 eth3: ==⇒ VirtualIF_open ffp: module license 'Proprietary' taints kernel. Disabling lock debugging due to kernel taint FFP module version 1.2.1 (Jan 14 2020 14:38:25) loaded successfully. Ralink HW NAT Module Enabled eth2 ifindex =13 eth3 ifindex =1b ra0: ==⇒ main_virtual_if_open load l1profile succeed! driver_own()::Try to Clear FW Own... driver_own()::Success to clear FW Own multi-profile merge success, en:1,pf1_num:4,pf2_num:4,total:8 Open file “/etc/Wireless/RT2860/DBDC_card0.dat” to store DBDC cfg! (21) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) E2pAccessMode=2 SSID[0]=Beeline_2G_F14892, EdcaIdx=0 SSID[1]=Beeline_2G_F14892-Guest, EdcaIdx=0 SSID[2]=ARC_Guest2, EdcaIdx=0 SSID[3]=ARC_Guest3, EdcaIdx=0 SSID[4]=Beeline_5G_F14892, EdcaIdx=0 SSID[5]=Beeline_5G_F14892-Guest, EdcaIdx=0 SSID[6]=ARC_5G_Guest2, EdcaIdx=0 SSID[7]=ARC_5G_Guest3, EdcaIdx=0 DBDC Mode=1, eDBDC_mode = 1 BSS0 PhyMode=14 wmode_band_equal(): Band Equal! BSS1 PhyMode=14 BSS2 PhyMode=14 BSS3 PhyMode=14 BSS4 PhyMode=48 BSS5 PhyMode=48 BSS6 PhyMode=48 BSS7 PhyMode=48 auto_ch_select_set_cfg(): BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 auto_ch_select_set_cfg(): BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 BandSteering=0 BndStrgBssIdx=0;0;0;0;0;0;0;0 [TxPower] BAND0: 100, BAND1: 100 Power Boost (CCK, OFDM): RTMPSetProfileParameters[PowerUpCckOfdm] BAND1: (0)-(0)-(0)-(0)-(0)-(0)-(0) Power Boost (HT20): RTMPSetProfileParametersPower Boost (HT40): RTMPSetProfileParametersPower Boost (VHT20): RTMPSetProfileParametersPower Boost (VHT40): RTMPSetProfileParametersPower Boost (VHT80): RTMPSetProfileParametersPower Boost (VHT160): RTMPSetProfileParameters[PERCENTAGEenable] BAND0: 1, BAND1: 1 [BFBACKOFFenable] BAND0: 0, BAND1: 0 CalCacheApply = 0 FragThreshold[0]=2346 FragThreshold[1]=2346 FragThreshold[2]=2346 FragThreshold[3]=2346 FragThreshold[4]=2346 FragThreshold[5]=2346 FragThreshold[6]=2346 FragThreshold[7]=2346 Valid=1 APAifsn[0]=3 APAifsn[1]=7 APAifsn[2]=1 APAifsn[3]=1 Valid=1 APAifsn[0]=3 APAifsn[1]=7 APAifsn[2]=1 APAifsn[3]=1 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 DfsZeroWait Support=0/0 DfsZeroWaitCacTime=255/255 RTMPSetProfileParameters(): ACSCheckTime[0]=86400 seconds RTMPSetProfileParameters(): ACSCheckTime[1]=86400 seconds read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[0] read_etxbf: MBSS[0] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[1] read_etxbf: MBSS[1] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[2] read_etxbf: MBSS[2] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[3] read_etxbf: MBSS[3] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[4] read_etxbf: MBSS[4] ETxBfEnCond = 1 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[5] read_etxbf: MBSS[5] ETxBfEnCond = 1 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[6] read_etxbf: MBSS[6] ETxBfEnCond = 1 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[7] read_etxbf: MBSS[7] ETxBfEnCond = 1 [rtmp_read_ap_client_from_file] pf1=4 pf2=4 AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD AndesSendCmdMsg: Command type = ed, Extension command type = 48 HT: WDEV[0] Ext Channel = BELOW HT: WDEV[1] Ext Channel = BELOW HT: WDEV[2] Ext Channel = BELOW HT: WDEV[3] Ext Channel = BELOW HT: WDEV[4] Ext Channel = BELOW HT: WDEV[5] Ext Channel = BELOW HT: WDEV[6] Ext Channel = BELOW HT: WDEV[7] Ext Channel = BELOW HT: greenap_cap = 0 ICapMode = 0 WtcSetMaxStaNum: BssidNum:8, MaxStaNum:117 (WdsNum:0, ApcliNum:2, MaxNumChipRept:16), MinMcastWcid:118 Top Init Done! Use alloc_skb RX[0] DESC a0c14000 size = 16384 RX[1] DESC a0c12000 size = 8192 cut_through_init(): ct sw token number = 4095 cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 cut_through_token_list_init(): 8d61d908,8d61d908 cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 cut_through_token_list_init(): 8d61d918,8d61d918 Hif Init Done! ctl→txq = c08ff688 ctl→rxq = c08ff694 ctl→ackq = c08ff6a0 ctl→kickq = c08ff6ac ctl→tx_doneq = c08ff6b8 ctl→rx_doneq = c08ff6c4 Parsing patch header

      Built date: 20180518100604a
      Platform: ALPS
      HW/SW version: 0x8a108a10
      Patch version: 0x00000010
      Target address: 0x80000, length: 11072

patch is not ready && get semaphore success EventGenericEventHandler: CMD Success MtCmdPatchFinishReq EventGenericEventHandler: CMD Success release patch semaphore WfMcuHwInit: Before NICLoadFirmware, check ICapMode = 0 Parsing CPU 0 fw tailer

      Chip ID: 0x04
      Eco version: 0x00
      Region number: 0x00
      Format version: 0x00
      Ram version: _reserved_
      Built date: 20191220015534
      Common crc: 0x0

Parsing tailer region 0

      Feature set: 0x01
      Target address: 0x84000, Download size: 409600

Parsing tailer region 1

      Feature set: 0x01
      Target address: 0x209c400, Download size: 48320

EventGenericEventHandler: CMD Success EventGenericEventHandler: CMD Success MtCmdFwStartReq: override = 0x1, address = 0x84000 EventGenericEventHandler: CMD Success Parsing CPU 1 fw tailer

      Chip ID: 0x04
      Eco version: 0x00
      Region number: 0x00
      Format version: 0x00
      Ram version: _reserved_
      Built date: 20190415154149
      Common crc: 0x0

Parsing tailer region 0

      Feature set: 0x01
      Target address: 0x90000000, Download size: 122608

EventGenericEventHandler: CMD Success MtCmdFwStartReq: override = 0x4, address = 0x0 EventGenericEventHandler: CMD Success MCU Init Done! efuse_probe: efuse = 10000212 RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 RtmpEepromGetDefault::e2p_dafault=1 RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 NVM is FLASH mode. dev_idx [0] FLASH OFFSET [0x0] NICReadEEPROMParameters: EEPROM 0x52 b300 NICReadEEPROMParameters: EEPROM 0x52 b300 Country Region from e2p = 101 mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4 mt7615_antenna_default_reset(): DBDC BAND0 TxPath = 2, RxPath = 2 mt7615_antenna_default_reset(): DBDC BAND1 TxPath = 2, RxPath = 2 RcRadioInit(): DbdcMode=1, ConcurrentBand=2 RcRadioInit(): pRadioCtrl=8f2cef04,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf RcRadioInit(): pRadioCtrl=8f2cf20c,Band=1,rfcap=2,channel=36,PhyMode=1 extCha=0xf rcUpdateBandForBFMU PhyCtrl[0].RadioCtrl.IsBfBand = 1 rcUpdateBandForBFMU PhyCtrl[1].RadioCtrl.IsBfBand = 0 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 MtCmdSetDbdcCtrl:(ret = 0) MtSingleSkuLoadParam: RF_LOCKDOWN Feature OFF !!! MtBfBackOffLoadParam: RF_LOCKDOWN Feature OFF !!! EEPROM Init Done! mt_mac_init()-→ mt7615_init_mac_cr()-→ mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c mt7615_init_mac_cr(): TMAC_TRCR1=0x82783c8c ←-mt_mac_init() CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 MAC Init Done! MT7615BBPInit():BBP Initialization.....

      Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2
      Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0

MT7615BBPInit() todo PHY Init Done! MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) WifiFwdSet::disabled=0 ap_ftkd> Initialize FT KDP Module... Main bssid = 00:00:00:00:00:00 MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) ⇐=== mt_wifi_init, Status=0 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1 MtCmdEDCCACtrl: BandIdx: 1, EDCCACtrl: 1 WtcSetMaxStaNum: BssidNum:8, MaxStaNum:117 (WdsNum:0, ApcliNum:2, MaxNumChipRept:16), MinMcastWcid:118 RedInit: set CR4/N9 RED Enable to 1. RedInit: RED Initiailize Done. cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2. RTMP_COM_IoctlHandle → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 0 wdev_attr_update(): wdevId0 = 30:pr:iv:at:e0:07 [RcGetHdevByPhyMode]-- channel 0 fix for rdev fetching rcUpdateBandForBFMU PhyCtrl[0].RadioCtrl.IsBfBand = 1 rcUpdateBandForBFMU PhyCtrl[1].RadioCtrl.IsBfBand = 0 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 MtCmdSetDbdcCtrl:(ret = 0) [RadarStateCheck] RD_NORMAL_MODE phy_freq_adjust : no prim_ch value for adjust! Caller: wlan_operate_init+0xa4/0x11c phy_mode=14, ch=0, wdev_type=1 ht_cap→HtCapInfo: ldpc=0,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 ht_cap→HtCapParm: mdpu_density=5, ampdu_factor=3 AP inf up for ra_0(func_idx) OmacIdx=0 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp----------------→ ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 1,control_ch2=0, central_chl = 1 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 2,control_ch2=0, central_chl = 2 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 3,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 4,control_ch2=0, central_chl = 4 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) :MtCmdPktBudgetCtrl: bssid(255),wcid(65535),type(0) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 5 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 6,control_ch2=0, central_chl = 6 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 7,control_ch2=0, central_chl = 7 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 8,control_ch2=0, central_chl = 8 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 9,control_ch2=0, central_chl = 9 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 10,control_ch2=0, central_chl = 10 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 11,control_ch2=0, central_chl = 11 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1)

Channel 1 : Busy Time = 3704, Skip Channel = FALSE, BwCap = TRUE Channel 2 : Busy Time = 1595, Skip Channel = FALSE, BwCap = TRUE Channel 3 : Busy Time = 1067, Skip Channel = FALSE, BwCap = TRUE Channel 4 : Busy Time = 114, Skip Channel = FALSE, BwCap = TRUE Channel 5 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 6 : Busy Time = 1256, Skip Channel = FALSE, BwCap = TRUE Channel 7 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 8 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 9 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 10 : Busy Time = 1256, Skip Channel = FALSE, BwCap = TRUE Channel 11 : Busy Time = 6, Skip Channel = FALSE, BwCap = TRUE

Rule 3 Channel Busy time value : Select Primary Channel 5 Rule 3 Channel Busy time value : Min Channel Busy = 0 Rule 3 Channel Busy time value : BW = 20 [SelectClearChannelBusyTime] - band0 END ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 5, IsAband = 0 AutoChSelUpdateChannel(): Update channel for wdev for this band PhyMode = 14, Channel = 5 [RadarStateCheck] RD_NORMAL_MODE mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 1,TXStream = 2, RXStream = 2, scan(0) [DfsCacNormalStart] Normal start. Enable MAC TX ApAutoChannelAtBootUp←---------------- [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 wifi_sys_linkup(), wdev idx = 0 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 128 MtCmdSetDbdcCtrl:(ret = 0) UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 APStartUpForMbss: BssIndex = 0 channel = 5 MtCmdTxPowerDropCtrl: ucPowerDrop: 100, BandIdx: 0 [update_mgmt_frame_power] disable mgmt pwr ctrl Enable 20/40 BSSCoex Channel Scan(BssCoex=1) ExtEventBeaconLostHandler::FW LOG, Beacon lost (30:pr:iv:at:e0:07), Reason 0x10

Beacon lost - AP disabled!!!

MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 1,control_ch2=0, central_chl = 1 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 2,control_ch2=0, central_chl = 2 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 3,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 4,control_ch2=0, central_chl = 4 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 5 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 6,control_ch2=0, central_chl = 6 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 7,control_ch2=0, central_chl = 7 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 8,control_ch2=0, central_chl = 8 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l Channel[Idx=0, Ch=1].bEffectedChannel=0x2! needFallBack=TRUE due to OP/OT! Channel[Idx=1, Ch=2].bEffectedChannel=0x0! Channel[Idx=2, Ch=3].bEffectedChannel=0x0! Channel[Idx=3, Ch=4].bEffectedChannel=0x0! Channel[Idx=4, Ch=5].bEffectedChannel=0x1! needFallBack=TRUE due to OS! Channel[Idx=5, Ch=6].bEffectedChannel=0x0! Channel[Idx=6, Ch=7].bEffectedChannel=0x0! Channel[Idx=7, Ch=8].bEffectedChannel=0x0! mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 1,TXStream = 2, RXStream = 2, scan(0) [DfsCacNormalStart] Normal start. Enable MAC TX [DfsCacNormalStart] Normal start. Enable MAC TX apidx 0 for WscUUIDInit Generate UUID for apidx(0) *dev→ifindex = 12 rax0: ==⇒ mbss_virtual_if_open RTMP_COM_IoctlHandle → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 4 wdev_attr_update(): wdevId4 = 30:pr:iv:at:e0:07 [RcGetHdevByPhyMode] channel 0 fix for rdev fetching rcUpdateBandForBFMU PhyCtrl[0].RadioCtrl.IsBfBand = 0 rcUpdateBandForBFMU PhyCtrl[1].RadioCtrl.IsBfBand = 1 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 1 MtCmdSetDbdcCtrl:(ret = 0) [RadarStateCheck] RD_NORMAL_MODE phy_freq_adjust : no prim_ch value for adjust! Caller: wlan_operate_init+0xa4/0x11c phy_mode=48, ch=0, wdev_type=1 ht_cap→HtCapInfo: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 ht_cap→HtCapParm: mdpu_density=5, ampdu_factor=3 AP inf up for ra_4(func_idx) OmacIdx=20 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp----------------→ ApAutoChannelAtBootUp: AutoChannelBootup[1] = 1 MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) [AutoChSelBuildChannelListFor5G] ChListNum5G = 14 mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 36,control_ch2=0, central_chl = 36 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 40,control_ch2=0, central_chl = 40 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 44,control_ch2=0, central_chl = 44 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 48,control_ch2=0, central_chl = 48 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 52,control_ch2=0, central_chl = 52 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 56,control_ch2=0, central_chl = 56 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 60,control_ch2=0, central_chl = 60 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 64,control_ch2=0, central_chl = 64 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) ==================================================================== Channel 36 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 40 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 44 : Busy Time = 227, Skip Channel = FALSE, BwCap = TRUE Channel 48 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 52 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 56 : Busy Time = 181, Skip Channel = FALSE, BwCap = TRUE Channel 60 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 64 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE ==================================================================== Rule 3 Channel Busy time value : Select Primary Channel 52 Rule 3 Channel Busy time value : Min Channel Busy = 181 Rule 3 Channel Busy time value : BW = 80 [SelectClearChannelBusyTime] - band1 END ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 52, IsAband = 1 AutoChSelUpdateChannel(): Update channel for wdev for this band PhyMode = 48, Channel = 52 [RadarStateCheck] RD_NORMAL_MODE mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 52,control_ch2=0, central_chl = 58 DBDCIdx= 1, Band= 0 BW = 2,TXStream = 2, RXStream = 2, scan(0) [DfsCacNormalStart] Normal start. Enable MAC TX [WrapDfsRadarDetectStart]: DfsChBand[0]: 0, DfsChBand[1]: 0 ApAutoChannelAtBootUp←---------------- [PMF]APPMFInit:: apidx=4, MFPC=0, MFPR=0, SHA256=0 wifi_sys_linkup(), wdev idx = 4 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:126 for WDEV_TYPE:1 LinkToOmacIdx = 14, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8320 MtCmdSetDbdcCtrl:(ret = 0) UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 14 APStartUpForMbss: BssIndex = 1 channel = 52 MtCmdTxPowerDropCtrl: ucPowerDrop: 100, BandIdx: 1 [update_mgmt_frame_power] disable mgmt pwr ctrl apidx 4 for WscUUIDInit Generate UUID for apidx(4) ExtEventBeaconLostHandler::FW LOG, Beacon lost (30:pr:iv:at:e0:07), Reason 0x10 Beacon lost - AP disabled!!! *dev→ifindex = 1f MtCmdGetThermalSensorResult:(ret = 0) device eth2 entered promiscuous mode device ra0 entered promiscuous mode device rax0 entered promiscuous mode br0: port 3(rax0) entered forwarding state br0: port 3(rax0) entered forwarding state br0: port 2(ra0) entered forwarding state br0: port 2(ra0) entered forwarding state br0: port 1(eth2) entered forwarding state br0: port 1(eth2) entered forwarding state ra0: ==⇒ main_virtual_if_close wifi_sys_linkdown(), wdev idx = 0 ExtEventBeaconLostHandler::FW LOG, Beacon lost (30:pr:iv:at:e0:07), Reason 0x10

Beacon lost - AP disabled!!!

bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 wifi_sys_close(), wdev idx = 0 *PpeDevUnRegHandler *PpeDevUnRegHandler *PpeDevUnRegHandler br0: port 2(ra0) entered disabled state rax0: ==⇒ mbss_virtual_if_close wifi_sys_linkdown(), wdev idx = 4 ExtEventBeaconLostHandler::FW LOG, Beacon lost (30:pr:iv:at:e0:07), Reason 0x10 Beacon lost - AP disabled!!! bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 wifi_sys_close(), wdev idx = 4 APStop(), oper(0) bssid(0)=30:pr:iv:at:e0:07 wifi_sys_close(), wdev idx = 0 ap_ftkd> Release FT KDP Module... MtCmdFdFrameOffloadSet(): Enable = 0, OwnMacIdx = 0, WlanIdx = 0, Band = 0, Len = 0 wifi_sys_close(), wdev idx = 1 wifi_sys_close(), wdev idx = 2 wifi_sys_close(), wdev idx = 3 wifi_sys_close(), wdev idx = 4 wifi_sys_close(), wdev idx = 5 wifi_sys_close(), wdev idx = 6 wifi_sys_close(), wdev idx = 7 ⇐== APStop() CmdReStartDLRsp: WiFI FW Download Success RT28xxPciAsicRadioOff(): Not support for HIF_MT yet! RTMPDrvClose call RT28xxPciAsicRadioOff fail !! tx_kickout_fail_count = 0 tx_timeout_fail_count = 0 rx_receive_fail_count = 0 alloc_cmd_msg = 1435 free_cmd_msg = 1435 cut_through_token_list_destroy(): 8d61d908,8d61d908 cut_through_token_list_destroy(): 8d61d918,8d61d918 fw_own()::Set Fw Own RTMP_AllTimerListRelease: Size=65 RTMP_AllTimerListRelease: Cancel timer obj c039bc0c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c039bc44, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a2aac, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a2ae4, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a994c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a9984, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b07ec, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b0824, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b768c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b76c4, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03be52c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03be564, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03c53cc, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03c5404, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03cc26c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03cc2a4, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d310c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d3144, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d9fac, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d9fe4, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e0e4c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e0e84, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e7cec, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e7d24, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03eeb8c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03eebc4, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03f5a2c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03f5a64, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03fc8cc, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03fc904, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c040376c, name: &pOceCtrl→Scan11bOceAPTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x8c/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c04037a4, name: &pOceCtrl→MaxChannelTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0xb0/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c0797ea0, name: &pAd→ApCfg.APAutoScanNeighborTimer! RTMP_AllTimerListRelease: Timer is allocated by OceInit+0x1b8/0x240,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c039bb74, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c039bba8, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a2a14, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a2a48, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a98b4, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03a98e8, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b0754, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b0788, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b75f4, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03b7628, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03be494, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03be4c8, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03c5334, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03c5368, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03cc1d4, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03cc208, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d3074, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d30a8, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d9f14, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03d9f48, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e0db4, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e0de8, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e7c54, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03e7c88, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03eeaf4, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03eeb28, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03f5994, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03f59c8, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03fc834, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c03fc868, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c04036d4, name: &pRrmCfg→QuietCB.QuietOffsetTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x80/0x194,Valid:1,Lock:c0904b64,State:0 RTMP_AllTimerListRelease: Cancel timer obj c0403708, name: &pRrmCfg→QuietCB.QuietTimer! RTMP_AllTimerListRelease: Timer is allocated by RRM_CfgInit+0x9c/0x194,Valid:1,Lock:c0904b64,State:0 fw_own()::Return since already in Fw Own... ←--HwCtrlThread *PpeDevUnRegHandler *PpeDevUnRegHandler *PpeDevUnRegHandler br0: port 3(rax0) entered disabled state ra0: ==⇒ main_virtual_if_open load l1profile succeed! driver_own()::Try to Clear FW Own... driver_own()::Success to clear FW Own multi-profile merge success, en:1,pf1_num:4,pf2_num:4,total:8 Open file “/etc/Wireless/RT2860/DBDC_card0.dat” to store DBDC cfg! (21) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) RT_CfgSetMacAddress : invalid length (0) E2pAccessMode=2 SSID[0]=Beeline_2G_F14892, EdcaIdx=0 SSID[1]=Beeline_2G_F14892-Guest, EdcaIdx=0 SSID[2]=ARC_Guest2, EdcaIdx=0 SSID[3]=ARC_Guest3, EdcaIdx=0 SSID[4]=Beeline_5G_F14892, EdcaIdx=1 SSID[5]=Beeline_5G_F14892-Guest, EdcaIdx=1 SSID[6]=ARC_5G_Guest2, EdcaIdx=1 SSID[7]=ARC_5G_Guest3, EdcaIdx=1 DBDC Mode=1, eDBDC_mode = 1 BSS0 PhyMode=14 wmode_band_equal(): Band Equal! BSS1 PhyMode=14 BSS2 PhyMode=14 BSS3 PhyMode=14 BSS4 PhyMode=48 BSS5 PhyMode=48 BSS6 PhyMode=48 BSS7 PhyMode=48 auto_ch_select_set_cfg(): BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 auto_ch_select_set_cfg(): BandIdx1, AutoChannelAtBootup=1, AutoChannelAlg = 3 BandSteering=0 BndStrgBssIdx=0;0;0;0;0;0;0;0 [TxPower] BAND0: 100, BAND1: 100 Power Boost (CCK, OFDM): RTMPSetProfileParameters[PowerUpCckOfdm] BAND1: (0)-(0)-(0)-(0)-(0)-(0)-(0) Power Boost (HT20): RTMPSetProfileParametersPower Boost (HT40): RTMPSetProfileParametersPower Boost (VHT20): RTMPSetProfileParametersPower Boost (VHT40): RTMPSetProfileParametersPower Boost (VHT80): RTMPSetProfileParametersPower Boost (VHT160): RTMPSetProfileParameters[PERCENTAGEenable] BAND0: 1, BAND1: 1 [BFBACKOFFenable] BAND0: 0, BAND1: 0 CalCacheApply = 0 FragThreshold[0]=2346 FragThreshold[1]=2346 FragThreshold[2]=2346 FragThreshold[3]=2346 FragThreshold[4]=2346 FragThreshold[5]=2346 FragThreshold[6]=2346 FragThreshold[7]=2346 Valid=1 APAifsn[0]=3 APAifsn[1]=7 APAifsn[2]=1 APAifsn[3]=1 Valid=1 APAifsn[0]=3 APAifsn[1]=7 APAifsn[2]=1 APAifsn[3]=1 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 BSSAifsn[0]=3 BSSAifsn[1]=7 BSSAifsn[2]=2 BSSAifsn[3]=2 DfsZeroWait Support=0/0 DfsZeroWaitCacTime=255/255 RTMPSetProfileParameters(): ACSCheckTime[0]=86400 seconds RTMPSetProfileParameters(): ACSCheckTime[1]=86400 seconds read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[0] read_etxbf: MBSS[0] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[1] read_etxbf: MBSS[1] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[2] read_etxbf: MBSS[2] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 0 read_etxbf: BSSID[3] read_etxbf: MBSS[3] ETxBfEnCond = 0 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[4] read_etxbf: MBSS[4] ETxBfEnCond = 1 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[5] read_etxbf: MBSS[5] ETxBfEnCond = 1 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[6] read_etxbf: MBSS[6] ETxBfEnCond = 1 read_etxbf: ETxBfEnCond = 1 read_etxbf: BSSID[7] read_etxbf: MBSS[7] ETxBfEnCond = 1 [rtmp_read_ap_client_from_file] pf1=4 pf2=4 AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD AndesSendCmdMsg: Command type = ed, Extension command type = 48 HT: WDEV[0] Ext Channel = BELOW HT: WDEV[1] Ext Channel = BELOW HT: WDEV[2] Ext Channel = BELOW HT: WDEV[3] Ext Channel = BELOW HT: WDEV[4] Ext Channel = BELOW HT: WDEV[5] Ext Channel = BELOW HT: WDEV[6] Ext Channel = BELOW HT: WDEV[7] Ext Channel = BELOW HT: greenap_cap = 0 ICapMode = 0 WtcSetMaxStaNum: BssidNum:8, MaxStaNum:117 (WdsNum:0, ApcliNum:2, MaxNumChipRept:16), MinMcastWcid:118 Top Init Done! Use alloc_skb RX[0] DESC a0c14000 size = 16384 RX[1] DESC a0c12000 size = 8192 cut_through_init(): ct sw token number = 4095 cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 cut_through_token_list_init(): 8d624108,8d624108 cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 cut_through_token_list_init(): 8d624118,8d624118 Hif Init Done! ctl→txq = c08ff688 ctl→rxq = c08ff694 ctl→ackq = c08ff6a0 ctl→kickq = c08ff6ac ctl→tx_doneq = c08ff6b8 ctl→rx_doneq = c08ff6c4 Parsing patch header

      Built date: 20180518100604a
      Platform: ALPS
      HW/SW version: 0x8a108a10
      Patch version: 0x00000010
      Target address: 0x80000, length: 11072

patch is ready, continue to ILM/DLM DL WfMcuHwInit: Before NICLoadFirmware, check ICapMode = 0 Parsing CPU 0 fw tailer

      Chip ID: 0x04
      Eco version: 0x00
      Region number: 0x00
      Format version: 0x00
      Ram version: _reserved_
      Built date: 20191220015534
      Common crc: 0x0

Parsing tailer region 0

      Feature set: 0x01
      Target address: 0x84000, Download size: 409600

Parsing tailer region 1

      Feature set: 0x01
      Target address: 0x209c400, Download size: 48320

EventGenericEventHandler: CMD Success EventGenericEventHandler: CMD Success MtCmdFwStartReq: override = 0x1, address = 0x84000 EventGenericEventHandler: CMD Success Parsing CPU 1 fw tailer

      Chip ID: 0x04
      Eco version: 0x00
      Region number: 0x00
      Format version: 0x00
      Ram version: _reserved_
      Built date: 20190415154149
      Common crc: 0x0

Parsing tailer region 0

      Feature set: 0x01
      Target address: 0x90000000, Download size: 122608

EventGenericEventHandler: CMD Success MtCmdFwStartReq: override = 0x4, address = 0x0 EventGenericEventHandler: CMD Success MCU Init Done! efuse_probe: efuse = 10000212 RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 RtmpEepromGetDefault::e2p_dafault=1 RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 NVM is FLASH mode. dev_idx [0] FLASH OFFSET [0x0] NICReadEEPROMParameters: EEPROM 0x52 b300 NICReadEEPROMParameters: EEPROM 0x52 b300 Country Region from e2p = 101 mt7615_antenna_default_reset(): TxPath = 4, RxPath = 4 mt7615_antenna_default_reset(): DBDC BAND0 TxPath = 2, RxPath = 2 mt7615_antenna_default_reset(): DBDC BAND1 TxPath = 2, RxPath = 2 RcRadioInit(): DbdcMode=1, ConcurrentBand=2 RcRadioInit(): pRadioCtrl=8f2cef04,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf RcRadioInit(): pRadioCtrl=8f2cf20c,Band=1,rfcap=2,channel=36,PhyMode=1 extCha=0xf rcUpdateBandForBFMU PhyCtrl[0].RadioCtrl.IsBfBand = 1 rcUpdateBandForBFMU PhyCtrl[1].RadioCtrl.IsBfBand = 0 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 MtCmdSetDbdcCtrl:(ret = 0) MtSingleSkuLoadParam: RF_LOCKDOWN Feature OFF !!! MtBfBackOffLoadParam: RF_LOCKDOWN Feature OFF !!! EEPROM Init Done! mt_mac_init()-→ mt7615_init_mac_cr()-→ mt7615_init_mac_cr(): TMAC_TRCR0=0x82783c8c mt7615_init_mac_cr(): TMAC_TRCR1=0x82783c8c ←-mt_mac_init() CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 MAC Init Done! MT7615BBPInit():BBP Initialization.....

      Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2
      Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0

MT7615BBPInit() todo PHY Init Done! MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) WifiFwdSet::disabled=0 ap_ftkd> Initialize FT KDP Module... Main bssid = 30:pr:iv:at:e0:07 MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) ⇐=== mt_wifi_init, Status=0 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1 MtCmdEDCCACtrl: BandIdx: 1, EDCCACtrl: 1 WtcSetMaxStaNum: BssidNum:8, MaxStaNum:117 (WdsNum:0, ApcliNum:2, MaxNumChipRept:16), MinMcastWcid:118 RedInit: set CR4/N9 RED Enable to 1. RedInit: RED Initiailize Done. cp_support_is_enabled: set CR4 CP_SUPPORT to Mode 2. RTMP_COM_IoctlHandle → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 0 wdev_attr_update(): wdevId0 = 30:pr:iv:at:e0:07 [RcGetHdevByPhyMode]-- channel 0 fix for rdev fetching rcUpdateBandForBFMU PhyCtrl[0].RadioCtrl.IsBfBand = 1 rcUpdateBandForBFMU PhyCtrl[1].RadioCtrl.IsBfBand = 0 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 0 MtCmdSetDbdcCtrl:(ret = 0) [RadarStateCheck] RD_NORMAL_MODE phy_freq_adjust : no prim_ch value for adjust! Caller: wlan_operate_init+0xa4/0x11c phy_mode=14, ch=0, wdev_type=1 ht_cap→HtCapInfo: ldpc=0,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 ht_cap→HtCapParm: mdpu_density=5, ampdu_factor=3 AP inf up for ra_0(func_idx) OmacIdx=0 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp----------------→ ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 1,control_ch2=0, central_chl = 1 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 2,control_ch2=0, central_chl = 2 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 3,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 4,control_ch2=0, central_chl = 4 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) :MtCmdPktBudgetCtrl: bssid(255),wcid(65535),type(0) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 5 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 6,control_ch2=0, central_chl = 6 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 7,control_ch2=0, central_chl = 7 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 8,control_ch2=0, central_chl = 8 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 9,control_ch2=0, central_chl = 9 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 10,control_ch2=0, central_chl = 10 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 11,control_ch2=0, central_chl = 11 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1)

Channel 1 : Busy Time = 4740, Skip Channel = FALSE, BwCap = TRUE Channel 2 : Busy Time = 633, Skip Channel = FALSE, BwCap = TRUE Channel 3 : Busy Time = 1066, Skip Channel = FALSE, BwCap = TRUE Channel 4 : Busy Time = 13, Skip Channel = FALSE, BwCap = TRUE Channel 5 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 6 : Busy Time = 1256, Skip Channel = FALSE, BwCap = TRUE Channel 7 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 8 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 9 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 10 : Busy Time = 1256, Skip Channel = FALSE, BwCap = TRUE Channel 11 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE

Rule 3 Channel Busy time value : Select Primary Channel 5 Rule 3 Channel Busy time value : Min Channel Busy = 0 Rule 3 Channel Busy time value : BW = 20 [SelectClearChannelBusyTime] - band0 END ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 5, IsAband = 0 AutoChSelUpdateChannel(): Update channel for wdev for this band PhyMode = 14, Channel = 5 [RadarStateCheck] RD_NORMAL_MODE mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 1,TXStream = 2, RXStream = 2, scan(0) [DfsCacNormalStart] Normal start. Enable MAC TX ApAutoChannelAtBootUp←---------------- [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 wifi_sys_linkup(), wdev idx = 0 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:127 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 128 MtCmdSetDbdcCtrl:(ret = 0) UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 APStartUpForMbss: BssIndex = 0 channel = 5 MtCmdTxPowerDropCtrl: ucPowerDrop: 100, BandIdx: 0 [update_mgmt_frame_power] disable mgmt pwr ctrl Enable 20/40 BSSCoex Channel Scan(BssCoex=1) ExtEventBeaconLostHandler::FW LOG, Beacon lost (30:pr:iv:at:e0:07), Reason 0x10

Beacon lost - AP disabled!!!

MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 1,control_ch2=0, central_chl = 1 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 2,control_ch2=0, central_chl = 2 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 3,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 4,control_ch2=0, central_chl = 4 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 5 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 6,control_ch2=0, central_chl = 6 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 7,control_ch2=0, central_chl = 7 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 8,control_ch2=0, central_chl = 8 DBDCIdx= 0, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) AP OBSS SYNC - BBP R4 to 20MHz.l Channel[Idx=0, Ch=1].bEffectedChannel=0x2! needFallBack=TRUE due to OP/OT! Channel[Idx=1, Ch=2].bEffectedChannel=0x0! Channel[Idx=2, Ch=3].bEffectedChannel=0x2! needFallBack=TRUE due to OP/OT! Channel[Idx=3, Ch=4].bEffectedChannel=0x0! Channel[Idx=4, Ch=5].bEffectedChannel=0x1! needFallBack=TRUE due to OS! Channel[Idx=5, Ch=6].bEffectedChannel=0x0! Channel[Idx=6, Ch=7].bEffectedChannel=0x0! Channel[Idx=7, Ch=8].bEffectedChannel=0x0! mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 5,control_ch2=0, central_chl = 3 DBDCIdx= 0, Band= 0 BW = 1,TXStream = 2, RXStream = 2, scan(0) [DfsCacNormalStart] Normal start. Enable MAC TX [DfsCacNormalStart] Normal start. Enable MAC TX apidx 0 for WscUUIDInit Generate UUID for apidx(0) *dev→ifindex = 12 br0: port 2(ra0) entered forwarding state br0: port 2(ra0) entered forwarding state MtCmdGetThermalSensorResult:(ret = 0) rax0: ==⇒ mbss_virtual_if_open RTMP_COM_IoctlHandle → CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 4 wdev_attr_update(): wdevId4 = 30:pr:iv:at:e0:07 [RcGetHdevByPhyMode] channel 0 fix for rdev fetching rcUpdateBandForBFMU PhyCtrl[0].RadioCtrl.IsBfBand = 0 rcUpdateBandForBFMU PhyCtrl[1].RadioCtrl.IsBfBand = 1 TxBfModuleEnCtrl:i = 0, pRadioCtrl→IsBfBand = 0 TxBfModuleEnCtrl:i = 1, pRadioCtrl→IsBfBand = 1 TxBfModuleEnCtrl:u1BfNum = 1, u1BfBitmap = 1, u1BfSelBand[0] = 1 MtCmdSetDbdcCtrl:(ret = 0) [RadarStateCheck] RD_NORMAL_MODE phy_freq_adjust : no prim_ch value for adjust! Caller: wlan_operate_init+0xa4/0x11c phy_mode=48, ch=0, wdev_type=1 ht_cap→HtCapInfo: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=1 ht_cap→HtCapParm: mdpu_density=5, ampdu_factor=3 AP inf up for ra_4(func_idx) OmacIdx=20 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp----------------→ ApAutoChannelAtBootUp: AutoChannelBootup[1] = 1 MtCmdSetMacTxRx:(ret = 0) MtCmdSetMacTxRx:(ret = 0) [AutoChSelBuildChannelListFor5G] ChListNum5G = 14 mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 36,control_ch2=0, central_chl = 36 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 40,control_ch2=0, central_chl = 40 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 44,control_ch2=0, central_chl = 44 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 48,control_ch2=0, central_chl = 48 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 52,control_ch2=0, central_chl = 52 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 56,control_ch2=0, central_chl = 56 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 60,control_ch2=0, central_chl = 60 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 64,control_ch2=0, central_chl = 64 DBDCIdx= 1, Band= 0 BW = 0,TXStream = 2, RXStream = 2, scan(1) ==================================================================== Channel 36 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 40 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 44 : Busy Time = 227, Skip Channel = FALSE, BwCap = TRUE Channel 48 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 52 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 56 : Busy Time = 181, Skip Channel = FALSE, BwCap = TRUE Channel 60 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE Channel 64 : Busy Time = 0, Skip Channel = FALSE, BwCap = TRUE ==================================================================== Rule 3 Channel Busy time value : Select Primary Channel 52 Rule 3 Channel Busy time value : Min Channel Busy = 181 Rule 3 Channel Busy time value : BW = 80 [SelectClearChannelBusyTime] - band1 END ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 52, IsAband = 1 AutoChSelUpdateChannel(): Update channel for wdev for this band PhyMode = 48, Channel = 52 [RadarStateCheck] RD_NORMAL_MODE mt7615_apply_cal_data() : eeprom 0x52 bit 1 is 0, do runtime cal , skip RX reload mt7615_apply_cal_data() : eeprom 0x52 bit 0 is 0, do runtime cal , skip TX reload MtCmdChannelSwitch: control_chl = 52,control_ch2=0, central_chl = 58 DBDCIdx= 1, Band= 0 BW = 2,TXStream = 2, RXStream = 2, scan(0) [DfsCacNormalStart] Normal start. Enable MAC TX [WrapDfsRadarDetectStart]: DfsChBand[0]: 0, DfsChBand[1]: 0 ApAutoChannelAtBootUp←---------------- [PMF]APPMFInit:: apidx=4, MFPC=0, MFPR=0, SHA256=0 wifi_sys_linkup(), wdev idx = 4 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:126 for WDEV_TYPE:1 LinkToOmacIdx = 14, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8320 MtCmdSetDbdcCtrl:(ret = 0) UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 14 APStartUpForMbss: BssIndex = 1 channel = 52 MtCmdTxPowerDropCtrl: ucPowerDrop: 100, BandIdx: 1 [update_mgmt_frame_power] disable mgmt pwr ctrl apidx 4 for WscUUIDInit Generate UUID for apidx(4) ExtEventBeaconLostHandler::FW LOG, Beacon lost (30:pr:iv:at:e0:07), Reason 0x10 Beacon lost - AP disabled!!! *dev→ifindex = 1f br0: port 3(rax0) entered forwarding state br0: port 3(rax0) entered forwarding state Jan 1 00:00:54 udevd[849]: starting version 173 udevd[848]: error: runtime directory '/run/udev' not writable, for now falling back to '/dev/.udev' udevd[849]: converting old udev database Jan 1 00:00:54 udevd[892]: [truncated] m

start syslog-ng... Port 4's link state is changed from up to down! The parameteres wan_stop needs. [wan_idx=0 ] [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK [as_load_key_cert] load CERT/KEY files OK < boot_account: 344>: cmd =arc_usbapp_accountmgr boot < set_account: 354>: cmd =arc_usbapp_accountmgr set try to start samba daemon nf_conntrack: automatic helper assignment is deprecated and it will be removed soon. Use the iptables CT target to attach helpers instead. start miniupnpd Call Update Tr69 Rule. MtCmdGetThermalSensorResult:(ret = 0) UBI: attaching mtd12 to ubi0 UBI: scanning is finished UBI: attached mtd12 (name “data”, size 54 MiB) to ubi0 UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes UBI: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 UBI: VID header offset: 2048 (aligned 2048), data offset: 4096 UBI: good PEBs: 436, bad PEBs: 0, corrupted PEBs: 0 UBI: user volume: 2, internal volumes: 1, max. volumes count: 128 UBI: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 1641389745 UBI: available PEBs: 0, total reserved PEBs: 436, PEBs reserved for bad PEB handling: 20 UBI: background thread “ubi_bgt0d” started, PID 1241 UBIFS error (pid 1267): ubifs_read_node: bad node type (4 but expected 6) UBIFS error (pid 1267): ubifs_read_node: bad node at LEB 0:0, LEB mapping status 1 Not a node, first 24 bytes: 00000000: 68 73 71 73 30 05 00 00 b1 9e d5 61 00 00 04 00 1b 00 00 00 04 00 12 00 hsqs0......a............ CPU: 1 PID: 1267 Comm: mount Tainted: P 3.10.14 #1 Stack : 81b37e72 0000003e 00000000 81a20000 00000000 000004f3 81927fdc 81b33ddc

        8d711838 81a1b4e7 00000000 000004f3 00000006 00000001 00000001 817dc870
        00000001 8102ab70 00000000 00000000 81929f64 8b4b9c9c 8b4b9c9c 81927fdc
        8b4c6000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
        00000000 00000000 00000000 00000000 00000000 00000000 00000000 8b4b9c30
        ...

Call Trace: [<8100b974>] show_stack+0x64/0x7c [<81241628>] ubifs_read_node+0x1a4/0x2b8 [<8123e0e4>] ubifs_read_sb_node+0x50/0xb4 [<8123e954>] ubifs_read_superblock+0x7b0/0xf78 [<8123ce6c>] ubifs_mount+0x878/0x18ac [<810cc578>] mount_fs+0x1c/0xf4 [<810e8a60>] vfs_kern_mount+0x5c/0xe8 [<810eb198>] do_mount+0x1ec/0x908 [<810eb938>] SyS_mount+0x84/0xe8 [<81010fb0>] stack_done+0x20/0x40

killall: updatedd: no process killed killall: updatedd-wrapper: no process killed multi-wan stop wan_idx=0 killall: pppd: no process killed killall: pptp: no process killed killall: listen: no process killed wan_idx=0 stop bridge qos [as_client_init_tlsv1] as_client_init_tlsv1: done! [as_setup_verify] Load trusted CA: [/etc/Verisign_Class3.pem][(null)] wan_idx=0 stop bridge mode wanx enable, should not downbr the iface 0 brdel start brdel start brdel all Get signal 16! It took more than 9 seconds! Call Update Tr69 Rule. MtCmdGetThermalSensorResult:(ret = 0)


Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 0.000000] Linux version 5.10.107 (builder@buildhost) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.2.0 r19158-1eb5d50fd3) 11.2.0, GNU ld (GNU Binutils) 2.37) #0 SMP Sat Mar 19 16:42:41 2022 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] printk: bootconsole [early0] enabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] MIPS: machine is Beeline SmartBox Flash Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Initrd not found or empty - disabling initrd Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] VPE topology {2,2} total 4 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Zone ranges: Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Normal [mem 0x0000000000000000-0x000000000fffffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] HighMem empty Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Movable zone start for each node Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Early memory node ranges Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] node 0: [mem 0x0000000000000000-0x000000000fffffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x000000000fffffff] Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.000000] On node 0 totalpages: 65536 Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.000000] Normal zone: 576 pages used for memmap Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.000000] Normal zone: 0 pages reserved Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.000000] Normal zone: 65536 pages, LIFO batch:15 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] percpu: Embedded 15 pages/cpu s30160 r8192 d23088 u61440 Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.000000] pcpu-alloc: s30160 r8192 d23088 u61440 alloc=15*4096 Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64960 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 0.000000] Kernel command line: console=ttyS0,57600 rootfstype=squashfs,jffs2 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Writing ErrCtl register=00010c12 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Readback ErrCtl register=00010c12 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Memory: 248784K/262144K available (6995K kernel code, 623K rwdata, 1408K rodata, 1264K init, 244K bss, 13360K reserved, 0K cma-reserved, 0K highmem) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] rcu: Hierarchical RCU implementation. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] Tracing variant of Tasks RCU enabled. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] NR_IRQS: 256 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 0.000000] random: get_random_bytes called from start_kernel+0x3cc/0x5e4 with crng_init=0 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] CPU Clock: 880MHz Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.000012] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.015859] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.033734] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.106053] pid_max: default: 32768 minimum: 301 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.115360] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.129765] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.147770] rcu: Hierarchical SRCU implementation. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.157541] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.173033] smp: Bringing up secondary CPUs ... Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.182601] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.182611] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 0.182623] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.182744] CPU1 revision is: 0001992f (MIPS 1004Kc) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.242953] Synchronize counters for CPU 1: done. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.304958] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.304967] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 0.304974] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.305020] CPU2 revision is: 0001992f (MIPS 1004Kc) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.363926] Synchronize counters for CPU 2: done. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.424132] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.424140] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 0.424148] MIPS secondary cache 256kB, 8-way, linesize 32 bytes. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.424196] CPU3 revision is: 0001992f (MIPS 1004Kc) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.483498] Synchronize counters for CPU 3: done. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.543105] smp: Brought up 1 node, 4 CPUs Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.555257] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.574759] futex hash table entries: 1024 (order: 3, 32768 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.588580] pinctrl core: initialized pinctrl subsystem Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.600960] NET: Registered protocol family 16 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.610917] thermal_sys: Registered thermal governor 'step_wise' Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.612202] cpuidle: using governor teo Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 0.647095] FPU Affinity set after 11720 emulations Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 0.653078] random: fast init done Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.678370] clocksource: Switched to clocksource GIC Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.690120] NET: Registered protocol family 2 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.699063] IP idents hash table entries: 4096 (order: 3, 32768 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.714798] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.731389] TCP established hash table entries: 2048 (order: 1, 8192 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.746546] TCP bind hash table entries: 2048 (order: 2, 16384 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.760699] TCP: Hash tables configured (established 2048 bind 2048) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.773437] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.786319] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.800383] NET: Registered protocol family 1 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.808942] PCI: CLS 0 bytes, default 32 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.819194] workingset: timestamp_bits=14 max_order=16 bucket_order=2 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.835984] squashfs: version 4.0 (2009/01/31) Phillip Lougher Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.847472] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) © 2001-2006 Red Hat, Inc. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.867827] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 251) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.884247] mt7621_gpio 1e000600.gpio: registering 32 gpios Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.895591] mt7621_gpio 1e000600.gpio: registering 32 gpios Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.906891] mt7621_gpio 1e000600.gpio: registering 32 gpios Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.918810] Serial: 8250/16550 driver, 16 ports, IRQ sharing enabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.935439] printk: console [ttyS0] disabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.943918] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.961835] printk: console [ttyS0] enabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.978378] printk: bootconsole [early0] disabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 0.999760] mt7621-nand 1e003000.nand: Using programmed access timing: 31c07388 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.014619] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xf1 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.027277] nand: Winbond W29N01HV Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.034056] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.049140] mt7621-nand 1e003000.nand: ECC strength adjusted to 4 bits Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.062184] mt7621-nand 1e003000.nand: Using programmed access timing: 21005134 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.076743] mt7621-nand 1e003000.nand: Using programmed access timing: 21005134 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 1.091302] Scanning device for bad blocks Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.743427] 10 fixed-partitions partitions found on MTD device mt7621-nand Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.757118] Creating 10 MTD partitions on “mt7621-nand”: Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.767702] 0x000000000000-0x000000100000 : “u-boot” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.778901] 0x000000100000-0x000000200000 : “u-boot-env” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.790772] 0x000000200000-0x000000300000 : “Factory” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.801881] 0x000000300000-0x000002300000 : “firmware” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.813320] 2 fixed-partitions partitions found on MTD device firmware Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.826360] Creating 2 MTD partitions on “firmware”: Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.836264] 0x000000000000-0x000000440000 : “kernel” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.847111] 0x000000440000-0x000002000000 : “ubiconcat0” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.858807] 0x000002300000-0x000004300000 : “Firmware2” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.870332] 0x000004300000-0x000004500000 : “glbcfg” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.881189] 0x000004500000-0x000004600000 : “board_data” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.892796] 0x000004600000-0x000004800000 : “glbcfg2” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.904000] 0x000004800000-0x000004900000 : “board_data2” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.915774] 0x000004900000-0x000007f80000 : “ubiconcat1” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.935064] Concatenating MTD devices: Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.942601] (0): “ubiconcat0” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.948551] (1): “ubiconcat1” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.954441] into device “ubi-concat” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.961605] 1 fixed-partitions partitions found on MTD device ubi-concat Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.974957] Creating 1 MTD partitions on “ubi-concat”: Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 1.985199] 0x000000000000-0x000005240000 : “ubi” Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.039965] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.055918] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.073541] i2c /dev entries driver Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.082951] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.096374] mt7621-pci 1e140000.pcie: No bus range found for /pcie@1e140000, using [bus 00-ff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.113909] mt7621-pci 1e140000.pcie: MEM 0x0060000000..0x006fffffff → 0x0000000000 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.130213] mt7621-pci 1e140000.pcie: IO 0x001e160000..0x001e16ffff → 0x0000000000 Sun Mar 20 05:44:02 2022 kern.err kernel: [ 2.146607] mt7621-pci 1e140000.pcie: Parsing DT failed Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.159423] NET: Registered protocol family 10 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.169788] Segment Routing with IPv6 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.177168] NET: Registered protocol family 17 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.186193] bridge: filtering via arp/ip/ip6tables is no longer available by default. Update your scripts to load br_netfilter if you need this. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.212403] 8021q: 802.1Q VLAN Support v1.8 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.224204] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.263269] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=26) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.285273] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=27) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.307278] mt7530 mdio-bus:1f wan (uninitialized): PHY [mt7530-0:04] driver [MediaTek MT7530 PHY] (irq=28) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.329449] mt7530 mdio-bus:1f: configuring for fixed/rgmii link mode Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.346276] DSA: tree 0 setup Sun Mar 20 05:44:02 2022 kern.err kernel: [ 2.352505] rt2880-pinmux pinctrl: pcie is already enabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.363517] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges: Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.376875] mt7621-pci 1e140000.pcie: No bus range found for /pcie@1e140000, using [bus 00-ff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.394399] mt7621-pci 1e140000.pcie: MEM 0x0060000000..0x006fffffff → 0x0000000000 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.410727] mt7621-pci 1e140000.pcie: IO 0x001e160000..0x001e16ffff → 0x0000000000 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.427100] mt7621-pci-phy 1e149000.pcie-phy: PHY for 0xbe149000 (dual port = 1) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.442184] mt7621-pci-phy 1e14a000.pcie-phy: PHY for 0xbe14a000 (dual port = 0) Sun Mar 20 05:44:02 2022 kern.err kernel: [ 2.457156] mt7621-pci 1e140000.pcie: failed to parse bus ranges property: -22 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.571713] mt7621-pci-phy 1e149000.pcie-phy: Xtal is 40MHz Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.582830] mt7621-pci-phy 1e14a000.pcie-phy: Xtal is 40MHz Sun Mar 20 05:44:02 2022 kern.err kernel: [ 2.694062] mt7621-pci 1e140000.pcie: pcie0 no card, disable it (RST & CLK) Sun Mar 20 05:44:02 2022 kern.err kernel: [ 2.707925] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.721796] mt7621-pci 1e140000.pcie: PCIE1 enabled Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.731515] mt7621-pci 1e140000.pcie: PCI coherence region base: 0x60000000, mask/settings: 0xf0000002 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.750219] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.762894] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.776588] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.790295] pci_bus 0000:00: root bus resource [bus 00-ff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.801219] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff]) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.821530] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.833505] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.845989] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.860032] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.871538] pci 0000:00:00.0: supports D1 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.879523] pci 0000:00:00.0: PME# supported from D0 D1 D3hot Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.892366] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.908578] pci 0000:01:00.0: [14c3:7615] type 00 class 0x000280 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.920602] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.934643] pci 0000:01:00.0: reg 0x10: [mem size 0x00100000 64bit] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.947282] 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) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.978222] pci 0000:00:00.0: PCI bridge to [bus 01-ff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 2.988665] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.000800] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.014318] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff pref] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.028705] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.041932] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.055109] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.068981] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.082499] pci 0000:00:00.0: BAR 9: assigned [mem 0x60100000-0x601fffff pref] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.096884] pci 0000:00:00.0: BAR 1: assigned [mem 0x60200000-0x6020ffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.110422] pci 0000:00:00.0: BAR 7: assigned [io 0x1e160000-0x1e160fff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.123949] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff 64bit] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.138517] pci 0000:00:00.0: PCI bridge to [bus 01] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.148403] pci 0000:00:00.0: bridge window [io 0x1e160000-0x1e160fff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.161923] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.175445] pci 0000:00:00.0: bridge window [mem 0x60100000-0x601fffff pref] Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 3.192129] UBI: auto-attach mtd12 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 3.198974] ubi0: attaching mtd12 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 3.209271] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control rx/tx Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.046419] ubi0: scanning is finished Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.070684] ubi0: attached mtd12 (name “ubi”, size 82 MiB) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.081677] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.095375] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.108900] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.122773] ubi0: good PEBs: 658, bad PEBs: 0, corrupted PEBs: 0 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.134733] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.149134] ubi0: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 1647708161 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.167321] ubi0: available PEBs: 0, total reserved PEBs: 658, PEBs reserved for bad PEB handling: 13 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.185718] ubi0: background thread “ubi_bgt0d” started, PID 456 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 4.188053] block ubiblock0_0: created from ubi0:0(rootfs) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 4.208686] ubiblock: device ubiblock0_0 (rootfs) set to be root filesystem Sun Mar 20 05:44:02 2022 kern.info kernel: [ 4.228920] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 4.247324] Freeing unused kernel memory: 1264K Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 4.256398] This architecture does not have kernel memory protection. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 4.269253] Run /sbin/init as init process Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 4.277389] with arguments: Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 4.277394] /sbin/init Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 4.277399] with environment: Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 4.277404] HOME=/ Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 4.277409] TERM=linux Sun Mar 20 05:44:02 2022 user.info kernel: [ 4.803545] init: Console is alive Sun Mar 20 05:44:02 2022 user.info kernel: [ 4.810767] init: - watchdog - Sun Mar 20 05:44:02 2022 user.info kernel: [ 5.627593] kmodloader: loading kernel modules from /etc/modules-boot.d/* Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.730364] usbcore: registered new interface driver usbfs Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.741475] usbcore: registered new interface driver hub Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.752235] usbcore: registered new device driver usb Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 5.772924] xhci-mtk 1e1c0000.xhci: supply vbus not found, using dummy regulator Sun Mar 20 05:44:02 2022 kern.warn kernel: [ 5.787944] xhci-mtk 1e1c0000.xhci: supply vusb33 not found, using dummy regulator Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.803315] xhci-mtk 1e1c0000.xhci: xHCI Host Controller Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.813955] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 1 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.838547] xhci-mtk 1e1c0000.xhci: hcc params 0x01401198 hci version 0x96 quirks 0x0000000000290010 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.856837] xhci-mtk 1e1c0000.xhci: irq 20, io mem 0x1e1c0000 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.869553] hub 1-0:1.0: USB hub found Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.877176] hub 1-0:1.0: 2 ports detected Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.885848] xhci-mtk 1e1c0000.xhci: xHCI Host Controller Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.896548] xhci-mtk 1e1c0000.xhci: new USB bus registered, assigned bus number 2 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.911492] xhci-mtk 1e1c0000.xhci: Host supports USB 3.0 SuperSpeed Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.924378] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.941458] hub 2-0:1.0: USB hub found Sun Mar 20 05:44:02 2022 kern.info kernel: [ 5.949101] hub 2-0:1.0: 1 port detected Sun Mar 20 05:44:02 2022 user.info kernel: [ 5.964096] kmodloader: done loading kernel modules from /etc/modules-boot.d/* Sun Mar 20 05:44:02 2022 user.info kernel: [ 5.988781] init: - preinit - Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 6.873823] random: jshn: uninitialized urandom read (4 bytes read) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 6.955654] random: jshn: uninitialized urandom read (4 bytes read) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 7.961137] random: jshn: uninitialized urandom read (4 bytes read) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 8.013025] random: jshn: uninitialized urandom read (4 bytes read) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 8.057860] random: jshn: uninitialized urandom read (4 bytes read) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 8.266113] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode Sun Mar 20 05:44:02 2022 kern.info kernel: [ 8.282561] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx Sun Mar 20 05:44:02 2022 kern.info kernel: [ 8.288678] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode Sun Mar 20 05:44:02 2022 kern.info kernel: [ 8.312964] 8021q: adding VLAN 0 to HW filter on device lan1 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 8.327362] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready Sun Mar 20 05:44:02 2022 kern.info kernel: [ 11.450014] mt7530 mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control rx/tx Sun Mar 20 05:44:02 2022 kern.info kernel: [ 11.464999] IPv6: ADDRCONF(NETDEV_CHANGE): lan1: link becomes ready Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.522672] UBIFS (ubi0:1): Mounting in unauthenticated mode Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.534268] UBIFS (ubi0:1): background thread “ubifs_bgt0_1” started, PID 613 Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.617782] UBIFS (ubi0:1): recovery needed Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.728140] UBIFS (ubi0:1): recovery completed Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.737139] UBIFS (ubi0:1): UBIFS: mounted UBI device 0, volume 1, name “rootfs_data” Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.752742] UBIFS (ubi0:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.772485] UBIFS (ubi0:1): FS size: 76185600 bytes (72 MiB, 600 LEBs), journal size 3809280 bytes (3 MiB, 30 LEBs) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.793256] UBIFS (ubi0:1): reserved for root: 3598434 bytes (3514 KiB) Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 12.806430] UBIFS (ubi0:1): media format: w5/r0 (latest is w5/r0), UUID 554F5A02-60E2-4815-94D2-DBBD68383DB3, small LPT model Sun Mar 20 05:44:02 2022 user.info kernel: [ 12.842222] mount_root: switching to ubifs overlay Sun Mar 20 05:44:02 2022 user.warn kernel: [ 12.872143] urandom-seed: Seeding with /etc/urandom.seed Sun Mar 20 05:44:02 2022 kern.info kernel: [ 13.099461] mt7530 mdio-bus:1f lan1: Link is Down Sun Mar 20 05:44:02 2022 user.info kernel: [ 13.123170] procd: - early - Sun Mar 20 05:44:02 2022 user.info kernel: [ 13.129202] procd: - watchdog - Sun Mar 20 05:44:02 2022 user.info kernel: [ 13.788570] procd: - watchdog - Sun Mar 20 05:44:02 2022 user.info kernel: [ 13.795513] procd: - ubus - Sun Mar 20 05:44:02 2022 user.info kernel: [ 13.972280] procd: - init - Sun Mar 20 05:44:02 2022 user.info kernel: [ 14.696472] kmodloader: loading kernel modules from /etc/modules.d/* Sun Mar 20 05:44:02 2022 user.info kernel: [ 14.878270] urngd: v1.0.2 started. Sun Mar 20 05:44:02 2022 kern.info kernel: [ 14.897363] Loading modules backported from Linux version v5.15.8-0-g43e577d7a2cb Sun Mar 20 05:44:02 2022 kern.info kernel: [ 14.912349] Backport generated by backports.git v5.15.8-1-0-g83f664bb Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 15.064962] random: crng init done Sun Mar 20 05:44:02 2022 kern.notice kernel: [ 15.071900] random: 5 urandom warning(s) missed due to ratelimiting Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.093665] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=23 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.104543] pci 0000:00:00.0: enabling device (0004 → 0007) Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.115829] mt7615e 0000:01:00.0: enabling device (0000 → 0002) Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 15.140466] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht' Sun Mar 20 05:44:02 2022 kern.debug kernel: [ 15.146814] ieee80211 phy1: Selected rate control algorithm 'minstrel_ht' Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.159405] mt7615e 0000:01:00.0: HW/SW Version: 0x8a108a10, Build Time: 20180518100604a Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.159405] Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.233918] PPP generic driver version 2.4.2 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.249916] NET: Registered protocol family 24 Sun Mar 20 05:44:02 2022 user.info kernel: [ 15.275448] kmodloader: done loading kernel modules from /etc/modules.d/* Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.516712] mt7615e 0000:01:00.0: N9 Firmware Version: _reserved_, Build Time: 20200814163649 Sun Mar 20 05:44:02 2022 kern.info kernel: [ 15.640762] mt7615e 0000:01:00.0: CR4 Firmware Version: _reserved_, Build Time: 20190121161307 Sun Mar 20 05:44:03 2022 user.notice dnsmasq: DNS rebinding protection is active, will discard upstream RFC1918 responses! Sun Mar 20 05:44:03 2022 user.notice dnsmasq: Allowing 127.0.0.0/8 responses Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: started, version 2.86 cachesize 150 Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: DNS service limited to local subnets Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for test Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for onion Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for localhost Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for local Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for invalid Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for bind Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: using only locally-known addresses for lan Sun Mar 20 05:44:04 2022 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses Sun Mar 20 05:44:04 2022 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 addresses Sun Mar 20 05:44:04 2022 authpriv.info dropbear[1395]: Not backgrounding Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: bonding Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: 8021ad Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: 8021q Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: macvlan Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: veth Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: bridge Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: Network device Sun Mar 20 05:44:06 2022 user.notice : Added device handler type: tunnel Sun Mar 20 05:44:07 2022 daemon.notice wpa_supplicant[1567]: Successfully initialized wpa_supplicant Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/network reload dependency on /etc/config/dhcp Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/wireless reload dependency on /etc/config/network Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/luci-splash Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/qos Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/firewall reload dependency on /etc/config/miniupnpd Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/dhcp reload dependency on /etc/config/odhcpd Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up non-init /etc/config/fstab reload handler: /sbin/block mount Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/system reload trigger for non-procd /etc/init.d/led Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/system reload dependency on /etc/config/luci_statistics Sun Mar 20 05:44:08 2022 user.notice ucitrack: Setting up /etc/config/system reload dependency on /etc/config/dhcp Sun Mar 20 05:44:09 2022 daemon.notice procd: /etc/rc.d/S96led: setting up led wan Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.076587] mtk_soc_eth 1e100000.ethernet eth0: Link is Down Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.100533] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.116712] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.121333] device eth0 entered promiscuous mode Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.143397] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.157923] 8021q: adding VLAN 0 to HW filter on device lan1 Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.172406] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.186228] br-lan: port 1(lan1) entered blocking state Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.196751] br-lan: port 1(lan1) entered disabled state Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.208670] device lan1 entered promiscuous mode Sun Mar 20 05:44:09 2022 daemon.notice netifd: Interface 'lan' is enabled Sun Mar 20 05:44:09 2022 daemon.notice netifd: Interface 'lan' is setting up now Sun Mar 20 05:44:09 2022 daemon.notice netifd: Interface 'lan' is now up Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.236047] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.249883] 8021q: adding VLAN 0 to HW filter on device lan2 Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.264696] br-lan: port 2(lan2) entered blocking state Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.275594] br-lan: port 2(lan2) entered disabled state Sun Mar 20 05:44:09 2022 kern.info kernel: [ 24.289320] device lan2 entered promiscuous mode Sun Mar 20 05:44:09 2022 daemon.notice netifd: Interface 'loopback' is enabled Sun Mar 20 05:44:09 2022 daemon.notice netifd: Interface 'loopback' is setting up now Sun Mar 20 05:44:09 2022 daemon.notice netifd: Interface 'loopback' is now up Sun Mar 20 05:44:10 2022 kern.info kernel: [ 24.319453] mt7530 mdio-bus:1f wan: configuring for phy/gmii link mode Sun Mar 20 05:44:10 2022 kern.info kernel: [ 24.333051] 8021q: adding VLAN 0 to HW filter on device wan Sun Mar 20 05:44:10 2022 daemon.notice netifd: Interface 'wan' is enabled Sun Mar 20 05:44:10 2022 daemon.notice netifd: Interface 'wan6' is enabled Sun Mar 20 05:44:10 2022 daemon.notice netifd: Network device 'eth0' link is up Sun Mar 20 05:44:10 2022 daemon.notice netifd: Network device 'lo' link is up Sun Mar 20 05:44:10 2022 daemon.notice netifd: Interface 'loopback' has link connectivity Sun Mar 20 05:44:10 2022 user.notice firewall: Reloading firewall due to ifup of lan (br-lan) Sun Mar 20 05:44:10 2022 daemon.info procd: - init complete - Sun Mar 20 05:44:11 2022 daemon.err odhcpd[1684]: Failed to send to ff02::1%lan@br-lan (Address not available) Sun Mar 20 05:44:11 2022 daemon.notice hostapd: Configuration file: /var/run/hostapd-phy0.conf (phy wlan0) -→ new PHY Sun Mar 20 05:44:12 2022 kern.info kernel: [ 26.879051] mt7530 mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control rx/tx Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.735954] br-lan: port 3(wlan0) entered blocking state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.746667] br-lan: port 3(wlan0) entered disabled state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.757927] device wlan0 entered promiscuous mode Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.767814] br-lan: port 3(wlan0) entered blocking state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.778536] br-lan: port 3(wlan0) entered forwarding state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.792811] br-lan: port 1(lan1) entered blocking state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.803356] br-lan: port 1(lan1) entered forwarding state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.815207] br-lan: port 3(wlan0) entered disabled state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.826625] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready Sun Mar 20 05:44:19 2022 daemon.notice netifd: Network device 'lan1' link is up Sun Mar 20 05:44:19 2022 daemon.notice netifd: bridge 'br-lan' link is up Sun Mar 20 05:44:19 2022 daemon.notice netifd: Interface 'lan' has link connectivity Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.861427] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.874620] br-lan: port 3(wlan0) entered blocking state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.885537] br-lan: port 3(wlan0) entered forwarding state Sun Mar 20 05:44:19 2022 daemon.notice hostapd: wlan0: interface state UNINITIALIZED→ENABLED Sun Mar 20 05:44:19 2022 daemon.notice hostapd: wlan0: AP-ENABLED Sun Mar 20 05:44:19 2022 daemon.notice hostapd: Configuration file: /var/run/hostapd-phy1.conf (phy wlan1) -→ new PHY Sun Mar 20 05:44:19 2022 daemon.err odhcpd[1684]: Failed to send to fe80::257a:ac09:8cc1:c30b%lan@br-lan (Address not available) Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.933627] br-lan: port 4(wlan1) entered blocking state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.944308] br-lan: port 4(wlan1) entered disabled state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.955795] device wlan1 entered promiscuous mode Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.965694] br-lan: port 4(wlan1) entered blocking state Sun Mar 20 05:44:19 2022 kern.info kernel: [ 33.976447] br-lan: port 4(wlan1) entered forwarding state Sun Mar 20 05:44:19 2022 daemon.notice hostapd: wlan1: interface state UNINITIALIZED→HT_SCAN Sun Mar 20 05:44:19 2022 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses Sun Mar 20 05:44:19 2022 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 0 addresses Sun Mar 20 05:44:19 2022 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c.2409 - 0 addresses Sun Mar 20 05:44:19 2022 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 addresses Sun Mar 20 05:44:19 2022 daemon.notice hostapd: wlan1: interface state HT_SCAN→ENABLED Sun Mar 20 05:44:19 2022 daemon.notice hostapd: wlan1: AP-ENABLED Sun Mar 20 05:44:19 2022 kern.info kernel: [ 34.237052] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready Sun Mar 20 05:44:20 2022 daemon.err odhcpd[1684]: Failed to send to ff02::1%lan@br-lan (Address not available) Sun Mar 20 05:44:20 2022 daemon.notice netifd: Wireless device 'radio0' is now up Sun Mar 20 05:44:20 2022 daemon.notice netifd: Network device 'wlan0' link is up Sun Mar 20 05:44:20 2022 daemon.notice netifd: Wireless device 'radio1' is now up Sun Mar 20 05:44:20 2022 daemon.notice netifd: Network device 'wlan1' link is up Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: exiting on receipt of SIGTERM Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: started, version 2.86 cachesize 150 Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: DNS service limited to local subnets Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: compile time options: IPv6 GNU-getopt no-DBus UBus no-i18n no-IDN DHCP no-DHCPv6 no-Lua TFTP no-conntrack no-ipset no-auth no-cryptohash no-DNSSEC no-ID loop-detect inotify dumpfile Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: UBus support enabled: connected to system bus Sun Mar 20 05:44:22 2022 daemon.info dnsmasq-dhcp[1]: DHCP, IP range 192.168.1.100 -- 192.168.1.249, lease time 12h Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for test Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for onion Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for localhost Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for local Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for invalid Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for bind Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: using only locally-known addresses for lan Sun Mar 20 05:44:22 2022 daemon.warn dnsmasq[1]: no servers found in /tmp/resolv.conf.d/resolv.conf.auto, will retry Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses Sun Mar 20 05:44:22 2022 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 addresses Sun Mar 20 05:44:22 2022 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses Sun Mar 20 05:44:23 2022 daemon.info dnsmasq-dhcp[1]: DHCPREQUEST(br-lan) 192.168.1.221 00:26:80:1c:b0:a6 Sun Mar 20 05:44:23 2022 daemon.info dnsmasq-dhcp[1]: DHCPACK(br-lan) 192.168.1.221 00:26:80:1c:b0:a6 Sun Mar 20 05:44:24 2022 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 0 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq[1]: read /etc/hosts - 4 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq[1]: read /tmp/hosts/dhcp.cfg01411c - 2 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq[1]: read /tmp/hosts/odhcpd - 1 addresses Sun Mar 20 05:44:24 2022 daemon.info dnsmasq-dhcp[1]: read /etc/ethers - 0 addresses Sun Mar 20 05:44:29 2022 user.info : luci: accepted login on / for root from 192.168.1.221


Online OpenWrt builder

Common

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/02/12 11:13
  • by 127.0.0.1