Netgear RAX120v2 (Nighthawk AX12)

Netgear RAX120

The RAX120v2 is an 802.11ax OFDMA and MU-MIMO Dual-Band WiFi router, which has the following WiFi Interfaces.:

  • one 2.4GHz (QCN9024 4×4 ax)
  • two 5GHz (QCN5024 4×4 ax + QCN9024 2×2/4×4 ax)

The radios support up to 4K QAM (through MCS0 - MCS15), for devices and paths that are compatible with those high-density modulations. Supports DFS channels, from channel 36 up to 165 (may vary on each region). 12 antenna chains operate in a two radio configuration as 8×8 in 5 GHz and 4×4 in 2.4 GHz.

This device has 2 HW versions. V2 hardware is required for openwrt support.

This is a router based on a Qualcomm IPQ8074 or IPQ8074A(V2 hardware) 4-core SoC (up to 2.2GHz).

It has 4 1G LAN ports, 1 1G WAN port, and a 2.5G/5G LAN port (Aquantia AQR111).

Architecture ARM
Vendor Qualcomm
Bootloader SBL (?)
System-On-Chip Qualcomm IPQ8074 (or 8074A for V2 HW)
CPU/Speed Cortex-A53 @ 2.0 GHz
Flash-Chip Winbond W29N04GZBIBA
Flash size 512 MiB
RAM 1024 MiB
Wireless 2.4 GHz Qualcomm QCN5024, b/g/n/ax, 4×4:4
Wireless 5 GHz 2x Qualcomm QCN5054, a/n/ac/ax, 8×8:8
Ethernet 10/100/1000 Mbit/s, 5 Gbit/s WAN
Switch Qualcomm Atheros IPQ8074
Serial Yes
Power External, 19 V 3.16 A

Describe if there are any ongoing activities that might lead to OpenWrt support.

Enable telnet with magic packet: https://github.com/Red54/telnetenable-r9000

OpenWrt forum thread: https://forum.openwrt.org/t/adding-openwrt-support-for-netgear-rax120-nighthawk-ax12/75592

There is an experimental fork of OpenWrt that supports this device at : https://github.com/boretom/openwrt-fork/tree/rax120v2/jewwest-based-pr or https://github.com/jewwest/openwrt/tree/master (no activity since mid January 2023)

Build

  1. Setup build environment:
    git clone https://github.com/boretom/openwrt-fork.git
    cd openwrt
    git checkout rax120v2/jewwest-based-pr
    ./scripts/feeds update -a
    ./scripts/feeds install -a
  2. Run make menuconfig, select:
    Base System:
    Target-System ---> Qualcomm Atheros 802.11ax WiSoC-s
    Subtarget     ---> Qualcomm Atheros IPQ807x
    Target-Profile ---> Netgear RAX120v2
    
    Add other components as desired.. Example: Luci

Multi-Gig Support: See further down in the 'Install' section

  1. run make (or to get less random compilation issues try make -j$(nproc) toolchain/install followed by make -j$(nproc) world)
  2. After build finished, generated firmware will be at bin/targets/qualcommax/ipq807x.

Install

From OEM Firmware

1. In the Netgear Stock GUI flash openwrt-qualcommax-ipq807x-netgear_rax120v2-squashfs-web-ui-factory.img

2. Open Luci administration and flash sysupgrade image - openwrt-qualcommax-ipq807x-netgear_rax120v2-squashfs-sysupgrade.bin

From TFTP / initramfs

1. Setup TFTP server at 192.168.1.10.

2. Stop autoboot and run.

tftpboot openwrt-qualcommax-ipq807x-netgear_rax120v2-initramfs-uImage.itb
bootm

3. Open Luci administration and flash sysupgrade image - openwrt-qualcommax-ipq807x-netgear_rax120v2-squashfs-sysupgrade.bin

OpenWRT is now installed

Aquantia 2.5G/5G LAN

For the 5G port labeled 'lan5' to work a firmware is needed. This can be loaded in u-boot by writing the firmware to the correct mtd partition.

The firmware file found in the Netgear stock firmware under /lib/firmware/ named AQR-G3_v4.3.C-AQR_DNI_DR-EQ35AX8-R-prov1_ID23888_VER1311.cld is needed and has to be converted to a MBN file.

The mkheader.py script used here can be found in the Netgear V1.2.8.40 GPL source, under git_home/u-boot.git/tools/mkheader.py.

Convert the CLD file to MBN using:

  $ python2 mkheader.py 0x44000000 0x13 <*.cld file> aqr_4.3.C.mbn

This MBN file can then be flashed to the MTD partition to be used by u-boot.

The necessary files can also be found in

  https://github.com/boretom/openwrt-fork/tree/rax120v2/aquantia-firmware

Write MBN file to MTD partition to be loaded automatically by u-boot

U-boot automatically tries to load the firmware from nand at address 0x7e00000 which corresponds to /dev/mtd25 in OpenWrt.

1. find ETHPHYFW partition while running OpenWrt (expected: /dev/mtd25)

$ fgrep -i 'ethphyfw' /proc/mtd
mtd25: 00080000 00020000 "ethphyfw

2. copy mbn file to /tmp/ folder of the router

$ scp aqr-v4.3.C.mbn 192.168.1.1:/tmp/

3. write mbn file to ethphyfw partition

$ mtd write /tmp/aqr_v4.3.C.mbn /dev/mtd25

=== (Outdated) Install firmware using aq-fw-download tool - Download firmware.

wget -O /lib/firmware/ https://github.com/jewwest/openwrt/releases/download/ipq807x-latest/AQR-G3_v4.3.C-AQR_DNI_DR-EQ35AX8-R-prov1_ID23888_VER1311.cld

- Create init.d script to load the firmware and set link speed at boot.

vi /etc/init.d/aqr111
#!/bin/sh /etc/rc.common

START=25

boot() {
	aq-fw-download /lib/firmware/AQR-G3_v4.3.C-AQR_DNI_DR-EQ35AX8-R-prov1_ID23888_VER1311.cld lan5 7
	ethtool -s lan5 advertise 0x1000000000000 
	ssdk_sh debug phy set 7 0x4004c441 0x8
	echo "Aquantia Interface Set to 5G"
}
chmod +x /etc/init.d/aqr111
/etc/init.d/aqr111 enable

OEM Firmware

0x000000000000-0x000000100000 : "0:SBL1"
0x000000100000-0x000000200000 : "0:MIBIB"
0x000000200000-0x000000280000 : "0:BOOTCONFIG"
0x000000280000-0x000000300000 : "0:BOOTCONFIG1"
0x000000300000-0x000000600000 : "0:QSEE"
0x000000600000-0x000000900000 : "0:QSEE_1"
0x000000900000-0x000000980000 : "0:DEVCFG"
0x000000980000-0x000000a00000 : "0:DEVCFG_1"
0x000000a00000-0x000000a80000 : "0:APDP"
0x000000a80000-0x000000b00000 : "0:APDP_1"
0x000000b00000-0x000000b80000 : "0:RPM"
0x000000b80000-0x000000c00000 : "0:RPM_1"
0x000000c00000-0x000000c80000 : "0:CDT"
0x000000c80000-0x000000d00000 : "0:CDT_1"
0x000000d00000-0x000000d80000 : "0:APPSBLENV"
0x000000d80000-0x000000e80000 : "0:APPSBL"
0x000000e80000-0x000000f80000 : "0:APPSBL_1"
0x000000f80000-0x000001000000 : "0:ART"
0x000001000000-0x000001080000 : "0:ART.bak"
0x000001080000-0x000001180000 : "config"
0x000001180000-0x000001280000 : "boarddata1"
0x000001280000-0x000001380000 : "boarddata2"
0x000001380000-0x000001480000 : "pot"
0x000001480000-0x000001980000 : "dnidata"
0x000001980000-0x000007d80000 : "firmware"
0x000001980000-0x000001f00000 : "kernel"
0x000001f00000-0x000007d80000 : "rootfs"
0x000007d80000-0x000008100000 : "language"
0x000008100000-0x000008200000 : "cert"
0x000008200000-0x000008280000 : "mtdoops"
0x000008280000-0x000008480000 : "router_analytics"
0x000008480000-0x00000e880000 : "ntgrdata"
0x00000e880000-0x000020000000 : "reserved"

OpenWrt Firmware

0x000000000000-0x000000100000 : "0:sbl1"
0x000000100000-0x000000200000 : "0:mibib"
0x000000200000-0x000000280000 : "0:bootconfig"
0x000000280000-0x000000300000 : "0:bootconfig_1"
0x000000300000-0x000000600000 : "0:qsee"
0x000000600000-0x000000900000 : "0:qsee_1"
0x000000900000-0x000000980000 : "0:devcfg"
0x000000980000-0x000000a00000 : "0:devcfg_1"
0x000000a00000-0x000000a80000 : "0:apdp"
0x000000a80000-0x000000b00000 : "0:apdp_1"
0x000000b00000-0x000000b80000 : "0:rpm"
0x000000b80000-0x000000c00000 : "0:rpm_1"
0x000000c00000-0x000000c80000 : "0:cdt"
0x000000c80000-0x000000d00000 : "0:cdt_1"
0x000000d00000-0x000000d80000 : "0:appsblenv"
0x000000d80000-0x000000e80000 : "0:appsbl"
0x000000e80000-0x000000f80000 : "0:appsbl_1"
0x000000f80000-0x000001000000 : "0:art"
0x000001000000-0x000001080000 : "0:art.bak"
0x000001080000-0x000001180000 : "config"
0x000001180000-0x000001280000 : "boarddata1"
0x000001280000-0x000001380000 : "boarddata2"
0x000001380000-0x000001480000 : "pot"
0x000001480000-0x000001980000 : "dnidata"
0x000001980000-0x000003680000 : "kernel"
0x000007e00000-0x000007e80000 : "ethphyfw"
0x00000e880000-0x000020000000 : "rootfs"

...

...

The case bottom and cover are attached to each other really tightly, but the case can be opened once you figure out all necessary steps:

  • The circuit board is attached to a heatsink that is attached to the top cover. So the bottom panel (with curvy sides) is the one to separate from the others.
  • There are seven screws (Torx T-10) to be opened: four on the bottom and three in the rear panel. Three screws are visible on the rear panel and four are hidden inside the rubber feet (which are attached with adhesive tape)
  • There are strong clips on sides keeping the bottom tight even when the screws have been opened. These clips need to be pronged open with a flat screwdrivers or something. (I needed two screwdrivers). Additionally, there are small fangs in the vertical front panel

Bottom panel:

Netgear RAX120 bottom panel

Clips:

Netgear RAX120 bottom clips

Top cover & circuit board:

Netgear RAX120 circuit

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

The serial header in RAX120 (labled J9003) is right at the edge of the circuitboard, so it can be accessed even when the cover is attached to the circuitboard.
I bended sideways the pins (at least ground, RX, TX), so that I could easily attach the serial cable. Using the markings in my USB-ttl converter, the pin order starting from right is: ground, RX, TX, +3.3V.

Serial connection parameters for Netgear RAX120 115200, 8N1

Header:

Netgear RAX120 serial header

Serial cable:

Netgear RAX120 serial pins cable

I drilled a hole for the serial cable to the side panel, so that I will later get serial access without opening the case.

Netgear RAX120 serial cable

Bootloader log as seen from serial console.

=~=~=~=~=~=~=~=~=~=~=~= PuTTY log 2020.09.03 19:19:50 =~=~=~=~=~=~=~=~=~=~=~= Format: Log Type - Time(microsec) - Message - Optional Info Log Type: B - Since Boot(Power On Reset), D - Delta, S - Statistic S - QC_IMAGE_VERSION_STRING=BOOT.BF.3.3.1-00110 S - IMAGE_VARIANT_STRING=HAACANAZA S - OEM_IMAGE_VERSION_STRING=CRM S - Boot Config, 0x000002e5 B - 205 - PBL, Start B - 2748 - bootable_media_detect_entry, Start B - 3454 - bootable_media_detect_success, Start B - 3459 - elf_loader_entry, Start B - 6288 - auth_hash_seg_entry, Start B - 6548 - auth_hash_seg_exit, Start B - 78086 - elf_segs_hash_verify_entry, Start B - 149990 - PBL, End B - 160491 - SBL1, Start B - 212158 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4 B - 218624 - pm_device_init, Start B - 338397 - PM_SET_VAL:Skip D - 119163 - pm_device_init, Delta B - 340624 - pm_driver_init, Start D - 5276 - pm_driver_init, Delta B - 347120 - clock_init, Start D - 1525 - clock_init, Delta B - 351238 - boot_flash_init, Start D - 12474 - boot_flash_init, Delta B - 367372 - boot_config_data_table_init, Start D - 3050 - boot_config_data_table_init, Delta - (575 Bytes) B - 374845 - Boot Setting : 0x00000618 B - 378840 - CDT version:2,Platform ID:8,Major ID:1,Minor ID:0,Subtype:0 B - 386038 - sbl1_ddr_set_params, Start B - 389546 - cpr_init, Start D - 1098 - cpr_init, Delta B - 394761 - Pre_DDR_clock_init, Start B - 398848 - Pre_DDR_clock_init, End B - 402234 - DDR Type : PCDDR3 B - 407815 - do ddr sanity test, Start D - 976 - do ddr sanity test, Delta B - 412756 - DDR: Start of HAL DDR Boot Training B - 417392 - DDR: End of HAL DDR Boot Training B - 423035 - DDR: Checksum to be stored on flash is -45748451 B - 433130 - Image Load, Start D - 245068 - QSEE Image Loaded, Delta - (1368672 Bytes) B - 678259 - Image Load, Start D - 640 - SEC Image Loaded, Delta - (2048 Bytes) B - 685884 - Image Load, Start D - 43157 - DEVCFG Image Loaded, Delta - (31941 Bytes) B - 729133 - Image Load, Start D - 22997 - RPM Image Loaded, Delta - (99896 Bytes) B - 752221 - Image Load, Start D - 71004 - APPSBL Image Loaded, Delta - (446536 Bytes) B - 823347 - QSEE Execution, Start D - 30 - QSEE Execution, Delta B - 829112 - USB D+ check, Start D - 0 - USB D+ check, Delta B - 835608 - SBL1, End D - 677313 - SBL1, Delta S - Flash Throughput, 6939 KB/s (1950340 Bytes, 281048 us) S - DDR Frequency, 466 MHz S - Core 0 Frequency, 1651 MHz U-Boot 2016.01-23637-g6be947d (Sep 26 2018 - 10:21:39 +0800) Model: QCA, IPQ807x-HK01 U-boot dni1 V1.2 for DNI HW ID: 29765589; NAND flash 512MB; RAM 1024MB . developed based on 'qsdk-ipq807x.ilq.8.0-spf.8.0.CS' DRAM: smem ram ptable found: ver: 1 len: 4 1 GiB NAND: ONFI device found ID = 1590acef Vendor = ef Device = ac SF: Unsupported flash IDs: manuf 00, jedec 0000, ext_jedec 0000 ipq_spi: SPI Flash not found (bus/cs/speed/mode) = (0/0/48000000/0) 512 MiB MMC: <NULL>: 0 *** Warning - bad CRC, using default environment In: serial@78B3000 Out: serial@78B3000 Err: serial@78B3000 machid: 8010000 Net: MAC0 addr:bc:a5:11:a7:ae:f6 PHY ID1: 0x4d PHY ID2: 0xd0b1 NAND read: device 0 offset 0x7e00000, size 0x80000 524288 bytes read: OK bad magic on ETHPHYFW partition PHY ID1: 0x3a1 PHY ID2: 0xb612 EDMA ver 1 hw init Num rings - TxDesc:1 (0-0) TxCmpl:1 (7-7) RxDesc:1 (15-15) RxFill:1 (7-7) ipq807x_edma_alloc_rings: successfull ipq807x_edma_setup_ring_resources: successfull ipq807x_edma_configure_rings: successfull ipq807x_edma_hw_init: successfull eth0 Hit any key to stop autoboot: 2  1  0 ipq807x_eth_halt: done eth0 PHY0 Down Speed :10 Half duplex eth0 PHY1 Down Speed :10 Half duplex eth0 PHY2 Down Speed :10 Half duplex eth0 PHY3 Down Speed :10 Half duplex eth0 PHY4 Down Speed :10 Half duplex 10M speed not supported ipq807x_eth_halt: done nmrp server is stopped or failed ! Loading DNI firmware for checking... Loading from device 0: nand0 (offset 0x1980000) ** KERNEL partition size, kernel : 0x580000 ** ** ROOTFS partition size, kernel: 0x580000, rootfs: 0x3380800 ** ** rootfs address : 0x4457ffc0 ** ## Checking Image at 44000000 ... FIT image found FIT description: ARM64 OpenWrt FIT (Flattened Image Tree) Image 0 (kernel@1) Description: ARM64 OpenWrt Linux-4.4.60 Type: Kernel Image Compression: gzip compressed Data Start: 0x440000e8 Data Size: 4730017 Bytes = 4.5 MiB Architecture: AArch64 OS: Linux Load Address: 0x41080000 Entry Point: 0x41080000 Hash algo: crc32 Hash value: a3fc9dba Hash algo: sha1 Hash value: 144b9a1a68d972a1664e804e098054cf5b21b163 Image 1 (fdt@hk09) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x44482ed4 Data Size: 71866 Bytes = 70.2 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 6ca5fead Hash algo: sha1 Hash value: ff4a65f65657bd5ac190539d76ebfb68661a981e Image 2 (fdt@db.hk01) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444948a4 Data Size: 71229 Bytes = 69.6 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 15cc8115 Hash algo: sha1 Hash value: 1dc2631e9a29f4f51fb963ea3689092bb27352ba Image 3 (fdt@hk02) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444a5ff8 Data Size: 71997 Bytes = 70.3 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 8e2d7c4f Hash algo: sha1 Hash value: 9876ca5d6c50a3e9734f2873f3f92152506e1117 Image 4 (fdt@hk05) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444b7a4c Data Size: 62801 Bytes = 61.3 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 393fdf43 Hash algo: sha1 Hash value: dd11d4075c9a8e2de82cdb7032258076153afe29 Image 5 (fdt@hk06) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444c70b4 Data Size: 69432 Bytes = 67.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: c7dfdff3 Hash algo: sha1 Hash value: 47ebd045090b2abb3085d7269b50dbdae83d9e4a Image 6 (fdt@hk08) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444d8100 Data Size: 72361 Bytes = 70.7 KiB Architecture: AArch64 Hash algo: crc32 Hash value: b59ba680 Hash algo: sha1 Hash value: 1bebce5b168cb94c57e0d136b790689a6d7484e8 Image 7 (fdt@ac01.1) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444e9cc0 Data Size: 71430 Bytes = 69.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 6716e07c Hash algo: sha1 Hash value: b64060b58e4160f3c7d62e871b1ec6c003e4f887 Image 8 (fdt@hk07) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x444fb4dc Data Size: 71684 Bytes = 70 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 65163bb7 Hash algo: sha1 Hash value: 74f6062eb8829adafa71bae0ea1e2d4441f0db85 Image 9 (fdt@hk01.c3) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x4450cdf4 Data Size: 78213 Bytes = 76.4 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 043335ce Hash algo: sha1 Hash value: edfca69b6b4b63c31a708bb0a6e93430f41c47ea Image 10 (fdt@ac01.2) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x44520090 Data Size: 71430 Bytes = 69.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 6d05ae07 Hash algo: sha1 Hash value: f5aaa94365ddfc32d354066dd40ffe951aa53d24 Image 11 (fdt@hk01.c2) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x445318ac Data Size: 76581 Bytes = 74.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 599fcbf0 Hash algo: sha1 Hash value: f8e0f41e3211915b4f3e15a5a1617f3edc8013d2 Image 12 (fdt@hk01) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x445444e8 Data Size: 77609 Bytes = 75.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 39c2eba7 Hash algo: sha1 Hash value: c5cbecdcc3d373affdeb8a6323a2aba771b9f6a8 Image 13 (fdt@db.hk02) Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x44557528 Data Size: 70794 Bytes = 69.1 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 7f19eec2 Hash algo: sha1 Hash value: 95787cbb11c0f5ad824a409b899a08ef4e0c0678 Default Configuration: 'config@db.hk02' Configuration 0 (config@hk09) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk09 Configuration 1 (config@db.hk01) Description: OpenWrt Kernel: kernel@1 FDT: fdt@db.hk01 Configuration 2 (config@hk02) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk02 Configuration 3 (config@hk05) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk05 Configuration 4 (config@hk06) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk06 Configuration 5 (config@hk08) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk08 Configuration 6 (config@ac01.1) Description: OpenWrt Kernel: kernel@1 FDT: fdt@ac01.1 Configuration 7 (config@hk07) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk07 Configuration 8 (config@hk01.c3) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk01.c3 Configuration 9 (config@ac01.2) Description: OpenWrt Kernel: kernel@1 FDT: fdt@ac01.2 Configuration 10 (config@hk01.c2) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk01.c2 Configuration 11 (config@hk01) Description: OpenWrt Kernel: kernel@1 FDT: fdt@hk01 Configuration 12 (config@db.hk02) Description: OpenWrt Kernel: kernel@1 FDT: fdt@db.hk02 ## Checking hash(es) for FIT Image at 44000000 ... Hash(es) for Image 0 (kernel@1): crc32+ sha1+ Hash(es) for Image 1 (fdt@hk09): crc32+ sha1+ Hash(es) for Image 2 (fdt@db.hk01): crc32+ sha1+ Hash(es) for Image 3 (fdt@hk02): crc32+ sha1+ Hash(es) for Image 4 (fdt@hk05): crc32+ sha1+ Hash(es) for Image 5 (fdt@hk06): crc32+ sha1+ Hash(es) for Image 6 (fdt@hk08): crc32+ sha1+ Hash(es) for Image 7 (fdt@ac01.1): crc32+ sha1+ Hash(es) for Image 8 (fdt@hk07): crc32+ sha1+ Hash(es) for Image 9 (fdt@hk01.c3): crc32+ sha1+ Hash(es) for Image 10 (fdt@ac01.2): crc32+ sha1+ Hash(es) for Image 11 (fdt@hk01.c2): crc32+ sha1+ Hash(es) for Image 12 (fdt@hk01): crc32+ sha1+ Hash(es) for Image 13 (fdt@db.hk02): crc32+ sha1+ ## Checking Image at 4457ffc0 ... Legacy image found Image Name: Linux-4.4.60 Image Type: AArch64 Linux Kernel Image (lzma compressed) Data Size: 54003712 Bytes = 51.5 MiB Load Address: 40908000 Entry Point: 40908000 Verifying Checksum ... OK NAND read: device 0 offset 0x1980000, size 0x6400000 104857600 bytes read: OK ## Loading kernel from FIT Image at 44000000 ... Using 'config@hk01' configuration Trying 'kernel@1' kernel subimage Description: ARM64 OpenWrt Linux-4.4.60 Type: Kernel Image Compression: gzip compressed Data Start: 0x440000e8 Data Size: 4730017 Bytes = 4.5 MiB Architecture: AArch64 OS: Linux Load Address: 0x41080000 Entry Point: 0x41080000 Hash algo: crc32 Hash value: a3fc9dba Hash algo: sha1 Hash value: 144b9a1a68d972a1664e804e098054cf5b21b163 Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt from FIT Image at 44000000 ... Using 'config@hk01' configuration Trying 'fdt@hk01' fdt subimage Description: ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x445444e8 Data Size: 77609 Bytes = 75.8 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 39c2eba7 Hash algo: sha1 Hash value: c5cbecdcc3d373affdeb8a6323a2aba771b9f6a8 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x445444e8 Uncompressing Kernel Image ... OK Loading Device Tree to 4a5ea000, end 4a5fff28 ... OK Using machid 0x8010000 from environment Starting kernel ... Jumping to AARCH64 kernel via monitor [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 4.4.60 (root@CNXMDNIOUB01) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 RAX120-V1.0.1.116+r49254) ) #1 SMP PREEMPT Thu Jun 18 19:52:00 CST 2020


Kernel log as seen from serial console.

Jumping to AARCH64 kernel via monitor [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Initializing cgroup subsys cpuset [ 0.000000] Initializing cgroup subsys cpu [ 0.000000] Initializing cgroup subsys cpuacct [ 0.000000] Linux version 4.4.60 (root@CNXMDNIOUB01) (gcc version 4.8.3 (OpenWrt/Linaro GCC 4.8-2014.04 RAX120-V1.0.1.116+r49254) ) #1 SMP PREEMPT Thu Jun 18 19:52:00 CST 2020 [ 0.000000] Boot CPU: AArch64 Processor [410fd034] [ 0.000000] Ignoring memory range 0x40000000 - 0x41000000 [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.0 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] PERCPU: Embedded 15 pages/cpu @ffffffc03ef4f000 s21248 r8192 d32000 u61440 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] CPU features: enabling workaround for ARM erratum 845719 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 229288 [ 0.000000] Kernel command line: console=ttyMSM0,115200n8 swiotlb=1 [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) [ 0.000000] software IO TLB [mem 0x7fe07000-0x7fe47000] (0MB) mapped at [ffffffc03ee07000-ffffffc03ee46fff] [ 0.000000] Memory: 902096K/931712K available (6582K kernel code, 696K rwdata, 2700K rodata, 248K init, 330K bss, 29616K reserved, 0K cma-reserved) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vmalloc : 0xffffff8000000000 - 0xffffffbdbfff0000 ( 246 GB) [ 0.000000] vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000 ( 8 GB maximum) [ 0.000000] 0xffffffbdc0040000 - 0xffffffbdc1000000 ( 15 MB actual) [ 0.000000] fixed : 0xffffffbffa7fd000 - 0xffffffbffac00000 ( 4108 KB) [ 0.000000] PCI I/O : 0xffffffbffae00000 - 0xffffffbffbe00000 ( 16 MB) [ 0.000000] modules : 0xffffffbffc000000 - 0xffffffc000000000 ( 64 MB) [ 0.000000] memory : 0xffffffc000000000 - 0xffffffc03f000000 ( 1008 MB) [ 0.000000] .init : 0xffffffc000993000 - 0xffffffc0009d1000 ( 248 KB) [ 0.000000] .text : 0xffffffc000080000 - 0xffffffc000992ab4 ( 9291 KB) [ 0.000000] .data : 0xffffffc0009e0000 - 0xffffffc000a8e200 ( 697 KB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Build-time adjustment of leaf fanout to 64. [ 0.000000] NR_IRQS:64 nr_irqs:64 0 [ 0.000000] Architected cp15 timer(s) running at 19.20MHz (virt). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns [ 0.000003] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns [ 0.000237] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000) [ 0.000244] pid_max: default: 32768 minimum: 301 [ 0.000301] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes) [ 0.000306] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes) [ 0.000645] Initializing cgroup subsys io [ 0.000657] Initializing cgroup subsys devices [ 0.000664] Initializing cgroup subsys freezer [ 0.000671] Initializing cgroup subsys net_cls [ 0.000676] Initializing cgroup subsys pids [ 0.000845] EFI services will not be available. [ 0.000861] ASID allocator initialised with 65536 entries [ 0.051368] MSM Memory Dump base table set up [ 0.051384] MSM Memory Dump apps data table set up [ 0.090106] Detected VIPT I-cache on CPU1 [ 0.090136] CPU1: Booted secondary processor [410fd034] [ 0.120083] Detected VIPT I-cache on CPU2 [ 0.120097] CPU2: Booted secondary processor [410fd034] [ 0.150096] Detected VIPT I-cache on CPU3 [ 0.150109] CPU3: Booted secondary processor [410fd034] [ 0.150136] Brought up 4 CPUs [ 0.150150] SMP: Total of 4 processors activated. [ 0.150156] CPU: All CPU(s) started at EL1 [ 0.150171] alternatives: patching kernel code [ 0.159007] DMI not present or invalid. [ 0.159154] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.159169] futex hash table entries: 1024 (order: 5, 131072 bytes) [ 0.159394] pinctrl core: initialized pinctrl subsystem [ 0.159926] NET: Registered protocol family 16 [ 0.160033] ramoops: using module parameters [ 0.160115] pstore: Registered ramoops as persistent store backend [ 0.160121] ramoops: attached 0x20000@0x50b00000, ecc: 0/0 [ 0.190026] cpuidle: using governor ladder [ 0.220034] cpuidle: using governor menu [ 0.220102] vdso: 2 pages (1 code @ ffffffc0009e5000, 1 data @ ffffffc0009e4000) [ 0.220119] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [ 0.220195] DMA: preallocated 256 KiB pool for atomic allocations [ 0.220251] CPU: IPQ8074, SoC Version: 1.2 [ 0.220271] <CORE> glink_init: IPC Logging Disabled [ 0.220455] IPC logging disabled [ 0.220458] IPC logging disabled [ 0.220460] IPC logging disabled [ 0.220463] IPC logging disabled [ 0.220465] IPC logging disabled [ 0.227967] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ! [ 0.230271] <CORE> glink_core_register_transport: IPC Logging disabled [ 0.230307] glink_core_link_up glink is up [ 0.230933] sps:sps is ready. [ 0.261270] dmi: Firmware registration failed. [ 0.262048] Advanced Linux Sound Architecture Driver Initialized. [ 0.262419] clocksource: Switched to clocksource arch_sys_counter [ 0.262594] FS-Cache: Loaded [ 0.264171] NET: Registered protocol family 2 [ 0.264238] create ipmac proc [ 0.264576] TCP established hash table entries: 8192 (order: 4, 65536 bytes) [ 0.264630] TCP bind hash table entries: 8192 (order: 5, 131072 bytes) [ 0.264724] TCP: Hash tables configured (established 8192 bind 8192) [ 0.264763] UDP hash table entries: 512 (order: 2, 16384 bytes) [ 0.264781] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [ 0.264889] NET: Registered protocol family 1 [ 0.265027] RPC: Registered named UNIX socket transport module. [ 0.265031] RPC: Registered udp transport module. [ 0.265034] RPC: Registered tcp transport module. [ 0.265037] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.265549] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available [ 0.270605] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.271445] Installing knfsd (copyright (C) 1996 okir@monad.swb.de). [ 0.271820] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.272102] romfs: ROMFS MTD (C) 2007 Red Hat, Inc. [ 0.272165] fuse init (API version 7.23) [ 0.272347] SGI XFS with ACLs, security attributes, realtime, no debug enabled [ 0.274690] Key type asymmetric registered [ 0.274700] Asymmetric key parser 'x509' registered [ 0.274720] io scheduler noop registered [ 0.274727] io scheduler deadline registered (default) [ 0.275769] Turn Off All LED [ 0.276190] 20000000.pci supply vdda not found, using dummy regulator [ 0.276226] 20000000.pci supply vdda_phy not found, using dummy regulator [ 0.276250] 20000000.pci supply vdda_refclk not found, using dummy regulator [ 0.276430] PCI host bridge /soc/pci@20000000 ranges: [ 0.276447] IO 0x20200000..0x202fffff -> 0x20200000 [ 0.276456] MEM 0x20300000..0x20ffffff -> 0x20300000 [ 1.302444] qcom-pcie 20000000.pci: phy link never came up [ 1.303971] qcom-pcie 20000000.pci: hostinit failed [ 1.303976] qcom-pcie 20000000.pci: cannot initialize host [ 1.304077] qcom-pcie: probe of 20000000.pci failed with error -110 [ 1.304212] 10000000.pci supply vdda not found, using dummy regulator [ 1.304238] 10000000.pci supply vdda_phy not found, using dummy regulator [ 1.304257] 10000000.pci supply vdda_refclk not found, using dummy regulator [ 1.304429] PCI host bridge /soc/pci@10000000 ranges: [ 1.304443] IO 0x10200000..0x102fffff -> 0x10200000 [ 1.304450] MEM 0x10300000..0x10ffffff -> 0x10300000 [ 2.339420] qcom-pcie 10000000.pci: phy link never came up [ 2.340943] qcom-pcie 10000000.pci: hostinit failed [ 2.340948] qcom-pcie 10000000.pci: cannot initialize host [ 2.341009] qcom-pcie: probe of 10000000.pci failed with error -110 [ 2.341267] MDSS QPIC HW Base phy_Address=0x7980000 virt=0x4c0000 [ 2.341489] mdss_qpic_panel_probe: Panel Name = qpic lcd panel [ 2.342329] mdss_fb_register: FrameBuffer[0] 800x480 registered successfully! [ 2.345036] NET: Registered protocol family 27 [ 2.345045] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [ 2.345053] qmi_log_init: IPC Logging disabled [ 2.345056] qmi_log_init: IPC Logging disabled [ 2.345105] msm_rpm_log_probe: OK [ 2.345635] TZ Log : Will warn on Access Violation, as paniconaccessviolation is not set [ 2.346033] msm_serial 78b3000.serial: msm_serial: detected port #0 [ 2.346057] msm_serial 78b3000.serial: uartclk = 3686400 [ 2.346085] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 77, base_baud = 230400) is a MSM [ 2.346102] msm_serial: console setup on port #0 [ 3.182703] console [ttyMSM0] enabled [ 3.187553] msm_serial 78b1000.serial: msm_serial: detected port #1 [ 3.190956] msm_serial 78b1000.serial: uartclk = 19200000 [ 3.197038] 78b1000.serial: ttyMSM1 at MMIO 0x78b1000 (irq = 78, base_baud = 1200000) is a MSM [ 3.202765] msm_serial: driver initialized [ 3.211247] msm_serial_hsl_init: driver initialized [ 3.219978] brd: module loaded [ 3.222288] loop: module loaded [ 3.223436] spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64 [ 4.222425] m25p80 spi32766.0: SPI transfer failed: -110 [ 4.222449] spi_master spi32766: failed to transfer one message from queue [ 4.226794] m25p80 spi32766.0: error -110 reading 9f [ 4.233490] m25p80: probe of spi32766.0 failed with error -110 [ 4.239333] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xac [ 4.244249] nand: Winbond W29N04GZ [ 4.250744] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 4.254033] 33 ofpart partitions found on MTD device qcom_nand.0 [ 4.261513] Creating 33 MTD partitions on "qcom_nand.0": [ 4.267686] 0x000000000000-0x000000100000 : "0:SBL1" [ 4.274080] 0x000000100000-0x000000200000 : "0:MIBIB" [ 4.278862] 0x000000200000-0x000000280000 : "0:BOOTCONFIG" [ 4.283504] 0x000000280000-0x000000300000 : "0:BOOTCONFIG1" [ 4.288881] 0x000000300000-0x000000600000 : "0:QSEE" [ 4.295918] 0x000000600000-0x000000900000 : "0:QSEE_1" [ 4.301127] 0x000000900000-0x000000980000 : "0:DEVCFG" [ 4.304519] 0x000000980000-0x000000a00000 : "0:DEVCFG_1" [ 4.309623] 0x000000a00000-0x000000a80000 : "0:APDP" [ 4.315110] 0x000000a80000-0x000000b00000 : "0:APDP_1" [ 4.320043] 0x000000b00000-0x000000b80000 : "0:RPM" [ 4.324992] 0x000000b80000-0x000000c00000 : "0:RPM_1" [ 4.329770] 0x000000c00000-0x000000c80000 : "0:CDT" [ 4.334982] 0x000000c80000-0x000000d00000 : "0:CDT_1" [ 4.339680] 0x000000d00000-0x000000d80000 : "0:APPSBLENV" [ 4.344883] 0x000000d80000-0x000000e80000 : "0:APPSBL" [ 4.350566] 0x000000e80000-0x000000f80000 : "0:APPSBL_1" [ 4.355612] 0x000000f80000-0x000001000000 : "0:ART" [ 4.360768] 0x000001000000-0x000001080000 : "0:ART.bak" [ 4.365355] 0x000001080000-0x000001180000 : "config" [ 4.370862] 0x000001180000-0x000001280000 : "boarddata1" [ 4.376101] 0x000001280000-0x000001380000 : "boarddata2" [ 4.381379] 0x000001380000-0x000001480000 : "pot" [ 4.386693] 0x000001480000-0x000001980000 : "dnidata" [ 4.393770] 0x000001980000-0x000007d80000 : "firmware" [ 4.457390] 0x000001980000-0x000001f00000 : "kernel" [ 4.461145] 0x000001f00000-0x000007d80000 : "rootfs" [ 4.519862] mtd: device 26 (rootfs) set to be root filesystem [ 4.520177] mtd: find squashfs magic at 0x1f00000 of qcom_nand.0 [ 4.524580] mtd: find squashfs magic at 0x0 of rootfs [ 4.530649] remap_blocks_in_rootfs_partition: remapped partition rootfs: 0x000001f00000-0x000007d80000 [ 4.535609] create_block_mapping: create logic to physic blocks mapping for rootfs [ 4.602991] 0x000007d80000-0x000008100000 : "language" [ 4.605503] 0x000008100000-0x000008200000 : "cert" [ 4.607958] 0x000008200000-0x000008280000 : "mtdoops" [ 4.612433] 0x000008280000-0x000008480000 : "router_analytics" [ 4.618465] 0x000008480000-0x00000e880000 : "ntgrdata" [ 4.684647] 0x00000e880000-0x000020000000 : "reserved" [ 4.734211] random: nonblocking pool is initialized [ 4.857922] spmi spmi-0: PMIC Arb Version-2 (0x20010000) [ 4.859741] libphy: Fixed MDIO Bus: probed [ 5.082445] qca-mdio 90000.mdio: Could not find phy-reset-gpio [ 5.082512] libphy: qca_mdio: probed [ 5.088277] qca-mdio 90000.mdio: qca-mdio driver was registered [ 5.091039] cnss: Unable to create IPC log context! [ 5.096660] cnss: Platform driver probed successfully. [ 5.101513] cnss: Platform driver probed successfully. [ 5.106697] i2c /dev entries driver [ 5.119773] sdhci: Secure Digital Host Controller Interface driver [ 5.119797] sdhci: Copyright(c) Pierre Ossman [ 5.124884] sdhci-pltfm: SDHCI platform and OF driver helper [ 5.129394] sdhci_msm 7824900.sdhci: No vreg data found for vdd [ 5.135017] sdhci_msm 7824900.sdhci: No vreg data found for vdd-io [ 5.141851] sdhci_msm 7824900.sdhci: No vmmc regulator found [ 5.146903] sdhci_msm 7824900.sdhci: No vqmmc regulator found [ 5.192460] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using ADMA 64-bit [ 5.192611] sdhci_msm 7864900.sdhci: Got SD LDO GPIO #21 [ 5.320507] sdhci_msm 7864900.sdhci: No vreg data found for vdd [ 5.320527] sdhci_msm 7864900.sdhci: No vreg data found for vdd-io [ 5.335959] pmd9655_ldo11: supplied by e-smps1-reg [ 5.336043] sdhci_msm 7864900.sdhci: No vmmc regulator found [ 5.382477] mmc1: SDHCI controller on 7864900.sdhci [7864900.sdhci] using ADMA 64-bit [ 5.383712] [ 5.383712] Version Rollback Feature Disabled [ 5.389834] SPMI VADC - Min ch: 0 Max ch: 15 [ 5.396454] of_graph_get_next_endpoint(): no port node found in /soc/csr@6001000 [ 5.399473] coresight-csr 6001000.csr: CSR initialized [ 5.406909] of_graph_get_next_endpoint(): no port node found in /soc/cti@6010000 [ 5.411845] of_graph_get_next_endpoint(): no port node found in /soc/cti@6011000 [ 5.419398] of_graph_get_next_endpoint(): no port node found in /soc/cti@6012000 [ 5.426770] of_graph_get_next_endpoint(): no port node found in /soc/cti@6013000 [ 5.434149] of_graph_get_next_endpoint(): no port node found in /soc/cti@6014000 [ 5.441520] of_graph_get_next_endpoint(): no port node found in /soc/cti@6015000 [ 5.448906] of_graph_get_next_endpoint(): no port node found in /soc/cti@6016000 [ 5.456285] of_graph_get_next_endpoint(): no port node found in /soc/cti@6017000 [ 5.463662] of_graph_get_next_endpoint(): no port node found in /soc/cti@6018000 [ 5.471034] of_graph_get_next_endpoint(): no port node found in /soc/cti@6019000 [ 5.478425] of_graph_get_next_endpoint(): no port node found in /soc/cti@601a000 [ 5.485797] of_graph_get_next_endpoint(): no port node found in /soc/cti@601b000 [ 5.493180] of_graph_get_next_endpoint(): no port node found in /soc/cti@601c000 [ 5.500547] of_graph_get_next_endpoint(): no port node found in /soc/cti@601d000 [ 5.507936] of_graph_get_next_endpoint(): no port node found in /soc/cti@601e000 [ 5.515312] of_graph_get_next_endpoint(): no port node found in /soc/cti@601f000 [ 5.522695] of_graph_get_next_endpoint(): no port node found in /soc/cti@6198000 [ 5.530189] of_graph_get_next_endpoint(): no port node found in /soc/cti@6199000 [ 5.537523] of_graph_get_next_endpoint(): no port node found in /soc/cti@619a000 [ 5.544917] of_graph_get_next_endpoint(): no port node found in /soc/cti@619b000 [ 5.552314] of_graph_get_next_endpoint(): no port node found in /soc/cti@610c000 [ 5.559684] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000006044000 [ 5.566888] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000006044000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000006044000 [ 5.585058] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000006044000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000006044000 [ 5.599871] sps:BAM 0x0000000006044000 is registered.[ 5.607378] coresight-tmc 6028000.tmc: TMC initialized [ 5.612160] coresight-tmc 6027000.tmc: TMC initialized [ 5.617327] coresight-funnel 6021000.funnel: FUNNEL initialized [ 5.622384] coresight-funnel 6100000.funnel: FUNNEL initialized [ 5.628208] coresight-funnel 6120000.funnel: FUNNEL initialized [ 5.634114] coresight-funnel 61a1000.funnel: FUNNEL initialized [ 5.640364] coresight-etm4x 619c000.etm: ETM 4.0 initialized [ 5.646105] coresight-etm4x 619d000.etm: ETM 4.0 initialized [ 5.652011] coresight-etm4x 619e000.etm: ETM 4.0 initialized [ 5.657687] coresight-etm4x 619f000.etm: ETM 4.0 initialized [ 5.663121] coresight-replicator-qcom 6026000.replicator: REPLICATOR 1.0 initialized [ 5.668815] coresight-stm 6002000.stm: STM initialized [ 5.677062] of_graph_get_next_endpoint(): no port node found in /soc/hwevent@6101000 [ 5.681339] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized [ 5.689942] ipq_audio soc:sound@0: ASoC: CPU DAI qca-i2s-dai not registered [ 5.696580] ipq_audio soc:sound@0: snd_soc_register_card() failed:-517 [ 5.704541] qca_codec 0-0012: i2c regmap done [ 5.710537] Netfilter messages via NETLINK v0.30. [ 5.714328] nf_conntrack version 0.5.0 (7047 buckets, 28188 max) [ 5.719465] ip_tables: (C) 2000-2006 Netfilter Core Team [ 5.725493] NET: Registered protocol family 10 [ 5.731139] NET: Registered protocol family 17 [ 5.734629] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. [ 5.739051] Bridge firewalling registered [ 5.751778] 8021q: 802.1Q VLAN Support v1.8 [ 5.755702] Key type dns_resolver registered [ 5.760668] <CORE> glink_core_register_transport: IPC Logging disabled [ 5.764257] msm_glink_smem_native_xprt rx fifo not found [ 5.770661] pmd9655_s3: supplied by e-smps1-reg [ 5.776111] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0 [ 5.780245] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 3 [ 5.786862] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0 [ 5.794513] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable [ 5.801985] cpr3_mem_acc_init: apc: not using memory accelerator regulator [ 5.811155] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 752000 uV [ 5.818103] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 864000 uV [ 5.828086] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 936000 uV [ 5.837896] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop=1024000 uV [ 5.847730] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 668, quot_offset[ 7]= 0 [ 5.857516] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 863, quot_offset[ 7]= 195 [ 5.868366] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]= 975, quot_offset[ 7]= 110 [ 5.879306] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1120, quot_offset[ 7]= 145 [ 5.890314] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop [ 5.901545] pmd9655_s4: supplied by e-smps1-reg [ 5.908017] cpr3_mem_acc_init: npu: not using memory accelerator regulator [ 5.912277] npu_corner: fused NOM: open-loop= 840000 uV [ 5.919226] npu_corner: fused TURBO: open-loop= 912000 uV [ 5.926887] ipq_audio soc:sound@0: qca-i2s-codec-dai <-> qca-i2s-dai mapping ok [ 5.931159] ipq_audio soc:sound@0: qca-tdm-codec-dai <-> qca-tdm-dai mapping ok [ 5.953224] hctosys: unable to open rtc device (rtc0) [ 5.958779] ALSA device list: [ 5.958798] #0: ipq8074_snd_card [ 5.962372] VFS: Mounted root (squashfs filesystem) readonly on device 31:26. [ 5.964170] Freeing unused kernel memory: 248K (ffffffc000993000 - ffffffc0009d1000) [ 5.971235] Freeing alternatives memory: 44K (ffffffc0009d1000 - ffffffc0009dc000) [ 6.223078] init: Console is alive [ 6.223171] init: - watchdog - [ 7.023605] usbcore: registered new interface driver usbfs [ 7.023647] usbcore: registered new interface driver hub [ 7.028018] usbcore: registered new device driver usb [ 7.034330] Button Hotplug driver version 0.4.1 [ 7.040746] SCSI subsystem initialized [ 7.046926] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 7.047206] ehci-platform: EHCI generic platform driver [ 7.059055] msm-usb-ssphy-qmp 78000.ssphy: Initializing QMP phy [ 7.065854] msm-usb-ssphy-qmp 78000.ssphy: QMP PHY initialization timeout [ 7.065874] msm-usb-ssphy-qmp 78000.ssphy: USB3_PHY_PCS_STATUS:68686868 [ 7.272746] msm-usb-ssphy-qmp 58000.ssphy: Initializing QMP phy [ 7.280154] msm-usb-ssphy-qmp 58000.ssphy: QMP PHY initialization timeout [ 7.280174] msm-usb-ssphy-qmp 58000.ssphy: USB3_PHY_PCS_STATUS:68686868 [ 7.488167] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 7.488200] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [ 7.492722] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x00010010 [ 7.500116] xhci-hcd xhci-hcd.0.auto: irq 245, io mem 0x08a00000 [ 7.509065] hub 1-0:1.0: USB hub found [ 7.515034] hub 1-0:1.0: 1 port detected [ 7.518720] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [ 7.522681] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [ 7.527979] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 7.535713] hub 2-0:1.0: USB hub found [ 7.543848] hub 2-0:1.0: 1 port detected [ 7.547541] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 7.551479] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3 [ 7.556897] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x00010010 [ 7.564354] xhci-hcd xhci-hcd.1.auto: irq 246, io mem 0x08c00000 [ 7.573210] hub 3-0:1.0: USB hub found [ 7.579259] hub 3-0:1.0: 1 port detected [ 7.582922] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 7.586894] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4 [ 7.592215] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 7.599935] hub 4-0:1.0: USB hub found [ 7.608082] hub 4-0:1.0: 1 port detected [ 8.225775] init: - preinit - 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 Before mount_root Info: init ubi volumes on ntgrdata raw partition [ 10.372501] ubi0: attaching mtd31 [ 10.760763] ubi0: scanning is finished [ 10.767032] ubi0: attached mtd31 (name "ntgrdata", size 100 MiB) [ 10.767055] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 10.772095] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 10.778787] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 10.785643] ubi0: good PEBs: 800, bad PEBs: 0, corrupted PEBs: 0 [ 10.792406] ubi0: user volume: 7, internal volumes: 1, max. volumes count: 128 [ 10.798664] ubi0: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 856308182 [ 10.805699] ubi0: available PEBs: 89, total reserved PEBs: 711, PEBs reserved for bad PEB handling: 80 [ 10.814648] ubi0: background thread "ubi_bgt0d" started, PID 209 UBI device number 0, total 800 LEBs (101580800 bytes, 96.9 MiB),[ 10.832022] ubi1: attaching mtd23 available 89 LEBs (11300864 bytes, 10.8 MiB), LEB size 126976 bytes (124.0 KiB) Info: attach ubi device on ntgrdata success! Info: init ubi volumes on dnidata raw partition [ 10.855062] ubi1: scanning is finished [ 10.859589] ubi1 warning: print_rsvd_warning: cannot reserve enough PEBs for bad PEB handling, reserved 24, need 80 [ 10.860060] ubi1: attached mtd23 (name "dnidata", size 5 MiB) [ 10.868831] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 10.874729] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 10.881488] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 10.888349] ubi1: good PEBs: 40, bad PEBs: 0, corrupted PEBs: 0 [ 10.895120] ubi1: user volume: 4, internal volumes: 1, max. volumes count: 128 [ 10.901020] ubi1: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1588836612 [ 10.908321] ubi1: available PEBs: 0, total reserved PEBs: 40, PEBs reserved for bad PEB handling: 24 [ 10.917615] ubi1: background thread "ubi_bgt1d" started, PID 223 UBI device number 1, total 40 LEBs (5079040 bytes, 4.8 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB) Info: attach ubi device on dnidata success! libubi: error!: cannot get information about "/dev/ubi0" error 2 (No such file or directory) ubinfo: error!: error while probing "/dev/ubi0" error 2 (No such file or directory) libubi: error!: cannot get information about "/dev/ubi0" error 2 (No such file or directory) ubimkvol: error!: error while probing "/dev/ubi0" error 2 (No such file or directory) libubi: error!: cannot get information about "/dev/ubi0" error 2 (No such file or directory) ubinfo: error!: error while probing "/dev/ubi0" error 2 (No such file or directory) libubi: error!: cannot get information about "/dev/ubi0" error 2 (No such file or directory) ubimkvol: error!: error while probing "/dev/ubi0" error 2 (No such file or directory) After mount_root 131072+0 records in 131072+0 records out 131072 bytes (128.0KB) copied, 0.229944 se[ 11.185668] procd: - early - [ 11.187176] procd: - watchdog - conds, 556.7KB/s [ 11.786328] procd: - ubus - [ 12.789176] procd: - init - Please press Enter to activate this console. sort: standard output: Broken pipe Thu Jun 18 11:54:20 GMT 2020 ln: /sbin/rmmod: File exists Loading data from /dev/mtd19 ... Done! The data center is Running ... [ 13.507979] jnl: driver (UFSD_HEAD UFSD_HEAD_r331462_b361) loaded at ffffffbffc136000 [ 13.560250] ufsd: module license 'Commercial product' taints kernel. [ 13.560277] Disabling lock debugging due to kernel taint [ 13.567366] ufsd: driver (UFSD_HEAD UFSD_HEAD_r331462_b361, acl, ioctl, sd2(5), tr, car) loaded at ffffffbffc144000 [ 13.567366] NTFSJ support included [ 13.567366] Build_for__Netgear_AX6000_k4.4.60_2017-11-21_UFSD_HEAD_r331462_b361 [ 13.570987] ufsd: PAGE_SIZE=4K, THREAD_SIZE=16k [ 13.593344] ufsd: Kernel .config hash: original 0x86aed0ce, current 0x6dd3d33e, not matched. [ 13.596312] ufsd: Kernel .config hash: original 0x86aed0ce, current 0x6dd3d33e, not matched [ 15.750785] NET: Registered protocol family 38 [ 15.753116] pct2075 init! [ 15.754106] get i2c adapter 0 ok [ 15.756859] get i2c client pct2075 @ 0x48 ok [ 15.760133] pct2075 probe [ 15.764410] pct2075 init success! [ 15.770273] cfg80211: World regulatory domain updated: [ 15.770297] cfg80211: DFS Master region: unset [ 15.775231] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [ 15.777359] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com [ 15.780022] ntfs: driver 2.1.32 [Flags: R/O MODULE]. [ 15.783225] Initializing XFRM netlink socket [ 15.783693] NET: Registered protocol family 15 [ 15.798492] ssdk_switch_device_num_init[842]:INFO:ess-switch dts node number: 1 [ 15.798545] ssdk_dt_get_switch_node[737]:INFO:ess-switch DT exist! [ 15.798553] ssdk_dt_parse_access_mode[638]:INFO:switch_access_mode: local bus [ 15.798555] ssdk_dt_parse_access_mode[651]:INFO:switchreg_base_addr: 0x3a000000 [ 15.798557] ssdk_dt_parse_access_mode[652]:INFO:switchreg_size: 0x1000000 [ 15.798559] ssdk_dt_parse_mac_mode[213]:INFO:mac mode = 0x0 [ 15.798562] ssdk_dt_parse_mac_mode[222]:INFO:mac mode1 = 0xff [ 15.798564] ssdk_dt_parse_mac_mode[231]:INFO:mac mode2 = 0xd [ 15.798566] ssdk_dt_parse_phy_info[483]:INFO:qcom,port_phyinfo DT doesn't exist! [ 15.798572] ssdk_dt_parse_mdio[524]:INFO:mdio DT exist! [ 15.798587] ssdk_dt_parse_uniphy[250]:INFO:ess-uniphy DT exist! [ 15.798674] ssdk_dt_parse_intf_mac[584]:INFO:dp1 MAC bc:a5:11:a7:ae:f6 [ 15.798693] ssdk_dt_parse_intf_mac[584]:INFO:dp2 MAC bc:a5:11:a7:ae:f7 [ 15.798714] ssdk_dt_parse_intf_mac[584]:INFO:dp3 MAC bc:a5:11:a7:ae:f8 [ 15.798769] ssdk_dt_parse_intf_mac[584]:INFO:dp6 MAC 32:31:36:37:55:31 [ 15.798782] ssdk_plat_init start [ 15.874735] ssdk_ppe_clock_init[463]:INFO:ppe and uniphy clock init successfully! [ 15.874935] ssdk_probe[1861]:INFO:ess_rst doesn't exist! [ 15.918181] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [ 15.923570] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ 15.931288] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [ 15.940667] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) [ 15.948655] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) [ 15.958379] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [ 15.967836] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [ 15.975909] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [ 15.984363] HPPE initializing... [ 15.992162] malibu_phy_api_ops_init[2827]:INFO:qca probe malibu phy driver succeeded! [ 16.002657] aquantia_phy_api_ops_init[2169]:INFO:qca probe aquantia phy driver succeeded! [ 16.007618] regi_init[3277]:INFO:Initializing HPPE!! [ 16.232420] ssdk_ppe_reset_init[728]:INFO:ppe reset successfully! [ 16.238192] qca_hppe_tdm_hw_init[453]:INFO:tdm setup num=96 [ 17.784592] ssdk_switch_register[1606]:INFO:Chip version 0x1500 [ 17.787577] qca_link_polling_select[1258]:INFO:link-polling-required node does not exist [ 17.793819] ssdk_switch_register[1631]:INFO:polling is selected [ 17.801540] regi_init[3281]:INFO:Initializing HPPE Done!! [ 17.806448] regi_init[3321]:INFO:qca-ssdk module init succeeded! [ 17.817721] tun: Universal TUN/TAP device driver, 1.6 [ 17.817742] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> [ 17.824176] EDMA ver 1 hw init [ 17.828031] EDMA HW Reset completed succesfully [ 17.830884] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7) [ 17.835408] RxDesc:1 (15-15) RxFill:1 (7-7) [ 17.843732] GMAC4(ffffffc03a580880) Invalid MAC@ - using 9e:fc:8a:ae:d0:cf [ 17.845591] GMAC5(ffffffc03a584880) Invalid MAC@ - using 36:57:32:41:f6:c5 [ 17.853434] ********************************************************** [ 17.858462] * NSS Data Plane driver [ 17.865047] ********************************************************** [ 17.879953] Loading DNI-ENET driver [ 17.886580] l2tp_core: L2TP core driver, V2.0 [ 17.887198] l2tp_netlink: L2TP netlink interface [ 17.914913] qca-nss 39000000.nss: Direct firmware load for qca-nss0.bin failed with error -2 [ 17.914943] qca-nss 39000000.nss: Falling back to user helper /lib/firmware/qca-nss0.bin 33 [ 18.041991] nss_driver - fw of size 804672 bytes copied to load addr: 40000000, nss_id : 0 [ 18.043906] Supported Frequencies - [ 18.049134] 748.8 MHz 1.4976 GHz [ 18.055117] 1.6896 GHz [ 18.056160] [ 18.076845] qca-nss 39400000.nss: Direct firmware load for qca-nss1.bin failed with error -2 [ 18.076875] qca-nss 39400000.nss: Falling back to user helper [ 18.088818] node size 2 # items 4 [ 18.089980] memory: 40000000 1073741824 (avl 954359808) items 4 [ 18.093303] ffffffbffc7e6e10: nss core 0 booted successfully /lib/firmware/qca-nss1.bin 33 [ 18.171901] nss_driver - fw of size 343360 bytes copied to load addr: 40800000, nss_id : 1 [ 18.172891] Supported Frequencies - [ 18.179045] 748.8 MHz 1.4976 GHz [ 18.185027] 1.6896 GHz [ 18.186071] [ 18.192349] sit: IPv6 over IPv4 tunneling driver [ 18.193881] node size 2 # items 4 [ 18.193888] nat46: module (version 8ff2ae59ec9840a7b8b45f976c51cae80abe0226) loaded. [ 18.195542] dni-qos module init. [ 18.195910] gre: GRE over IPv4 demultiplexor driver [ 18.196411] ip_gre: GRE over IPv4 tunneling driver [ 18.197615] ip6_gre: GRE over IPv6 tunneling driver [ 18.199484] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [ 18.202233] QCA multicast snooping installed successfully [ 18.203073] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 18.211415] XHTTP netlink: create netlink OK. [ 18.212616] ip_set: protocol 6 [ 18.227483] PPP generic driver version 2.4.2 [ 18.229072] nss_lag_init[354]:LAG Manager Installed [ 18.230505] NET: Registered protocol family 24 [ 18.231126] PPTP driver version 0.8.5 [ 18.233152] <NSS-CRYPTO>:module loaded Build_ID - 06/18/20, 19:39:55 SoC=ipq807x_64 [ 18.234020] crypto bench loaded - Build_ID - 06/18/20, 19:39:57 [ 18.237971] diag: IPC Logging disabled [ 18.242810] usbcore: registered new interface driver usb-storage [ 18.257510] u32 classifier [ 18.257511] input device check on [ 18.257512] Actions configured [ 18.258357] Mirror/redirect action on [ 18.269839] arp_tables: (C) 2002 David S. Miller [ 18.274702] Ebtables v2.0 registered [ 18.276417] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [ 18.280647] nf_conntrack_rtsp v0.6.21 loading [ 18.284733] nf_nat_rtsp v0.6.21 loading [ 18.286359] PPP MPPE Compression module registered [ 18.291945] xt_time: kernel timezone is -0000 [ 18.328751] memory: 40000000 1073741824 (avl 954662912) items 4 [ 18.333196] ffffffbffc7eb710: nss core 1 booted successfully [ 19.947279] Not a bridge device, or device not found: br0 [ 19.960225] Not a bridge device, or device not found: br0 [ 19.962340] Not a bridge device, or device not found: br0 [ 19.977964] Not a bridge device, or device not found: br0 [ 19.978070] Not a bridge device, or device not found: br0 sed: /etc/passwd: No such file or directory sed: /etc/shadow: No such file or directory /etc/rc.common: ./11_migrate-sysctl: line 5: cmp: not found find: /sys/bus/spi/devices/*/mtd: No such file or directory cfg026cb7 cfg043777 cfg05f087 cfg06f087 cfg02aa45 Generating Rules... Done! wpspin:10503621 ECC failed: 0 ECC corrected: 0 Number of bad blocks: 0 Number of bbt blocks: 0 Block size 131072, page size 2048, OOB size 64 Dumping data starting at 0x00000000 and ending at 0x00380000... sn:67U19C5EF08BF SN: 67U19C5EF08BF lan mac: bc:a5:11:a7:ae:f6 wan mac: bc:a5:11:a7:ae:f7 wlan5g mac: bc:a5:11:a7:ae:f8 BLUETOOTH MAC is invalid, please set in in bootloader /sbin/fan_ctrl.sh: line 40: can't create /sys/bus/i2c/devices/0-0049/fan1_target: Permission denied CRC check good on image file (0x1174) Segment Addresses and Sizes as read from the PHY ROM image header: Primary Iram Address: 0x5400 Primary Iram Size: 0x333d8 Primary Dram Address: 0x38800 Primary Dram Size: 0x158d0 Loading IRAM: Byte: 800: Byte: 1000: Byte: 1800: Byte: 2000: Byte: 2800: Byte: 3000: Byte: 3800: Byte: 4000: Byte: 4800: Byte: 5000: Byte: 5800: Byte: 6000: Byte: 6800: Byte: 7000: Byte: 7800: Byte: 8000: Byte: 8800: Byte: 9000: Byte: 9800: Byte: A000: Byte: A800: Byte: B000: Byte: B800: Byte: C000: Byte: C800: Byte: D000: Byte: D800: Byte: E000: Byte: E800: Byte: F000: Byte: F800: Byte: 10000: Byte: 10800: Byte: 11000: Byte: 11800: Byte: 12000: Byte: 12800: Byte: 13000: Byte: 13800: Byte: 14000: Byte: 14800: Byte: 15000: Byte: 15800: Byte: 16000: Byte: 16800: Byte: 17000: Byte: 17800: Byte: 18000: Byte: 18800: Byte: 19000: Byte: 19800: Byte: 1A000: Byte: 1A800: Byte: 1B000: Byte: 1B800: Byte: 1C000: Byte: 1C800: Byte: 1D000: Byte: 1D800: Byte: 1E000: Byte: 1E800: Byte: 1F000: Byte: 1F800: Byte: 20000: Byte: 20800: Byte: 21000: Byte: 21800: Byte: 22000: Byte: 22800: Byte: 23000: Byte: 23800: Byte: 24000: Byte: 24800: Byte: 25000: Byte: 25800: Byte: 26000: Byte: 26800: Byte: 27000: Byte: 27800: Byte: 28000: Byte: 28800: Byte: 29000: Byte: 29800: Byte: 2A000: Byte: 2A800: Byte: 2B000: Byte: 2B800: Byte: 2C000: Byte: 2C800: Byte: 2D000: Byte: 2D800: Byte: 2E000: Byte: 2E800: Byte: 2F000: Byte: 2F800: Byte: 30000: Byte: 30800: Byte: 31000: Byte: 31800: Byte: 32000: Byte: 32800: Byte: 33000: CRC-16 after loading IRAM: 0x6E0F Loading DRAM: Byte: 800: Byte: 1000: Byte: 1800: Byte: 2000: Byte: 2800: Byte: 3000: Byte: 3800: Byte: 4000: Byte: 4800: Byte: 5000: Byte: 5800: Byte: 6000: Byte: 6800: Byte: 7000: Byte: 7800: Byte: 8000: Byte: 8800: Byte: 9000: Byte: 9800: Byte: A000: Byte: A800: Byte: B000: Byte: B800: Byte: C000: Byte: C800: Byte: D000: Byte: D800: Byte: E000: Byte: E800: Byte: F000: Byte: F800: Byte: 10000: Byte: 10800: Byte: 11000: Byte: 11800: Byte: 12000: Byte: 12800: Byte: 13000: Byte: 13800: Byte: 14000: Byte: 14800: Byte: 15000: Byte: 15800: 0th port: Image load good - mailbox CRC-16 matches (0x6540) Image load good - mailbox CRC-16 matches SSDK Init OK! operation done. Volume ID: 3 (on ubi0) Type: dynamic Alignment: 1 Size: 25 LEBs (3174400 bytes, 3.0 MiB) State: OK Name: vol_ntgrcryptD Character device major/minor: 247:4 Volume ID: 4 (on ubi0) Type: dynamic Alignment: 1 Size: 5 LEBs (634880 bytes, 620.0 KiB) State: OK Name: vol_ntgrcryptK Character device major/minor: 247:5 [ 28.862384] EXT4-fs (mtdblock37): mounted filesystem without journal. Opts: (null) [ 31.431028] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null) Success! File descriptor 9 (pipe:[3435]) leaked on lvm invocation. Parent PID 1696: /bin/sh Reading all physical volumes. This may take a while... File descriptor 9 (pipe:[3435]) leaked on lvm invocation. Parent PID 1696: /bin/sh Successfully initialized wpa_supplicant ubirmvol: volume id not specified [ 32.712196] UBIFS (ubi0:5): background thread "ubifs_bgt0_5" started, PID 1732 [ 32.739452] UBIFS (ubi0:5): recovery needed [ 32.828045] UBIFS (ubi0:5): recovery completed [ 32.828125] UBIFS (ubi0:5): UBIFS: mounted UBI device 0, volume 5, name "vol_dal" [ 32.831414] UBIFS (ubi0:5): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 32.838979] UBIFS (ubi0:5): FS size: 4063232 bytes (3 MiB, 32 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs) [ 32.848891] UBIFS (ubi0:5): reserved for root: 191915 bytes (187 KiB) [ 32.858752] UBIFS (ubi0:5): media format: w4/r0 (latest is w4/r0), UUID AB8EDE61-8F4E-4659-B16B-03F6ED9245DE, small LPT model connect error for client socket: No such file or directory Cannot initialize. Loading ArmorDebug[0] from /tmp/dal/d2d Loading ArmorStatus[0] from /tmp/dal/d2d Loading BSTResults[0] from /tmp/dal/d2d Loading BSTCfg[0] from /tmp/dal/d2d Loading DALHNotifyBST[0] from /tmp/dal/d2d Loading DALHNotifyDTN[0] from /tmp/dal/d2d Loading DALHNotifyNDN[0] from /tmp/dal/d2d Loading DeviceIdList[0] from /tmp/dal/d2d Loading DeviceIdList[1] from /tmp/dal/d2d Loading DeviceIdList[2] from /tmp/dal/d2d Loading DeviceIdList[3] from /tmp/dal/d2d Loading DeviceIdList[4] from /tmp/dal/d2d Loading DeviceIdList[5] from /tmp/dal/d2d Loading DeviceIdList[6] from /tmp/dal/d2d Loading DeviceIdList[7] from /tmp/dal/d2d Loading DeviceIdList[8] from /tmp/dal/d2d Loading DeviceIdList[9] from /tmp/dal/d2d Loading DeviceIdList[10] from /tmp/dal/d2d Loading DeviceIdList[11] from /tmp/dal/d2d Loading DeviceIdList[12] from /tmp/dal/d2d Loading DeviceIdList[13] from /tmp/dal/d2d Loading DeviceIdList[14] from /tmp/dal/d2d Loading DeviceIdList[15] from /tmp/dal/d2d Loading DeviceIdList[16] from /tmp/dal/d2d Loading DeviceIdList[17] from /tmp/dal/d2d Loading DeviceIdList[18] from /tmp/dal/d2d Loading DeviceIdList[19] from /tmp/dal/d2d Loading DeviceIdList[20] from /tmp/dal/d2d Loading DeviceIdList[21] from /tmp/dal/d2d Loading DeviceIdList[22] from /tmp/dal/d2d Loading DeviceIdList[23] from /tmp/dal/d2d Loading DeviceIdList[24] from /tmp/dal/d2d Loading DeviceIdList[25] from /tmp/dal/d2d Loading DeviceIdList[26] from /tmp/dal/d2d Loading DeviceIdList[27] from /tmp/dal/d2d Loading DeviceIdList[28] from /tmp/dal/d2d Loading DeviceIdList[29] from /tmp/dal/d2d Loading DeviceIdList[30] from /tmp/dal/d2d Loading DeviceIdList[31] from /tmp/dal/d2d Loading DeviceIdList[32] from /tmp/dal/d2d Loading DeviceIdList[33] from /tmp/dal/d2d Loading DeviceIdList[34] from /tmp/dal/d2d Loading DeviceIdList[35] from /tmp/dal/d2d Loading DeviceIdList[36] from /tmp/dal/d2d Loading DeviceIdList[37] from /tmp/dal/d2d Loading DeviceIdList[38] from /tmp/dal/d2d Loading DeviceIdList[39] from /tmp/dal/d2d Loading DeviceIdList[40] from /tmp/dal/d2d Loading DeviceIdList[41] from /tmp/dal/d2d Loading DeviceIdList[42] from /tmp/dal/d2d Loading DeviceIdList[43] from /tmp/dal/d2d Loading DeviceIdList[44] from /tmp/dal/d2d Loading DeviceIdList[45] from /tmp/dal/d2d Loading DeviceIdList[46] from /tmp/dal/d2d Loading DeviceIdList[47] from /tmp/dal/d2d Loading DeviceIdList[48] from /tmp/dal/d2d Loading DeviceIdList[49] from /tmp/dal/d2d Loading DeviceIdList[50] from /tmp/dal/d2d Loading DeviceIdList[51] from /tmp/dal/d2d Loading DeviceIdList[52] from /tmp/dal/d2d Loading DeviceIdList[53] from /tmp/dal/d2d Loading DeviceIdList[54] from /tmp/dal/d2d Loading DeviceIdList[55] from /tmp/dal/d2d Loading DeviceIdList[56] from /tmp/dal/d2d Loading DeviceIdList[57] from /tmp/dal/d2d Loading DeviceIdList[58] from /tmp/dal/d2d Loading DeviceIdList[59] from /tmp/dal/d2d Loading DeviceIdList[60] from /tmp/dal/d2d Loading DeviceIdList[61] from /tmp/dal/d2d Loading DeviceIdList[62] from /tmp/dal/d2d Loading DeviceIdList[63] from /tmp/dal/d2d Loading DeviceIdList[64] from /tmp/dal/d2d Loading DeviceIdList[65] from /tmp/dal/d2d Loading DeviceIdList[66] from /tmp/dal/d2d Loading DeviceIdList[67] from /tmp/dal/d2d Loading DeviceIdList[68] from /tmp/dal/d2d Loading DeviceIdList[69] from /tmp/dal/d2d Loading DeviceIdList[70] from /tmp/dal/d2d Loading DeviceIdList[71] from /tmp/dal/d2d Loading DeviceIdList[72] from /tmp/dal/d2d Loading DeviceIdList[73] from /tmp/dal/d2d Loading DeviceIdList[74] from /tmp/dal/d2d Loading DeviceIdList[75] from /tmp/dal/d2d Loading DeviceIdList[76] from /tmp/dal/d2d Loading DeviceIdList[77] from /tmp/dal/d2d Loading DeviceIdList[78] from /tmp/dal/d2d Loading DeviceIdList[79] from /tmp/dal/d2d Loading DeviceIdList[80] from /tmp/dal/d2d Loading DeviceIdList[81] from /tmp/dal/d2d Loading DeviceIdList[82] from /tmp/dal/d2d Loading DeviceIdList[83] from /tmp/dal/d2d Loading DeviceIdList[84] from /tmp/dal/d2d Loading DeviceIdList[85] from /tmp/dal/d2d Loading DeviceIdList[86] from /tmp/dal/d2d Loading DeviceIdList[87] froLoading DeviceIdList[192] from /tmp/dal/d2d Loading DeviceIdLisLoading Dilsignature[98] from /tmp/dal/d2d Loading Dilsignatureboot ************* 1737 Enjoy !!!!! D2D running start_service ************* switch init SSDK Init OK! operation done. SSDK Init OK! operation done. [ 36.207231] ECM init [ 36.207274] ECM database jhash random seed: 0x3c4dc419 [ 36.209330] ECM init complete dev.nss.general.redirect = 1 opmode = normal [ 36.422110] bond0: Removing slave eth4 [ 36.422132] bond0: option slaves: invalid value (-eth4) [ 36.424897] bond0: Removing slave eth0 [ 36.429860] bond0: option slaves: invalid value (-eth0) [ 36.448967] device eth0 entered promiscuous mode [ 36.450208] device eth1 entered promiscuous mode [ 36.453852] device eth5 entered promiscuous mode [ 36.459907] device eth2 entered promiscuous mode [ 36.463008] device eth3 entered promiscuous mode [ 36.469609] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready [ 36.472263] device eth4 entered promiscuous mode killall: acld: no process killed [ 36.562311] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 36.564341] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready [ 36.568917] IPv6: ADDRCONF(NETDEV_UP): eth2: link is not ready [ 36.574794] IPv6: ADDRCONF(NETDEV_UP): eth3: link is not ready [ 36.580610] IPv6: ADDRCONF(NETDEV_UP): eth5: link is not ready [ 36.586546] br0: port 5(eth3) entered forwarding state [ 36.590304] br0: port 5(eth3) entered forwarding state [ 36.595438] br0: port 4(eth2) entered forwarding state [ 36.600538] br0: port 4(eth2) entered forwarding state [ 36.605667] br0: port 3(eth5) entered forwarding state [ 36.610782] br0: port 3(eth5) entered forwarding state [ 36.615909] br0: port 2(eth1) entered forwarding state [ 36.621025] br0: port 2(eth1) entered forwarding state [ 36.626154] br0: port 1(eth0) entered forwarding state [ 36.631268] br0: port 1(eth0) entered forwarding state [ 36.651919] br0: port 5(eth3) entered disabled state [ 36.651972] br0: port 4(eth2) entered disabled state [ 36.655964] br0: port 3(eth5) entered disabled state [ 36.660894] br0: port 2(eth1) entered disabled state [ 36.665849] br0: port 1(eth0) entered disabled state [ 38.356851] __mc_netlink_receive: Disable bridge snooping! [ 38.372954] __mc_netlink_receive: Enable bridge snooping! [ 38.387568] IPv6: ADDRCONF(NETDEV_UP): brwan: link is not ready [ 38.676206] IPv6: ADDRCONF(NETDEV_UP): br0: link is not ready Deleting static route ... Done! Adding static route ... Done! [ 38.693278] clear list check minidlna ... /sbin/cmddlna: line 508: kwilt: not found grep: /tmp/etc/minidlna.conf: No such file or directory /sbin/cmddlna: line 508: kwilt: not found udhcp server (v0.9.8) started /etc/rc.common: line 153: /etc/init.d/madwifi: not found SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. [wlan]===time:Thu Jun 18 11:54:45 UTC 2020 command:wlan countrycode============== [wlan]===time:Thu Jun 18 11:54:46 UTC 2020 command:wlan updateconf boot============== [wlan]=========time:Thu Jun 18 11:54:46 UTC 2020 wlan updateconf start====== [wlan]=========time:Thu Jun 18 11:54:47 UTC 2020 wlan updateconf end====== cat: can't open '/tmp/orbi_type': No such file or directory sh: Satellite: unknown operand [wlan]===time:Thu Jun 18 11:54:47 UTC 2020 command:wlan down============== [wlan]=========time:Thu Jun 18 11:54:47 UTC 2020 wlan down start================== Save Data Success!, Parentid: 3751, parent process: (wlan),presentid: 4153,present: (config) lbd: stopping daemon Command failed: Not found [ 41.099437] __mc_netlink_receive: Disable bridge snooping! killall: iface-mgr: no process killed killall: acfg_tool: no process killed acfg_tool: Issuing blocking call to wait for events lbd: stopping daemon Command failed: Not found [ 41.202063] __mc_netlink_receive: Disable bridge snooping! killall: iface-mgr: no process killed acfg_tool: Issuing blocking call to wait for events qcawifi qcawificfg80211 disable radio wifi1 qcawifi qcawificfg80211 disable radio wifi0 /sbin/wlan: eval: line 1: can't create /sys/class/net/wifi1/led: nonexistent directory /sbin/wlan: eval: line 1: can't create /sys/class/net/wifi0/led: nonexistent directory qcawificfg80211: Interface type not supported force_off_led function sh: you need to specify whom to kill sh: 1: unknown operand sh: you need to specify whom to kill sh: 1: unknown operand [wlan]=========time:Thu Jun 18 11:54:48 UTC 2020 wlan down end================== [wlan]===time:Thu Jun 18 11:54:48 UTC 2020 command:wlan up============== [wlan]=========time:Thu Jun 18 11:54:48 UTC 2020 wlan up start================== Save Data Success!, Parentid: 4307, parent process: (wlan),presentid: 4691,present: (config) acfg_tool: Issuing blocking call to wait for events qcawifi qcawificfg80211: enable radio wifi1 acfg_tool: Issuing blocking call to wait for events [ 42.182540] wlan (4715): drop_caches: 3 rm: can't remove 'q6_fw*': No such file or directory rm: can't remove 'fw_version.txt': No such file or directory [ 44.259109] configuring additional NSS pbufs [ 44.273404] additional pbufs of size 6000640 got added to NSS [ 44.333522] __mm_init_module [ 44.384669] qdf_dbg_mask value is invalid [ 44.384688] Using the default module debug levels instead [ 44.387648] qdf_print_ctrl_register: Allocated print control object 0 [ 44.736513] ath_hal: 0.9.17.1 (AR5416, AR9380, WRITE_EEPROM, 11D) [ 44.746232] ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved [ 44.766670] wlan: [4814: I:ANY] ath_tx99: Version 2.0 [ 44.766670] Copyright (c) 2010 Atheros Communications, Inc, All Rights Reserved [ 44.812694] ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved [ 44.850242] ath_da_pci: (Atheros/multi-bss) *********Starting cnssdaemon and initiating cold boot calibration************* [ 45.084990] <SSR>: glink SUBSYS_BEFOER_POWERUP reinit done [ 45.085051] remoteproc0: q6v5-wcss is available [ 45.089356] remoteproc0: Note: remoteproc is still under development and considered experimental. [ 45.094156] remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed. [ 45.121747] remoteproc0: powering up q6v5-wcss [ 45.121842] remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 796 [ 45.125260] Sanity check passed for the image [ 45.979659] glink_core_link_up glink is up [ 45.979800] allocate_rx_intent rx intent id 1 allocated [ 45.982713] Subsystem error monitoring/handling services are up [ 45.982755] remoteproc0: remote processor q6v5-wcss is now up [ 45.982792] wlan: [4821: I:ANY] ol_ath_ahb_ssr: SSR event 3 [ 45.999626] allocate_rx_intent rx intent id 2 allocated [ 45.999684] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [ 46.010263] allocate_rx_intent rx intent id 3 allocated [ 46.016866] allocate_rx_intent rx intent id 4 allocated [ 46.021822] allocate_rx_intent rx intent id 5 allocated [ 46.027075] glink_xprt_open_event [ 46.032792] cnss: QMI WLFW service connected, state: 0x1 [ 46.033016] diag: In diag_send_feature_mask_update, control channel is not open, p: 2, ffffffbffcbe8748 [ 46.033204] allocate_rx_intent rx intent id 6 allocated [ 46.033275] deallocate_rx_intent rx intent id 6 deallocated [ 46.055408] cnss: device_id : 0xffff mem mode : [0] [ 46.061199] Memory for FW, va: 0x000000004be40000, pa: 0x0x000000004be40000, size: 0x3d4000 [ 46.066420] cnss: BDF location : 0x000000004be00000 [ 46.074432] cnss: BDF IPQ8074/bdwlan.bin size 131072 [ 46.079497] cnss: BDF download response , result: 0, err: 0 [ 46.084613] cnss: per device BDF location : 0x000000004be20000 [ 46.089614] cnss: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000 [ 46.098040] cnss: BDF download response , result: 0, err: 0 [ 46.183826] wlan: [4821: I:ANY] cnss_mode: Cold boot calibration SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. [ 46.795571] Coldboot calibration wait started [ 46.802929] allocate_rx_intent rx intent id 6 allocated [ 46.803121] deallocate_rx_intent rx intent id 6 deallocated [ 46.807284] allocate_rx_intent rx intent id 6 allocated [ 46.812736] deallocate_rx_intent rx intent id 6 deallocated [ 46.818012] allocate_rx_intent rx intent id 6 allocated [ 46.823488] deallocate_rx_intent rx intent id 6 deallocated [ 46.828779] allocate_rx_intent rx intent id 6 allocated [ 46.834376] deallocate_rx_intent rx intent id 6 deallocated [ 46.839720] deallocate_rx_intent rx intent id 6 deallocated [ 46.856869] deallocate_rx_intent rx intent id 6 deallocated [ 46.857425] deallocate_rx_intent rx intent id 6 deallocated [ 46.861769] deallocate_rx_intent rx intent id 6 deallocated [ 46.867321] deallocate_rx_intent rx intent id 6 deallocated cat: can't open '/tmp/orbi_project': No such file or directory /etc/rc.common: line 153: can't open /tmp/device_tables/local_device_table: no such file [ 47.295965] Coldboot calibration wait ended [ 47.296770] cnss: QMI WLFW service disconnected, state: 0x9 [ 47.297020] wlan: [4821: I:ANY] Coldboot calib successful: radio_id 0x65535 [ 47.297985] ath_ol_pci: (Atheros/multi-bss) [ 47.302157] wlan: [4998: I:ANY] ol_ath_ahb_ssr: SSR event 0 [ 47.327540] remoteproc0: stopped remote processor q6v5-wcss [ 47.327830] glink_core_link_down glink is down [ 47.332992] <SSR>: glink SUBSYS_AFTER_SHUTDOWN cleanup done [ 47.382613] glink_xprt_close_event [ 47.450700] <SSR>: glink SUBSYS_BEFOER_POWERUP reinit done [ 47.450779] remoteproc0: q6v5-wcss is available [ 47.455140] remoteproc0: Note: remoteproc is still under development and considered experimental. [ 47.459917] remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed. [ 47.468932] remoteproc0: powering up q6v5-wcss [ 47.479040] remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 796 [ 47.483664] Sanity check passed for the image Run ROUTER_BOARD net-scan config...The attached devices demo is Running ... dilapi.c: 1665: DEBUG: DIL: Total InUse MAC Address Entries are :6 mkdir: can't create directory '/dev/pts': File exists mknod: /dev/ptmx: File exists mknod: /dev/pts/0: Operation not permitted mknod: /dev/pts/1: O[ 47.834400] glink_core_link_up glink is up [ 47.839353] Subsystem error monitoring/handling services are up [ 47.842722] glink_xprt_open_event [ 47.849274] remoteproc0: remote processor q6v5-wcss is now up [ 47.852865] wlan: [5017: I:ANY] ol_ath_ahb_ssr: SSR event 3 [ 47.859335] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled peration not permitted The telnetenable is running ... device eth4 is not a slave of br0 [ 47.903379] brwan: port 1(eth4) entered disabled state [ 47.910957] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready [ 47.953006] cnss: QMI WLFW service connected, state: 0x9 [ 47.953029] cnss: device_id : 0xffff mem mode : [0] [ 47.959166] Memory for FW, va: 0x000000004be40000, pa: 0x0x000000004be40000, size: 0x3d4000 [ 47.972699] cnss: BDF location : 0x000000004be00000 [ 47.972722] cnss: BDF IPQ8074/bdwlan.bin size 131072 [ 47.976650] cnss: BDF download response , result: 0, err: 0 [ 47.981915] cnss: per device BDF location : 0x000000004be20000 [ 47.992641] cnss: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000 [ 47.994375] brwan: port 1(eth4) entered disabled state [ 47.995275] cnss: BDF download response , result: 0, err: 0 [ 48.006173] dni-qos attached on eth4. [ 48.011546] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready [ 48.044096] brwan: port 1(eth4) entered disabled state [ 48.046845] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready [ 48.056407] brwan: port 1(eth4) entered disabled state [ 48.059178] IPv6: ADDRCONF(NETDEV_UP): eth4: link is not ready [ 48.076500] wlan: [5017: I:ANY] cnss_mode: Mission mode dev.nss.general.redirect = 0 [ 48.084182] wlan: [5017: I:ANY] qca_napi_create: napi instance 0 created on pipe 4 [ 48.084356] wlan: [5017: I:ANY] __ol_ath_attach(): Allocated soc ffffffc032980880 [ 48.090942] btcoex_support 0 wlan_prio_gpio 0 [ 48.098532] wlan: [5017: I:ANY] nss-wifili:#1 register wifili function for soc [ 48.102787] wlan: [5017: I:ANY] nss register id -1 nss config 1 Target Type 14 [ 48.109902] wlan: [5017: I:ANY] __ol_ath_attach: dev name soc0 [ 48.117191] wlan: [5017: I:ANY] Skipping BMI [ 48.123157] wlan: [5017: I:ANY] ol_ath_soc_attach() WMI attached. wmi_handle ffffffc03a5dc800 [ 48.127544] wlan: [5017: I:ANY] htc_wmi_init() HT Create . ffffffc035fc0000 [ 48.135918] wlan: [5017: I:ANY] htc_wmi_init() Skipping BMI Done. [ 48.142778] wlan: [5017: I:ANY] htc_wmi_init 5307 host_enable 0 nss_nwifi_offload 0 [ 48.149021] wlan: [5017: I:TIF] init_deinit_set_init_cmd_dev_params: 785: AC Minfree buf allocation through module param (umac.ko) [ 48.156610] send_filled_buffers_to_user: Send Failed -3 drop_count = 1 [ 48.168380] wlan: [5017: I:TIF] init_deinit_set_init_cmd_dev_params: 786: OL_ACBKMinfree : 0 [ 48.174894] wlan: [5017: I:TIF] init_deinit_set_init_cmd_dev_params: 787: OL_ACBEMinfree : 0 [ 48.183491] wlan: [5017: I:TIF] init_deinit_set_init_cmd_dev_params: 788: OL_ACVIMinfree : 0 [ 48.191989] wlan: [5017: I:TIF] init_deinit_set_init_cmd_dev_params: 789: OL_ACVOMinfree : 0 [ 48.200501] wlan: [5017: I:TIF] init_deinit_set_init_cmd_dev_params: 809: num_peers 1058, num_vdevs 17, num_tids 8540 [ 48.211954] wlan: [5017: I:ANY] CDP soc attach success [ 48.219598] wlan: [5017: I:ANY] Soc attach success NSS config 3 [ 48.224675] wlan: [5017: I:ANY] htc_set_async_ep: htc_handle ffffffc035fc0000, ep 2, value 1 [ 48.230824] wlan: [5017: I:ANY] htc_set_async_ep: htc_handle ffffffc035fc0000, ep 3, value 1 [ 48.239546] wlan: [5000: I:ANY] SVC ready arrival: 48.237116 [ 48.247630] wlan: [5000: I:ANY] SVC ready execution: 48.237131 [ 48.253272] wlan: [5000: I:ANY] SVC ready time to schedule: 0.000015 [ 48.259004] wlan: [5000: I:TIF] init_deinit_populate_phy_reg_cap: 334: FW wireless modes 0x7f9001 [ 48.265609] wlan: [5000: I:TIF] init_deinit_service_ready_event_handler: 118: TT support 1, Wide BW Scan 1, SW cal 1 [ 48.274470] wlan: [5000: I:ANY] num_rf_chain:0x00000008 [ 48.285040] wlan: [5000: I:ANY] ht_cap_info:0x0000081f [ 48.290420] wlan: [5000: I:ANY] vht_cap_info:0x738fe9fa [ 48.295807] wlan: [5000: I:ANY] vht_supp_mcs:0x0000fffa [ 48.301097] wlan: [5000: I:TIF] init_deinit_service_ready_event_handler: 154: WMI mgmt service enabled [ 48.306145] wlan: [5000: I:TIF] init_deinit_service_ready_event_handler: 173: Wait for EXT message [ 48.315524] wlan: [5000: I:ANY] SVC ext ready arrival: 48.237147 [ 48.324452] wlan: [5000: I:ANY] SVC ext ready execution: 48.313111 [ 48.330611] wlan: [5000: I:ANY] SVC ext ready time to schedule:0.075964 [ 48.336694] wlan: [5000: I:ANY] Num chain mask tables: 3 [ 48.343635] wlan: [5000: I:ANY] Dumping chain mask combo data [ 48.348927] wlan: [5000: I:ANY] table_id : 0 Num valid chainmasks: 25 [ 48.354574] wlan: [5000: I:ANY] table_id : 1 Num valid chainmasks: 7 [ 48.360993] wlan: [5000: I:ANY] table_id : 2 Num valid chainmasks: 8 [ 48.367421] wlan: [5000: I:ANY] chain mask combo end [ 48.373757] wlan: [5000: I:TIF] init_deinit_populate_hw_mode_capability: 223: num_hw_modes 2 [ 48.378708] wlan: [5000: I:TIF] init_deinit_populate_mac_phy_capability: 164: hw_mode_id 1 phy_bit_map 0x3 [ 48.387136] wlan: [5000: I:TIF] init_deinit_populate_mac_phy_capability: 187: total_mac_phy_cnt 2 [ 48.396593] wlan: [5000: I:TIF] init_deinit_populate_hw_mode_capability: 246: num radios is 2 [ 48.405534] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1072: HE_CAP Info = 2000109 [ 48.414044] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1073: Num HW modes = 2 [ 48.423243] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1074: Num PHY = 2 [ 48.432179] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1075: HW mode and MAC PHY CAP [ 48.440693] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1082: idx = 0 hw_mode_id = 1 pdev_id = 0 phy_id = 0 [ 48.450157] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1084: 11G support = 0 [ 48.461349] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1085: 11A support = 1 [ 48.470292] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1086: 11N support = 1 [ 48.479319] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1087: 11AC support = 1 [ 48.488348] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1088: 11AX support = 1 [ 48.497374] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1090: Supported bands = 2 [ 48.506404] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1092: Ampdu density = 0 [ 48.515777] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1094: Max BW supported 2G = 1 [ 48.524719] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1096: 2G - HT cap info = 381f [ 48.534441] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1098: 2G - VHT cap info = 738fe992 [ 48.544079] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1100: 2G - Supported VHT MCS =fffa [ 48.554060] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1102: 2G - HE cap = 35fc731c [ 48.564128] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1104: 2G - HE supp MCS = fffa [ 48.573852] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1106: 2G - TX chain mask = 3 [ 48.583488] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1108: 2G - RX chain mask = 3 [ 48.593124] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1113: HE_CAP_PHY_INFO_2G[0] = 0 HE_CAP_PHY_INFO_2G[1]=0 HE_CAP_PHY_INFO_2G [2]=0 [ 48.602680] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1116: 2G - HE_PPET5G_NUMSS_M1 =0 HE_PPET5G_RU_MASK=0 [ 48.616652] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1118: 5G - Max BW supported = 4 [ 48.628294] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1120: 5G - HT cap info = 381f [ 48.638089] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1122: 5G - VHT cap info = 738fe9fa [ 48.647554] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1124: 5G - Supported VHT MCS aaaa [ 48.657535] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1126: 5G - HE cap = 35fc7340 [ 48.667603] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1128: 5G - HE supp MCS = ffaaaaaa [ 48.677154] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1130: 5G - tx chain mask = ff [ 48.687046] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1132: 5G - RX chain mask = 255 [ 48.696682] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1137: HE_CAP_PHY_INFO_5G[0] = 800c601c HE_CAP_PHY_INFO_5G[1]= 4801f02 HE_CAP_PHY_INFO_5G [2]=0 [ 48.706331] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1140: 5G - HE_PPET5G_NUMSS_M1 = 7 HE_PPET5G_RU_MASK=f [ 48.721458] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1142: chain mask tableid= 0 [ 48.733163] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1082: idx = 1 hw_mode_id = 1 pdev_id = 1 phy_id = 1 [ 48.742343] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1084: 11G support = 1 [ 48.753806] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1085: 11A support = 0 [ 48.762742] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1086: 11N support = 1 [ 48.771763] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1087: 11AC support = 1 [ 48.780795] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1088: 11AX support = 1 [ 48.789824] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1090: Supported bands = 1 [ 48.799028] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1092: Ampdu density = 0 [ 48.808230] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1094: Max BW supported 2G = 1 [ 48.817176] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1096: 2G - HT cap info = 381f [ 48.826893] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1098: 2G - VHT cap info = 738b6992 [ 48.836697] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1100: 2G - Supported VHT MCS =ffaa [ 48.846747] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1102: 2G - HE cap = 35fc73ec [ 48.856578] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1104: 2G - HE supp MCS = ffaa [ 48.866301] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1106: 2G - TX chain mask = f [ 48.875936] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1108: 2G - RX chain mask = 15 [ 48.885572] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1113: HE_CAP_PHY_INFO_2G[0] = 800c6002 HE_CAP_PHY_INFO_2G[1]=4800302 HE_CAP_PHY_INFO_2G [2]=0 [ 48.895131] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1116: 2G - HE_PPET5G_NUMSS_M1 =3 HE_PPET5G_RU_MASK=3 [ 48.910433] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1118: 5G - Max BW supported = 1 [ 48.922170] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1120: 5G - HT cap info = 381f [ 48.931911] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1122: 5G - VHT cap info = 738b69b2 [ 48.941229] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1124: 5G - Supported VHT MCS fffa [ 48.951200] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1126: 5G - HE cap = 35fc7410 [ 48.961276] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1128: 5G - HE supp MCS = fffefffa [ 48.970816] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1130: 5G - tx chain mask = 3 [ 48.982429] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1132: 5G - RX chain mask = 3 [ 48.990342] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1137: HE_CAP_PHY_INFO_5G[0] = 0 HE_CAP_PHY_INFO_5G[1]= 0 HE_CAP_PHY_INFO_5G [2]=0 [ 48.999818] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1140: 5G - HE_PPET5G_NUMSS_M1 = 0 HE_PPET5G_RU_MASK=0 [ 49.013790] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1142: chain mask tableid= 1 [ 49.025415] wlan: [5000: I:TIF] init_deinit_print_service_ready_ex_params: 1145: Preferred HW Mode = 1 Num Radios = 2 [ 49.034621] wlan: [5000: I:TIF] init_deinit_populate_phy_reg_cap: 342: num_phy_reg_cap 2 [ 49.045382] wlan: [5000: I:TIF] init_deinit_add_11ax_modes: 1270: Adding 11ax regulatory modes, [ 49.053540] wlan: [5000: I:TIF] init_deinit_add_11ax_modes: 1273: phy_id = 0 wireless modes = f97f9001 [ 49.061954] wlan: [5000: I:TIF] init_deinit_add_11ax_modes: 1270: Adding 11ax regulatory modes, [ 49.071334] wlan: [5000: I:TIF] init_deinit_add_11ax_modes: 1273: phy_id = 1 wireless modes = 680680c [ 49.080018] wlan: [5000: I:ANY] Dumping chain mask combo data for table : 0 [ 49.089385] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000001 [ 49.096243] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000002 [ 49.103883] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000004 [ 49.111516] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000008 [ 49.119161] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000010 [ 49.126799] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000020 [ 49.134437] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000040 [ 49.142073] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000080 [ 49.149715] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000003 [ 49.157355] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x00000009 [ 49.164993] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000030 [ 49.172632] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x00000090 [ 49.180267] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x00000090 [ 49.187910] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x00000050 [ 49.195551] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x000000a0 [ 49.203187] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x00000011 [ 49.210823] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x00000022 [ 49.218466] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x00000044 [ 49.226105] wlan: [5000: I:ANY] supported_flags: 0x70000018 chainmasks: 0x00000088 [ 49.233743] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x00000007 [ 49.241394] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x00000070 [ 49.249022] wlan: [5000: I:ANY] supported_flags: 0x7000001f chainmasks: 0x0000000f [ 49.256660] wlan: [5000: I:ANY] supported_flags: 0x7000001f chainmasks: 0x000000f0 [ 49.264299] wlan: [5000: I:ANY] supported_flags: 0xf000001f chainmasks: 0x00000077 [ 49.271933] wlan: [5000: I:ANY] supported_flags: 0xf000001f chainmasks: 0x000000ff [ 49.279576] wlan: [5000: I:ANY] Dumping chain mask combo data for table : 1 [ 49.287214] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x00000001 [ 49.294160] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x00000002 [ 49.301794] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x00000004 [ 49.309438] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x00000008 [ 49.317078] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x00000003 [ 49.324716] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x00000007 [ 49.332350] wlan: [5000: I:ANY] supported_flags: 0x68000003 chainmasks: 0x0000000f [ 49.339994] wlan: [5000: I:ANY] Dumping chain mask combo data for table : 2 [ 49.347630] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000001 [ 49.354576] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000002 [ 49.362211] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000004 [ 49.369854] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000008 [ 49.377495] wlan: [5000: I:ANY] supported_flags: 0x70000007 chainmasks: 0x00000003 [ 49.385132] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x00000009 [ 49.392771] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x00000007 [ 49.400405] wlan: [5000: I:ANY] supported_flags: 0xf0000007 chainmasks: 0x0000000f [ 49.408050] wlan: [5000: I:TIF] init_deinit_populate_dbr_ring_cap: 264: Num DMA Capabilities = 2 [ 49.415698] wlan: [5000: I:TIF] init_deinit_derive_band_to_mac_param: 423: 5G radio -pdev_id = 0 start_freq = 4910 end_freq =6100 [ 49.424724] wlan: [5000: I:TIF] init_deinit_derive_band_to_mac_param: 406: 2G radio - pdev_id = 1 start_freq = 2312 end_freq= 2732 [ 49.436403] wlan: [5000: I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 326: dfs_offload 1 [ 49.448017] wlan: [5000: I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 312: Do not allocate DFS object for 2G, pdev_id = 1 net.bridge.bridge-nf-call-ip6tables = 0 net.bridge.bridge-nf-ca[ 49.474757] wlan: [5000: I:TIF] init_deinit_update_pdev_tgt_info: 969: CDP PDEV ATTACH success ll-iptables = 0 [ 49.491148] wlan: [5000: I:TIF] init_deinit_update_pdev_tgt_info: 969: CDP PDEV ATTACH success [ 49.591506] wlan: [5000: I:TIF] init_deinit_prepare_send_init_cmd: 473: FW version 0x30c0e14 [ 49.591535] wlan: [5000: I:TIF] init_deinit_prepare_send_init_cmd: 477: 0x2758be4c [ 49.599017] wlan: [5000: I:ANY] copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0 [ 49.836192] wlan: [0: I:TIF] tgt_reg_chan_list_update_handler: 101: enter [ 49.842258] wlan: [0: I:TIF] tgt_reg_chan_list_update_handler: 101: enter [ 49.842470] wlan: [5000: I:ANY] WMI ready arrival: 49.840043 [ 49.848719] wlan: [5000: I:ANY] WMI ready execution: 49.840056 [ 49.854454] wlan: [5000: I:ANY] WMI ready time to schedule: 0.000013 [ 49.860181] wlan: [5000: I:ANY] dp_peer_map_attach_wifi3 max_peers 1111, max_ast_index: 4112 [ 49.866823] wlan: [5000: I:ANY] ast hash_elems: 16384, max_ast_idx: 4112 [ 49.875403] wlan: [5000: I:ANY] ready_extract_init_status_tlv:0 [ 49.881981] wlan: [5017: I:ANY] ol_ath_connect_htc() WMI is ready [ 49.914357] wlan: [5017: I:dfs] WLAN_DEBUG_DFS_ALWAYS : wifi_dfs_psoc_enable: 408: dfs_offload 1 [ 49.914397] wlan: [5017: I:ANY] ol_ath_soc_attach() connect HTC. [ 49.922203] wlan: [5017: I:ANY] bypasswmi : 0 [ 49.928228] wlan: [5017: I:ANY] 7ol_ath_lowi_wmi_event_attach: called [ 49.932555] wlan: [5017: I:ANY] 7ol_ath_phyerr_attach: called [ 49.938969] wlan: [5017: I:ANY] 7ol_ath_rtt_meas_report_attach: called [ 49.944792] wlan: [5017: I:ANY] ol_ath_soc_attach() UMAC attach . [ 49.951305] wlan: [5017: I:ANY] ath_lowi_if_netlink_init LOWI Netlink successfully created [ 49.957615] wlan: [5017: I:ANY] __ol_ath_attach: pdev_netdev name wifi0 [ 49.965787] wlan: [5017: I:ANY] Skip txrx_pdev_attach_target [ 49.972286] wlan: [5017: I:ANY] BURSTING enabled by default [ 49.978251] wlan: [5017: I:ANY] ol_ath_pdev_attach interface_id 0 [ 49.983500] wlan: [5017: I:ANY] phy id = 0 Modes supported [ 49.989734] wlan: [5017: I:ANY] 11b = 0 11g = 0 11a = 1 11n = 1 11ac = 1 11ax = 1 [ 49.995128] wlan: [5017: I:ANY] Reg cap - phy_id = 0 supp_bnd = 2, modes = f97f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4910, hi_5g = 6100 [ 50.002774] wlan: [5017: I:ANY] ol_ath_update_wireless_modes: wireless_modes = f97f9001 before update [ 50.014833] wlan: [5017: I:ANY] ol_ath_update_wireless_modes: Wireless_modes = f97f9001 after update [ 50.024033] wlan: [5017: I:ANY] ol_ath_update_ext_caps: 11ax 5G supported case [ 50.033253] wlan: [5017: I:ANY] EXT NSS Supported [ 50.040343] wlan: [5017: I:ANY] OL Resmgr Init-ed [ 50.045210] wlan: [5017: I:ANY] acfg_attach: 3187: Netlink socket created:ffffffc03bcee800 [ 50.049812] wlan: [5017: I:ANY] rate power table override is only supported for AR98XX [ 50.057973] wlan: [5017: I:ANY] ol_ath_stats_attach: periodic_chan_stats: 1 [ 50.066503] wlan: [5017: I:ANY] wlan_scan_update_channel_list: 1049: num_chan: 25 [ 50.072731] wlan: [5017: I:ANY] [ 50.080371] wlan: [0: I:ANY] ol_ath_pdev_attach: Set global_ic[1] ..ptr:ffffffbffd356590 [ 50.083667] wlan: [0: I:ANY] pdev(ffffffc036b2e188) Enabling DBDC Repeater 1 [ 50.091748] wlan: [0: I:ANY] pdev(ffffffc036b2e188) is_primary 1 [ 50.091818] wlan: [0: E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 50.104857] wlan: [5017: I:ANY] Pdev = 0 Number of peers = 529 [ 50.113799] wlan: [5017: I:ANY] osif_wrap_attach:485 osif wrap attached [ 50.118741] wlan: [5017: I:ANY] osif_wrap_devt_init:446 osif wrap dev table init done [ 50.125248] wlan: [5017: I:ANY] Wrap Attached: Wrap_com =ffffffc03bcee400 ic->ic_wrap_com=ffffffc03bcee400 &wrap_com->wc_devt=ffffffc03bcee400 [ 50.133248] wlan: [5017: I:ANY] __ol_ath_attach: needed_headroom reservation 60 [ 50.146252] wlan: [5017: I:ANY] Enabled Fraglist bit for the radio wifi0 features 41 [ 50.153742] wlan: [5017: I:ANY] ol_ath_thermal_mitigation_attach: -- [ 50.161293] wlan: [5017: I:ANY] __ol_ath_attach: pdev_netdev name wifi1 [ 50.167720] wlan: [5017: I:ANY] Skip txrx_pdev_attach_target [ 50.174056] wlan: [5017: I:ANY] BURSTING enabled by default [ 50.179996] wlan: [5017: I:ANY] ol_ath_pdev_attach interface_id 1 [ 50.185241] wlan: [5017: I:ANY] phy id = 1 Modes supported [ 50.191470] wlan: [5017: I:ANY] 11b = 1 11g = 1 11a = 0 11n = 1 11ac = 1 11ax = 1 [ 50.196863] wlan: [5017: I:ANY] Reg cap - phy_id = 1 supp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0 [ 50.204511] wlan: [5017: I:ANY] ol_ath_update_wireless_modes: wireless_modes = 680680c before update [ 50.216577] wlan: [5017: I:ANY] ol_ath_update_wireless_modes: Wireless_modes = 680680c after update [ 50.225684] wlan: [5017: I:ANY] ol_ath_update_ext_caps: 11ax 2G supported case [ 50.234497] wlan: [5017: I:ANY] EXT NSS Supported [ 50.241816] wlan: [5017: I:ANY] OL Resmgr Init-ed [ 50.246684] wlan: [5017: I:ANY] acfg_attach: Offload using existing sock ffffffc03bcee800 [ 50.251287] wlan: [5017: I:ANY] rate power table override is only supported for AR98XX [ 50.259450] wlan: [5017: I:ANY] ol_ath_stats_attach: periodic_chan_stats: 1 [ 50.267420] wlan: [5017: I:ANY] wlan_scan_update_channel_list: 1049: num_chan: 11 [ 50.274120] wlan: [5017: I:ANY] [ 50.281763] wlan: [0: I:ANY] ol_ath_pdev_attach: Set global_ic[2] ..ptr:ffffffbffd356590 [ 50.285055] wlan: [0: I:ANY] pdev(ffffffc037cfe188) Enabling DBDC Repeater 1 [ 50.293143] wlan: [0: I:ANY] pdev(ffffffc037cfe188) is_primary 0 [ 50.293207] wlan: [0: E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 50.306246] wlan: [5017: I:ANY] Pdev = 1 Number of peers = 529 [ 50.315085] wlan: [5017: I:ANY] osif_wrap_attach:485 osif wrap attached [ 50.320128] wlan: [5017: I:ANY] osif_wrap_devt_init:446 osif wrap dev table init done [ 50.326638] wlan: [5017: I:ANY] Wrap Attached: Wrap_com =ffffffc03bcefc00 ic->ic_wrap_com=ffffffc03bcefc00 &wrap_com->wc_devt=ffffffc03bcefc00 [ 50.334639] wlan: [5017: I:ANY] __ol_ath_attach: needed_headroom reservation 60 [ 50.347641] wlan: [5017: I:ANY] Enabled Fraglist bit for the radio wifi1 features 41 [ 50.355156] wlan: [5017: I:ANY] ol_ath_thermal_mitigation_attach: -- [ 50.363031] wlan: [5017: I:ANY] ol_ath_ahb_probe num_radios=2, wifi_radios[0].sc = ffffffc032780880_radio_type = 2 [ 50.369088] wlan: [5017: I:ANY] ol_ath_ahb_probe num_radios=2, wifi_radios[1].sc = ffffffc0327a0880_radio_type = 2 [ 50.379293] wlan: [5017: I:ANY] ath_sysfs_diag_init: diag_fsattr [ 50.389954] ath_ol_pci: (Atheros/multi-bss) [ 50.435156] wlan: [5234: I:ANY] __sa_init_module No Direct-Attach chipsets found. [ 50.485069] Removing athdebug proc file [ 50.485101] ath_dev: driver unloaded [ 50.525035] wlan: [5238: I:ANY] 6ath_tx99: driver unloaded [ 50.574913] ath_rate_atheros: driver unloaded [ 50.614940] ath_hal: driver unloaded cat: can't open '1': No such file or directory [ 50.669701] wlan: [0: I:TIF] tgt_reg_chan_list_update_handler: 101: enter [ 50.670171] wlan: [5248: I:ANY] wlan_scan_update_channel_list: 1049: num_chan: 13 [ 50.675481] wlan: [5248: I:ANY] Enable ol_stats by default for Hawkeye [ 50.698596] wlan: [5257: I:ANY] set TXBF_SND_PERIOD: value 100 wmi_status 0 [ 50.702357] wlan: [0: E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 50.703949] wlan: [0: I:ANY] Disconnect_timeout value entered:10 [ 50.712705] wlan: [0: E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 50.719520] wlan: [0: I:ANY] reconfiguration_timeout value entered:60 cat: can't open '/sys/class/net/ath1/address': No such file or directory [ 50.891928] wlan_vap_create : enter. devhandle=0x327a0880, opmode=IEEE80211_M_HOSTAP, flags=0x1 [ 50.891970] wlan: [5326: I:ANY] ol_ath_vap_create: vdev id 0 [ 50.899544] wlan: [5326: I:ANY] nss-wifi:#0 VAP# vap ffffffc034080000 nss_if 32 [ 50.905412] wlan: [5326: I:ANY] ol_ath_vap_set_param : Setting the following vdev params vap->iv_he_su_bfee: 0, vap->iv_he_su_bfer: 1 vap->iv_he_mu_bfee: 0, vap->iv_he_mu_bfer: 1 vap->iv_he_dl_muofdma: 1, vap->iv_he_ul_muofdma: 0 vap->iv_he_ul_mumimo: 0 [ 50.912961] wlan: [5326: I:ANY] ol_ath_vap_set_param : WMI: he_bf_cap = 0x1a [ 50.935285] wlan: [5326: I:ANY] dp_lag_pdev_set_ap_vdev pdev(ffffffc037cfe188) ap_vdev ffffffc029b62c00 [ 50.942405] wlan: [5326: I:ANY] nss-wifi:#0 VAP# vdev ffffffc0295f9000 vap ffffffc034080000 osif ffffffc029650880 nss_if 32 [ 50.951895] wlan: [5326: I:ANY] update nss wifiol ctx in osdev [ 50.963087] wlan: [5326: I:ANY] NSS wifi offload VAP create IF 32 nss_id -1 [ 50.968705] wlan: [5326: I:ANY] ****NSS radio_if 31**** [ 50.976028] wlan: [0: I:ANY] VDEV configuration success: 0 [ 50.980864] wlan: [5326: I:ANY] vap create ffffffc029650880 : if_num 32 [ 50.986549] wlan_vap_create : exit. devhandle=0x327a0880, vap=0x34080000, opmode=IEEE80211_M_HOSTAP, flags=0x1. [ 50.987004] wlan: [0: I:ANY] Get MPSTA: vdev is NULL [ 51.003077] wlan: [5326: I:ANY] sa_api_init: Smart Antenna is not supported [ 51.008295] wlan: [5326: I:ANY] sa_api_init: Smart Antenna is not supported [ 51.015327] wlan: [5326: I:ANY] TX Checksum Bit: 1| SG Bit: 1| TSO Bit: 1 | LRO Bit: 0 [ 51.022345] wlan: [5326: I:ANY] WLAN-NSS: VAP NSS ops initialized [ 51.030116] wlan: [5326: I:ANY] ol_ath_update_phymode_caps: Error Mode 0 not 2G or 5G [ 51.036828] wlan: [5326: I:ANY] VAP device ath1 created osifp: (ffffffc029650880) os_if: (ffffffc034080000) [ 51.044186] wlan: [5326: I:ANY] 3VAP device ath1 created! [ 51.055605] wlan: [5343: I:ANY] EXT NSS Supported Invalid command : dni_vlan_pri sh: 192: unknown operand [ 51.099639] wlan: [5361: I:ANY] setting hifi mode 5 [ 51.102813] WARNING: Fragmentation with HT mode NOT ALLOWED!! Error for wireless request "Set Fragmentation Threshold" (8B24) : SET failed on device ath1 ; Invalid argument. [ 51.117618] wlan: [5373: I:ANY] Setting Max Stations:256 [ 51.122625] wlan: [5375: I:ANY] DES SSID SET=NETGEAR22 Interface doesn't accept private ioctl... stafwd (8BE0): Invali[ 51.132323] wlan: [5379: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 3 [ 51.137177] wlan: [5380: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 3 [ 51.149266] wlan: [5382: I:ANY] HE SU BFER already set with this value =1 [ 51.158793] wlan: [5383: I:ANY] HE SU BFEE already set with this value =0 [ 51.165486] wlan: [5384: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 3 [ 51.170978] wlan: [5384: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 3 [ 51.184837] wlan: [5386: I:ANY] ol_ath_vap_set_param : Setting the following vdev params vap->iv_he_su_bfee: 0, vap->iv_he_su_bfer: 1 vap->iv_he_mu_bfee: 0, vap->iv_he_mu_bfer: 0 vap->iv_he_dl_muofdma: 1, vap->iv_he_ul_muofdma: 0 vap->iv_he_ul_mumimo: 0 [ 51.193015] wlan: [5386: I:ANY] ol_ath_vap_set_param : WMI: he_bf_cap = 0x12 [ 51.216750] wlan: [5387: I:ANY] HE MU BFEE only supported in STA mode [ 51.224428] wlan: [5388: I:ANY] HE DL MU OFDMA already set with this value =1 [ 51.231186] device ath1 entered promiscuous mode d argument Interface doesn't accept private ioctl... vhtsubfee (8BE0): Invalid argument Interface doesn't accept private ioctl... vhtmubfee (8BE0): Invalid argument Interface doesn't accept private ioctl... he_mubfee (8BE0): Invalid argument sh: 0: unknown operand sh: 0: unknown operand sh: 0: unknown operand sh: ag: out of range [ 51.422446] ieee80211_ioctl_siwmode: imr.ifm_active=131712, new mode=3, valid=1 [ 51.462663] DEVICE IS DOWN ifname=ath1 [ 51.462700] DEVICE IS DOWN ifname=ath1 [ 51.496182] wlan: [1703: I:ANY] Keyix=1 Keylen=16 Keyflags=3 Cipher=4 [ 51.496208] wlan: [1703: I:ANY] macaddr bc:a5:11:a7:ae:f6 [ 51.522432] wlan: [1703: I:ANY] osif_vap_init: 7701: chan: 0xffffffffffffffff [ 51.522457] wlan: [1703: I:ANY] [ 51.528535] wlan: [1703: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc034080000 [ 51.531843] wlan: [1703: I:ANY] [ 51.542422] wlan: [1703: I:ANY] osif_vap_init: 7740: started wlan_autoselect_find_infra_bss_channel [ 51.545556] wlan: [1703: I:ANY] [ 51.556168] br0: port 6(ath1) entered forwarding state [ 51.557801] br0: port 6(ath1) entered forwarding state [ 51.562787] 8021q: adding VLAN 0 to HW filter on device ath1 [ 51.567964] IPv6: ADDRCONF(NETDEV_CHANGE): br0: link becomes ready OK /sbin/wlan: eval: line 16: scan_interfaces: not found /sbin/wlan: eval: line 16: setup_interface: not found [ 51.654950] wlan: [5422: I:ANY] osif_vap_init: Scan in progress.. Cancelling it. vap: 0xffffffc034080000 [ 51.692501] wlan: [5422: I:ANY] osif_vap_init: 7701: chan: 0xffffffffffffffff [ 51.692531] wlan: [5422: I:ANY] [ 51.698775] wlan: [5422: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc034080000 [ 51.701920] wlan: [5422: I:ANY] [ 51.712728] wlan: [5422: I:ANY] osif_vap_init: 7740: started wlan_autoselect_find_infra_bss_channel [ 51.715638] wlan: [5422: I:ANY] [ 51.726718] wlan: [5433: I:ANY] osif_vap_init: Scan in progress.. Cancelling it. vap: 0xffffffc034080000 [ 51.752430] wlan: [5433: I:ANY] osif_vap_init: 7701: chan: 0xffffffffffffffff [ 51.752457] wlan: [5433: I:ANY] [ 51.758533] wlan: [5433: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc034080000 [ 51.761843] wlan: [5433: I:ANY] [ 51.772477] wlan: [5433: I:ANY] osif_vap_init: 7740: started wlan_autoselect_find_infra_bss_channel [ 51.775572] wlan: [5433: I:ANY] sh: 1: unknown operand sh: 0: unknown operand sh: out of range [ 51.835117] br0: port 6(ath1) entered disabled state [ 51.862455] wlan: [5456: I:ANY] osif_vap_init: 7701: chan: 0xffffffffffffffff [ 51.862485] wlan: [5456: I:ANY] [ 51.868562] wlan: [5456: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc034080000 [ 51.871871] wlan: [5456: I:ANY] [ 51.882478] wlan: [5456: I:ANY] osif_vap_init: 7740: started wlan_autoselect_find_infra_bss_channel [ 51.885581] wlan: [5456: I:ANY] [ 51.896072] br0: port 6(ath1) entered forwarding state [ 51.897830] br0: port 6(ath1) entered forwarding state [ 51.902792] 8021q: adding VLAN 0 to HW filter on device ath1 [ 51.913854] wlan: [0: E:NSS] [nss-wifili]: Could not set astenty active for hw_idx = 2860 qcawifi qcawificfg80211: enable radio wifi0 [ 52.194862] wlan (5694): drop_caches: 3 grep: /tmp/openvpn/client/data/openvpn_client.stat: No such file or directory [ 53.116433] ECM exit [ 53.238117] __mc_netlink_receive: Disable bridge snooping! [ 53.310827] __mc_netlink_receive: Enable bridge snooping! [ 53.322563] ECM exit complete time zone index is : 2 chgrp: unknown group www-data [FW UPGRADE][2020-06-18 11:55:00]:[Daily Check FW]count time:0 [ 53.740509] EXT4-fs (mtdblock37): mounted filesystem without journal. Opts: (null) [wlan]===time:Thu Jun 18 11:55:01 UTC 2020 command:wlan stainf[ 54.315459] wlan: [0: I:TIF] tgt_reg_chan_list_update_handler: 101: enter [ 54.321942] wlan: [6373: I:ANY] wlan_scan_update_channel_list: 1049: num_chan: 19 [ 54.325273] wlan: [6373: I:ANY] [ 54.332859] wlan: [6373: I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 574: freq=58 [ 54.335984] wlan: [6373: I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 574: freq=106 [ 54.344085] wlan: [6373: I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 574: freq=122 [ 54.352794] wlan: [6373: I:ANY] wlan_scan_update_channel_list: 1049: num_chan: 19 [ 54.360585] wlan: [6373: I:ANY] [ 54.368455] wlan: [6373: I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 574: freq=58 [ 54.371526] wlan: [6373: I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 574: freq=106 [ 54.379686] wlan: [6373: I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 574: freq=122 [ 54.387894] wlan: [4714: I:ANY] ol_acfg_handle_wifi_ioctl: req->cmd=74 not valid for radio interface, it's for VAP o============== [ 54.427617] wlan: [6398: I:ANY] set TXBF_SND_PERIOD: value 100 wmi_status 0 [ 54.433047] wlan: [0: E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 54.433398] wlan: [0: E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [ 54.458001] wlan: [0: I:ANY] Disconnect_timeout value entered:10 [ 54.459538] wlan: [0: I:ANY] reconfiguration_timeout value entered:60 [ 54.562810] wlan_vap_create : enter. devhandle=0x32780880, opmode=IEEE80211_M_HOSTAP, flags=0x1 [ 54.562862] wlan: [6479: I:ANY] ol_ath_vap_create: vdev id 1 [ 54.570431] wlan: [6479: I:ANY] nss-wifi:#0 VAP# vap ffffffc035f48000 nss_if 33 [ 54.576388] wlan: [6479: I:ANY] ol_ath_vap_set_param : Setting the following vdev params vap->iv_he_su_bfee: 0, vap->iv_he_su_bfer: 1 vap->iv_he_mu_bfee: 0, vap->iv_he_mu_bfer: 1 vap->iv_he_dl_muofdma: 1, vap->iv_he_ul_muofdma: 0 vap->iv_he_ul_mumimo: 0 [ 54.583855] wlan: [6479: I:ANY] ol_ath_vap_set_param : WMI: he_bf_cap = 0x1a [ 54.606193] wlan: [6479: I:ANY] dp_lag_pdev_set_ap_vdev pdev(ffffffc036b2e188) ap_vdev ffffffc029b60400 [ 54.613343] wlan: [6479: I:ANY] nss-wifi:#0 VAP# vdev ffffffc0295fe000 vap ffffffc035f48000 osif ffffffc0296e3880 nss_if 33 [ 54.622769] wlan: [6479: I:ANY] update nss wifiol ctx in osdev [ 54.633965] wlan: [6479: I:ANY] NSS wifi offload VAP create IF 33 nss_id -1 [ 54.639587] wlan: [6479: I:ANY] ****NSS radio_if 30**** [ 54.646834] wlan: [0: I:ANY] VDEV configuration success: 0 [ 54.651756] wlan: [6479: I:ANY] vap create ffffffc0296e3880 : if_num 33 [ 54.657430] wlan_vap_create : exit. devhandle=0x32780880, vap=0x35f48000, opmode=IEEE80211_M_HOSTAP, flags=0x1. [ 54.657905] wlan: [0: I:ANY] Get MPSTA: vdev is NULL [ 54.673989] wlan: [6479: I:ANY] sa_api_init: Smart Antenna is not supported [ 54.679211] wlan: [6479: I:ANY] sa_api_init: Smart Antenna is not supported [ 54.686231] wlan: [6479: I:ANY] TX Checksum Bit: 1| SG Bit: 1| TSO Bit: 1 | LRO Bit: 0 [ 54.693242] wlan: [6479: I:ANY] WLAN-NSS: VAP NSS ops initialized [ 54.701024] wlan: [6479: I:ANY] ol_ath_update_phymode_caps: Error Mode 0 not 2G or 5G [ 54.707731] wlan: [6479: I:ANY] VAP device ath0 created osifp: (ffffffc0296e3880) os_if: (ffffffc035f48000) [ 54.715056] wlan: [6479: I:ANY] 3VAP device ath0 created! [ 54.738698] wlan: [6485: I:ANY] EXT NSS Supported [ 54.780604] wlan: [6511: I:ANY] setting hifi mode 5 [ 54.783987] WARNING: Fragmentation with HT mode NOT ALLOWED!! [ 54.798543] wlan: [6524: I:ANY] Setting Max Stations:256 [ 54.801798] wlan: [6526: I:ANY] DES SSID SET=NETGEAR22 [ 54.810825] wlan: [6530: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 7 [ 54.812791] wlan: [6531: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 7 [ 54.823826] wlan: [6533: I:ANY] HE SU BFER already set with this value =1 [ 54.833050] wlan: [6534: I:ANY] HE SU BFEE already set with this value =0 [ 54.839769] wlan: [6535: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 7 [ 54.845404] wlan: [6535: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 7 [ 54.859132] wlan: [6537: I:ANY] ol_ath_vap_set_param : Setting the following vdev params vap->iv_he_su_bfee: 0, vap->iv_he_su_bfer: 1 vap->iv_he_mu_bfee: 0, vap->iv_he_mu_bfer: 0 vap->iv_he_dl_muofdma: 1, vap->iv_he_ul_muofdma: 0 vap->iv_he_ul_mumimo: 0 [ 54.867340] wlan: [6537: I:ANY] ol_ath_vap_set_param : WMI: he_bf_cap = 0x12 [ 54.891075] wlan: [6538: I:ANY] HE MU BFEE only supported in STA mode [ 54.898461] wlan: [6539: I:ANY] HE DL MU OFDMA already set with this value =1 [ 54.905484] device ath0 entered promiscuous mode [ 54.913866] wlan: [0: E:NSS] [nss-wifili]: Could not set astenty active for hw_idx = 2756 [ 55.062442] ieee80211_ioctl_siwmode: imr.ifm_active=66176, new mode=3, valid=1 [ 55.102586] DEVICE IS DOWN ifname=ath0 [ 55.102623] DEVICE IS DOWN ifname=ath0 [ 55.135933] wlan: [1703: I:ANY] Keyix=1 Keylen=16 Keyflags=3 Cipher=4 [ 55.135960] wlan: [1703: I:ANY] macaddr bc:a5:11:a7:ae:f8 [ 55.162436] wlan: [1703: I:ANY] osif_vap_init: 7701: chan: 0xffffffc032781c10 [ 55.162461] wlan: [1703: I:ANY] [ 55.168621] wlan: [0: I:ANY] OL vap start id: 1 + [ 55.171863] wlan: [0: I:ANY] OL vap_start - [ 55.483566] wlan: [0: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 7 [ 55.483631] wlan: [0: I:ANY] Setting Rx Decap type to 2 (Ethernet) [ 55.493166] wlan: [0: I:ANY] Setting Tx Encap type to 2 (Ethernet) [ 55.499248] wlan: [0: E:FILS discovery] target_if_fd_reconfig: 157: FILS is not enabled [ 55.505396] wlan: [0: I:ANY] sa_api_init: Smart Antenna is not supported [ 55.532445] wlan: [1703: I:ANY] Mgmt Rate:6000(kbps) | Rate Code:0x10000003 [ 55.532845] br0: port 7(ath0) entered forwarding state [ 55.538203] br0: port 7(ath0) entered forwarding state [ 55.543429] 8021q: adding VLAN 0 to HW filter on device ath0 [ 55.633151] wlan: [6616: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 30 NSS = 8 SGI =0 ratekbps=4803900 [wlan]=========time:Thu Jun 18 11:55:03 UTC 2020 wlan up end================== [ 56.367655] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null) [ 56.762734] EXT4-fs (mtdblock37): mounted filesystem without journal. Opts: (null) [ 56.773592] __mc_netlink_receive: Disable bridge snooping! [ 56.796733] __mc_netlink_receive: Enable bridge snooping! [ 59.228099] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null) Init wifison script to boot lbd /sbin/wifison.sh: line 2998: logd: not found uci: Entry not found uci: Entry not found uci: Entry not found uci: Entry not found uci: Entry not found uci: Entry not found uci: Entry not found Save Data Success!, Parentid: 7191, parent process: (wifison.sh),presentid: 7409,present: (config) [ 60.208837] wlan: [7433: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 30 NSS = 8 SGI =0 ratekbps=4803900 lbd: starting daemon /etc/rc.common: line 1: __hyd_cfg_nl_append: not found /etc/rc.common: line 1: __hyd_cfg_add_str: not found /etc/rc.common: line 1: __hyd_cfg_add_str: not found [ 60.415738] wlan: [7461: I:ANY] [ath1]Band steering events being sent to PID:7461 [ 60.415777] wlan: [7461: I:ANY] [ath0]Band steering events being sent to PID:7461 2048+0 records in 2048+0 records out 1048576 bytes (1.0MB) copied, 0.119904 seconds, 8.3MB/s ca.crt cert.info client.crt client.key dh1024.pem server.crt server.key /etc/rc.common: /etc/rc.d/S62funjsq: line 13: syntax error: unexpected "}" Starting Firewall... [ 60.803137] xt_CT: netfilter: NOTRACK target is deprecated, use CT instead or upgrade iptables Done! time zone index is : 2 POT is Running... [ 62.978514] __mc_netlink_receive: Enable bridge snooping! cat: can't open '/var/run/bond-mode': No such file or directory cat: can't open '/var/run/bond-mode_wan': No such file or directory [ 64.060518] __mc_netlink_receive: Enable bridge snooping! [ 65.507443] wlan: [0: I:ANY] ieee80211_derive_chan : Overriding HE40 channel with HE20 channel [ 65.507502] wlan: [0: I:ANY] OL vap start id: 0 + [ 65.514967] wlan: [0: I:ANY] OL vap_start - [ 65.519726] wlan: [0: I:ANY] Mgmt Rate:1000(kbps) | Rate Code:0x10000103 [ 65.610861] wlan: [0: I:ANY] vht su bfee 0 vht mu bfee 0 vht su bfer 1 vht mu bfer 1 vht impl bf 0 vht sounding dim 3 [ 65.610929] wlan: [0: I:ANY] Setting Rx Decap type to 2 (Ethernet) [ 65.620452] wlan: [0: I:ANY] Setting Tx Encap type to 2 (Ethernet) [ 65.626549] wlan: [0: E:FILS discovery] target_if_fd_reconfig: 157: FILS is not enabled [ 65.632695] wlan: [0: I:ANY] sa_api_init: Smart Antenna is not supported traffic_meter start : . $Shutting down igmpproxy: [ 67.409100] UBIFS (ubi0:6): background thread "ubifs_bgt0_6" started, PID 8412 [ 67.436399] UBIFS (ubi0:6): recovery needed [ 67.616192] UBIFS (ubi0:6): recovery completed [ 67.616261] UBIFS (ubi0:6): UBIFS: mounted UBI device 0, volume 6, name "vol_armor" [ 67.619526] UBIFS (ubi0:6): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 67.627242] UBIFS (ubi0:6): FS size: 59551744 bytes (56 MiB, 469 LEBs), journal size 2920448 bytes (2 MiB, 23 LEBs) [ 67.637159] UBIFS (ubi0:6): reserved for root: 2812775 bytes (2746 KiB) [ 67.647438] UBIFS (ubi0:6): media format: w4/r0 (latest is w4/r0), UUID A31186D7-8C65-45A8-8947-23D401BBA23B, small LPT model chown: unknown user/group root:root sed: /opt/bitdefender/etc/patch.server: No such file or directory Changed config file to use production server chown: unknown user/group root:root Save Data Success!, Parentid: 8357, parent process: (S94armor_init),presentid: 8422,present: (config) [ 68.009966] guster accel_cb registered; mark shift 20 Save Data reject(no change)!, Parentid: 8431, parent process: (S95done),presentid: 8470,present: (config) check mouted USB partions... ****************Start of ping-netgear******************** DUT_boot_up_done!!!!!!!!!! SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. SSDK Init OK! operation done. control-firmware will be Running when Internet status is UP !!! Thermal Init Set ALL wifi 0 Thermal Init Set ALL wifi 0 ln: /dev/caldata: File exists /etc/rc.common: line 153: /etc/init.d/kcode: not found cat: can't open '/tmp/debug_store_locate': No such file or directory cat: can't open '/tmp/wanlan_capture': No such file or directory 2+0 records in 2+0 records out 262144 bytes (256.0KB) copied, 0.062853 seconds, 4.0MB/s 4096+0 records in 4096+0 records out 2097152 bytes (2.0MB) copied, 0.653297 seconds, 3.1MB/s tar: Skipping to next header [ 69.567433] XHTTP netlink: remove OK. [ 69.644426] XHTTP netlink: create netlink OK. tar: Child returned status 1 tar: Error is not recoverable: exiting now Save Data Success!, Parentid: 8773, parent process: (S99aws),presentid: 8897,present: (config) killall: aws-iot: no process killed rm: can't remove '/var/run/aws_iot.pid': No such file or directory Save Data reject(no change)!, Parentid: 8773, parent process: (S99aws),presentid: 8965,present: (config) Save Data reject(no change)!, Parentid: 1, parent process: (procd),presentid: 8970,present: (aws-iot) Save Data reject(no change)!, Parentid: 8958, parent process: (detectSATA),presentid: 9017,present: (config) bdbrokerd is up, call ash start Save Data Success!, Parentid: 1, parent process: (procd),presentid: 8980,present: (icqm) Save Data reject(no change)!, Parentid: 8958, parent process: (detectSATA),presentid: 9130,present: (config) [ 71.585377] wlan: [9377: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 23 NSS = 4 SGI =0 ratekbps=573500 [ 71.588161] wlan: [9377: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 30 NSS = 8 SGI =0 ratekbps=4803900 [ 71.596697] wlan: [9382: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 23 NSS = 4 SGI =0 ratekbps=573500 [ 71.605617] wlan: [9382: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 30 NSS = 8 SGI =0 ratekbps=4803900 [ 71.624570] wlan: [9391: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 23 NSS = 4 SGI =0 ratekbps=573500 [ 71.624922] wlan: [9391: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 30 NSS = 8 SGI =0 ratekbps=4803900 ########### [ Thu, 18 Jun 2020 11:55:18 +0000 ] ############# [[ 71.647738] wlan: [9402: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc034080000 [ 71.649415] wlan: [9402: I:ANY] VAP: ath1] ########### [ Thu, 18 Jun 2020 11:55:19 +0000 ] ############# [VAP: ath0] [ 72.678737] wlan: [9464: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc035f48000 [ 72.678774] wlan: [9464: I:ANY] [ 75.570029] wlan: [9610: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 23 NSS = 4 SGI =0 ratekbps=573500 [ 75.570270] wlan: [9610: I:ANY] ol_ath_node_get_maxphyrate:1517 Phymode = 30 NSS = 8 SGI =0 ratekbps=4803900 [ 75.642475] wlan: [0: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc034080000 [ 75.642511] wlan: [0: I:ANY] [ 75.651808] wlan: [0: I:ANY] ieee80211_autoselect_infra_bss_channel: 4031: ACS started on vap: 0xffffffc035f48000 [ 75.654692] wlan: [0: I:ANY]


BusyBox v1.24.1 (2020-06-18 18:56:23 CST) built-in shell (ash) Enter 'help' for a list of built-in commands. MM NM MMMMMMM M M $MMMMM MMMMM MMMMMMMMMMM MMM MMM MMMMMMMM MM MMMMM. MMMMM:MMMMMM: MMMM MMMMM MMMM= MMMMMM MMM MMMM MMMMM MMMM MMMMMM MMMM MMMMM' MMMM= MMMMM MMMM MM MMMMM MMMM MMMM MMMMNMMMMM MMMM= MMMM MMMMM MMMMM MMMM MMMM MMMMMMMM MMMM= MMMM MMMMMM MMMMM MMMM MMMM MMMMMMMMM MMMM= MMMM MMMMM, NMMMMMMMM MMMM MMMM MMMMMMMMMMM MMMM= MMMM MMMMMM MMMMMMMM MMMM MMMM MMMM MMMMMM MMMM= MMMM MM MMMM MMMM MMMM MMMM MMMM MMMM MMMM$ ,MMMMM MMMMM MMMM MMM MMMM MMMMM MMMM MMMM MMMMMMM: MMMMMMM M MMMMMMMMMMMM MMMMMMM MMMMMMM MMMMMM MMMMN M MMMMMMMMM MMMM MMMM MMMM M MMMMMMM M M M --------------------------------------------------------------- For those about to rock... (Chaos Calmer, RAX120-V1.0.1.128+r49254) --------------------------------------------------------------- root@RAX120:/# help Built-in commands: ------------------ . : [ [[ alias bg break cd chdir command continue echo eval exec exit export false fg getopts hash help history jobs kill let local printf pwd read readonly return set shift source test times trap true type ulimit umask unalias unset wait root@RAX120:/# The abbreviation of English is Eng! root@RAX120:/# cat /etc/openwrt_version 15.05.1 root@RAX120:/# cat /etc/openwrt_release DISTRIB_ID='OpenWrt' DISTRIB_RELEASE='Chaos Calmer' DISTRIB_REVISION='RAX120-V1.0.1.128+r49254' DISTRIB_CODENAME='chaos_calmer' DISTRIB_TARGET='ipq/ipq807x_64' DISTRIB_DESCRIPTION='OpenWrt Chaos Calmer 15.05.1' DISTRIB_TAINTS='no-all'


[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 5.15.88 (user@user-virtual-machine) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 12.2.0 r21804+24-0a15bb6510) 12.2.0, GNU ld (GNU Binutils) 2.39) #0 SMP Tue Jan 17 06:26:02 2023 [ 0.000000] Machine model: Netgear RAX120v2 [ 0.000000] Zone ranges: [ 0.000000] DMA [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] DMA32 empty [ 0.000000] Normal empty [ 0.000000] Movable zone start for each node [ 0.000000] Early memory node ranges [ 0.000000] node 0: [mem 0x0000000040000000-0x0000000040ffffff] [ 0.000000] node 0: [mem 0x0000000041000000-0x000000004a3fffff] [ 0.000000] node 0: [mem 0x000000004a400000-0x000000004a5fffff] [ 0.000000] node 0: [mem 0x000000004a600000-0x000000004aafffff] [ 0.000000] node 0: [mem 0x000000004ab00000-0x00000000510fffff] [ 0.000000] node 0: [mem 0x0000000051100000-0x000000007fffffff] [ 0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x000000007fffffff] [ 0.000000] psci: probing for conduit method from DT. [ 0.000000] psci: PSCIv1.0 detected in firmware. [ 0.000000] psci: Using standard PSCI v0.2 function IDs [ 0.000000] psci: MIGRATE_INFO_TYPE not supported. [ 0.000000] psci: SMC Calling Convention v1.0 [ 0.000000] psci: OSI mode supported. [ 0.000000] percpu: Embedded 17 pages/cpu s30360 r8192 d31080 u69632 [ 0.000000] pcpu-alloc: s30360 r8192 d31080 u69632 alloc=17*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 258048 [ 0.000000] Kernel command line: console=ttyMSM0,115200n8 ubi.mtd=rootfs root=/dev/ubiblock0_1 [ 0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] Memory: 893416K/1048576K available (7424K kernel code, 848K rwdata, 2036K rodata, 1216K init, 273K bss, 155160K reserved, 0K cma-reserved) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [ 0.000000] rcu: Hierarchical RCU implementation. [ 0.000000] Tracing variant of Tasks RCU enabled. [ 0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies. [ 0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0 [ 0.000000] Root IRQ handler: gic_handle_irq [ 0.000000] GICv2m: range[mem 0x0b00a000-0x0b00affc], SPI[448:479] [ 0.000000] arch_timer: cp15 and mmio timer(s) running at 19.20MHz (virt/virt). [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns [ 0.000000] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns [ 0.000127] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000) [ 0.000143] pid_max: default: 32768 minimum: 301 [ 0.000302] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.000319] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.001935] rcu: Hierarchical SRCU implementation. [ 0.002109] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build [ 0.002701] smp: Bringing up secondary CPUs ... [ 0.003277] Detected VIPT I-cache on CPU1 [ 0.003344] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.003952] Detected VIPT I-cache on CPU2 [ 0.003992] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.004553] Detected VIPT I-cache on CPU3 [ 0.004589] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.004654] smp: Brought up 1 node, 4 CPUs [ 0.004681] SMP: Total of 4 processors activated. [ 0.004689] CPU features: detected: 32-bit EL0 Support [ 0.004696] CPU features: detected: CRC32 instructions [ 0.004750] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.004760] CPU: All CPU(s) started at EL1 [ 0.004782] alternatives: patching kernel code [ 0.013118] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.013155] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.013304] pinctrl core: initialized pinctrl subsystem [ 0.014310] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.014761] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.014805] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.014843] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.015183] thermal_sys: Registered thermal governor 'step_wise' [ 0.016696] cpuidle: using governor menu [ 0.016912] ASID allocator initialised with 65536 entries [ 0.018118] OF: /opp-table: could not get #nvmem-cell-cells for /soc/efuse@a4000/speedbin@125 [ 0.072361] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 0.079892] SCSI subsystem initialized [ 0.080119] usbcore: registered new interface driver usbfs [ 0.080167] usbcore: registered new interface driver hub [ 0.080203] usbcore: registered new device driver usb [ 0.080437] CPUidle PSCI: failed to enable OSI mode: -95 [ 0.080787] qcom_scm: convention: smc arm 64 [ 0.081986] clocksource: Switched to clocksource arch_sys_counter [ 0.082638] NET: Registered PF_INET protocol family [ 0.082775] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.083605] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 0.083637] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.083653] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.083740] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear) [ 0.083890] TCP: Hash tables configured (established 8192 bind 8192) [ 0.083988] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.084029] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.084199] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.084232] PCI: CLS 0 bytes, default 64 [ 0.085311] workingset: timestamp_bits=46 max_order=18 bucket_order=0 [ 0.088960] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.088975] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.090880] qcom-qmp-phy 58000.phy: supply vdda-phy not found, using dummy regulator [ 0.091027] qcom-qmp-phy 58000.phy: supply vdda-pll not found, using dummy regulator [ 0.092089] qcom-qmp-phy 58000.phy: Registered Qcom-QMP phy [ 0.092357] qcom-qmp-phy 78000.phy: supply vdda-phy not found, using dummy regulator [ 0.092488] qcom-qmp-phy 78000.phy: supply vdda-pll not found, using dummy regulator [ 0.093376] qcom-qmp-phy 78000.phy: Registered Qcom-QMP phy [ 0.094260] qcom-qusb2-phy 59000.phy: supply vdda-pll not found, using dummy regulator [ 0.094398] qcom-qusb2-phy 59000.phy: supply vdda-phy-dpdm not found, using dummy regulator [ 0.094548] qcom-qusb2-phy 59000.phy: Registered Qcom-QUSB2 phy [ 0.094724] qcom-qusb2-phy 79000.phy: supply vdda-pll not found, using dummy regulator [ 0.094836] qcom-qusb2-phy 79000.phy: supply vdda-phy-dpdm not found, using dummy regulator [ 0.094994] qcom-qusb2-phy 79000.phy: Registered Qcom-QUSB2 phy [ 0.099190] bam-dma-engine 704000.dma-controller: num-channels unspecified in dt [ 0.099215] bam-dma-engine 704000.dma-controller: num-ees unspecified in dt [ 0.103144] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.103713] msm_serial 78b3000.serial: msm_serial: detected port #0 [ 0.103758] msm_serial 78b3000.serial: uartclk = 3686400 [ 0.103805] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 22, base_baud = 230400) is a MSM [ 0.103839] msm_serial: console setup on port #0 [ 0.804697] printk: console [ttyMSM0] enabled [ 0.809826] msm_serial: driver initialized [ 0.817616] loop: module loaded [ 0.818923] nand: device found, Manufacturer ID: 0xef, Chip ID: 0xac [ 0.820652] nand: Winbond W29N04GZ [ 0.827270] nand: 512 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 [ 0.830764] 26 fixed-partitions partitions found on MTD device qcom_nand.0 [ 0.838085] Creating 26 MTD partitions on "qcom_nand.0": [ 0.844883] 0x000000000000-0x000000100000 : "0:sbl1" [ 0.851607] 0x000000100000-0x000000200000 : "0:mibib" [ 0.856492] 0x000000200000-0x000000280000 : "0:bootconfig" [ 0.861004] 0x000000280000-0x000000300000 : "0:bootconfig_1" [ 0.866526] 0x000000300000-0x000000600000 : "0:qsee" [ 0.874354] 0x000000600000-0x000000900000 : "0:qsee_1" [ 0.879238] 0x000000900000-0x000000980000 : "0:devcfg" [ 0.882146] 0x000000980000-0x000000a00000 : "0:devcfg_1" [ 0.887258] 0x000000a00000-0x000000a80000 : "0:apdp" [ 0.892713] 0x000000a80000-0x000000b00000 : "0:apdp_1" [ 0.897653] 0x000000b00000-0x000000b80000 : "0:rpm" [ 0.902608] 0x000000b80000-0x000000c00000 : "0:rpm_1" [ 0.907386] 0x000000c00000-0x000000c80000 : "0:cdt" [ 0.912607] 0x000000c80000-0x000000d00000 : "0:cdt_1" [ 0.917271] 0x000000d00000-0x000000d80000 : "0:appsblenv" [ 0.922505] 0x000000d80000-0x000000e80000 : "0:appsbl" [ 0.928287] 0x000000e80000-0x000000f80000 : "0:appsbl_1" [ 0.933362] 0x000000f80000-0x000001000000 : "0:art" [ 0.938384] 0x000001000000-0x000001080000 : "0:art.bak" [ 0.943033] 0x000001080000-0x000001180000 : "config" [ 0.948607] 0x000001180000-0x000001280000 : "boarddata1" [ 0.953835] 0x000001280000-0x000001380000 : "boarddata2" [ 0.959091] 0x000001380000-0x000001480000 : "pot" [ 0.964451] 0x000001480000-0x000001980000 : "dnidata" [ 0.972357] 0x000001980000-0x000003680000 : "kernel" [ 0.997262] 0x00000e880000-0x000020000000 : "rootfs" [ 1.228555] mtd: setting mtd25 (rootfs) as root device [ 1.228852] mtdsplit: no squashfs found in "rootfs" [ 1.240511] spmi spmi-0: PMIC arbiter version v2 (0x20010000) [ 1.243568] s1: supplied by regulator-dummy [ 1.245412] s2: supplied by regulator-dummy [ 1.249401] vdd_s3: supplied by regulator-dummy [ 1.253705] vdd_s4: supplied by regulator-dummy [ 1.258228] s5: supplied by regulator-dummy [ 1.262622] l1: supplied by regulator-dummy [ 1.266756] l2: supplied by regulator-dummy [ 1.270913] l3: supplied by regulator-dummy [ 1.275120] l4: supplied by regulator-dummy [ 1.279255] l5: supplied by regulator-dummy [ 1.283424] l6: supplied by regulator-dummy [ 1.287608] l7: supplied by regulator-dummy [ 1.291753] l8: supplied by regulator-dummy [ 1.295945] l9: supplied by regulator-dummy [ 1.300208] l11: supplied by regulator-dummy [ 1.304277] l12: supplied by regulator-dummy [ 1.308771] l13: supplied by regulator-dummy [ 1.329036] i2c_dev: i2c /dev entries driver [ 1.334149] sdhci: Secure Digital Host Controller Interface driver [ 1.334193] sdhci: Copyright(c) Pierre Ossman [ 1.339225] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.347096] remoteproc remoteproc0: releasing cd00000.q6v5_wcss [ 1.351558] NET: Registered PF_INET6 protocol family [ 1.355950] Segment Routing with IPv6 [ 1.360271] In-situ OAM (IOAM) with IPv6 [ 1.363899] NET: Registered PF_PACKET protocol family [ 1.367825] 8021q: 802.1Q VLAN Support v1.8 [ 1.388557] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 1.388859] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0 [ 1.394869] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1 [ 1.401282] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0 [ 1.408955] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable [ 1.416464] cpr3_mem_acc_init: apc: not using memory accelerator regulator [ 1.425596] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 704000 uV [ 1.432544] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 808000 uV [ 1.442527] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 864000 uV [ 1.452335] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop= 960000 uV [ 1.462194] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 718, quot_offset[ 7]= 0 [ 1.471948] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 919, quot_offset[ 7]= 200 [ 1.482807] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]=1016, quot_offset[ 7]= 95 [ 1.493743] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1195, quot_offset[ 7]= 175 [ 1.504817] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop [ 1.507430] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 19200 KHz, changing to: 1017600 KHz [ 1.523364] remoteproc remoteproc0: cd00000.q6v5_wcss is available [ 1.533504] ubi0: attaching mtd25 [ 2.112002] random: crng init done [ 2.803768] ubi0: scanning is finished [ 2.811224] ubi0: attached mtd25 (name "rootfs", size 279 MiB) [ 2.811267] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 2.815977] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 2.822823] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 2.829676] ubi0: good PEBs: 2236, bad PEBs: 0, corrupted PEBs: 0 [ 2.836449] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 [ 2.842704] ubi0: max/mean erase counter: 7/4, WL threshold: 4096, image sequence number: 31865999 [ 2.849819] ubi0: available PEBs: 0, total reserved PEBs: 2236, PEBs reserved for bad PEB handling: 80 [ 2.858771] ubi0: background thread "ubi_bgt0d" started, PID 520 [ 2.859428] block ubiblock0_1: created from ubi0:1(rootfs) [ 2.877321] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. [ 2.877727] Freeing unused kernel memory: 1216K [ 2.932054] Run /sbin/init as init process [ 2.932075] with arguments: [ 2.932078] /sbin/init [ 2.932081] with environment: [ 2.932083] HOME=/ [ 2.932086] TERM=linux [ 3.058545] init: Console is alive [ 3.058670] init: - watchdog - [ 3.430917] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 3.589684] ssdk_switch_device_num_init[1335]:INFO:ess-switch dts node number: 1 [ 3.589799] ssdk_dt_get_switch_node[1124]:INFO:ess-switch DT exist! [ 3.596201] ssdk_dt_parse_access_mode[999]:INFO:switch_access_mode: local bus [ 3.602151] ssdk_dt_parse_access_mode[1012]:INFO:switchreg_base_addr: 0x3a000000 [ 3.609438] ssdk_dt_parse_access_mode[1013]:INFO:switchreg_size: 0x1000000 [ 3.616910] ssdk_dt_parse_mac_mode[327]:INFO:mac mode = 0x0 [ 3.623586] ssdk_dt_parse_mac_mode[336]:INFO:mac mode1 = 0xff [ 3.629053] ssdk_dt_parse_mac_mode[345]:INFO:mac mode2 = 0xd [ 3.635011] ssdk_dt_parse_uniphy[364]:INFO:ess-uniphy DT exist! [ 3.640786] ssdk_dt_parse_intf_mac[942]:INFO:dp1 MAC c8:9e:43:82:f0:c0 [ 3.646364] ssdk_dt_parse_intf_mac[942]:INFO:dp2 MAC c8:9e:43:82:f0:c1 [ 3.652958] ssdk_dt_parse_intf_mac[942]:INFO:dp3 MAC c8:9e:43:82:f0:c2 [ 3.659557] ssdk_plat_init[1692]:INFO:ssdk_plat_init start [ 3.783168] ssdk_gcc_clock_init[1275]:INFO:SSDK gcc clock init successfully! [ 3.784280] malibu_phy_api_ops_init[2846]:INFO:qca probe malibu phy driver succeeded! [ 3.794341] aquantia_phy_api_ops_init[2241]:INFO:qca probe aquantia phy driver succeeded! [ 3.797692] regi_init[3953]:INFO:Initializing HPPE!! [ 4.041990] ssdk_ppe_reset_init[1535]:INFO:ppe reset successfully! [ 4.045588] qca_hppe_portctrl_hw_init[126]:INFO:Hawkeye PPE port initializing [ 5.092030] ssdk_switch_register[2017]:INFO:Chip version 0x1500 [ 5.092065] qca_link_polling_select[1487]:INFO:link-polling-required node does not exist [ 5.096753] ssdk_switch_register[2043]:INFO:polling is selected [ 5.105100] regi_init[3957]:INFO:Initializing HPPE Done!! [ 5.110825] ssdk_genl_init[211]:INFO:ssdk genl family register success. [ 5.116298] regi_init[4020]:INFO:qca-ssdk module init succeeded! [ 5.124711] EDMA ver 1 hw init [ 5.129171] EDMA HW Reset completed succesfully [ 5.131846] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7) [ 5.136266] RxDesc:1 (15-15) RxFill:1 (7-7) [ 5.142173] Generic PHY 90000.mdio-1:00: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:00, irq=POLL) [ 5.146251] nss-dp 3a001000.dp1 lan4: Registered netdev lan4(qcom-id:1) [ 5.155678] Generic PHY 90000.mdio-1:01: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:01, irq=POLL) [ 5.162341] nss-dp 3a001200.dp2 lan3: Registered netdev lan3(qcom-id:2) [ 5.171766] Generic PHY 90000.mdio-1:02: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:02, irq=POLL) [ 5.178507] nss-dp 3a001400.dp3 lan2: Registered netdev lan2(qcom-id:3) [ 5.187822] GMAC4(ffffff8002f038c0) Invalid MAC@ - using a2:57:40:75:10:c4 [ 5.194207] Generic PHY 90000.mdio-1:03: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:03, irq=POLL) [ 5.201522] nss-dp 3a001600.dp4 lan1: Registered netdev lan1(qcom-id:4) [ 5.210803] GMAC5(ffffff8002f048c0) Invalid MAC@ - using 76:2c:6c:78:fc:f0 [ 5.217232] Generic PHY 90000.mdio-1:04: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:04, irq=POLL) [ 5.224535] nss-dp 3a001800.dp5 wan: Registered netdev wan(qcom-id:5) [ 5.233811] GMAC6(ffffff8002f058c0) Invalid MAC@ - using 82:9a:84:e0:8b:be [ 5.240328] Generic Clause 45 PHY 90000.mdio-1:07: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:07, irq=POLL) [ 5.247353] nss-dp 3a001a00.dp6 lan5: Registered netdev lan5(qcom-id:6) [ 5.257280] ********************************************************** [ 5.263772] * NSS Data Plane driver [ 5.270353] ********************************************************** [ 5.285435] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 5.285482] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 5.289940] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000000002010010 [ 5.297445] xhci-hcd xhci-hcd.1.auto: irq 91, io mem 0x08a00000 [ 5.306842] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 5.312653] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 5.318208] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 5.326151] hub 1-0:1.0: USB hub found [ 5.332416] hub 1-0:1.0: 1 port detected [ 5.336305] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 5.340419] hub 2-0:1.0: USB hub found [ 5.348261] hub 2-0:1.0: 1 port detected [ 5.352119] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller [ 5.355884] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 3 [ 5.361307] xhci-hcd xhci-hcd.2.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000000002010010 [ 5.368774] xhci-hcd xhci-hcd.2.auto: irq 92, io mem 0x08c00000 [ 5.378197] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller [ 5.384009] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 4 [ 5.389563] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed [ 5.397501] hub 3-0:1.0: USB hub found [ 5.403734] hub 3-0:1.0: 1 port detected [ 5.407700] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 5.411763] hub 4-0:1.0: USB hub found [ 5.419630] hub 4-0:1.0: 1 port detected [ 5.424850] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 5.431850] init: - preinit - [ 7.844917] UBIFS (ubi0:2): Mounting in unauthenticated mode [ 7.845021] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 760 [ 7.927255] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data" [ 7.927303] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 7.934101] UBIFS (ubi0:2): FS size: 259031040 bytes (247 MiB, 2040 LEBs), max 2053 LEBs, journal size 12951552 bytes (12 MiB, 102 LEBs) [ 7.943997] UBIFS (ubi0:2): reserved for root: 4952683 bytes (4836 KiB) [ 7.956307] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 73F1A91B-1765-4BE4-B4C6-1FE79C28A0C8, small LPT model [ 7.963600] mount_root: overlay filesystem has not been fully initialized yet [ 7.974433] mount_root: switching to ubifs overlay [ 7.984410] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 8.116071] urandom-seed: Seed file not found (/etc/urandom.seed) [ 8.151809] procd: - early - [ 8.151901] procd: - watchdog - [ 8.686888] procd: - watchdog - [ 8.687141] procd: - ubus - [ 8.743729] procd: - init - [ 8.872866] urngd: v1.0.2 started. [ 8.891105] kmodloader: loading kernel modules from /etc/modules.d/* [ 8.920353] Loading modules backported from Linux version v6.1-rc8-0-g76dcd734eca2 [ 8.920392] Backport generated by backports.git v5.15.81-1-41-g02e352527db5 [ 8.931638] NET: Registered PF_QIPCRTR protocol family [ 8.964549] PPP generic driver version 2.4.2 [ 8.965202] NET: Registered PF_PPPOX protocol family [ 8.973115] ath11k c000000.wifi: ipq8074 hw2.0 [ 8.973148] ath11k c000000.wifi: FW memory mode: 0 [ 8.977317] remoteproc remoteproc0: powering up cd00000.q6v5_wcss [ 8.993947] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668 [ 9.970726] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up [ 9.972994] ath11k c000000.wifi: qmi ignore invalid mem req type 3 [ 9.977732] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff [ 9.983229] ath11k c000000.wifi: fw_version 0x250a04a5 fw_build_timestamp 2021-12-20 07:09 fw_build_id WLAN.HK.2.5.0.1-01208-QCAHKSWPL_SILICONZ-1 [ 9.992924] kmodloader: done loading kernel modules from /etc/modules.d/* [ 12.128788] br-lan: port 1(lan1) entered blocking state [ 12.128834] br-lan: port 1(lan1) entered disabled state [ 12.133076] device lan1 entered promiscuous mode [ 12.145957] br-lan: port 2(lan2) entered blocking state [ 12.146000] br-lan: port 2(lan2) entered disabled state [ 12.150188] device lan2 entered promiscuous mode [ 12.158516] nss-dp 3a001200.dp2 lan3: PHY Link up speed: 1000 [ 12.160698] br-lan: port 3(lan3) entered blocking state [ 12.165757] br-lan: port 3(lan3) entered disabled state [ 12.170935] device lan3 entered promiscuous mode [ 12.179349] br-lan: port 4(lan4) entered blocking state [ 12.180816] br-lan: port 4(lan4) entered disabled state [ 12.186009] device lan4 entered promiscuous mode [ 12.194295] br-lan: port 5(lan5) entered blocking state [ 12.195831] br-lan: port 5(lan5) entered disabled state [ 12.200951] device lan5 entered promiscuous mode [ 12.756975] br-lan: port 6(phy1-ap0) entered blocking state [ 12.757022] br-lan: port 6(phy1-ap0) entered disabled state [ 12.761551] device phy1-ap0 entered promiscuous mode [ 12.767106] br-lan: port 6(phy1-ap0) entered blocking state [ 12.772137] br-lan: port 6(phy1-ap0) entered forwarding state [ 12.778364] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [ 12.809396] br-lan: port 7(phy2-ap0) entered blocking state [ 12.809442] br-lan: port 7(phy2-ap0) entered disabled state [ 12.814229] device phy2-ap0 entered promiscuous mode [ 12.819600] br-lan: port 7(phy2-ap0) entered blocking state [ 12.824600] br-lan: port 7(phy2-ap0) entered forwarding state [ 12.895131] br-lan: port 8(phy0-ap0) entered blocking state [ 12.895177] br-lan: port 8(phy0-ap0) entered disabled state [ 12.899708] device phy0-ap0 entered promiscuous mode [ 12.905283] br-lan: port 8(phy0-ap0) entered blocking state [ 12.910291] br-lan: port 8(phy0-ap0) entered forwarding state [ 13.132114] br-lan: port 3(lan3) entered blocking state [ 13.132166] br-lan: port 3(lan3) entered forwarding state [ 13.136478] br-lan: port 6(phy1-ap0) entered disabled state [ 13.141944] br-lan: port 7(phy2-ap0) entered disabled state [ 13.147330] br-lan: port 8(phy0-ap0) entered disabled state [ 13.597949] IPv6: ADDRCONF(NETDEV_CHANGE): phy0-ap0: link becomes ready [ 13.598130] br-lan: port 8(phy0-ap0) entered blocking state [ 13.603398] br-lan: port 8(phy0-ap0) entered forwarding state [ 15.153680] IPv6: ADDRCONF(NETDEV_CHANGE): phy1-ap0: link becomes ready [ 15.153861] br-lan: port 6(phy1-ap0) entered blocking state [ 15.159121] br-lan: port 6(phy1-ap0) entered forwarding state [ 33.122035] l11: disabling [ 74.771747] IPv6: ADDRCONF(NETDEV_CHANGE): phy2-ap0: link becomes ready [ 74.771970] br-lan: port 7(phy2-ap0) entered blocking state [ 74.777183] br-lan: port 7(phy2-ap0) entered forwarding state


Below is the method to unbrick without TTL access (most of the instructions on the internet doesn't work for this device, including the ones on Netgear website).

Assume using a linux pc for unbrick, and tftp client is already installed:

  1. Connect PC to router's lan with cable, set static ip as 192.168.1.10
  2. Download the stock firmware to PC, save as 1.img in the working dir
  3. Run in terminal:
    tftp 192.168.1.1
    >binary
    >put  1.img  (don't presss ENTER now, for this line)
  4. Power off the device, hold the RESET button, power on device, keep RESET holding all the time
  5. After holding for about 20~30s, the device's power LED enters into a fast blinking status(and if you ping 192.168.1.1 in another terminal you start to get response). Release the RESET button.
  6. Press ENTER button in the tftp.
  7. Wait for transfer to finish(there is no message indicating tftp is working during transfering, but use ifconfig you can see traffic going out at a few MB/s). After transfer is done, you will see success message from tftp.
  8. Wait for the device to auto reboot.
  9. (Optional) Do a reset of the router in the normal way, after device already starts up.

This method doesn't require the device in an already bricked status. It's confirmed working on RAX120v2, it's also known to work on RAX70.

In the case tftp doesn't work for you (e.g. no ethernet available for your PC), a TTL + USB method can be used for back/restore the mtd partitions of the device.

Install the initramfs of the experimental fork of into an USB stick, perform a USB-boot with TTL. (see the steps on the experimental firmware section).

Once running in the initramfs, backup/restore mtd partitions with below commands:

dd if=/dev/mtdblockXX  of=/tmp/mtdXX.bak     (for backup, restore XX with the partition num you want to backup)
dd of=/tmp/mtdXX.bak  if=/dev/mtdblockXX     (for restore)

Usually what you need to backup/restore is the firmware parititon, you can find the partition num from /proc/mtd.

Note

The mtd partition table seen from the bootloader is not same as seen from official firmware or openwrt.

As a result, this method is not really suggested, since mistakes or confusions can happen more easily.

This website contains much information about this device: link

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