TP-Link Archer VR1200v (v2)
The TP-Link Archer VR1200v (v2) is an ADSL2 / VDSL2+ modem with 4x gigabit LAN ports, 1x gigabit WAN port, 2 RJ-11 VoIP ports. It has 2 MediaTek wifi chips, one with 2.4Ghz b/g/n and the other with 5.0 Ghz abgn+ac.
OpenWrt support
Not supported yet. Work in progress.
At current, there is a pull request which builds an image that can boot to a console with working serial port and NAND flash. Wifi (PCIe) is expected to be relatively easy to accomplish, but Ethernet, ADSL, and VoIP DSP support are of unknown complexity.
Supporting activities
- OpenWrt support for Zyxel PMG5617GA, first GPON support !? is the central discussion point for en75 platform support.
- Pull request 17928 adds “boots-to-a-console” initial support.
Experimental firmware
You can currently install OpenWRT based on Pull request 17928 which will boot to a console but has (almost) no working drivers yet. In order to interact with it, you will need serial access access (which requires soldering).
- openwrt-en75-en751221-tplink_archer-vr1200v-v2-squashfs-sysupgrade.bin (based on Feb 28 2025 main branch)
Hardware highlights
CPU | Ram | Flash | Network | WLAN | USB | Serial | JTag |
---|---|---|---|---|---|---|---|
EN7513G @ 900 MHz | 128 MiB | 128 MiB | 5x 10/100/1000 | abgn+ac | No | Yes | No |
Installation
This device uses A/B Partitioning, where there is a flag in flash that tells the bootloader whether to try booting partition A, or partition B. OpenWRT is designed to install in partition A *only*, and not to overwrite other parts of the flash, so that the installation is effectively dual-boot between OpenWRT and the factory OS.
TP-Link uses cryptographically signed updates and since we don't have the private key, we cannot make updates that will work in the router's Web UI. At this time, the only way to install OpenWRT is from the bootloader using a serial connection.
Installing OpenWRT from the bootloader
1. Download or build the image file openwrt-en75-en751221-tplink_archer-vr1200v-v2-squashfs-sysupgrade.bin
2. Get the length of that file in hex (you'll need this for step 5)
printf '%X\n' "$(stat -c%s openwrt-en75-en751221-tplink_archer-vr1200v-v2-squashfs-sysupgrade.bin)"
3. Connect to device with xmodem capability, e.g.
picocom --send-cmd lsx -vv -b 115200 /dev/ttyUSB0
4. Switch device on and press a key to stop the bootloader
Press any key in 1 secs to enter boot command mode. ............
5. Type the xmodem receive command (don't press enter yet)
xmdm 80020000 <file length hex>
6. Copy the filename to your clipboard, you'll need it in a second.
7. Press enter and then *quickly* start xmodem and send the file, in picocom that is: ctrl+a
ctrl+s
<paste-the-file-name>
enter
.
bldr> xmdm 80002000 786630 CCCC *** file: openwrt-en75-en751221-tplink_archer-vr1200v-v2-squashfs-sysupgrade.bin $ lsx -vv openwrt-en75-en751221-tplink_archer-vr1200v-v2-squashfs-sysupgrade.bin Sending openwrt-en75-en751221-tplink_archer-vr1200v-v2-squashfs-sysupgrade.bin, 61644 blocks: Give your local XMODEM receive command now.
Normally you should see it begin counting the bytes as it transfers. If the transfer fails to start, wait 30 seconds to a minute for the bootloader prompt to return and then try steps 5,6,7 again.
9. Once the transfer has completed successfully, type the following
flash 1c0000 80020000 <file length hex>
10. Type re
or simply restart the device to boot into OpenWRT. If it boots the factory firmware,
that just means you need to switch the OS, see below.
Debricking
For recovery, flash backup, or other testing/development, you can use xmdm
to load the Generic EN751221 initramfs kernel into memory and start it without ever touching flash.
- Follow steps 1 thorough 8 of Installing OpenWRT from the bootloader (above)
- Instead of flashing, type
jump 80020000
to boot the kernel from memory
Switching OS
You can switch between booting partition A and partition B in the bootloader or in OpenWRT. There is currently no known way to access the factory OS without modifying it.
The switch is in the first 8 bytes of the reserve
partition (example: 0000000101010003
).
Byte 7 is the sum of all other bytes, if either byte 4 or byte 5 are zero, the master OS (A)
will be booted. The example above boots OS B.
Switching in the bootloader
If you are unable to get to the factory OS, you can also switch the flag in the bootloader.
- Stop the bootloader and login with the username and password.
- Write the flag to memory that you wish to use:
- Booting to partition A (OpenWRT)
memwl 80020000 00000001
memwl 80020004 01000002
- Booting to partition B (Factory)
memwl 80020000 00000001
memwl 80020004 01010003
- Commit the data to flash
flash 03fe0000 80020000 08
- Type
re
to reset the device, or power cycle it to boot into the other OS
Switching in OpenWRT
The en75 port of OpenWRT comes with a utility for switching the boot flag, it is called en75_chboot
.
To read the current state of the flag, use en75_chboot
To set the flag to OS B (Factory), use en75_chboot factory
To set the flag to OS A (OpenWRT), use en75_chboot openwrt
Hardware
Info
Architecture | MIPS |
---|---|
Vendor | EcoNet |
Bootloader | Modified TcBoot |
System-On-Chip | EcoNet EN7513G - MIPS 34Kc V5.8 |
CPU/Speed | 2 Thread 1 Core 900 MHz |
RAM Chip | Unknown 128MB |
Flash Chip | ESMT F50L1G41LB 128MB SPI NAND |
Wireless | MT7592(N) 2×2 U.FL 2.4Ghz Wi-Fi 4 (a/b/g/n) + MT7613BE(N) 2×2 5Ghz Wi-Fi 5 (a/b/g/n/ac) |
Ethernet | 4x GbE LAN (10/100/1000Mbit/s + Link & Act LED) |
DSL | 1x via EcoNet EN7556(N) driver |
Switch | Built-in MT7530 to SoC |
Serial | Yes soldering required |
GPIO Buttons | 3 (WiFi, WPS, Reset) |
GPIO LEDs | 11 (Red/Blue) |
Power | External 12V 1.5A, with a 5.5mm barrel connector |
Flash Layout
The OEM and bootloader use a custom bad block remapping algorithm to make the NAND flash more reliable. There is approximately 118 MiB of usable space, though the exact amount depends on how many bad blocks there are. Supporting the bad block algorithm in OpenWRT is obligatory because it is used in the bootloader.
The firmware and firmware_slave partitions each contain a kernel and rootfs partition, they are prefixed by a 512 byte custom header containing the kernel and rootfs sizes and a CRC32 of the content. The bootloader reads bytes in the “reserve” partition to decide whether it will boot the main kernel or the slave kernel, while booting if checks the CRC32 and if it is not a match, it attempts booting the other kernel.
The layout of the flash is as follows:
Layer0 | raw flash | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
Layer1 | user servicable area (bad block table) | reserved | ||||||||
Layer2 | “bootloader” | “misc” | “firmware” | “firmware_slave” | “reserve” | |||||
Layer3 | kernel | rootfs | kernel_slave | rootfs_slave |
A detailed representation is below, with unpartitioned and bad-block-table reserved space shown in brackets.
Start Address | End Address | Partition | Size | Notes |
---|---|---|---|---|
0x00000000 | 0x00080000 | “bootloader” | 512 KiB | The tcboot.bin bootloader binary |
0x00080000 | 0x001c0000 | “misc” | 1.25 MiB | Appears to be encrypted or compressed |
0x001c0000 | 0x009c0000 | “kernel” | 8 MiB | A 512 byte custom header followed by an LZMA compressed kernel |
0x009c0000 | 0x02000000 | “rootfs” | 22.25 MiB | A squashfs rootfs |
0x001c0000 | 0x02000000 | “firmware” | 30.25 MiB | Kernel and rootfs concatenated, this is also the update file format |
0x02000000 | 0x02800000 | “kernel_slave” | 8 MiB | Same as above |
0x02800000 | 0x03e40000 | “rootfs_slave” | 22.25 MiB | Same as above |
0x02000000 | 0x03e40000 | “firmware_slave” | 30.25 MiB | Same as above |
0x03e40000 | 0x03fe0000 | <unpartitioned space> | 1.625 MiB | All ffff |
0x03fe0000 | 0x04000000 | “reserve” | 128 KiB | Only first 8 bytes used, rest is ffff |
0x04000000 | 0x075e0000 | <unpartitioned space> | 53.875 MiB | All ffff |
0x075e0000 | 0x08000000 | <reserved> (inaccessible) | 10.125 MiB | Bad block table and remapped blocks |
TOTAL | 128 MiB |
Photos
Opening the case
To open the case, first take out the 4 screws on the back, then go around the crack between the faceplate and the back shell using a small flathead screwdriver to pry apart the snap hooks that hold the two together. Once open, the board comes out without disconnecting any wires.
Serial
→ port.serial general information about the serial port, serial port cable, etc.
Serial pins are present on the Archer VR1200v (v2), but you need to solder to them. The order of pins (starting from the side closest to the ports) is TX, RX, GND, VCC. You can connect with normal 115200 8n1 3.3v uart.
Bootlogs
OEM bootlog
BGA IC Xtal:1 DDR3 init. DRAMC init done. Calculate size. DRAM size=128MB Set new TRFC. ddr-1066 7512DRAMC V1.2.2 (0) Set SPI Flash Clock to 25 Mhz EN751221 at Thu Feb 9 13:01:21 UTC 2023 version 1.1 free bootbase Memory size 128MB Set SPI Flash Clock to 25 Mhz spi_nand_probe: mfr_id=0xc8, dev_id=0x1 Dected SPI NAND Flash : _SPI_NAND_DEVICE_ID_F50L1G41LB, Flash Size=0x8000000 bmt pool size: 81 BMT & BBT Init Success tclinux partition size = 0x7f00000, real size = 0x81e192c tclinux partition size < its real size Press any key in 1 secs to enter boot command mode. ............ 2G calData: 0x7592 5G calData: 0x7663 Invalid Power GPIO, just return and don't turn on Power LED Boot flag chksum correct, select SLAVE image ==> The kernel_tag_start is 0x2000000 ==> free_mem_ptr = 0x80600000, free_mem_ptr_end = 0x80780000 ==> kernelLen = 0x15da64, kernelAddr in memory = 0x2000200 ==> Jump to kernelEntryPoint = 0x80006530 ==> Decompress to kernelTextAddr = 0x80002000 Uncompressing [LZMA] ... done. ==> jumpAddr = 0x80006530 Linux version 2.6.36 (root@3bba5a53818e) (gcc version 4.3.6 (Buildroot 2012.05) ) #74 SMP Thu Feb 9 13:06:52 UTC 2023 ISPRAM0: PA=00340000,Size=00010000,enabled memsize:128MB EcoNet EN751221 SOC prom init bootconsole [early0] enabled CPU revision is: 00019558 (MIPS 34Kc) Determined physical RAM map: memory: 07fe0000 @ 00020000 (usable) Wasting 1024 bytes for tracking 32 unused pages Zone PFN ranges: Normal 0x00000020 -> 0x00008000 Movable zone start PFN for each node early_node_map[1] active PFN ranges 0: 0x00000020 -> 0x00008000 3 available secondary CPU TC(s) PERCPU: Embedded 7 pages/cpu @81103000 s7264 r8192 d13216 u65536 pcpu-alloc: s7264 r8192 d13216 u65536 alloc=16*4096 pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32480 Kernel command line: es=1 PID hash table entries: 512 (order: -1, 2048 bytes) Dentry cache hash table entries: 16384 (order: 4, 65536 bytes) Inode-cache hash table entries: 8192 (order: 3, 32768 bytes) Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes. Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes Writing ErrCtl register=000568c6 Readback ErrCtl register=000568c6 nmi base is 8115c200 Memory: 125240k/130944k available (3384k kernel code, 5704k reserved, 684k data, 208k init, 0k highmem) SLUB: Genslabs=7, HWalign=32, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 Hierarchical RCU implementation. RCU-based detection of stalled CPUs is disabled. Verbose stalled-CPUs detection is disabled. NR_IRQS:64 CPU frequency 900.00 MHz Using 199.968 MHz high precision timer. console [ttyS0] enabled, bootconsole disabled console [ttyS0] enabled, bootconsole disabled Calibrating delay loop... 598.01 BogoMIPS (lpj=2990080) pid_max: default: 32768 minimum: 301 Mount-cache hash table entries: 512 34K sync es set to 1. Config7: 0x80080500 Limit of 4 TCs set TLB of 64 entry pairs shared by 2 VPEs VPE 0: TC 0 1 2, VPE 1: TC 3 IPI buffer pool of 16 buffers CPU revision is: 00019558 ((null)) TC 1 going on-line as CPU 1 CPU revision is: 00019558 ((null)) TC 2 going on-line as CPU 2 CPU revision is: 00019558 ((null)) TC 3 going on-line as CPU 3 Brought up 4 CPUs kworker/u:0 used greatest stack depth: 14864 bytes left NET: Registered protocol family 16 MT7512_pcie_init check pcie link up status: isRC0_LINKUP=1 isRC1_LINKUP=1 registering PCI controller with io_map_base unset bio: create slab <bio-0> at 0 pci 0000:00:00.0: BAR 8: assigned [mem 0x20000000-0x200fffff] pci 0000:00:01.0: BAR 8: assigned [mem 0x20100000-0x202fffff] pci 0000:01:00.0: BAR 0: assigned [mem 0x20000000-0x200fffff] pci 0000:01:00.0: BAR 0: set to [mem 0x20000000-0x200fffff] (PCI address [0x20000000-0x200fffff] pci 0000:00:00.0: PCI bridge to [bus 01-01] pci 0000:00:00.0: bridge window [io disabled] pci 0000:00:00.0: bridge window [mem 0x20000000-0x200fffff] pci 0000:00:00.0: bridge window [mem pref disabled] pci 0000:02:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff 64bit pref] pci 0000:02:00.0: BAR 0: set to [mem 0x20100000-0x201fffff 64bit pref] (PCI address [0x20100000-0x201fffff] pci 0000:02:00.0: BAR 2: assigned [mem 0x20200000-0x20203fff 64bit pref] pci 0000:02:00.0: BAR 2: set to [mem 0x20200000-0x20203fff 64bit pref] (PCI address [0x20200000-0x20203fff] pci 0000:02:00.0: BAR 4: assigned [mem 0x20204000-0x20204fff 64bit pref] pci 0000:02:00.0: BAR 4: set to [mem 0x20204000-0x20204fff 64bit pref] (PCI address [0x20204000-0x20204fff] pci 0000:00:01.0: PCI bridge to [bus 02-02] pci 0000:00:01.0: bridge window [io disabled] pci 0000:00:01.0: bridge window [mem 0x20100000-0x202fffff] pci 0000:00:01.0: bridge window [mem pref disabled] PCI: Enabling device 0000:00:00.0 (0000 -> 0002) PCI: Enabling device 0000:00:01.0 (0000 -> 0002) NET: Registered protocol family 8 NET: Registered protocol family 20 Switching to clocksource MIPS NET: Registered protocol family 2 IP route cache hash table entries: 1024 (order: 0, 4096 bytes) TCP established hash table entries: 4096 (order: 3, 32768 bytes) TCP bind hash table entries: 4096 (order: 3, 32768 bytes) TCP: Hash tables configured (established 4096 bind 4096) TCP reno registered UDP hash table entries: 128 (order: 0, 4096 bytes) UDP-Lite hash table entries: 128 (order: 0, 4096 bytes) NET: Registered protocol family 1 mt7512_pcie_fixup: 0x1438 = 20000014 mt7512_pcie_fixup: 0x3438 = 20100015 mt7512_pcie_rc1_retrain: 80 = 0147dc12 80 = 01608c12 RC1 Link Traing Result: 10120008 TC3162 hardware watchdog module loaded. squashfs: version 4.0 (2009/01/31) Phillip Lougher exFAT: Version 1.2.9 fuse init (API version 7.15) msgmni has been set to 244 io scheduler noop registered (default) ttyS0 at I/O 0xbfbf0003 (irq = 1) is a TC3162 brd: module loaded SPI Flash Init Start Found no SPI flash device IS_SPIFLASH=0x0, IS_NANDFLASH=0x2, (0xBFA10114)=0x6) SPI_NAND_Flash_init: before init, mtx_mode_tog=0xl9, manaul_en=0x1 spi_nand_probe: mfr_id=0xc8, dev_id=0x1 Dected SPI NAND Flash : _SPI_NAND_DEVICE_ID_F50L1G41LB, Flash Size=0x8000000 spi nand flash tc3162: flash device 0x01000000 at 0x1c000000 EN7512 mtd init: spi nand probe enter [spi_nand_setup] : Enter NAND device: Manufacturer ID: 0xc8, Chip ID: 0x01 (Unknown _SPI_NAND_DEVICE_ID_F50L1G41LB) nand_scan_ident ok [spi_nand_setup]: chip size = 0x8000000, erase_shift=0x11 calc_bmt_pool_size : need_valid_block_num=0x51, total_block=0x400 File:drivers/mtd/chips/spi_nand_flash.c===>Function:spi_nand_setup Line:4546 bmt_pool_size=81 bmt pool size: 81 Init bmt table, size: 81 bmt count: 81, system count: 943 begin to search BMT from block 1023 Match bmt signature @ block: 1023 Valid BMT, version v1 bmt found at block: 1023, mapped block: 0 Load bmt data success @ block 1023 BMT v1.total 0 mapping Match bbt signature BBT Checksum is: 0x1 Valid BBT, version v1 bbt found, bad block count: 0 Load bbt data success BMT & BBT Init Success tc3162_mtd_init:Adding TP partition Creating 9 MTD partitions on "EN7512-SPI_NAND": 0x000000000000-0x000000080000 : "boot" 0x000000080000-0x0000001c0000 : "misc" 0x0000001c0000-0x0000009c0000 : "kernel" 0x0000009c0000-0x000002000000 : "rootfs" 0x0000001c0000-0x000002000000 : "firmware" 0x000002000000-0x000002800000 : "kernel_slave" 0x000002800000-0x000003e40000 : "rootfs_slave" 0x000002000000-0x000003e40000 : "firmware_slave" 0x000003fe0000-0x000004000000 : "reserve" mtd[reserve]: map address 03fe0000 to offset 00000000 rootfs_slave PPP generic driver version 2.4.2 PPP Deflate Compression module registered PPP BSD Compression module registered NET: Registered protocol family 24 IMQ driver loaded successfully. Hooking IMQ after NAT on PREROUTING. Hooking IMQ before NAT on POSTROUTING. RT3xxx EHCI/OHCI init. Mirror/redirect action on u32 classifier Actions configured Netfilter messages via NETLINK v0.30. nf_conntrack version 0.5.0 (1956 buckets, 51200 max) ctnetlink v0.93: registering with nfnetlink. ip_tables: (C) 2000-2006 Netfilter Core Team TCP cubic registered Initializing XFRM netlink socket NET: Registered protocol family 10 mtd[misc]: map address 000cf100 to offset 0004f100 ip6_tables: (C) 2000-2006 Netfilter Core Team IPv6 over IPv4 tunneling driver NET: Registered protocol family 17 NET: Registered protocol family 15 Bridge firewalling registered Ebtables v2.0 registered 802.1Q VLAN Support v1.8 Ben Greear <greearb@candelatech.com> All bugs added by David S. Miller <davem@redhat.com> VFS: Mounted root (squashfs filesystem) readonly on device 31:6. Freeing unused kernel memory: 208k freed starting pid 322, tty '': '/etc/init.d/rcS' mount used greatest stack depth: 14152 bytes left SCSI subsystem initialized usbcore: registered new interface driver usbfs usbcore: registered new interface driver hub usbcore: registered new device driver usb Initializing USB Mass Storage driver... usbcore: registered new interface driver usb-storage USB Mass Storage support registered. mkdir used greatest stack depth: 13784 bytes left BGA USB PHY config port 0 u2_slew_rate_calibration FM_OUT value = 147(0x00000093) SR calibration value = 4 port 1 u2_slew_rate_calibration FM_OUT value = 143(0x0000008F) SR calibration value = 4 USB driver version: 751221.2.20160516 xhc_mtk xhc_mtk: xHCI Host Controller xhc_mtk xhc_mtk: new USB bus registered, assigned bus number 1 xhc_mtk xhc_mtk: irq 18, io mem 0x1fb90000 hub 1-0:1.0: USB hub found hub 1-0:1.0: 2 ports detected xhc_mtk xhc_mtk: xHCI Host Controller xhc_mtk xhc_mtk: new USB bus registered, assigned bus number 2 hub 2-0:1.0: USB hub found hub 2-0:1.0: 1 port detected module_sel: module license 'unspecified' taints kernel. Disabling lock debugging due to kernel taint TC3162 LED Manager 0.1 init tcledctrl version: tcledctrl V1.1.0.0 (Feb 9 2023-13:08:24). tccicmd V1.1.0.0 (Feb 9 2023-13:08:32) ERROR!Create /etc/fwTCver.conf fail! wifi_ratelimit_init set queue 0 ratelimit 300000kbps set queue 1 ratelimit 300000kbps set queue 2 ratelimit 300000kbps set queue 3 ratelimit 300000kbps set queue 4 ratelimit 300000kbps set queue 5 ratelimit 300000kbps set queue 6 ratelimit 300000kbps set queue 7 ratelimit 300000kbps echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit echo ssid(raX/raiX) dir(rx/tx) ratelimit(kbps) > /proc/tc3162/wlan_ssid_ratelimit Example:echo ra0 rx 100 > /proc/tc3162/wlan_ssid_ratelimit macType = 0 qdma_lan: physical_size is 0x00200000 ether.c:v1.00-NAPI 29.Mar.2015 eth0: FE MAC Ethernet address: 48:22:54:4A:94:86 User External switch ,type 10 Disable forward! tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (0, 0x0) tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (1, 0x0) tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (2, 0x0) tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (3, 0x0) tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (4, 0x0) tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 9451 7512 Ge, MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (12, 0x0) tcPhyVerLookUp 3973 9451 7512 Ge, MCM MT7530 [tcPhyInit] in [tcPhyInit] out , r31 = (12, 0x0) GE Rxet cal (1)(1)(1)(0x1f) GE Rxet cal (2)(1)(1)(0x1e) GE Rxet cal (3)(1)(1)(0x1d) GE Rext AnaCal Done! (4)(0x1c) GE Rext AnaCal Done! (4)(0x1c) GE R50 AnaCal Done! (3) (0x2d)(0xad) GE R50 AnaCal Done! (3) (0x2d)(0xad) GE R50 AnaCal Done! (4) (0x3f)(0xbf) GE R50 AnaCal Done! (3) (0x2d)(0xad) GE Tx offset AnaCal Done! (4)(0x4) GE Tx offset AnaCal Done! (3)(0x3) GE Tx offset AnaCal Done! (2)(0x2) GE Tx offset AnaCal Done! (3)(0x3) GE Tx amp AnaCal Done! (pair-0)(0x12)(0x3c20) GE Tx amp AnaCal Done! (19) (0xd) GE Tx amp AnaCal Done! (pair-1)(0x17)(0xa20) GE Tx amp AnaCal Done! (24) (0x8) GE Tx amp AnaCal Done! (pair-2)(0x19)(0xd20) GE Tx amp AnaCal Done! (21) (0xb) GE Tx amp AnaCal Done! (pair-3)(0x21)(0x320) GE Tx amp AnaCal Done! (31) (0x1) tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 tcPhyVerLookUp 3973 9412 7530 Ge, 0x1 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 0 MCM MT7530 tcPhyVerLookUp 3973 9451 7512 Ge, MCM MT7530 Dying Gasp 0.31 init oenmap 0 oenmap2 0 7530 set 5R Exec. Successful Exec. Successful Exec. Successful macType = 0 qdma_wan: qdma_bmgr.c [2644]: HW_FWD physical size is not illegal, force setting to 4MB qdma_wan: physical_size is 0x00400000 Exec. Successful Exec. Successful Exec. Successful MTK DSP support insmod used greatest stack depth: 13752 bytes left [1] PCM V2.4 (May 25 2018 12:45:02) Major Num:255, device: spi init mod-slic3,interface:ISI,devNum:1,gpio:2000 ISI Silabs SLIC type selected by SW makefile compile option init slicFunc slic1:3 slic2:3 SPI_Reset SLIC_DeviceVerify DEBUG[SLIC_DeviceVerify:551] * Si3228x * deviceVerify ProSLIC_Version 9.1.0 REG_0 = 0xcb Channel 0, Part_num 0x1, Revision 0x3 si3228x_deviceVerify Success! DEVICE_VERIFY ret:1 Bypass si3228x_deviceVerify on device 1 DEVICE_VERIFY ret:0 SPI Reset times:1 pcm1 ch num:2 pcm2 ch num:0 Init fxsNum(2) + fxoNum(0) = slic_ch_num(:2) , deviceNum(1) [DBG SLIC_Init:L596]FXS_NUM=2 FXO_NUM=0 si3228xNumProslic = 1 si3228xNumChannel = 2 si3228xdeviceId = 0 ProSLIC_createControlInterface = 0 ProSLIC_createDevice = 0 ProSLIC_createChannel = 0 ProSLIC_SWInitChan = 0 chanPvt[0].chanType 1 chanPvt[0].chipType 3 ProSLIC_createChannel = 0 ProSLIC_SWInitChan = 0 chanPvt[1].chanType 1 chanPvt[1].chipType 3 DEBUG[ProSLIC_Init_with_Options:458] Si3228x_Init_with_Options(470) size = 2 init_opt = 0 SiVoice: Channel 0: Type = PROSLIC Rev = 3 SiVoice: Channel 1: Type = PROSLIC Rev = 3 ProSLIC:loading patch: 10292015 Si3228x: VBAT @ 50ms = 59.111 v Si3228x: VBAT Up = 58.901 v Si3228x: VBAT @ 50ms = 58.692 v Si3228x: VBAT Up = 58.901 v Si3228x: : ProSLIC initialization completed. DEBUG[Si3228x_Init_with_Options:919] ProSLIC:Starting LB Cal on channel 0 ProSLIC:Starting LB Cal on channel 1 ___ COUNTRY SETTING ___ ring_idx : 0 imp_idx : 0 ProSLIC:PCMStart ProSLIC:PCMStart [DBG SLIC_Init:L596]FXS_NUM=2 FXO_NUM=0 Bypass si3228x_deviceInit on Device 1! slicwrite address(47) value : 0x80 si3228x disable pwsave init mod-ksocket init mod-acodec init mod-foip3 =============================== || MTK DSP init successfully || =============================== dbgTool_init init v2.0 pid 439's current affinity mask: (null) pid 439's new affinity mask: 8 pid 431's current affinity mask: (null) pid 431's new affinity mask: 8 pid 449's current affinity mask: (null) pid 449's new affinity mask: 8 pid 447's current affinity mask: (null) pid 447's new affinity mask: 8 pid 448's current affinity mask: (null) pid 448's new affinity mask: 8 pid 429's current affinity mask: (null) pid 429's new affinity mask: 8 Power Manager 0.2 init /etc/init.d/rcS: /etc/init.d/rcS.econet: line 118: can't creth0: starting interface. enetif_start_queue ate /proc/tc3162/vlan_tag_sw: nonexistent directory rcS.sdk init done! Register flash device: flash0 creat_domain_proc ok tp_domain init ok insmod: can't insert '/lib/modules/dhcp_hook.ko': No such file or directory device recognition register success rcS init done! Please press Enter to activate this console. [ initCpuMask ] 400 - ERROR: before cpu mask 00000000 [ initCpuMask ] 415 - ERROR: after cpu mask 0000000D iptables used greatest stack depth: 13616 bytes left ebtables used greatest stack depth: 13244 bytes left [ dm_readFile ] 2308 - ERROR: can not open xml file /var/tmp/pc/reduced_data_model.xml!, about to open file /etc/reduced_data_model.xml mtd[misc]: map address 00080000 to offset 00000000 [ omtd[misc]: map address 00140000 to offset 000c0000 al_sys_GetConfigAddr ] 4188: checking addr1 00080000 seq1:2 [ omtd[misc]: map address 00140000 to offset 000c0000 al_sys_GetConfigAddr ] 4194: checking addr2 00140000 seq2:3 mtd[misc]: map address 00140000 to offset 000c0000 [ oal_sys_readCfgFlash ] 4753 - ERROR: Read config index:3 [ dm_postHook ] 942 - ERROR: X_TP_ConfigVersion 5a000002, X_TP_DMVersion 5a000002 mtd[misc]: map address 000cf800 to offset 0004f800 ==mtd[misc]: map address 000cf800 to offset 0004f800 =========>manufacture:0, ISPflag:0 Enable forward! *reg=00002104 value:00ff0000 *reg=00002204 value:00ff0000 *reg=00002304 value:00ff0000 *reg=00002404 value:00ff0000 ioctl: No such device ifconfig: SIOCSIFHWADDR: No such device mtd[misc]: map address 000cf100 to offset 0004f100 use br_hw_addr! interface eth0.5 does not exist! interface eth0.4 does not exist! interface eth0.3 does not exist! interface eth0.2 does not exist! interface eth0.1 does not exist! [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 1 [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 2 [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 3 [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 4 [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 5 [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 0 device eth0.5 entered promiscuous mode device eth0 entered promiscuous mode br_agc: port 1(eth0.5) entering forwarding state br_agc: port 1(eth0.5) entering forwarding state device eth0.4 entered promiscuous mode br_agc: port 2(eth0.4) entering forwarding state br_agc: port 2(eth0.4) entering forwarding state device eth0.3 entered promiscuous mode br_agc: port 3(eth0.3) entering forwarding state br_agc: port 3(eth0.3) entering forwarding state device eth0.2 entered promiscuous mode br_agc: port 4(eth0.2) entering forwarding state br_agc: port 4(eth0.2) entering forwarding state device eth0.1 entered promiscuous mode br_agc: port 5(eth0.1) entering forwarding state br_agc: port 5(eth0.1) entering forwarding state error: ethernet port cannot find the mapped switch port error: ethernet port cannot find the mapped switch port error: ethernet port cannot find the mapped switch port br_agc: port 4(eth0.2) entering forwarding state br_agc: port 3(eth0.3) entering forwarding state br_agc: port 2(eth0.4) entering forwarding state br_agc: port 1(eth0.5) entering forwarding state error: ethernet port cannot find the mapped switch port sendto: No such file or directory line(593) Msg.type(2014) pid(499) errno(2) ret(-1) [ read_dhcpc_config ] 121: error, unable to open config file: /var/tmp/dconf/udhcpc.conf [ cos_start_dhcpc ] 120 - ERROR: CQC:tm_start:35, tm_end:35 [ raw_packet ] 185: error, open /sys/class/net/br_agc/mtu failed [err] syslogd[syslogd_msg_process --670] syslogd : log module is not config error: ethernet port cannot find the mapped switch port [ cos_start_dhcpc ] 120 - ERROR: CQC:tm_start:35, tm_end:37 [ raw_packet ] 185: error, open /sys/class/net/br_agc/mtu failed [err] syslogd[syslogd_msg_process --670] syslogd : log module is not config error: ethernet port cannot find the mapped switch port error: ethernet port cannot find the mapped switch port [ cos_start_dhcpc ] 120 - ERROR: CQC:tm_start:35, tm_end:39 [ raw_packet ] 185: error, open /sys/class/net/br_agc/mtu failed [err] syslogd[syslogd_msg_process --670] syslogd : log module is not config error: ethernet port cannot find the mapped switch port [ cos_start_dhcpc ] 120 - ERROR: CQC:tm_start:35, tm_end:41 [ cos_start_dhcpc ] 136 - ERROR: CQC:FAILED! [ cos_init ] 667 - ERROR: Expire time! device eth0.5 left promiscuous mode br_agc: port 1(eth0.5) entering disabled state device eth0.4 left promiscuous mode br_agc: port 2(eth0.4) entering disabled state device eth0.3 left promiscuous mode br_agc: port 3(eth0.3) entering disabled state device eth0.2 left promiscuous mode br_agc: port 4(eth0.2) entering disabled state device eth0.1 left promiscuous mode device eth0 left promiscuous mode br_agc: port 5(eth0.1) entering forwarding state Disable forward! [ prepareDropbear_emtd[misc]: map address 000cf100 to offset 0004f100 arly ] 696:mtd[misc]: map address 000cf200 to offset 0004f200 num of CPU core = 4. [ prepareDropbear_early ]mtd[misc]: map address 000cf300 to offset 0004f300 706: parent pid 499 mtd[misc]: map address 000cf600 to offset 0004f600 [mtd[misc]: map address 000cf700 to offset 0004f700 prepareDropbear_early ] 713: start creating dropmtd[misc]: map address 000cf160 to offset 0004f160 mtd[misc]: map address 000cf110 to offset 0004f110 bmtd[misc]: map address 000cf140 to offset 0004f140 emtd[misc]: map address 000cf500 to offset 0004f500 ar RSA key at CPU core 1. [ prepareDropbear_early ] 723: child pre cpu mask 0000000D [ prepareDropbear_early ] 737: child post cpu mask 00000002 [ prepareDropbear_early ] 741 - ERROR: Try create dropbear RSA key loop=0 ... [ voiceApi_initXtpVoiceServices ] 4587 - ERROR: Device.X_TP_Services.X_TP_VoiceService.{i}.PhyInterface.{i}. exit. skip create instance. /bin/sh: can't create /proc/voip_8021p_pcp: nonexistent directory mtd[misc]: map address 000cf160 to offset 0004f160 mtd[misc]: map address 000cf110 to offset 0004f110 mtd[misc]: map address 000cf140 to offset 0004f140 [ rsl_initDevInfo ] 1582: === softwareVersion 1.1.0 3.1.4 v607c.0 Build 230209 Rel.48987n === [ rmtd[misc]: map address 000cf500 to offset 0004f500 sl_initDevImtd[misc]: map address 000cf100 to offset 0004f100 nmtd[misc]: map address 000cf100 to offset 0004f100 fo ] 1609: === hardwareVersion Archer VR1200v v2.0 00000000 === Generating 2048 bit rsa key, this may take a while... mtd[misc]: map address 000cf500 to offset 0004f500 [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [44.493][cwmp] - [0;31mERROR[0m: pCert is null [44.493][cwmp] - [0;31mERROR[0m: pCert is null killall: dnsmasq: no process killed [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [ rsl_time_ntpStart ] 417: Current dns svr: [ oal_sys_getOldTZInfo ] 2438 - ERROR: Open TZ file error! [ ifHasDefaultGW ] 101 - ERROR: first line fscanf error [ rsl_time_ntpStart ] 417: Current dns svr: [ rsl_time_ntpStart ] 417: Current dns svr: [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 [ rsl_setXtpMultiIspObj ] 1351 - ERROR: The lengh(0) of phone number() is less than 3 or lager than 32. [ rsl_setObj ] 1488: perror:9007 [ rdp_setObj ] 694: perror:9007 ioctl: No such device ifconfig: SIOCSIFHWADDR: No such device posix_timer_do: 100 callbacks suppressed voip modules loaded, timer number 4[DBG SLIC_Reset:L302]slic reset num:0 mtd[misc]: map address 000cf100 to offset 0004f100 use br_hw_addr! [DBG SLIC_Reset:L312]slic reset num:0 [DBG SLIC_Init:L596]FXS_NUM=2 FXO_NUM=0 si3228xNumProslic = 1 si3228xNumChannel = 2 si3228xdeviceId = 0 ProSLIC_createControlInterface = 0 ProSLIC_createDevice = 0 ProSLIC_createChannel = 0 ProSLIC_SWInitChan = 0 chanPvt[0].chanType 1 chanPvt[0].chipType 3 ProSLIC_createChannel = 0 ProSLIC_SWInitChan = 0 chanPvt[1].chanType 1 chanPvt[1].chipType 3 Open /dev/hwnat0 pseudo device failed [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 1 vconfig: ioctl error for add: File exists [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 2 vconfig: ioctl error for add: File exists [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 3 vconfig: ioctl error for add: File exists [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 4 vconfig: ioctl error for add: File exists [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 5 vconfig: ioctl error for add: File exists [ oal_intf_createVirtualPorts ] 185 - ERROR: ifName is eth0, vid is 0 [ rsl_setUpDev2BridgePortObj ] 795: eth0.5 isWanConn=0 moveIntfToBr0=0 br0 device eth0.5 entered promiscuous mode device eth0 entered promiscuous mode [ oal_igmp_addProxyLanIf ] 248 - ERROR: pAddIfMsg->addIfName:br0 pAddIfMsg->boundIfName: iptables: Bad rule (does a matching rule exist in that chain?). iptables: Bad rule (does a matching rule exist in that chain?). DEBUG[ProSLIC_Init_with_Options:458] Si3228x_Init_with_Options(470) size = 2 init_opt = 0 SiVoice: Channel 0: Type = PROSLIC Rev = 3 SiVoice: Channel 1: Type = PROSLIC Rev = 3 ProSLIC:loading patch: 10292015 Si3228x: VBAT @ 50ms = 58.901 v Si3228x: VBAT Up = 59.111 v Si3228x: VBAT @ 50ms = 58.692 v Si3228x: VBAT Up = 58.901 v [ read_dhcpc_config ] 121: error, unable to open config file: /var/tmp/dconf/udhcpc.conf Si3228x: : ProSLIC initialization completed. DEBUG[Si3228x_Init_with_Options:919] ProSLIC:Starting LB Cal on channel 0 | Dibbler - a portable DHCPv6, version 1.0.1 (SERVER, Linux port) | Authors : Tomasz Mrugalski<thomson(at)klub.com.pl>,Marek Senderski<msend(at)o2.pl> | Licence : GNU GPL v2 only. Developed at Gdansk University of Technology. | Homepage: http://klub.com.pl/dhcpv6/ Starting daemon... [ rsl_setUpDev2BridgePortObj ] 795: eth0.4 isWanConn=0 moveIntfToBr0=0 br0 device eth0.4 entered promiscuous mode [ rsl_setUpDev2BridgePortObj ] 795: eth0.3 isWanConn=0 moveIntfToBr0=0 br0 device eth0.3 entered promiscuous mode [ rsl_setUpDev2BridgePortObj ] 795: eth0.2 isWanConn=0 moveIntfToBr0=0 br0 device eth0.2 entered promiscuous mode [ wifi_addPreNetObjs ] 154 - ERROR: band:2.4GHz has created public apObj, apObj.X_TP_APType:Public [ wifi_addPreNetObjs ] 164 - ERROR: 2.4GHz radio has created the public apObj, go next. [ wifi_addPreNetObjs ] 154 - ERROR: band:5GHz has created public apObj, apObj.X_TP_APType:Public [ wifi_addPreNetObjs ] 164 - ERROR: 5GHz radio has created the public apObj, go next. [ wifi_setFactoryConfig ] 1942 - ERROR: Dut is not in manufacturing mode!devInfoObj.X_TP_IsManufacture:0 open DNS error: No such file or directory NTP server list: ProSLIC:Starting LB Cal on channel 1 posix_timer_do: 27 callbacks suppressed ___ COUNTRY SETTING ___ ring_idx : 0 imp_idx : 0 ProSLIC:PCMStart ProSLIC:PCMStart [DBG SLIC_Init:L596]FXS_NUM=2 FXO_NUM=0 Bypass si3228x_deviceInit on Device 1! write address(47) value : 0x80 [DBG SLIC_Reset:L302]slic reset num:0 [DBG SLIC_Reset:L312]slic reset num:0 [DBG SLIC_Init:L596]FXS_NUM=2 FXO_NUM=0 si3228xNumProslic = 1 si3228xNumChannel = 2 si3228xdeviceId = 0 ProSLIC_createControlInterface = 0 ProSLIC_createDevice = 0 ProSLIC_createChannel = 0 ProSLIC_SWInitChan = 0 chanPvt[0].chanType 1 chanPvt[0].chipType 3 ProSLIC_createChannel = 0 ProSLIC_SWInitChan = 0 chanPvt[1].chanType 1 chanPvt[1].chipType 3 DEBUG[ProSLIC_Init_with_Options:458] Si3228x_Init_with_Options(470) size = 2 init_opt = 0 SiVoice: Channel 0: Type = PROSLIC Rev = 3 SiVoice: Channel 1: Type = PROSLIC Rev = 3 ProSLIC:loading patch: 10292015 Si3228x: VBAT @ 50ms = 59.111 v Si3228x: VBAT Up = 59.111 v Si3228x: VBAT @ 50ms = 58.901 v Si3228x: VBAT Up = 58.901 v Si3228x: : ProSLIC initialization completed. DEBUG[Si3228x_Init_with_Options:919] ProSLIC:Starting LB Cal on channel 0 MT7603: register rlt_drv PCI: Enabling device 0000:01:00.0 (0000 -> 0002) MT7603: === pAd = c2682000, size = 968512 === MT7603: line:843 -->RTMPAllocTxRxRingMemory <-- RTMPAllocTxRxRingMemory, Status=0, ErrorValue=0x <-- RTMPAllocAdapterBlock, Status=0 MT7603: pAd->CSRBaseAddress =0xc2580000, csr_addr=0xc2580000! MT7603: device_id =0x7603 MT7603: RtmpChipOpsHook(474): Not support for HIF_MT yet! MT7603: mt7603_init()--> MT7603: mt_bcn_buf_init(224): Not support for HIF_MT yet! MT7603: <--mt7603_init() MT7603: load_dev_l1profile()--> MT7603: RtmpOSFileOpen(): Error 2 opening /etc/wireless/l1profile.dat MT7603: load_dev_l1profile() Open file "/etc/wireless/l1profile.dat" failed, try embedded default! MT7603: load l1profile failed! mtd[misc]: map address 000cf100 to offset 0004f100 ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device MT7603: ra0: ===> MainVirtualIF_open MT7603: load_dev_l1profile()--> MT7603: RtmpOSFileOpen(): Error 2 opening /etc/wireless/l1profile.dat MT7603: load_dev_l1profile() Open file "/etc/wireless/l1profile.dat" failed, try embedded default! MT7603: load l1profile failed! MT7603: line:385 RTMPInitTxRxRingMemory MT7603: TxRing[0]: total 220 entry initialized MT7603: TxRing[1]: total 220 entry initialized MT7603: TxRing[2]: total 220 entry initialized MT7603: TxRing[3]: total 220 entry initialized MT7603: TX_BCN DESC a3b68000 size = 320 MT7603: RX[0] DESC a3b6a000 size = 2048 MT7603: RX[1] DESC a3b6b000 size = 2048 MT7603: E2pAccessMode=2 MT7603: cfg_mode=9 MT7603: cfg_mode=9 MT7603: wmode_band_equal(): Band Equal! MT7603: MAP_MODE=3 ProSLIC:Starting LB Cal on channel 1 MT7603: Key1Str is Invalid key length(0) or Type(0) MT7603: Key1Str is Invalid key length(0) or Type(0) MT7603: Key1Str is Invalid key length(0) or Type(0) MT7603: Key1Str is Invalid key length(0) or Type(0) MT7603: Key2Str is Invalid key length(0) or Type(0) MT7603: Key2Str is Invalid key length(0) or Type(0) MT7603: Key2Str is Invalid key length(0) or Type(0) MT7603: Key2Str is Invalid key length(0) or Type(0) MT7603: Key3Str is Invalid key length(0) or Type(0) MT7603: Key3Str is Invalid key length(0) or Type(0) MT7603: Key3Str is Invalid key length(0) or Type(0) MT7603: Key3Str is Invalid key length(0) or Type(0) MT7603: Key4Str is Invalid key length(0) or Type(0) MT7603: Key4Str is Invalid key length(0) or Type(0) MT7603: Key4Str is Invalid key length(0) or Type(0) MT7603: Key4Str is Invalid key length(0) or Type(0) MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: 4e:MT7603: 84:MT7603: 3f:MT7603: 1a:MT7603: 0c:MT7603: 43:MT7603: f1:MT7603: 40:MT7603: 95:MT7603: cd:MT7603: cf:MT7603: 03:MT7603: d5:MT7603: cb:MT7603: b8:MT7603: 21:MT7603: MT7603: d6:MT7603: be:MT7603: 96:MT7603: 63:MT7603: 1d:MT7603: 12:MT7603: 2e:MT7603: da:MT7603: de:MT7603: e5:MT7603: 19:MT7603: 62:MT7603: bc:MT7603: 36:MT7603: c0:MT7603: 5a:MT7603: MT7603: MT7603: [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0 MT7603: [PMF]Set_PMFMFPC_Proc:: apidx=1, Desired MFPC=0 MT7603: [PMF]Set_PMFMFPC_Proc:: apidx=2, Desired MFPC=0 MT7603: [PMF]Set_PMFMFPC_Proc:: apidx=3, Desired MFPC=0 MT7603: [PMF]Set_PMFMFPC_Proc:: apidx=4, Desired MFPC=0 MT7603: [PMF]Set_PMFMFPC_Proc:: apidx=5, Desired MFPC=0 MT7603: [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0 MT7603: [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0 MT7603: pAd->reg_domain = 1 MT7603: SKUenable=1 MT7603: Smart Carrier Sense = 0 MT7603: FW Version:MT7603: CMT7603: LMT7603: 1MT7603: 7MT7603: 3MT7603: 7MT7603: 6MT7603: 6MT7603: _MT7603: RMT7603: MT7603: FW Build Date:MT7603: 2MT7603: 0MT7603: 1MT7603: 7MT7603: 1MT7603: 1MT7603: 1MT7603: 0MT7603: 1MT7603: 0MT7603: 5MT7603: 9MT7603: 3MT7603: 2MT7603: MT7603: MT7603: CmdAddressLenReq:(ret = 0) MT7603: CmdFwStartReq: override = 1, address = 1048576 MT7603: CmdStartDLRsp: WiFI FW Download Success MT7603: AsicDMASchedulerInit(): DMA Scheduler Mode=0(LMAC) MT7603: FwloadFlag=0 efuse_probe: efuse = 10000002 MT7603: RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 MT7603: RtmpEepromGetDefault::e2p_dafault=1 MT7603: RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 MT7603: NVM is FLASH mode, dev_idx [0] FLASH OFFSET [0x100000], SIZE [0x200] MT7603: 1. Phy Mode = 14 exec! mtd[misc]: map address 00100000 to offset 00080000 ==============eeFlashId: 0x7592 ==================== MT7603: @@@ NICReadEEPROMParameters : pAd->FWLoad=0 ___ COUNTRY SETTING ___ ring_idx : 0 imp_idx : 0 ProSLIC:PCMStart MT7603: Country Region from e2p = ffff tssi_1_target_pwr_g_band = 34 MT7603: 2. Phy Mode = 14 ProSLIC:PCMStart [DBG SLIC_Init:L596]FXS_NUM=2 FXO_NUM=0 Bypass si3228x_deviceInit on Device 1! write address(47) value : 0x80 MT7603: 3. Phy Mode = 14 MT7603: NICInitPwrPinCfg(14): Not support for HIF_MT yet! MT7603: NICInitializeAsic(588): Not support rtmp_mac_sys_reset () for HIF_MT yet! MT7603: mt_mac_init()--> MT7603: mt7603_init_mac_cr()--> MT7603: AsicSetMacMaxLen(1927): Set the Max RxPktLen=1024! MT7603: <--mt_mac_init() MT7603: WTBL Segment 1 info: MT7603: MemBaseAddr/FID:0x28000/0 MT7603: EntrySize/Cnt:32/128 MT7603: WTBL Segment 2 info: MT7603: MemBaseAddr/FID:0x40000/0 MT7603: EntrySize/Cnt:64/128 MT7603: WTBL Segment 3 info: MT7603: MemBaseAddr/FID:0x42000/64 MT7603: EntrySize/Cnt:64/128 MT7603: WTBL Segment 4 info: MT7603: MemBaseAddr/FID:0x44000/128 MT7603: EntrySize/Cnt:32/128 MT7603: AntCfgInit(2754): Not support for HIF_MT yet! MT7603: MCS Set = ff ff 00 00 01 MT7603: mt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0 [ prepareDropbear_early ] 753: create dropbear RSA key success. [ prepareDropbear_early ] 760: start creating dropbear DSS key at CPU core 1. [ prepareDropbear_early ] 764: Try create dropbear DSS key loop=0 ... Generating 1024 bit dss key, this may take a while... MT7603: mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#9(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#10(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#11(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#12(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#13(2T2R), BBP_BW=0 MT7603: mt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#2(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#4(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#5(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#6(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#7(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: mt7603_switch_channel(): Switch to Ch#8(2T2R), BBP_BW=0 MT7603: SYNC - BBP R4 to 20MHz.l MT7603: [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: AsicSetRalinkBurstMode(4343): Not support for HIF_MT yet! MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: mt7603_switch_channel(): Switch to Ch#1(2T2R), BBP_BW=0 MT7603: AsicSetTxPreamble(4330): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0 MT7603: ap_ftkd> Initialize FT KDP Module... MT7603: Main bssid = 48:22:54:4a:94:86 <==== rt28xx_init, Status=0 MT7603: @@@ ed_monitor_init : ===> MT7603: @@@ ed_monitor_init : <=== MT7603: mt7603_set_ed_cca: TURN ON EDCCA mac 0x10618 = 0xd7c87d0f, EDCCA_Status=1 MT7603: WiFi Startup Cost (ra0): 18.020s MT7603: RTMPSetLEDStatus::LedMode=1, LED_CMD=0, Status=3 MT7603: RTMPSetLEDStatus: LED_CMD:0x0, LED Mode:0x1, LinkStatus:0x20 ifconfig used greatest stack depth: 12500 bytes left MT7603: ra4: ===> MBSSVirtualIF_open MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 ##### mbss_cr_enable, BssId = 4 MT7603: ra5: ===> MBSSVirtualIF_open MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 ##### mbss_cr_enable, BssId = 5 mtd[misc]: map address 000cf100 to offset 0004f100 MT7603: Set_Map_Proc current MAP MODE is 3 MT7603: Set_MapR2_Proc: MAP R2 is enabled MT7603: [Set_Bh_Bss_Proc]: ra0 DevOwnRole 0x20 [ prepareDropbear_early ] 776: create dropbear DSS key success. [ prepareDroMT7603: [Set_Fh_Bss_Proc]: ra0 DevOwnRole 0x20 pbear_early ] 785: parent pid 499 [ prepareDropbear_early ] 793: parent pre cpu mask 0000000D [ prepareDropbear_early ] 807: parent post cpu mask 0000000F MT7603: [Set_Fh_Bss_Proc]: ra4 DevOwnRole 0x0 MT7603: [Set_Bh_Bss_Proc]: ra4 DevOwnRole 0x44 MT7603: [Set_Fh_Bss_Proc]: ra5 DevOwnRole 0x0 MT7603: [Set_Bh_Bss_Proc]: ra5 DevOwnRole 0x48 MT7603: [Set_Fh_Bss_Proc]: ra6 DevOwnRole 0x0 MT7603: [Set_Bh_Sta_Proc]: apcli0 DevOwnRole 0x80 [ map_attachSharedBuff ] 200 - ERROR: Get map shared buffer error. [ oal_easymesh_getMAPDevices ] 1416 - ERROR: Failed to attach map shared memory buffer. [ rsl_easymesh_updateMapDev ] 11520 - ERROR: There are no APDevices saved in map shared memory. [ rsl_easymesh_checkChannels ] 13717 - ERROR: Can not find Controller MT7603: cfg_mode=9 MT7603: wmode_band_equal(): Band Equal! Interface doesn't accept private ioctl... set (8BE2): Invalid argument Interface doesn't accept private ioctl... set (8BE2): Invalid argument Interface doesn't accept private ioctl... set (8BE2): Invalid argument Interface doesn't accept private ioctl... set (8BE2): Invalid argument Interface doesn't accept private ioctl... set (8BE2): Invalid argument Interface doesn't accept private ioctl... set (8BE2): Invalid argument mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 [ rsl_setUpDev2BridgePortObj ] 795: ra5 isWanConn=0 moveIntfToBr0=0 br0 device ra5 entered promiscuous mode br0: port 5(ra5) entering forwarding state br0: port 5(ra5) entering forwarding state [ rsl_setUpDev2BridgePortObj ] 795: ra4 isWanConn=0 moveIntfToBr0=0 br0 device ra4 entered promiscuous mode br0: port 6(ra4) entering forwarding state br0: port 6(ra4) entering forwarding state [ rsl_setUpDev2BridgePortObj ] 795: ra3 isWanConn=0 moveIntfToBr0=0 br0 device ra3 entered promiscuous mode [ rsl_setUpDev2BridgePortObj ] 795: ra2 isWanConn=0 moveIntfToBr0=0 br0 device ra2 entered promiscuous mode [ rsl_setUpDev2BridgePortObj ] 795: ra1 isWanConn=0 moveIntfToBr0=0 br0 device ra1 entered promiscuous mode [ rsl_setUpDev2BridgePortObj ] 795: ra0 isWanConn=0 moveIntfToBr0=0 br0 device ra0 entered promiscuous mode br0: port 10(ra0) entering forwarding state br0: port 10(ra0) entering forwarding state device apcli0 entered promiscuous mode MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 MT7603: System halted, removed or MlmeRest, exit MlmeTask!(QNum = 1) MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: ap_ftkd> Release FT KDP Module... MT7603: [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: AsicSetRalinkBurstMode(4343): Not support for HIF_MT yet! MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=1 MT7603: AsicSetTxPreamble(4330): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0 MT7603: ap_ftkd> Initialize FT KDP Module... MT7603: Main bssid = 48:22:54:4a:94:86 MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 MT7603: System halted, removed or MlmeRest, exit MlmeTask!(QNum = 2) MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: ap_ftkd> Release FT KDP Module... MT7603: [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: AsicSetRalinkBurstMode(4343): Not support for HIF_MT yet! MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=1 MT7603: AsicSetTxPreamble(4330): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0 MT7603: ap_ftkd> Initialize FT KDP Module... MT7603: Main bssid = 48:22:54:4a:94:86 iwpriv used greatest stack depth: 12476 bytes left MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0x0 MT7603: System halted, removed or MlmeRest, exit MlmeTask!(QNum = 3) MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: ap_ftkd> Release FT KDP Module... MT7603: [PMF]ap_pmf_init:: apidx=0, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=1, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=2, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]ap_pmf_init:: apidx=3, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=4, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=5, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: [PMF]ap_pmf_init:: apidx=6, MFPC=0, MFPR=0, SHA256=0 MT7603: [PMF]RTMPMakeRsnIeCap: RSNIE Capability MFPC=0, MFPR=0 MT7603: AsicSetRalinkBurstMode(4343): Not support for HIF_MT yet! MT7603: RTMPSetPiggyBack(961): Not support for HIF_MT yet! MT7603: mt7603_switch_channel(): Switch to Ch#3(2T2R), BBP_BW=1 MT7603: AsicSetTxPreamble(4330): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: AsicAddSharedKeyEntry(2093): Not support for HIF_MT yet! MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 MT7603: AsicSetPreTbtt(): bss_idx=0, PreTBTT timeout = 0xa0 MT7603: ap_ftkd> Initialize FT KDP Module... MT7603: Main bssid = 48:22:54:4a:94:86 [ oal_wifi_mtk_down_backhaul ] 2858: ******set backhaul interface(ra4) down****** WLAN-Start wlNetlinkTool Waiting for Wireless Events from interfaces... swWlanChkAhbErr: netlink to do MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 br0: port 6(ra4) entering forwarding state [ oal_wifi_mtk_down_backhaul ] 2858: ******set backhaul interface(ra5) down****** MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 br0: port 5(ra5) entering forwarding state The remaining IMEM space cannot accommodate section .imem_text !! Remaining IMEM space: 4868 bytes Section Size: 7248 bytes open DNS error: No such file or directory NTP server list: MT7613: register rtpci PCI: Enabling device 0000:02:00.0 (0000 -> 0002) MT7613: === pAd = c3602000, size = 5401280 === MT7613: <-- RTMPAllocAdapterBlock, Status=0 MT7613: pAd->PciHif.CSRBaseAddress =0xc3500000, csr_addr=0xc3500000! MT7613: RTMPInitPCIeDevice():device_id=0x7663 MT7613: mt_pci_chip_cfg(): HWVer=0x8a10, FWVer=0x8a01, pAd->ChipID=0x7663 MT7613: mt7663_init()--> MT7613: <--mt7663_init() MT7613: <-- RTMPAllocTxRxRingMemory, Status=0 MT7613: get_wdev_by_idx: invalid idx(0) MT7613: get_wdev_by_idx: invalid idx(0) MT7613: RtmpOSFileOpen(): Error 2 opening /etc/wireless/l1profile.dat MT7613: Read file "/etc/wireless/l1profile.dat" failed(errCode=1)! 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) mtd[misc]: map address 000cf100 to offset 0004f100 ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device ifconfig: ioctl 0x8913 failed: No such device MT7613: 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) MT7613: RtmpOSFileOpen(): Error 2 opening /etc/wireless/l1profile.dat MT7613: Read file "/etc/wireless/l1profile.dat" failed(errCode=1)! MT7613: load l1profile failed! MT7613: get_wdev_by_idx: invalid idx(0) MT7613: get_wdev_by_idx: invalid idx(0) MT7613: driver_own()::Try to Clear FW Own... MT7613: driver_own()::Success to clear FW Own MT7613: E2pAccessMode=2 MT7613: SSID[0]=TP-Link_9486_5G, EdcaIdx=0 MT7613: SSID[1]=TP-Link_9486_5G_1, EdcaIdx=0 MT7613: SSID[2]=TP-Link_9486_5G_2, EdcaIdx=0 MT7613: SSID[3]=TP-Link_9486_5G_Guest, EdcaIdx=0 MT7613: SSID[4]=5e6c500baef79efc5346823646297b, EdcaIdx=0 MT7613: SSID[5]=4a9a2d28635546e221ddf638e0c98a, EdcaIdx=0 MT7613: SSID[6]=895292acce55edb97159c9a0006ea6, EdcaIdx=0 MT7613: cfg_mode=14 MT7613: cfg_mode=14 MT7613: cfg_mode=14 MT7613: wmode_band_equal(): Band Equal! MT7613: auto_ch_select_set_cfg(): BandIdx0, AutoChannelAtBootup=1, AutoChannelAlg = 3 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(0) wdev->channel=0 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(1) wdev->channel=0 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(2) wdev->channel=0 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(3) wdev->channel=0 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(4) wdev->channel=0 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(5) wdev->channel=0 MT7613: RTMPChannelCfg:Warning:ACS Enable and the Channel of config parameter must set 0: MT7613: BssIdx(6) wdev->channel=0 MT7613: Index0 Channel=36 MT7613: [TxPower] BAND0: 100 MT7613: [SKUenable] BAND0: 1 MT7613: [PERCENTAGEenable] BAND0: 1 MT7613: profile: FragThreshold[0]=2346 MT7613: APEdca0 MT7613: APEdca1 MT7613: APEdca2 MT7613: APEdca3 MT7613: DfsZeroWait Support=0/0 MT7613: DfsZeroWaitCacTime=255/255 MT7613: read_itxbf: ITxBfEn = 1 MT7613: read_itxbf: BSSID[0] MT7613: read_itxbf: MBSS[0] ITxBfEn = 1 MT7613: read_itxbf: More BSSID[1] MT7613: read_itxbf: More MBSS[1] ITxBfEn = 1 MT7613: read_itxbf: More BSSID[2] MT7613: read_itxbf: More MBSS[2] ITxBfEn = 1 MT7613: read_itxbf: More BSSID[3] MT7613: read_itxbf: More MBSS[3] ITxBfEn = 1 MT7613: read_itxbf: More BSSID[4] MT7613: read_itxbf: More MBSS[4] ITxBfEn = 1 MT7613: read_itxbf: More BSSID[5] MT7613: read_itxbf: More MBSS[5] ITxBfEn = 1 MT7613: read_itxbf: More BSSID[6] MT7613: read_itxbf: More MBSS[6] ITxBfEn = 1 MT7613: read_itxbf: Common.ITxBfEn = 1 MT7613: read_etxbf: ETxBfEnCond = 1 MT7613: read_etxbf: BSSID[0] MT7613: read_etxbf: MBSS[0] ETxBfEnCond = 1 MT7613: read_etxbf: More BSSID[1] MT7613: read_etxbf: More MBSS[1] ETxBfEnCond = 1 MT7613: read_etxbf: More BSSID[2] MT7613: read_etxbf: More MBSS[2] ETxBfEnCond = 1 MT7613: read_etxbf: More BSSID[3] MT7613: read_etxbf: More MBSS[3] ETxBfEnCond = 1 MT7613: read_etxbf: More BSSID[4] MT7613: read_etxbf: More MBSS[4] ETxBfEnCond = 1 MT7613: read_etxbf: More BSSID[5] MT7613: read_etxbf: More MBSS[5] ETxBfEnCond = 1 MT7613: read_etxbf: More BSSID[6] MT7613: read_etxbf: More MBSS[6] ETxBfEnCond = 1 MT7613: [RTMPSetProfileParameters]Disable DFS/Zero wait=0/0 MT7613: [PMF]Set_PMFMFPC_Proc:: apidx=0, Desired MFPC=0 MT7613: [PMF]Set_PMFMFPC_Proc:: apidx=1, Desired MFPC=0 MT7613: [PMF]Set_PMFMFPC_Proc:: apidx=2, Desired MFPC=0 MT7613: [PMF]Set_PMFMFPC_Proc:: apidx=3, Desired MFPC=0 MT7613: [PMF]Set_PMFMFPC_Proc:: apidx=4, Desired MFPC=0 MT7613: [PMF]Set_PMFMFPC_Proc:: apidx=5, Desired MFPC=0 MT7613: [PMF]Set_PMFMFPR_Proc:: apidx=0, Desired MFPR=0 MT7613: [PMF]Set_PMFSHA256_Proc:: apidx=0, Desired PMFSHA256=0 MT7613: ReadMboParameterFromFile::(bMboEnable[0]=1, MboCapIndication = 0x40) MT7613: ReadMboParameterFromFile::(bMboEnable[0]=1) MT7613: MAP_MODE=3 MT7613: HT: WDEV[0] Ext Channel = BELOW MT7613: pAd->reg_domain = 1 MT7613: WtcSetMaxStaNum: MaxStaNum:109, BssidNum:7, WdsNum:0, ApcliNum:1, MaxNumChipRept:16, MinMcastWcid:127 MT7613: Top Init Done! MT7613: Use dev_alloc_skb MT7613: RX[0] DESC a1cfa000 size = 8192 MT7613: RX[1] DESC a1cfc000 size = 8192 MT7613: cut_through_init(): ct sw token number = 4095 MT7613: cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 MT7613: cut_through_token_list_init(): 8619e908,8619e908 MT7613: cut_through_token_list_init(): TokenList inited done!id_head/tail=0/4096 MT7613: cut_through_token_list_init(): 8619e918,8619e918 MT7613: Hif Init Done! MT7613: ctl->txq = c3b22adc MT7613: ctl->rxq = c3b22ae8 MT7613: ctl->ackq = c3b22af4 MT7613: ctl->kickq = c3b22b00 MT7613: ctl->tx_doneq = c3b22b0c MT7613: ctl->rx_doneq = c3b22b18 MT7613: mt7663_fw_prepare():using E2 ROM patch MT7613: mt7663_fw_prepare():using E2 firmware MT7613: Parsing patch header MT7613: Built date: MT7613: 2MT7613: 0MT7613: 1MT7613: 0MT7613: 0MT7613: 7MT7613: 2MT7613: 0MT7613: 1MT7613: 5MT7613: dMT7613: aMT7613: 1MT7613: aMT7613: 1MT7613: MT7613: MT7613: Platform: MT7613: 7MT7613: 6MT7613: 6MT7613: 3MT7613: MT7613: HW/SW version: MT7613: 0xMT7613: 65MT7613: 32MT7613: 2dMT7613: 31MT7613: MT7613: Patch version: MT7613: 0xMT7613: 38MT7613: 30MT7613: 32MT7613: 8aMT7613: MT7613: Target address: 0xdc000, length: 211488 MT7613: patch is not ready && get semaphore success MT7613: Start address = 0xdc000, DL length = 211488, Data mode = 0x80000000 MT7613: EventGenericEventHandler: CMD Success MT7613: MtCmdAddressLenReq:(ret = 0) MT7613: MtCmdPatchFinishReq MT7613: EventGenericEventHandler: CMD Success MT7613: release patch semaphore MT7613: WfMcuHwInit: Before NICLoadFirmware, check ICapMode = 0 MT7613: Parsing CPU 0 fw tailer MT7613: Chip ID: MT7613: 0xMT7613: 08MT7613: MT7613: Eco version: MT7613: 0xMT7613: 01MT7613: MT7613: Region number: MT7613: 0xMT7613: 03MT7613: MT7613: Format version: MT7613: 0xMT7613: 02MT7613: MT7613: Format flag: MT7613: 0xMT7613: 01MT7613: MT7613: Ram version: MT7613: 7MT7613: 6MT7613: 6MT7613: 3MT7613: mMT7613: pMT7613: 1MT7613: 8MT7613: 2MT7613: 7MT7613: MT7613: Built date: MT7613: 2MT7613: 0MT7613: 2MT7613: 0MT7613: 1MT7613: 0MT7613: 0MT7613: 7MT7613: 2MT7613: 0MT7613: 1MT7613: 6MT7613: 1MT7613: 8MT7613: MT7613: Common crc: 0xf55e4cc0 MT7613: Parsing tailer region 0 MT7613: Decomp crc: 0x0 MT7613: Decomp size: 0x0 MT7613: Decomp block size: 0x0 MT7613: Target address: 0x112c00 MT7613: Download size: 273600 MT7613: Feature set: MT7613: 0xMT7613: 27MT7613: MT7613: Parsing tailer region 1 MT7613: Decomp crc: 0x0 MT7613: Decomp size: 0x0 MT7613: Decomp block size: 0x0 MT7613: Target address: 0x2018400 MT7613: Download size: 57648 MT7613: Feature set: MT7613: 0xMT7613: 07MT7613: MT7613: Parsing tailer region 2 MT7613: Decomp crc: 0x0 MT7613: Decomp size: 0x0 MT7613: Decomp block size: 0x0 MT7613: Target address: 0x40100000 MT7613: Download size: 14768 MT7613: Feature set: MT7613: 0xMT7613: 07MT7613: MT7613: Release info: MT7613: header tag = 0, total length = 88 MT7613: tag 1, padding length = 1, tag length = 83 MT7613: payload: MT7613: tMT7613: -MT7613: nMT7613: eMT7613: pMT7613: tMT7613: uMT7613: nMT7613: eMT7613: -MT7613: mMT7613: aMT7613: iMT7613: nMT7613: -MT7613: mMT7613: tMT7613: 7MT7613: 6MT7613: 6MT7613: 3MT7613: eMT7613: 2MT7613: -MT7613: 1MT7613: 9MT7613: 4MT7613: 9MT7613: -MT7613: MMT7613: TMT7613: 7MT7613: 6MT7613: 6MT7613: 3MT7613: _MT7613: EMT7613: 2MT7613: _MT7613: AMT7613: SMT7613: IMT7613: CMT7613: _MT7613: RMT7613: OMT7613: MMT7613: _MT7613: RMT7613: AMT7613: MMT7613: _MT7613: RMT7613: eMT7613: tMT7613: aMT7613: iMT7613: lMT7613: _MT7613: BMT7613: rMT7613: oMT7613: aMT7613: dMT7613: bMT7613: aMT7613: nMT7613: dMT7613: -MT7613: 2MT7613: 0MT7613: 2MT7613: 0MT7613: 1MT7613: 0MT7613: 0MT7613: 7MT7613: 2MT7613: 0MT7613: 1MT7613: 5MT7613: 0MT7613: 2MT7613: MT7613: Start address = 0x112c00, DL length = 273600, Data mode = 0x8000000f MT7613: EventGenericEventHandler: CMD Success MT7613: MtCmdAddressLenReq:(ret = 0) MT7613: Start address = 0x2018400, DL length = 57648, Data mode = 0x8000000f MT7613: EventGenericEventHandler: CMD Success MT7613: MtCmdAddressLenReq:(ret = 0) MT7613: Start address = 0x40100000, DL length = 14768, Data mode = 0x8000000f MT7613: EventGenericEventHandler: CMD Success MT7613: MtCmdAddressLenReq:(ret = 0) MT7613: MtCmdFwStartReq: override = 0x1, address = 0x112c00 MT7613: EventGenericEventHandler: CMD Success MT7613: MCU Init Done! efuse_probe: efuse = 511161 MT7613: RtmpChipOpsEepromHook::e2p_type=2, inf_Type=5 MT7613: RtmpEepromGetDefault::e2p_dafault=1 MT7613: RtmpChipOpsEepromHook: E2P type(2), E2pAccessMode = 2, E2P default = 1 MT7613: NVM is FLASH mode. dev_idx [0] FLASH OFFSET [0x120000], SIZE [0x600] mtd[misc]: map address 00120000 to offset 000a0000 ==============eeFlashId: 0x7663 ==================== now bb MainSsid mac 48:22:54:4a:94:88 MT7613: Country Region from e2p = 0 MT7613: mt7663_antenna_default_reset() todo MT7613: RTMPReadTxPwrPerRate(444): Don't Support this now! MT7613: RcRadioInit(): DbdcMode=0, ConcurrentBand=1 MT7613: RcRadioInit(): pRadioCtrl=86ea4cc4,Band=0,rfcap=3,channel=1,PhyMode=2 extCha=0xf MT7613: AntCfgInit(3036): Not support for HIF_MT yet! MT7613: MtReadPwrLimitTable: RF_LOCKDOWN Feature OFF !!! MT7613: MtReadPwrLimitTable: SKU Path: /var/Wireless/RT2860AP/SingleSKU_5G.dat MT7613: MtReadPwrLimitTable: RF_LOCKDOWN Feature OFF !!! MT7613: MtReadPwrLimitTable: SKU Path: /etc_ro/Wireless/RT2860AP/Backoff_default.dat MT7613: RtmpOSFileOpen(): Error 2 opening /etc_ro/Wireless/RT2860AP/Backoff_default.dat MT7613: --> Error opening file </etc_ro/Wireless/RT2860AP/Backoff_default.dat> MT7613: MtPwrLimitLoadParamHandle: Read Power Table Error!! MT7613: EEPROM Init Done! MT7613: mt_mac_init()--> MT7613: mt_mac_pse_init(2998): Don't Support this now! MT7613: mt7663_init_mac_cr()--> MT7613: mt7663_init_mac_cr(): TMAC_TRCR0=0x82783c92 MT7613: MtAsicSetMacMaxLen(1075): Not support for HIF_MT yet! MT7613: <--mt_mac_init() MT7613: CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 MT7613: CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 MT7613: CmdRxHdrTransBLUpdateRsp::EventExtCmdResult.u4Status = 0x0 MT7613: MAC Init Done! MT7613: MT7663BBPInit():BBP Initialization..... MT7613: Band 0: valid=1, isDBDC=0, Band=2, CBW=1, CentCh/PrimCh=1/1, prim_ch_idx=0, txStream=2 MT7613: Band 1: valid=0, isDBDC=0, Band=0, CBW=0, CentCh/PrimCh=0/0, prim_ch_idx=0, txStream=0 MT7613: MT7663BBPInit() todo MT7613: PHY Init Done! MT7613: tx_pwr_comp_init():NotSupportYet! MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: asic_bss_beacon_init(): NotSupportedFunc for this arch(HIF_MT)! MT7613: AsicDisableSync(): NotSupportedFunc for this arch(HIF_MT)! MT7613: MtAsicSetRalinkBurstMode(2221): Not support for HIF_MT yet! MT7613: MtAsicSetPiggyBack(592): Not support for HIF_MT yet! MT7613: WifiFwdSet::disabled=0 MT7613: AsicSetPreTbtt(): NotSupportedFunc for this arch(HIF_MT)! MT7613: ap_ftkd> Initialize FT KDP Module... MT7613: Main bssid = 00:00:00:00:00:00 MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MT7613: MtCmdSetMacTxRx:(ret = 0) INIT REDUCE TCP ACK, rai0 MT7613: <==== mt_wifi_init, Status=0 MT7613: TxBfModuleEnCtrl:It's not DBDC mode MT7613: MtCmdEDCCACtrl: BandIdx: 0, EDCCACtrl: 1 MT7613: MSTA_Init (1) ---> ApCli MT7613: Register MSTA IF (apclii0) , pAd->MSTANum = 1 MT7613: phy_freq_adjust : no prim_ch value for adjust! MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=0, wdev_type=2 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: WtcSetMaxStaNum: MaxStaNum:109, BssidNum:7, WdsNum:0, ApcliNum:1, MaxNumChipRept:16, MinMcastWcid:127 MT7613: RedInit: set Driver/N9 RED Enable to 1. MT7613: RedInit: RED Initiailize Done. MT7613: cp_support_is_enabled: set Driver CP_SUPPORT to Mode 2. MT7613: RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP MT7613: wifi_sys_open(), wdev idx = 0 MT7613: wdev_attr_update(): wdevId0 = 48:22:54:4a:94:88 [RcGetHdevByPhyMode]-- channel 0 fix for rdev fetching MT7613: HdevObjAdd() obj->Idx=0, obj->OmacIdx=0, obj->state=0, obj->WmmIdx=1, rdev->DevNum=1 MT7613: [BuildChannelList] BandIdx = 0, PhyMode = 49, ChListNum = 4: MT7613: [1;33m [RadarStateCheck] RD_NORMAL_MODE [m MT7613: phy_freq_adjust : no prim_ch value for adjust! MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=0, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 MT7613: AP inf up for ra_0(func_idx) OmacIdx=0 MT7613: AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn MT7613: ApAutoChannelAtBootUp-----------------> MT7613: ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: [AutoChSelBuildChannelListFor5G] ChListNum5G = 4 MT7613: [41mAsicSwitchChannel(): 5G Channel:36, then must be Channel_Band:1 !![m MT7613: [41mAsicSwitchChannel(): 5G Channel:40, then must be Channel_Band:1 !![m MT7613: [41mAsicSwitchChannel(): 5G Channel:44, then must be Channel_Band:1 !![m MT7613: [41mAsicSwitchChannel(): 5G Channel:48, then must be Channel_Band:1 !![m MT7613: ==================================================================== MT7613: Channel 36 : Busy Time = 17, Skip Channel = FALSE, BwCap = TRUE MT7613: Channel 40 : Busy Time = 20, Skip Channel = FALSE, BwCap = TRUE MT7613: Channel 44 : Busy Time = 6082, Skip Channel = FALSE, BwCap = TRUE MT7613: Channel 48 : Busy Time = 8172, Skip Channel = FALSE, BwCap = TRUE MT7613: ==================================================================== MT7613: Rule 3 Channel Busy time value : Select Primary Channel 36 MT7613: Rule 3 Channel Busy time value : Min Channel Busy = 8172 MT7613: Rule 3 Channel Busy time value : BW = 80 MT7613: [SelectClearChannelBusyTime] - band0 END MT7613: ApAutoChannelAtBootUp : Auto channel selection: Selected channel = 36, IsAband = 1 MT7613: [41m AutoChSelUpdateChannel(): Update channel for wdev for this band PhyMode = 49, Channel = 36 [m MT7613: [1;33m [RadarStateCheck] RD_NORMAL_MODE [m MT7613: [41mAsicSwitchChannel(): 5G Channel:42, then must be Channel_Band:1 !![m MT7613: ApAutoChannelAtBootUp<----------------- mt7663 mtk_band_steering_netlink_init 243 band steering netlink init ok MT7613: [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 MT7613: Enable 20/40 BSSCoex Channel Scan(BssCoex=1) MT7613: wifi_sys_linkup(), wdev idx = 0 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 128 MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 MT7613: MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MT7613: MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MT7613: MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 MT7613: AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: apidx 0 for WscUUIDInit MT7613: Generate UUID for apidx(0) MT7613: RTMPSetLEDStatus: MCUCmd:0x50, LED Mode:0x1, LinkStatus:0x20 MT7613: AndesLedEnhanceOP():1-0-0-0-2-0-0-0 MT7613: RTMPSetLEDStatus: LED_CMD:0x0, LED Mode:0x1, LinkStatus:0x20 MT7613: rai4: ===> mbss_virtual_if_open MT7613: RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP MT7613: wifi_sys_open(), wdev idx = 4 MT7613: wdev_attr_update(): wdevId4 = 4a:22:54:4a:94:88 MT7613: HdevObjAdd() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx=1, rdev->DevNum=2 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: AP inf up for ra_4(func_idx) OmacIdx=20 MT7613: AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn MT7613: ApAutoChannelAtBootUp-----------------> MT7613: ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: ApAutoChannelAtBootUp<----------------- mt7663 mtk_band_steering_netlink_init 243 band steering netlink init ok MT7613: [PMF]APPMFInit:: apidx=4, MFPC=0, MFPR=0, SHA256=0 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Enable 20/40 BSSCoex Channel Scan(BssCoex=1) MT7613: wifi_sys_linkup(), wdev idx = 4 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:134 for WDEV_TYPE:1 LinkToOmacIdx = 14, LinkToWdevType = 1 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8196 MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 14 MT7613: MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MT7613: MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MT7613: MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 MT7613: AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: apidx 4 for WscUUIDInit MT7613: Generate UUID for apidx(4) MT7613: rai5: ===> mbss_virtual_if_open MT7613: RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP MT7613: wifi_sys_open(), wdev idx = 5 MT7613: wdev_attr_update(): wdevId5 = 4a:22:54:5a:94:88 MT7613: HdevObjAdd() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: AP inf up for ra_5(func_idx) OmacIdx=21 MT7613: AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn MT7613: ApAutoChannelAtBootUp-----------------> MT7613: ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: ApAutoChannelAtBootUp<----------------- mt7663 mtk_band_steering_netlink_init 243 band steering netlink init ok MT7613: [PMF]APPMFInit:: apidx=5, MFPC=0, MFPR=0, SHA256=0 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Enable 20/40 BSSCoex Channel Scan(BssCoex=1) MT7613: wifi_sys_linkup(), wdev idx = 5 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:133 for WDEV_TYPE:1 LinkToOmacIdx = 15, LinkToWdevType = 1 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8196 MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 15 MT7613: MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MT7613: MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MT7613: MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 MT7613: AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: apidx 5 for WscUUIDInit MT7613: Generate UUID for apidx(5) ifconfig used greatest stack depth: 12196 bytes left mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: Set_Map_Proc: current MAP MODE 3 MT7613: Set_MapR2_Proc: MAP R2 is enabled MT7613: Set_Bh_Bss_Proc rai0 bandIdx = 0 ,DevOwnRole 0x20 MT7613: Set_Fh_Bss_Proc rai0 wdev->MAPCfg.DevOwnRole 0x20 MT7613: Set_Fh_Bss_Proc rai4 wdev->MAPCfg.DevOwnRole 0x0 MT7613: Set_Bh_Bss_Proc rai4 bandIdx = 0 ,DevOwnRole 0x44 MT7613: Set_Fh_Bss_Proc rai5 wdev->MAPCfg.DevOwnRole 0x0 MT7613: Set_Bh_Bss_Proc rai5 bandIdx = 0 ,DevOwnRole 0x48 MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down [ map_attachSharedBuff ] 200 - ERROR: Get map shared buffer error. [ oal_easymesh_getMAPDevices ] 1416 - ERROR: Failed to attach map shared memory buffer. [ rsl_easymesh_updateMapDev ] 11520 - ERROR: There are no APDevices saved in map shared memory. [ rsl_easymesh_checkChannels ] 13717 - ERROR: Can not find Controller MT7613: cfg_mode=14 MT7613: HdevObjDel() obj->Idx=0, obj->OmacIdx=0, obj->state=0, obj->WmmIdx, rdev->DevNum=0 MT7613: HdevObjAdd() obj->Idx=0, obj->OmacIdx=0, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 MT7613: HdevObjDel() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx, rdev->DevNum=0 MT7613: HdevObjAdd() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: HdevObjDel() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx, rdev->DevNum=0 MT7613: HdevObjAdd() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 MT7613: hc_radio_res_request(): wdev=1, hobj 0x86ea5598 is not ready! MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=0,ch_width=1,gf=0,sgi20=0,sgi40=0,tx_stbc=0,rx_stbc=0,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=0 MT7613: hc_radio_res_request(): wdev=2, hobj 0x86ea55c0 is not ready! MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=0,ch_width=1,gf=0,sgi20=0,sgi40=0,tx_stbc=0,rx_stbc=0,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=0 MT7613: hc_radio_res_request(): wdev=3, hobj 0x86ea55e8 is not ready! MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=0,ch_width=1,gf=0,sgi20=0,sgi40=0,tx_stbc=0,rx_stbc=0,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=0 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: hc_radio_res_request(): wdev=6, hobj 0x86ea5660 is not ready! MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=0,ch_width=1,gf=0,sgi20=0,sgi40=0,tx_stbc=0,rx_stbc=0,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=0 MT7613: hc_radio_res_request(): wdev=7, hobj 0x86ea5688 is not ready! MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=2 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: hc_radio_res_request(): wdev=1, hobj 0x86ea5598 is not ready! MT7613: hc_radio_res_request(): wdev=2, hobj 0x86ea55c0 is not ready! MT7613: hc_radio_res_request(): wdev=3, hobj 0x86ea55e8 is not ready! MT7613: hc_radio_res_request(): wdev=6, hobj 0x86ea5660 is not ready! MT7613: hc_radio_res_request(): wdev=7, hobj 0x86ea5688 is not ready! MT7613: set_vow_airtime_fairness_en: set 0. MT7613: set_vow_dwrr_max_wait_time: set 1. MT7613: SetPercentageCtrl: ucBandIdx = 0 MT7613: SetPercentageCtrl: TxPowerPercentEn = 1 MT7613: MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 MT7613: SetPowerDropCtrl: ucPowerDrop = 100 MT7613: Set_FragThreshold_Proc::set wdev0 FragThreshold=2346) MT7613: Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: Set_RTSThreshold_Proc: set wdev0 rts length threshold=2347(0x92b) mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't mtd[misc]: map address 000cf100 to offset 0004f100 accept private ioctl... set (8BE2): Network is down mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't amtd[misc]: map address 000cf100 to offset 0004f100 ccept private ioctl... set (8BE2): Network is down mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't amtd[misc]: map address 000cf100 to offset 0004f100 ccept private ioctl... set (8BE2): Network is down mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: Set_RTSThreshold_Proc: set wdev4 rts length threshold=2347(0x92b) mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: Set_RTSThreshold_Proc: set wdev5 rts length threshold=2347(0x92b) mtd[misc]: map address 000cf100 to offset 0004f100 mtd[misc]: map address 000cf100 to offset 0004f100 MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't amtd[misc]: map address 000cf100 to offset 0004f100 ccept private ioctl... set (8BE2): Network is down [ rsl_setUpDev2BridgePortObj ] 795: rai5 isWanConn=0 moveIntfToBr0=0 br0 device rai5 entered promiscuous mode br0: port 12(rai5) entering forwarding state br0: port 12(rai5) entering forwarding state [ rsl_setUpDev2BridgePortObj ] 795: rai4 isWanConn=0 moveIntfToBr0=0 br0 device rai4 entered promiscuous mode br0: port 13(rai4) entering forwarding state br0: port 13(rai4) entering forwarding state [ rsl_setUpDev2BridgePortObj ] 795: rai3 isWanConn=0 moveIntfToBr0=0 br0 device rai3 entered promiscuous mode device rai3 left promiscuous mode device rai3 entered promiscuous mode device rai3 left promiscuous mode can't add rai3 to bridge br0: Invalid argument [ rsl_setUpDev2BridgePortObj ] 795: rai2 isWanConn=0 moveIntfToBr0=0 br0 device rai2 entered promiscuous mode device rai2 left promiscuous mode device rai2 entered promiscuous mode device rai2 left promiscuous mode can't add rai2 to bridge br0: Invalid argument [ rsl_setUpDev2BridgePortObj ] 795: rai1 isWanConn=0 moveIntfToBr0=0 br0 device rai1 entered promiscuous mode device rai1 left promiscuous mode device rai1 entered promiscuous mode device rai1 left promiscuous mode can't add rai1 to bridge br0: Invalid argument [ rsl_setUpDev2BridgePortObj ] 795: rai0 isWanConn=0 moveIntfToBr0=0 br0 device rai0 entered promiscuous mode br0: port 14(rai0) entering forwarding state br0: port 14(rai0) entering forwarding state device apclii0 entered promiscuous mode MT7613: [PMF]APPMFInit:: apidx=0, MFPC=0, MFPR=0, SHA256=0 MT7613: wifi_sys_linkdown(), wdev idx = 0 MT7613: ExtEventBeaconLostHandler::FW LOG, Beacon lost (48:22:54:4a:94:88), Reason 0x10 MT7613: Beacon lost - AP disabled!!! MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 MT7613: wmm_ctrl_release_entry(): Can't find HdevObj or Edca not required MT7613: wifi_sys_close(), wdev idx = 0 MT7613: HdevObjDel() obj->Idx=0, obj->OmacIdx=0, obj->state=0, obj->WmmIdx, rdev->DevNum=0 MT7613: wifi_sys_open(), wdev idx = 0 MT7613: wdev_attr_update(): wdevId0 = 48:22:54:4a:94:88 MT7613: HdevObjAdd() obj->Idx=0, obj->OmacIdx=0, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: [BuildChannelList] BandIdx = 0, PhyMode = 49, ChListNum = 4: MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=5, ampdu_factor=3 MT7613: wifi_sys_linkup(), wdev idx = 0 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:135 for WDEV_TYPE:1 LinkToOmacIdx = 0, LinkToWdevType = 1 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 128 MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 0 MT7613: [PMF]APPMFInit:: apidx=4, MFPC=0, MFPR=0, SHA256=0 MT7613: MT7613: ExtEventBeaconLostHandler::FW LOG, Beacon lost (4a:22:54:4a:94:88), Reason 0x10 MT7613: Beacon lost - AP disabled!!! wifi_sys_linkdown(), wdev idx = 4 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 MT7613: wmm_ctrl_release_entry(): Can't find HdevObj or Edca not required MT7613: wifi_sys_close(), wdev idx = 4 MT7613: HdevObjDel() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx, rdev->DevNum=0 MT7613: wifi_sys_open(), wdev idx = 4 MT7613: wdev_attr_update(): wdevId4 = 4a:22:54:4a:94:88 MT7613: HdevObjAdd() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: wifi_sys_linkup(), wdev idx = 4 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:134 for WDEV_TYPE:1 LinkToOmacIdx = 14, LinkToWdevType = 1 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8196 MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 14 MT7613: [PMF]APPMFInit:: apidx=5, MFPC=0, MFPR=0, SHA256=0 MT7613: MT7613: ExtEventBeaconLostHandler::FW LOG, Beacon lost (4a:22:54:5a:94:88), Reason 0x10 MT7613: Beacon lost - AP disabled!!! wifi_sys_linkdown(), wdev idx = 5 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 MT7613: wmm_ctrl_release_entry(): Can't find HdevObj or Edca not required MT7613: wifi_sys_close(), wdev idx = 5 MT7613: HdevObjDel() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx, rdev->DevNum=0 MT7613: wifi_sys_open(), wdev idx = 5 MT7613: wdev_attr_update(): wdevId5 = 4a:22:54:5a:94:88 MT7613: HdevObjAdd() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MT7613: Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: wifi_sys_linkup(), wdev idx = 5 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:133 for WDEV_TYPE:1 LinkToOmacIdx = 15, LinkToWdevType = 1 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8196 MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 15 [ oal_wifi_mtk_initEnd ] 8346 - ERROR: wlNetlinkTool is already there. MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down [ oal_wifi_mtk_down_backhaul ] 2858: ******set backhaul interface(rai4) down****** MT7613: rai4: ===> mbss_virtual_if_close MT7613: MT7613: ExtEventBeaconLostHandler::FW LOG, Beacon lost (4a:22:54:4a:94:88), Reason 0x10 MT7613: Beacon lost - AP disabled!!! wifi_sys_linkdown(), wdev idx = 4 MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 MT7613: wifi_sys_close(), wdev idx = 4 MT7613: HdevObjDel() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx, rdev->DevNum=0 br0: port 13(rai4) entering forwarding state [ oal_wifi_mtk_down_backhaul ] 2858: ******set backhaul interface(rai5) down****** MT7613: rai5: ===> mbss_virtual_if_close MT7613: wifi_sys_linkdown(), wdev idx = 5 MT7613: ExtEventBeaconLostHandler::FW LOG, Beacon lost (4a:22:54:5a:94:88), Reason 0x10 MT7613: Beacon lost - AP disabled!!! MT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 0, CmdBssInfoBmcRate.u2McTransmit = 0 MT7613: wifi_sys_close(), wdev idx = 5 MT7613: HdevObjDel() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx, rdev->DevNum=0 br0: port 12(rai5) entering forwarding state sh: can't open '/etc/smp.sh' rm: can't remove '/var/tmp/os_print/tpApp/2_debug': No such file or directory [1519] Jan 01 01:01:42 Running in background sendto: No such file or directory line(593) Msg.type(2030) pid(499) errno(2) ret(-1) iptables: Bad rule (does a matching rule exist in that chain?). iptables: Bad rule (does a matching rule exist in that chain?). tun: Universal TUN/TAP device driver, 1.6 tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> PPP MPPE Compression module registered ptr is not NULL ptr is not NULL 7512_debug: dmt_base_addr : bf900000 ADSL DMT initialization starting Begin AdslTaskInit..... End AdslTaskInit Begin to request IRQ 20 DMT:Succeed to request IRQ 20 Initializing ADSL F/W 5.10.5.0 ...... Initializing ADSL F/W ........ done The test lab:50 The remaining IMEM space cannot accommodate section .imem_text !! Remaining IMEM space: 4868 bytes Section Size: 5196 bytes HWNAT Module enabled with Type:L2B/IPv4/IPv6/DS-LITE/6RD, foeSzie:80B, foeNum:16384 IP check use Black List ANNEXAIJLM annex auto-switch flag = 0 string: adsl US bitswap on,DS bitswap on log cicmd 0 (wan dmt2 set olr 3 ) [ getPidFromPidFile ] 133 - ERROR: Cann't open file: /var/run/zebra.pid. [ getPidFromPidFile ] 133 - ERROR: Cann't open file: /var/run/ripd.pid. [ getPidFromPidFile ] 133 - ERROR: Cann't open file: /var/run/ripngd.pid. ptr is not NULL .ptr is not NULL ...iptables: Bad rule (does a matching rule exist in that chain?). .iptables: Bad rule (does a matching rule exist in that chain?). .iptables: Bad rule (does a matching rule exist in that chain?). ..nf_conntrack_rtsp v0.6.21 loading .nf_nat_rtsp v0.6.21 loading ........iptables: Bad rule (does a matching rule exist in that chain?). .ip6tables: Bad rule (does a matching rule exist in that chain?). iptables: No chain/target/match by that name. .ip6tables: No chain/target/match by that name. .ip6tables: Bad rule (does a matching rule exist in that chain?). iptables: No chain/target/match by that name. iptables: No chain/target/match by that name. iptables: No chain/target/match by that name. .iptables: No chain/target/match by that name. ip6tables: No chain/target/match by that name. ip6tables: No chain/target/match by that name. iptables: No chain/target/match by that name. .iptables: No chain/target/match by that name. ip6tables: No chain/target/match by that name. ip6tables: No chain/target/match by that name. ...+++++ .........mtd[misc]: map address 00160000 to offset 000e0000 [ oal_sys_pctlLoadHistory ] 7589: readLen: 131072. [ oal_pctlLoadHistory ] 1646: rawLen: 1158. [ oal_pctlLoadHistory ] 1673: curTimeStamp: 16801. lastTimeStamp: 16801. [ oal_pctlLoadHistory ] 1698: curLen: 1158. rawLen: 1158. ptr is not NULL .[ rsl_initIqosObj ] 1204: 0#0,0,0,0 ..[ rsl_inimtd[misc]: map address 000cf800 to offset 0004f800 tDev2XTpUserResmtd[misc]: map address 000cf800 to offset 0004f800 trictionObj ] 922 - ERROR: Set visibility level ok for oid: 440 POS :27 ++++++++++we are going to init cloud+++++++++++++++++ .[ rsl_initDev2TrafficSeparationObj ] 3598 - ERROR: mesh enable is 1, ts enable is 0 [ rsl_ts_updateBhVid ] 3328 - ERROR: traffic separation is disabled MT7603: Set_MapTS_Proc MAP TS is already disabled MT7613: Set_MapTS_Proc MAP TS is already disabled MT7603: Set_Map_Bh_Primary_Vid_Proc: ra5 default vid=4095 MT7603: Set_Map_Bh_Primary_Vid_Proc: apcli0 default vid=4095 MT7603: Set_Map_Fh_Vid_Proc: ra0 fh vid=4095 .MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down MT7613: rt28xx_ap_ioctl interface is down, cmd [8be2] return!!! Interface doesn't accept private ioctl... set (8BE2): Network is down mmmInit():Total mem size=51364, addr=0x0xbcd008. *******************************MT7613: Set_Map_Fh_Vid_Proc: rai0 fh vid=4095 ****************************** *************************MMM TABLE DUMP********************** ------------------------------------------------------------- poolhead(40) poolnum dynamictimes chainhead poolend ------------------------------------------------------------- 0xbcd008 8 0 (nil) 0xbd98ac ------------------------------------------------------------- index poolhead(20) size blocks free usage ------------------------------------------------------------- 1 0xbcd030 32 256 256 0 2 0xbcf448 64 128 128 0 3 0xbd1660 128 64 64 0 4 0xbd3778 256 32 32 0 5 0xbd5810 512 8 8 0 6 0xbd6848 1024 4 4 0 7 0xbd7870 2048 2 2 0 8 0xbd8890 4096 1 1 0 ------------------------------------------------------------- index chainnode(16) magic length prev next ------------------------------------------------------------- (nil) ************************************************************* ************************************************** ********************config dump******************* -------------------------------------------------- sef domain : n-deventry-gw.tplinkcloud.com sef port : 443 cloud svr default port : 443 default svr : n-devs-gw.tplinkcloud.com default port : 443 default valid time : 172800 heartbeat interval : 235000 request timeout : 5000 reconnect timewait max : 1024000 reconnect cachedsvr max times : 5 reconnect defaultsvr max times : 5 reconnect random time min : 2000 reconnect random time max : 256000 short connect interval : 259200000 max message number : 1000 max client number : 20 service file : /tmp/cloud_service.cfg cer file : /etc/cloud/2048_newroot.cer ssl verify CN : ssl verify time : 0 ************************************************** .[ rsl_modifyServiceType ] 1272 - ERROR: --> X_TP_ConnType=LAN X_TP_ServiceType=Unknown [ rsl_modifyServiceType ] 1272 - ERROR: --> X_TP_ConnType=PPP3G X_TP_ServiceType=Unknown [ rsl_modifyServiceType ] 1272 - ERROR: --> X_TP_ConnType=DHCP4G X_TP_ServiceType=Unknown [ rsl_modifyServiceType ] 1272 - ERROR: --> X_TP_ConnType=DHCP X_TP_ServiceType=Internet [ rsl_modifyServiceType ] 1272 - ERROR: --> X_TP_ConnType=DHCP X_TP_ServiceType=Internet .[Feb 9 2023-13:34:58][src/wportal_ctrl.c:main:421] enter!!! Enable forward! *reg=00002104 value:00ff0000 *reg=00002204 value:00ff0000 *reg=00002304 value:00ff0000 *reg=00002404 value:00ff0000 sh: write error: Invalid argument +++ timer 3 start (tick : 2) +++ .[src/cloud_ddns.c:ddns_initSharedBuff:876] Start to init shared buffer. [src/cloud_downloadHandler.cposix_timer_do: 10 callbacks suppressed :cl Set_Led_Proc ==> arg = 1-0-0-0-2-0-0-0 Set_Led_Proc 01 00 00 00 02 00 00 00 MT7613: AndesLedEnhanceOP():1-0-0-0-2-0-0-0 oud_initPthreadDownloadHandler:1179] init download handler success! [src/cloud_downloadHandler.c:cloud_downloadHandler:905] Enter download handler, download firmware from cloud... [src/cloud_downloadHandler.c:cloud_downloadHandler:914] wait semaphore to download firmware to device... ....Sorry, rule does not exist. Sorry, rule does not exist. .Sorry, rule does not exist. Sorry, rule does not exist. Sorry, rule does not exist. Sorry, rule does not exist. Unable to update the kernel. Two possible causes: 1. Multiple ebtables programs were executing simultaneously. The ebtables userspace tool doesn't by default support multiple ebtables programs running concurrently. The ebtables option --concurrent or a tool like flock can be used to support concurrent scripts that update the ebtables kernel tables. 2. The kernel doesn't support a certain ebtables extension, consider recompiling your kernel or insmod the extension. . .sh: write error: Invalid argument ......mapAgent ==> [000.000][ hal_multiap_mtk_driver_ioctl_init ] 3905 - INFO: Initialize ralink wext interface mapAgent ==> [000.002][ mtk_driver_event_init ] 1136 - INFO: init ralink Netlink interface mapAgent ==> [000.004][ initTp1905CliSrv ] 534 - INFO: tp1905 server path is /var/tmp/tp1905sockA mapAgent ==> [000.005][ map_initSharedBuff ] 1122 - INFO: Start to init shared buffer. mapAgent ==> [000.006][ map_initSharedBuff ] 1139 - INFO: Map Shared Memory size: 214212 bytes mapAgent ==> [000.009][ map_initTp1905 ] 082 - INFO: mac(4A:22:54:4A:94:86), cfg_file(/var/tmp/map.conf), is_registrar(0), bMapController(0)map_whole_network(0), vlan_enable(0) procName is sigma_dut, keyWord is mapController ==> [000.000][ initTp1905CliSrv ] 534 - INFO: tp1905 server path is /var/tmp/tp1905sockC mapController ==> [000.002][ map_initSharedBuff ] 1122 - INFO: Start to init shared buffer. .mapController ==> [000.003][ map_initSharedBuff ] 1139 - INFO: Map Shared Memory size: 214212 bytes mapController ==> [000.009][ map_initTp1905 ] 082 - INFO: mac(4A:22:54:4A:94:87), cfg_file(/var/tmp/map.conf), is_registrar(1), bMapController(1)map_whole_network(0), vlan_enable(0) procName is sigma_dut, keyWord is ath_band_steering_netlink_receive 157 pid = 2084 ath_band_steering_netlink_receive 157 pid = 2084 .ath_band_steering_netlink_receive 157 pid = 2084 ath_band_steering_netlink_receive 157 pid = 2084 .[src/cloud_client.c:initSigIntHandler:108] init signal handler success! [src/cloud_linkWrap.c:link_setCloudMode:154] notify cloud brd change link mode 11 [src/cloud_client.c:cloudClientInit:166] Init cloud-client environment successful. [src/cloud_localMsgHandler.c:cloud_localMsgTask:113] Start cloud local message observer... ********************config dump******************* ----------------------status---------------------- processid : 1990 ---------------------configure-------------------- loglevel : 3 verify host : n-device-api.tplinkcloud.com verify port : 0 verify path : /v1/validate post connect timeout : 20 post transfer timeout : 20 get connect timeout : 20 get transfer timeout : 20 session debug : off cer file : /etc/cloud_https/2048new.cer cer type : ************************************************** ..........................+device lo entered promiscuous mode ++++ mapController ==> [002.799][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returned with errno=127 (Network is down) mapAgent ==> [002.882][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returned with errno=127 (Network is down) mapController ==> [002.800][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapAgent ==> [002.882][ send1905Stream ] 088 - ERROR: PacketMT7603: ra4: ===> MBSSVirtualIF_open MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 cou##### mbss_cr_enable, BssId = 4 ld not be sent! mapControlbr0: port 6(ra4) entering forwarding state lbr0: port 6(ra4) entering forwarding state er ==> [002.801][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returned with errno=127 (Network is down) mapAgent ==> [002.883][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returnMT7603: ra5: ===> MBSSVirtualIF_open MT7603: The 8-BSSID mode is enabled, the BSSID byte5 MUST be the multiple of 8 ed##### mbss_cr_enable, BssId = 5 with errno=127 (Network isbr0: port 5(ra5) entering forwarding state br0: port 5(ra5) entering forwarding state down) mapAgent ==> [002.884][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [002.802][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROMT7613: rai4: ===> mbss_virtual_if_open MT7613: RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP RMT7613: wifi_sys_open(), wdev idx = 4 MT7613: wdev_attr_update(): wdevId4 = 4a:22:54:4a:94:88 MT7613: HdevObjAdd() obj->Idx=4, obj->OmacIdx=20, obj->state=0, obj->WmmIdx=1, rdev->DevNum=2 : Packet coMT7613: uld not Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 bT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 e sent! mapAgent ==> [00MT7613: 2AP inf up for ra_4(func_idx) OmacIdx=20 .MT7613: AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn 885][ tMT7613: ApAutoChannelAtBootUp-----------------> pMT7613: ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 1MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! 905MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: ApAutoChannelAtBootUp<----------------- mt7663 mtk_band_steering_netlink_init 243 band steering netlink init ok _T7613: [PMF]APPMFInit:: apidx=4, MFPC=0, MFPR=0, SHA256=0 sMT7613: endRawPCaller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Enable 20/40 BSSCoex Channel Scan(BssCoex=1) MT7613: wifi_sys_linkup(), wdev idx = 4 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:134 for WDEV_TYPE:1 LinkToOmacIdx = 14, LinkToWdevType = 1 acket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapController ==> [002.803][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapAgent ==> [002.885][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [002.804][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapAgent ==> [002.886][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapController ==> [002.804][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapAgent ==> [002.887][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [002.805][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapAgent ==> [002.888][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapController ==> [002.806][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapAgent ==> [002.888][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [002.807][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapAgent ==> [002.889][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapController ==> [002.808][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapAgent ==> [002.889][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [002.808][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [002.809][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') returned with errno=127 (Network is down) mapController ==> [002.810][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapAgent ==> [002.890][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') returned with errno=127 (Network is down) mapController ==> [002.810][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') returned with errno=127 (NeMT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8196 twork is down) mapAgent ==> [002.893][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [002.MT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 14 8MT7613: MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 1MT7613: MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 MT7613: MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 1MT7613: AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! ][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapAgent ==> [00MT7613: apidx 4 for WscUUIDInit MT7613: Generate UUID for apidx(4) 2.893][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') br0: port 13(rai4) entering forwarding state br0: port 13(rai4) entering forwarding state returned with errno=127 (Network is down) mapAgent ==> [002.894][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [002.815][ main ] 372 - INFO: Starting map (AL MT7613: rai5: ===> mbss_virtual_if_open MT7613: RTMP_COM_IoctlHandle -> CMD_RTPRIV_IOCTL_VIRTUAL_INF_UP MT7613: wifi_sys_open(), wdev idx = 5 MT7613: wdev_attr_update(): wdevId5 = 4a:22:54:5a:94:88 MT7613: HdevObjAdd() obj->Idx=5, obj->OmacIdx=21, obj->state=0, obj->WmmIdx=1, rdev->DevNum=3 MACMT7613: = 4a:2Caller: wlan_operate_init+0xf4/0x1bc [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 2:54:4a:94:87) Map whole MT7613: AP inf up for ra_5(func_idx) OmacIdx=21 nMT7613: AsicRadioOnOffCtrl(): DbdcIdx=0 RadioOn etworkMT7613: ApAutoChannelAtBootUp-----------------> MT7613: ApAutoChannelAtBootUp: AutoChannelBootup[0] = 1 MT7613: AsicSetRxFilter(): NotSupportedFunc for this arch(HIF_MT)! =MT7613: MtCmdSetMacTxRx:(ret = 0) MT7613: ApAutoChannelAtBootUp<----------------- mt7663 mtk_band_steering_netlink_init 243 band steering netlink init ok MT7613: [PMF]APPMFInit:: apidx=5, MFPC=0, MFPR=0, SHA256=0 0MT7613: ... Caller: SetCommonHT+0xdc/0x198 [mt7663_ap] MT7613: phy_mode=49, ch=36, wdev_type=1 MT7613: ht_cap: ht_cap->HtCapInfo, MT7613: ldpc=1,ch_width=1,gf=0,sgi20=1,sgi40=1,tx_stbc=1,rx_stbc=1,amsdu_size=0 MT7613: ht_cap: ht_cap->HtCapParm, MT7613: mdpu_density=0, ampdu_factor=3 MT7613: Enable 20/40 BSSCoex Channel Scan(BssCoex=1) MT7613: wifi_sys_linkup(), wdev idx = 5 MT7613: wtc_acquire_groupkey_wcid: Found a non-occupied wtbl_idx:133 for WDEV_TYPE:1 LinkToOmacIdx = 15, LinkToWdevType = 1 mapController ==> [002.817][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returned with errno=127 (Network is down) mapController ==> [002.818][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [002.819][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapController ==> [002.820][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [002.821][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapController ==> [002.822][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [002.823][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') returned with errno=127 (Network is down) mapController ==> [002.823][ send1905Stream ] 088 - ERROR: Packet could not be sent! .mapController ==> [003.539][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returned with errno=127 (Network is down) mapController ==> [003.540][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [003.540][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapController ==> [003.541][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [003.541][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapController ==> [003.542][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [003.542][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') returned with errno=127 (Network is down) mapController ==> [003.543][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [003.545][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra4') returned with errno=127 (Network is down) mapController ==> [003.546][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [003.547][ tp1905_sendRawPacket ] 780 - ERROR: sendto('ra5') returned with errno=127 (Network is down) mapController ==> [003.547][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [003.549][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai4') returned with errno=127 (Network is down) mapController ==> [003.549][ tp1905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [003.550][ tp1905_sendRawPacket ] 780 - ERROR: sendto('rai5') returned with errno=127 (Network is down) mapControMT7613: bssUpdateBmcMngRate (BSS_INFO_BROADCAST_INFO), CmdBssInfoBmcRate.u2BcTransmit= 8192, CmdBssInfoBmcRate.u2McTransmit = 8196 ller ==> [003.551][ send1905Stream ] 088 - ERROR: Packet could not be sent! mapController ==> [003.552][ tp1905_sendRawMT7613: UpdateBeaconHandler, BCN_UPDATE_INIT, OmacIdx = 15 PacMT7613: MtCmdTxPowerSKUCtrl: fgTxPowerSKUEn: 1, BandIdx: 0 MT7613: MtCmdTxBfBackoffCtrl: fgTxBFBackoffEn: 0, BandIdx: 0 kMT7613: MtCmdTxPowerPercentCtrl: fgTxPowerPercentEn: 1, BandIdx: 0 eMT7613: AsicSetTxStream(): NotSupportedFunc for this arch(HIF_MT)! MT7613: AsicSetRxStream(): NotSupportedFunc for this arch(HIF_MT)! t ] 780 - ERROR: sendto('rai5') returned with errno=127 (Network is down) mapController ==> [003.55MT7613: apidx 5 for WscUUIDInit MT7613: Generate UUID for apidx(5) 2][ tp1br0: port 12(rai5) entering forwarding state br0: port 12(rai5) entering forwarding state 905_sendLLDPBridgeDiscoveryPacket ] 7044 - ERROR: Packet could not be sent! mapController ==> [003.557][ tp1905_send1905APMetricQueryPacket ] 5724 - ERROR: --> pMetricQueryTlv build failed, Maybe we don't know the wifi interfaces in pDevice(4a:22:54:4a:94:86)! mapController ==> [003.557][ tp1905_triggerAPMetricQueryProcess ] 7678 - WARN: Could not send 1905 AP Metric Query message mapController ==> [003.565][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai5, recv : -1 mapController ==> [003.566][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai5, recv : -1 mapController ==> [003.566][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai4, recv : -1 mapController ==> [003.567][ socketRecvPacket ] 361 - WARN: Could not recv info from interface ra5, recv : -1 mapController ==> [003.567][ socketRecvPacket ] 361 - WARN: Could not recv info from interface ra4, recv : -1 .+mapAgent ==> [003.865][ main ] 365 - INFO: Starting map (AL MAC = 4a:22:54:4a:94:86) Map whole network = 0... mapAgent ==> [003.866][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai5, recv : -1 mapAgent ==> [003.866][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai5, recv : -1 mapAgent ==> [003.866][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai4, recv : -1 mapAgent ==> [003.867][ socketRecvPacket ] 361 - WARN: Could not recv info from interface rai4, recv : -1 mapAgent ==> [003.867][ socketRecvPacket ] 361 - WARN: Could not recv info from interface ra5, recv : -1 mapAgent ==> [003.868][ socketRecvPacket ] 361 - WARN: Could not recv info from interface ra5, recv : -1 mapAgent ==> [003.868][ socketRecvPacket ] 361 - WARN: Could not recv info from interface ra4, recv : -1 mapAgent ==> [003.868][ socketRecvPacket ] 361 - WARN: Could not recv info from interface ra4, recv : -1 +++posix_timer_do: 1 callbacks suppressed + ..[ rsl_easymesh_updateMapDev ] 11562 - ERROR: AgentOnController not found, update map device fail!!! .[cloud_parseRdpGetObjValue:98] Token alias=VR1200v not found! [grpMgmtGenUpdateFeatureInfo:2417] Get commonToken failed! [grpMgmt_updateFeatureInfo:4375] Failed to generate update feature info message to cloud ...............mapController ==> [006.892][ tp1905_send1905APMetricQueryPacket ] 5724 - ERROR: --> pMetricQueryTlv build failed, Maybe we don't know the wifi interfaces in pDevice(4a:22:54:4a:94:86)! mapController ==> [006.893][ tp1905_triggerAPMetricQueryProcess ] 7678 - WARN: Could not send 1905 AP Metric Query message ..mapAgent ==> [007.471][ tp1905_processWscM2 ] 831 - ERROR: Message M2 authentication failed mapAgent ==> [007.471][ handleApAutoconfigurationWsc ] 3333 - ERROR: tp1905_processWscM2 false [ easyMeshMultiApPolicyConfigRecvHandler ] 8129: do not support set vlanid in Controller ....+++++ [ findDynDomainName ] 1021 - ERROR: Cloud ddns is not available now. #file: ./src/http_init.c;line: 571; error = No such file or directory #msg: updateUserRestriction start, pageListIndex: 27 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 0, visibility: 2, editable:1 #file: ./src/http_alias.c;line: 529; error = No such file or directory #msg: Unknown page: /main/advanceLte.htm, skip it #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 1, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 2, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 3, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 4, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 5, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 6, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 7, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 8, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 9, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 10, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 11, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 12, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 13, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 14, visibility: 1, editable:0 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 15, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 16, visibility: 2, editable:1 #file: ./src/http_alias.c;line: 529; error = No such file or directory #msg: Unknown page: /main/operateMode.htm, skip it #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 17, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 18, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 19, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 20, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 21, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 22, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 23, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 24, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 25, visibility: 2, editable:1 #file: ./src/http_init.c;line: 597; error = No such file or directory #msg: pageListIndex: 26, visibility: 2, editable:1 mapController ==> [008.871][ tp1905_send1905APMetricQueryPacket ] 5724 - ERROR: --> pMetricQueryTlv build failed, Maybe we don't know the wifi interfaces in pDevice(4a:22:54:4a:94:86)! mapController ==> [008.871][ tp1905_triggerAPMetricQueryProcess ] 7678 - WARN: Could not send 1905 AP Metric Query message mapController ==> [008.907][ checkChanspecValid ] 187 - INFO: Controller channel range is from 36 to 48 mapAgent ==> [009.166][ tp1905_processWscM2 ] 831 - ERROR: Message M2 authentication failed mapAgent ==> [009.166][ handleApAutoconfigurationWsc ] 3333 - ERROR: tp1905_processWscM2 false [ easyMeshMultiApPolicyConfigRecvHandler ] 8129: do not support set vlanid in Controller mapController ==> [009.103][ checkChanspecValid ] 187 - INFO: Controller channel range is from 36 to 48 mapAgent ==> [009.200][ mapAgent_applySettingReadAgentConfig ] 212 - WARN: File /var/tmp/tpAgentConf.json does not exits, just go out [ getGwRealtimeRate ] 1431 - ERROR: updateApControllerSpeed failed [ easyMeshAgentConfigRecvHandler ] 7074: ===============================recv AgentConfig Message======================================== [ easyMeshAgentConfigRecvHandler ] 7084: do not support autoconfig in Controller or easymesh disable mapController ==> [019.128][ mapController_triggerChannelSelectReqTimer ] 580 - INFO: No need do channel select for device(4a:22:54:4a:94:86), bRadioConfig(1), bNeedRepeat(0) [ getGwRealtimeRate ] 1431 - ERROR: updateApControllerSpeed failed mapAgent ==> [028.941][ tp1905_triggerAPSearchProcess ] 7587 - ERROR: WSC M2 timeout! mapAgent ==> [028.942][ tp1905_triggerAPSearchProcess ] 7587 - ERROR: WSC M2 timeout! [ easyMeshMultiApPolicyConfigRecvHandler ] 8129: do not support set vlanid in Controller mapController ==> [032.013][ checkChanspecValid ] 187 - INFO: Controller channel range is from 36 to 48 [grpMgmtGenUpdateFeatureInfo:2417] Get commonToken failed! [grpMgmt_updateFeatureInfo:4375] Failed to generate update feature info message to cloud [ easyMeshMultiApPolicyConfigRecvHandler ] 8129: do not support set vlanid in Controller [ easyMeshAgentConfigRecvHandler ] 7074: ===============================recv AgentConfig Message======================================== [ easyMeshAgentConfigRecvHandler ] 7084: do not support autoconfig in Controller or easymesh disable mapController ==> [042.019][ mapController_triggerChannelSelectReqTimer ] 580 - INFO: No need do channel select for device(4a:22:54:4a:94:86), bRadioConfig(1), bNeedRepeat(0) [ rsl_time_ntpStart ] 417: Current dns svr:
OpenWrt bootlog
BGA IC Xtal:1 DDR3 init. DRAMC init done. Calculate size. DRAM size=128MB Set new TRFC. ddr-1066 7512DRAMC V1.2.2 (0) Set SPI Flash Clock to 25 Mhz EN751221 at Thu Feb 9 13:01:21 UTC 2023 version 1.1 free bootbase Memory size 128MB Set SPI Flash Clock to 25 Mhz spi_nand_probe: mfr_id=0xc8, dev_id=0x1 Dected SPI NAND Flash : _SPI_NAND_DEVICE_ID_F50L1G41LB, Flash Size=0x8000000 bmt pool size: 81 BMT & BBT Init Success tclinux partition size = 0x7f00000, real size = 0x81e192c tclinux partition size < its real size Press any key in 1 secs to enter boot command mode. ............ 2G calData: 0x7592 5G calData: 0x7663 Invalid Power GPIO, just return and don't turn on Power LED Boot flag chksum correct, select MASTER image ==> The kernel_tag_start is 0x1c0000 ==> free_mem_ptr = 0x80600000, free_mem_ptr_end = 0x80780000 ==> kernelLen = 0x2c6d58, kernelAddr in memory = 0x1c0200 ==> Jump to kernelEntryPoint = 0x80020000 ==> Decompress to kernelTextAddr = 0x80020000 Uncompressing [LZMA] ... done. ==> jumpAddr = 0x80020000 zimage at: 800232A0 802DE75C Uncompressing Linux at load address 81000000 Copy device tree to address 81906FC0 Now, booting the kernel... [ 0.000000] Linux version 6.6.79 (user@cjd-dev) (mips-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r28787-2fe53b3781) 13.3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Fri Feb 28 17:26:08 2025 [ 0.000000] ISPRAM0: PA=1c000000,Size=00010000,enabled [ 0.000000] printk: bootconsole [early0] enabled [ 0.000000] CPU0 revision is: 00019558 (MIPS 34Kc) [ 0.000000] MIPS: machine is TP-Link Archer VR1200v (v2) [ 0.000000] Wasting 1152 bytes for tracking 32 unused pages [ 0.000000] Initrd not found or empty - disabling initrd [ 0.000000] Primary instruction cache 64kB, VIPT, 4-way, linesize 32 bytes. [ 0.000000] Primary data cache 32kB, 4-way, VIPT, cache aliases, linesize 32 bytes [ 0.000000] Zone ranges: [ 0.000000] Normal [mem 0x0000000000020000-0x0000000007ffffff] [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000000020000-0x0000000007ffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000000020000-0x0000000007ffffff] [ 0.000000] On node 0, zone Normal: 32 pages in unavailable ranges [ 0.000000] percpu: Embedded 11 pages/cpu s16288 r8192 d20576 u45056 [ 0.000000] Kernel command line: console=ttyS0,115200 [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes, linear) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes, linear) [ 0.000000] Writing ErrCtl register=000568c8 [ 0.000000] Readback ErrCtl register=000568c8 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 32448 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 119100K/130944K available (7047K kernel code, 630K rwdata, 1376K rodata, 1244K init, 220K bss, 11844K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] rcu: RCU restricting CPUs from NR_CPUS=2 to nr_cpu_ids=1. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.000000] NR_IRQS: 256 [ 0.000000] /intc@1fb40000: Init [ 0.000000] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.000000] CPU frequency: 900MHz [ 0.000000] timer_hpt: Init for 1 CPU(s) [ 0.000000] clocksource: timer_hpt: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 9556302233 ns [ 0.000000] timer_hpt: Setting up clockevent for CPU 0 [ 0.000002] sched_clock: 32 bits at 200MHz, resolution 5ns, wraps every 10737418237ns [ 0.008567] timer_hpt: using 200.000 MHz high precision timer [ 0.015036] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032) [ 0.081761] pid_max: default: 32768 minimum: 301 [ 0.095331] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.103321] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.120494] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1. [ 0.131085] rcu: Hierarchical SRCU implementation. [ 0.136270] rcu: Max phase no-delay instances is 1000. [ 0.142690] smp: Bringing up secondary CPUs ... [ 0.147593] smp: Brought up 1 node, 1 CPU [ 0.154064] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.164907] futex hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.178941] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.196218] clocksource: Switched to clocksource timer_hpt [ 0.212335] NET: Registered PF_INET protocol family [ 0.217928] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.226720] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 4096 bytes, linear) [ 0.235854] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.244408] TCP established hash table entries: 1024 (order: 0, 4096 bytes, linear) [ 0.252777] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.260650] TCP: Hash tables configured (established 1024 bind 1024) [ 0.268247] MPTCP token hash table entries: 256 (order: 0, 4096 bytes, linear) [ 0.276553] UDP hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.283676] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear) [ 0.292257] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.300246] Initialise system trusted keyrings [ 0.309216] workingset: timestamp_bits=14 max_order=15 bucket_order=1 [ 0.317942] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.324849] Key type asymmetric registered [ 0.329343] Asymmetric key parser 'x509' registered [ 0.335808] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.344132] printk: console [ttyS0] disabled [ 0.349377] 1fbf0000.serial: ttyS0 at MMIO 0x1fbf0000 (irq = 8, base_baud = 115200) is a 16550 [ 0.358899] printk: console [ttyS0] enabled [ 0.358899] printk: console [ttyS0] enabled [ 0.367602] printk: bootconsole [early0] disabled [ 0.367602] printk: bootconsole [early0] disabled [ 0.395871] spi-nand spi0.0: ESMT SPI NAND was found. [ 0.401088] spi-nand spi0.0: 128 MiB, block size: 128 KiB, page size: 2048, OOB size: 64 [ 0.410832] en75_bmt: found BMT in block 1023 [ 0.482005] en75_bmt: found BBT in block 943 [ 0.486350] en75_bmt: BBT & BMT found [ 0.490008] en75_bmt: blocks: total: 1024, user: 943, factory_bad: 0, worn: 0 reserve: 81 [ 0.498203] en75_bmt: 117 MiB usable space [ 0.499087] 10 fixed-partitions partitions found on MTD device spi0.0 [ 0.509756] Creating 10 MTD partitions on "spi0.0": [ 0.514644] 0x000000000000-0x000000080000 : "bootloader" [ 0.522907] 0x000000080000-0x0000001c0000 : "misc" [ 0.530638] 0x0000001c0000-0x0000005c0000 : "kernel" [ 0.540600] 0x0000005c0000-0x000002000000 : "rootfs" [ 0.566672] mtd: setting mtd3 (rootfs) as root device [ 0.571804] 0x0000001c0000-0x000002000000 : "firmware" [ 0.579142] 0x000002000000-0x000002800000 : "kernel_slave" [ 0.592502] 0x000002800000-0x000003e40000 : "rootfs_slave" [ 0.616091] 0x000002000000-0x000003e40000 : "firmware_slave" [ 0.624037] 0x000003fe0000-0x000004000000 : "reserve" [ 0.631467] 0x000004000000-0x0000074a0000 : "openwrt_ubi" [ 0.683313] NET: Registered PF_INET6 protocol family [ 0.701712] Segment Routing with IPv6 [ 0.705517] In-situ OAM (IOAM) with IPv6 [ 0.709706] NET: Registered PF_PACKET protocol family [ 0.714830] 8021q: 802.1Q VLAN Support v1.8 [ 0.727077] Loading compiled-in X.509 certificates [ 0.790401] clk: Disabling unused clocks [ 0.795000] mtdblock: MTD device 'rootfs' is NAND, please consider using UBI block devices instead. [ 0.821640] VFS: Mounted root (squashfs filesystem) readonly on device 31:3. [ 0.832174] Freeing unused kernel image (initmem) memory: 1244K [ 0.838160] This architecture does not have kernel memory protection. [ 0.844613] Run /sbin/init as init process [ 1.869543] init: Console is alive [ 2.547368] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 2.652395] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 2.670509] init: - preinit - [ 6.486185] random: crng init done Press the [f] key and hit [enter] to enter failsafe mode Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level [ 10.803878] mount_root: unable to create loop device [ 10.816397] mount_root: no usable overlay filesystem found, using tmpfs overlay [ 10.828216] urandom-seed: Seed file not found (/etc/urandom.seed) [ 10.969550] procd: - early - [ 11.674644] procd: - ubus - [ 11.868795] procd: - init - Please press Enter to activate this console. [ 13.102957] kmodloader: loading kernel modules from /etc/modules.d/* [ 13.383461] PPP generic driver version 2.4.2 [ 13.397599] NET: Registered PF_PPPOX protocol family [ 13.424830] kmodloader: done loading kernel modules from /etc/modules.d/* [ 14.706528] urngd: v1.0.2 started. BusyBox v1.37.0 (2025-02-09 22:46:37 UTC) built-in shell (ash) _______ ________ __ | |.-----.-----.-----.| | | |.----.| |_ | - || _ | -__| || | | || _|| _| |_______|| __|_____|__|__||________||__| |____| |__| W I R E L E S S F R E E D O M ----------------------------------------------------- OpenWrt SNAPSHOT, r28921+1-ce68f61cb6 ----------------------------------------------------- === WARNING! ===================================== There is no root password defined on this device! Use the "passwd" command to set up a new password in order to prevent unauthorized SSH logins. -------------------------------------------------- OpenWrt recently switched to the "apk" package manager! OPKG Command APK Equivalent Description ------------------------------------------------------------------ opkg install <pkg> apk add <pkg> Install a package opkg remove <pkg> apk del <pkg> Remove a package opkg upgrade apk upgrade Upgrade all packages opkg files <pkg> apk info -L <pkg> List package contents opkg list-installed apk info List installed packages opkg update apk update Update package lists opkg search <pkg> apk search <pkg> Search for packages ------------------------------------------------------------------ For more https://openwrt.org/docs/guide-user/additional-software/opkg-to-apk-cheatsheet root@OpenWrt:~#