[OpenWrt Wiki] TP-Link TL-WPA8631P v3 (2024)

None at this time.

The Partition layout md5sum shown on this page is calculated from the original stock firmware upgrade file with this command. Matching md5sums implies matching partition tables. This hash is just used for discussion and in the wiki to refer to the different layouts with a specific name.

grep -ao "partition .*$" wpa8631pv3_eu-up-ver3-0-0-P1-20210514-rel45003-APPLC.bin | md5sum
md5sum 0771948573fffa726b8927ca6259ea16
OpenWRT firmware tplink_tl-wpa8631p-v3
Partition Base Size OpenWrt Dev
fs-uboot 0x00000 0x20000 mtd0 “u-boot”
os-image 0x20000 0x330000 mtd1 “firmware”
* mtd2 “kernel”
* mtd3 “rootfs”
* mtd4 “rootfs_data”
file-system 0x350000 0x3e0000
partition-table 0x730000 0x02000 mtd5 “config”
default-mac 0x732000 0x00020
pin 0x732100 0x00020
device-id 0x732200 0x00030
default-region 0x732300 0x00010
product-info 0x732400 0x00200
extra-para 0x732600 0x00200
soft-version 0x732800 0x00200
support-list 0x732a00 0x00100
profile 0x732b00 0x00100
default-config 0x732c00 0x00800
plc-type 0x733400 0x00020
default-pib 0x733500 0x06000
user-config 0x740000 0x10000
plc-pib 0x750000 0x10000
plc-nvm 0x760000 0x90000
radio 0x7f0000 0x10000 mtd6 “radio”

This section deals with

  • How you install OpenWrt from a device freshly opened

  • The steps required such as reset to factory defaults if the device has already been configured

Note: Reset router to factory defaults if it has been previously configured.

  • 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.

Note: It is important that you put the firmware image into the ramdisk (/tmp) before you start flashing.

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

The default network configuration is:

Interface Name Description Default configuration
br-lan LAN & WiFi 192.168.1.1/24
vlan0 (eth0.0) LAN ports (1 to 3), PLC None
wlan0 WiFi 2.4 GHz Disabled
wlan1 WiFi 5 GHz Disabled
Port Switch port
PLC 0
LAN 1 1
LAN 2 2
LAN 3 3
CPU 6

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

The TP-Link TL-WPA8631P has the following buttons:

BUTTON Event
Reset reset
LED lights_toggle
Pair BTN_1
Wi-Fi rfkill

To reproduce the functionality of the `LED` and `Pair` buttons in the stock firmware, you can copy+paste these commands into a terminal on the router:

## lights_toggle - LED buttoncat > /etc/rc.button/lights_toggle <<'EOF'#!/bin/sh[ "${ACTION}" = "released" ] || exit 0control="/sys/class/gpio/tp-link:led:control/value"if [ "$(cat ${control})" = "0" ]; then logger -p user.notice -t button "Enabling LEDs" echo "1" > "$control"else logger -p user.notice -t button "Disabling LEDs" echo "0" > "$control"fireturn 0EOFchmod +x /etc/rc.button/lights_toggleecho "/etc/rc.button/lights_toggle" >> /etc/sysupgrade.conf## BTN_1 - Powerline Pair buttonopkg install open-plc-utils-plctoolcat > /etc/rc.button/BTN_1 <<'EOF'#!/bin/sh[ "${ACTION}" = "released" ] || exit 0. /lib/functions/system.shplc_mac="$(macaddr_add $(get_mac_label) +2)"plc_interface="br-lan"if [ "$SEEN" -ge 1 -a "$SEEN" -le 4 ]; then logger -p user.notice -t button "Sending 'join' command to Powerline PLC" plctool -i "$plc_interface" -B join "$plc_mac"elif [ "$SEEN" -ge 8 ]; then logger -p user.notice -t button "Sending 'leave' command to Powerline PLC" plctool -i "$plc_interface" -B leave "$plc_mac"fireturn 0EOFchmod +x /etc/rc.button/BTN_1echo "/etc/rc.button/BTN_1" >> /etc/sysupgrade.conf

LuCI does not have any native Powerline PLC management, but you can cover the basics using luci-app-commands:

opkg install luci-app-commands open-plc-utils-plctool open-plc-utils-plcrate open-plc-utils-hpavkeys. /lib/functions/system.shplc_mac="$(macaddr_add $(get_mac_label) +2)"plc_interface="br-lan"uci add luci commanduci set luci.@command[-1].name="Powerline Status"uci set luci.@command[-1].command="plctool -i $plc_interface -m $plc_mac"uci add luci commanduci set luci.@command[-1].name="Powerline Join"uci set luci.@command[-1].command="plctool -i $plc_interface -B join $plc_mac"uci add luci commanduci set luci.@command[-1].name="Powerline Leave"uci set luci.@command[-1].command="plctool -i $plc_interface -B leave $plc_mac"uci add luci commanduci set luci.@command[-1].name="Powerline Rates"uci set luci.@command[-1].command="plcrate -i $plc_interface"uci add luci commanduci set luci.@command[-1].name="Powerline Set NMK"uci set luci.@command[-1].command="powerline-set-nmk $plc_interface $plc_mac"uci set luci.@command[-1].param="1"uci commit luci## Powerline Set Network Membership Key scriptcat > /usr/sbin/powerline-set-nmk <<'EOF'#!/bin/shif [ "$#" -ne 3 ]; then echo "Usage: $0 INTERFACE MAC PASSWORD" >&2 exit 1fiNMK=$(echo "$3" | hpavkeys -M)plctool -i "$1" -M -K "$NMK" "$2"EOFchmod +x /usr/sbin/powerline-set-nmkecho "/usr/sbin/powerline-set-nmk" >> /etc/sysupgrade.conf

By default, the Powerline, Ethernet LAN and WiFi AP interfaces are all bridged together into br-lan. This covers the use case of extending an existing network.

To configure the Powerline port as a seperate routable interface isolated from the LAN, do the following through the command line or UI:

# Move "plc0" from the "br-lan" bridge to its own "powerline" bridgeuci del_list network.@device[0].ports='plc0'uci add network deviceuci set network.@device[-1].type='bridge'uci set network.@device[-1].name='powerline'uci add_list network.@device[-1].ports='plc0'# Create a new WAN DHCP interface for the "powerline" bridge deviceuci set network.wan=interfaceuci set network.wan.proto='dhcp'uci set network.wan.device='powerline'uci set network.wan.force_link='1'uci add_list firewall.@zone[1].network='wan'uci commit networkuci commit firewall

For any open-plc-utils commands you use, you will need to change the -i argument from br-lan to the powerline interface. E.g. plcrate -i powerline. (Note, open-plc-utils can't understand interface names like plc0@eth0, which is why we create another bridge interface instead of using the port directly).

Similar to tl-wpa8630p_v2.

To stop autoboot and enter the U-Boot console, press 4 after power-on.

4: System Enter Boot Command Line Interface.U-Boot 1.1.3 (Sep 27 2020 - 16:51:13)MT7621 # help ? - alias for 'help'bootm - boot application image from memorycp - memory copyerase - erase SPI FLASH memorygo - start application at address 'addr'help - print online helploadb - load binary file over serial line (kermit mode)md - memory displaymdio - Ralink PHY register R/W command !!mm - memory modify (auto-incrementing)nm - memory modify (constant address)printenv- print environment variablesreset - Perform RESET of the CPUrf - read/write rf registersaveenv - save environment variables to persistent storagesetenv - set environment variablesspi- spi commandtftpboot- boot image via network using TFTP protocolversion - print monitor versionMT7621 # printenvbootcmd=tftpbootdelay=1baudrate=57600ethaddr="00:AA:BB:CC:DD:10"ipaddr=192.168.0.254serverip=192.168.0.184stdin=serialstdout=serialstderr=serialEnvironment size: 153/4092 bytes

=================================================================== MT7621 stage1 code Mar 12 2015 14:43:30 (ASIC) CPU=500000000 HZ BUS=125000000 HZ==================================================================Change MPLL source from XTAL to CR...do MEMPLL setting..MEMPLL Config : 0x110000003PLL mode + External loopback=== XTAL-40Mhz === DDR-800Mhz ===PLL4 FB_DL: 0x4, 1/0 = 556/468 11000000PLL3 FB_DL: 0xe, 1/0 = 570/454 39000000PLL2 FB_DL: 0x10, 1/0 = 643/381 41000000do DDR setting..[01F40000]Apply DDR2 Setting...(use default 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 00001:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00002:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00003:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00004:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00005:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00006:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 10007:| 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 10008:| 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 00009:| 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0000A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0000B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0000C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0000D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0000E:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0000F:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00010:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00011:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00012:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00013:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00014:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00015:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00016:| 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 00017:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00018:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 00019:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001E:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0001F:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0DRAMC_DQSCTL1[0e0]=1A000000DRAMC_DQSGCTL[124]=80000000rank 0 coarse = 8rank 0 fine = 48B:| 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0opt_dle value:8DRAMC_DDR2CTL[07c]=40001203DRAMC_PADCTL4[0e4]=00000015DRAMC_DQIDLY1[210]=080B0809DRAMC_DQIDLY2[214]=05080707DRAMC_DQIDLY3[218]=0B0A0A07DRAMC_DQIDLY4[21c]=09090A05DRAMC_R0DELDLY[018]=00002C2B==================================================================RXDQS perbit delay software calibration ==================================================================1.0-15 bit dq delay value==================================================================bit| 0 1 2 3 4 5 6 7 8 9--------------------------------------0 | 7 6 9 7 7 6 8 5 6 9 10 | 9 11 3 9 9 7 --------------------------------------==================================================================2.dqs windowx=pass dqs delay value (min~max)center y=0-7bit DQ of every groupinput delay:DQS0 =43 DQS1 = 44==================================================================bitDQS0 bit DQS10 (1~82)41 8 (1~86)431 (1~81)41 9 (1~86)432 (1~81)41 10 (1~86)433 (1~83)42 11 (1~87)444 (1~85)43 12 (1~84)425 (1~83)42 13 (1~85)436 (1~86)43 14 (1~88)447 (1~85)43 15 (1~84)42==================================================================3.dq delay value last==================================================================bit| 0 1 2 3 4 5 6 7 8 9--------------------------------------0 | 9 8 11 8 7 7 8 5 7 10 10 | 10 11 5 10 9 9 ==================================================================================================================================== 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 = ffff0000dqs_perbyte_dly.last_dqdly_pass[0]=15, finish count=1 dqs_perbyte_dly.last_dqdly_pass[1]=15, finish count=2 byte:0, (DQS,DQ)=(8,8)byte:1, (DQS,DQ)=(8,8)DRAMC_DQODLY1[200]=88888888DRAMC_DQODLY2[204]=8888888820,data:88[EMI] DRAMC calibration passed=================================================================== MT7621 stage1 code done CPU=500000000 HZ BUS=125000000 HZ===================================================================U-Boot 1.1.3 (Sep 27 2020 - 16:51:13)Board: Ralink APSoC DRAM: 64 MBrelocate_code Pointer at: 83fb8000Config XHCI 40M PLL flash manufacture id: 20, device id 70 17Warning: un-recognized chip ID, please update bootloader!*** Warning - bad CRC, using default environment===========================TL-WPA8631Pv3 PERSET GPIO init in uboot=========================read register GPIO_MODE(0xbe000060), value = 0x0004d52cset register GPIO_MODE(0xbe000060), value = 0x0004d52cread register GPIO_CTRL_0(0xbe000600), value = 0x35c00000set register GPIO_CTRL_0(0xbe000600), value = 0x35c80000read register GPIO_DATA_0(0xbe000620), value = 0xc83de81eset register GPIO_DATA_0(0xbe000620), value = 0xc835e81e=========================TL-WPA8631Pv3 PERSET GPIO init in uboot done====================================================================== Ralink UBoot Version: 4.3.0.0-------------------------------------------- ASIC MT7621A DualCore (MAC to MT7530 Mode)DRAM_CONF_FROM: Auto-Detection DRAM_TYPE: DDR2 DRAM bus: 16 bitXtal Mode=3 OCP Ratio=1/4Flash component: SPI FlashDate:Sep 27 2020 Time:16:51:13============================================ icache: sets:256, ways:4, linesz:32 ,total:32768dcache: sets:256, ways:4, linesz:32 ,total:32768 ##### The CPU freq = 880 MHZ #### estimate memory size =64 Mbytes#Reset_MT7530=========TL-WPA8631Pv3 GPIO init in uboot=========RALINK_PIO_BASE(0xbe000600) Reg: 0x4852cRALINK_PIO_BASE + 4(0xbe000604) Reg: 0x0RALINK_GPIOMODE_REG(0xbe000060) Reg: 0x4852c=========TL-WPA8631Pv3 GPIO init in uboot done=========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. 0 3: System Boot system code via Flash.(ntohs(targetModel[0]) : 0x0376, ntohs(value[0]) : 0x0376(ntohs(targetModel[1]) : 0x6376, ntohs(value[1]) : 0x6376## Booting image at bfc20000 ...text base: 81001000entry point: 81522cf0 Uncompressing Kernel Image ... OKNo initrd## Transferring control to Linux (at address 81522cf0) ...## Giving linux memsize in MB, 64Starting kernel ...LINUX started... THIS IS ASICSDK 5.0.S.0Linux version 3.10.108+ (jenkins@mobile-System) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 unknown) ) #498 SMP Sun Sep 27 16:56:29 CST 2020 The CPU feqenuce set to 880 MHzGCMP presentCPU0 revision is: 0001992f (MIPS 1004Kc)Software DMA cache coherencyDetermined physical RAM map: memory: 04000000 @ 00000000 (usable)User-defined physical RAM map: memory: 04000000 @ 00000000 (usable)Initrd not found or empty - disabling initrdZone ranges: DMA [mem 0x00000000-0x00ffffff] Normal [mem 0x01000000-0x03ffffff]Movable zone start for each nodeEarly memory node ranges node 0: [mem 0x00000000-0x03ffffff]Detected 3 available secondary CPU(s)Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes.Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytesMIPS secondary cache 256kB, 8-way, linesize 32 bytes.PERCPU: Embedded 7 pages/cpu @818cc000 s5952 r8192 d14528 u32768Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256ZQQ : Kernel command line: console=ttyS1,57600n8 root=/dev/mtdblock5 console=ttyS1,57600 root=/dev/mtdblock2 rootfstype=squashfs init=/etc/preinit mtdparts=raspi:128k(fs-uboot),3264k(os-image),3968k(file-system),64k@0x7f0000(radio) mem=64MPID hash table entries: 256 (order: -2, 1024 bytes)Dentry cache hash table entries: 8192 (order: 3, 32768 bytes)Inode-cache hash table entries: 4096 (order: 2, 16384 bytes)Writing ErrCtl register=00007111Readback ErrCtl register=00007111Memory: 56352k/65536k available (5291k kernel code, 9184k reserved, 2788k data, 232k init, 0k highmem)Hierarchical RCU implementation.RCU debugfs-based tracing is enabled.Additional per-CPU info printed with stalls.NR_IRQS:128console [ttyS1] enabledCalibrating delay loop... 577.53 BogoMIPS (lpj=1155072)pid_max: default: 32768 minimum: 301Mount-cache hash table entries: 512launch: starting cpu1launch: cpu1 gone!Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes.Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytesMIPS secondary cache 256kB, 8-way, linesize 32 bytes.CPU1 revision is: 0001992f (MIPS 1004Kc)Synchronize counters for CPU 1: done.launch: starting cpu2launch: cpu2 gone!Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes.Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytesMIPS secondary cache 256kB, 8-way, linesize 32 bytes.CPU2 revision is: 0001992f (MIPS 1004Kc)Synchronize counters for CPU 2: done.launch: starting cpu3launch: cpu3 gone!Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes.Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytesMIPS secondary cache 256kB, 8-way, linesize 32 bytes.CPU3 revision is: 0001992f (MIPS 1004Kc)Synchronize counters for CPU 3: done.Brought up 4 CPUsNET: Registered protocol family 16release PCIe RST: RALINK_RSTCTRL = 7000000PCIE PHY initialize***** Xtal 40MHz *****start MT7621 PCIe register accessRALINK_RSTCTRL = 7000000RALINK_CLKCFG1 = 77ffeff8*************** MT7621 PCIe RC mode *************PCIE2 no card, disable it(RST&CLK)pcie_link status = 0x3RALINK_RSTCTRL= 3000000*** Configure Device number setting of Virtual PCI-PCI bridge ***RALINK_PCI_PCICFG_ADDR = 21007f2 -> 21007f2PCIE0 enabledPCIE1 enabledinterrupt enable status: 300000Port 1 N_FTS = 1b105000Port 0 N_FTS = 1b105000config reg doneinit_rt2880pci donebio: create slab <bio-0> at 0PCI host bridge to bus 0000:00pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff]pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff]pci_bus 0000:00: No busn resource found for root bus, will use [bus 00-ff]pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguringpci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguringpci 0000:00:00.0: BAR 0: can't assign mem (size 0x80000000)pci 0000:00:01.0: BAR 0: can't assign mem (size 0x80000000)pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff]pci 0000:00:01.0: BAR 9: assigned [mem 0x60100000-0x602fffff pref]pci 0000:00:00.0: BAR 1: assigned [mem 0x60300000-0x6030ffff]pci 0000:00:01.0: BAR 1: assigned [mem 0x60310000-0x6031ffff]pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff]pci 0000:00:00.0: PCI bridge to [bus 01]pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff]pci 0000:02:00.0: BAR 0: assigned [mem 0x60100000-0x601fffff 64bit pref]pci 0000:02:00.0: BAR 2: assigned [mem 0x60200000-0x60203fff 64bit pref]pci 0000:02:00.0: BAR 4: assigned [mem 0x60204000-0x60204fff 64bit pref]pci 0000:00:01.0: PCI bridge to [bus 02]pci 0000:00:01.0: bridge window [mem 0x60100000-0x602fffff pref]PCI: Enabling device 0000:00:00.0 (0004 -> 0006)PCI: Enabling device 0000:00:01.0 (0004 -> 0006)BAR0 at slot 0 = 0bus=0x0, slot = 0x0res[0]->start = 0res[0]->end = 0res[1]->start = 60300000res[1]->end = 6030ffffres[2]->start = 0res[2]->end = 0res[3]->start = 0res[3]->end = 0res[4]->start = 0res[4]->end = 0res[5]->start = 0res[5]->end = 0BAR0 at slot 1 = 0bus=0x0, slot = 0x1res[0]->start = 0res[0]->end = 0res[1]->start = 60310000res[1]->end = 6031ffffres[2]->start = 0res[2]->end = 0res[3]->start = 0res[3]->end = 0res[4]->start = 0res[4]->end = 0res[5]->start = 0res[5]->end = 0bus=0x1, slot = 0x0, irq=0x4res[0]->start = 60000000res[0]->end = 600fffffres[1]->start = 0res[1]->end = 0res[2]->start = 0res[2]->end = 0res[3]->start = 0res[3]->end = 0res[4]->start = 0res[4]->end = 0res[5]->start = 0res[5]->end = 0bus=0x2, slot = 0x1, irq=0x18res[0]->start = 60100000res[0]->end = 601fffffres[1]->start = 0res[1]->end = 0res[2]->start = 60200000res[2]->end = 60203fffres[3]->start = 0res[3]->end = 0res[4]->start = 60204000res[4]->end = 60204fffres[5]->start = 0res[5]->end = 0Switching to clocksource Ralink Systick timerNET: Registered protocol family 2Clockevents: could not switch to one-shot mode:Clockevents: could not switch to one-shot mode: MIPS is not functional. MIPS is not functional.Clockevents: could not switch to one-shot mode: MIPS is not functional.Could not switch to high resolution mode on CPU 0Could not switch to high resolution mode on CPU 1Could not switch to high resolution mode on CPU 3Clockevents: could not switch to one-shot mode: MIPS is not functional.Could not switch to high resolution mode on CPU 2TCP established hash table entries: 512 (order: 0, 4096 bytes)TCP bind hash table entries: 512 (order: 0, 4096 bytes)TCP: Hash tables configured (established 512 bind 512)TCP: reno registeredUDP hash table entries: 256 (order: 1, 8192 bytes)UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)NET: Registered protocol family 14 CPUs re-calibrate udelay(lpj = 1167360)squashfs: version 4.0 (2009/01/31) Phillip Loughermsgmni has been set to 110io scheduler noop registered (default)reg_int_mask=0, INT_MASK= 0 HSDMA_init hsdma_phy_tx_ring0 = 0x00c00000, hsdma_tx_ring0 = 0xa0c00000 hsdma_phy_rx_ring0 = 0x00c04000, hsdma_rx_ring0 = 0xa0c04000TX_CTX_IDX0 = 0TX_DTX_IDX0 = 0RX_CRX_IDX0 = 3ffRX_DRX_IDX0 = 0set_fe_HSDMA_glo_cfgHSDMA_GLO_CFG = 465Serial: 8250/16550 driver, 2 ports, IRQ sharing disabledserial8250: ttyS0 at MMIO 0x1e000d00 (irq = 27) is a 16550Aserial8250: ttyS1 at MMIO 0x1e000c00 (irq = 26) is a 16550Atplink_gpio_init 810:register_chrdev return r = 0tplink_gpio_init 825:Ralink gpio driver initializedi2cdrv_major = 218brd: module loadedflash manufacture id: 20, device id 70 17Warning: un-recognized chip ID, please update SPI driver!N25Q064A13ESE40F(20 ba171000) (8192 Kbytes)mtd .name = raspi, .size = 0x00800000 (8M) .erasesize = 0x00010000 (64K) .numeraseregions = 0mtdpart_setup_real 227 ZQQ : parse cmdline = raspi:128k(fs-uboot),3264k(os-image),3968k(file-system),64k@0x7f0000(radio)4 cmdlinepart partitions found on MTD device raspiadd_mtd_partitions 1066 : Read register 0xbe000060 value is 0x48528add_mtd_partitions 1067 : Read register 0xbe000600 value is 0x37c80180add_mtd_partitions 1068 : Read register 0xbe000604 value is 0x0add_mtd_partitions 1069 : Read register 0xbe000620 value is 0xfddde99eadd_mtd_partitions 1070 : Read register 0xbe000624 value is 0x100001efadd_mtd_partitions 1072 : Creating 4 MTD partitions on "raspi":0x000000000000-0x000000020000 : "fs-uboot"0x000000020000-0x000000350000 : "os-image"0x000000350000-0x000000730000 : "file-system"0x0000007f0000-0x000000800000 : "radio"PPP generic driver version 2.4.2PPP BSD Compression module registeredPPP Deflate Compression module registeredregister mt_drv=== pAd = c0181000, size = 4806464 ===<-- RTMPAllocAdapterBlock, Status=0pAd->PciHif.CSRBaseAddress =0xc0080000, csr_addr=0xc0080000!RTMPInitPCIeDevice():device_id=0x7663mt_pci_chip_cfg(): HWVer=0x8b10, FWVer=0x8a01, pAd->ChipID=0x7663mt7663_init()--><--mt7663_init()<-- RTMPAllocTxRxRingMemory, Status=0MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)rdm_major = 253ra2882eth_init 6381 ZQQ:init GMAC1_MAC_ADRH -- : 0x0000000cGMAC1_MAC_ADRL -- : 0x432880f9Ralink APSoC Ethernet Driver Initilization. v3.1 1024 rx/tx descriptors allocated, mtu = 1500!GMAC1_MAC_ADRH -- : 0x0000000cGMAC1_MAC_ADRL -- : 0x432880a9PROC INIT OK!Netfilter messages via NETLINK v0.30.TCP: cubic registeredInitializing XFRM netlink socketNET: Registered protocol family 17NET: Registered protocol family 158021q: 802.1Q VLAN Support v1.8VFS: Mounted root (squashfs filesystem) readonly on device 31:2.do_mount_root 371 : Read register 0xbe000060 value is 0x48528do_mount_root 372 : Read register 0xbe000600 value is 0x37c80180do_mount_root 373 : Read register 0xbe000604 value is 0x0do_mount_root 374 : Read register 0xbe000620 value is 0xfdfde99edo_mount_root 375 : Read register 0xbe000624 value is 0x1efFreeing unused kernel memory: 232KFailed to execute /etc/preinit. Attempting defaults...init started: BusyBox v1.19.4 (2020-09-27 16:57:51 CST)starting pid 244, tty '': '/etc/rc.d/rcS'This Board use 3.10.108Lan Domain: tplinkplc.netLan Domain: www.tplinkplc.net 0: 0:50:6F: 9:FFFFFF81Raeth v3.1 (Tasklet)phy_tx_ring = 0x00c14000, tx_ring = 0xa0c14000phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000fe_sw_init 6549 : Read register 0xbe000060 value is 0x48528fe_sw_init 6552 : Read register 0xbe000060 value is 0x40528MT7530 Reset Completed!!setup_internal_gsw 6108 : Read register 0xbe000060 value is 0x40528change HW-TRAP to 0x17ccfset LAN/WAN LLLLWGMAC1_MAC_ADRH -- : 0x0000000cGMAC1_MAC_ADRL -- : 0x432880a9GDMA2_MAC_ADRH -- : 0x0000000cGDMA2_MAC_ADRL -- : 0x432880a0eth3: ===> VirtualIF_openCDMA_CSG_CFG = 81000000GDMA1_FWD_CFG = 20710000GDMA2_FWD_CFG = 20710000============ei_open 3866 : reset the LED/Button gpio registers============tplink_gpio_mode_reg_set 334 read mode 0x40528 from reg 0xbe000060tplink_gpio_mode_reg_set 336 set mode 0x48528 to reg 0xbe000060tplink_gpio_mode_reg_set 342 read direct 0x37c80180 from reg 0xbe000600tplink_gpio_mode_reg_set 345 set direct 0x37c80180 to reg 0xbe000600tplink_gpio_mode_reg_set 349 read direct 0x0 from reg 0xbe000604tplink_gpio_mode_reg_set 351 set direct 0x0 to reg 0xbe000604tplink_gpio_mode_reg_set 356 read default val 0xfddde99e from reg 0xbe000620tplink_gpio_mode_reg_set 359 set default value 0xdc1de99e to reg 0xbe000620tplink_gpio_mode_reg_set 363 read default val 0x100001ef from reg 0xbe000624tplink_gpio_mode_reg_set 365 set default value 0x100001ef to reg 0xbe000624tplink_gpio_print_all_register 408 =====================show TL-WPA8631Pv3 gpio registers==================[tplink_gpio_print_all_register 409]read reg RALINK_REG_GPIOMODE 0xbe000060, value is 0x48528[tplink_gpio_print_all_register 410]read reg RALINK_REG_PIODIR 0xbe000600, value is 0x37c80180[tplink_gpio_print_all_register 411]read reg RALINK_REG_PIO6332DIR 0xbe000604, value is 0x0[tplink_gpio_print_all_register 412]read reg RALINK_REG_PIODATA 0xbe000620, value is 0xdc1de99e[tplink_gpio_print_all_register 413]read reg RALINK_REG_PIO6332DATA 0xbe000624, value is 0x100001eftplink_gpio_print_all_register 414 =====================show TL-WPA8631Pv3 gpio registers END==============================ei_open 3868 : reset the LED/Button gpio registers done!!!============device eth2 entered promiscuous modebr0: port 1(eth2) entered forwarding statebr0: port 1(eth2) entered forwarding state[NM_Error](nm_init) 00543: INIT.[ucCommon_json2Data,167]: commonCfg->mode = 0====>>>>Region: UK -->RegionCode: DE [ucOnemesh_json2Data,174] JSON str: {role:slave,group_id:-1,slave_auto_attach_needed:0,slave_auto_join_needed:0,master_auto_probe_needed:0,mesh_enabled:0,username:,password:}[PLC_debug: ucPlc_init:402]bootLoaderType = 0x0 Open device /dev/mtdblock3 OK.====>>>>model[0]: 0x0376, targetModel[0] = 0x0376 ====>>>>model[1]: 0x6376, targetModel[1] = 0x6376 [ucWifi_init,1056] factoryMode = 0[main:435]send a pipe message.[daemonize:210]recv a pipe message.port range : 6600 - 6619event range : 0 - 18wifid[_getFactoryMode:188]: [_getFactoryMode,188] factoryMode = 0 wifid[update_security_settings:379]: band 0, AuthMode:WPAPSKWPA2PSK\;OPEN\;WPA2PSK, EncrypType:AES\;NONE\;AES wifid[update_security_settings:379]: band 1, AuthMode:WPAPSKWPA2PSK\;OPEN\;WPA2PSK, EncrypType:AES\;NONE\;AES ra2880stop()...Doneeth3: ===> VirtualIF_closeFree TX/RX Ring Memory!br0: port 1(eth2) entered disabled state/etc/rc.d/rc.init: line 18: plcb 0: 0:50:6F: 9:FFFFFF81Raeth v3.1 (undTasklet)phy_tx_ring = 0x00c14000, tx_ring = 0xa0c14000phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000fe_sw_init 6549 : Read register 0xbe000060 value is 0x48528fe_sw_init 6552 : Read register 0xbe000060 value is 0x40528MT7530 Reset Completed!!setup_internal_gsw 6108 : Read register 0xbe000060 value is 0x40528change HW-TRAP to 0x17ccfset LAN/WAN LLLLWGMAC1_MAC_ADRH -- : 0x00001027GMAC1_MAC_ADRL -- : 0xf521c695eth3: ===> VirtualIF_openCDMA_CSG_CFG = 81000000GDMA1_FWD_CFG = 20710000GDMA2_FWD_CFG = 20710000============ei_open 3866 : reset the LED/Button gpio registers============tplink_gpio_mode_reg_set 334 read mode 0x40528 from reg 0xbe000060tplink_gpio_mode_reg_set 336 set mode 0x48528 to reg 0xbe000060tplink_gpio_mode_reg_set 342 read direct 0x37c80180 from reg 0xbe000600tplink_gpio_mode_reg_set 345 set direct 0x37c80180 to reg 0xbe000600tplink_gpio_mode_reg_set 349 read direct 0x0 from reg 0xbe000604tplink_gpio_mode_reg_set 351 set direct 0x0 to reg 0xbe000604tplink_gpio_mode_reg_set 356 read default val 0xfd9de99a from reg 0xbe000620tplink_gpio_mode_reg_set 359 set default value 0xdc1de99a to reg 0xbe000620tplink_gpio_mode_reg_set 363 read default val 0x100001ef from reg 0xbe000624tplink_gpio_mode_reg_set 365 set default value 0x100001ef to reg 0xbe000624tplink_gpio_print_all_register 408 =====================show TL-WPA8631Pv3 gpio registers==================[tplink_gpio_print_all_register 409]read reg RALINK_REG_GPIOMODE 0xbe000060, value is 0x48528[tplink_gpio_print_all_register 410]read reg RALINK_REG_PIODIR 0xbe000600, value is 0x37c80180[tplink_gpio_print_all_register 411]read reg RALINK_REG_PIO6332DIR 0xbe000604, value is 0x0[tplink_gpio_print_all_register 412]read reg RALINK_REG_PIODATA 0xbe000620, value is 0xdc3de99a[tplink_gpio_print_all_register 413]read reg RALINK_REG_PIO6332DATA 0xbe000624, value is 0x1eftplink_gpio_print_all_register 414 =====================show TL-WPA8631Pv3 gpio registers END==============================ei_open 3868 : reset the LED/Button gpio registers done!!!============br0: port 1(eth2) entered forwarding stateWill output br0: port 1(eth2) entered forwarding state1024br0: port 1(eth2) entered disabled state bit br0: port 1(eth2) entered forwarding statebr0: port 1(eth2) entered forwarding statedss secret key to '/tmp/dropbear/dropbear_dss_host_key'Generating key, this may take a while...[PLCD_LOG](main:640): wifid start ok in 0 seconds, then init plcdkill wifiSched daemon...[PLCD_ERR](hpDiscoveryLocalBCM:126): hpDiscoveryLocalBCM failed=== pAd = c0c81000, size = 1571344 ===<-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x<-- RTMPAllocAdapterBlock, Status=0device_id =0x7603RtmpChipOpsHook(474): Not support for HIF_MT yet!mt7603_init()-->mt_bcn_buf_init(224): Not support for HIF_MT yet!<--mt7603_init()load_dev_l1profile()-->match_index_by_chipname() MT7603 found as INDEX0l1set_profile_path() profile update from /etc/Wireless/RT2860/RT2860.dat to /tmp/wireless/RT2860_2G.datl1set_eeprom_offset() eeprom offset remain 0x0l1set_eeprom_size() eeprom size remain 0x200l1set_ifname() ifname rename from ra0 to ral1set_ifname() ifname remain ral1set_ifname() ifname remain ral1set_ifname() ifname remain apclil1set_single_sku_path() sku path update from /etc_ro/Wireless/RT2860/SingleSKU.dat to /etc/wireless/mt7663-sku.datload_dev_l1profile()-->l1set_profile_path() profile remain /tmp/wireless/RT2860_2G.datl1set_eeprom_offset() eeprom offset remain 0x0l1set_eeprom_size() eeprom size remain 0x200l1set_ifname() ifname rename from ra0 to ral1set_ifname() ifname remain ral1set_ifname() ifname remain ral1set_ifname() ifname remain apclil1set_single_sku_path() profile remain /etc/wireless/mt7663-sku.datTX_BCN DESC a0c29000 size = 320RX[0] DESC a0c2b000 size = 1024RX[1] DESC a0c2e000 size = 1024E2pAccessMode=2SKUEn = 1cfg_mode=9cfg_mode=9wmode_band_equal(): Band Equal!ResetEnable = 1set_thermal_protection_criteria_proc: high_en=1, high_thd = 120, low_en = 1, low_thd = 110get_single_sku_path_by_cc 4919: pAd->CommonCfg.CountryCode = DE get_single_sku_path_by_cc - the country DFSType is 0.RTMPSetSingleSKUParameters 5010 sku_path = /etc_ro/Wireless/RT2860/SingleSKU_2G_CE.dat FW Version:CL173766_RFW Build Date:20171110105932CmdAddressLenReq:(ret = 0)CmdFwStartReq: override = 1, address = 1048576CmdStartDLRsp: WiFI FW Download SuccessAsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC)efuse_probe: efuse = 10000002<--rtmp_eeprom_of_platform 580 : pAd->E2pAccessMode = 2RtmpChipOpsEepromHook716::e2p_type=2, inf_Type=5RtmpEepromGetDefault::e2p_dafault=1RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1e2p_type = 0x2get_dev_eeprom_offset, flash_offset = 0x0, pAd->dev_idx = 0get_dev_eeprom_offset, flash_offset = 0x0NVM is FLASH mode, flash_offset = 0x01. Phy Mode = 14rtmp_nv_init 518 pAd->flash_offset = 0, size = 512ra_mtd_read_nm 592: from = 0, len = 512ra_mtd_read_nm 598 read from partition radio return ret = 0Country Region from e2p = fffftssi_1_target_pwr_g_band = 362. Phy Mode = 143. Phy Mode = 14NICInitPwrPinCfg(14): Not support for HIF_MT yet!NICInitializeAsic(588): Not support rtmp_mac_sys_reset () for HIF_MT yet!mt_mac_init()-->mt7603_init_mac_cr()-->AsicSetMacMaxLen(1917): Set the Max RxPktLen=1024![PLCD_ERR](hpSen<--mt_mac_init()dAndResolveQCAPkWTBL Segment 1 info:t:67): hpWaitForMemBaseAddr/FID:0x28000/0RcvPkt failedEntrySize/Cnt:32/128[PLCD_ERR](hpGeWTBL Segment 2 info:tLocalQCASwVer:1MemBaseAddr/FID:0x40000/050): get local sEntrySize/Cnt:64/128wVer failedWTBL Segment 3 info:MemBaseAddr/FID:0x42000/64EntrySize/Cnt:64/128WTBL Segment 4 info:MemBaseAddr/FID:0x44000/128EntrySize/Cnt:32/128AntCfgInit(2722): Not support for HIF_MT yet!MCS Set = ff ff 00 00 01CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersESW: Link Status Changed - Port0 Link UPESW: Link Status Changed - Port1 Link UPmt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0[PLCD_ERR](hpDiscoveryLocalBCM:126): hpDiscoveryLocalBCM failedCmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters[PLCD_ERR](hpDiscoveryLocalBCM:126): hpDiscoveryLocalBCM failed[PLCD_LOG](main:711): ==============bootLoaderType = 0x0===========[PLC_debug: opPlcBootLoaderTypeSave:109]enter opPlcBootLoaderTypeSave, bootLoaderType = 0[PLCD_LOG](main:724): Start plcd OK!!!mt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters[PLCD_LOG](hpQCAReviseLocalDak:714): Read old DAK from PIB, oldDak = ****[PLCD_LOG](hpQCAReviseLocalDak:726): Recalculate the DAK, password = ****, revisedDak = ****[PLCD_LOG](hpQCAReviseLocalDak:734): oldDak = ****[PLCD_LOG](hpQCAReviseLocalDak:736): revisedDak = ****[PLCD_LOG](hpQCAReviseLocalDak:752): Checked!!! DAK is correct!mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#11(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#12(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#13(2T2R), BBP_BW=0Public key portion is:ssh-dss **** root@TL-WPA8631PFingerprint: md5 f4:78:4a:64:f7:be:2c:06:bf:04:f1:02:d8:e4:3e:4bWill ouCmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameterstput 1024 bit rsa secret key to mt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0'/tmp/dropbear/dropbear_rsa_host_key'Generating key, this may take a while...CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0Public key portion is:ssh-rsa **** root@TL-WPA8631PFingerprint: md5 ****starting pid 417, tty '': '/sbin/getty ttyS1 57600'CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0TL-WPA8631P login: DEBUG(/home/mobile/data/workspace/PLC_platform_mtk/tp-software/develop/private/apps/tmp_server/src/tdp/tdpSharedBuf.c:379)====>onemesh_initSharedBuff 379 : Init shared buffer size = 912, sizeof(ONEMESH_DEVICE_ENTRY) = 228CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0AsicSetRalinkBurstMode(4339): Not support for HIF_MT yet!RTMPSetPiggyBack(953): Not support for HIF_MT yet!CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0AsicSetTxPreamble(4326): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0Main bssid = 10:27:f5:21:c6:95<==== rt28xx_init, Status=0@@@ ed_monitor_init : ===>@@@ ed_monitor_init : <===device ra0 entered promiscuous modebr0: port 2(ra0) entered forwarding statebr0: port 2(ra0) entered forwarding state##### mbss_cr_enable, BssId = 1device ra1 entered promiscuous modebr0: port 3(ra1) entered forwarding statebr0: port 3(ra1) entered forwarding state##### mbss_cr_enable, BssId = 2device ra2 entered promiscuous modebr0: port 4(ra2) entered forwarding statebr0: port 4(ra2) entered forwarding staterai0: ===> main_virtual_if_openMT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)RtmpOSFileOpen() 789: ====>>>> Opening /etc/wireless/l1profile.dat, flag = 0x0load l1profile succeed!MT7613 get_wdev_by_idx: invalid idx(0)MT7613 get_wdev_by_idx: invalid idx(0)driver_own()::Try to Clear FW Own...driver_own()::Success to clear FW OwnRtmpOSFileOpen() 789: ====>>>> Opening /etc/Wireless/iNIC/iNIC_ap_2G.dat, flag = 0x0RtmpOSFileOpen(): Error 2 opening /etc/Wireless/iNIC/iNIC_ap_2G.datOpen file "/etc/Wireless/iNIC/iNIC_ap_2G.dat" failed!get_dev_l2profile 633 : src = /tmp/wireless/RT2860_5G.datRTMPReadParametersHook 780 : src = /tmp/wireless/RT2860_5G.datRtmpOSFileOpen() 789: ====>>>> Opening /tmp/wireless/RT2860_5G.dat, flag = 0x0RTMPReadParametersHook 783 : Open file /tmp/wireless/RT2860_5G.dat, return srcf = 82d86a80RTMPReadParametersHook 795 : Read file /tmp/wireless/RT2860_5G.dat, return 3067 bytesRTMPReadParametersHook 797 : call RTMPSetProfileParametersRTMPReadParametersHook 798 :Show buffer = DefaultTP-LINK=CountryNum=392#AutoChannelSelect=3Channel=40MaxStaNum=24BssidNum=3WirelessMode=14NoForwardingBTNBSSID=0BasicRate=15BeaconPeriod=100DtimPeriod=1#TxPower=100RTSThreshold=2346FragThreshold=2346APSDCapable=0DLSCapable=0PMKCachePeriod=10AccessPolicy0=0AccessPolicy1=0AccessPolicy2=0AccessPolicy3=0HT_BW=1HT_EXTCHA=0HT_BSSCoexistence=0HT_GI=1HT_HTC=0HT_LinkAdapt=0HT_OpMode=0HT_MpduDensity=5HT_AutoBA=1HT_AMSDU=0HT_BAWinSize=64HT_MCS=33;33;33;33CountryRegion=1#CountryRegionABand=1EDCCA_AP_STA_TH=1EDCCA_AP_AP_TH=1EDCCA_AP_RSSI_TH=-80EDCCA_ED_TH=90EDCCA_FALSE_CCA_TH=250EDCCA_BLOCK_CHECK_TH=2HT_DisallowTKIP=1HT_STBC=0DisableOLBC=0HT_RDG=0HT_BADecline=0BGProtection=0EfuseBufferMode=1E2pAccessMode=2TxPreamble=0TxBurst=1PktAggregate=0IEEE80211H=0ShortSlot=1IgmpSnEnable=1FixedTxMode=0TxRate=0PreAuth=0WirelessEvent=0MACRepeaterEn=0ApCliEnable=0ApCliMcastReqEnable=1ApCliDefauE2pAccessMode=2SSID[0]=, EdcaIdx=0SSID[1]=, EdcaIdx=0SSID[2]=TP-Link_Hidden_5GHz, EdcaIdx=0cfg_mode=14cfg_mode=14cfg_mode=14wmode_band_equal(): Band Equal![TxPower] BAND0: 100[SKUenable] BAND0: 1[PERCENTAGEenable] BAND0: 1profile: FragThreshold[0]=2346APEdca0APEdca1APEdca2APEdca3APSDCapable[0]=0APSDCapable[1]=0APSDCapable[2]=0APSDCapable[3]=0APSDCapable[4]=0APSDCapable[5]=0APSDCapable[6]=0APSDCapable[7]=0APSDCapable[8]=0APSDCapable[9]=0APSDCapable[10]=0APSDCapable[11]=0APSDCapable[12]=0APSDCapable[13]=0APSDCapable[14]=0APSDCapable[15]=0default ApCliAPSDCapable[0]=0read_itxbf: Common.ITxBfEn = 0[RTMPSetProfileParameters]Disable DFS/Zero wait=0/0AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMDAndesSendCmdMsg: Command type = ed, Extension command type = 48HT: WDEV[0] Ext Channel = BELOWRTMPSetProfileParameters: Mcast frame, i=0, Mode=2!set_thermal_protection_criteria_proc: fgHighEn: 1, fgLowEn: 1, fgRFOffEn: 1, cHighTempTh: 110, cLowTempTh: 104, cRFOffTh: 124set_thermal_protection_criteria_proc: u4RechkTimer: 20, ucType: Duty CycleMtCmdThermalProtect: ucBand:0, HighEn:1, HighTempTh:110, LowEn:1, LowTempTh:104, RechkTimer:20MtCmdThermalProtect: RFOffEn: 1, RFOffTh: 124, ucType: 1AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMDAndesSendCmdMsg: Command type = ed, Extension command type = 23set_thermal_protection_admin_ctrl_duty_proc: ucBand:0, u4Lv0Duty:100, u4Lv1Duty:70, u4Lv2Duty:50, u4Lv3Duty:30AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMDAndesSendCmdMsg: Command type = ed, Extension command type = 23WtcSetMaxStaNum: MaxStaNum:105, BssidNum:3, WdsNum:0, ApcliNum:1, MaxNumChipRept:24, MinMcastWcid:131Allocate 7168 memory for BA reorderingTop Init Done!Use dev_alloc_skbRX[0] DESC a0c11000 size = 2048RX[1] DESC a0c12000 size = 2048cut_through_init(): ct sw token number = 2047cut_through_token_list_init(): TokenList inited done!id_head/tail=0/2048cut_through_token_list_init(): 82852f08,82852f08cut_through_token_list_init(): TokenList inited done!id_head/tail=0/2048cut_through_token_list_init(): 82852f18,82852f18Hif Init Done!ctl->txq = c0614888ctl->rxq = c0614894ctl->ackq = c06148a0ctl->kickq = c06148acctl->tx_doneq = c06148b8ctl->rx_doneq = c06148c4mt7663_fw_prepare():using E2 ROM patchmt7663_fw_prepare():using E2 firmwareParsing patch headerBuilt date: 1911131412ecf4dPlatform: 7663HW/SW version: 0x6d702d31Patch version: 0x3830328aTarget address: 0xdc000, length: 203984patch is not ready && get semaphore successStart address = 0xdc000, DL length = 203984, Data mode = 0x80000000EventGenericEventHandler: CMD SuccessMtCmdAddressLenReq:(ret = 0)MtCmdPatchFinishReqEventGenericEventHandler: CMD Successrelease patch semaphoreParsing CPU 0 fw tailerChip ID: 0x08Eco version: 0x01Region number: 0x03Format version: 0x02Format flag: 0x01Ram version: 7663mp1827Built date: 20191113141412Common crc: 0xe65fcd05Parsing tailer region 0Decomp crc: 0x0Decomp size: 0x0Decomp block size: 0x0Target address: 0x112c00Download size: 276352Feature set: 0x27Parsing tailer region 1Decomp crc: 0x0Decomp size: 0x0Decomp block size: 0x0Target address: 0x2018400Download size: 70656Feature set: 0x07Parsing tailer region 2Decomp crc: 0x0Decomp size: 0x0Decomp block size: 0x0Target address: 0x40100000Download size: 14720Feature set: 0x07Release info: header tag = 0, total length = 0Start address = 0x112c00, DL length = 276352, Data mode = 0x8000000fEventGenericEventHandler: CMD SuccessMtCmdAddressLenReq:(ret = 0)Start address = 0x2018400, DL length = 70656, Data mode = 0x8000000fEventGenericEventHandler: CMD SuccessMtCmdAddressLenReq:(ret = 0)Start address = 0x40100000, DL length = 14720, Data mode = 0x8000000fEventGenericEventHandler: CMD SuccessMtCmdAddressLenReq:(ret = 0)MtCmdFwStartReq: override = 0x1, address = 0x112c00EventGenericEventHandler: CMD SuccessMCU Init Done!efuse_probe: efuse = 511161RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5RtmpEepromGetDefault::e2p_dafault=1RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1NVM is FLASH mode. dev_idx [1] FLASH OFFSET [0x8000]--> rtmp_nv_init--> rtmp_nv_init 526 : call RtmpFlashRead from offset 0x8000, len = 1536ra_mtd_read_nm 592: from = 32768, len = 1536ra_mtd_read_nm 598 read from partition radio return ret = 0--> rtmp_nv_init 528 : show Read data:validFlashEepromID(): eeFlashId=7663, pAd->ChipID=7663Country Region from e2p = 0mt7663_antenna_default_reset() todoRTMPReadTxPwrPerRate(444): Don't Support this now!RcRadioInit(): DbdcMode=0, ConcurrentBand=1RcRadioInit(): pRadioCtrl=83d46db8,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xfAntCfgInit(2929): Not support for HIF_MT yet!MtPwrLimitLoadParamHandle 92: Entering MtPwrLimitLoadParamHandle!!!MtReadPwrLimitTable 488: Entering MtReadPwrLimitTableMtReadPwrLimitTable 511: RF_LOCKDOWN Feature OFF !!!MtReadPwrLimitTable 514: u1Type = 0 get_single_sku_path_by_cc 206: pAd->CommonCfg.CountryCode = DE get_single_sku_path_by_cc 247 - the country pChReg->op_class_region is 0.MtReadPwrLimitTable 528: sku_path = /etc/wireless/mt7663-sku_CE.dat RtmpOSFileOpen() 789: ====>>>> Opening /etc/wireless/mt7663-sku_CE.dat, flag = 0x0MtReadPwrLimitTable 534: srcfile.Status = 0 MtPwrLimitLoadParamHandle 92: Entering MtPwrLimitLoadParamHandle!!!MtReadPwrLimitTable 488: Entering MtReadPwrLimitTableMtReadPwrLimitTable 511: RF_LOCKDOWN Feature OFF !!!MtReadPwrLimitTable 514: u1Type = 1 get_bf_sku_path_by_cc 264: pAd->CommonCfg.CountryCode = DE get_bf_sku_path_by_cc 306 - the country pChReg->op_class_region is 0.MtReadPwrLimitTable 528: sku_path = /etc/wireless/mt7663-sku-bf_CE.dat RtmpOSFileOpen() 789: ====>>>> Opening /etc/wireless/mt7663-sku-bf_CE.dat, flag = 0x0MtReadPwrLimitTable 534: srcfile.Status = 0 EEPROM Init Done!mt_mac_init()-->mt_mac_pse_init(2958): Don't Support this now!mt7663_init_mac_cr()-->mt7663_init_mac_cr(): TMAC_TRCR0=0x82783c92MtAsicSetMacMaxLen(1073): Not support for HIF_MT yet!<--mt_mac_init()CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0MAC Init Done!MT7663BBPInit():BBP Initialization.....Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0MT7663BBPInit() todoPHY Init Done!RtmpOSFileOpen() 789: ====>>>> Opening /etc/Wireless/iNIC/iNIC_ap_2G.dat, flag = 0x0RtmpOSFileOpen(): Error 2 opening /etc/Wireless/iNIC/iNIC_ap_2G.datOpen file "/etc/Wireless/iNIC/iNIC_ap_2G.dat" failed!get_dev_l2profile 633 : src = /tmp/wireless/RT2860_5G.datRTMPReadParametersHook 780 : src = /tmp/wireless/RT2860_5G.datRtmpOSFileOpen() 789: ====>>>> Opening /tmp/wireless/RT2860_5G.dat, flag = 0x0RTMPReadParametersHook 783 : Open file /tmp/wireless/RT2860_5G.dat, return srcf = 832b46c0RTMPReadParametersHook 795 : Read file /tmp/wireless/RT2860_5G.dat, return 3067 bytesRTMPReadParametersHook 797 : call RTMPSetProfileParametersRTMPReadParametersHook 798 :Show buffer = DefaultTP-LINK=CountryNum=392#AutoChannelSelect=3Channel=40MaxStaNum=24BssidNum=3WirelessMode=14NoForwardingBTNBSSID=0BasicRate=15BeaconPeriod=100DtimPeriod=1#TxPower=100RTSThreshold=2346FragThreshold=2346APSDCapable=0DLSCapable=0PMKCachePeriod=10AccessPolicy0=0AccessPolicy1=0AccessPolicy2=0AccessPolicy3=0HT_BW=1HT_EXTCHA=0HT_BSSCoexistence=0HT_GI=1HT_HTC=0HT_LinkAdapt=0HT_OpMode=0HT_MpduDensity=5HT_AutoBA=1HT_AMSDU=0HT_BAWinSize=64HT_MCS=33;33;33;33CountryRegion=1#CountryRegionABand=1EDCCA_AP_STA_TH=1EDCCA_AP_AP_TH=1EDCCA_AP_RSSI_TH=-80EDCCA_ED_TH=90EDCCA_FALSE_CCA_TH=250EDCCA_BLOCK_CHECK_TH=2HT_DisallowTKIP=1HT_STBC=0DisableOLBC=0HT_RDG=0HT_BADecline=0BGProtection=0EfuseBufferMode=1E2pAccessMode=2TxPreamble=0TxBurst=1PktAggregate=0IEEE80211H=0ShortSlot=1IgmpSnEnable=1FixedTxMode=0TxRate=0PreAuth=0WirelessEvent=0MACRepeaterEn=0ApCliEnable=0ApCliMcastReqEnable=1ApCliDefauE2pAccessMode=2SSID[0]=, EdcaIdx=0SSID[1]=, EdcaIdx=0SSID[2]=TP-Link_Hidden_5GHz, EdcaIdx=0cfg_mode=14cfg_mode=14cfg_mode=14wmode_band_equal(): Band Equal![TxPower] BAND0: 100[SKUenable] BAND0: 1[PERCENTAGEenable] BAND0: 1profile: FragThreshold[0]=2346APEdca0APEdca1APEdca2APEdca3APSDCapable[0]=0APSDCapable[1]=0APSDCapable[2]=0APSDCapable[3]=0APSDCapable[4]=0APSDCapable[5]=0APSDCapable[6]=0APSDCapable[7]=0APSDCapable[8]=0APSDCapable[9]=0APSDCapable[10]=0APSDCapable[11]=0APSDCapable[12]=0APSDCapable[13]=0APSDCapable[14]=0APSDCapable[15]=0default ApCliAPSDCapable[0]=0read_itxbf: Common.ITxBfEn = 0[RTMPSetProfileParameters]Disable DFS/Zero wait=0/0HT: WDEV[0] Ext Channel = BELOWRTMPSetProfileParameters: Mcast frame, i=0, Mode=2!set_thermal_protection_criteria_proc: fgHighEn: 1, fgLowEn: 1, fgRFOffEn: 1, cHighTempTh: 110, cLowTempTh: 104, cRFOffTh: 124set_thermal_protection_criteria_proc: u4RechkTimer: 20, ucType: Duty CycleMtCmdThermalProtect: ucBand:0, HighEn:1, HighTempTh:110, LowEn:1, LowTempTh:104, RechkTimer:20MtCmdThermalProtect: RFOffEn: 1, RFOffTh: 124, ucType: 1set_thermal_protection_admin_ctrl_duty_proc: ucBand:0, u4Lv0Duty:100, u4Lv1Duty:70, u4Lv2Duty:50, u4Lv3Duty:30tx_pwr_comp_init():NotSupportYet!MtCmdSetMacTxRx:(ret = 0)asic_bss_beacon_init(): NotSupportedFunc for this arch(HIF_MT)!MtAsicSetChBusyStat(646): Not support for HIF_MT yet!AsicDisableSync(): NotSupportedFunc for this arch(HIF_MT)!MtAsicSetRalinkBurstMode(2219): Not support for HIF_MT yet!MtAsicSetPiggyBack(590): Not support for HIF_MT yet!WifiFwdSet::disabled=0AsicSetPreTbtt(): NotSupportedFunc for this arch(HIF_MT)!Main bssid = 00:00:00:00:00:00AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)!MtCmdSetMacTxRx:(ret = 0)AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)!MtCmdSetMacTxRx:(ret = 0)INIT REDUCE TCP ACK, rai0<==== mt_wifi_init, Status=0TxBfModuleEnCtrl:It's not DBDC modeMtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1MSTA_Init (1) ---> ApCliRegister MSTA IF (apclii0) , pAd->MSTANum = 1Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=40, wdev_type=2ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3WtcSetMaxStaNum: MaxStaNum:105, BssidNum:3, WdsNum:0, ApcliNum:1, MaxNumChipRept:24, MinMcastWcid:131cp_support_is_enabled: set Driver CP_SUPPORT to Mode 2.RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UPwifi_sys_open(), wdev idx = 0wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96[BuildChannelList] BandIdx = 0, PhyMode = 49, ChListNum = 19: [RadarStateCheck] RD_NORMAL_MODE AsicSwitchChannel(): 5G Channel:42, then must be Channel_Band:1 !!Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=40, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3AP inf up for ra_0(func_idx) OmacIdx=0AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOnApAutoChannelAtBootUp----------------->ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)!MtCmdSetMacTxRx:(ret = 0)ApAutoChannelAtBootUp<-----------------[PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0mtk_band_steering_netlink_init 262 band steering netlink init okCaller: SetCommonHT+0xb0/0x160phy_mode=49, ch=40, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3wifi_sys_linkup(), wdev idx = 0wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)!AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)!apidx 0 for WscUUIDInitGenerate UUID for apidx(0)device rai0 entered promiscuous modebr0: port 5(rai0) entered forwarding statebr0: port 5(rai0) entered forwarding staterai1: ===> mbss_virtual_if_openRTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UPwifi_sys_open(), wdev idx = 1wdev_attr_update(): wdevId1 = 12:27:f5:11:c6:96[RcGetHdevByPhyMode]-- channel 0 fix for rdev fetchingphy_freq_adjust : no prim_ch value for adjust!Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=0, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3AP inf up for ra_1(func_idx) OmacIdx=17AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOnApAutoChannelAtBootUp----------------->ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)!MtCmdSetMacTxRx:(ret = 0)[AutoChSelBuildChannelListFor5G] ChListNum5G = 19AsicSwitchChannel(): 5G Channel:36, then must be Channel_Band:1 !!AsicSwitchChannel(): 5G Channel:40, then must be Channel_Band:1 !!AsicSwitchChannel(): 5G Channel:44, then must be Channel_Band:1 !!AsicSwitchChannel(): 5G Channel:48, then must be Channel_Band:1 !!ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 36, IsAband = 1 AutoChSelUpdateChannel(): Update channel for wdev for this band PhyMode = 49, Channel = 36 [RadarStateCheck] RD_NORMAL_MODE AsicSwitchChannel(): 5G Channel:42, then must be Channel_Band:1 !!ApAutoChannelAtBootUp<-----------------[PMF]APPMFInit:: apidx=1, MFPC=0, MFPR=0, SHA256=0mtk_band_steering_netlink_init 262 band steering netlink init okCaller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3wifi_sys_linkup(), wdev idx = 1wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:134 for WDEV_TYPE:1 LinkToOmacIdx = 11, LinkToWdevType = 1bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 11MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)!AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)!apidx 1 for WscUUIDInitGenerate UUID for apidx(1)device rai1 entered promiscuous modebr0: port 6(rai1) entered forwarding statebr0: port 6(rai1) entered forwarding staterai2: ===> mbss_virtual_if_openRTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UPwifi_sys_open(), wdev idx = 2wdev_attr_update(): wdevId2 = 12:27:f5:21:c6:96Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3AP inf up for ra_2(func_idx) OmacIdx=18AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOnApAutoChannelAtBootUp----------------->ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)!MtCmdSetMacTxRx:(ret = 0)ApAutoChannelAtBootUp<-----------------[PMF]APPMFInit:: apidx=2, MFPC=0, MFPR=0, SHA256=0mtk_band_steering_netlink_init 262 band steering netlink init okCaller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3wifi_sys_linkup(), wdev idx = 2wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:133 for WDEV_TYPE:1 LinkToOmacIdx = 12, LinkToWdevType = 1bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 12MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)!AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)!apidx 2 for WscUUIDInitGenerate UUID for apidx(2)device rai2 entered promiscuous modebr0: port 7(rai2) entered forwarding statebr0: port 7(rai2) entered forwarding statebr0: port 2(ra0) entered disabled statebr0: port 3(ra1) entered disabled statebr0: port 4(ra2) entered disabled staterai0: ===> main_virtual_if_closewifi_sys_linkdown(), wdev idx = 0ExtEventBeaconLostHandler::FW LOG, Beacon lost (10:27:f5:21:c6:96), Reason 0x10 Beacon lost - AP disabled!!!bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0wifi_sys_close(), wdev idx = 0br0: port 5(rai0) entered disabled staterai1: ===> mbss_virtual_if_closewifi_sys_linkdown(), wdev idx = 1ExtEventBeaconLostHandler::FW LOG, Beacon lost (12:27:f5:11:c6:96), Reason 0x10 Beacon lost - AP disabled!!!bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0wifi_sys_close(), wdev idx = 1br0: port 6(rai1) entered disabled staterai0: ===> main_virtual_if_openRTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UPwifi_sys_open(), wdev idx = 0wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3AP inf up for ra_0(func_idx) OmacIdx=0AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOnApAutoChannelAtBootUp----------------->ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)!MtCmdSetMacTxRx:(ret = 0)ApAutoChannelAtBootUp<-----------------[PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0mtk_band_steering_netlink_init 262 band steering netlink init okCaller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3wifi_sys_linkup(), wdev idx = 0wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)!AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)!apidx 0 for WscUUIDInitGenerate UUID for apidx(0)br0: port 5(rai0) entered forwarding statebr0: port 5(rai0) entered forwarding staterai2: ===> mbss_virtual_if_closewifi_sys_linkdown(), wdev idx = 2ExtEventBeaconLostHandler::FW LOG, Beacon lost (12:27:f5:21:c6:96), Reason 0x10 Beacon lost - AP disabled!!!bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0wifi_sys_close(), wdev idx = 2br0: port 7(rai2) entered disabled statewifid[_getFactoryMode:188]: [_getFactoryMode,188] factoryMode = 0 wifid[mtk_init_platform:2086]: Not in Del::OID_AP_VENDOR_IE_DELfactory mode, go on. wifid[mtk_init_platform:2089]: WIFIDel::OID_AP_VENDOR_IE_DEL init starts! wifid[backend_ap_tpie_info_stop:1655]: call tDel::OID_AP_VENDOR_IE_DELp_ie_info_stop wifid[tp_ie_info_stop:1549]: length = 0, flainterface is down, return!!!gs = 37377, ifname = ra0 wifid[tp_ie_info_stop:1557]: stop tpie ret:0 wifid[tp_ie_info_stop:1549]: length = 0, flags = 37377, ifname = ra2 wifid[tp_ie_info_stop:1557]: stop tpie ret:0 wifid[tp_ie_info_stop:1549]: length = 0, flags = 37377, ifname = rai0 wifid[tp_ie_info_stop:1557]: stop tpie ret:0 wifid[tp_ie_info_stop:1549]: length = 0, flags = 37377, ifname = rai2 wifid[tp_ie_info_stop:1557]: stop tpie ret:0 Set_RTSThreshold_Proc: set wdev0 rts length threshold=2346(0x92a)Set_FragThreshold_Proc::set wdev0 FragThreshold=2346)br0: port 2(ra0) entered forwarding statebr0: port 2(ra0) entered forwarding stateCaller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3cfg_mode=9wmode_band_equal(): Band Equal!AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0RTMPSetPiggyBack(953): Not support for HIF_MT yet!AsicSetRalinkBurstMode(4339): Not support for HIF_MT yet!RTMPSetPiggyBack(953): Not support for HIF_MT yet!CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1AsicSetTxPreamble(4326): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0Main bssid = 10:27:f5:21:c6:95AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0RTMPSetPiggyBack(953): Not support for HIF_MT yet!AsicSetRalinkBurstMode(4339): Not support for HIF_MT yet!RTMPSetPiggyBack(953): Not support for HIF_MT yet!CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1AsicSetTxPreamble(4326): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0Main bssid = 10:27:f5:21:c6:95AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0RTMPSetPiggyBack(953): Not support for HIF_MT yet!AsicSetRalinkBurstMode(4339): Not support for HIF_MT yet!RTMPSetPiggyBack(953): Not support for HIF_MT yet!CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1AsicSetTxPreamble(4326): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0Main bssid = 10:27:f5:21:c6:95AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0RTMPSetPiggyBack(953): Not support for HIF_MT yet!AsicSetRalinkBurstMode(4339): Not support for HIF_MT yet!RTMPSetPiggyBack(953): Not support for HIF_MT yet!CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1AsicSetTxPreamble(4326): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicAddSharedKeyEntry(2083): Not support for HIF_MT yet!AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0Main bssid = 10:27:f5:21:c6:95Ralink HW NAT Module Enabledinit PpeFoeBase = a0c80000eth2 ifindex =3eth3 ifindex =4Device InstanceWDEV 00:Name:ra0Wdev(list) Idx:0 Idx:6PpeDevRegHandler : ineterface ra0 register (0)WDEV 01:Name:ra1Wdev(list) Idx:1 Idx:7PpeDevRegHandler : ineterface ra1 register (1)WDEV 02:Name:ra2Wdev(list) Idx:2 Idx:8PpeDevRegHandler : ineterface ra2 register (2)WDEV 03:Name:apcli0Wdev(list) Idx:3 Idx:9PpeDevRegHandler : ineterface apcli0 register (5)WDEV 04:WDEV 05:WDEV 06:WDEV 07:WDEV 08:WDEV 09:WDEV 10:WDEV 11:WDEV 12:WDEV 13:WDEV 14:WDEV 15:WDEV 16:Set_TxPower_Proc: BandIdx = 0cfg_mode=14cfg_mode=14Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3[BuildChannelList] BandIdx = 0, PhyMode = 49, ChListNum = 19:Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3[PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0mtk_band_steering_netlink_init 262 band steering netlink init okwifi_sys_linkdown(), wdev idx = 0ExtEventBeaconLostHandler::FW LOG, Beacon lost (10:27:f5:21:c6:96), Reason 0x10 Beacon lost - AP disabled!!!bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0wmm_ctrl_release_entry(): Can't find HdevObj or Edca not requiredwifi_sys_close(), wdev idx = 0wifi_sys_open(), wdev idx = 0wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3wifi_sys_linkup(), wdev idx = 0wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0[PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0mtk_band_steering_netlink_init 262 band steering netlink init okwifi_sys_linkdown(), wdev idx = 0ExtEventBeaconLostHandler::FW LOG, Beacon lost (10:27:f5:21:c6:96), Reason 0x10 Beacon lost - AP disabled!!!bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0wifi_sys_close(), wdev idx = 0wifi_sys_open(), wdev idx = 0wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96Caller: wlan_operate_init+0xb0/0x114phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3wifi_sys_linkup(), wdev idx = 0wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3Caller: SetCommonHT+0xb0/0x160phy_mode=49, ch=36, wdev_type=1ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3Device InstanceWDEV 00:Name:rai0Wdev(list) Idx:0 Idx:2PpeDevRegHandler : ineterface rai0 register (6)WDEV 01:Name:rai1Wdev(list) Idx:1 Idx:10PpeDevRegHandler : ineterface rai1 register (7)WDEV 02:Name:rai2Wdev(list) Idx:2 Idx:11PpeDevRegHandler : ineterface rai2 register (8)WDEV 03:Name:apclii0Wdev(list) Idx:3 Idx:12PpeDevRegHandler : ineterface apclii0 register (9)WDEV 04:WDEV 05:WDEV 06:WDEV 07:WDEV 08:WDEV 09:WDEV 10:WDEV 11:WDEV 12:WDEV 13:WDEV 14:WDEV 15:WDEV 16:WDEV 17:wifid[_getFactoryMode:188]: [_getFactoryMode,188] factoryMode = 0 wifid[mtk_init_platform:2119]: WIFI init OK! RTMPAPSetInformation 2385: target mac = 10:27:f5:21:c6:95, Bssid = 10:27:f5:21:c6:95MaxHTPhyMode BW:1MCS:15maxTxPower:20Streams:2RTMPAPSetInformation 2449: Found phyinfo of mac = 10:27:f5:21:c6:95, phyCapInfo: maxChWidth = 1, maxMCS = 15, maxTxPower = 20, numStreams = 2, phyMode = 0RTMPAPSetInformation 2521 ssidLength = 12RTMPAPSetInformation 2533 scan target SSID TP-Link_C695, scanType = 0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#11(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#12(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#13(2T2R), BBP_BW=0CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parametersmt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1RTMPAPSetInformation 2545 scan finished, send IEEE80211_REASON_COMPLETED to user space.MaxHTPhyMode BW:2MCS:9maxTxPower:20Streams:2RTMPAPSetInformation 5231: Found phyinfo of mac = 10:27:f5:21:c6:96, phyCapInfo: maxChWidth = 2, maxMCS = 9, maxTxPower = 20, numStreams = 2, phyMode = 0SYNC - sync_fsm_scan_req_action:[1168] LAST_CH: 0, BAND: 0AsicDisableSync(): NotSupportedFunc for this arch(HIF_MT)!AsicSwitchChannel(): 5G Channel:36, then must be Channel_Band:1 !!ExtEventBeaconLostHandler::FW LOG, Beacon lost (10:27:f5:21:c6:96), Reason 0x10 Beacon lost - AP disabled!!!AsicSwitchChannel(): 5G Channel:40, then must be Channel_Band:1 !!AsicSwitchChannel(): 5G Channel:44, then must be Channel_Band:1 !!AsicSwitchChannel(): 5G Channel:48, then must be Channel_Band:1 !!Skip DFS channel 52Skip DFS channel 56Skip DFS channel 60Skip DFS channel 64Skip DFS channel 100Skip DFS channel 104Skip DFS channel 108Skip DFS channel 112Skip channel 116Skip channel 120Skip channel 124Skip channel 128Skip channel 132Skip DFS channel 136Skip DFS channel 140AsicSwitchChannel(): 5G Channel:42, then must be Channel_Band:1 !!scan_ch_restore - End of SCAN(TYPE: 0, BandIdx: 0), restore to BW(2) channel 42, Total BSS[07]AsicSetSyncModeAndEnable(): NotSupportedFunc for this arch(HIF_MT)!AsicSetSyncModeAndEnable(): NotSupportedFunc for this arch(HIF_MT)!RTMPAPSetInformation 5361 scan finished, send IEEE80211_REASON_COMPLETED to user space.ath_band_steering_netlink_receive 176 pid = 676ath_band_steering_netlink_receive 176 pid = 676ath_band_steering_netlink_receive 176 pid = 676ath_band_steering_netlink_receive 176 pid = 676kill dstd daemon...TL-WPA8631P login:

[ 0.000000] Linux version 5.10.100 (jwm@xyz) (mipsel-openwrt-linux-musl-gcc (OpenWrt GCC 11.2.0 r18913+1-b0d5939b80) 11.2.0, GNU ld (GNU Binutils) 2.37) #0 SMP Mon Feb 21 01:21:21 2022[ 0.000000] SoC Type: MediaTek MT7621 ver:1 eco:3[ 0.000000] printk: bootconsole [early0] enabled[ 0.000000] CPU0 revision is: 0001992f (MIPS 1004Kc)[ 0.000000] MIPS: machine is TP-Link TL-WPA8631P v3[ 0.000000] Initrd not found or empty - disabling initrd[ 0.000000] VPE topology {2,2} total 4[ 0.000000] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.[ 0.000000] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes[ 0.000000] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.[ 0.000000] Zone ranges:[ 0.000000] Normal [mem 0x0000000000000000-0x0000000003ffffff][ 0.000000] HighMem empty[ 0.000000] Movable zone start for each node[ 0.000000] Early memory node ranges[ 0.000000] node 0: [mem 0x0000000000000000-0x0000000003ffffff][ 0.000000] Initmem setup node 0 [mem 0x0000000000000000-0x0000000003ffffff][ 0.000000] percpu: Embedded 15 pages/cpu s30096 r8192 d23152 u61440[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 16240[ 0.000000] Kernel command line: console=ttyS0,57600 rootfstype=squashfs,jffs2[ 0.000000] Dentry cache hash table entries: 8192 (order: 3, 32768 bytes, linear)[ 0.000000] Inode-cache hash table entries: 4096 (order: 2, 16384 bytes, linear)[ 0.000000] Writing ErrCtl register=00007019[ 0.000000] Readback ErrCtl register=00007019[ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off[ 0.000000] Memory: 54440K/65536K available (6676K kernel code, 617K rwdata, 1352K rodata, 1260K init, 235K bss, 11096K reserved, 0K cma-reserved, 0K highmem)[ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1[ 0.000000] rcu: Hierarchical RCU implementation.[ 0.000000] Tracing variant of Tasks RCU enabled.[ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.[ 0.000000] NR_IRQS: 256[ 0.000000] random: get_random_bytes called from start_kernel+0x3cc/0x5e4 with crng_init=0[ 0.000000] CPU Clock: 880MHz[ 0.000000] clocksource: GIC: mask: 0xffffffffffffffff max_cycles: 0xcaf478abb4, max_idle_ns: 440795247997 ns[ 0.000013] sched_clock: 64 bits at 880MHz, resolution 1ns, wraps every 4398046511103ns[ 0.015845] clocksource: MIPS: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 4343773742 ns[ 0.033728] Calibrating delay loop... 586.13 BogoMIPS (lpj=2930688)[ 0.106056] pid_max: default: 32768 minimum: 301[ 0.115366] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)[ 0.129774] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear)[ 0.147957] rcu: Hierarchical SRCU implementation.[ 0.157754] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build[ 0.173268] smp: Bringing up secondary CPUs ...[ 0.182872] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.[ 0.182888] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes[ 0.182906] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.[ 0.183010] CPU1 revision is: 0001992f (MIPS 1004Kc)[ 0.243182] Synchronize counters for CPU 1: done.[ 0.305114] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.[ 0.305123] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes[ 0.305131] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.[ 0.305179] CPU2 revision is: 0001992f (MIPS 1004Kc)[ 0.364141] Synchronize counters for CPU 2: done.[ 0.424363] Primary instruction cache 32kB, VIPT, 4-way, linesize 32 bytes.[ 0.424371] Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes[ 0.424380] MIPS secondary cache 256kB, 8-way, linesize 32 bytes.[ 0.424433] CPU3 revision is: 0001992f (MIPS 1004Kc)[ 0.483712] Synchronize counters for CPU 3: done.[ 0.543324] smp: Brought up 1 node, 4 CPUs[ 0.555598] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns[ 0.575118] futex hash table entries: 1024 (order: 3, 32768 bytes, linear)[ 0.588964] pinctrl core: initialized pinctrl subsystem[ 0.601303] NET: Registered protocol family 16[ 0.612932] cpuidle: using governor teo[ 0.645160] random: fast init done[ 0.673288] clocksource: Switched to clocksource GIC[ 0.685415] NET: Registered protocol family 2[ 0.694319] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)[ 0.709334] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes, linear)[ 0.725923] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear)[ 0.741054] TCP bind hash table entries: 1024 (order: 1, 8192 bytes, linear)[ 0.755049] TCP: Hash tables configured (established 1024 bind 1024)[ 0.767802] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)[ 0.780704] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)[ 0.794753] NET: Registered protocol family 1[ 0.803343] PCI: CLS 0 bytes, default 32[ 0.814214] workingset: timestamp_bits=14 max_order=14 bucket_order=0[ 0.830949] squashfs: version 4.0 (2009/01/31) Phillip Lougher[ 0.842586] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.[ 0.864508] mt7621_gpio 1e000600.gpio: registering 32 gpios[ 0.875894] mt7621_gpio 1e000600.gpio: registering 32 gpios[ 0.887249] mt7621_gpio 1e000600.gpio: registering 32 gpios[ 0.899339] Serial: 8250/16550 driver, 3 ports, IRQ sharing disabled[ 0.913773] printk: console [ttyS0] disabled[ 0.922229] 1e000c00.uartlite: ttyS0 at MMIO 0x1e000c00 (irq = 19, base_baud = 3125000) is a 16550A[ 0.940180] printk: console [ttyS0] enabled[ 0.940180] printk: console [ttyS0] enabled[ 0.956715] printk: bootconsole [early0] disabled[ 0.956715] printk: bootconsole [early0] disabled[ 0.978401] spi-mt7621 1e000b00.spi: sys_freq: 220000000[ 0.990803] spi-nor spi0.0: XM25QH64A (8192 Kbytes)[ 1.000637] 4 fixed-partitions partitions found on MTD device spi0.0[ 1.013348] Creating 4 MTD partitions on "spi0.0":[ 1.022876] 0x000000000000-0x000000020000 : "u-boot"[ 1.033935] 0x000000020000-0x000000730000 : "firmware"[ 1.045578] 2 tplink-fw partitions found on MTD device firmware[ 1.057444] Creating 2 MTD partitions on "firmware":[ 1.067355] 0x000000000000-0x00000029c12b : "kernel"[ 1.077244] mtd: partition "kernel" doesn't end on an erase/write block -- force read-only[ 1.094740] 0x00000029c12b-0x000000710000 : "rootfs"[ 1.104689] mtd: partition "rootfs" doesn't start on an erase/write block boundary -- force read-only[ 1.124048] mtd: device 3 (rootfs) set to be root filesystem[ 1.135554] 1 squashfs-split partitions found on MTD device rootfs[ 1.147949] 0x000000690000-0x000000710000 : "rootfs_data"[ 1.159830] 0x000000730000-0x0000007f0000 : "config"[ 1.170912] 0x0000007f0000-0x000000800000 : "radio"[ 1.225270] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module[ 1.241319] mtk_soc_eth 1e100000.ethernet eth0: mediatek frame engine at 0xbe100000, irq 21[ 1.258641] i2c /dev entries driver[ 1.268115] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:[ 1.281522] mt7621-pci 1e140000.pcie: No bus range found for /pcie@1e140000, using [bus 00-ff][ 1.299053] mt7621-pci 1e140000.pcie: MEM 0x0060000000..0x006fffffff -> 0x0000000000[ 1.315352] mt7621-pci 1e140000.pcie: IO 0x001e160000..0x001e16ffff -> 0x0000000000[ 1.331745] mt7621-pci 1e140000.pcie: Parsing DT failed[ 1.344504] NET: Registered protocol family 10[ 1.354973] Segment Routing with IPv6[ 1.362375] NET: Registered protocol family 17[ 1.371713] 8021q: 802.1Q VLAN Support v1.8[ 1.384318] gpio-export gpio-export: 1 gpio(s) exported[ 1.395053] mt7530 mdio-bus:1f: MT7530 adapts as multi-chip module[ 1.428234] mt7530 mdio-bus:1f plc0 (uninitialized): PHY [mt7530-0:00] driver [MediaTek MT7530 PHY] (irq=27)[ 1.450462] mt7530 mdio-bus:1f lan1 (uninitialized): PHY [mt7530-0:01] driver [MediaTek MT7530 PHY] (irq=28)[ 1.472651] mt7530 mdio-bus:1f lan2 (uninitialized): PHY [mt7530-0:02] driver [MediaTek MT7530 PHY] (irq=29)[ 1.494892] mt7530 mdio-bus:1f lan3 (uninitialized): PHY [mt7530-0:03] driver [MediaTek MT7530 PHY] (irq=30)[ 1.517847] mt7530 mdio-bus:1f: configuring for fixed/rgmii link mode[ 1.534713] DSA: tree 0 setup[ 1.541017] rt2880-pinmux pinctrl: pcie is already enabled[ 1.552096] mt7621-pci 1e140000.pcie: host bridge /pcie@1e140000 ranges:[ 1.565484] mt7621-pci 1e140000.pcie: No bus range found for /pcie@1e140000, using [bus 00-ff][ 1.583025] mt7621-pci 1e140000.pcie: MEM 0x0060000000..0x006fffffff -> 0x0000000000[ 1.599325] mt7621-pci 1e140000.pcie: IO 0x001e160000..0x001e16ffff -> 0x0000000000[ 1.615722] mt7621-pci-phy 1e149000.pcie-phy: PHY for 0xbe149000 (dual port = 1)[ 1.630892] mt7621-pci-phy 1e14a000.pcie-phy: PHY for 0xbe14a000 (dual port = 0)[ 1.645968] mt7621-pci 1e140000.pcie: failed to parse bus ranges property: -22[ 1.760558] mt7621-pci-phy 1e149000.pcie-phy: Xtal is 40MHz[ 1.771679] mt7621-pci-phy 1e14a000.pcie-phy: Xtal is 40MHz[ 1.882932] mt7621-pci 1e140000.pcie: pcie2 no card, disable it (RST & CLK)[ 1.896810] mt7621-pci 1e140000.pcie: PCIE0 enabled[ 1.906521] mt7621-pci 1e140000.pcie: PCIE1 enabled[ 1.916240] mt7621-pci 1e140000.pcie: PCI coherence region base: 0x60000000, mask/settings: 0xf0000002[ 1.934985] mt7621-pci 1e140000.pcie: PCI host bridge to bus 0000:00[ 1.947676] pci_bus 0000:00: root bus resource [io 0x1e160000-0x1e16ffff][ 1.961382] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff][ 1.975080] pci_bus 0000:00: root bus resource [bus 00-ff][ 1.986007] pci_bus 0000:00: root bus resource [mem 0x60000000-0x6fffffff] (bus address [0x00000000-0x0fffffff])[ 2.006322] pci 0000:00:00.0: [0e8d:0801] type 01 class 0x060400[ 2.018309] pci 0000:00:00.0: reg 0x10: [mem 0x00000000-0x7fffffff][ 2.030793] pci 0000:00:00.0: reg 0x14: initial BAR value 0x00000000 invalid[ 2.044832] pci 0000:00:00.0: reg 0x14: [mem size 0x00010000][ 2.056347] pci 0000:00:00.0: supports D1[ 2.064332] pci 0000:00:00.0: PME# supported from D0 D1 D3hot[ 2.076548] pci 0000:00:01.0: [0e8d:0801] type 01 class 0x060400[ 2.088551] pci 0000:00:01.0: reg 0x10: [mem 0x00000000-0x7fffffff][ 2.101034] pci 0000:00:01.0: reg 0x14: initial BAR value 0x00000000 invalid[ 2.115071] pci 0000:00:01.0: reg 0x14: [mem size 0x00010000][ 2.126577] pci 0000:00:01.0: supports D1[ 2.134573] pci 0000:00:01.0: PME# supported from D0 D1 D3hot[ 2.147732] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring[ 2.163703] pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring[ 2.179930] pci 0000:01:00.0: [14c3:7603] type 00 class 0x028000[ 2.191946] pci 0000:01:00.0: reg 0x10: initial BAR value 0x00000000 invalid[ 2.206001] pci 0000:01:00.0: reg 0x10: [mem size 0x00100000][ 2.217598] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold[ 2.231508] pci 0000:00:00.0: PCI bridge to [bus 01-ff][ 2.241942] pci 0000:00:00.0: bridge window [io 0x0000-0x0fff][ 2.254084] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff][ 2.267611] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff pref][ 2.281998] pci_bus 0000:01: busn_res: [bus 01-ff] end is updated to 01[ 2.295484] pci 0000:02:00.0: [14c3:7663] type 00 class 0x000280[ 2.307515] pci 0000:02:00.0: reg 0x10: initial BAR value 0x00000000 invalid[ 2.321563] pci 0000:02:00.0: reg 0x10: [mem size 0x00100000 64bit pref][ 2.334933] pci 0000:02:00.0: reg 0x18: initial BAR value 0x00000000 invalid[ 2.348967] pci 0000:02:00.0: reg 0x18: [mem size 0x00004000 64bit pref][ 2.362324] pci 0000:02:00.0: reg 0x20: initial BAR value 0x00000000 invalid[ 2.376363] pci 0000:02:00.0: reg 0x20: [mem size 0x00001000 64bit pref][ 2.389828] pci 0000:02:00.0: supports D1 D2[ 2.398338] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold[ 2.411550] pci 0000:02:00.0: 2.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x1 link at 0000:00:01.0 (capable of 4.000 Gb/s with 5.0 GT/s PCIe x1 link)[ 2.442926] pci 0000:00:01.0: PCI bridge to [bus 02-ff][ 2.453376] pci 0000:00:01.0: bridge window [io 0x0000-0x0fff][ 2.465513] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff][ 2.479031] pci 0000:00:01.0: bridge window [mem 0x60000000-0x600fffff pref][ 2.493422] pci_bus 0000:02: busn_res: [bus 02-ff] end is updated to 02[ 2.506646] pci 0000:00:00.0: BAR 0: no space for [mem size 0x80000000][ 2.519825] pci 0000:00:00.0: BAR 0: failed to assign [mem size 0x80000000][ 2.533696] pci 0000:00:01.0: BAR 0: no space for [mem size 0x80000000][ 2.546866] pci 0000:00:01.0: BAR 0: failed to assign [mem size 0x80000000][ 2.560736] pci 0000:00:00.0: BAR 8: assigned [mem 0x60000000-0x600fffff][ 2.574269] pci 0000:00:00.0: BAR 9: assigned [mem 0x60100000-0x601fffff pref][ 2.588653] pci 0000:00:01.0: BAR 8: assigned [mem 0x60200000-0x602fffff][ 2.602173] pci 0000:00:01.0: BAR 9: assigned [mem 0x60300000-0x604fffff pref][ 2.616561] pci 0000:00:00.0: BAR 1: assigned [mem 0x60500000-0x6050ffff][ 2.630086] pci 0000:00:01.0: BAR 1: assigned [mem 0x60510000-0x6051ffff][ 2.643620] pci 0000:00:00.0: BAR 7: assigned [io 0x1e160000-0x1e160fff][ 2.657140] pci 0000:00:01.0: BAR 7: assigned [io 0x1e161000-0x1e161fff][ 2.670667] pci 0000:01:00.0: BAR 0: assigned [mem 0x60000000-0x600fffff][ 2.684198] pci 0000:00:00.0: PCI bridge to [bus 01][ 2.694086] pci 0000:00:00.0: bridge window [io 0x1e160000-0x1e160fff][ 2.707611] pci 0000:00:00.0: bridge window [mem 0x60000000-0x600fffff][ 2.721128] pci 0000:00:00.0: bridge window [mem 0x60100000-0x601fffff pref][ 2.735525] pci 0000:02:00.0: BAR 0: assigned [mem 0x60300000-0x603fffff 64bit pref][ 2.750958] pci 0000:02:00.0: BAR 2: assigned [mem 0x60400000-0x60403fff 64bit pref][ 2.766402] pci 0000:02:00.0: BAR 4: assigned [mem 0x60404000-0x60404fff 64bit pref][ 2.781831] pci 0000:00:01.0: PCI bridge to [bus 02][ 2.791718] pci 0000:00:01.0: bridge window [io 0x1e161000-0x1e161fff][ 2.805245] pci 0000:00:01.0: bridge window [mem 0x60200000-0x602fffff][ 2.818760] pci 0000:00:01.0: bridge window [mem 0x60300000-0x604fffff pref][ 2.843192] VFS: Mounted root (squashfs filesystem) readonly on device 31:3.[ 2.861848] Freeing unused kernel memory: 1260K[ 2.870916] This architecture does not have kernel memory protection.[ 2.883766] Run /sbin/init as init process[ 2.892564] mt7530 mdio-bus:1f: Link is Up - 1Gbps/Full - flow control off[ 3.541999] init: Console is alive[ 3.549280] init: - watchdog -[ 4.341293] kmodloader: loading kernel modules from /etc/modules-boot.d/*[ 4.451532] kmodloader: done loading kernel modules from /etc/modules-boot.d/*[ 4.473680] init: - preinit -[ 5.517234] random: jshn: uninitialized urandom read (4 bytes read)[ 5.599897] random: jshn: uninitialized urandom read (4 bytes read)[ 5.645606] random: jshn: uninitialized urandom read (4 bytes read)[ 5.917238] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode[ 5.933496] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx[ 5.943786] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode[ 5.963830] 8021q: adding VLAN 0 to HW filter on device lan1[ 5.978264] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes readyPress the [f] key and hit [enter] to enter failsafe modePress the [1], [2], [3] or [4] key and hit [enter] to select the debug level[ 9.376347] mt7530 mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control rx/tx[ 9.391340] IPv6: ADDRCONF(NETDEV_CHANGE): lan1: link becomes ready[ 10.214829] jffs2: notice: (520) jffs2_build_xattr_subsystem: complete building xattr subsystem, 6 of xdatum (0 unchecked, 1 orphan) and 7 of xref (1 dead, 0 orphan) found.[ 10.248090] mount_root: switching to jffs2 overlay[ 10.267162] overlayfs: upper fs does not support tmpfile.[ 10.287332] random: crng init done[ 10.287987] urandom-seed: Seeding with /etc/urandom.seed[ 10.294132] random: 7 urandom warning(s) missed due to ratelimiting[ 10.440340] mt7530 mdio-bus:1f lan1: Link is Down[ 10.460302] procd: - early -[ 10.466586] procd: - watchdog -[ 11.113507] procd: - watchdog -[ 11.120626] procd: - ubus -[ 11.315392] procd: - init -Please press Enter to activate this console.[ 12.202853] kmodloader: loading kernel modules from /etc/modules.d/*[ 12.343397] urngd: v1.0.2 started.[ 12.406126] Loading modules backported from Linux version v5.15.8-0-g43e577d7a2cb[ 12.421096] Backport generated by backports.git v5.15.8-1-0-g83f664bb[ 12.680365] mt7621-pci 1e140000.pcie: bus=1 slot=0 irq=22[ 12.691224] pci 0000:00:00.0: enabling device (0004 -> 0007)[ 12.702526] mt7603e 0000:01:00.0: enabling device (0000 -> 0002)[ 12.714688] mt7603e 0000:01:00.0: ASIC revision: 76030010[ 13.754723] mt7603e 0000:01:00.0: Firmware Version: ap_pcie[ 13.765870] mt7603e 0000:01:00.0: Build Time: 20160107100755[ 13.813264] mt7603e 0000:01:00.0: firmware init done[ 14.001480] mt7621-pci 1e140000.pcie: bus=2 slot=1 irq=23[ 14.012307] pci 0000:00:01.0: enabling device (0004 -> 0007)[ 14.023600] mt7615e 0000:02:00.0: enabling device (0000 -> 0002)[ 14.108132] PPP generic driver version 2.4.2[ 14.118831] NET: Registered protocol family 24[ 14.137975] kmodloader: done loading kernel modules from /etc/modules.d/*[ 15.885388] mt7615e 0000:02:00.0: mediatek/mt7663pr2h.bin not found, switching to mediatek/mt7663pr2h_rebb.bin[ 16.131664] mt7615e 0000:02:00.0: HW/SW Version: 0x65322d31, Build Time: 2009041715da1a1[ 16.131664] [ 16.444749] mt7615e 0000:02:00.0: N9 Firmware Version: 7663mp1827, Build Time: 20200904171623[ 16.461817] mt7615e 0000:02:00.0: Region number: 0x3[ 16.471782] mt7615e 0000:02:00.0: Parsing tailer Region: 0[ 16.486047] mt7615e 0000:02:00.0: Region 0, override_addr = 0x00112c00[ 16.499169] mt7615e 0000:02:00.0: Parsing tailer Region: 1[ 16.511263] mt7615e 0000:02:00.0: Parsing tailer Region: 2[ 16.523028] mt7615e 0000:02:00.0: override_addr = 0x00112c00, option = 3[ 22.991163] mtk_soc_eth 1e100000.ethernet eth0: Link is Down[ 23.013176] mtk_soc_eth 1e100000.ethernet eth0: configuring for fixed/rgmii link mode[ 23.029879] mtk_soc_eth 1e100000.ethernet eth0: Link is Up - 1Gbps/Full - flow control rx/tx[ 23.036848] mt7530 mdio-bus:1f lan1: configuring for phy/gmii link mode[ 23.060560] 8021q: adding VLAN 0 to HW filter on device lan1[ 23.075074] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready[ 23.088961] br-lan: port 1(lan1) entered blocking state[ 23.099498] br-lan: port 1(lan1) entered disabled state[ 23.111567] device lan1 entered promiscuous mode[ 23.121117] device eth0 entered promiscuous mode[ 23.161367] mt7530 mdio-bus:1f lan2: configuring for phy/gmii link mode[ 23.175299] 8021q: adding VLAN 0 to HW filter on device lan2[ 23.190397] br-lan: port 2(lan2) entered blocking state[ 23.201177] br-lan: port 2(lan2) entered disabled state[ 23.213563] device lan2 entered promiscuous mode[ 23.237958] mt7530 mdio-bus:1f lan3: configuring for phy/gmii link mode[ 23.251985] 8021q: adding VLAN 0 to HW filter on device lan3[ 23.266799] br-lan: port 3(lan3) entered blocking state[ 23.277395] br-lan: port 3(lan3) entered disabled state[ 23.290015] device lan3 entered promiscuous mode[ 23.312939] mt7530 mdio-bus:1f plc0: configuring for phy/gmii link mode[ 23.326941] 8021q: adding VLAN 0 to HW filter on device plc0[ 23.343174] br-lan: port 4(plc0) entered blocking state[ 23.354117] br-lan: port 4(plc0) entered disabled state[ 23.366556] device plc0 entered promiscuous mode[ 24.929380] br-lan: port 5(wlan0) entered blocking state[ 24.940106] br-lan: port 5(wlan0) entered disabled state[ 24.951512] device wlan0 entered promiscuous mode[ 24.961613] br-lan: port 5(wlan0) entered blocking state[ 24.972440] br-lan: port 5(wlan0) entered forwarding state[ 24.988127] br-lan: port 5(wlan0) entered disabled state[ 25.030013] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready[ 25.043695] br-lan: port 5(wlan0) entered blocking state[ 25.054557] br-lan: port 5(wlan0) entered forwarding state[ 25.066824] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready[ 25.210422] br-lan: port 6(wlan1) entered blocking state[ 25.221189] br-lan: port 6(wlan1) entered disabled state[ 25.232823] device wlan1 entered promiscuous mode[ 25.242979] br-lan: port 6(wlan1) entered blocking state[ 25.253741] br-lan: port 6(wlan1) entered forwarding state[ 25.603081] IPv6: ADDRCONF(NETDEV_CHANGE): wlan1: link becomes ready[ 25.893983] mt7530 mdio-bus:1f plc0: Link is Up - 1Gbps/Full - flow control rx/tx[ 25.909012] br-lan: port 4(plc0) entered blocking state[ 25.919522] br-lan: port 4(plc0) entered forwarding state[ 27.582555] mt7530 mdio-bus:1f lan1: Link is Up - 1Gbps/Full - flow control rx/tx[ 27.597585] br-lan: port 1(lan1) entered blocking state[ 27.608034] br-lan: port 1(lan1) entered forwarding state

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

[OpenWrt Wiki] TP-Link TL-WPA8631P v3 (2024)
Top Articles
Latest Posts
Article information

Author: Fredrick Kertzmann

Last Updated:

Views: 6625

Rating: 4.6 / 5 (66 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Fredrick Kertzmann

Birthday: 2000-04-29

Address: Apt. 203 613 Huels Gateway, Ralphtown, LA 40204

Phone: +2135150832870

Job: Regional Design Producer

Hobby: Nordic skating, Lacemaking, Mountain biking, Rowing, Gardening, Water sports, role-playing games

Introduction: My name is Fredrick Kertzmann, I am a gleaming, encouraging, inexpensive, thankful, tender, quaint, precious person who loves writing and wants to share my knowledge and understanding with you.