TP-Link TL-WPA8631P v3

The TP-Link TL-WPA8631P v3 is a Range Extender with wired Ethernet, Wi-Fi and PowerLine interfaces. It is basically a standard router with a Homeplug AV2 Powerline Communication (PLC) interface connected internally to one of the Ethernet switch ports.

The default stock configuration bridges the wired, Wi-Fi and PowerLine interfaces. The main use case is to extend the coverage of a LAN/Wi-Fi network throughout the home using the existing electrical wiring. This is particularly useful for houses with thick walls and poor Wi-Fi signal propagation but with good quality electrical cables with low electrical noise.

TL-WPA8631P v3

None at this time.

Some newer devices use an XM25QH64C flash memory chip that was not supported in OpenWrt until 22.03.4. Installing earlier OpenWrt releases will brick those devices. Unless you really know what flash chip you have, you should install 22.03.4 and later.

Devices running these early OEM firmware versions MUST first be upgraded to a later OEM version before attempting to install OpenWRT, as the older flash partition layouts are incompatible with these images and you could risk bricking your device.

  • 3.0.0 Build 20200314 Rel.3608
  • 3.0.0 Build 20200508 Rel.41814

All later releases use the same consistent flash layout documented below and are safe to use (Ref).

Install OpenWrt (generic explanation)

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/
  • Go to System Tools → Firmware Upgrade
  • Upload the *-factory.bin file to router using the “Manual Upgrade” section
    • If you get a “Wrong file” message, the upgrade process might be rejecting the file due to the filename being too long. Try renaming it to something shorter like openwrt-firmware.bin
  • Wait for it to reboot
  • ssh to 192.168.1.1 and set a root password, or browse to http://192.168.1.1 if LuCI is installed.
  • 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.

sysupgrade

  • Login as root via SSH on 192.168.1.1, then enter the following commands:
cd /tmp
wget http://downloads.openwrt.org/snapshots/trunk/XXX/xxx.abc
sysupgrade -i /tmp/xxx.abc

You should only revert back to the exact same firmware version the device was running before OpenWRT was installed. With this method, it is possible to accidentally flash incompatible firmware to your device and prevent it from booting, so triple check you are using the right one. When in doubt, ask in the forums.

Download the exact same version of the TP-Link firmware you had before installing OpenWRT, and prepare it using the tool tplink-safeloader from the OpenWrt Image Builder:

staging_dir/host/bin/tplink-safeloader -z wpa8631pv3_eu-up-ver3-0-0-P1-20210514-rel45003-APPLC.bin -o oem-sysupgrade.bin

Then follow either the GUI or CLI sysupgrade process above. Note you will need to include the “-F” option because the firmware does not have the upgrade metadata appended.

sysupgrade -F /tmp/oem-sysupgrade.bin

After the first reboot, it is advisable to flash an OEM firmware upgrade. Otherwise, the software version is displayed as 0.0.0.

generic.debrick

The only known ways to debrick the device require opening it up, which is difficult and hazardous as it contains live voltages. See Debricking instructions on tl-wpa8630p_v2. Avoid this if you can!

For this reason, you should avoid using snapshot images or customized ImageBuilder images, as both can result in unbootable images that can only be recovered by opening the device and re-flashing.

If recovering by writing directly to the flash, be careful when using an SOIC-8 clip on this device. Surrounding the flash chip are many tiny SMT components which are extremely easy to knock off just by brushing the connector off them, breaking your device. They are virtually impossible to solder back in place by hand. The uboot serial console is safer to use.

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 button
 
cat > /etc/rc.button/lights_toggle <<'EOF'
#!/bin/sh
 
[ "${ACTION}" = "released" ] || exit 0
 
control="/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"
fi
 
return 0
EOF
chmod +x /etc/rc.button/lights_toggle
echo "/etc/rc.button/lights_toggle" >> /etc/sysupgrade.conf
 
 
## BTN_1 - Powerline Pair button
 
opkg install open-plc-utils-plctool
cat > /etc/rc.button/BTN_1 <<'EOF'
#!/bin/sh
 
[ "${ACTION}" = "released" ] || exit 0
 
. /lib/functions/system.sh
 
plc_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"
fi
 
return 0
EOF
chmod +x /etc/rc.button/BTN_1
echo "/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.sh
plc_mac="$(macaddr_add $(get_mac_label) +2)"
plc_interface="br-lan"
 
uci add luci command
uci set luci.@command[-1].name="Powerline Status"
uci set luci.@command[-1].command="plctool -i $plc_interface -m $plc_mac"
 
uci add luci command
uci set luci.@command[-1].name="Powerline Join"
uci set luci.@command[-1].command="plctool -i $plc_interface -B join $plc_mac"
 
uci add luci command
uci set luci.@command[-1].name="Powerline Leave"
uci set luci.@command[-1].command="plctool -i $plc_interface -B leave $plc_mac"
 
uci add luci command
uci set luci.@command[-1].name="Powerline Rates"
uci set luci.@command[-1].command="plcrate -i $plc_interface"
 
uci add luci command
uci 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 script
 
cat > /usr/sbin/powerline-set-nmk <<'EOF'
#!/bin/sh
 
if [ "$#" -ne 3 ]; then
  echo "Usage: $0 INTERFACE MAC PASSWORD" >&2
  exit 1
fi
 
NMK=$(echo "$3" | hpavkeys -M)
plctool -i "$1" -M -K "$NMK" "$2"
EOF
chmod +x /usr/sbin/powerline-set-nmk
echo "/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" bridge
uci del_list network.@device[0].ports='plc0'
uci add network device
uci 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 device
uci set network.wan=interface
uci 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 network
uci 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).

Except for the different SoC, this device is very similar to tl-wpa8630p_v2.

DANGER: HIGH VOLTAGE inside!
Opening this device exposes
parts under high voltage (110/230 VAC)!

  • Risk of deadly electrical shock
  • Risk of irreversable damage to other components attached, e.g. your PC connected via serial

Make sure to keep your fingers, conductive tools and serial cables away from the high voltage at all times!

Capacitors can still retain dangerous voltages
after disconnection from mains!

Continue at your own risk!

Similar to tl-wpa8630p_v2.

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

v3 version

How to connect to the Serial Port of v3 version:
Insert photo of PCB with markings for serial port

J1 pin Comment
VCC 3.3v
GND Visually identify GND from connections to PCB ground plane
RX
TX Square
Serial connection parameters
for TP-Link TL-WPA8631P v3
57600, 8N1

v4 version

TL-WPA8631P v4

J1 pin Comment
TX
RX
GND
VCC 3.3v
Serial connection parameters
for TP-Link TL-WPA8631P v4
57600, 8N1

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 memory cp - memory copy erase - erase SPI FLASH memory go - start application at address 'addr' help - print online help loadb - load binary file over serial line (kermit mode) md - memory display mdio - Ralink PHY register R/W command !! mm - memory modify (auto-incrementing) nm - memory modify (constant address) printenv- print environment variables reset - Perform RESET of the CPU rf - read/write rf register saveenv - save environment variables to persistent storage setenv - set environment variables spi - spi command tftpboot- boot image via network using TFTP protocol version - print monitor version MT7621 # printenv bootcmd=tftp bootdelay=1 baudrate=57600 ethaddr="00:AA:BB:CC:DD:10" ipaddr=192.168.0.254 serverip=192.168.0.184 stdin=serial stdout=serial stderr=serial Environment 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 : 0x11000000 3PLL mode + External loopback === XTAL-40Mhz === DDR-800Mhz === PLL4 FB_DL: 0x4, 1/0 = 556/468 11000000 PLL3 FB_DL: 0xe, 1/0 = 570/454 39000000 PLL2 FB_DL: 0x10, 1/0 = 643/381 41000000 do 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 0 0001:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0002:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0003:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0004:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0005:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0006:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0007:| 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0008:| 1 1 1 1 1 1 1 1 1 1 1 1 1 0 0 0 0009:| 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 000A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000E:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 000F:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0010:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0011:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0012:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0013:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0014:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0015:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0016:| 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0017:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0018:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0019:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001A:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001B:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001C:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001D:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001E:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 001F:| 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 DRAMC_DQSCTL1[0e0]=1A000000 DRAMC_DQSGCTL[124]=80000000 rank 0 coarse = 8 rank 0 fine = 48 B:| 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 opt_dle value:8 DRAMC_DDR2CTL[07c]=40001203 DRAMC_PADCTL4[0e4]=00000015 DRAMC_DQIDLY1[210]=080B0809 DRAMC_DQIDLY2[214]=05080707 DRAMC_DQIDLY3[218]=0B0A0A07 DRAMC_DQIDLY4[21c]=09090A05 DRAMC_R0DELDLY[018]=00002C2B ================================================================== RX DQS perbit delay software calibration ================================================================== 1.0-15 bit dq delay value ================================================================== bit| 0 1 2 3 4 5 6 7 8 9 -------------------------------------- 0 | 7 6 9 7 7 6 8 5 6 9 10 | 9 11 3 9 9 7 -------------------------------------- ================================================================== 2.dqs window x=pass dqs delay value (min~max)center y=0-7bit DQ of every group input delay:DQS0 =43 DQS1 = 44 ================================================================== bit DQS0 bit DQS1 0 (1~82)41 8 (1~86)43 1 (1~81)41 9 (1~86)43 2 (1~81)41 10 (1~86)43 3 (1~83)42 11 (1~87)44 4 (1~85)43 12 (1~84)42 5 (1~83)42 13 (1~85)43 6 (1~86)43 14 (1~88)44 7 (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 = ffff0000 dqs_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]=88888888 DRAMC_DQODLY2[204]=88888888 20,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 MB relocate_code Pointer at: 83fb8000 Config XHCI 40M PLL flash manufacture id: 20, device id 70 17 Warning: 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 = 0x0004d52c set register GPIO_MODE(0xbe000060), value = 0x0004d52c read register GPIO_CTRL_0(0xbe000600), value = 0x35c00000 set register GPIO_CTRL_0(0xbe000600), value = 0x35c80000 read register GPIO_DATA_0(0xbe000620), value = 0xc83de81e set 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 bit Xtal Mode=3 OCP Ratio=1/4 Flash component: SPI Flash Date:Sep 27 2020 Time:16:51:13 ============================================ icache: sets:256, ways:4, linesz:32 ,total:32768 dcache: sets:256, ways:4, linesz:32 ,total:32768 ##### The CPU freq = 880 MHZ #### estimate memory size =64 Mbytes #Reset_MT7530 =========TL-WPA8631Pv3 GPIO init in uboot========= RALINK_PIO_BASE(0xbe000600) Reg: 0x4852c RALINK_PIO_BASE + 4(0xbe000604) Reg: 0x0 RALINK_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: 81001000 entry point: 81522cf0 Uncompressing Kernel Image ... OK No initrd ## Transferring control to Linux (at address 81522cf0) ... ## Giving linux memsize in MB, 64 Starting kernel ... LINUX started... THIS IS ASIC SDK 5.0.S.0 Linux 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 MHz GCMP present CPU0 revision is: 0001992f (MIPS 1004Kc) Software DMA cache coherency Determined physical RAM map: memory: 04000000 @ 00000000 (usable) User-defined physical RAM map: memory: 04000000 @ 00000000 (usable) Initrd not found or empty - disabling initrd Zone ranges: DMA [mem 0x00000000-0x00ffffff] Normal [mem 0x01000000-0x03ffffff] Movable zone start for each node Early 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 bytes MIPS secondary cache 256kB, 8-way, linesize 32 bytes. PERCPU: Embedded 7 pages/cpu @818cc000 s5952 r8192 d14528 u32768 Built 1 zonelists in Zone order, mobility grouping on. Total pages: 16256 ZQQ : 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=64M PID 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=00007111 Readback ErrCtl register=00007111 Memory: 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:128 console [ttyS1] enabled Calibrating delay loop... 577.53 BogoMIPS (lpj=1155072) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 512 launch: starting cpu1 launch: cpu1 gone! Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes. Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes MIPS secondary cache 256kB, 8-way, linesize 32 bytes. CPU1 revision is: 0001992f (MIPS 1004Kc) Synchronize counters for CPU 1: done. launch: starting cpu2 launch: cpu2 gone! Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes. Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes MIPS secondary cache 256kB, 8-way, linesize 32 bytes. CPU2 revision is: 0001992f (MIPS 1004Kc) Synchronize counters for CPU 2: done. launch: starting cpu3 launch: cpu3 gone! Primary instruction cache 32kB, 4-way, VIPT, linesize 32 bytes. Primary data cache 32kB, 4-way, PIPT, no aliases, linesize 32 bytes MIPS secondary cache 256kB, 8-way, linesize 32 bytes. CPU3 revision is: 0001992f (MIPS 1004Kc) Synchronize counters for CPU 3: done. Brought up 4 CPUs NET: Registered protocol family 16 release PCIe RST: RALINK_RSTCTRL = 7000000 PCIE PHY initialize ***** Xtal 40MHz ***** start MT7621 PCIe register access RALINK_RSTCTRL = 7000000 RALINK_CLKCFG1 = 77ffeff8 *************** MT7621 PCIe RC mode ************* PCIE2 no card, disable it(RST&CLK) pcie_link status = 0x3 RALINK_RSTCTRL= 3000000 *** Configure Device number setting of Virtual PCI-PCI bridge *** RALINK_PCI_PCICFG_ADDR = 21007f2 -> 21007f2 PCIE0 enabled PCIE1 enabled interrupt enable status: 300000 Port 1 N_FTS = 1b105000 Port 0 N_FTS = 1b105000 config reg done init_rt2880pci done bio: create slab <bio-0> at 0 PCI host bridge to bus 0000:00 pci_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]), reconfiguring pci 0000:00:01.0: bridge configuration invalid ([bus 00-00]), reconfiguring pci 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 = 0 bus=0x0, slot = 0x0 res[0]->start = 0 res[0]->end = 0 res[1]->start = 60300000 res[1]->end = 6030ffff res[2]->start = 0 res[2]->end = 0 res[3]->start = 0 res[3]->end = 0 res[4]->start = 0 res[4]->end = 0 res[5]->start = 0 res[5]->end = 0 BAR0 at slot 1 = 0 bus=0x0, slot = 0x1 res[0]->start = 0 res[0]->end = 0 res[1]->start = 60310000 res[1]->end = 6031ffff res[2]->start = 0 res[2]->end = 0 res[3]->start = 0 res[3]->end = 0 res[4]->start = 0 res[4]->end = 0 res[5]->start = 0 res[5]->end = 0 bus=0x1, slot = 0x0, irq=0x4 res[0]->start = 60000000 res[0]->end = 600fffff res[1]->start = 0 res[1]->end = 0 res[2]->start = 0 res[2]->end = 0 res[3]->start = 0 res[3]->end = 0 res[4]->start = 0 res[4]->end = 0 res[5]->start = 0 res[5]->end = 0 bus=0x2, slot = 0x1, irq=0x18 res[0]->start = 60100000 res[0]->end = 601fffff res[1]->start = 0 res[1]->end = 0 res[2]->start = 60200000 res[2]->end = 60203fff res[3]->start = 0 res[3]->end = 0 res[4]->start = 60204000 res[4]->end = 60204fff res[5]->start = 0 res[5]->end = 0 Switching to clocksource Ralink Systick timer NET: Registered protocol family 2 Clockevents: 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 0 Could not switch to high resolution mode on CPU 1 Could not switch to high resolution mode on CPU 3 Clockevents: could not switch to one-shot mode: MIPS is not functional. Could not switch to high resolution mode on CPU 2 TCP 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 registered UDP hash table entries: 256 (order: 1, 8192 bytes) UDP-Lite hash table entries: 256 (order: 1, 8192 bytes) NET: Registered protocol family 1 4 CPUs re-calibrate udelay(lpj = 1167360) squashfs: version 4.0 (2009/01/31) Phillip Lougher msgmni has been set to 110 io 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 = 0xa0c04000 TX_CTX_IDX0 = 0 TX_DTX_IDX0 = 0 RX_CRX_IDX0 = 3ff RX_DRX_IDX0 = 0 set_fe_HSDMA_glo_cfg HSDMA_GLO_CFG = 465 Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled serial8250: ttyS0 at MMIO 0x1e000d00 (irq = 27) is a 16550A serial8250: ttyS1 at MMIO 0x1e000c00 (irq = 26) is a 16550A tplink_gpio_init 810:register_chrdev return r = 0 tplink_gpio_init 825:Ralink gpio driver initialized i2cdrv_major = 218 brd: module loaded flash manufacture id: 20, device id 70 17 Warning: un-recognized chip ID, please update SPI driver! N25Q064A13ESE40F(20 ba171000) (8192 Kbytes) mtd .name = raspi, .size = 0x00800000 (8M) .erasesize = 0x00010000 (64K) .numeraseregions = 0 mtdpart_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 raspi add_mtd_partitions 1066 : Read register 0xbe000060 value is 0x48528 add_mtd_partitions 1067 : Read register 0xbe000600 value is 0x37c80180 add_mtd_partitions 1068 : Read register 0xbe000604 value is 0x0 add_mtd_partitions 1069 : Read register 0xbe000620 value is 0xfddde99e add_mtd_partitions 1070 : Read register 0xbe000624 value is 0x100001ef add_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.2 PPP BSD Compression module registered PPP Deflate Compression module registered register mt_drv === pAd = c0181000, size = 4806464 === <-- RTMPAllocAdapterBlock, Status=0 pAd->PciHif.CSRBaseAddress =0xc0080000, csr_addr=0xc0080000! RTMPInitPCIeDevice():device_id=0x7663 mt_pci_chip_cfg(): HWVer=0x8b10, FWVer=0x8a01, pAd->ChipID=0x7663 mt7663_init()--> <--mt7663_init() <-- RTMPAllocTxRxRingMemory, Status=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) MT7613 get_wdev_by_idx: invalid idx(0) rdm_major = 253 ra2882eth_init 6381 ZQQ:init GMAC1_MAC_ADRH -- : 0x0000000c GMAC1_MAC_ADRL -- : 0x432880f9 Ralink APSoC Ethernet Driver Initilization. v3.1 1024 rx/tx descriptors allocated, mtu = 1500! GMAC1_MAC_ADRH -- : 0x0000000c GMAC1_MAC_ADRL -- : 0x432880a9 PROC INIT OK! Netfilter messages via NETLINK v0.30. TCP: cubic registered Initializing XFRM netlink socket NET: Registered protocol family 17 NET: Registered protocol family 15 8021q: 802.1Q VLAN Support v1.8 VFS: Mounted root (squashfs filesystem) readonly on device 31:2. do_mount_root 371 : Read register 0xbe000060 value is 0x48528 do_mount_root 372 : Read register 0xbe000600 value is 0x37c80180 do_mount_root 373 : Read register 0xbe000604 value is 0x0 do_mount_root 374 : Read register 0xbe000620 value is 0xfdfde99e do_mount_root 375 : Read register 0xbe000624 value is 0x1ef Freeing unused kernel memory: 232K Failed 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.108 Lan Domain: tplinkplc.net Lan Domain: www.tplinkplc.net 0: 0:50:6F: 9:FFFFFF81 Raeth v3.1 (Tasklet) phy_tx_ring = 0x00c14000, tx_ring = 0xa0c14000 phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000 phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000 fe_sw_init 6549 : Read register 0xbe000060 value is 0x48528 fe_sw_init 6552 : Read register 0xbe000060 value is 0x40528 MT7530 Reset Completed!! setup_internal_gsw 6108 : Read register 0xbe000060 value is 0x40528 change HW-TRAP to 0x17ccf set LAN/WAN LLLLW GMAC1_MAC_ADRH -- : 0x0000000c GMAC1_MAC_ADRL -- : 0x432880a9 GDMA2_MAC_ADRH -- : 0x0000000c GDMA2_MAC_ADRL -- : 0x432880a0 eth3: ===> VirtualIF_open CDMA_CSG_CFG = 81000000 GDMA1_FWD_CFG = 20710000 GDMA2_FWD_CFG = 20710000 ============ei_open 3866 : reset the LED/Button gpio registers============ tplink_gpio_mode_reg_set 334 read mode 0x40528 from reg 0xbe000060 tplink_gpio_mode_reg_set 336 set mode 0x48528 to reg 0xbe000060 tplink_gpio_mode_reg_set 342 read direct 0x37c80180 from reg 0xbe000600 tplink_gpio_mode_reg_set 345 set direct 0x37c80180 to reg 0xbe000600 tplink_gpio_mode_reg_set 349 read direct 0x0 from reg 0xbe000604 tplink_gpio_mode_reg_set 351 set direct 0x0 to reg 0xbe000604 tplink_gpio_mode_reg_set 356 read default val 0xfddde99e from reg 0xbe000620 tplink_gpio_mode_reg_set 359 set default value 0xdc1de99e to reg 0xbe000620 tplink_gpio_mode_reg_set 363 read default val 0x100001ef from reg 0xbe000624 tplink_gpio_mode_reg_set 365 set default value 0x100001ef to reg 0xbe000624 tplink_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 0x100001ef tplink_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 mode br0: port 1(eth2) entered forwarding state br0: 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 - 6619 event range : 0 - 18 wifid[_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()... Done eth3: ===> VirtualIF_close Free TX/RX Ring Memory! br0: port 1(eth2) entered disabled state /etc/rc.d/rc.init: line 18: plcb 0: 0:50:6F: 9:FFFFFF81 Raeth v3.1 (und Tasklet) phy_tx_ring = 0x00c14000, tx_ring = 0xa0c14000 phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000 phy_rx_ring0 = 0x00c18000, rx_ring[0] = 0xa0c18000 fe_sw_init 6549 : Read register 0xbe000060 value is 0x48528 fe_sw_init 6552 : Read register 0xbe000060 value is 0x40528 MT7530 Reset Completed!! setup_internal_gsw 6108 : Read register 0xbe000060 value is 0x40528 change HW-TRAP to 0x17ccf set LAN/WAN LLLLW GMAC1_MAC_ADRH -- : 0x00001027 GMAC1_MAC_ADRL -- : 0xf521c695 eth3: ===> VirtualIF_open CDMA_CSG_CFG = 81000000 GDMA1_FWD_CFG = 20710000 GDMA2_FWD_CFG = 20710000 ============ei_open 3866 : reset the LED/Button gpio registers============ tplink_gpio_mode_reg_set 334 read mode 0x40528 from reg 0xbe000060 tplink_gpio_mode_reg_set 336 set mode 0x48528 to reg 0xbe000060 tplink_gpio_mode_reg_set 342 read direct 0x37c80180 from reg 0xbe000600 tplink_gpio_mode_reg_set 345 set direct 0x37c80180 to reg 0xbe000600 tplink_gpio_mode_reg_set 349 read direct 0x0 from reg 0xbe000604 tplink_gpio_mode_reg_set 351 set direct 0x0 to reg 0xbe000604 tplink_gpio_mode_reg_set 356 read default val 0xfd9de99a from reg 0xbe000620 tplink_gpio_mode_reg_set 359 set default value 0xdc1de99a to reg 0xbe000620 tplink_gpio_mode_reg_set 363 read default val 0x100001ef from reg 0xbe000624 tplink_gpio_mode_reg_set 365 set default value 0x100001ef to reg 0xbe000624 tplink_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 0x1ef tplink_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 state Will output br0: port 1(eth2) entered forwarding state 1024br0: port 1(eth2) entered disabled state bit br0: port 1(eth2) entered forwarding state br0: port 1(eth2) entered forwarding state dss 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 plcd kill wifiSched daemon... [PLCD_ERR](hpDiscoveryLocalBCM:126): hpDiscoveryLocalBCM failed === pAd = c0c81000, size = 1571344 === <-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x <-- RTMPAllocAdapterBlock, Status=0 device_id =0x7603 RtmpChipOpsHook(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 INDEX0 l1set_profile_path() profile update from /etc/Wireless/RT2860/RT2860.dat to /tmp/wireless/RT2860_2G.dat l1set_eeprom_offset() eeprom offset remain 0x0 l1set_eeprom_size() eeprom size remain 0x200 l1set_ifname() ifname rename from ra0 to ra l1set_ifname() ifname remain ra l1set_ifname() ifname remain ra l1set_ifname() ifname remain apcli l1set_single_sku_path() sku path update from /etc_ro/Wireless/RT2860/SingleSKU.dat to /etc/wireless/mt7663-sku.dat load_dev_l1profile()--> l1set_profile_path() profile remain /tmp/wireless/RT2860_2G.dat l1set_eeprom_offset() eeprom offset remain 0x0 l1set_eeprom_size() eeprom size remain 0x200 l1set_ifname() ifname rename from ra0 to ra l1set_ifname() ifname remain ra l1set_ifname() ifname remain ra l1set_ifname() ifname remain apcli l1set_single_sku_path() profile remain /etc/wireless/mt7663-sku.dat TX_BCN DESC a0c29000 size = 320 RX[0] DESC a0c2b000 size = 1024 RX[1] DESC a0c2e000 size = 1024 E2pAccessMode=2 SKUEn = 1 cfg_mode=9 cfg_mode=9 wmode_band_equal(): Band Equal! ResetEnable = 1 set_thermal_protection_criteria_proc: high_en=1, high_thd = 120, low_en = 1, low_thd = 110 get_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_R FW Build Date:20171110105932 CmdAddressLenReq:(ret = 0) CmdFwStartReq: override = 1, address = 1048576 CmdStartDLRsp: WiFI FW Download Success AsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC) efuse_probe: efuse = 10000002 <--rtmp_eeprom_of_platform 580 : pAd->E2pAccessMode = 2 RtmpChipOpsEepromHook716::e2p_type=2, inf_Type=5 RtmpEepromGetDefault::e2p_dafault=1 RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 e2p_type = 0x2 get_dev_eeprom_offset, flash_offset = 0x0, pAd->dev_idx = 0 get_dev_eeprom_offset, flash_offset = 0x0 NVM is FLASH mode, flash_offset = 0x0 1. Phy Mode = 14 rtmp_nv_init 518 pAd->flash_offset = 0, size = 512 ra_mtd_read_nm 592: from = 0, len = 512 ra_mtd_read_nm 598 read from partition radio return ret = 0 Country Region from e2p = ffff tssi_1_target_pwr_g_band = 36 2. Phy Mode = 14 3. Phy Mode = 14 NICInitPwrPinCfg(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() dAndResolveQCAPk WTBL Segment 1 info: t:67): hpWaitFor MemBaseAddr/FID:0x28000/0 RcvPkt failed EntrySize/Cnt:32/128 [PLCD_ERR](hpGe WTBL Segment 2 info: tLocalQCASwVer:1 MemBaseAddr/FID:0x40000/0 50): get local s EntrySize/Cnt:64/128 wVer failed WTBL Segment 3 info: MemBaseAddr/FID:0x42000/64 EntrySize/Cnt:64/128 WTBL Segment 4 info: MemBaseAddr/FID:0x44000/128 EntrySize/Cnt:32/128 AntCfgInit(2722): Not support for HIF_MT yet! MCS Set = ff ff 00 00 01 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters ESW: Link Status Changed - Port0 Link UP ESW: Link Status Changed - Port1 Link UP mt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0 [PLCD_ERR](hpDiscoveryLocalBCM:126): hpDiscoveryLocalBCM failed CmdChannelSwitch 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=0 CmdChannelSwitch 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=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#11(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#12(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#13(2T2R), BBP_BW=0 Public key portion is: ssh-dss **** root@TL-WPA8631P Fingerprint: md5 f4:78:4a:64:f7:be:2c:06:bf:04:f1:02:d8:e4:3e:4b Will ouCmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters tput 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 parameters mt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0 Public key portion is: ssh-rsa **** root@TL-WPA8631P Fingerprint: md5 **** starting pid 417, tty '': '/sbin/getty ttyS1 57600' CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0 TL-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) = 228 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0 AsicSetRalinkBurstMode(4339): Not support for HIF_MT yet! RTMPSetPiggyBack(953): Not support for HIF_MT yet! CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0 AsicSetTxPreamble(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 = 0xa0 Main bssid = 10:27:f5:21:c6:95 <==== rt28xx_init, Status=0 @@@ ed_monitor_init : ===> @@@ ed_monitor_init : <=== device ra0 entered promiscuous mode br0: port 2(ra0) entered forwarding state br0: port 2(ra0) entered forwarding state ##### mbss_cr_enable, BssId = 1 device ra1 entered promiscuous mode br0: port 3(ra1) entered forwarding state br0: port 3(ra1) entered forwarding state ##### mbss_cr_enable, BssId = 2 device ra2 entered promiscuous mode br0: port 4(ra2) entered forwarding state br0: port 4(ra2) entered forwarding state rai0: ===> main_virtual_if_open 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) RtmpOSFileOpen() 789: ====>>>> Opening /etc/wireless/l1profile.dat, flag = 0x0 load 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 Own RtmpOSFileOpen() 789: ====>>>> Opening /etc/Wireless/iNIC/iNIC_ap_2G.dat, flag = 0x0 RtmpOSFileOpen(): Error 2 opening /etc/Wireless/iNIC/iNIC_ap_2G.dat Open file "/etc/Wireless/iNIC/iNIC_ap_2G.dat" failed! get_dev_l2profile 633 : src = /tmp/wireless/RT2860_5G.dat RTMPReadParametersHook 780 : src = /tmp/wireless/RT2860_5G.dat RtmpOSFileOpen() 789: ====>>>> Opening /tmp/wireless/RT2860_5G.dat, flag = 0x0 RTMPReadParametersHook 783 : Open file /tmp/wireless/RT2860_5G.dat, return srcf = 82d86a80 RTMPReadParametersHook 795 : Read file /tmp/wireless/RT2860_5G.dat, return 3067 bytes RTMPReadParametersHook 797 : call RTMPSetProfileParameters RTMPReadParametersHook 798 :Show buffer = Default TP-LINK= CountryNum=392 #AutoChannelSelect=3 Channel=40 MaxStaNum=24 BssidNum=3 WirelessMode=14 NoForwardingBTNBSSID=0 BasicRate=15 BeaconPeriod=100 DtimPeriod=1 #TxPower=100 RTSThreshold=2346 FragThreshold=2346 APSDCapable=0 DLSCapable=0 PMKCachePeriod=10 AccessPolicy0=0 AccessPolicy1=0 AccessPolicy2=0 AccessPolicy3=0 HT_BW=1 HT_EXTCHA=0 HT_BSSCoexistence=0 HT_GI=1 HT_HTC=0 HT_LinkAdapt=0 HT_OpMode=0 HT_MpduDensity=5 HT_AutoBA=1 HT_AMSDU=0 HT_BAWinSize=64 HT_MCS=33;33;33;33 CountryRegion=1 #CountryRegionABand=1 EDCCA_AP_STA_TH=1 EDCCA_AP_AP_TH=1 EDCCA_AP_RSSI_TH=-80 EDCCA_ED_TH=90 EDCCA_FALSE_CCA_TH=250 EDCCA_BLOCK_CHECK_TH=2 HT_DisallowTKIP=1 HT_STBC=0 DisableOLBC=0 HT_RDG=0 HT_BADecline=0 BGProtection=0 EfuseBufferMode=1 E2pAccessMode=2 TxPreamble=0 TxBurst=1 PktAggregate=0 IEEE80211H=0 ShortSlot=1 IgmpSnEnable=1 FixedTxMode=0 TxRate=0 PreAuth=0 WirelessEvent=0 MACRepeaterEn=0 ApCliEnable=0 ApCliMcastReqEnable=1 ApCliDefauE2pAccessMode=2 SSID[0]=, EdcaIdx=0 SSID[1]=, EdcaIdx=0 SSID[2]=TP-Link_Hidden_5GHz, EdcaIdx=0 cfg_mode=14 cfg_mode=14 cfg_mode=14 wmode_band_equal(): Band Equal! [TxPower] BAND0: 100 [SKUenable] BAND0: 1 [PERCENTAGEenable] BAND0: 1 profile: FragThreshold[0]=2346 APEdca0 APEdca1 APEdca2 APEdca3 APSDCapable[0]=0 APSDCapable[1]=0 APSDCapable[2]=0 APSDCapable[3]=0 APSDCapable[4]=0 APSDCapable[5]=0 APSDCapable[6]=0 APSDCapable[7]=0 APSDCapable[8]=0 APSDCapable[9]=0 APSDCapable[10]=0 APSDCapable[11]=0 APSDCapable[12]=0 APSDCapable[13]=0 APSDCapable[14]=0 APSDCapable[15]=0 default ApCliAPSDCapable[0]=0 read_itxbf: Common.ITxBfEn = 0 [RTMPSetProfileParameters]Disable DFS/Zero wait=0/0 AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD AndesSendCmdMsg: Command type = ed, Extension command type = 48 HT: WDEV[0] Ext Channel = BELOW RTMPSetProfileParameters: Mcast frame, i=0, Mode=2! set_thermal_protection_criteria_proc: fgHighEn: 1, fgLowEn: 1, fgRFOffEn: 1, cHighTempTh: 110, cLowTempTh: 104, cRFOffTh: 124 set_thermal_protection_criteria_proc: u4RechkTimer: 20, ucType: Duty Cycle MtCmdThermalProtect: ucBand:0, HighEn:1, HighTempTh:110, LowEn:1, LowTempTh:104, RechkTimer:20 MtCmdThermalProtect: RFOffEn: 1, RFOffTh: 124, ucType: 1 AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD AndesSendCmdMsg: Command type = ed, Extension command type = 23 set_thermal_protection_admin_ctrl_duty_proc: ucBand:0, u4Lv0Duty:100, u4Lv1Duty:70, u4Lv2Duty:50, u4Lv3Duty:30 AndesSendCmdMsg: Could not send in band command due to diablefRTMP_ADAPTER_MCU_SEND_IN_BAND_CMD AndesSendCmdMsg: Command type = ed, Extension command type = 23 WtcSetMaxStaNum: MaxStaNum:105, BssidNum:3, WdsNum:0, ApcliNum:1, MaxNumChipRept:24, MinMcastWcid:131 Allocate 7168 memory for BA reordering Top Init Done! Use dev_alloc_skb RX[0] DESC a0c11000 size = 2048 RX[1] DESC a0c12000 size = 2048 cut_through_init(): ct sw token number = 2047 cut_through_token_list_init(): TokenList inited done!id_head/tail=0/2048 cut_through_token_list_init(): 82852f08,82852f08 cut_through_token_list_init(): TokenList inited done!id_head/tail=0/2048 cut_through_token_list_init(): 82852f18,82852f18 Hif Init Done! ctl->txq = c0614888 ctl->rxq = c0614894 ctl->ackq = c06148a0 ctl->kickq = c06148ac ctl->tx_doneq = c06148b8 ctl->rx_doneq = c06148c4 mt7663_fw_prepare():using E2 ROM patch mt7663_fw_prepare():using E2 firmware Parsing patch header Built date: 1911131412ecf4d Platform: 7663 HW/SW version: 0x6d702d31 Patch version: 0x3830328a Target address: 0xdc000, length: 203984 patch is not ready && get semaphore success Start address = 0xdc000, DL length = 203984, Data mode = 0x80000000 EventGenericEventHandler: CMD Success MtCmdAddressLenReq:(ret = 0) MtCmdPatchFinishReq EventGenericEventHandler: CMD Success release patch semaphore Parsing CPU 0 fw tailer Chip ID: 0x08 Eco version: 0x01 Region number: 0x03 Format version: 0x02 Format flag: 0x01 Ram version: 7663mp1827 Built date: 20191113141412 Common crc: 0xe65fcd05 Parsing tailer region 0 Decomp crc: 0x0 Decomp size: 0x0 Decomp block size: 0x0 Target address: 0x112c00 Download size: 276352 Feature set: 0x27 Parsing tailer region 1 Decomp crc: 0x0 Decomp size: 0x0 Decomp block size: 0x0 Target address: 0x2018400 Download size: 70656 Feature set: 0x07 Parsing tailer region 2 Decomp crc: 0x0 Decomp size: 0x0 Decomp block size: 0x0 Target address: 0x40100000 Download size: 14720 Feature set: 0x07 Release info: header tag = 0, total length = 0 Start address = 0x112c00, DL length = 276352, Data mode = 0x8000000f EventGenericEventHandler: CMD Success MtCmdAddressLenReq:(ret = 0) Start address = 0x2018400, DL length = 70656, Data mode = 0x8000000f EventGenericEventHandler: CMD Success MtCmdAddressLenReq:(ret = 0) Start address = 0x40100000, DL length = 14720, Data mode = 0x8000000f EventGenericEventHandler: CMD Success MtCmdAddressLenReq:(ret = 0) MtCmdFwStartReq: override = 0x1, address = 0x112c00 EventGenericEventHandler: CMD Success MCU Init Done! efuse_probe: efuse = 511161 RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 RtmpEepromGetDefault::e2p_dafault=1 RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 NVM is FLASH mode. dev_idx [1] FLASH OFFSET [0x8000] --> rtmp_nv_init --> rtmp_nv_init 526 : call RtmpFlashRead from offset 0x8000, len = 1536 ra_mtd_read_nm 592: from = 32768, len = 1536 ra_mtd_read_nm 598 read from partition radio return ret = 0 --> rtmp_nv_init 528 : show Read data: validFlashEepromID(): eeFlashId=7663, pAd->ChipID=7663 Country Region from e2p = 0 mt7663_antenna_default_reset() todo RTMPReadTxPwrPerRate(444): Don't Support this now! RcRadioInit(): DbdcMode=0, ConcurrentBand=1 RcRadioInit(): pRadioCtrl=83d46db8,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf AntCfgInit(2929): Not support for HIF_MT yet! MtPwrLimitLoadParamHandle 92: Entering MtPwrLimitLoadParamHandle!!! MtReadPwrLimitTable 488: Entering MtReadPwrLimitTable MtReadPwrLimitTable 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 = 0x0 MtReadPwrLimitTable 534: srcfile.Status = 0 MtPwrLimitLoadParamHandle 92: Entering MtPwrLimitLoadParamHandle!!! MtReadPwrLimitTable 488: Entering MtReadPwrLimitTable MtReadPwrLimitTable 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 = 0x0 MtReadPwrLimitTable 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=0x82783c92 MtAsicSetMacMaxLen(1073): Not support for HIF_MT yet! <--mt_mac_init() CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 MAC Init Done! MT7663BBPInit():BBP Initialization..... Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2 Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0 MT7663BBPInit() todo PHY Init Done! RtmpOSFileOpen() 789: ====>>>> Opening /etc/Wireless/iNIC/iNIC_ap_2G.dat, flag = 0x0 RtmpOSFileOpen(): Error 2 opening /etc/Wireless/iNIC/iNIC_ap_2G.dat Open file "/etc/Wireless/iNIC/iNIC_ap_2G.dat" failed! get_dev_l2profile 633 : src = /tmp/wireless/RT2860_5G.dat RTMPReadParametersHook 780 : src = /tmp/wireless/RT2860_5G.dat RtmpOSFileOpen() 789: ====>>>> Opening /tmp/wireless/RT2860_5G.dat, flag = 0x0 RTMPReadParametersHook 783 : Open file /tmp/wireless/RT2860_5G.dat, return srcf = 832b46c0 RTMPReadParametersHook 795 : Read file /tmp/wireless/RT2860_5G.dat, return 3067 bytes RTMPReadParametersHook 797 : call RTMPSetProfileParameters RTMPReadParametersHook 798 :Show buffer = Default TP-LINK= CountryNum=392 #AutoChannelSelect=3 Channel=40 MaxStaNum=24 BssidNum=3 WirelessMode=14 NoForwardingBTNBSSID=0 BasicRate=15 BeaconPeriod=100 DtimPeriod=1 #TxPower=100 RTSThreshold=2346 FragThreshold=2346 APSDCapable=0 DLSCapable=0 PMKCachePeriod=10 AccessPolicy0=0 AccessPolicy1=0 AccessPolicy2=0 AccessPolicy3=0 HT_BW=1 HT_EXTCHA=0 HT_BSSCoexistence=0 HT_GI=1 HT_HTC=0 HT_LinkAdapt=0 HT_OpMode=0 HT_MpduDensity=5 HT_AutoBA=1 HT_AMSDU=0 HT_BAWinSize=64 HT_MCS=33;33;33;33 CountryRegion=1 #CountryRegionABand=1 EDCCA_AP_STA_TH=1 EDCCA_AP_AP_TH=1 EDCCA_AP_RSSI_TH=-80 EDCCA_ED_TH=90 EDCCA_FALSE_CCA_TH=250 EDCCA_BLOCK_CHECK_TH=2 HT_DisallowTKIP=1 HT_STBC=0 DisableOLBC=0 HT_RDG=0 HT_BADecline=0 BGProtection=0 EfuseBufferMode=1 E2pAccessMode=2 TxPreamble=0 TxBurst=1 PktAggregate=0 IEEE80211H=0 ShortSlot=1 IgmpSnEnable=1 FixedTxMode=0 TxRate=0 PreAuth=0 WirelessEvent=0 MACRepeaterEn=0 ApCliEnable=0 ApCliMcastReqEnable=1 ApCliDefauE2pAccessMode=2 SSID[0]=, EdcaIdx=0 SSID[1]=, EdcaIdx=0 SSID[2]=TP-Link_Hidden_5GHz, EdcaIdx=0 cfg_mode=14 cfg_mode=14 cfg_mode=14 wmode_band_equal(): Band Equal! [TxPower] BAND0: 100 [SKUenable] BAND0: 1 [PERCENTAGEenable] BAND0: 1 profile: FragThreshold[0]=2346 APEdca0 APEdca1 APEdca2 APEdca3 APSDCapable[0]=0 APSDCapable[1]=0 APSDCapable[2]=0 APSDCapable[3]=0 APSDCapable[4]=0 APSDCapable[5]=0 APSDCapable[6]=0 APSDCapable[7]=0 APSDCapable[8]=0 APSDCapable[9]=0 APSDCapable[10]=0 APSDCapable[11]=0 APSDCapable[12]=0 APSDCapable[13]=0 APSDCapable[14]=0 APSDCapable[15]=0 default ApCliAPSDCapable[0]=0 read_itxbf: Common.ITxBfEn = 0 [RTMPSetProfileParameters]Disable DFS/Zero wait=0/0 HT: WDEV[0] Ext Channel = BELOW RTMPSetProfileParameters: Mcast frame, i=0, Mode=2! set_thermal_protection_criteria_proc: fgHighEn: 1, fgLowEn: 1, fgRFOffEn: 1, cHighTempTh: 110, cLowTempTh: 104, cRFOffTh: 124 set_thermal_protection_criteria_proc: u4RechkTimer: 20, ucType: Duty Cycle MtCmdThermalProtect: ucBand:0, HighEn:1, HighTempTh:110, LowEn:1, LowTempTh:104, RechkTimer:20 MtCmdThermalProtect: RFOffEn: 1, RFOffTh: 124, ucType: 1 set_thermal_protection_admin_ctrl_duty_proc: ucBand:0, u4Lv0Duty:100, u4Lv1Duty:70, u4Lv2Duty:50, u4Lv3Duty:30 tx_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=0 AsicSetPreTbtt(): NotSupportedFunc for this arch(HIF_MT)! Main bssid = 00:00:00:00:00:00 AsicSetRxFilter(): 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=0 TxBfModuleEnCtrl:It's not DBDC mode MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1 MSTA_Init (1) ---> ApCli Register MSTA IF (apclii0) , pAd->MSTANum = 1 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=40, wdev_type=2 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 WtcSetMaxStaNum: MaxStaNum:105, BssidNum:3, WdsNum:0, ApcliNum:1, MaxNumChipRept:24, MinMcastWcid:131 cp_support_is_enabled: set Driver CP_SUPPORT to Mode 2. RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 0 wdev_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/0x114 phy_mode=49, ch=40, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 AP inf up for ra_0(func_idx) OmacIdx=0 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp-----------------> ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MtCmdSetMacTxRx:(ret = 0) ApAutoChannelAtBootUp<----------------- [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 mtk_band_steering_netlink_init 262 band steering netlink init ok Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=40, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 wifi_sys_linkup(), wdev idx = 0 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! apidx 0 for WscUUIDInit Generate UUID for apidx(0) device rai0 entered promiscuous mode br0: port 5(rai0) entered forwarding state br0: port 5(rai0) entered forwarding state rai1: ===> mbss_virtual_if_open RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 1 wdev_attr_update(): wdevId1 = 12:27:f5:11:c6:96 [RcGetHdevByPhyMode]-- channel 0 fix for rdev fetching phy_freq_adjust : no prim_ch value for adjust! Caller: wlan_operate_init+0xb0/0x114 phy_mode=49, ch=0, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 AP inf up for ra_1(func_idx) OmacIdx=17 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp-----------------> ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MtCmdSetMacTxRx:(ret = 0) [AutoChSelBuildChannelListFor5G] ChListNum5G = 19 AsicSwitchChannel(): 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=0 mtk_band_steering_netlink_init 262 band steering netlink init ok Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 wifi_sys_linkup(), wdev idx = 1 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:134 for WDEV_TYPE:1 LinkToOmacIdx = 11, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 11 MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! apidx 1 for WscUUIDInit Generate UUID for apidx(1) device rai1 entered promiscuous mode br0: port 6(rai1) entered forwarding state br0: port 6(rai1) entered forwarding state rai2: ===> mbss_virtual_if_open RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 2 wdev_attr_update(): wdevId2 = 12:27:f5:21:c6:96 Caller: wlan_operate_init+0xb0/0x114 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 AP inf up for ra_2(func_idx) OmacIdx=18 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp-----------------> ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MtCmdSetMacTxRx:(ret = 0) ApAutoChannelAtBootUp<----------------- [PMF]APPMFInit:: apidx=2, MFPC=0, MFPR=0, SHA256=0 mtk_band_steering_netlink_init 262 band steering netlink init ok Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 wifi_sys_linkup(), wdev idx = 2 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:133 for WDEV_TYPE:1 LinkToOmacIdx = 12, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 12 MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! apidx 2 for WscUUIDInit Generate UUID for apidx(2) device rai2 entered promiscuous mode br0: port 7(rai2) entered forwarding state br0: port 7(rai2) entered forwarding state br0: port 2(ra0) entered disabled state br0: port 3(ra1) entered disabled state br0: port 4(ra2) entered disabled state rai0: ===> main_virtual_if_close wifi_sys_linkdown(), wdev idx = 0 ExtEventBeaconLostHandler::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 = 0 wifi_sys_close(), wdev idx = 0 br0: port 5(rai0) entered disabled state rai1: ===> mbss_virtual_if_close wifi_sys_linkdown(), wdev idx = 1 ExtEventBeaconLostHandler::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 = 0 wifi_sys_close(), wdev idx = 1 br0: port 6(rai1) entered disabled state rai0: ===> main_virtual_if_open RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP wifi_sys_open(), wdev idx = 0 wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96 Caller: wlan_operate_init+0xb0/0x114 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 AP inf up for ra_0(func_idx) OmacIdx=0 AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn ApAutoChannelAtBootUp-----------------> ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MtCmdSetMacTxRx:(ret = 0) ApAutoChannelAtBootUp<----------------- [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 mtk_band_steering_netlink_init 262 band steering netlink init ok Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 wifi_sys_linkup(), wdev idx = 0 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! apidx 0 for WscUUIDInit Generate UUID for apidx(0) br0: port 5(rai0) entered forwarding state br0: port 5(rai0) entered forwarding state rai2: ===> mbss_virtual_if_close wifi_sys_linkdown(), wdev idx = 2 ExtEventBeaconLostHandler::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 = 0 wifi_sys_close(), wdev idx = 2 br0: port 7(rai2) entered disabled state wifid[_getFactoryMode:188]: [_getFactoryMode,188] factoryMode = 0 wifid[mtk_init_platform:2086]: Not in Del::OID_AP_VENDOR_IE_DEL factory 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_DEL p_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 state br0: port 2(ra0) entered forwarding state Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 cfg_mode=9 wmode_band_equal(): Band Equal! AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 RTMPSetPiggyBack(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 parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1 AsicSetTxPreamble(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 = 0xa0 Main bssid = 10:27:f5:21:c6:95 AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 RTMPSetPiggyBack(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 parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1 AsicSetTxPreamble(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 = 0xa0 Main bssid = 10:27:f5:21:c6:95 AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 RTMPSetPiggyBack(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 parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1 AsicSetTxPreamble(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 = 0xa0 Main bssid = 10:27:f5:21:c6:95 AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 RTMPSetPiggyBack(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 parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1 AsicSetTxPreamble(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 = 0xa0 Main bssid = 10:27:f5:21:c6:95 Ralink HW NAT Module Enabled init PpeFoeBase = a0c80000 eth2 ifindex =3 eth3 ifindex =4 Device Instance WDEV 00: Name:ra0 Wdev(list) Idx:0 Idx:6 PpeDevRegHandler : ineterface ra0 register (0) WDEV 01: Name:ra1 Wdev(list) Idx:1 Idx:7 PpeDevRegHandler : ineterface ra1 register (1) WDEV 02: Name:ra2 Wdev(list) Idx:2 Idx:8 PpeDevRegHandler : ineterface ra2 register (2) WDEV 03: Name:apcli0 Wdev(list) Idx:3 Idx:9 PpeDevRegHandler : 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 = 0 cfg_mode=14 cfg_mode=14 Caller: wlan_operate_init+0xb0/0x114 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 [BuildChannelList] BandIdx = 0, PhyMode = 49, ChListNum = 19: Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 mtk_band_steering_netlink_init 262 band steering netlink init ok wifi_sys_linkdown(), wdev idx = 0 ExtEventBeaconLostHandler::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 = 0 wmm_ctrl_release_entry(): Can't find HdevObj or Edca not required wifi_sys_close(), wdev idx = 0 wifi_sys_open(), wdev idx = 0 wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96 Caller: wlan_operate_init+0xb0/0x114 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 wifi_sys_linkup(), wdev idx = 0 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 mtk_band_steering_netlink_init 262 band steering netlink init ok wifi_sys_linkdown(), wdev idx = 0 ExtEventBeaconLostHandler::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 = 0 wifi_sys_close(), wdev idx = 0 wifi_sys_open(), wdev idx = 0 wdev_attr_update(): wdevId0 = 10:27:f5:21:c6:96 Caller: wlan_operate_init+0xb0/0x114 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 wifi_sys_linkup(), wdev idx = 0 wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8192 UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=0,rx_stbc=0,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=5, ampdu_factor=3 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 Caller: SetCommonHT+0xb0/0x160 phy_mode=49, ch=36, wdev_type=1 ht_cap: ht_cap->HtCapInfo, ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 ht_cap: ht_cap->HtCapParm, mdpu_density=0, ampdu_factor=3 Device Instance WDEV 00: Name:rai0 Wdev(list) Idx:0 Idx:2 PpeDevRegHandler : ineterface rai0 register (6) WDEV 01: Name:rai1 Wdev(list) Idx:1 Idx:10 PpeDevRegHandler : ineterface rai1 register (7) WDEV 02: Name:rai2 Wdev(list) Idx:2 Idx:11 PpeDevRegHandler : ineterface rai2 register (8) WDEV 03: Name:apclii0 Wdev(list) Idx:3 Idx:12 PpeDevRegHandler : 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:95 MaxHTPhyMode BW:1 MCS:15 maxTxPower:20 Streams:2 RTMPAPSetInformation 2449: Found phyinfo of mac = 10:27:f5:21:c6:95, phyCapInfo: maxChWidth = 1, maxMCS = 15, maxTxPower = 20, numStreams = 2, phyMode = 0 RTMPAPSetInformation 2521 ssidLength = 12 RTMPAPSetInformation 2533 scan target SSID TP-Link_C695, scanType = 0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#11(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#12(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#13(2T2R), BBP_BW=0 CmdChannelSwitch 1993: pAd->SKUEn is true, reload sku parameters mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=1 RTMPAPSetInformation 2545 scan finished, send IEEE80211_REASON_COMPLETED to user space. MaxHTPhyMode BW:2 MCS:9 maxTxPower:20 Streams:2 RTMPAPSetInformation 5231: Found phyinfo of mac = 10:27:f5:21:c6:96, phyCapInfo: maxChWidth = 2, maxMCS = 9, maxTxPower = 20, numStreams = 2, phyMode = 0 SYNC - sync_fsm_scan_req_action:[1168] LAST_CH: 0, BAND: 0 AsicDisableSync(): 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 52 Skip DFS channel 56 Skip DFS channel 60 Skip DFS channel 64 Skip DFS channel 100 Skip DFS channel 104 Skip DFS channel 108 Skip DFS channel 112 Skip channel 116 Skip channel 120 Skip channel 124 Skip channel 128 Skip channel 132 Skip DFS channel 136 Skip DFS channel 140 AsicSwitchChannel(): 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 = 676 ath_band_steering_netlink_receive 176 pid = 676 ath_band_steering_netlink_receive 176 pid = 676 ath_band_steering_netlink_receive 176 pid = 676 kill 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 ready Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 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


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

  • ...
This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies
  • Last modified: 2024/02/12 11:13
  • by 127.0.0.1