[OpenWrt Wiki] Dynalink DL-WRX36 (2024)

Dynalink DL-WRX36 is a Qualcomm based WiFi 6 router with 4 1G and 1 2.5G ports.

Supported Versions

Hardware highlights

Installation

The ipq807x target was renamed to qualcommax in main to support other Qualcomm AX chips, and ipq807x was bumped down to subtarget qualcommax/ipq807x. However in stable 23.05 it is still ipq807x/generic. The guide below has filenames for 23.05, but for main snapshots you need to adjust filenames:

  • ipq807x-generic → qualcommax-ipq807x

A detailed guide on how to install OpenWRT via SSH is available at this forum post. This guide was adapted to be in the “Installation” section found below.

Also download the 23.05.3 factory image. The stable images are linked above, double check that you have the latest version in case this doc page was not updated.

Due to this device being under development, users may want to install main snapshot images built daily instead. For that, use the firmware selector.

It is recommended to download all 3 images before installation:

  • “initramfs” (aka kernel) image for initial access (mandatory)

  • “factory” image for flashing to OpenWrt (mandatory)

  • “sysupgrade” image for updating to latest version of OpenWrt (optional)

Copy and paste commands from below to avoid unintentional typos which could result in needing a serial recovery.

Part 0 - Prerequisites

  1. Before beginning, make sure to get a USB flash drive that you can format (you will lose all data on the flash drive). It will only need ~12MB of total space, so any flash drive should do.

  2. Plug the USB flash drive into your computer and format it to have a FAT32 file system.

Part 1 - Copy and boot initramfs

Complete 'Part 1 option A' OR 'Part 1 option B' to boot “initramfs”, then use Part 2 to install the “factory” OpenWrt image.

Part 1, option A - Use SSH on the OEM firmware to copy and boot "initramfs"

  1. Copy the initramfs image to the FAT32-formatted flash drive from Part 0.

  2. Disconnect the USB flash drive from your computer and plug it into the USB port on the back of the router.

  3. Plug the router into your computer using an ethernet cable. On the router side, make sure to plug the ethernet cable into one of the four LAN ports (labeled ETH1-ETH4) and NOT the WAN port (labeled INTERNET).

  4. Open a browser and go to http://login.dynalink.

  5. Enter the credentials found on the bottom of the router.

  6. Enable SSH on the router (choose either bullet point a OR bullet point b):

    1. A premade backup config file which enables SSH can be found on the forum. Download it to your computer then upload it to the router by going to System Settings > Configuration and Reset tab, wait for the reboot, then logon using SSH as: admin / askey1234. Note this is the Askey OEM login which will change to root login once OpenWrt is flashed.

  7. Change the boot command so it loads the initramfs image on next boot (fallback to OEM firmware is provided):

    1. If you are installing 23.05.3 stable, run:

      # fw_setenv bootcmd 'usb start && fatload usb 0:1 0x44000000 openwrt-23.05.3-ipq807x-generic-dynalink_dl-wrx36-initramfs-uImage.itb && bootm 0x44000000; bootipq'
    2. If you are installing main snapshot, run:

      # fw_setenv bootcmd 'usb start && fatload usb 0:1 0x44000000 openwrt-qualcommax-ipq807x-dynalink_dl-wrx36-initramfs-uImage.itb && bootm 0x44000000; bootipq'
  8. Reboot the device to boot the initramfs:

    # reboot
  9. Continue to Part 2 of the installation guide.

Part 1, option B - Use a serial connection (3.3V) to copy and boot "initramfs"

If you're planning on using serial for flashing but the serial output stops at “S - Core 0 Frequency, 1651 MHz”, read this forum post for instructions on how to fix it.

  1. Stop auto boot to get to U-boot shell.

  2. Transfer initramfs image to device using TFTP and a FAT32-formatted USB flash drive. Adjust filenames for qualcommax if needed.

    1. For USB run:

      # usb start# fatload usb 0:1 0x44000000 openwrt-ipq807x-generic-dynalink_dl-wrx36-initramfs-uImage.itb
    2. For TFTP run:

      # setenv serverip 192.168.1.10 (IP of TFTP server host)# setenv ipaddr 192.168.1.1 (IP used by the router, for getting the image, must be in the same subnet as the TFTP host)# tftpboot openwrt-ipq807x-generic-dynalink_dl-wrx36-initramfs-fit-uImage.itb
  3. Boot the initramfs image:

    # bootm
  4. Continue to Part 2 of the installation guide.

Part 2 - Copy and boot the OpenWrt factory image

  • The default LAN IP of the booted initramfs is 192.168.1.1. If you're unable to connect to 192.168.1.1, the initramfs boot failed, and the router is still running the Dynalink firmware.

  • WinSCP & scp now default to the SFTP protocol, make sure to tell your application to use the scp protocol.

  1. Copy the OpenWrt factory image to the router and store it in /tmp

    $ scp openwrt-23.05.3-ipq807x-generic-dynalink_dl-wrx36-squashfs-factory.ubi root@192.168.1.1:/tmp/factory_image.ubi
  2. Connect to the device over SSH (on a LAN port)

    $ ssh root@192.168.1.1
  3. Check the MTD partition table. rootfs and rootfs_1 should be mtd18 and mtd20 depending on the current OEM slot.

    # cat /proc/mtd
  4. Format both rootfs partitions:

    # ubiformat /dev/mtd18 -y -f /tmp/factory_image.ubi# ubiformat /dev/mtd20 -y -f /tmp/factory_image.ubi
  5. Set the mapping for the U-Boot device id:

    # fw_setenv mtdids 'nand0=nand0'
  6. Get the offset of mtd18 to determine the current OEM slot:

    # cat /sys/class/mtd/mtd18/offset
    1. If the current offset is 16777216 (0x1000000), the current OEM slot is 1.

    2. If the current offset is 127926272 (0x7a00000), the current OEM slot is 2.

  7. Define the flash partitions:

    1. If the current OEM slot is 1, run:

      # fw_setenv mtdparts 'mtdparts=nand0:0x6100000@0x1000000(fs),0x6100000@0x7a00000(fs_1)'
    2. If the current OEM slot is 2, run:

      # fw_setenv mtdparts 'mtdparts=nand0:0x6100000@0x7a00000(fs),0x6100000@0x1000000(fs_1)'
  8. Set the boot command to use the USB as a fail-safe in case something goes wrong. Make sure that you set the filename below to match the actual image you placed on the USB (e.g. snapshots use qualcommax), as this example uses the 23.05.3 name. More details about this fail-safe method can be found in this forum comment.

    # fw_setenv bootcmd 'run openwrtusb; run openwrtboot'# fw_setenv openwrtboot 'setenv bootargs console=ttyMSM0,115200n8 ubi.mtd=rootfs rootfstype=squashfs rootwait; ubi part fs; ubi read 0x44000000 kernel; bootm 0x44000000#config@rt5010w-d350-rev0'# fw_setenv openwrtusb 'usb start && fatload usb 0:1 0x44000000 openwrt-23.05.3-ipq807x-generic-dynalink_dl-wrx36-initramfs-uImage.itb && bootm 0x44000000'
  9. Unplug the USB from the back of the router.

  10. Reboot the device:

    # reboot
  11. If your device successfully boots into OpenWrt, you can set the boot command to no longer use the USB as a fail-safe.

    $ ssh root@192.168.1.1# fw_setenv bootcmd 'setenv bootargs console=ttyMSM0,115200n8 ubi.mtd=rootfs rootfstype=squashfs rootwait; ubi part fs; ubi read 0x44000000 kernel; bootm 0x44000000#config@rt5010w-d350-rev0'

Installation is complete. OpenWrt updates may now be flashed with LuCI using a “sysupgrade” image.

Return to stock

1. Capture an OTA or download from forum, rmandrad uploaded one to mega.nz

# md5sum Dynalink-RT5010W-d350-V1.10.01.201_sysupgrade_firmware_wififw.binc368dbf24e24df16d61b97a40feb5a92 Dynalink-RT5010W-d350-V1.10.01.201_sysupgrade_firmware_wififw.bin

2. ubiformat the extracted stock rootfs

As documented below, make sure you use a recent (>= 2022.Q4) u-boot dumpimage.

https://forum.openwrt.org/t/dynalink-dl-wrx36-askey-rt5010w-ipq8072a-technical-discussion/110454/398

Hardware

Info

Architecture ARMv8
Vendor Qualcomm
Bootloader U-Boot
System-On-Chip Qualcomm IPQ8072A
CPU/Speed 2.2 GHz
Flash-Chip MT29F2G08ABBGAH4
Flash size 256 MiB
RAM 1024 MiB
Wireless 2.4GHz QCN5024 802.11b/g/n/ax
Wireless 5GHz QCN5054 802.11a/g/n/ac/ax
Ethernet 4x 10/100/1000 Mbit/s (QCA8075) 1x 1000/2500 Mbit/s (QCA8081)
Switch integrated in the SoC
USB 1x 3.0
Serial Yes

Flash Layout

dev: size erasesize namemtd0: 00100000 00020000 "0:sbl1"mtd1: 00100000 00020000 "0:mibib"mtd2: 00080000 00020000 "0:bootconfig"mtd3: 00080000 00020000 "0:bootconfig1"mtd4: 00300000 00020000 "0:qsee"mtd5: 00300000 00020000 "0:qsee_1"mtd6: 00080000 00020000 "0:devcfg"mtd7: 00080000 00020000 "0:devcfg_1"mtd8: 00080000 00020000 "0:apdp"mtd9: 00080000 00020000 "0:apdp_1"mtd10: 00080000 00020000 "0:rpm"mtd11: 00080000 00020000 "0:rpm_1"mtd12: 00080000 00020000 "0:cdt"mtd13: 00080000 00020000 "0:cdt_1"mtd14: 00080000 00020000 "0:appsblenv"mtd15: 00100000 00020000 "0:appsbl"mtd16: 00100000 00020000 "0:appsbl_1"mtd17: 00080000 00020000 "0:art"mtd18: 06100000 00020000 "rootfs"mtd19: 00900000 00020000 "0:wififw"mtd20: 06100000 00020000 "rootfs_1"mtd21: 00900000 00020000 "0:wififw_1"mtd22: 01600000 00020000 "ubifs"mtd23: 00080000 00020000 "0:ethphyfw"mtd24: 00280000 00020000 "certificate"

Photos

Bottom:

PCB Top:

PCB Top - Heatsink Removed:

PCB Bottom:

Enclosure

Opening the case: From the bottom, just remove the 4 rubber feet and screws.

Dimensions: This device is narrow and tall with internal antennas inside the plastic case.
W 100 x H 230 x D 150 mm
W 3.9 x H 9.1 x D 5.9 inches

Serial

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

How to connect to the Serial Port of this specific device:

Serial connection parameters 115200, 8N1, 3.3V

The connector is a 4-pin JST-PH with 2 mm pin spacing. (Pins are closer to each other than in a normal typical serial header)

JTAG

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

How to connect to the JTAG Port of this specific device:
Insert photo of PCB with markings for JTAG port

Bootlogs

OEM bootlog

admin@rt5010w-d350:~# dmesg[ 0.000000] Booting Linux on physical CPU 0x0[ 0.000000] Linux version 4.4.60 (dailybuild@PG2-DB60-BS) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 0a3a4f0+r49254) ) #1 SMP PREEMPT Thu Mar 24 02:58:16 CST 2022[ 0.000000] Boot CPU: AArch64 Processor [410fd034][ 0.000000] Ignoring memory range 0x40000000 - 0x41000000[ 0.000000] Machine: Askey RT5010W-D350/REV0[ 0.000000] efi: Getting EFI parameters from FDT:[ 0.000000] efi: UEFI not found.[ 0.000000] Reserved memory: OVERLAP DETECTED![ 0.000000] wifi_dump@51100000 (0x0000000051100000--0x0000000051700000) overlaps with wigig_dump@51300000 (0x0000000051300000--0x0000000051700000)[ 0.000000] On node 0 totalpages: 228608[ 0.000000] DMA zone: 3572 pages used for memmap[ 0.000000] DMA zone: 0 pages reserved[ 0.000000] DMA zone: 228608 pages, LIFO batch:31[ 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 @ffffffc03ef4e000 s20736 r8192 d32512 u61440[ 0.000000] pcpu-alloc: s20736 r8192 d32512 u61440 alloc=15*4096[ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 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: 225036[ 0.000000] Kernel command line: ubi.mtd=rootfs root=mtd:ubi_rootfs rootfstype=squashfs uboot-version=0.0.1-1-80112-CS rootwait swiotlb=1 coherent_pool=2M[ 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 0x7fe05000-0x7fe45000] (0MB) mapped at [ffffffc03ee05000-ffffffc03ee44fff][ 0.000000] Memory: 886296K/914432K available (5364K kernel code, 613K rwdata, 2324K rodata, 224K init, 464K bss, 28136K 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 : 0xffffffc000804000 - 0xffffffc00083c000 ( 224 KB)[ 0.000000] .text : 0xffffffc000080000 - 0xffffffc000804000 ( 7696 KB)[ 0.000000] .data : 0xffffffc00084b000 - 0xffffffc0008e4400 ( 613 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.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns[ 0.000422] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)[ 0.000434] pid_max: default: 32768 minimum: 301[ 0.000522] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)[ 0.000532] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)[ 0.001184] EFI services will not be available.[ 0.001210] ASID allocator initialised with 65536 entries[ 0.051979] MSM Memory Dump base table set up[ 0.052000] MSM Memory Dump apps data table set up[ 0.090074] Detected VIPT I-cache on CPU1[ 0.090119] CPU1: Booted secondary processor [410fd034][ 0.120060] Detected VIPT I-cache on CPU2[ 0.120090] CPU2: Booted secondary processor [410fd034][ 0.150087] Detected VIPT I-cache on CPU3[ 0.150115] CPU3: Booted secondary processor [410fd034][ 0.150165] Brought up 4 CPUs[ 0.150190] SMP: Total of 4 processors activated.[ 0.150199] CPU: All CPU(s) started at EL1[ 0.150223] alternatives: patching kernel code[ 0.167574] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns[ 0.167600] futex hash table entries: 1024 (order: 5, 131072 bytes)[ 0.167902] pinctrl core: initialized pinctrl subsystem[ 0.168806] NET: Registered protocol family 16[ 0.190017] cpuidle: using governor ladder[ 0.220035] cpuidle: using governor menu[ 0.220256] NET: Registered protocol family 42[ 0.220361] vdso: 2 pages (1 code @ ffffffc000851000, 1 data @ ffffffc000850000)[ 0.220392] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.[ 0.221041] DMA: preallocated 2048 KiB pool for atomic allocations[ 0.221176] CPU: IPQ8072A, SoC Version: 2.0[ 0.221600] IPC logging disabled[ 0.221606] IPC logging disabled[ 0.221610] IPC logging disabled[ 0.221615] IPC logging disabled[ 0.221619] IPC logging disabled[ 0.223392] gpiochip_add: registered GPIOs 0 to 69 on device: 1000000.pinctrl[ 0.223404] GPIO chip 1000000.pinctrl: created GPIO range 0->69 ==> 1000000.pinctrl PIN 0->69[ 0.224225] Soc version is not 1, changing clock offsets[ 0.233094] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ![ 0.235411] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ![ 0.238812] sps:sps is ready.[ 0.243873] spmi spmi-0: PMIC Arb Version-2 (0x20010000)[ 0.250277] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4[ 0.250577] qcom,cpr3-npu-regulator a4000.npu-cpr: NPU CPR valid fuse count: 2[ 0.281072] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/soc/dummy-regulator@0[0]'[ 0.281279] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/fixed-regulator@0[0]'[ 0.281973] pps_core: LinuxPPS API ver. 1 registered[ 0.281981] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>[ 0.282004] PTP clock support registered[ 0.283389] Advanced Linux Sound Architecture Driver Initialized.[ 0.284042] clocksource: Switched to clocksource arch_sys_counter[ 0.287196] NET: Registered protocol family 2[ 0.287804] TCP established hash table entries: 8192 (order: 4, 65536 bytes)[ 0.287912] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)[ 0.288097] TCP: Hash tables configured (established 8192 bind 8192)[ 0.288150] UDP hash table entries: 512 (order: 2, 16384 bytes)[ 0.288187] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)[ 0.288356] NET: Registered protocol family 1[ 0.288398] PCI: CLS 0 bytes, default 128[ 0.288814] hw perfevents: enabled with armv8_cortex_a53 PMU driver, 7 counters available[ 0.296406] squashfs: version 4.0 (2009/01/31) Phillip Lougher[ 0.296424] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.[ 0.299685] Key type asymmetric registered[ 0.299701] Asymmetric key parser 'x509' registered[ 0.299731] io scheduler noop registered[ 0.299744] io scheduler deadline registered (default)[ 0.305956] msm_rpm_log_probe: OK[ 0.306282] msm-dcc b3000.dcc: DCC XPU is not specified[ 0.306530] msm-dcc b3000.dcc: jiffies_64: 0xffff8aee, cntvct_64: 0xcc762f7[ 0.306542] msm-dcc b3000.dcc: gcnt_hi: 0x00000000(0xffffff8000584004)[ 0.306553] msm-dcc b3000.dcc: gcnt_lo: 0x0cc764cf(0xffffff8000584000)[ 0.307106] TZ SMMU State: SMMU Stage2 Enabled[ 0.307163] TZ Log : Will warn on Access Violation, as paniconaccessviolation is not set[ 0.308752] msm_serial 78b1000.serial: msm_serial: detected port #0[ 0.308796] msm_serial 78b1000.serial: uartclk = 19200000[ 0.308832] 78b1000.serial: ttyMSM0 at MMIO 0x78b1000 (irq = 78, base_baud = 1200000) is a MSM[ 0.308850] msm_serial: console setup on port #0[ 0.977354] console [ttyMSM0] enabled[ 0.982426] msm_serial: driver initialized[ 0.985960] msm_serial_hsl_init: driver initialized[ 0.997915] brd: module loaded[ 0.998520] spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64[ 1.000684] spi_qup 78b8000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64[ 1.008500] m25p80 spi32766.0: unrecognized JEDEC id bytes: 00, 0, 0[ 1.014903] QPIC controller hw version Major:1, Minor:5[ 1.020715] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xaa[ 1.025604] nand: ONFI 10-Compliant Micron MT29F2G08ABBGAH4[ 1.032150] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 128[ 1.037562] 25 ofpart partitions found on MTD device qcom_nand.0[ 1.045097] Creating 25 MTD partitions on "qcom_nand.0":[ 1.051336] 0x000000000000-0x000000100000 : "0:SBL1"[ 1.058082] 0x000000100000-0x000000200000 : "0:MIBIB"[ 1.062921] 0x000000200000-0x000000280000 : "0:BOOTCONFIG"[ 1.067530] 0x000000280000-0x000000300000 : "0:BOOTCONFIG1"[ 1.072878] 0x000000300000-0x000000600000 : "0:QSEE"[ 1.080229] 0x000000600000-0x000000900000 : "0:QSEE_1"[ 1.085459] 0x000000900000-0x000000980000 : "0:DEVCFG"[ 1.088486] 0x000000980000-0x000000a00000 : "0:DEVCFG_1"[ 1.093621] 0x000000a00000-0x000000a80000 : "0:APDP"[ 1.099106] 0x000000a80000-0x000000b00000 : "0:APDP_1"[ 1.104056] 0x000000b00000-0x000000b80000 : "0:RPM"[ 1.108973] 0x000000b80000-0x000000c00000 : "0:RPM_1"[ 1.113750] 0x000000c00000-0x000000c80000 : "0:CDT"[ 1.119003] 0x000000c80000-0x000000d00000 : "0:CDT_1"[ 1.123671] 0x000000d00000-0x000000d80000 : "0:APPSBLENV"[ 1.128904] 0x000000d80000-0x000000e80000 : "0:APPSBL"[ 1.134625] 0x000000e80000-0x000000f80000 : "0:APPSBL_1"[ 1.139652] 0x000000f80000-0x000001000000 : "0:ART"[ 1.144761] 0x000001000000-0x000007100000 : "rootfs"[ 1.220012] mtd: device 18 (rootfs) set to be root filesystem[ 1.220273] mtdsplit: no squashfs found in "rootfs"[ 1.224750] 0x000007100000-0x000007a00000 : "0:WIFIFW_1"[ 1.236632] 0x000007a00000-0x00000db00000 : "rootfs_1"[ 1.308106] 0x00000db00000-0x00000e400000 : "0:WIFIFW"[ 1.315377] 0x00000e400000-0x00000fa00000 : "ubifs"[ 1.332160] 0x00000fa00000-0x00000fa80000 : "0:ETHPHYFW"[ 1.333162] 0x00000fa80000-0x00000fd00000 : "certificate"[ 1.339835] libphy: Fixed MDIO Bus: probed[ 1.342413] of_get_named_gpiod_flags: parsed 'phy-reset-gpio' property of node '/soc/mdio@90000[0]' - status (0)[ 1.562481] of_get_named_gpiod_flags: parsed 'phy-reset-gpio' property of node '/soc/mdio@90000[1]' - status (0)[ 1.782535] of_get_named_gpiod_flags: can't parse 'phy-reset-gpio' property of node '/soc/mdio@90000[2]'[ 1.782546] qca-mdio 90000.mdio: Could not find phy-reset-gpio[ 1.782670] libphy: qca_mdio: probed[ 1.788644] qca-mdio 90000.mdio: qca-mdio driver was registered[ 1.791196] Unable to create IPC log context![ 1.796921] Skip QCA8074V1 in V2 platform[ 1.801409] cnss[2]: INFO: Platform driver probed successfully. plat ffffffc03cdb0018 tgt 0xfffe[ 1.805394] i2c /dev entries driver[ 1.821691] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com[ 1.822147] sdhci: Secure Digital Host Controller Interface driver[ 1.829243] sdhci: Copyright(c) Pierre Ossman[ 1.835213] sdhci-pltfm: SDHCI platform and OF driver helper[ 1.840299] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed[ 1.845424] ICE IRQ = 82[ 1.854493] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000008b04000[ 1.856194] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000008b04000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000008b04000[ 1.873289] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000008b04000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000008b04000[ 1.889185] sps:BAM 0x0000000008b04000 is registered.<6>[ 1.898988] remoteproc remoteproc0: releasing cd00000.qcom_q6v5_wcss[ 1.902429] SPMI VADC - Min ch: 0 Max ch: 15[ 1.909688] of_graph_get_next_endpoint(): no port node found in /soc/csr@6001000[ 1.912171] coresight-csr 6001000.csr: CSR initialized[ 1.919661] of_graph_get_next_endpoint(): no port node found in /soc/cti@6010000[ 1.924612] of_graph_get_next_endpoint(): no port node found in /soc/cti@6011000[ 1.932116] of_graph_get_next_endpoint(): no port node found in /soc/cti@6012000[ 1.939513] of_graph_get_next_endpoint(): no port node found in /soc/cti@6013000[ 1.946881] of_graph_get_next_endpoint(): no port node found in /soc/cti@6014000[ 1.954263] of_graph_get_next_endpoint(): no port node found in /soc/cti@6015000[ 1.961625] of_graph_get_next_endpoint(): no port node found in /soc/cti@6016000[ 1.969033] of_graph_get_next_endpoint(): no port node found in /soc/cti@6017000[ 1.976398] of_graph_get_next_endpoint(): no port node found in /soc/cti@6018000[ 1.983758] of_graph_get_next_endpoint(): no port node found in /soc/cti@6019000[ 1.991158] of_graph_get_next_endpoint(): no port node found in /soc/cti@601a000[ 1.998535] of_graph_get_next_endpoint(): no port node found in /soc/cti@601b000[ 2.005915] of_graph_get_next_endpoint(): no port node found in /soc/cti@601c000[ 2.013278] of_graph_get_next_endpoint(): no port node found in /soc/cti@601d000[ 2.020667] of_graph_get_next_endpoint(): no port node found in /soc/cti@601e000[ 2.028049] of_graph_get_next_endpoint(): no port node found in /soc/cti@601f000[ 2.035426] of_graph_get_next_endpoint(): no port node found in /soc/cti@6198000[ 2.042803] of_graph_get_next_endpoint(): no port node found in /soc/cti@6199000[ 2.050240] of_graph_get_next_endpoint(): no port node found in /soc/cti@619a000[ 2.057578] of_graph_get_next_endpoint(): no port node found in /soc/cti@619b000[ 2.064959] of_graph_get_next_endpoint(): no port node found in /soc/cti@610c000[ 2.072484] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000006044000[ 2.079559] 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[ 2.096651] 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[ 2.112537] sps:BAM 0x0000000006044000 is registered.<6>[ 2.120287] coresight-tmc 6028000.tmc: TMC initialized[ 2.125005] coresight-tmc 6027000.tmc: TMC initialized[ 2.130128] coresight-funnel 6021000.funnel: FUNNEL initialized[ 2.135165] coresight-funnel 6100000.funnel: FUNNEL initialized[ 2.140963] coresight-funnel 6120000.funnel: FUNNEL initialized[ 2.146880] coresight-funnel 6130000.funnel: FUNNEL initialized[ 2.152784] coresight-funnel 61a1000.funnel: FUNNEL initialized[ 2.159191] coresight-etm4x 619c000.etm: ETM 4.0 initialized[ 2.164835] coresight-etm4x 619d000.etm: ETM 4.0 initialized[ 2.170727] coresight-etm4x 619e000.etm: ETM 4.0 initialized[ 2.176390] coresight-etm4x 619f000.etm: ETM 4.0 initialized[ 2.181804] coresight-replicator-qcom 6026000.replicator: REPLICATOR 1.0 initialized[ 2.187546] coresight-stm 6002000.stm: STM initialized[ 2.196092] of_graph_get_next_endpoint(): no port node found in /soc/hwevent@6101000[ 2.199950] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized[ 2.210882] NET: Registered protocol family 10[ 2.215798] MAP-T DMR module registered. enter [ 2.219376] Registering family.[ 2.223831] NET: Registered protocol family 17[ 2.226988] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.[ 2.231485] Bridge firewalling registered[ 2.244222] 8021q: 802.1Q VLAN Support v1.8[ 2.249433] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4[ 2.252297] pmd9655_s3: supplied by e-smps1-reg[ 2.259615] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0[ 2.263915] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1[ 2.270545] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0[ 2.278202] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable[ 2.285698] cpr3_mem_acc_init: apc: not using memory accelerator regulator[ 2.294829] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 704000 uV[ 2.301768] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 840000 uV[ 2.311766] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 896000 uV[ 2.321569] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop= 992000 uV[ 2.331435] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 660, quot_offset[ 7]= 0[ 2.341192] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 913, quot_offset[ 7]= 250[ 2.352041] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]=1004, quot_offset[ 7]= 90[ 2.362979] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1171, quot_offset[ 7]= 165[ 2.374050] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop[ 2.385359] qcom,cpr3-npu-regulator a4000.npu-cpr: NPU CPR valid fuse count: 2[ 2.391701] pmd9655_s4: supplied by e-smps1-reg[ 2.398861] cpr3_mem_acc_init: npu: not using memory accelerator regulator[ 2.403151] npu_corner: fused NOM: open-loop= 808000 uV[ 2.410106] npu_corner: fused TURBO: open-loop= 880000 uV[ 2.415957] npu_corner: fused NOM: open-loop= 808000 uV[ 2.421549] npu_corner: fused TURBO: open-loop= 880000 uV[ 2.427225] npu_corner: Normal and Cold condition init done. Default to normal.[ 2.433761] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 800000 KHz[ 2.440045] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1017600 KHz[ 2.448645] qcom-q6v5-wcss-pil cd00000.qcom_q6v5_wcss: ssr registeration success qcom_q6v5_wcss[ 2.455906] remoteproc remoteproc0: cd00000.qcom_q6v5_wcss is available[ 2.464562] ubi0: attaching mtd18[ 2.629010] random: nonblocking pool is initialized[ 2.839741] ubi0: scanning is finished[ 2.844718] ubi0: attached mtd18 (name "rootfs", size 97 MiB)[ 2.844736] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes[ 2.849430] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048[ 2.856210] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096[ 2.863059] ubi0: good PEBs: 776, bad PEBs: 0, corrupted PEBs: 0[ 2.869833] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128[ 2.876084] ubi0: max/mean erase counter: 3/1, WL threshold: 4096, image sequence number: 509821238[ 2.883115] ubi0: available PEBs: 0, total reserved PEBs: 776, PEBs reserved for bad PEB handling: 40[ 2.892063] ubi0: background thread "ubi_bgt0d" started, PID 121[ 2.912270] hctosys: unable to open rtc device (rtc0)[ 2.917046] pmd9655_ldo11: disabling[ 2.917496] ALSA device list:[ 2.919927] No soundcards found.[ 2.935013] VFS: Mounted root (squashfs filesystem) readonly on device 31:26.[ 2.935111] Freeing unused kernel memory: 224K (ffffffc000804000 - ffffffc00083c000)[ 2.941131] Freeing alternatives memory: 44K (ffffffc00083c000 - ffffffc000847000)[ 3.171159] init: Console is alive[ 3.171238] init: - watchdog -[ 4.157732] usbcore: registered new interface driver usbfs[ 4.157773] usbcore: registered new interface driver hub[ 4.162161] usbcore: registered new device driver usb[ 4.168635] Button Hotplug driver version 0.4.1[ 4.173272] exFAT: Version 1.2.9[ 4.177592] of_get_named_gpiod_flags: parsed 'gpios' property of node '/soc/gpio_keys/button@1[0]' - status (0)[ 4.177601] of_get_named_gpiod_flags: parsed 'gpios' property of node '/soc/gpio_keys/button@2[0]' - status (0)[ 4.179402] SCSI subsystem initialized[ 4.182187] libata version 3.00 loaded.[ 4.184586] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver[ 4.184903] ehci-platform: EHCI generic platform driver[ 4.192698] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver[ 4.195857] ohci-platform: OHCI generic platform driver[ 4.202479] uhci_hcd: USB Universal Host Controller Interface driver[ 4.211299] msm-usb-ssphy-qmp 78000.ssphy: Initializing QMP phy[ 4.220155] msm-usb-ssphy-qmp 78000.ssphy: QMP PHY initialization timeout[ 4.220176] msm-usb-ssphy-qmp 78000.ssphy: USB3_PHY_PCS_STATUS:68686868[ 4.427187] msm-usb-ssphy-qmp 58000.ssphy: Initializing QMP phy[ 4.434602] msm-usb-ssphy-qmp 58000.ssphy: QMP PHY initialization timeout[ 4.434622] msm-usb-ssphy-qmp 58000.ssphy: USB3_PHY_PCS_STATUS:68686868[ 4.642662] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller[ 4.642695] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1[ 4.647213] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x00010010[ 4.654622] xhci-hcd xhci-hcd.0.auto: irq 176, io mem 0x08a00000[ 4.663552] hub 1-0:1.0: USB hub found[ 4.669529] hub 1-0:1.0: 1 port detected[ 4.673204] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller[ 4.677179] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2[ 4.682472] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.[ 4.690202] hub 2-0:1.0: USB hub found[ 4.698343] hub 2-0:1.0: 1 port detected[ 4.702027] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller[ 4.705982] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3[ 4.711385] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x00010010[ 4.718847] xhci-hcd xhci-hcd.1.auto: irq 177, io mem 0x08c00000[ 4.727700] hub 3-0:1.0: USB hub found[ 4.733752] hub 3-0:1.0: 1 port detected[ 4.737416] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller[ 4.741390] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4[ 4.746711] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.[ 4.754431] hub 4-0:1.0: USB hub found[ 4.762572] hub 4-0:1.0: 1 port detected[ 4.767818] of_get_named_gpiod_flags: parsed 'gpios' property of node '/soc/gpio_leds/led_red[0]' - status (0)[ 4.767884] of_get_named_gpiod_flags: parsed 'gpios' property of node '/soc/gpio_leds/led_blue[0]' - status (0)[ 4.769012] usbcore: registered new interface driver usb-storage[ 4.770645] usbcore: registered new interface driver uas[ 5.173878] init: - preinit -[ 7.355404] mount_root: loading kmods from internal overlay[ 7.560982] block: attempting to load /etc/config/fstab[ 7.561432] block: unable to load configuration (fstab: Entry not found)[ 7.565041] block: no usable configuration[ 7.580108] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 171[ 7.604950] UBIFS (ubi0:2): recovery needed[ 7.680881] UBIFS (ubi0:2): recovery completed[ 7.680929] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data"[ 7.684226] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes[ 7.692127] UBIFS (ubi0:2): FS size: 52187136 bytes (49 MiB, 411 LEBs), journal size 9023488 bytes (8 MiB, 72 LEBs)[ 7.702021] UBIFS (ubi0:2): reserved for root: 0 bytes (0 KiB)[ 7.712250] UBIFS (ubi0:2): media format: w4/r0 (latest is w4/r0), UUID E1666243-3891-4FF0-B70A-C2C947440659, small LPT model[ 7.720677] mount_root: loading kmods from internal overlay[ 7.866423] ubi0 error: ubi_open_volume: cannot open device 0, volume 2, error -16[ 7.916732] block: attempting to load /etc/config/fstab[ 7.916780] block: unable to load configuration (fstab: Entry not found)[ 7.920765] block: no usable configuration[ 7.928932] mount_root: switching to jffs2 overlay[ 7.956449] ubi1: attaching mtd22[ 8.041523] ubi1: scanning is finished[ 8.046038] ubi1 warning: print_rsvd_warning: cannot reserve enough PEBs for bad PEB handling, reserved 5, need 40[ 8.046388] ubi1: attached mtd22 (name "ubifs", size 22 MiB)[ 8.055269] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes[ 8.061080] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048[ 8.067767] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096[ 8.074627] ubi1: good PEBs: 176, bad PEBs: 0, corrupted PEBs: 0[ 8.081391] ubi1: user volume: 3, internal volumes: 1, max. volumes count: 128[ 8.087648] ubi1: max/mean erase counter: 10/5, WL threshold: 4096, image sequence number: 426988541[ 8.094690] ubi1: available PEBs: 0, total reserved PEBs: 176, PEBs reserved for bad PEB handling: 5[ 8.103974] ubi1: background thread "ubi_bgt1d" started, PID 182[ 8.130516] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 189[ 8.182231] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "log"[ 8.182254] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes[ 8.188354] UBIFS (ubi1:0): FS size: 14475264 bytes (13 MiB, 114 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)[ 8.198244] UBIFS (ubi1:0): reserved for root: 683702 bytes (667 KiB)[ 8.208480] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID 5A67AA4F-0075-41F4-B01C-E632E113C900, small LPT model[ 8.219933] UBIFS (ubi1:1): background thread "ubifs_bgt1_1" started, PID 195[ 8.276842] UBIFS (ubi1:1): UBIFS: mounted UBI device 1, volume 1, name "vendor"[ 8.276865] UBIFS (ubi1:1): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes[ 8.283300] UBIFS (ubi1:1): FS size: 4063232 bytes (3 MiB, 32 LEBs), journal size 1015809 bytes (0 MiB, 6 LEBs)[ 8.293116] UBIFS (ubi1:1): reserved for root: 191915 bytes (187 KiB)[ 8.303004] UBIFS (ubi1:1): media format: w4/r0 (latest is w4/r0), UUID 4A3F08ED-3950-4D59-A48C-F71BF022ADE0, small LPT model[ 8.324338] procd: - early -[ 8.324376] procd: - watchdog -[ 8.926991] procd: - ubus -[ 9.928497] procd: - init -[ 10.468545] ubi2: attaching mtd21[ 10.507411] ubi2: scanning is finished[ 10.512695] ubi2: attached mtd21 (name "0:WIFIFW", size 9 MiB)[ 10.512719] ubi2: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes[ 10.517577] ubi2: min./max. I/O unit sizes: 2048/2048, sub-page size 2048[ 10.524319] ubi2: VID header offset: 2048 (aligned 2048), data offset: 4096[ 10.531130] ubi2: good PEBs: 72, bad PEBs: 0, corrupted PEBs: 0[ 10.537987] ubi2: user volume: 1, internal volumes: 1, max. volumes count: 128[ 10.543804] ubi2: max/mean erase counter: 1/0, WL threshold: 4096, image sequence number: 1892918225[ 10.551278] ubi2: available PEBs: 11, total reserved PEBs: 61, PEBs reserved for bad PEB handling: 40[ 10.560476] ubi2: background thread "ubi_bgt2d" started, PID 1163[ 11.319540] fuse init (API version 7.23)[ 11.320578] libcsa: Module loaded csahunter.[ 11.322520] libcsa: Module loaded mycsainfo.[ 11.327348] libdfs: Module loaded dfs_justice.[ 11.331033] libdfs: Module loaded dfs_channel_record.[ 11.345291] cfg80211: World regulatory domain updated:[ 11.345314] cfg80211: DFS Master region: unset[ 11.349311] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)[ 11.353924] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)[ 11.363643] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A)[ 11.375985] device-mapper: req-crypt: dm-req-crypt successfully initalized.[ 11.375985] [ 11.381662] Key type dns_resolver registered[ 11.389411] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A)[ 11.393598] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A)[ 11.401387] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s)[ 11.411104] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s)[ 11.420546] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A)[ 11.428608] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A)[ 11.430592] RPC: Registered named UNIX socket transport module.[ 11.430593] RPC: Registered udp transport module.[ 11.430594] RPC: Registered tcp transport module.[ 11.430595] RPC: Registered tcp NFSv4.1 backchannel transport module.[ 11.432627] ntfs: driver 2.1.32 [Flags: R/O MODULE].[ 11.435645] Initializing XFRM netlink socket[ 11.436077] NET: Registered protocol family 15[ 11.609785] ssdk_switch_device_num_init[1108]:INFO:ess-switch dts node number: 1[ 11.609844] ssdk_dt_get_switch_node[936]:INFO:ess-switch DT exist![ 11.616342] ssdk_dt_parse_access_mode[837]:INFO:switch_access_mode: local bus[ 11.622234] ssdk_dt_parse_access_mode[850]:INFO:switchreg_base_addr: 0x3a000000[ 11.629513] ssdk_dt_parse_access_mode[851]:INFO:switchreg_size: 0x1000000[ 11.636651] ssdk_dt_parse_mac_mode[289]:INFO:mac mode = 0xb[ 11.643499] ssdk_dt_parse_mac_mode[298]:INFO:mac mode1 = 0xff[ 11.648995] ssdk_dt_parse_mac_mode[307]:INFO:mac mode2 = 0xf[ 11.654897] ssdk_dt_parse_phy_info[641]:INFO:[PORT 6] port_mac_sel = QGMAC_PORT[ 11.660625] ssdk_dt_parse_uniphy[326]:INFO:ess-uniphy DT exist![ 11.667849] ssdk_dt_parse_intf_mac[783]:INFO:dp1 MAC a4:97:33:df:ae:ae[ 11.673564] ssdk_dt_parse_intf_mac[783]:INFO:dp2 MAC a4:97:33:df:ae:af[ 11.680327] ssdk_dt_parse_intf_mac[783]:INFO:dp3 MAC a4:97:33:df:ae:af[ 11.686774] ssdk_dt_parse_intf_mac[783]:INFO:dp4 MAC a4:97:33:df:ae:af[ 11.693313] ssdk_dt_parse_intf_mac[783]:INFO:dp5 MAC a4:97:33:df:ae:af[ 11.699789] ssdk_plat_init start[ 11.785912] ssdk_gcc_clock_init[938]:INFO:SSDK gcc clock init successfully![ 11.786198] ssdk_probe[1997]:INFO:ess_rst doesn't exist![ 11.792263] HPPE initializing...[ 11.797467] malibu_phy_api_ops_init[2849]:INFO:qca probe malibu phy driver succeeded![ 11.803892] qca808x_phy_api_ops_init[2188]:INFO:qca probe qca808x phy driver succeeded![ 11.809076] qca808x_ptp_register[1407]:INFO:qca808x ptp clock registered[ 11.816153] regi_init[3525]:INFO:Initializing HPPE!![ 12.034090] ssdk_ppe_reset_init[1169]:INFO:ppe reset successfully![ 12.037793] qca_hppe_tdm_hw_init[674]:INFO:tdm setup num=96[ 12.039538] qca_hppe_portctrl_hw_init[105]:INFO:Hawkeye PPE port initializing[ 13.491177] ssdk_switch_register[1691]:INFO:Chip version 0x1500[ 13.491224] qca_link_polling_select[1307]:INFO:link-polling-required node does not exist[ 13.495923] ssdk_switch_register[1717]:INFO:polling is selected[ 13.504389] regi_init[3529]:INFO:Initializing HPPE Done!![ 13.509933] regi_init[3589]:INFO:qca-ssdk module init succeeded![ 13.516927] tun: Universal TUN/TAP device driver, 1.6[ 13.521501] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>[ 13.540310] EDMA ver 1 hw init[ 13.540553] EDMA HW Reset completed succesfully[ 13.542278] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7)[ 13.546723] RxDesc:1 (15-15) RxFill:1 (7-7)[ 13.756325] **********************************************************[ 13.756349] * NSS Data Plane driver[ 13.761730] **********************************************************[ 13.782259] l2tp_core: L2TP core driver, V2.0[ 13.782707] l2tp_netlink: L2TP netlink interface[ 13.915469] nss_driver - fw of size 758896 bytes copied to load addr: 40000000, nss_id : 0[ 13.917128] Supported Frequencies - [ 13.922612] 748.8 MHz 1.4976 GHz [ 13.928818] 1.6896 GHz <1>[ 13.929640] [ 13.934278] ffffffbffc8e2b00: set sdma ffffffc038f77500[ 13.934377] ffffffbffc8e2b00: meminfo init succeed[ 13.976936] node size 2 # items 4[ 13.976959] memory: 40000000 1073741824 (avl 941330432) items 4 active_cores 2[ 13.979229] addr/size storage words 2 2 # words 4 in DTS, ddr size 1000000[ 13.985103] nss_driver - fw of size 290472 bytes copied to load addr: 40800000, nss_id : 1[ 13.985881] Supported Frequencies - [ 13.985882] 748.8 MHz [ 13.985883] 1.4976 GHz [ 13.985883] 1.6896 GHz [ 13.985884] [ 13.986016] ffffffbffc8eae80: set sdma ffffffc03b3f9700[ 13.986065] ffffffbffc8eae80: meminfo init succeed[ 13.987909] sit: IPv6 over IPv4 tunneling driver[ 13.989286] nat46: module (version 8ff2ae59ec9840a7b8b45f976c51cae80abe0226) loaded.[ 13.991011] gre: GRE over IPv4 demultiplexor driver[ 13.991591] ip_gre: GRE over IPv4 tunneling driver[ 13.992976] ip6_gre: GRE over IPv6 tunneling driver[ 13.995041] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)[ 14.014172] Installing knfsd (copyright (C) 1996 okir@monad.swb.de).[ 14.016703] ip6_tables: (C) 2000-2006 Netfilter Core Team[ 14.018886] rmnet_nss_init(): initializing rmnet_nss[ 14.020559] Registering family.[ 14.020572] MAP-T PORT module registered.[ 14.023735] nf_conntrack version 0.5.0 (6926 buckets, 27704 max)[ 14.080798] ffffffbffc8e2b00: nss core 0 booted successfully[ 14.087039] node size 2 # items 4[ 14.092500] memory: 40000000 1073741824 (avl 941518848) items 4 active_cores 2[ 14.095725] addr/size storage words 2 2 # words 4 in DTS, ddr size 1000000[ 14.102839] ffffffbffc8eae80: nss core 1 booted successfully[ 15.505674] openvswitch: Open vSwitch switching datapath[ 16.145836] QCA Hy-Fi multicast installation successfully[ 17.325632] PPP generic driver version 2.4.2[ 17.594649] nss_lag_init[352]:LAG Manager Installed[ 18.134799] NET: Registered protocol family 24[ 18.534998] PPTP driver version 0.8.5[ 19.047575] diag: IPC Logging disabled[ 19.047920] TRACK: P[0]PMask[4][ 19.050202] TRACK: P[1]PMask[4][ 19.053587] TRACK: P[2]PMask[4][ 19.056933] TRACK: P[3]PMask[4][ 19.060039] nik 4097 info->svc_id[ 19.435178] QCA multicast snooping installed successfully[ 19.685395] <NSS-CRYPTO>:module loaded Build_ID - 03/24/22, 02:50:33 SoC=ipq807x_64[ 19.925402] cannot find nss-macsec0 node[ 19.925447] nss-macsec1 DT exist![ 19.966011] cannot find nss-macsec2 node[ 19.966025] nss_macsec init success[ 22.646782] EXT4-fs (dm-0): couldn't mount as ext3 due to feature incompatibilities[ 22.649414] EXT4-fs (dm-0): warning: mounting unchecked fs, running e2fsck is recommended[ 22.690385] EXT4-fs (dm-0): mounted filesystem without journal. Opts: (null)[ 23.214640] u32 classifier[ 23.214657] input device check on[ 23.216225] Actions configured[ 23.624638] Mirror/redirect action on[ 28.186233] arp_tables: (C) 2002 David S. Miller[ 28.194294] Ebtables v2.0 registered[ 28.195896] ip_tables: (C) 2000-2006 Netfilter Core Team[ 28.201206] l2tp_ppp: PPPoL2TP kernel driver, V2.0[ 28.271135] nf_conntrack_rtsp v0.6.21 loading[ 28.378598] nf_nat_rtsp v0.6.21 loading[ 28.382188] Netfilter messages via NETLINK v0.30.[ 28.383945] PPP MPPE Compression module registered[ 28.408731] xt_time: kernel timezone is -0000[ 28.409439] xt_webstr: module license 'unspecified' taints kernel.[ 28.412060] Disabling lock debugging due to kernel taint[ 28.426459] ctnetlink v0.93: registering with nfnetlink.[ 32.700120] configuring additional NSS pbufs[ 32.722149] additional pbufs of size 9003008 got added to NSS[ 33.325111] wlan: [2588:I:ANY] =======ol_if_register_wifi3_0==========[ 33.325111] [ 33.325144] wlan: [2588:I:ANY] osif_nss_register_module: 708: NSS wifi ops registered for target_type:1 with soc_ops:ffffffbffdba27e0[ 33.331939] wlan: [2588:I:ANY] ol_ath_wifi_ssr: 298: ol_ath_wifi_ssr: SSR event 2 bus_type 1[ 33.344103] remoteproc remoteproc0: powering up cd00000.qcom_q6v5_wcss[ 33.364310] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668[ 34.242324] Subsystem error monitoring/handling services are up[ 34.242615] remoteproc remoteproc0: remote processor cd00000.qcom_q6v5_wcss is now up[ 34.243063] rpmsg_dev_probe: No pm domain[ 34.243265] rpmsg_dev_probe: No pm domain[ 34.244256] cnss[2]: INFO: QMI WLFW service connected, state: 0x1[ 34.244413] cnss[2]: INFO: device_id : 65534 mem mode : [0][ 34.244553] cnss[2]: INFO: platform name: Askey RT5010W-D350/REV0[ 34.244553] diag: In diag_send_feature_mask_update, control channel is not open, p: 2, ffffffbffcd3e248[ 34.245081] cnss[2]: INFO: Target capability: chip_id: 0x0, chip_family: 0x0, board_id: 0xff, soc_id: 0xffffffff, fw_version: 0x230d84a5, fw_build_timestamp: 2020-10-27 22:02, otp_version: 0x0 eeprom_caldata_read_timeout 0s[ 34.245090] cnss[2]: INFO: No board_id entry in device tree[ 34.248953] cnss[2]: INFO: BDF location : 0x4b0c0000[ 34.248958] cnss[2]: INFO: BDF IPQ8074/bdwlan.bin size 131072[ 34.249570] cnss[2]: INFO: per device BDF location : 0x4b0e0000[ 34.249680] cnss[2]: INFO: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000[ 34.331892] wlan: [2588:I:ANY] ol_ath_wifi_ssr: 298: ol_ath_wifi_ssr: SSR event 3 bus_type 1[ 34.339510] cnss[2]: INFO: Waiting for FW ready. Device: 0xfffe, FW ready timeout: 15 seconds[ 34.348007] cnss[2]: INFO: FW ready received for device 0xfffe[ 34.356895] wlan: [2588:I:ANY] pld_ahb_wlan_enable: 705: cnss_mode: Mission mode [ 34.362346] cnss[2]: INFO: Sending mode message, mode: MISSION(0), state: 0x7[ 34.378561] wlan: [2588:I:ANY] qca_napi_create: 373: qca_napi_create: napi instance 0 created on pipe 4[ 34.378749] wlan: [2588:I:ANY] __ol_ath_attach: 3994: Allocated soc ffffffc033f00880[ 34.408362] wlan: [2588:I:ANY] osif_nss_wifi_soc_setup: 815: nss-wifili:#1 register wifili function for soc [ 34.408397] wlan: [2588:I:ANY] osif_nss_wifi_soc_setup: 827: nss register id -1 nss config 3 Target Type 18 [ 34.417278] wlan: [2588:I:ANY] __ol_ath_attach: 4198: dev name soc0[ 34.427217] wlan: [2588:I:ANY] ol_ath_soc_attach: 6421: WMI attached. wmi_handle ffffffc033c9f000 [ 34.435155] wlan: [2588:I:ANY] htc_wmi_init: 5460: HT Create . ffffffc033558000[ 34.442074] wlan: [2588:I:ANY] htc_wmi_init: 5467: Skipping BMI Done[ 34.449284] wlan: [2588:I:ANY] htc_wmi_init: 5524: host_enable 0 nss_nwifi_offload 0[ 34.461499] wlan: [2588:I:ANY] ol_target_init_complete: 5595: CDP soc attach success[ 34.463605] wlan: [2588:I:ANY] ol_target_init_complete: 5602: Soc attach success NSS config 0 [ 34.471387] wlan: [2588:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle ffffffc033558000, ep 2, value 1[ 34.479796] wlan: [2588:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle ffffffc033558000, ep 3, value 1[ 34.490407] wlan: [2557:I:TIF] init_deinit_atf_config_enable: 1099: Airtime Fairness: num_peers=0 num_active_peer=0[ 34.500443] wlan: [2557:I:TIF] HE_CAP Info = 1a08010d[ 34.510737] wlan: [2557:I:TIF] Num HW modes = 1[ 34.515942] wlan: [2557:I:TIF] Num PHY = 2[ 34.520279] wlan: [2557:I:TIF] FW Build Version (Ext.) = 0[ 34.524451] wlan: [2557:I:TIF] HDL Version: MajorVersion.MinorVersion = 0.0[ 34.529923] wlan: [2557:I:TIF] Preferred HW Mode = 1 Num Radios = 2[ 34.536803] wlan: [2557:I:TIF] init_deinit_add_11ax_modes: 2429: hw_mode_id = 1 phy_id = 0 wireless modes = f97f9001[ 34.543036] wlan: [2557:I:TIF] init_deinit_add_11ax_modes: 2429: hw_mode_id = 1 phy_id = 1 wireless modes = 680688c[ 34.554022] wlan: [2557:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 431: dfs_offload 1[ 34.563961] wlan: [2557:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 3417: dfs->dfs_psoc_idx: 0 [ 34.574375] wlan: [2557:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 3423: dfs_soc_obj->num_dfs_privs: 1 [ 34.584474] wlan: [2557:I:TIF] init_deinit_alloc_pdevs: 1550: CDP PDEV ATTACH success[ 34.594328] wlan: [2557:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 403: Do not allocate DFS object for 2G, pdev_id = 1[ 34.602754] wlan: [2557:I:TIF] init_deinit_alloc_pdevs: 1550: CDP PDEV ATTACH success[ 34.615173] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 238: num_radios: 2[ 34.622979] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 256: ema_max_vap_cnt: 0[ 34.630797] wlan: [2557:I:TIF] init_deinit_get_total_num_vdevs_for_soc: 376: num_vdevs: 34[ 34.638960] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 238: num_radios: 2[ 34.647201] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 256: ema_max_vap_cnt: 0[ 34.655104] wlan: [2557:I:TIF] init_deinit_get_total_num_vdevs_for_soc: 376: num_vdevs: 34[ 34.663260] wlan: [2557:I:TIF] init_deinit_get_total_beaconing_vdevs_for_soc: 598: beacon_tx_offload_max_vdev: 32[ 34.671511] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 238: num_radios: 2[ 34.681836] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 256: ema_max_vap_cnt: 0[ 34.689649] wlan: [2557:I:TIF] init_deinit_get_total_num_vdevs_for_soc: 376: num_vdevs: 34[ 34.697808] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 238: num_radios: 1[ 34.706055] wlan: [2557:I:TIF] init_deinit_get_total_num_ema_vaps: 256: ema_max_vap_cnt: 0[ 34.713952] wlan: [2557:I:TIF] init_deinit_get_total_num_vdevs_for_soc: 376: num_vdevs: 17[ 34.722119] wlan: [2557:I:ANY] init_deinit_update_pdev_tgt_info: 1924: pdev id:0 wmi_handle:ffffffc033c9f000[ 34.734481] wlan: [2557:I:ANY] init_deinit_update_pdev_tgt_info: 1995: Pdev = 0 Number of peers = 529 vdevs = 17[ 34.740346] wlan: [2557:I:TIF] init_deinit_update_pdev_tgt_info: 1998: CDP PDEV INIT success[ 34.750629] wlan: [2557:I:ANY] init_deinit_update_pdev_tgt_info: 1924: pdev id:1 wmi_handle:ffffffc032a51000[ 34.762995] wlan: [2557:I:ANY] init_deinit_update_pdev_tgt_info: 1995: Pdev = 1 Number of peers = 529 vdevs = 17[ 34.768749] wlan: [2557:I:TIF] init_deinit_update_pdev_tgt_info: 1998: CDP PDEV INIT success[ 34.879415] wlan: [2557:I:ANY] copy_fw_abi_version_tlv: 7216: copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0[ 35.081512] wlan: [2557:I:ANY] ready_extract_init_status_tlv: 9738: ready_extract_init_status_tlv:0[ 35.081541] wlan: [2557:I:ANY] dp_peer_map_attach_wifi3: 9582: dp_peer_map_attach_wifi3 max_peers 1109, max_ast_index: 4112[ 35.081541] [ 35.089558] wlan: [2588:I:ANY] ol_ath_connect_htc: 1250: WMI is ready[ 35.153028] wlan: [2588:E:TIF] target_if_lro_hash_config: 254: pdev with id 0 is NULL[ 35.155864] wlan: [2588:E:TIF] target_if_lro_hash_config: 254: pdev with id 1 is NULL[ 35.160089] wlan: [2588:I:ANY] ol_ath_soc_attach: 6549: connect HTC[ 35.167663] wlan: [2588:I:ANY] ol_ath_soc_attach: 6550: bypasswmi : 0[ 35.173731] wlan: [2588:I:ANY] ol_ath_soc_attach: 6624: UMAC attach[ 35.180382] wlan: [2588:I:ANY] __ol_ath_attach: 4320: pdev_netdev name wifi0[ 35.186406] wlan: [2588:I:ANY] __ol_ath_attach: 4369: Skip txrx_pdev_attach_target[ 35.193683] wlan: [2588:I:ANY] __ol_ath_attach: 4395: BURSTING enabled by default[ 35.201116] wlan: [2588:I:ANY] ol_ath_pdev_attach: 8632: interface_id 0[ 35.208622] wlan: [2588:I:TIF] ol_ath_pdev_regdmn_init: 6785: phy id = 0 Modes supported[ 35.215042] wlan: [2588:I:TIF] ol_ath_pdev_regdmn_init: 6792: 11b = 0 11g = 0 11a = 1 11n = 1 11ac = 1 11ax = 1[ 35.223378] wlan: [2588:I:TIF] ol_ath_pdev_regdmn_init: 6801: Reg cap - phy_id = 0 supp_bnd = 2, modes = 793f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4900, hi_5g = 5920[ 35.233630] wlan: [2588:I:ANY] ol_ath_update_wireless_modes: 1325: wireless_modes = 793f9001 before update[ 35.247943] wlan: [2588:I:ANY] ol_ath_update_wireless_modes: 1341: Wireless_modes = 793f9001 after update[ 35.257667] wlan: [2588:I:ANY] ol_ath_update_ext_caps: 1933: 11ax 5G supported case[ 35.267396] wlan: [2588:I:MBSSIE] ieee80211_mbss_attach: 220: :>[ 35.274760] wlan: [2588:I:MBSSIE] ieee80211_mbss_attach: 233: :<[ 35.281007] wlan: [2588:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed[ 35.287111] wlan: [2588:I:ANY] acfg_attach: 3339: acfg_attach: 3339: Netlink socket created:ffffffc02e2d4c00[ 35.293344] wlan: [2588:I:ANY] ol_ath_stats_attach: 2294: periodic_chan_stats: 1[ 35.304073] wlan: [2588:I:ANY] wlan_scan_update_channel_list: 1138: num_chan: 25[ 35.310820] wlan: [0:I:ANY] ol_ath_pdev_attach: 8948: Set global_ic[1], ptr:ffffffbffd88c5e8[ 35.318169] wlan: [0:I:RPTR] qca_multi_link_init_module: 245: [ 35.318169] ******QCA Repeater Initialization Done***********[ 35.318169] [ 35.326597] wlan: [0:I:ANY] dp_lag_soc_enable: 102: pdev(ffffffc032a50c08) Enabling DBDC Repeater 0 [ 35.339541] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 55: pdev(ffffffc032a50c08) is_primary 0 [ 35.339550] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed[ 35.357693] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 50: twt enabled[ 35.359026] wlan: [2588:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 606: cfg block channel list is empty[ 35.359031] wlan: [2588:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3892: pdev_idx = 0 tx_desc_limit = 32768[ 35.359046] wlan: [2588:I:ANY] osif_wrap_attach: 239: osif wrap attached[ 35.359046] [ 35.359048] wlan: [2588:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done[ 35.359048] [ 35.359052] wlan: [2588:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =ffffffc02e2d5000 ic->ic_wrap_com=ffffffc02e2d5000 &wrap_com->wc_devt=ffffffc02e2d5000 [ 35.359052] [ 35.359070] wlan: [2588:I:ANY] __ol_ath_attach: 4568: needed_headroom reservation 60[ 35.359074] wlan: [2588:I:ANY] ol_ath_enable_fraglist: 3344: Enabled Fraglist bit for the radio wifi0 features 41 [ 35.359263] wlan: [2588:I:ANY] ieee80211_cfg80211_radio_attach: 13328: ic: 0xffffffc032980880, wdev: 0xffffffc032998aa0, wiphy: 0xffffffc033bd4aa0, netdev: 0xffffffc032980000 [ 35.359679] wlan: [2588:I:ANY] __ol_ath_attach: 4320: pdev_netdev name wifi1[ 35.359693] wlan: [2588:I:ANY] __ol_ath_attach: 4369: Skip txrx_pdev_attach_target[ 35.359695] wlan: [2588:I:ANY] __ol_ath_attach: 4395: BURSTING enabled by default[ 35.359733] wlan: [2588:I:ANY] ol_ath_pdev_attach: 8632: interface_id 1[ 35.359743] wlan: [2588:I:TIF] ol_ath_pdev_regdmn_init: 6785: phy id = 1 Modes supported[ 35.359746] wlan: [2588:I:TIF] ol_ath_pdev_regdmn_init: 6792: 11b = 1 11g = 1 11a = 0 11n = 1 11ac = 1 11ax = 1[ 35.359751] wlan: [2588:I:TIF] ol_ath_pdev_regdmn_init: 6801: Reg cap - phy_id = 1 supp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0[ 35.359753] wlan: [2588:I:ANY] ol_ath_update_wireless_modes: 1325: wireless_modes = 680680c before update[ 35.359756] wlan: [2588:I:ANY] ol_ath_update_wireless_modes: 1341: Wireless_modes = 680680c after update[ 35.359761] wlan: [2588:I:ANY] ol_ath_update_ext_caps: 1941: 11ax 2G supported case[ 35.359842] wlan: [2588:I:MBSSIE] ieee80211_mbss_attach: 220: :>[ 35.359844] wlan: [2588:I:MBSSIE] ieee80211_mbss_attach: 233: :<[ 35.359848] wlan: [2588:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed[ 35.359954] wlan: [2588:I:ANY] acfg_attach: 3314: Offload using existing sock ffffffc02e2d4c00[ 35.359960] wlan: [2588:I:ANY] ol_ath_stats_attach: 2294: periodic_chan_stats: 1[ 35.360127] wlan: [2588:I:ANY] wlan_scan_update_channel_list: 1138: num_chan: 11[ 35.360152] wlan: [0:I:ANY] ol_ath_pdev_attach: 8948: Set global_ic[2], ptr:ffffffbffd88c5e8[ 35.360156] wlan: [0:I:ANY] dp_lag_soc_enable: 102: pdev(ffffffc032a51408) Enabling DBDC Repeater 0 [ 35.360179] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 55: pdev(ffffffc032a51408) is_primary 0 [ 35.361698] wlan: [2588:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 606: cfg block channel list is empty[ 35.361702] wlan: [2588:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3892: pdev_idx = 1 tx_desc_limit = 32768[ 35.361714] wlan: [2588:I:ANY] osif_wrap_attach: 239: osif wrap attached[ 35.361714] [ 35.361717] wlan: [2588:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done[ 35.361717] [ 35.361721] wlan: [2588:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =ffffffc02e2d7c00 ic->ic_wrap_com=ffffffc02e2d7c00 &wrap_com->wc_devt=ffffffc02e2d7c00 [ 35.361721] [ 35.361734] wlan: [2588:I:ANY] __ol_ath_attach: 4568: needed_headroom reservation 60[ 35.361738] wlan: [2588:I:ANY] ol_ath_enable_fraglist: 3344: Enabled Fraglist bit for the radio wifi1 features 41 [ 35.361753] wlan: [2588:I:ANY] wlan_cfg80211_init: 13145: Number of 2G channels: 11 [ 35.361863] wlan: [2588:I:ANY] ieee80211_cfg80211_radio_attach: 13328: ic: 0xffffffc032a60880, wdev: 0xffffffc032a78aa0, wiphy: 0xffffffc02d6102a0, netdev: 0xffffffc032a60000 [ 35.362205] wlan: [2588:I:Dynamic Mode Change] ol_ath_check_and_reconfig_hw_mode: 3861: Running with HW mode = 1[ 35.362390] wlan: [2588:E:QLD] qld_register: 108: Handle or address is NULL[ 35.362403] wlan: [2588:I:ANY] wlan_pdev_operation: 796: num_radios=1, wifi_radios[0].sc = ffffffc032980880_radio_type = 2[ 35.362406] wlan: [2588:I:ANY] wlan_pdev_operation: 796: num_radios=2, wifi_radios[1].sc = ffffffc032a60880_radio_type = 2[ 35.362427] wlan: [2588:I:ANY] init_ath_pci_3_0: 183: 6ath_ol_pci_wifi3.0 : (Atheros/multi-bss)[ 35.750930] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed[ 35.760273] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 50: twt enabled[ 35.788210] wlan: [2590:I:ANY] osif_nss_register_module: 708: NSS wifi ops registered for target_type:0 with soc_ops:ffffffbffdc47ef0[ 35.788543] wlan: [2590:I:ANY] init_ath_pci_2_0: 147: 6ath_ol_pci_2_0: (Atheros/multi-bss)[ 37.859380] ECM init[ 37.859426] ECM database jhash random seed: 0x7e3f1cd[ 37.861564] ECM init complete[ 38.874832] ECM OVS Test INIT[ 39.185735] device eth1 entered promiscuous mode[ 39.187062] br-lan: port 1(eth1) entered forwarding state[ 39.189452] br-lan: port 1(eth1) entered forwarding state[ 39.200163] device eth2 entered promiscuous mode[ 39.200221] br-lan: port 2(eth2) entered forwarding state[ 39.204822] br-lan: port 2(eth2) entered forwarding state[ 39.214362] device eth3 entered promiscuous mode[ 39.215531] br-lan: port 3(eth3) entered forwarding state[ 39.220175] br-lan: port 3(eth3) entered forwarding state[ 39.229647] device eth4 entered promiscuous mode[ 39.230858] br-lan: port 4(eth4) entered forwarding state[ 39.235564] br-lan: port 4(eth4) entered forwarding state[ 40.174150] br-lan: port 1(eth1) entered disabled state[ 40.174556] br-lan: port 2(eth2) entered disabled state[ 40.178376] br-lan: port 3(eth3) entered disabled state[ 40.183749] br-lan: port 4(eth4) entered disabled state[ 41.285594] wlan: [4692:I:ANY] wlan_scan_update_channel_list: 1138: num_chan: 4[ 41.285997] wlan: [4692:I:ANY] wlan_scan_update_channel_list: 1138: num_chan: 4[ 41.291797] wlan: [4692:I:ANY] number of channels: 2G = 0 5G = 4, 6G = 0[ 41.299403] wlan: [3316:I:ANY] ol_acfg_handle_wifi_ioctl: 447: ol_acfg_handle_wifi_ioctl: req->cmd=76 not valid for radio interface, it's for VAP[ 41.399012] wlan: [4721:I:ANY] wlan_scan_update_channel_list: 1138: num_chan: 4[ 41.399131] wlan: [4721:I:ANY] number of channels: 2G = 0 5G = 4, 6G = 0[ 41.500173] wlan: [4770:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 2 Max_mac_rings 1 [ 41.500238] wlan: [4770:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 1 Max_mac_rings 1 [ 41.540180] wlan: [4775:I:ANY] ol_ath_set_config_param: 1650: set TXBF_SND_PERIOD: val 100 stat 0[ 41.611079] wlan: [4786:I:ANY] ol_ath_set_config_param: 2304: snr should be a positive value.[ 41.611079] [ 41.624750] wlan: [0:I:ANY] ol_ath_set_config_param: 2442: Disconnect_timeout value: 10[ 41.638415] wlan: [0:I:ANY] ol_ath_set_config_param: 2448: Reconfiguration_timeout value:60[ 42.060991] wlan: [4916:I:ANY] wlan_cfg80211_add_virtual_intf: 352: proprietary mode 6 for interface: ath0 : clone params: 0x00000001 [ 42.061067] wlan: [4916:I:ANY] osifp_create_wlan_vap: 9900: VDEV Create a4:97:33:df:ae:b0[ 42.072318] wlan: [4916:I:ANY] wlan_vap_create: 1644: devhandle=0xffffffc032980880, opmode=IEEE80211_M_HOSTAP, flags=0x1[ 42.072318] [ 42.080579] wlan: [4916:I:ANY] ol_ath_vap_set_param: 1556: Setting SGI value: 1[ 42.092669] wlan: [4916:I:ANY] ol_ath_vap_set_param: 2609: VDEV params:HE su_bfee:1|su_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:1|dl_muofdma_bfer:0[ 42.099707] wlan: [4916:I:ANY] ol_ath_vap_set_param: 2622: he_bf_cap=0x7b[ 42.115014] wlan: [4916:I:ANY] ol_ath_vap_set_param: 2637: VDEV params: AC/VHT sounding mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged[ 42.121859] wlan: [4916:I:ANY] MBO Initialized[ 42.135818] wlan: [4916:I:ANY] OCE Initialized[ 42.140225] wlan: [4916:I:ANY] osif_nss_ol_vap_create: 1282: NSS wifi offload VAP create IF 31 nss_id -1 [ 42.144697] wlan: [4916:I:ANY] NSS radio_if 28[ 42.154350] wlan: [0:I:ANY] osif_nss_vdev_cfg_callback: 1007: VDEV configuration success: 0[ 42.158630] wlan: [4916:I:ANY] osif_nss_ol_vap_create: 1394: vap create ffffffc02d290880 : if_num 31 [ 42.167133] wlan: [4916:I:ANY] osif_create_vap_complete: 10120: TX Checksum:1|SG:1|TSO:1|LRO:0[ 42.176352] wlan: [4916:I:ANY] WLAN-NSS: VAP NSS ops initialized [ 42.185605] wlan: [4916:I:ANY] VAP device ath0 created osifp: (ffffffc02d290880) os_if: (ffffffc03c738000)[ 42.334942] wlan: [4949:I:ANY] ol_ath_vap_set_param: 1556: Setting SGI value: 1[ 42.412686] wlan: [4957:I:ANY] osif_pdev_restart_vaps: 8845: No active vaps[ 42.462852] wlan: [4965:I:ANY] osif_nss_vdev_set_cfg: 2064: setting me mode 5 target type 0[ 42.462884] wlan: [4965:I:ANY] osif_nss_vdev_set_cfg: 2068: Mcast command 5[ 42.624932] wlan: [4981:I:ANY] ieee80211_ucfg_setparam: 1722: Setting Max Stations:128[ 42.754118] nss-dp 3a007000.dp1 eth0: PHY Link up speed: 1000[ 42.984418] 8021q: adding VLAN 0 to HW filter on device ath0[ 42.985207] device ath0 entered promiscuous mode[ 42.989302] br-lan: port 5(ath0) entered forwarding state[ 42.993761] br-lan: port 5(ath0) entered forwarding state[ 42.999066] wlan: [0:E:NSS] osif_nss_wifi_mac_db_event_receive: 101: [nss-wifi-mac-db-nfy]: NSS wifi mac db configuration message failed with error = 0[ 43.054503] wlan: [3326:I:ANY] wlan_cfg80211_do_acs: 4440: vap-0(ath0):ACS Params[ 43.054532] wlan: [3326:I:ANY] wlan_cfg80211_do_acs: 4443: ht_enabled:1|ht40_enabled:0|vht_enabled:1|hw_mode:30|chwidth:20|[ 43.061016] wlan: [3326:I:ANY] ieee80211_autoselect_infra_bss_channel: 4136: ACS started: vap:0xffffffc03c738000[ 43.248953] wlan: [5118:I:ANY] wlan_cfg80211_set_wiphy_params: 2448: WARNING: Fragmentation with HT mode NOT ALLOWED!![ 43.290605] wlan: [5124:I:ANY] ol_ath_vap_set_param: 1653: Configuring MCAST RATE is deffered as channel is not yet set for VAP[ 43.833810] wlan: [5632:I:ANY] wlan_scan_update_channel_list: 1138: num_chan: 13[ 43.833888] wlan: [5632:I:ANY] number of channels: 2G = 13 5G = 0, 6G = 0[ 43.997254] wlan: [5654:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 2 Max_mac_rings 1 [ 43.997323] wlan: [5654:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 1 Max_mac_rings 1 [ 44.035532] wlan: [5659:I:ANY] ol_ath_set_config_param: 1650: set TXBF_SND_PERIOD: val 100 stat 0[ 44.106400] wlan: [5669:I:ANY] ol_ath_set_config_param: 2304: snr should be a positive value.[ 44.106400] [ 44.120255] wlan: [0:I:ANY] ol_ath_set_config_param: 2442: Disconnect_timeout value: 10[ 44.133918] wlan: [0:I:ANY] ol_ath_set_config_param: 2448: Reconfiguration_timeout value:60[ 44.308836] wlan: [2585:I:ANY] ACS failed to derive the channel. So,selecting channel with least BSS [ 44.308875] wlan: [2585:I:ANY] random channel is 40 freq 5200[ 44.317062] wlan: [2585:I:ANY] ******** ACS report ******** [ 44.322769] wlan: [2585:I:ANY] Channel | BSS | minrssi | maxrssi | NF | Ch load | spect load | sec_chan | SR bss | SR load | Ch Avil | Chan eff | NearBSS | Med BSS | Far BSS | Eff BSS | chan grade[ 44.328543] wlan: [2585:I:ANY] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------[ 44.345982] wlan: [2585:I:ANY] 5180( 36) 3 12 32 -106 1 0 0 0 0 50 470 0 1 2 200 94 [ 44.363618] wlan: [2585:I:ANY] 5200( 40) 0 0 0 -105 0 0 1 0 0 66 653 0 0 0 150 98 [ 44.380783] wlan: [2585:I:ANY] 5220( 44) 0 0 0 -105 0 0 0 0 0 80 800 0 0 0 125 100 [ 44.398164] wlan: [2585:I:ANY] 5240( 48) 0 0 0 -105 0 0 0 0 0 86 853 0 0 0 116 99 [ 44.415576] wlan: [2585:I:ANY] vap-0(ath0): ACS result PCH 40 freq 5200, SCH 44 freq 5220, hw_mode 2 chwidth 80, vht_seg0 42 freq 5210, vht_seg1 0 freq 0[ 44.432871] wlan: [2585:I:ANY] ieee80211_acs_scan_evhandler: 3870: lock held duration: 124(ms)[ 44.455952] wlan: [3326:I:ANY] DES SSID SET=Dynalink-AE-5G[ 44.455964] wlan: [3326:I:ANY] desired hw mode: 30[ 44.456060] wlan: [3326:I:ANY] ieee80211_ucfg_set_freq_internal: 575: [ 44.456060] Channel is configured already!![ 44.478904] wlan: [5797:I:ANY] wlan_cfg80211_add_virtual_intf: 352: proprietary mode 6 for interface: ath1 : clone params: 0x00000001 [ 44.478972] wlan: [5797:I:ANY] osifp_create_wlan_vap: 9900: VDEV Create a4:97:33:df:ae:b1[ 44.490313] wlan: [5797:I:ANY] wlan_vap_create: 1644: devhandle=0xffffffc032a60880, opmode=IEEE80211_M_HOSTAP, flags=0x1[ 44.490313] [ 44.498782] wlan: [5797:I:ANY] ol_ath_vap_set_param: 1556: Setting SGI value: 1[ 44.510877] wlan: [5797:I:ANY] ol_ath_vap_set_param: 2609: VDEV params:HE su_bfee:1|su_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:1|dl_muofdma_bfer:0[ 44.517922] wlan: [5797:I:ANY] ol_ath_vap_set_param: 2622: he_bf_cap=0x7b[ 44.533359] wlan: [5797:I:ANY] ol_ath_vap_set_param: 2637: VDEV params: AC/VHT sounding mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged[ 44.539878] wlan: [5797:I:ANY] MBO Initialized[ 44.553944] wlan: [5797:I:ANY] OCE Initialized[ 44.558327] wlan: [5797:I:ANY] osif_nss_ol_vap_create: 1282: NSS wifi offload VAP create IF 32 nss_id -1 [ 44.562631] wlan: [5797:I:ANY] NSS radio_if 29[ 44.572469] wlan: [0:I:ANY] osif_nss_vdev_cfg_callback: 1007: VDEV configuration success: 0[ 44.576578] wlan: [5797:I:ANY] osif_nss_ol_vap_create: 1394: vap create ffffffc02d292880 : if_num 32 [ 44.585159] wlan: [5797:I:ANY] osif_create_vap_complete: 10120: TX Checksum:1|SG:1|TSO:1|LRO:0[ 44.594309] wlan: [5797:I:ANY] WLAN-NSS: VAP NSS ops initialized [ 44.603683] wlan: [5797:I:ANY] VAP device ath1 created osifp: (ffffffc02d292880) os_if: (ffffffc0290a0000)[ 44.775074] wlan: [0:I:CMN_MLME] vdev[0] ieee chan:40 freq:5200[ 44.775425] wlan: [0:I:ANY] vdev[0]: Mgt Rate:6000(kbps)[ 44.779849] wlan: [0:I:ANY] ol_ath_vap_set_param: 1812: Now supported CTRL RATE is:6000 kbps, rate code:0x10000003[ 44.782126] wlan: [5905:I:ANY] ol_ath_vap_set_param: 1556: Setting SGI value: 1[ 44.795556] wlan: [0:I:ANY] ol_ath_vap_set_param: 1686: Now supported MCAST RATE 54000(kbps), rate code: 0x10000004[ 44.802755] wlan: [0:I:ANY] vdev[0]: Mgt Rate:6000(kbps)[ 44.813143] wlan: [0:I:ANY] ol_ath_vap_set_param: 1812: Now supported CTRL RATE is:6000 kbps, rate code:0x10000003[ 44.818701] wlan: [0:I:ANY] ol_ath_vap_set_param: 1686: Now supported MCAST RATE 54000(kbps), rate code: 0x10000004[ 44.909875] wlan: [5922:I:ANY] osif_pdev_restart_vaps: 8845: No active vaps[ 44.960581] wlan: [5935:I:ANY] osif_nss_vdev_set_cfg: 2064: setting me mode 5 target type 0[ 44.960613] wlan: [5935:I:ANY] osif_nss_vdev_set_cfg: 2068: Mcast command 5[ 44.984099] br-lan: port 5(ath0) entered forwarding state[ 45.124248] wlan: [5951:I:ANY] ieee80211_ucfg_setparam: 1722: Setting Max Stations:128[ 45.459195] 8021q: adding VLAN 0 to HW filter on device ath1[ 45.459946] device ath1 entered promiscuous mode[ 45.463972] br-lan: port 6(ath1) entered forwarding state[ 45.468536] br-lan: port 6(ath1) entered forwarding state[ 45.534507] wlan: [3326:I:ANY] wlan_cfg80211_do_acs: 4440: vap-1(ath1):ACS Params[ 45.534537] wlan: [3326:I:ANY] wlan_cfg80211_do_acs: 4443: ht_enabled:1|ht40_enabled:0|vht_enabled:1|hw_mode:29|chwidth:20|[ 45.540975] wlan: [3326:I:ANY] ieee80211_autoselect_infra_bss_channel: 4136: ACS started: vap:0xffffffc0290a0000[ 45.692440] wlan: [6076:I:ANY] wlan_cfg80211_set_wiphy_params: 2448: WARNING: Fragmentation with HT mode NOT ALLOWED!![ 45.734859] wlan: [6082:I:ANY] ol_ath_vap_set_param: 1653: Configuring MCAST RATE is deffered as channel is not yet set for VAP[ 46.577405] ubi0 error: ubi_open_volume: cannot open device 0, volume 2, error -16[ 46.577450] ubi1 error: ubi_open_volume: cannot open device 1, volume 0, error -16[ 46.584218] ubi1 error: ubi_open_volume: cannot open device 1, volume 1, error -16[ 47.464057] br-lan: port 6(ath1) entered forwarding state[ 50.162499] wlan: [2585:I:ANY] ACS failed to derive the channel. So,selecting random channel [ 50.162546] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.170073] wlan: [2585:I:ANY] ******** ACS report ******** [ 50.176803] wlan: [2585:I:ANY] Channel | BSS | minrssi | maxrssi | NF | Ch load | spect load | sec_chan | SR bss | SR load | Ch Avil | Chan eff | NearBSS | Med BSS | Far BSS | Eff BSS | chan grade[ 50.182695] wlan: [2585:I:ANY] ----------------------------------------------------------------------------------------------------------------------------------------------------------------------[ 50.200190] wlan: [2585:I:ANY] 2412( 1) 1 21 21 -91 12 0 0 0 0 58 588 0 0 1 170 100 [ 50.217832] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.234979] wlan: [2585:I:ANY] 2417( 2) 0 0 0 -92 12 0 0 0 0 80 0 0 0 0 124 100 [ 50.241909] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.259282] wlan: [2585:I:ANY] 2422( 3) 1 20 20 -91 13 0 0 0 0 63 0 0 0 1 158 100 [ 50.266252] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.283587] wlan: [2585:I:ANY] 2427( 4) 0 0 0 -92 10 0 0 0 0 63 0 0 0 0 157 100 [ 50.290564] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.307914] wlan: [2585:I:ANY] 2432( 5) 3 15 17 -97 11 0 0 0 0 51 0 0 0 3 195 100 [ 50.314854] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.332196] wlan: [2585:I:ANY] 2437( 6) 1 21 21 -92 15 0 0 0 0 56 561 0 0 1 178 100 [ 50.339168] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.356498] wlan: [2585:I:ANY] 2442( 7) 0 0 0 -93 5 0 0 0 0 61 0 0 0 0 162 100 [ 50.363436] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.380821] wlan: [2585:I:ANY] 2447( 8) 2 18 23 -92 29 0 0 0 0 63 0 0 0 2 158 100 [ 50.387772] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.405108] wlan: [2585:I:ANY] 2452( 9) 0 0 0 -91 35 0 0 0 0 54 0 0 0 0 183 100 [ 50.412047] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.429429] wlan: [2585:I:ANY] 2457( 10) 0 0 0 -93 27 0 0 0 0 49 0 0 0 0 203 100 [ 50.436412] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.453723] wlan: [2585:I:ANY] 2462( 11) 6 14 38 -92 16 0 0 0 0 36 363 0 1 5 275 100 [ 50.460705] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.478027] wlan: [2585:I:ANY] 2467( 12) 0 0 0 -92 7 0 0 0 0 53 0 0 0 0 187 100 [ 50.484990] wlan: [2585:E:ANY] wlan_get_opclass: 1737: Operating class is 0[ 50.502336] wlan: [2585:I:ANY] 2472( 13) 0 0 0 -93 40 0 0 0 0 63 0 0 0 0 158 100 [ 50.509488] wlan: [2585:I:ANY] vap-1(ath1): ACS result PCH 1 freq 2412, SCH 5 freq 2432, hw_mode 1 chwidth 40, vht_seg0 3 freq 2422, vht_seg1 0 freq 0[ 50.526676] wlan: [2585:I:ANY] ieee80211_acs_scan_evhandler: 3870: lock held duration: 364(ms)[ 50.550170] wlan: [3326:I:ANY] DES SSID SET=Dynalink-AE-2.4G[ 50.550199] wlan: [3326:I:ANY] desired hw mode: 29[ 50.555163] wlan: [3326:I:ANY] ieee80211_ucfg_set_freq_internal: 575: [ 50.555163] Channel is configured already!![ 50.559679] wlan: [0:I:ANY] ieee80211_disable_legacy_rates: 1632: ieee80211_disable_legacy_rates:MSG: User has disabled the previously set modified rate for beacon.[ 50.570243] wlan: [0:I:ANY] ieee80211_disable_legacy_rates: 1633: ieee80211_disable_legacy_rates:MSG: Hence going for the lowest available basic rate for beacon: 0 (Kbps)[ 50.718183] wlan: [0:I:CMN_MLME] vdev[1] ieee chan:1 freq:2412[ 50.718599] wlan: [0:I:ANY] vdev[1]: Mgt Rate:6000(kbps)[ 50.722934] wlan: [0:I:ANY] ol_ath_vap_set_param: 1812: Now supported CTRL RATE is:6000 kbps, rate code:0x10000003[ 50.728462] wlan: [0:I:ANY] ol_ath_vap_set_param: 1686: Now supported MCAST RATE 54000(kbps), rate code: 0x10000004[ 50.738657] wlan: [0:I:ANY] vdev[1]: Mgt Rate:6000(kbps)[ 50.748915] wlan: [0:I:ANY] ol_ath_vap_set_param: 1812: Now supported CTRL RATE is:6000 kbps, rate code:0x10000003[ 50.754449] wlan: [0:I:ANY] ol_ath_vap_set_param: 1686: Now supported MCAST RATE 54000(kbps), rate code: 0x10000004[ 52.700525] sh (7881): drop_caches: 3

Bootloader u-boot log

Log from the early boot stages, u-boot

Format: Log Type - Time(microsec) - Message - Optional InfoLog Type: B - Since Boot(Power On Reset), D - Delta, S - StatisticS - QC_IMAGE_VERSION_STRING=BOOT.BF.3.3.1-00163S - IMAGE_VARIANT_STRING=HAACANAZAS - OEM_IMAGE_VERSION_STRING=CRMS - Boot Config, 0x000002e5B - 201 - PBL, StartB - 2734 - bootable_media_detect_entry, StartB - 4176 - bootable_media_detect_success, StartB - 4180 - elf_loader_entry, StartB - 6847 - auth_hash_seg_entry, StartB - 44695 - auth_hash_seg_exit, StartB - 106700 - elf_segs_hash_verify_entry, StartB - 169557 - PBL, EndB - 265441 - SBL1, StartB - 341600 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4B - 351116 - pm_device_init, StartB - 528260 - PM_SET_VAL:SkipD - 175405 - pm_device_init, DeltaB - 530700 - pm_driver_init, StartD - 5429 - pm_driver_init, DeltaB - 537013 - clock_init, StartD - 2135 - clock_init, DeltaB - 541039 - boot_flash_init, StartD - 12566 - boot_flash_init, DeltaB - 557296 - boot_config_data_table_init, StartD - 3111 - boot_config_data_table_init, Delta - (575 Bytes)B - 564799 - Boot Setting : 0x00000618B - 568703 - CDT version:2,Platform ID:8,Major ID:133,Minor ID:1,Subtype:5B - 575809 - sbl1_ddr_set_params, StartB - 579561 - CPR configuration: 0x30cB - 583007 - cpr_init, StartB - 585783 - Rail:0 Mode: 5 Voltage: 832000B - 590998 - CL CPR settled at 784000mVB - 593835 - Rail:1 Mode: 5 Voltage: 896000B - 598105 - Rail:1 Mode: 7 Voltage: 944000D - 16531 - cpr_init, DeltaB - 604876 - Pre_DDR_clock_init, StartB - 608902 - Pre_DDR_clock_init, EndB - 612287 - DDR Type : PCDDR4B - 619028 - do ddr sanity test, StartD - 1037 - do ddr sanity test, DeltaB - 622718 - DDR: Start of HAL DDR Boot TrainingB - 627446 - DDR: End of HAL DDR Boot TrainingB - 633241 - DDR: Checksum to be stored on flash is 1934429189B - 643550 - Image Load, StartD - 505385 - QSEE Image Loaded, Delta - (1378368 Bytes)B - 1149026 - Image Load, StartD - 61 - SEC Image Loaded, Delta - (0 Bytes)B - 1156712 - Image Load, StartD - 293868 - DEVCFG Image Loaded, Delta - (32488 Bytes)B - 1450671 - Image Load, StartD - 305092 - RPM Image Loaded, Delta - (93060 Bytes)B - 1755824 - Image Load, StartD - 369721 - APPSBL Image Loaded, Delta - (536590 Bytes)B - 2125697 - QSEE Execution, StartD - 61 - QSEE Execution, DeltaB - 2131492 - USB D+ check, StartD - 0 - USB D+ check, DeltaB - 2137867 - SBL1, EndD - 1874744 - SBL1, DeltaS - Flash Throughput, 6731 KB/s (2041753 Bytes, 303314 us)S - DDR Frequency, 600 MHzS - Core 0 Frequency, 1651 MHzU-Boot 0.0.1-1-80112-CS (May 21 2021 - 09:29:10 +0800)DRAM: smem ram ptable found: ver: 1 len: 41 GiBLed init ...NAND: Could not find nand_gpio in dts, using defaultsONFI device foundID = 1590aa2cVendor = 2cDevice = aaqpic_nand: changing oobsize to 80 from 128 bytesSF: Unsupported flash IDs: manuf ff, jedec ffff, ext_jedec ffffipq_spi: SPI Flash not found (bus/cs/speed/mode) = (0/0/48000000/0)256 MiBMMC: sdhci: Node Not found, skipping initializationPCI0 is not defined in the device treePCI1 is not defined in the device treeIn: serial@78B3000Out: serial@78B3000Err: serial@78B3000machid: 8850105MMC Device 0 not foundeth5 MAC Address from ART is not validHit any key to stop autoboot: 0ubi0: attaching mtd1ubi0: scanning is finishedubi0: attached mtd1 (name "mtd=0", size 97 MiB)ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytesubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096ubi0: good PEBs: 776, bad PEBs: 0, corrupted PEBs: 0ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128ubi0: max/mean erase counter: 6/3, WL threshold: 4096, image sequence number: 634945484ubi0: available PEBs: 0, total reserved PEBs: 776, PEBs reserved for bad PEB handling: 40Read 0 bytes from volume kernel to 44000000No size specified -> Using max size (4952064)## Loading kernel from FIT Image at 44000000 ... Using 'config@rt5010w-d350-rev0' configuration Trying 'kernel-1' kernel subimage Description: ARM64 OpenWrt Linux-5.15.92 Type: Kernel Image Compression: gzip compressed Data Start: 0x440000e8 Data Size: 4788199 Bytes = 4.6 MiB Architecture: AArch64 OS: Linux Load Address: 0x41000000 Entry Point: 0x41000000 Hash algo: crc32 Hash value: fe8f8322 Hash algo: sha1 Hash value: 7d88985be46f1444b1819b8741334131c4d9ba70 Verifying Hash Integrity ... crc32+ sha1+ OK## Loading fdt from FIT Image at 44000000 ... Using 'config@rt5010w-d350-rev0' configuration Trying 'fdt-1' fdt subimage Description: ARM64 OpenWrt dynalink_dl-wrx36 device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x44491214 Data Size: 41883 Bytes = 40.9 KiB Architecture: AArch64 Hash algo: crc32 Hash value: b249df20 Hash algo: sha1 Hash value: 827d5b08a2cee589612e0c87765bb7991c878dbf Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x44491214 Uncompressing Kernel Image ... OK Loading Device Tree to 4a3f2000, end 4a3ff39a ... OKCould not find PCI in device treeUsing machid 0x8850105 from environmentStarting kernel ...Jumping to AARCH64 kernel via monitor[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034]...

OpenWrt bootlog

[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034][ 0.000000] Linux version 5.15.61 (dirk@fedora) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 11.3.0 r19967+85-7f1ac858e3) 11.3.0, GNU ld (GNU Binutils) 2.37) #0 SMP Thu Aug 18 21:07:55 2022[ 0.000000] Machine model: Dynalink DL-WRX36[ 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-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] 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=mtd:rootfs rootfstype=squashfs rootwait 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: 888408K/1048576K available (7360K kernel code, 846K rwdata, 2028K rodata, 1216K init, 271K bss, 160168K 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.000001] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns[ 0.000180] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000)[ 0.000196] pid_max: default: 32768 minimum: 301[ 0.000352] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)[ 0.000369] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear)[ 0.001879] rcu: Hierarchical SRCU implementation.[ 0.002050] dyndbg: Ignore empty _ddebug table in a CONFIG_DYNAMIC_DEBUG_CORE build[ 0.002544] smp: Bringing up secondary CPUs ...[ 0.003128] Detected VIPT I-cache on CPU1[ 0.003193] CPU1: Booted secondary processor 0x0000000001 [0x410fd034][ 0.003795] Detected VIPT I-cache on CPU2[ 0.003836] CPU2: Booted secondary processor 0x0000000002 [0x410fd034][ 0.004424] Detected VIPT I-cache on CPU3[ 0.004463] CPU3: Booted secondary processor 0x0000000003 [0x410fd034][ 0.004530] smp: Brought up 1 node, 4 CPUs[ 0.004556] SMP: Total of 4 processors activated.[ 0.004565] CPU features: detected: 32-bit EL0 Support[ 0.004572] CPU features: detected: CRC32 instructions[ 0.004625] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching[ 0.004635] CPU: All CPU(s) started at EL1[ 0.004656] alternatives: patching kernel code[ 0.011816] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns[ 0.011849] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)[ 0.011981] pinctrl core: initialized pinctrl subsystem[ 0.012998] NET: Registered PF_NETLINK/PF_ROUTE protocol family[ 0.013455] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations[ 0.013497] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations[ 0.013535] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations[ 0.013858] thermal_sys: Registered thermal governor 'step_wise'[ 0.015287] cpuidle: using governor menu[ 0.015514] ASID allocator initialised with 65536 entries[ 0.049136] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4[ 0.057304] SCSI subsystem initialized[ 0.057474] usbcore: registered new interface driver usbfs[ 0.057516] usbcore: registered new interface driver hub[ 0.057552] usbcore: registered new device driver usb[ 0.057967] qcom_scm: convention: smc arm 64[ 0.059093] clocksource: Switched to clocksource arch_sys_counter[ 0.059815] NET: Registered PF_INET protocol family[ 0.059952] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)[ 0.060748] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)[ 0.060779] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)[ 0.060795] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)[ 0.060882] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear)[ 0.061032] TCP: Hash tables configured (established 8192 bind 8192)[ 0.061116] UDP hash table entries: 512 (order: 2, 16384 bytes, linear)[ 0.061156] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear)[ 0.061320] NET: Registered PF_UNIX/PF_LOCAL protocol family[ 0.061352] PCI: CLS 0 bytes, default 64[ 0.062479] workingset: timestamp_bits=46 max_order=18 bucket_order=0[ 0.066128] squashfs: version 4.0 (2009/01/31) Phillip Lougher[ 0.066145] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.[ 0.067865] qcom-qmp-phy 78000.phy: supply vdda-phy not found, using dummy regulator[ 0.068006] qcom-qmp-phy 78000.phy: supply vdda-pll not found, using dummy regulator[ 0.068574] qcom-qmp-phy 78000.phy: Registered Qcom-QMP phy[ 0.069307] qcom-qusb2-phy 79000.phy: supply vdda-pll not found, using dummy regulator[ 0.069445] qcom-qusb2-phy 79000.phy: supply vdda-phy-dpdm not found, using dummy regulator[ 0.069590] qcom-qusb2-phy 79000.phy: Registered Qcom-QUSB2 phy[ 0.072080] bam-dma-engine 704000.dma-controller: num-channels unspecified in dt[ 0.072104] bam-dma-engine 704000.dma-controller: num-ees unspecified in dt[ 0.075772] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled[ 0.076299] msm_serial 78b3000.serial: msm_serial: detected port #0[ 0.076339] msm_serial 78b3000.serial: uartclk = 3686400[ 0.076381] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 22, base_baud = 230400) is a MSM[ 0.076412] msm_serial: console setup on port #0[ 0.707020] printk: console [ttyMSM0] enabled[ 0.712120] msm_serial: driver initialized[ 0.719878] loop: module loaded[ 0.721145] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xaa[ 0.722978] nand: Micron MT29F2G08ABBGAH4[ 0.729587] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 128[ 0.734260] spmi spmi-0: PMIC arbiter version v2 (0x20010000)[ 0.744514] s1: supplied by regulator-dummy[ 0.747000] s2: supplied by regulator-dummy[ 0.751058] vdd_s3: supplied by regulator-dummy[ 0.755313] vdd_s4: supplied by regulator-dummy[ 0.759821] s5: supplied by regulator-dummy[ 0.764190] l1: supplied by regulator-dummy[ 0.768370] l2: supplied by regulator-dummy[ 0.772533] l3: supplied by regulator-dummy[ 0.776688] l4: supplied by regulator-dummy[ 0.780886] l5: supplied by regulator-dummy[ 0.785025] l6: supplied by regulator-dummy[ 0.789199] l7: supplied by regulator-dummy[ 0.793373] l8: supplied by regulator-dummy[ 0.797522] l9: supplied by regulator-dummy[ 0.801812] l11: supplied by regulator-dummy[ 0.805865] l12: supplied by regulator-dummy[ 0.810385] l13: supplied by regulator-dummy[ 0.829651] i2c_dev: i2c /dev entries driver[ 0.833256] sdhci: Secure Digital Host Controller Interface driver[ 0.833297] sdhci: Copyright(c) Pierre Ossman[ 0.838978] sdhci-pltfm: SDHCI platform and OF driver helper[ 0.846635] remoteproc remoteproc0: releasing cd00000.q6v5_wcss[ 0.850860] NET: Registered PF_INET6 protocol family[ 0.855629] Segment Routing with IPv6[ 0.860078] In-situ OAM (IOAM) with IPv6[ 0.863600] NET: Registered PF_PACKET protocol family[ 0.867577] 8021q: 802.1Q VLAN Support v1.8[ 0.888374] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4[ 0.888654] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0[ 0.894563] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1[ 0.901110] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0[ 0.908760] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable[ 0.916274] cpr3_mem_acc_init: apc: not using memory accelerator regulator[ 0.925410] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 704000 uV[ 0.932358] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 808000 uV[ 0.942342] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 864000 uV[ 0.952155] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop= 920000 uV[ 0.962005] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 755, quot_offset[ 7]= 0[ 0.971772] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 964, quot_offset[ 7]= 205[ 0.982621] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]=1064, quot_offset[ 7]= 100[ 0.993559] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1177, quot_offset[ 7]= 110[ 1.004638] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop[ 1.006816] nand: device found, Manufacturer ID: 0x2c, Chip ID: 0xaa[ 1.022264] nand: Micron MT29F2G08ABBGAH4[ 1.028606] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 128[ 1.032842] 25 qcomsmem partitions found on MTD device qcom_nand.0[ 1.040001] Creating 25 MTD partitions on "qcom_nand.0":[ 1.046234] 0x000000000000-0x000000100000 : "0:sbl1"[ 1.052942] 0x000000100000-0x000000200000 : "0:mibib"[ 1.057788] 0x000000200000-0x000000280000 : "0:bootconfig"[ 1.062396] 0x000000280000-0x000000300000 : "0:bootconfig1"[ 1.067730] 0x000000300000-0x000000600000 : "0:qsee"[ 1.075143] 0x000000600000-0x000000900000 : "0:qsee_1"[ 1.080386] 0x000000900000-0x000000980000 : "0:devcfg"[ 1.083370] 0x000000980000-0x000000a00000 : "0:devcfg_1"[ 1.088488] 0x000000a00000-0x000000a80000 : "0:apdp"[ 1.093983] 0x000000a80000-0x000000b00000 : "0:apdp_1"[ 1.098916] 0x000000b00000-0x000000b80000 : "0:rpm"[ 1.103917] 0x000000b80000-0x000000c00000 : "0:rpm_1"[ 1.108628] 0x000000c00000-0x000000c80000 : "0:cdt"[ 1.113873] 0x000000c80000-0x000000d00000 : "0:cdt_1"[ 1.118521] 0x000000d00000-0x000000d80000 : "0:appsblenv"[ 1.123787] 0x000000d80000-0x000000e80000 : "0:appsbl"[ 1.129553] 0x000000e80000-0x000000f80000 : "0:appsbl_1"[ 1.134546] 0x000000f80000-0x000001000000 : "0:art"[ 1.139649] 0x000007a00000-0x00000db00000 : "rootfs"[ 1.218611] mtd: device 18 (rootfs) set to be root filesystem[ 1.218902] mtdsplit: no squashfs found in "rootfs"[ 1.223390] 0x000007100000-0x000007a00000 : "0:wififw"[ 1.235357] 0x000001000000-0x000007100000 : "rootfs_1"[ 1.310378] 0x00000db00000-0x00000e400000 : "0:wififw_1"[ 1.317740] 0x00000e400000-0x00000fa00000 : "ubifs"[ 1.335127] 0x00000fa00000-0x00000fa80000 : "0:ethphyfw"[ 1.335936] 0x00000fa80000-0x00000fd00000 : "certificate"[ 1.349885] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 800000 KHz, changing to: 1017600 KHz[ 1.350976] remoteproc remoteproc0: cd00000.q6v5_wcss is available[ 1.360024] ubi0: attaching mtd18[ 1.795277] ubi0: scanning is finished[ 1.801412] ubi0: attached mtd18 (name "rootfs", size 97 MiB)[ 1.801450] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes[ 1.806144] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048[ 1.812931] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096[ 1.819785] ubi0: good PEBs: 776, bad PEBs: 0, corrupted PEBs: 0[ 1.826541] ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128[ 1.832801] ubi0: max/mean erase counter: 15/10, WL threshold: 4096, image sequence number: 1458707744[ 1.839835] ubi0: available PEBs: 0, total reserved PEBs: 776, PEBs reserved for bad PEB handling: 40[ 1.849131] ubi0: background thread "ubi_bgt0d" started, PID 486[ 1.849824] block ubiblock0_1: created from ubi0:1(rootfs)[ 1.867598] VFS: Mounted root (squashfs filesystem) readonly on device 254:0.[ 1.868016] Freeing unused kernel memory: 1216K[ 1.929202] Run /sbin/init as init process[ 1.929225] with arguments:[ 1.929227] /sbin/init[ 1.929231] with environment:[ 1.929233] HOME=/[ 1.929236] TERM=linux[ 2.113553] init: Console is alive[ 2.113659] init: - watchdog -[ 2.364872] random: crng init done[ 2.531796] kmodloader: loading kernel modules from /etc/modules-boot.d/*[ 2.642920] ssdk_switch_device_num_init[1211]:INFO:ess-switch dts node number: 1[ 2.643024] ssdk_dt_get_switch_node[1016]:INFO:ess-switch DT exist![ 2.649419] ssdk_dt_parse_access_mode[902]:INFO:switch_access_mode: local bus[ 2.655380] ssdk_dt_parse_access_mode[915]:INFO:switchreg_base_addr: 0x3a000000[ 2.662693] ssdk_dt_parse_access_mode[916]:INFO:switchreg_size: 0x1000000[ 2.669799] ssdk_dt_parse_mac_mode[304]:INFO:mac mode = 0xb[ 2.676730] ssdk_dt_parse_mac_mode[313]:INFO:mac mode1 = 0xff[ 2.682118] ssdk_dt_parse_mac_mode[322]:INFO:mac mode2 = 0xc[ 2.688030] ssdk_dt_parse_phy_info[693]:INFO:[PORT 6] port_mac_sel = QGMAC_PORT[ 2.693786] ssdk_dt_parse_uniphy[341]:INFO:ess-uniphy DT exist![ 2.700898] ssdk_dt_parse_intf_mac[845]:INFO:dp1 MAC a4:97:33:df:9d:16[ 2.706715] ssdk_dt_parse_intf_mac[845]:INFO:dp2 MAC a4:97:33:df:9d:17[ 2.713324] ssdk_dt_parse_intf_mac[845]:INFO:dp3 MAC a4:97:33:df:9d:17[ 2.719829] ssdk_dt_parse_intf_mac[845]:INFO:dp4 MAC a4:97:33:df:9d:17[ 2.726333] ssdk_dt_parse_intf_mac[845]:INFO:dp5 MAC a4:97:33:df:9d:17[ 2.732861] ssdk_plat_init start[ 2.860476] ssdk_gcc_clock_init[1220]:INFO:SSDK gcc clock init successfully![ 2.863482] malibu_phy_api_ops_init[2846]:INFO:qca probe malibu phy driver succeeded![ 2.905933] hsl_phy_phydev_get[750]:ERROR:phy_addr 4 phydev is NULL[ 2.916315] qca808x_phy_api_ops_init[2308]:INFO:qca probe qca808x phy driver succeeded![ 2.927006] regi_init[3754]:INFO:Initializing HPPE!![ 3.159096] ssdk_ppe_reset_init[1478]:INFO:ppe reset successfully![ 3.162684] qca_hppe_portctrl_hw_init[111]:INFO:Hawkeye PPE port initializing[ 3.845170] ssdk_switch_register[1867]:INFO:Chip version 0x1500[ 3.845201] qca_link_polling_select[1367]:INFO:link-polling-required node does not exist[ 3.849902] ssdk_switch_register[1893]:INFO:polling is selected[ 3.858224] regi_init[3758]:INFO:Initializing HPPE Done!![ 3.863942] ssdk_genl_init[211]:INFO:ssdk genl family register success.[ 3.869433] regi_init[3821]:INFO:qca-ssdk module init succeeded![ 3.878055] EDMA ver 1 hw init[ 3.882323] EDMA HW Reset completed succesfully[ 3.884987] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7)[ 3.889391] RxDesc:1 (15-15) RxFill:1 (7-7)[ 4.100271] QCA808X ethernet 90000.mdio-1:1c: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:1c, irq=POLL)[ 4.100801] nss-dp 3a007000.dp1 eth0: Registered netdev eth0(qcom-id:6)[ 4.109889] Generic PHY 90000.mdio-1:03: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:03, irq=POLL)[ 4.116116] nss-dp 3a001600.dp2 eth1: Registered netdev eth1(qcom-id:4)[ 4.126125] Generic PHY 90000.mdio-1:02: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:02, irq=POLL)[ 4.132263] nss-dp 3a001400.dp3 eth2: Registered netdev eth2(qcom-id:3)[ 4.142269] Generic PHY 90000.mdio-1:01: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:01, irq=POLL)[ 4.148406] nss-dp 3a001200.dp4 eth3: Registered netdev eth3(qcom-id:2)[ 4.158436] Generic PHY 90000.mdio-1:00: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:00, irq=POLL)[ 4.164587] nss-dp 3a001000.dp5 eth4: Registered netdev eth4(qcom-id:1)[ 4.173934] **********************************************************[ 4.180257] * NSS Data Plane driver[ 4.186840] **********************************************************[ 4.198745] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller[ 4.198794] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1[ 4.203345] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000000002010010[ 4.210722] xhci-hcd xhci-hcd.1.auto: irq 101, io mem 0x08a00000[ 4.220162] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller[ 4.226308] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2[ 4.231611] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed[ 4.239495] hub 1-0:1.0: USB hub found[ 4.245768] hub 1-0:1.0: 1 port detected[ 4.249864] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.[ 4.253831] hub 2-0:1.0: USB hub found[ 4.261666] hub 2-0:1.0: 1 port detected[ 4.266524] kmodloader: done loading kernel modules from /etc/modules-boot.d/*[ 4.276124] init: - preinit -[ 6.664229] UBIFS (ubi0:2): Mounting in unauthenticated mode[ 6.664328] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" started, PID 688[ 6.693853] UBIFS (ubi0:2): recovery needed[ 6.773402] UBIFS (ubi0:2): recovery completed[ 6.773514] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, name "rootfs_data"[ 6.776747] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes[ 6.784667] UBIFS (ubi0:2): FS size: 77328384 bytes (73 MiB, 609 LEBs), max 619 LEBs, journal size 3809280 bytes (3 MiB, 30 LEBs)[ 6.794560] UBIFS (ubi0:2): reserved for root: 3652410 bytes (3566 KiB)[ 6.806178] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), UUID 6C2C0CC0-52ED-4E79-8A17-0E09066AEB1C, small LPT model[ 6.815238] mount_root: switching to ubifs overlay[ 6.828327] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off.[ 6.832391] urandom-seed: Seeding with /etc/urandom.seed[ 6.907685] procd: - early -[ 6.907761] procd: - watchdog -[ 7.455230] procd: - watchdog -[ 7.456772] procd: - ubus -[ 7.509912] procd: - init -[ 7.701797] urngd: v1.0.2 started.[ 7.717124] kmodloader: loading kernel modules from /etc/modules.d/*[ 7.752428] Loading modules backported from Linux version v5.15.58-0-g7d8048d4e064[ 7.752464] Backport generated by backports.git v5.15.58-1-0-g42a95ce7[ 7.762905] NET: Registered PF_QIPCRTR protocol family[ 7.786964] PPP generic driver version 2.4.2[ 7.787602] NET: Registered PF_PPPOX protocol family[ 7.795499] ath11k c000000.wifi: ipq8074 hw2.0[ 7.795719] remoteproc remoteproc0: powering up cd00000.q6v5_wcss[ 7.811758] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668[ 8.918527] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up[ 8.921668] kmodloader: done loading kernel modules from /etc/modules.d/*[ 8.965267] ath11k c000000.wifi: qmi ignore invalid mem req type 3[ 8.972713] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff[ 8.972759] ath11k c000000.wifi: fw_version 0x270204a5 fw_build_timestamp 2022-08-04 13:05 fw_build_id WLAN.HK.2.7.0.1-01744-QCAHKSWPL_SILICONZ-1[ 11.169460] br-lan: port 1(eth0) entered blocking state[ 11.169500] br-lan: port 1(eth0) entered disabled state[ 11.173630] device eth0 entered promiscuous mode[ 11.186144] br-lan: port 2(eth1) entered blocking state[ 11.186190] br-lan: port 2(eth1) entered disabled state[ 11.190493] device eth1 entered promiscuous mode[ 11.201623] br-lan: port 3(eth2) entered blocking state[ 11.201660] br-lan: port 3(eth2) entered disabled state[ 11.205825] device eth2 entered promiscuous mode[ 11.215783] br-lan: port 4(eth3) entered blocking state[ 11.215824] br-lan: port 4(eth3) entered disabled state[ 11.220948] device eth3 entered promiscuous mode[ 11.230858] br-lan: port 5(eth4) entered blocking state[ 11.230904] br-lan: port 5(eth4) entered disabled state[ 11.235904] device eth4 entered promiscuous mode[ 11.795314] br-lan: port 6(wlan0-1) entered blocking state[ 11.795355] br-lan: port 6(wlan0-1) entered disabled state[ 11.799981] device wlan0-1 entered promiscuous mode

Community Builds

jkool702's build found here includes kernel level performance tweaks for maintaining low latency.

Notes

1. This device is based on the Askey RT5010W. The hardware and OEM firmware are nearly identical. In fact the PCB says RT5010W (shown on “PCB Top - Heatsink Removed” photo above). However there are some minor differences with the case color and the Askey model has a power switch.

2. The OEM firmware has dual-image support for firmware upgrade fail-safe. This feature may not be supported by advanced-reboot yet for this device.

3. While it may appear this device uses DSA with ifconfig, it actually uses a switchdev driver. See explanation.

Tags

How to add tags

ipq807x, ipq8072a, 256nand, 1024ram, 5port, gigabitethernet, 2.5gigabitethernet, 4core, wifi6, 802.11ax, 802.11abgn, ARMv8

This website uses cookies. By using the website, you agree with storing cookies on your computer. Also you acknowledge that you have read and understand our Privacy Policy. If you do not agree leave the website.More information about cookies

[OpenWrt Wiki] Dynalink DL-WRX36 (2024)

References

Top Articles
Latest Posts
Article information

Author: Lakeisha Bayer VM

Last Updated:

Views: 6120

Rating: 4.9 / 5 (69 voted)

Reviews: 84% of readers found this page helpful

Author information

Name: Lakeisha Bayer VM

Birthday: 1997-10-17

Address: Suite 835 34136 Adrian Mountains, Floydton, UT 81036

Phone: +3571527672278

Job: Manufacturing Agent

Hobby: Skimboarding, Photography, Roller skating, Knife making, Paintball, Embroidery, Gunsmithing

Introduction: My name is Lakeisha Bayer VM, I am a brainy, kind, enchanting, healthy, lovely, clean, witty person who loves writing and wants to share my knowledge and understanding with you.