ZyXEL NBG7815 (Armor G5)
AX6000 (1200+4800 Mbps) 12-Stream Multi-Gigabit WiFi 6 Router. 2.4GHz AX: 4×4 (Tx/Rx) 1024 QAM 20/40 MHz, up to 1.2 Gbps. 5GHz AX: 8×8 (Tx/Rx) 1024 QAM 20/40/80/160 MHz, up to 4.8 Gbps.
Hardware
CPU | Ram | Flash | Network | Wifi | USB | Serial |
---|---|---|---|---|---|---|
Qualcomm IPQ8074A @ 2.2 GHz | 1 GB | 4 GB eMMC + 8 MB SPI NOR | 1x 1/2.5/5/10 GbE 1x 1/2.5 GbE 4x 1 GbE | a/b/g/n/ac/ax | 1x 3.1 Gen2 | Yes |
OpenWrt Firmware
Stable (v23.05.5) (sysupgrade image) |
---|
openwrt-23.05.5-ipq807x-generic-zyxel_nbg7815-squashfs-sysupgrade.bin |
Snapshot (sysupgrade image) |
openwrt-qualcommax-ipq807x-zyxel_nbg7815-squashfs-sysupgrade.bin |
You only need one of the available sysupgrade images. The other available images are needed for special purposes only.
Other images (factory, initramfs)
Limitations
Currently (state of 2024) OpenWrt officially does not support the integrated FAN, the integrated LED.
- LED: PR 15504
- FAN: PR 14210
- 5G 160MHz channel width is not supported officially. There is hack available. For those doing their own builds.
The device can really run hot due to the disabled fan leading to throttling and instabilities. Esp. if an USB device is connected. You be advised to either deploy an active cooler directed to the device itself or making your own build integrating the patch referenced above for proper cooling. To the state of 2024 this FAN patch is not working reliable. But there are others (simpler, script based) solutions available (which could disappear/change over time) e. g.: by asvio, by ddimension, by psychowood, by pwned-pixel. There are more available just ask/look within the Forum Support Thread
Forum Support Thread
Installation
Pre-Requirements
To install OpenWrt on this device Root/SSH access is required. You can gain Root/SSH access with the following process using a terminal application. For Windows the most known is putty. For Linux/MAC OS choose any you want resp. its default terminal application.
- Disconnect the WAN cable of the router. Do not plug in back the WAN cable during the whole process!
- Reset the device to factory defaults by pushing and holding the reset button for ~15 seconds immediately after turning it on. The LED should light up orange.
- After ~5-10 minutes, when the LED is constant dark blue, connect your computer to one of the yellow LAN ports and wait for the connection to be established.
- Do not setup the router yet! Access the device via Telnet using address: 192.168.123.1 / port 23. On the prompt (NBG7815 login) login with username:
root
/ password:nbg7815@2019
E. g. On a Linux Terminal:telnet 192.168.123.1 -p 23
using the passwordnbg7815@2019
- Enable permanent Root/SSH access for this device by copy and paste the script lines from below. It will prevent a root password change which happens after finishing the setup and enable dropbear/SSH.
- Reboot the device.
- Check if SSH access is working by using address:
192.168.123.1
/ port:22
/ username:root
/ password:OpenWrt
E. g. On a Linux Terminal:ssh -oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null root@192.168.123.1 -p 22
using the passwordOpenWrt
Enable Root/SSH access
awk '/ckNowChangeDefaultCg/{f=0} f{$0="#" $0} /#dropbear/{f=1} 1' /rom/etc/init.d/preboot > /etc/init.d/preboot echo -e 'OpenWrt\nOpenWrt' | passwd root cp /etc/shadow /etc/shadow.bak sed -i '/exit 0/i \ \ uci set dropbear.setting.enable=1 \ uci commit dropbear \ uci set network.general.auto_ip_change=0 \ uci commit network \ /etc/init.d/dropbear enable \ /etc/init.d/dropbear restart \ chmod +w /etc/shadow \ cp /etc/shadow.bak /etc/shadow \ chmod -w /etc/shadow \ \ \' /etc/rc.local chmod -w /etc/init.d/preboot chmod -w /etc/config/dropbear chmod -w /etc/rc.local chmod -w /etc/shadow
Backup
Before you modify the device it is always a good idea to make a backup of the flash drive(s) installed. The generic process is described here.
We have one 8MB SPI NOR flash chip and one 4GB emmc flash chip. For both you can use dd. The partition layout of both chips is described here.
You can spare out the last two big partitions on the emmc chip if you want. They are not important. Transfer the files either via USB or ssh/scp.
Installing OpenWrt
Do not power off the device during the process!
- Login as root via SSH.
- Change to directory
/tmp/ApplicationData
. - Get the OpenWrt Firmware onto your router by either a) or b):
a) The device to has internet access for downloading the OpenWrt firmware file to the device using wget.
b) Download the OpenWrt firmware to your computer and move the file to a FAT or NTFS formatted USB drive. Connect the USB drive to your router and mount the USB device. Copy the file to /tmp/ApplicationData. - Extract the firmware file.
- Determine the bootconfig of the device and flash OpenWrt to the currently not active kernel and rootfs partitions.
- Mark the partitions to boot OpenWrt.
- Reboot the device.
Semi-automatic (Step 2-7)
cd /tmp/ApplicationData wget -O openwrt-ipq807x-generic-zyxel_nbg7815-squashfs-sysupgrade.bin https://downloads.openwrt.org/snapshots/targets/qualcommax/ipq807x/openwrt-qualcommax-ipq807x-zyxel_nbg7815-squashfs-sysupgrade.bin wget https://github.com/itorK/nbg7815_tools/blob/main/flash_to_openwrt.sh sh flash_to_openwrt.sh
Step 2-6
# Author: Karol Przybylski <itor@o2.pl> # https://github.com/itorK/nbg7815_tools/blob/main/flash_to_openwrt.sh # Step 2 cd /tmp/ApplicationData # Step 3 wget -O zyxel_nbg7815-squashfs-sysupgrade.bin https://downloads.openwrt.org/snapshots/targets/qualcommax/ipq807x/openwrt-qualcommax-ipq807x-zyxel_nbg7815-squashfs-sysupgrade.bin if [ ! -f "/tmp/ApplicationData/zyxel_nbg7815-squashfs-sysupgrade.bin" ]; then echo "Cannot find image zyxel_nbg7815-squashfs-sysupgrade.bin" exit 1 fi # Step 4 tar xvf zyxel_nbg7815-squashfs-sysupgrade.bin # Step 5 primaryboot_hlos=$(cat /proc/boot_info/0:HLOS/primaryboot) if [ $primaryboot_hlos -eq 0 ]; then dd if=/dev/zero of=/dev/mmcblk0p7 dd if=/tmp/ApplicationData/sysupgrade-zyxel_nbg7815/kernel of=/dev/mmcblk0p7 echo 1 > /proc/boot_info/0:HLOS/primaryboot else dd if=/dev/zero of=/dev/mmcblk0p3 dd if=/tmp/ApplicationData/sysupgrade-zyxel_nbg7815/kernel of=/dev/mmcblk0p3 echo 0 > /proc/boot_info/0:HLOS/primaryboot fi primaryboot_rootfs=$(cat /proc/boot_info/rootfs/primaryboot) if [ $primaryboot_rootfs -eq 0 ]; then dd if=/dev/zero of=/dev/mmcblk0p8 dd if=/tmp/ApplicationData/sysupgrade-zyxel_nbg7815/root of=/dev/mmcblk0p8 echo 1 > /proc/boot_info/rootfs/primaryboot else dd if=/dev/zero of=/dev/mmcblk0p4 dd if=/tmp/ApplicationData/sysupgrade-zyxel_nbg7815/root of=/dev/mmcblk0p4 echo 0 > /proc/boot_info/rootfs/primaryboot fi # Step 6 mkdir /tmp/ApplicationData/boot cat /proc/boot_info/getbinary_bootconfig > /tmp/ApplicationData/boot/bootconfig_new.bin echo 1 > /proc/mtd_writeable dd if=/tmp/ApplicationData/boot/bootconfig_new.bin 2>/dev/null | mtd -e "/dev/mtd2" write - "/dev/mtd2" 2>/dev/null dd if=/tmp/ApplicationData/boot/bootconfig_new.bin 2>/dev/null | mtd -e "/dev/mtd3" write - "/dev/mtd3" 2>/dev/null echo 0 > /proc/mtd_writeable sync
For reference: initial commit nbg7815
Back to OEM firmware
OpenWrt is currently not using the dual partition layout writing the opposite/not active kernel/rootfs partitions during upgrade. So we can easy go back to OEM firmware by just setting the active kernel and rootfs partitions Back to OEM firmware (1). In case this changes in future or you have flashed the other partitions as well you can flash the OEM firmware with proper rootfs and kernel image too Back to OEM firmware (2). Another option would be using the TFTP flash OEM firmware process from section Debricking.
Back to OEM firmware (1)
Be carefull with this process. Do not power off the device during the process!
- Login via SSH to the router.
- To use this method it is required to install kmod-mtd-rw first:
opkg update && opkg install kmod-mtd-rw
. - Change directory to /tmp.
- Copy & paste the code from script
Step 4
below. - Execute the script with
sh change_boot_partition.sh
. - Reboot the device.
- After reboot force a reflash of OEM firmware via WebGui using one of the provided OEM firmware files to purge OpenWrt entirely.
Step 4
cat <<'EOF' > /tmp/change_boot_partition.sh # Script to changing active boot partitions # Author: Karol Przybylski <itor@o2.pl> # Orginal script: https://github.com/itorK/nbg7815_tools/blob/main/change_boot_partition.sh // It lacks the insmod mtd-rw i_want_a_brick=1 openwrt_type=$(cat /etc/openwrt_release|grep DISTRIB_TARGET|cut -f 2 -d "'") if [ ${openwrt_type} == "ipq807x/generic" ]; then echo "OpenWrt release" boot_part=$(hexdump -e '1/1 "%01x|"' -n 1 -s 168 -C /dev/mtd2|cut -f 1 -d "|"|head -n1) dd if=/dev/mtd2 of=boot.bin bs=336 count=1 if [ ${boot_part} -eq 0 ]; then printf '\x01' | dd of=boot.bin bs=1 seek=168 count=1 conv=notrunc else printf '\x00' | dd of=boot.bin bs=1 seek=168 count=1 conv=notrunc fi insmod mtd-rw i_want_a_brick=1 mtd write boot.bin /dev/mtd2 mtd write boot.bin /dev/mtd3 fi if [ ${openwrt_type} == "ipq/ipq807x_64" ]; then echo "Original Zyxel Firmware" primaryboot_hlos=$(cat /proc/boot_info/0:HLOS/primaryboot) if [ $primaryboot_hlos -eq 0 ]; then echo 1 > /proc/boot_info/0:HLOS/primaryboot else echo 0 > /proc/boot_info/0:HLOS/primaryboot fi mkdir /tmp/ApplicationData/boot cat /proc/boot_info/getbinary_bootconfig > /tmp/ApplicationData/boot/bootconfig_new.bin echo 1 > /proc/mtd_writeable dd if=/tmp/ApplicationData/boot/bootconfig_new.bin 2>/dev/null | mtd -e "/dev/mtd2" write - "/dev/mtd2" 2>/dev/null dd if=/tmp/ApplicationData/boot/bootconfig_new.bin 2>/dev/null | mtd -e "/dev/mtd3" write - "/dev/mtd3" 2>/dev/null echo 0 > /proc/mtd_writeable sync fi EOF
Back to OEM firmware (2)
Be carefull with this process. Make sure you write the correct images to the correct partitions! Do not power off the device during the process!
- Download OEM firmware: see below
- Login via SSH to the router.
- To use this method it is required to install kmod-mtd-rw first:
opkg update && opkg install kmod-mtd-rw
- Copy the files to the router to /tmp (e. g. using scp or an usb drive). Rename them to
kernel
resp.rootfs
. - Flash the kernel and rootfs to the currently not active partitions. Copy & paste the code from and execute the script with
sh flash_kernel_rootfs.sh
.. - Copy & paste the code from script Step 4 from Back to OEM firmware (1) and execute the script with
sh change_boot_partition.sh
. - Reboot the device.
- After reboot force a reflash of OEM firmware via WebGui using one of the provided OEM firmware files to purge OpenWrt entirely.
Step 6
cat <<'EOF' > flash_kernel_rootfs.sh # check files if [ ! -f "/tmp/rootfs" ]; then echo "rootfs image" exit 1 fi if [ ! -f "/tmp/kernel" ]; then echo "kernel image" exit 1 fi # get bootconfig mtd_part=$(grep -i "\"0:bootconfig"\" /proc/mtd | awk -F: '{print $1}') bootconfig=$(hexdump -v -e '1/1 "%01x|"' -n 1 -s 168 -C /dev/"$mtd_part" | cut -f 1 -d "|" | head -n1) # write rootfs and kernel; mmcblk0p3=0/mmcblk0p4=0 mmcblk0p7=1/mmcblk0p8=1 if [ "${bootconfig}" -eq 1 ]; then dd if=/dev/zero of=/dev/mmcblk0p7 dd if=/tmp/kernel of=/dev/mmcblk0p7 dd if=/dev/zero of=/dev/mmcblk0p8 dd if=/tmp/root of=/dev/mmcblk0p8 sync fi if [ "${bootconfig}" -eq 0 ]; then dd if=/dev/zero of=/dev/mmcblk0p3 dd if=/tmp/kernel of=/dev/mmcblk0p3 dd if=/dev/zero of=/dev/mmcblk0p4 dd if=/tmp/root of=/dev/mmcblk0p4 sync fi EOF
OEM firmware
There is no official publicly available ressource to download the firmware files for this cloud managed router. You can retrieve the firmware file by forcing a firmware upgrade and catching the temporary valid random cloudflare link by yourself (this is limited to the latest firmware only). Firmware files version 6-8 were uploaded to mega.nz:
Firmware | sha256sum |
---|---|
V1.00(ABSK.8)C0.bin | 1213e94cab334a9317ea405d95817255ba8970c3d2cd0fa4f16b92847ff8906c |
V1.00(ABSK.7)C0.bin | 3a6cd0a4a15fa88bfe4e05d77e562ccd6dfb9bc61994d411155d94710192a884 |
V1.00(ABSK.6)C0.bin | 96e1e992552883e2a720e443f0ee5d31ba9b12bdd231786daed7d8425483e0f4 |
To get the rootfs and kernel image you have to extract them from the firmware file: rootfs=openwrt-ipq-ipq807x_64-squashfs-root.img, kernel=openwrt-ipq-ipq807x_64-qcom-ipq807x-zyxel-fit-uImage.itb.padded. To do so you would need a Linux machine with u-boot tools installed using dumpimage. Extracted rootfs and kernel for v8:
Firmware | sha256sum |
---|---|
kernel_v8 | 9661a36422f357b3072ff5d1dd4e43c89410d8dd2267b343ca2e7f2cc608f6d3 |
rootfs_v8 | cff590a82bb30ddced01e1d6514083519471aa4ca36e99a22d6fa74824075398 |
Debricking
In case you've lost the access to your device e. g. due to wrong configuration you can try the failsafe mode, a factory reset or a tftp boot/flash to recover your device:
Failsafe mode and factory reset procedures: → failsafe_and_factory_reset
In case neither the failsafe mode nor a factory reset does bring back a working unit you can try to recover your device by the following steps:
- TFTP boot OpenWrt to either reinstall or fix a broken installation | TFTP flash OEM firmware to purge OpenWrt.
Opening the case
Describe what needs to be done to open the device, e.g. remove rubber feet, adhesive labels, screws, ...
Serial
General information about the serial port and its usage:
Serial Port connectors of this specific device:
Serial connection parameters | TTL 115200, 8N1, 3.3V |
Connect RX, TX, GND cable to your USB to TTL/USB to Serial adapter only!
Bootloader/U-Boot access
- Connect the USB-to-serial adapter to the router and PC. Open up a serial console program.
- Reboot the device and interrupt autoboot by pressing any key. You will end up with a shell prompt:
NBG7815>
Zyxel zloader v1.0.0 (2020-01-06 - 08:24) Multiboot clinent version: 2.0 ipq807x_eth_halt: done eth0 PHY0 Down Speed :10 Half duplex eth0 PHY1 Down Speed :10 Half duplex eth0 PHY2 Down Speed :10 Half duplex eth0 PHY3 Down Speed :10 Half duplex eth0 PHY4 Down Speed :10 Half duplex 10M speed not supported ipq807x_eth_halt: done Ethernet interface failed to initialized! **Hit any key to stop autoboot: 3** NBG7815>
- To get access to the bootloader you first need a seed/passcode. You will obtain it by typing
ATSE NBG7815
into the console prompt:
NBG7815> ATSE NBG7815 NBG7815> 013D72FF0710
013D72FF0710
is the resulting seed/passcode This seed/passcode is always different for each boot → You have to do the same procedure on every reboot to access u-boot!
- Generate the password:
Do not enter the code below it into the current shell! We have to open a new terminal application. We have distinguish here between Windows and Linux users!
Linux: Copy and paste the code from below into a newly opened terminal. First use calc script and then generate password executing the script using the seed/passcode generated in section 3.
Windows you can use ZynPass to calculate the password.
calc script
cat <<'EOF' > tool.sh ror32() { echo $(( ($1 >> $2) | (($1 << (32 - $2) & (2**32-1)) ) )) } v="0x$1" a="0x${v:2:6}" b=$(( $a + 0x10F0A563)) c=$(( 0x${v:12:14} & 7 )) p=$(( $(ror32 $b $c) ^ $a )) printf "ATEN 1,%X\n" $p EOF
password
sh tool.sh **013D72FF0710**
The resulting password looks like:
ATEN 1,10F0A563
- Put the output from paragraph 4. in the terminal and press enter:
NBG7815> ATEN 1,10F0A563
- Now Enter
ATGU
for full u-boot access. You will end up with a new prompt:ZYXEL#
NBG7815> ATGU ZYXEL#
TFTP boot OpenWrt
- Download OpenWrt Firmware/Other images (factory, initramfs) choosing an itb firmware file.
- Setup your PC/Workstation assigning the static IP 192.168.1.99.
- Install and configure TFTP server. Your router's u-boot environment is acting as client. → tftpserver. Put the firmware file downloaded in the tftp download directory and make sure the firewall is turned off or configured properly (port 69/udp has to be open).
- Connect your PC/Workstation via LAN cable to the router.
- Power up your router and get access to u-boot as describe above. Step 1-6 reaching
ZYXEL#
prompt. - Enter
tftpboot
and the name of firmware file e. g.openwrt-qualcommax-ipq807x-zyxel_nbg7815-initramfs-uImage.itb
:ZYXEL# tftpboot openwrt-qualcommax-ipq807x-zyxel_nbg7815-initramfs-uImage.itb
- After the file is uploaded (this takes a while) you may proceed with entering
bootm
into the shell:ZYXEL# bootm
TFTP flash OEM firmware
- Download the OEM firmware.
- Setup your PC/Workstation assigning the static IP 192.168.1.99.
- Install and configure TFTP server. Your router's u-boot environment is acting as client. → tftpserver. Put the firmware file downloaded in the tftp download directory and make sure the firewall is turned off or configured properly (port 69/udp has to be open).
- Connect your PC/Workstation via LAN cable to the router.
- Power up your router and get access to u-boot as describe above. Step 1-2 is enough (no need unlock).
- Enter
ATUR
and the name of the downloaded firmware file e. g.ATUR V1.00(ABSK.8)C0.bin
:NBG7815> ATUR V1.00(ABSK.8)C0.bin
Do not power off the device during the process!
Photos
Flash-/Partition-Layout
8MB SPI NOR
spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64 m25p80 spi32766.0: found w25q64dw, expected n25q128a11 m25p80 spi32766.0: w25q64dw (8192 Kbytes) 22 ofpart partitions found on MTD device spi32766.0 Creating 22 MTD partitions on "spi32766.0": 0x000000000000-0x000000050000 : "0:SBL1" 0x000000050000-0x000000060000 : "0:MIBIB" 0x000000060000-0x000000080000 : "0:BOOTCONFIG" 0x000000080000-0x0000000a0000 : "0:BOOTCONFIG1" 0x0000000a0000-0x000000220000 : "0:QSEE" 0x000000220000-0x0000003a0000 : "0:QSEE_1" 0x0000003a0000-0x0000003b0000 : "0:DEVCFG" 0x0000003b0000-0x0000003c0000 : "0:DEVCFG_1" 0x0000003c0000-0x0000003d0000 : "0:APDP" 0x0000003d0000-0x0000003e0000 : "0:APDP_1" 0x0000003e0000-0x000000420000 : "0:RPM" 0x000000420000-0x000000460000 : "0:RPM_1" 0x000000460000-0x000000470000 : "0:CDT" 0x000000470000-0x000000480000 : "0:CDT_1" 0x000000480000-0x000000540000 : "0:APPSBL" 0x000000540000-0x000000600000 : "0:APPSBL_1" 0x000000600000-0x000000610000 : "0:APPSBLENV" 0x000000610000-0x000000650000 : "0:ART" 0x000000650000-0x0000006d0000 : "0:ETHPHYFW" 0x0000006d0000-0x0000006e0000 : "0:CRT" 0x0000006e0000-0x0000006f0000 : "DUAL_FLAG" 0x0000006f0000-0x000000800000 : "RESERVED" cat /proc/mtd dev: size erasesize name mtd0: 00050000 00010000 "0:sbl1" mtd1: 00010000 00010000 "0:mibib" mtd2: 00020000 00010000 "0:bootconfig" mtd3: 00020000 00010000 "0:bootconfig1" mtd4: 00180000 00010000 "0:qsee" mtd5: 00180000 00010000 "0:qsee_1" mtd6: 00010000 00010000 "0:devcfg" mtd7: 00010000 00010000 "0:devcfg_1" mtd8: 00010000 00010000 "0:apdp" mtd9: 00010000 00010000 "0:apdp_1" mtd10: 00040000 00010000 "0:rpm" mtd11: 00040000 00010000 "0:rpm_1" mtd12: 00010000 00010000 "0:cdt" mtd13: 00010000 00010000 "0:cdt_1" mtd14: 000c0000 00010000 "0:appsbl" mtd15: 000c0000 00010000 "0:appsbl_1" mtd16: 00010000 00010000 "0:appsblenv" mtd17: 00040000 00010000 "0:art" mtd18: 00080000 00010000 "0:ethphyfw" mtd19: 00010000 00010000 "0:crt" mtd20: 00010000 00010000 "dual_flag" mtd21: 00110000 00010000 "reserved"
4GB eMMC
mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using ADMA 64-bit Waiting for root device PARTUUID=a0bb3852-36cc-ac69-a1a2-6bd39ff56f0a... mmc0: MAN_BKOPS_EN bit is not set mmc0: new high speed MMC card at address 0001 mmcblk0: mmc0:0001 M62704 3.53 GiB mmcblk0rpmb: mmc0:0001 M62704 partition 3 512 KiB GPT: device [179:4] (rootfs) set to be root filesystem mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 sgdisk -p /dev/mmcblk0 Disk /dev/mmcblk0: 7405568 sectors, 3.5 GiB Sector size (logical/physical): 512/512 bytes Disk identifier (GUID): 98101B32-BBE2-4BF2-A06E-2BB33D000C20 Partition table holds up to 12 entries Main partition table begins at sector 2 and ends at sector 4 First usable sector is 34, last usable sector is 7405534 Partitions will be aligned on 2-sector boundaries Total free space is 282557 sectors (138.0 MiB) Number Start (sector) End (sector) Size Code Name 1 34 16417 8.0 MiB FFFF rootfs_data 2 16418 18465 1024.0 KiB FFFF header 3 18466 30753 6.0 MiB FFFF 0:HLOS 4 30754 153633 60.0 MiB FFFF rootfs 5 153634 161825 4.0 MiB FFFF 0:WIFIFW 6 161826 163873 1024.0 KiB FFFF header_1 7 163874 176161 6.0 MiB FFFF 0:HLOS_1 8 176162 299041 60.0 MiB FFFF rootfs_1 9 299042 307233 4.0 MiB FFFF 0:WIFIFW_1 10 307234 1355809 512.0 MiB FFFF nbg 11 1355810 7122977 2.8 GiB FFFF appdata
Bootlogs
Pre-Boot/SBL1
Format: Log Type - Time(microsec) - Message - Optional Info Log Type: B - Since Boot(Power On Reset), D - Delta, S - Statistic S - QC_IMAGE_VERSION_STRING=BOOT.BF.3.3.1-00147 S - IMAGE_VARIANT_STRING=HAABANAZA S - OEM_IMAGE_VERSION_STRING=CRM S - Boot Config, 0x000002e1 B - 203 - PBL, Start B - 2737 - bootable_media_detect_entry, Start B - 2885 - bootable_media_detect_success, Start B - 2889 - elf_loader_entry, Start B - 11481 - auth_hash_seg_entry, Start B - 11721 - auth_hash_seg_exit, Start B - 252687 - elf_segs_hash_verify_entry, Start B - 313206 - PBL, End B - 340502 - SBL1, Start B - 394914 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4 B - 401685 - pm_device_init, Start B - 528626 - PM_SET_VAL:Skip D - 126239 - pm_device_init, Delta B - 530913 - pm_driver_init, Start D - 5368 - pm_driver_init, Delta B - 537349 - clock_init, Start D - 2135 - clock_init, Delta B - 541405 - boot_flash_init, Start D - 16470 - boot_flash_init, Delta B - 561627 - boot_config_data_table_init, Start D - 1006 - boot_config_data_table_init, Delta - (575 Bytes) B - 569282 - Boot Setting : 0x00000618 B - 573003 - CDT version:2,Platform ID:8,Major ID:1,Minor ID:0,Subtype:241 B - 580110 - sbl1_ddr_set_params, Start B - 583922 - CPR configuration: 0x30c B - 587308 - cpr_init, Start B - 590175 - Rail:0 Mode: 5 Voltage: 824000 B - 595299 - CL CPR settled at 776000mV B - 598105 - Rail:1 Mode: 5 Voltage: 888000 B - 602405 - Rail:1 Mode: 7 Voltage: 928000 D - 16439 - cpr_init, Delta B - 609176 - Pre_DDR_clock_init, Start B - 613202 - Pre_DDR_clock_init, End B - 616588 - DDR Type : PCDDR3 B - 622352 - do ddr sanity test, Start D - 1067 - do ddr sanity test, Delta B - 627080 - DDR: Start of HAL DDR Boot Training B - 631838 - DDR: End of HAL DDR Boot Training B - 637511 - DDR: Checksum to be stored on flash is 1873222707 B - 647911 - Image Load, Start D - 335866 - QSEE Image Loaded, Delta - (1373936 Bytes) B - 983869 - Image Load, Start D - 61 - SEC Image Loaded, Delta - (0 Bytes) B - 991524 - Image Load, Start D - 9791 - DEVCFG Image Loaded, Delta - (26004 Bytes) B - 1001406 - Image Load, Start D - 30897 - RPM Image Loaded, Delta - (105964 Bytes) B - 1032394 - Image Load, Start D - 144631 - APPSBL Image Loaded, Delta - (588472 Bytes) B - 1177147 - QSEE Execution, Start D - 61 - QSEE Execution, Delta B - 1182973 - USB D+ check, Start D - 0 - USB D+ check, Delta B - 1189347 - SBL1, End D - 851163 - SBL1, Delta S - Flash Throughput, 4428 KB/s (2095623 Bytes, 473169 us) S - DDR Frequency, 466 MHz S - Core 0 Frequency, 1651 MHz
U-Boot
U-Boot 2016.01 (Jan 06 2020 - 08:24:12 +0000) DRAM: smem ram ptable found: ver: 1 len: 4 1 GiB NAND: Not an ONFI device ONFI probe failed ID = ffffffff Vendor = ff Device = ff qpic_nand: unknown NAND device manufacturer: ff device: ff U-Boot BUG at drivers/mtd/mtdcore.c:420! SPI_ADDR_LEN=3 SF: Detected W25Q64DW with page size 256 Bytes, erase size 4 KiB, total 8 MiB ipq_spi: page_size: 0x100, sector_size: 0x1000, size: 0x800000 8 MiB MMC: <NULL>: 0 In: serial@78B3000 Out: serial@78B3000 Err: serial@78B3000 machid: 80100f1 Setting bus to 0 Valid chip addresses: 40 Net: MAC0 addr:bc:cf:4f:ff:1b:a0 PHY ID1: 0x4d PHY ID2: 0xd0b1 PHY ID1: 0x4d PHY ID2: 0xd101 SPI_ADDR_LEN=3 SF: Detected W25Q64DW with page size 256 Bytes, erase size 4 KiB, total 8 MiB device 0 offset 0x650000, size 0x80000 SF: 524288 bytes @ 0x650000 Read: OK CRC check good on phy fw file (0x4B33) PHYFW:Loading IRAM...........done. PHYFW:Loading DRAM..............done. phy fw image load good CRC-16 matches (0x6FFA) PHY ID1: 0x31c3 PHY ID2: 0x1c12 EDMA ver 1 hw init Num rings - TxDesc:1 (0-0) TxCmpl:1 (7-7) RxDesc:1 (15-15) RxFill:1 (7-7) ipq807x_edma_alloc_rings: successfull ipq807x_edma_setup_ring_resources: successfull ipq807x_edma_configure_rings: successfull ipq807x_edma_hw_init: successfull eth0 SPI_ADDR_LEN=3 SF: Detected W25Q64DW with page size 256 Bytes, erase size 4 KiB, total 8 MiB device 0 offset 0x530000, size 0x10000 SF: 65536 bytes @ 0x530000 Read: OK ## Booting kernel from Legacy Image at 44000000 ... Image Name: Zyxel zloader Image Type: ARM U-Boot Standalone Program (gzip compressed) Data Size: 15340 Bytes = 15 KiB Load Address: 5f000000 Entry Point: 5f00000c Verifying Checksum ... OK Uncompressing Standalone Program ... OK
zloader
Zyxel zloader v1.0.0 (2020-01-06 - 08:24) Multiboot clinent version: 2.0 ipq807x_eth_halt: done eth0 PHY0 up Speed :1000 Full duplex eth0 PHY1 Down Speed :10 Half duplex eth0 PHY2 Down Speed :10 Half duplex eth0 PHY3 up Speed :1000 Full duplex eth0 PHY4 up Speed :1000 Full duplex 10M speed not supported ipq807x_eth_init: done Hit any key to stop autoboot: 0ipq807x_eth_halt: done *** Booting from system 1 *** MMC read: dev # 0, block # 163874, count 12288 ... 12288 blocks read: OK ## Loading kernel from FIT Image at 44000000 ... Using 'config@nbg7815' configuration Trying 'kernel@1' kernel subimage Description: ARM64 OpenWrt Linux-4.4.60 Type: Kernel Image Compression: gzip compressed Data Start: 0x440000e8 Data Size: 4084783 Bytes = 3.9 MiB Architecture: AArch64 OS: Linux Load Address: 0x41080000 Entry Point: 0x41080000 Hash algo: crc32 Hash value: 6f0d3aaa Hash algo: sha1 Hash value: 00e6f72c77acd5fed3999b0148c5a524802e1357 Verifying Hash Integrity ... crc32+ sha1+ OK ## Loading fdt from FIT Image at 44000000 ... Using 'config@nbg7815' configuration Trying 'fdt@nbg7815' fdt subimage Description: ARM64 OpenWrt qcom-ipq807x-zyxel device tree blob Type: Flat Device Tree Compression: uncompressed Data Start: 0x44439584 Data Size: 80584 Bytes = 78.7 KiB Architecture: AArch64 Hash algo: crc32 Hash value: 689818c1 Hash algo: sha1 Hash value: 6878282b432ec6f7c84ff68feb774c222850c457 Verifying Hash Integrity ... crc32+ sha1+ OK Booting using the fdt blob at 0x44439584 Uncompressing Kernel Image ... OK Loading Device Tree to 4a3e9000, end 4a3ffac7 ... OK Using machid 0x80100f1 from environment
OpenWrt
[ 0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034] [ 0.000000] Linux version 6.6.52 (NBG7815@R51600) (aarch64-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r27578+1-23ac1ad951) 13.3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Wed Sep 25 06:57:27 2024 [ 0.000000] Machine model: Zyxel NBG7815 [ 0.000000] OF: reserved mem: 0x0000000040000000..0x0000000040ffffff (16384 KiB) nomap non-reusable nss@40000000 [ 0.000000] OF: reserved mem: 0x000000004a400000..0x000000004a5fffff (2048 KiB) nomap non-reusable tzapp@4a400000 [ 0.000000] OF: reserved mem: 0x000000004a600000..0x000000004a9fffff (4096 KiB) nomap non-reusable bootloader@4a600000 [ 0.000000] OF: reserved mem: 0x000000004aa00000..0x000000004aafffff (1024 KiB) nomap non-reusable sbl@4aa00000 [ 0.000000] OF: reserved mem: 0x000000004ab00000..0x000000004abfffff (1024 KiB) nomap non-reusable smem@4ab00000 [ 0.000000] OF: reserved mem: 0x000000004ac00000..0x000000004affffff (4096 KiB) nomap non-reusable memory@4ac00000 [ 0.000000] OF: reserved mem: 0x000000004b000000..0x0000000050efffff (97280 KiB) nomap non-reusable wcnss@4b000000 [ 0.000000] OF: reserved mem: 0x0000000050f00000..0x0000000050ffffff (1024 KiB) nomap non-reusable q6_etr_dump@50f00000 [ 0.000000] OF: reserved mem: 0x0000000051000000..0x00000000510fffff (1024 KiB) nomap non-reusable m3_dump@51000000 [ 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] psci: OSI mode supported. [ 0.000000] psci: [Firmware Bug]: failed to set PC mode: -1 [ 0.000000] percpu: Embedded 18 pages/cpu s35240 r8192 d30296 u73728 [ 0.000000] pcpu-alloc: s35240 r8192 d30296 u73728 alloc=18*4096 [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [ 0.000000] Detected VIPT I-cache on CPU0 [ 0.000000] alternatives: applying boot alternatives [ 0.000000] Kernel command line: ttyMSM0,115200n8 root=PARTUUID=1991ff67-765c-8ba9-2885-4ccd1351bfd3 rootwait [ 0.000000] Unknown kernel command line parameters "ttyMSM0,115200n8", will be passed to user space. [ 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] Built 1 zonelists, mobility grouping on. Total pages: 258048 [ 0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted to 1MB [ 0.000000] software IO TLB: area num 4. [ 0.000000] software IO TLB: mapped [mem 0x000000007eb00000-0x000000007ec00000] (1MB) [ 0.000000] Memory: 885584K/1048576K available (8256K kernel code, 892K rwdata, 2504K rodata, 1536K init, 276K bss, 162992K 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] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 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.000109] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000) [ 0.000122] pid_max: default: 32768 minimum: 301 [ 0.005263] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.005277] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes, linear) [ 0.009608] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_task_cb_adjust=1. [ 0.009840] rcu: Hierarchical SRCU implementation. [ 0.009845] rcu: Max phase no-delay instances is 1000. [ 0.010763] smp: Bringing up secondary CPUs ... [ 0.011444] Detected VIPT I-cache on CPU1 [ 0.011550] CPU1: Booted secondary processor 0x0000000001 [0x410fd034] [ 0.012237] Detected VIPT I-cache on CPU2 [ 0.012309] CPU2: Booted secondary processor 0x0000000002 [0x410fd034] [ 0.012979] Detected VIPT I-cache on CPU3 [ 0.013045] CPU3: Booted secondary processor 0x0000000003 [0x410fd034] [ 0.013115] smp: Brought up 1 node, 4 CPUs [ 0.013124] SMP: Total of 4 processors activated. [ 0.013129] CPU features: detected: 32-bit EL0 Support [ 0.013134] CPU features: detected: CRC32 instructions [ 0.013204] CPU features: emulated: Privileged Access Never (PAN) using TTBR0_EL1 switching [ 0.013211] CPU: All CPU(s) started at EL1 [ 0.013214] alternatives: applying system-wide alternatives [ 0.023615] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.023642] futex hash table entries: 1024 (order: 4, 65536 bytes, linear) [ 0.025435] pinctrl core: initialized pinctrl subsystem [ 0.027205] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.027773] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations [ 0.027816] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.027850] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.028235] thermal_sys: Registered thermal governor 'step_wise' [ 0.028293] cpuidle: using governor menu [ 0.028483] ASID allocator initialised with 65536 entries [ 0.085380] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 0.087541] Modules: 29360 pages in range for non-PLT usage [ 0.087548] Modules: 520880 pages in range for PLT usage [ 0.092531] SCSI subsystem initialized [ 0.092726] usbcore: registered new interface driver usbfs [ 0.092760] usbcore: registered new interface driver hub [ 0.092823] usbcore: registered new device driver usb [ 0.093252] qcom_scm: convention: smc arm 64 [ 0.094980] clocksource: Switched to clocksource arch_sys_counter [ 0.098803] NET: Registered PF_INET protocol family [ 0.098969] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.101579] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear) [ 0.101641] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.101658] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear) [ 0.101744] TCP bind hash table entries: 8192 (order: 6, 262144 bytes, linear) [ 0.102019] TCP: Hash tables configured (established 8192 bind 8192) [ 0.102125] UDP hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.102164] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes, linear) [ 0.102612] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.102665] PCI: CLS 0 bytes, default 64 [ 0.104346] workingset: timestamp_bits=46 max_order=18 bucket_order=0 [ 0.104946] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.104954] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [ 0.111672] qcom-qmp-usb-phy 58000.phy: supply vdda-phy not found, using dummy regulator [ 0.111843] qcom-qmp-usb-phy 58000.phy: supply vdda-pll not found, using dummy regulator [ 0.113368] qcom-qmp-usb-phy 78000.phy: supply vdda-phy not found, using dummy regulator [ 0.113511] qcom-qmp-usb-phy 78000.phy: supply vdda-pll not found, using dummy regulator [ 0.115301] qcom-qusb2-phy 59000.phy: supply vdd not found, using dummy regulator [ 0.115478] qcom-qusb2-phy 59000.phy: supply vdda-pll not found, using dummy regulator [ 0.115519] qcom-qusb2-phy 59000.phy: supply vdda-phy-dpdm not found, using dummy regulator [ 0.115698] qcom-qusb2-phy 59000.phy: Registered Qcom-QUSB2 phy [ 0.115941] qcom-qusb2-phy 79000.phy: supply vdd not found, using dummy regulator [ 0.116058] qcom-qusb2-phy 79000.phy: supply vdda-pll not found, using dummy regulator [ 0.116116] qcom-qusb2-phy 79000.phy: supply vdda-phy-dpdm not found, using dummy regulator [ 0.116315] qcom-qusb2-phy 79000.phy: Registered Qcom-QUSB2 phy [ 0.126923] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabled [ 0.128027] msm_serial 78b1000.serial: msm_serial: detected port #1 [ 0.128069] msm_serial 78b1000.serial: uartclk = 19200000 [ 0.128400] 78b1000.serial: ttyMSM1 at MMIO 0x78b1000 (irq = 20, base_baud = 1200000) is a MSM [ 0.128861] msm_serial 78b3000.serial: msm_serial: detected port #0 [ 0.128896] msm_serial 78b3000.serial: uartclk = 3686400 [ 0.129200] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 21, base_baud = 230400) is a MSM [ 0.129231] msm_serial: console setup on port #0 [ 0.129274] printk: console [ttyMSM0] enabled [ 0.974818] msm_serial: driver initialized [ 0.984110] loop: module loaded [ 0.985479] spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64 [ 0.987134] spi-nor spi0.0: w25q64dw (8192 Kbytes) [ 0.993718] 22 fixed-partitions partitions found on MTD device spi0.0 [ 0.998434] Creating 22 MTD partitions on "spi0.0": [ 1.004470] 0x000000000000-0x000000050000 : "0:sbl1" [ 1.010681] 0x000000050000-0x000000060000 : "0:mibib" [ 1.014910] 0x000000060000-0x000000080000 : "0:bootconfig" [ 1.019848] 0x000000080000-0x0000000a0000 : "0:bootconfig1" [ 1.025227] 0x0000000a0000-0x000000220000 : "0:qsee" [ 1.030793] 0x000000220000-0x0000003a0000 : "0:qsee_1" [ 1.036102] 0x0000003a0000-0x0000003b0000 : "0:devcfg" [ 1.040784] 0x0000003b0000-0x0000003c0000 : "0:devcfg_1" [ 1.045969] 0x0000003c0000-0x0000003d0000 : "0:apdp" [ 1.051402] 0x0000003d0000-0x0000003e0000 : "0:apdp_1" [ 1.056400] 0x0000003e0000-0x000000420000 : "0:rpm" [ 1.061301] 0x000000420000-0x000000460000 : "0:rpm_1" [ 1.066094] 0x000000460000-0x000000470000 : "0:cdt" [ 1.071252] 0x000000470000-0x000000480000 : "0:cdt_1" [ 1.076022] 0x000000480000-0x000000540000 : "0:appsbl" [ 1.081192] 0x000000540000-0x000000600000 : "0:appsbl_1" [ 1.086238] 0x000000600000-0x000000610000 : "0:appsblenv" [ 1.091567] 0x000000610000-0x000000650000 : "0:art" [ 1.097091] 0x000000650000-0x0000006d0000 : "0:ethphyfw" [ 1.102003] 0x0000006d0000-0x0000006e0000 : "0:crt" [ 1.107270] 0x0000006e0000-0x0000006f0000 : "dual_flag" [ 1.111822] 0x0000006f0000-0x000000800000 : "reserved" [ 1.125622] spmi spmi-0: PMIC arbiter version v2 (0x20010000) [ 1.178716] i2c_dev: i2c /dev entries driver [ 1.186465] sdhci: Secure Digital Host Controller Interface driver [ 1.186507] sdhci: Copyright(c) Pierre Ossman [ 1.191541] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.198157] remoteproc remoteproc0: releasing cd00000.q6v5_wcss [ 1.221409] NET: Registered PF_INET6 protocol family [ 1.222629] Segment Routing with IPv6 [ 1.225535] In-situ OAM (IOAM) with IPv6 [ 1.229069] NET: Registered PF_PACKET protocol family [ 1.232758] mmc0: SDHCI controller on 7824900.mmc [7824900.mmc] using ADMA 64-bit [ 1.233295] 8021q: 802.1Q VLAN Support v1.8 [ 1.277063] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [ 1.277387] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0 [ 1.283192] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1 [ 1.289828] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0 [ 1.291654] mmc0: new HS200 MMC card at address 0001 [ 1.297470] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable [ 1.305718] mmcblk0: mmc0:0001 M62704 3.53 GiB [ 1.310010] cpr3_mem_acc_init: apc: not using memory accelerator regulator [ 1.320325] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 [ 1.323557] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 712000 uV [ 1.332040] mmcblk0boot0: mmc0:0001 M62704 2.00 MiB [ 1.335904] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 832000 uV [ 1.346722] mmcblk0boot1: mmc0:0001 M62704 2.00 MiB [ 1.350297] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 904000 uV [ 1.360855] mmcblk0rpmb: mmc0:0001 M62704 512 KiB, chardev (247:0) [ 1.364973] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop= 992000 uV [ 1.365038] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 701, quot_offset[ 7]= 0 [ 1.391019] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 925, quot_offset[ 7]= 220 [ 1.401869] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]=1045, quot_offset[ 7]= 120 [ 1.412806] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1198, quot_offset[ 7]= 150 [ 1.423980] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop [ 1.427213] cpufreq: cpufreq_online: CPU0: Running at unlisted initial frequency: 800000 KHz, changing to: 1017600 KHz [ 1.443562] remoteproc remoteproc0: cd00000.q6v5_wcss is available [ 1.452588] clk: Disabling unused clocks [ 1.460759] VFS: Mounted root (squashfs filesystem) readonly on device 179:4. [ 1.461242] Freeing unused kernel memory: 1536K [ 1.467033] Run /sbin/init as init process [ 1.471209] with arguments: [ 1.471211] /sbin/init [ 1.471212] ttyMSM0,115200n8 [ 1.471214] with environment: [ 1.471216] HOME=/ [ 1.471217] TERM=linux [ 1.557158] init: Console is alive [ 1.557272] init: - watchdog - [ 1.920210] kmodloader: loading kernel modules from /etc/modules-boot.d/* [ 1.932607] hwmon hwmon0: temp1_input not attached to any thermal zone [ 1.951844] gpio_button_hotplug: loading out-of-tree module taints kernel. [ 1.977696] ssdk_dt_parse_interrupt[941]:INFO:intr-gpio does not exist [ 2.037636] aquantia_phy_api_ops_init[1485]:INFO:qca probe aquantia phy driver succeeded! [ 3.915064] regi_init[2525]:INFO:Initializing HPPE Done!! [ 3.915191] regi_init[2574]:INFO:qca-ssdk module init succeeded! [ 3.921679] EDMA ver 1 hw init [ 3.925779] EDMA HW Reset completed succesfully [ 3.928423] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7) [ 3.932818] RxDesc:1 (15-15) RxFill:1 (7-7) [ 3.938501] dp1: ppe offload disabled: 0 for macid 1 [ 3.942194] dp1: Switch attached to macid 1 status: 0 [ 4.145766] Qualcomm QCA8075 90000.mdio-1:00: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:00, irq=POLL) [ 4.146887] dp2: ppe offload disabled: 0 for macid 2 [ 4.154660] dp2: Switch attached to macid 2 status: 0 [ 4.235313] Qualcomm QCA8075 90000.mdio-1:01: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:01, irq=POLL) [ 4.236264] dp3: ppe offload disabled: 0 for macid 3 [ 4.244207] dp3: Switch attached to macid 3 status: 0 [ 4.325357] Qualcomm QCA8075 90000.mdio-1:02: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:02, irq=POLL) [ 4.326253] dp4: ppe offload disabled: 0 for macid 4 [ 4.334252] dp4: Switch attached to macid 4 status: 0 [ 4.425343] Qualcomm QCA8075 90000.mdio-1:03: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:03, irq=POLL) [ 4.426459] dp5: ppe offload disabled: 0 for macid 5 [ 4.434239] dp5: Switch attached to macid 5 status: 0 [ 4.537208] Qualcomm QCA8081 90000.mdio-1:1c: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:1c, irq=POLL) [ 4.538568] dp6-syn: ppe offload disabled: 0 for macid 6 [ 4.546116] dp6-syn: Switch attached to macid 6 status: 0 [ 4.560409] Aquantia AQR113C 90000.mdio-1:08: attached PHY driver (mii_bus:phy_addr=90000.mdio-1:08, irq=POLL) [ 4.561372] ********************************************************** [ 4.569321] * NSS Data Plane driver [ 4.575813] ********************************************************** [ 4.595854] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 4.595904] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1 [ 4.600375] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000008002000010 [ 4.607899] xhci-hcd xhci-hcd.1.auto: irq 42, io mem 0x08a00000 [ 4.617282] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [ 4.623071] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2 [ 4.628637] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperSpeed [ 4.636562] hub 1-0:1.0: USB hub found [ 4.642788] hub 1-0:1.0: 1 port detected [ 4.646782] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.650946] hub 2-0:1.0: USB hub found [ 4.658862] hub 2-0:1.0: 1 port detected [ 4.662651] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller [ 4.666382] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 3 [ 4.671722] xhci-hcd xhci-hcd.2.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x0000008002000010 [ 4.679204] xhci-hcd xhci-hcd.2.auto: irq 43, io mem 0x08c00000 [ 4.688641] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller [ 4.694425] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 4 [ 4.699997] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperSpeed [ 4.707873] hub 3-0:1.0: USB hub found [ 4.714142] hub 3-0:1.0: 1 port detected [ 4.718134] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [ 4.722442] hub 4-0:1.0: USB hub found [ 4.730040] hub 4-0:1.0: 1 port detected [ 4.735049] kmodloader: done loading kernel modules from /etc/modules-boot.d/* [ 4.743898] init: - preinit - [ 5.034985] usb 3-1: new high-speed USB device number 2 using xhci-hcd [ 5.284576] hub 3-1:1.0: USB hub found [ 5.286279] hub 3-1:1.0: 4 ports detected [ 5.365219] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd [ 5.428212] hub 4-1:1.0: USB hub found [ 5.428620] hub 4-1:1.0: 4 ports detected [ 5.694974] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd [ 5.945014] usb 4-1.2: new SuperSpeed USB device number 3 using xhci-hcd [ 11.644972] random: crng init done [ 13.772161] loop0: detected capacity change from 0 to 122880 [ 13.815007] loop0: detected capacity change from 122880 to 107008 [ 13.816157] mount_root: overlay filesystem in /dev/loop0 has not been formatted yet [ 14.211915] EXT4-fs (loop0): mounted filesystem b70c817e-2ac1-4ca7-8800-0c3dfeade3a2 r/w with ordered data mode. Quota mode: disabled. [ 14.212409] mount_root: overlay filesystem has not been fully initialized yet [ 14.223685] mount_root: switching to ext4 overlay [ 14.233358] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off. [ 14.236169] urandom-seed: Seed file not found (/etc/urandom.seed) [ 14.274921] procd: - early - [ 14.275089] procd: - watchdog - [ 14.815682] procd: - watchdog - [ 14.816299] procd: - ubus - [ 14.876443] procd: - init - [ 15.100327] kmodloader: loading kernel modules from /etc/modules.d/* [ 15.185051] hid: raw HID events driver (C) Jiri Kosina [ 15.194877] Bluetooth: Core ver 2.22 [ 15.195103] NET: Registered PF_BLUETOOTH protocol family [ 15.197526] Bluetooth: HCI device and connection manager initialized [ 15.202837] Bluetooth: HCI socket layer initialized [ 15.209179] Bluetooth: L2CAP socket layer initialized [ 15.213772] Bluetooth: SCO socket layer initialized [ 15.220838] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 15.223655] Bluetooth: BNEP filters: protocol multicast [ 15.229237] Bluetooth: BNEP socket layer initialized [ 15.232970] urngd: v1.0.2 started. [ 15.241697] usbcore: registered new interface driver btusb [ 15.242963] Loading modules backported from Linux version v6.9.9-0-g28fdf4518483 [ 15.248138] Backport generated by backports.git v6.1.97-1-29-gf1d24a3683b2 [ 15.256945] Bluetooth: HCI UART driver ver 2.3 [ 15.262282] Bluetooth: HCI UART protocol H4 registered [ 15.266727] Bluetooth: HCI UART protocol BCSP registered [ 15.272614] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [ 15.277328] Bluetooth: HIDP socket layer initialized [ 15.289691] NET: Registered PF_QIPCRTR protocol family [ 15.292071] Bluetooth: RFCOMM TTY layer initialized [ 15.293734] Bluetooth: RFCOMM socket layer initialized [ 15.298538] Bluetooth: RFCOMM ver 1.11 [ 15.305397] hwmon hwmon1: temp1_input not attached to any thermal zone [ 15.364292] PPP generic driver version 2.4.2 [ 15.365178] NET: Registered PF_PPPOX protocol family [ 15.375998] ath11k c000000.wifi: ipq8074 hw2.0 [ 15.376032] ath11k c000000.wifi: FW memory mode: 0 [ 15.406120] remoteproc remoteproc0: powering up cd00000.q6v5_wcss [ 15.406456] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668 [ 16.137037] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up [ 16.181038] ath11k c000000.wifi: qmi ignore invalid mem req type 3 [ 16.188508] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff [ 16.188544] ath11k c000000.wifi: fw_version 0x290604a5 fw_build_timestamp 2023-10-12 02:06 fw_build_id WLAN.HK.2.9.0.1-01977-QCAHKSWPL_SILICONZ-1 [ 16.478435] remoteproc remoteproc0: stopped remote processor cd00000.q6v5_wcss [ 16.478484] remoteproc remoteproc0: powering up cd00000.q6v5_wcss [ 16.484812] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668 [ 16.834218] remoteproc remoteproc0: remote processor cd00000.q6v5_wcss is now up [ 16.838076] kmodloader: done loading kernel modules from /etc/modules.d/* [ 16.878123] ath11k c000000.wifi: qmi ignore invalid mem req type 3 [ 16.885564] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board_id 0xff soc_id 0xffffffff [ 16.885606] ath11k c000000.wifi: fw_version 0x290604a5 fw_build_timestamp 2023-10-12 02:06 fw_build_id WLAN.HK.2.9.0.1-01977-QCAHKSWPL_SILICONZ-1 [ 17.273224] ath11k c000000.wifi: htt event 48 not handled [ 21.625758] br-lan: port 1(lan1) entered blocking state [ 21.625806] br-lan: port 1(lan1) entered disabled state [ 21.629847] nss-dp 3a001000.dp1 lan1: entered allmulticast mode [ 21.635354] nss-dp 3a001000.dp1 lan1: entered promiscuous mode [ 21.652939] br-lan: port 2(lan2) entered blocking state [ 21.652988] br-lan: port 2(lan2) entered disabled state [ 21.657135] nss-dp 3a001200.dp2 lan2: entered allmulticast mode [ 21.662406] nss-dp 3a001200.dp2 lan2: entered promiscuous mode [ 21.672480] br-lan: port 3(lan3) entered blocking state [ 21.674003] br-lan: port 3(lan3) entered disabled state [ 21.679265] nss-dp 3a001400.dp3 lan3: entered allmulticast mode [ 21.684588] nss-dp 3a001400.dp3 lan3: entered promiscuous mode [ 21.695252] br-lan: port 4(lan4) entered blocking state [ 21.696148] br-lan: port 4(lan4) entered disabled state [ 21.701313] nss-dp 3a001600.dp4 lan4: entered allmulticast mode [ 21.706735] nss-dp 3a001600.dp4 lan4: entered promiscuous mode [ 21.721744] br-lan: port 5(10g) entered blocking state [ 21.721788] br-lan: port 5(10g) entered disabled state [ 21.725913] nss-dp 3a007000.dp6-syn 10g: entered allmulticast mode [ 21.731544] nss-dp 3a007000.dp6-syn 10g: entered promiscuous mode [ 24.725128] nss-dp 3a001000.dp1 lan1: PHY Link up speed: 1000 [ 24.725190] br-lan: port 1(lan1) entered blocking state [ 24.729871] br-lan: port 1(lan1) entered forwarding state [ 24.885253] nss-dp 3a001800.dp5 wan: PHY Link up speed: 1000 [ 25.765089] nss-dp 3a001000.dp1 lan1: PHY Link is down [ 25.765344] br-lan: port 1(lan1) entered disabled state [ 25.845623] nss-dp 3a001600.dp4 lan4: PHY Link up speed: 1000 [ 25.845671] br-lan: port 4(lan4) entered blocking state [ 25.850353] br-lan: port 4(lan4) entered forwarding state [ 27.845141] nss-dp 3a001000.dp1 lan1: PHY Link up speed: 1000 [ 27.845201] br-lan: port 1(lan1) entered blocking state [ 27.849879] br-lan: port 1(lan1) entered forwarding state
OEM
Starting kernel ... Jumping to AARCH64 kernel via monitor [20/02/2023 11:33:00] Booting Linux on physical CPU 0x0 [20/02/2023 11:33:00] Initializing cgroup subsys cpuset [20/02/2023 11:33:00] Initializing cgroup subsys cpu [20/02/2023 11:33:00] Initializing cgroup subsys cpuacct [20/02/2023 11:33:00] Linux version 4.4.60 (openwrt@0e6791bdf6c5) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 eb4b1a4+r49254) ) #1 SMP PREEMPT Wed Sep 29 08:31:14 UTC 2021 [20/02/2023 11:33:00] Boot CPU: AArch64 Processor [410fd034] [20/02/2023 11:33:00] Ignoring memory range 0x40000000 - 0x41000000 [20/02/2023 11:33:00] efi: Getting EFI parameters from FDT: [20/02/2023 11:33:00] efi: UEFI not found. [20/02/2023 11:33:00] Reserved memory: OVERLAP DETECTED! [20/02/2023 11:33:00] wifi_dump@51000000 (0x0000000051000000--0x0000000051600000) overlaps with wigig_dump@51200000 (0x0000000051200000--0x0000000051600000) [20/02/2023 11:33:00] On node 0 totalpages: 228864 [20/02/2023 11:33:00] DMA zone: 3576 pages used for memmap [20/02/2023 11:33:00] DMA zone: 0 pages reserved [20/02/2023 11:33:00] DMA zone: 228864 pages, LIFO batch:31 [20/02/2023 11:33:00] psci: probing for conduit method from DT. [20/02/2023 11:33:00] psci: PSCIv1.0 detected in firmware. [20/02/2023 11:33:00] psci: Using standard PSCI v0.2 function IDs [20/02/2023 11:33:00] psci: MIGRATE_INFO_TYPE not supported. [20/02/2023 11:33:00] PERCPU: Embedded 15 pages/cpu @ffffffc03ef52000 s21120 r8192 d32128 u61440 [20/02/2023 11:33:00] pcpu-alloc: s21120 r8192 d32128 u61440 alloc=15*4096 [20/02/2023 11:33:00] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3 [20/02/2023 11:33:00] Detected VIPT I-cache on CPU0 [20/02/2023 11:33:00] CPU features: enabling workaround for ARM erratum 845719 [20/02/2023 11:33:00] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 225288 [20/02/2023 11:33:00] Kernel command line: console=ttyMSM0,115200n8 root=PARTUUID=a0bb3852-36cc-ac69-a1a2-6bd39ff56f0a rootwait swiotlb=1 [20/02/2023 11:33:00] PID hash table entries: 4096 (order: 3, 32768 bytes) [20/02/2023 11:33:00] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) [20/02/2023 11:33:00] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) [20/02/2023 11:33:00] software IO TLB [mem 0x7fe0a000-0x7fe4a000] (0MB) mapped at [ffffffc03ee0a000-ffffffc03ee49fff] [20/02/2023 11:33:00] Memory: 887072K/915456K available (5602K kernel code, 637K rwdata, 2380K rodata, 232K init, 406K bss, 28384K reserved, 0K cma-reserved) [20/02/2023 11:33:00] Virtual kernel memory layout: [20/02/2023 11:33:00] vmalloc : 0xffffff8000000000 - 0xffffffbdbfff0000 ( 246 GB) [20/02/2023 11:33:00] vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000 ( 8 GB maximum) [20/02/2023 11:33:00] 0xffffffbdc0040000 - 0xffffffbdc1000000 ( 15 MB actual) [20/02/2023 11:33:00] fixed : 0xffffffbffa7fd000 - 0xffffffbffac00000 ( 4108 KB) [20/02/2023 11:33:00] PCI I/O : 0xffffffbffae00000 - 0xffffffbffbe00000 ( 16 MB) [20/02/2023 11:33:00] modules : 0xffffffbffc000000 - 0xffffffc000000000 ( 64 MB) [20/02/2023 11:33:00] memory : 0xffffffc000000000 - 0xffffffc03f000000 ( 1008 MB) [20/02/2023 11:33:00] .init : 0xffffffc00084e000 - 0xffffffc000888000 ( 232 KB) [20/02/2023 11:33:00] .text : 0xffffffc000080000 - 0xffffffc00084da14 ( 7991 KB) [20/02/2023 11:33:00] .data : 0xffffffc000898000 - 0xffffffc000937400 ( 637 KB) [20/02/2023 11:33:00] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 [20/02/2023 11:33:00] Preemptible hierarchical RCU implementation. [20/02/2023 11:33:00] Build-time adjustment of leaf fanout to 64. [20/02/2023 11:33:00] NR_IRQS:64 nr_irqs:64 0 [20/02/2023 11:33:00] Architected cp15 timer(s) running at 19.20MHz (virt). [20/02/2023 11:33:00] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns [20/02/2023 11:33:00] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns [20/02/2023 11:33:00] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=192000) [20/02/2023 11:33:00] pid_max: default: 32768 minimum: 301 [20/02/2023 11:33:00] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes) [20/02/2023 11:33:00] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes) [20/02/2023 11:33:00] Initializing cgroup subsys io [20/02/2023 11:33:00] Initializing cgroup subsys memory [20/02/2023 11:33:00] Initializing cgroup subsys devices [20/02/2023 11:33:00] Initializing cgroup subsys freezer [20/02/2023 11:33:00] Initializing cgroup subsys net_cls [20/02/2023 11:33:00] Initializing cgroup subsys pids [20/02/2023 11:33:00] EFI services will not be available. [20/02/2023 11:33:00] ASID allocator initialised with 65536 entries [20/02/2023 11:33:00] MSM Memory Dump base table set up [20/02/2023 11:33:00] MSM Memory Dump apps data table set up [20/02/2023 11:33:00] Detected VIPT I-cache on CPU1 [20/02/2023 11:33:00] CPU1: Booted secondary processor [410fd034] [20/02/2023 11:33:00] Detected VIPT I-cache on CPU2 [20/02/2023 11:33:00] CPU2: Booted secondary processor [410fd034] [20/02/2023 11:33:00] Detected VIPT I-cache on CPU3 [20/02/2023 11:33:00] CPU3: Booted secondary processor [410fd034] [20/02/2023 11:33:00] Brought up 4 CPUs [20/02/2023 11:33:00] SMP: Total of 4 processors activated. [20/02/2023 11:33:00] CPU: All CPU(s) started at EL1 [20/02/2023 11:33:00] alternatives: patching kernel code [20/02/2023 11:33:00] DMI not present or invalid. [20/02/2023 11:33:00] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [20/02/2023 11:33:00] futex hash table entries: 1024 (order: 5, 131072 bytes) [20/02/2023 11:33:00] pinctrl core: initialized pinctrl subsystem [20/02/2023 11:33:00] NET: Registered protocol family 16 [20/02/2023 11:33:00] cpuidle: using governor ladder [20/02/2023 11:33:00] cpuidle: using governor menu [20/02/2023 11:33:00] vdso: 2 pages (1 code @ ffffffc00089d000, 1 data @ ffffffc00089c000) [20/02/2023 11:33:00] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers. [20/02/2023 11:33:00] DMA: preallocated 256 KiB pool for atomic allocations [20/02/2023 11:33:00] CPU: unavail, SoC Version: 2.0 [20/02/2023 11:33:00] <CORE> glink_init: IPC Logging Disabled [20/02/2023 11:33:00] IPC logging disabled [20/02/2023 11:33:00] IPC logging disabled [20/02/2023 11:33:00] IPC logging disabled [20/02/2023 11:33:00] IPC logging disabled [20/02/2023 11:33:00] IPC logging disabled [20/02/2023 11:33:00] gpiochip_add: registered GPIOs 0 to 69 on device: 1000000.pinctrl [20/02/2023 11:33:00] GPIO chip 1000000.pinctrl: created GPIO range 0->69 ==> 1000000.pinctrl PIN 0->69 [20/02/2023 11:33:00] Soc version is not 1, changing clock offsets [20/02/2023 11:33:00] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ! [20/02/2023 11:33:00] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ! [20/02/2023 11:33:00] msm_rpm_dev_probe: APSS-RPM communication over GLINK [20/02/2023 11:33:00] sps:sps is ready. [20/02/2023 11:33:00] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [20/02/2023 11:33:00] qcom,cpr3-npu-regulator a4000.npu-cpr: NPU CPR valid fuse count: 2 [20/02/2023 11:33:00] of_get_named_gpiod_flags: can't parse 'gpio' property of node '/fixed-regulator@0[0]' [20/02/2023 11:33:00] pps_core: LinuxPPS API ver. 1 registered [20/02/2023 11:33:00] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [20/02/2023 11:33:00] PTP clock support registered [20/02/2023 11:33:00] dmi: Firmware registration failed. [20/02/2023 11:33:00] Advanced Linux Sound Architecture Driver Initialized. [20/02/2023 11:33:00] clocksource: Switched to clocksource arch_sys_counter [20/02/2023 11:33:00] NET: Registered protocol family 2 [20/02/2023 11:33:00] TCP established hash table entries: 8192 (order: 4, 65536 bytes) [20/02/2023 11:33:00] TCP bind hash table entries: 8192 (order: 5, 131072 bytes) [20/02/2023 11:33:00] TCP: Hash tables configured (established 8192 bind 8192) [20/02/2023 11:33:00] UDP hash table entries: 512 (order: 2, 16384 bytes) [20/02/2023 11:33:00] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) [20/02/2023 11:33:00] NET: Registered protocol family 1 [20/02/2023 11:33:00] PCI: CLS 0 bytes, default 128 [20/02/2023 11:33:00] hw perfevents: enabled with armv8_pmuv3 PMU driver, 7 counters available [20/02/2023 11:33:00] squashfs: version 4.0 (2009/01/31) Phillip Lougher [20/02/2023 11:33:00] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. [20/02/2023 11:33:00] fuse init (API version 7.23) [20/02/2023 11:33:00] Key type asymmetric registered [20/02/2023 11:33:00] Asymmetric key parser 'x509' registered [20/02/2023 11:33:00] io scheduler noop registered [20/02/2023 11:33:00] io scheduler deadline registered (default) [20/02/2023 11:33:00] qcom-pcie 20000000.pci: GPIO lookup for consumer perst [20/02/2023 11:33:00] qcom-pcie 20000000.pci: using device tree for GPIO lookup [20/02/2023 11:33:00] of_get_named_gpiod_flags: can't parse 'perst-gpios' property of node '/soc/pci@20000000[0]' [20/02/2023 11:33:00] of_get_named_gpiod_flags: parsed 'perst-gpio' property of node '/soc/pci@20000000[0]' - status (0) [20/02/2023 11:33:00] 20000000.pci supply vdda not found, using dummy regulator [20/02/2023 11:33:00] 20000000.pci supply vdda_phy not found, using dummy regulator [20/02/2023 11:33:00] 20000000.pci supply vdda_refclk not found, using dummy regulator [20/02/2023 11:33:00] PCI host bridge /soc/pci@20000000 ranges: [20/02/2023 11:33:00] IO 0x20200000..0x202fffff -> 0x20200000 [20/02/2023 11:33:00] MEM 0x20300000..0x20ffffff -> 0x20300000 [20/02/2023 11:33:01] qcom-pcie 20000000.pci: phy link never came up [20/02/2023 11:33:01] qcom-pcie 20000000.pci: hostinit failed [20/02/2023 11:33:01] qcom-pcie 20000000.pci: cannot initialize host [20/02/2023 11:33:01] qcom-pcie: probe of 20000000.pci failed with error -110 [20/02/2023 11:33:01] qcom-pcie 10000000.pci: GPIO lookup for consumer perst [20/02/2023 11:33:01] qcom-pcie 10000000.pci: using device tree for GPIO lookup [20/02/2023 11:33:01] of_get_named_gpiod_flags: can't parse 'perst-gpios' property of node '/soc/pci@10000000[0]' [20/02/2023 11:33:01] of_get_named_gpiod_flags: parsed 'perst-gpio' property of node '/soc/pci@10000000[0]' - status (0) [20/02/2023 11:33:01] 10000000.pci supply vdda not found, using dummy regulator [20/02/2023 11:33:01] 10000000.pci supply vdda_phy not found, using dummy regulator [20/02/2023 11:33:01] 10000000.pci supply vdda_refclk not found, using dummy regulator [20/02/2023 11:33:01] PCI host bridge /soc/pci@10000000 ranges: [20/02/2023 11:33:01] IO 0x10200000..0x102fffff -> 0x10200000 [20/02/2023 11:33:01] MEM 0x10300000..0x10ffffff -> 0x10300000 [20/02/2023 11:33:02] qcom-pcie 10000000.pci: phy link never came up [20/02/2023 11:33:02] qcom-pcie 10000000.pci: hostinit failed [20/02/2023 11:33:02] qcom-pcie 10000000.pci: cannot initialize host [20/02/2023 11:33:02] qcom-pcie: probe of 10000000.pci failed with error -110 [20/02/2023 11:33:02] MDSS QPIC HW Base phy_Address=0x7980000 virt=ffffff80004c0000 [20/02/2023 11:33:02] mdss_qpic_panel_probe: Panel Name = qpic lcd panel [20/02/2023 11:33:02] mdss_fb_register: FrameBuffer[0] 800x480 registered successfully! [20/02/2023 11:33:02] NET: Registered protocol family 27 [20/02/2023 11:33:02] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [20/02/2023 11:33:02] qmi_log_init: IPC Logging disabled [20/02/2023 11:33:02] qmi_log_init: IPC Logging disabled [20/02/2023 11:33:02] msm_rpm_log_probe: OK [20/02/2023 11:33:02] msm-dcc b3000.dcc: DCC XPU is not specified [20/02/2023 11:33:02] msm-dcc b3000.dcc: DCC SRAM dump setup failed [20/02/2023 11:33:02] msm-dcc b3000.dcc: jiffies_64: 0xffff8bbe, cntvct_64: 0x77ff162c [20/02/2023 11:33:02] msm-dcc b3000.dcc: gcnt_hi: 0x00000000(0xffffff80003de004) [20/02/2023 11:33:02] msm-dcc b3000.dcc: gcnt_lo: 0x77ff17db(0xffffff80003de000) [20/02/2023 11:33:02] TZ Log : Will warn on Access Violation, as paniconaccessviolation is not set [20/02/2023 11:33:02] msm_serial 78b3000.serial: msm_serial: detected port #0 [20/02/2023 11:33:02] msm_serial 78b3000.serial: uartclk = 3686400 [20/02/2023 11:33:02] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 77, base_baud = 230400) is a MSM [20/02/2023 11:33:02] msm_serial: console setup on port #0 [20/02/2023 11:33:03] console [ttyMSM0] enabled [20/02/2023 11:33:03] msm_serial 78b1000.serial: msm_serial: detected port #1 [20/02/2023 11:33:03] msm_serial 78b1000.serial: uartclk = 19200000 [20/02/2023 11:33:03] 78b1000.serial: ttyMSM1 at MMIO 0x78b1000 (irq = 78, base_baud = 1200000) is a MSM [20/02/2023 11:33:03] msm_serial: driver initialized [20/02/2023 11:33:03] msm_serial_hsl_init: driver initialized [20/02/2023 11:33:03] brd: module loaded [20/02/2023 11:33:03] spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64 [20/02/2023 11:33:03] m25p80 spi32766.0: found w25q64dw, expected n25q128a11 [20/02/2023 11:33:03] m25p80 spi32766.0: w25q64dw (8192 Kbytes) [20/02/2023 11:33:03] 22 ofpart partitions found on MTD device spi32766.0 [20/02/2023 11:33:03] Creating 22 MTD partitions on "spi32766.0": [20/02/2023 11:33:03] 0x000000000000-0x000000050000 : "0:SBL1" [20/02/2023 11:33:03] 0x000000050000-0x000000060000 : "0:MIBIB" [20/02/2023 11:33:03] 0x000000060000-0x000000080000 : "0:BOOTCONFIG" [20/02/2023 11:33:03] 0x000000080000-0x0000000a0000 : "0:BOOTCONFIG1" [20/02/2023 11:33:03] 0x0000000a0000-0x000000220000 : "0:QSEE" [20/02/2023 11:33:03] 0x000000220000-0x0000003a0000 : "0:QSEE_1" [20/02/2023 11:33:03] 0x0000003a0000-0x0000003b0000 : "0:DEVCFG" [20/02/2023 11:33:03] 0x0000003b0000-0x0000003c0000 : "0:DEVCFG_1" [20/02/2023 11:33:03] 0x0000003c0000-0x0000003d0000 : "0:APDP" [20/02/2023 11:33:03] 0x0000003d0000-0x0000003e0000 : "0:APDP_1" [20/02/2023 11:33:03] 0x0000003e0000-0x000000420000 : "0:RPM" [20/02/2023 11:33:03] 0x000000420000-0x000000460000 : "0:RPM_1" [20/02/2023 11:33:03] 0x000000460000-0x000000470000 : "0:CDT" [20/02/2023 11:33:03] 0x000000470000-0x000000480000 : "0:CDT_1" [20/02/2023 11:33:03] 0x000000480000-0x000000540000 : "0:APPSBL" [20/02/2023 11:33:03] 0x000000540000-0x000000600000 : "0:APPSBL_1" [20/02/2023 11:33:03] 0x000000600000-0x000000610000 : "0:APPSBLENV" [20/02/2023 11:33:03] 0x000000610000-0x000000650000 : "0:ART" [20/02/2023 11:33:03] 0x000000650000-0x0000006d0000 : "0:ETHPHYFW" [20/02/2023 11:33:03] 0x0000006d0000-0x0000006e0000 : "0:CRT" [20/02/2023 11:33:03] 0x0000006e0000-0x0000006f0000 : "DUAL_FLAG" [20/02/2023 11:33:03] 0x0000006f0000-0x000000800000 : "RESERVED" [20/02/2023 11:33:03] spmi spmi-0: PMIC Arb Version-2 (0x20010000) [20/02/2023 11:33:03] libphy: Fixed MDIO Bus: probed [20/02/2023 11:33:03] of_get_named_gpiod_flags: parsed 'phy-reset-gpio' property of node '/soc/mdio@90000[0]' - status (0) [20/02/2023 11:33:03] of_get_named_gpiod_flags: parsed 'phy-reset-gpio' property of node '/soc/mdio@90000[1]' - status (0) [20/02/2023 11:33:03] of_get_named_gpiod_flags: can't parse 'phy-reset-gpio' property of node '/soc/mdio@90000[2]' [20/02/2023 11:33:03] qca-mdio 90000.mdio: Could not find phy-reset-gpio [20/02/2023 11:33:03] libphy: qca_mdio: probed [20/02/2023 11:33:03] qca-mdio 90000.mdio: qca-mdio driver was registered [20/02/2023 11:33:03] Unable to create IPC log context! [20/02/2023 11:33:03] cnss: Platform driver probed successfully. [20/02/2023 11:33:03] Skip QCA8074V1 in V2 platform [20/02/2023 11:33:03] cnss_genl: genl_register_family fail: -17 [20/02/2023 11:33:03] cnss: CNSS genl init failed -17 [20/02/2023 11:33:03] cnss: Platform driver probed successfully. [20/02/2023 11:33:03] i2c /dev entries driver [20/02/2023 11:33:03] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com [20/02/2023 11:33:03] sdhci: Secure Digital Host Controller Interface driver [20/02/2023 11:33:03] sdhci: Copyright(c) Pierre Ossman [20/02/2023 11:33:03] sdhci-pltfm: SDHCI platform and OF driver helper [20/02/2023 11:33:03] qcom_ice_get_pdevice: invalid device list [20/02/2023 11:33:03] sdhci_msm 7824900.sdhci: sdhci_msm_ice_get_dev: ICE device not probed yet [20/02/2023 11:33:03] sdhci_msm 7824900.sdhci: sdhci_msm_probe: required ICE device not probed yet err = -517 [20/02/2023 11:33:03] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/soc/i2c@78b6000/lp5569@32[0]' [20/02/2023 11:33:03] lp5569x 0-0032: lp5569 Programmable led chip found [20/02/2023 11:33:03] of_get_named_gpiod_flags: can't parse 'enable-gpio' property of node '/soc/i2c@78b6000/lp5569@35[0]' [20/02/2023 11:33:04] lp5569x 0-0035: lp5569 Programmable led chip found [20/02/2023 11:33:04] qcom_ice_get_device_tree_data: No vdd-hba-supply regulator, assuming not needed [20/02/2023 11:33:04] ICE IRQ = 81 [20/02/2023 11:33:04] [20/02/2023 11:33:04] Version Rollback Feature Disabled [20/02/2023 11:33:04] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000008b04000 [20/02/2023 11:33:04] 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 [20/02/2023 11:33:04] 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 [20/02/2023 11:33:04] sps:BAM 0x0000000008b04000 is registered.<0>[ 4.078636] DEV CI test message [20/02/2023 11:33:04] subsys-restart: ssr_parse_restart_orders(): q6v5_m3 device has been added to q6v5-m3's restart group [20/02/2023 11:33:04] subsys-restart: ssr_parse_restart_orders(): q6v5_wcss device has been added to q6v5-m3's restart group [20/02/2023 11:33:04] remoteproc remoteproc0: q6v5-m3 is available [20/02/2023 11:33:04] SPMI VADC - Min ch: 0 Max ch: 15 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/csr@6001000 [20/02/2023 11:33:04] coresight-csr 6001000.csr: CSR initialized [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6010000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6011000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6012000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6013000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6014000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6015000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6016000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6017000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6018000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6019000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@601a000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@601b000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@601c000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@601d000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@601e000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@601f000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6198000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@6199000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@619a000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@619b000 [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/cti@610c000 [20/02/2023 11:33:04] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000006044000 [20/02/2023 11:33:04] 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 [20/02/2023 11:33:04] 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 [20/02/2023 11:33:04] sps:BAM 0x0000000006044000 is registered.<6>[ 4.324410] coresight-tmc 6028000.tmc: TMC initialized [20/02/2023 11:33:04] coresight-tmc 6027000.tmc: TMC initialized [20/02/2023 11:33:04] coresight-funnel 6021000.funnel: FUNNEL initialized [20/02/2023 11:33:04] coresight-funnel 6100000.funnel: FUNNEL initialized [20/02/2023 11:33:04] coresight-funnel 6120000.funnel: FUNNEL initialized [20/02/2023 11:33:04] coresight-funnel 61a1000.funnel: FUNNEL initialized [20/02/2023 11:33:04] coresight-etm4x 619c000.etm: ETM 4.0 initialized [20/02/2023 11:33:04] coresight-etm4x 619d000.etm: ETM 4.0 initialized [20/02/2023 11:33:04] coresight-etm4x 619e000.etm: ETM 4.0 initialized [20/02/2023 11:33:04] coresight-etm4x 619f000.etm: ETM 4.0 initialized [20/02/2023 11:33:04] coresight-replicator-qcom 6026000.replicator: REPLICATOR 1.0 initialized [20/02/2023 11:33:04] coresight-stm 6002000.stm: STM initialized [20/02/2023 11:33:04] of_graph_get_next_endpoint(): no port node found in /soc/hwevent@6101000 [20/02/2023 11:33:04] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized [20/02/2023 11:33:04] Netfilter messages via NETLINK v0.30. [20/02/2023 11:33:04] nf_conntrack version 0.5.0 (6930 buckets, 27720 max) [20/02/2023 11:33:04] ctnetlink v0.93: registering with nfnetlink. [20/02/2023 11:33:04] NET: Registered protocol family 10 [20/02/2023 11:33:04] NET: Registered protocol family 17 [20/02/2023 11:33:04] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. [20/02/2023 11:33:04] Bridge firewalling registered [20/02/2023 11:33:04] 8021q: 802.1Q VLAN Support v1.8 [20/02/2023 11:33:04] <CORE> glink_core_register_transport: IPC Logging disabled [20/02/2023 11:33:04] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 [20/02/2023 11:33:04] msm_glink_smem_native_xprt rx fifo not found [20/02/2023 11:33:04] pmd9655_s3: supplied by e-smps1-reg [20/02/2023 11:33:04] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0 [20/02/2023 11:33:04] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1 [20/02/2023 11:33:04] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0 [20/02/2023 11:33:04] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config = 0 boost = disable [20/02/2023 11:33:04] cpr3_mem_acc_init: apc: not using memory accelerator regulator [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused SVS: open-loop= 712000 uV [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused NOM: open-loop= 832000 uV [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused TURBO: open-loop= 904000 uV [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused STURBO: open-loop= 992000 uV [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused SVS: quot[ 7]= 701, quot_offset[ 7]= 0 [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused NOM: quot[ 7]= 925, quot_offset[ 7]= 220 [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused TURBO: quot[ 7]=1045, quot_offset[ 7]= 120 [20/02/2023 11:33:04] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused STURBO: quot[ 7]=1198, quot_offset[ 7]= 150 [20/02/2023 11:33:04] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop [20/02/2023 11:33:04] qcom,cpr3-npu-regulator a4000.npu-cpr: NPU CPR valid fuse count: 2 [20/02/2023 11:33:04] pmd9655_s4: supplied by e-smps1-reg [20/02/2023 11:33:04] cpr3_mem_acc_init: npu: not using memory accelerator regulator [20/02/2023 11:33:04] npu_corner: fused NOM: open-loop= 800000 uV [20/02/2023 11:33:04] npu_corner: fused TURBO: open-loop= 880000 uV [20/02/2023 11:33:04] npu_corner: fused NOM: open-loop= 800000 uV [20/02/2023 11:33:04] npu_corner: fused TURBO: open-loop= 880000 uV [20/02/2023 11:33:04] npu_corner: Normal and Cold condition init done. Default to normal. [20/02/2023 11:33:04] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 800000 KHz [20/02/2023 11:33:04] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1017600 KHz [20/02/2023 11:33:04] qcom_ice_get_pdevice: found ice device ffffffc03cf08a00 [20/02/2023 11:33:04] qcom_ice_get_pdevice: matching platform device ffffffc03d575c00 [20/02/2023 11:33:04] of_get_named_gpiod_flags: can't parse 'cd-gpios' property of node '/soc/sdhci@7824900[0]' [20/02/2023 11:33:04] of_get_named_gpiod_flags: can't parse 'sd-ldo-gpios' property of node '/soc/sdhci@7824900[0]' [20/02/2023 11:33:04] sdhci_msm 7824900.sdhci: No vreg data found for vdd [20/02/2023 11:33:04] sdhci_msm 7824900.sdhci: No vreg data found for vdd-io [20/02/2023 11:33:04] qcom_ice 7803000.sdcc1ice: QC ICE 2.1.44 device found @0xffffff80008c8000 [20/02/2023 11:33:04] sdhci_msm 7824900.sdhci: No vmmc regulator found [20/02/2023 11:33:04] sdhci_msm 7824900.sdhci: No vqmmc regulator found [20/02/2023 11:33:04] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using ADMA 64-bit [20/02/2023 11:33:04] DEV CI test message [20/02/2023 11:33:04] remoteproc remoteproc1: q6v5-wcss is available [20/02/2023 11:33:04] hctosys: unable to open rtc device (rtc0) [20/02/2023 11:33:04] pmd9655_ldo11: disabling [20/02/2023 11:33:04] ALSA device list: [20/02/2023 11:33:04] No soundcards found. [20/02/2023 11:33:04] Waiting for root device PARTUUID=a0bb3852-36cc-ac69-a1a2-6bd39ff56f0a... [20/02/2023 11:33:04] mmc0: MAN_BKOPS_EN bit is not set [20/02/2023 11:33:04] mmc0: new high speed MMC card at address 0001 [20/02/2023 11:33:04] mmcblk0: mmc0:0001 M62704 3.53 GiB [20/02/2023 11:33:04] mmcblk0rpmb: mmc0:0001 M62704 partition 3 512 KiB [20/02/2023 11:33:04] GPT: device [179:4] (rootfs) set to be root filesystem [20/02/2023 11:33:04] mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 [20/02/2023 11:33:04] VFS: Mounted root (squashfs filesystem) readonly on device 179:8. [20/02/2023 11:33:04] Freeing unused kernel memory: 232K (ffffffc00084e000 - ffffffc000888000) [20/02/2023 11:33:04] Freeing alternatives memory: 44K (ffffffc000888000 - ffffffc000893000) [20/02/2023 11:33:05] init: Console is alive [20/02/2023 11:33:05] init: - watchdog - [20/02/2023 11:33:05] usbcore: registered new interface driver usbfs [20/02/2023 11:33:05] usbcore: registered new interface driver hub [20/02/2023 11:33:05] usbcore: registered new device driver usb [20/02/2023 11:33:05] Button Hotplug driver version 0.4.1 [20/02/2023 11:33:05] of_get_named_gpiod_flags: parsed 'gpios' property of node '/soc/gpio_keys/button@1[0]' - status (0) [20/02/2023 11:33:05] SCSI subsystem initialized [20/02/2023 11:33:05] libata version 3.00 loaded. [20/02/2023 11:33:05] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [20/02/2023 11:33:05] ehci-platform: EHCI generic platform driver [20/02/2023 11:33:05] msm-usb-ssphy-qmp 78000.ssphy: Initializing QMP phy [20/02/2023 11:33:05] msm-usb-ssphy-qmp 78000.ssphy: QMP PHY initialization timeout [20/02/2023 11:33:05] msm-usb-ssphy-qmp 78000.ssphy: USB3_PHY_PCS_STATUS:68686868 [20/02/2023 11:33:06] msm-usb-ssphy-qmp 58000.ssphy: Initializing QMP phy [20/02/2023 11:33:06] msm-usb-ssphy-qmp 58000.ssphy: QMP PHY initialization timeout [20/02/2023 11:33:06] msm-usb-ssphy-qmp 58000.ssphy: USB3_PHY_PCS_STATUS:68686868 [20/02/2023 11:33:06] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [20/02/2023 11:33:06] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 [20/02/2023 11:33:06] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x00010010 [20/02/2023 11:33:06] xhci-hcd xhci-hcd.0.auto: irq 211, io mem 0x08a00000 [20/02/2023 11:33:06] hub 1-0:1.0: USB hub found [20/02/2023 11:33:06] hub 1-0:1.0: 1 port detected [20/02/2023 11:33:06] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller [20/02/2023 11:33:06] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 [20/02/2023 11:33:06] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM. [20/02/2023 11:33:06] hub 2-0:1.0: USB hub found [20/02/2023 11:33:06] hub 2-0:1.0: 1 port detected [20/02/2023 11:33:06] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [20/02/2023 11:33:06] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3 [20/02/2023 11:33:06] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0x00010010 [20/02/2023 11:33:06] xhci-hcd xhci-hcd.1.auto: irq 212, io mem 0x08c00000 [20/02/2023 11:33:06] hub 3-0:1.0: USB hub found [20/02/2023 11:33:06] hub 3-0:1.0: 1 port detected [20/02/2023 11:33:06] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller [20/02/2023 11:33:06] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4 [20/02/2023 11:33:06] usb usb4: We don't know the algorithms for LPM for this host, disabling LPM. [20/02/2023 11:33:06] hub 4-0:1.0: USB hub found [20/02/2023 11:33:06] hub 4-0:1.0: 1 port detected [20/02/2023 11:33:06] usbcore: registered new interface driver usb-storage [20/02/2023 11:33:06] usbcore: registered new interface driver uas [20/02/2023 11:33:06] usb 3-1: new high-speed USB device number 2 using xhci-hcd [20/02/2023 11:33:06] hub 3-1:1.0: USB hub found [20/02/2023 11:33:06] hub 3-1:1.0: 4 ports detected [20/02/2023 11:33:06] usb 4-1: new SuperSpeed USB device number 2 using xhci-hcd [20/02/2023 11:33:06] hub 4-1:1.0: USB hub found [20/02/2023 11:33:06] hub 4-1:1.0: 4 ports detected [20/02/2023 11:33:07] init: - preinit - [20/02/2023 11:33:07] usb 3-1.4: new high-speed USB device number 3 using xhci-hcd [20/02/2023 11:33:07] random: procd: uninitialized urandom read (4 bytes read, 8 bits of entropy available) [20/02/2023 11:33:07] usb-storage 3-1.4:1.0: USB Mass Storage device detected [20/02/2023 11:33:07] scsi host0: usb-storage 3-1.4:1.0 [20/02/2023 11:33:07] usb 4-1.3: new SuperSpeed USB device number 3 using xhci-hcd [20/02/2023 11:33:07] usb-storage 4-1.3:1.0: USB Mass Storage device detected [20/02/2023 11:33:07] scsi host1: usb-storage 4-1.3:1.0 [20/02/2023 11:33:08] scsi 0:0:0:0: Direct-Access USB SanDisk 3.2Gen1 1.00 PQ: 0 ANSI: 6 [20/02/2023 11:33:08] sd 0:0:0:0: [sda] 240328704 512-byte logical blocks: (123 GB/115 GiB) [20/02/2023 11:33:08] sd 0:0:0:0: [sda] Write Protect is off [20/02/2023 11:33:08] sd 0:0:0:0: [sda] Mode Sense: 43 00 00 00 [20/02/2023 11:33:08] sd 0:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [20/02/2023 11:33:08] sda: sda1 sda2 [20/02/2023 11:33:08] sd 0:0:0:0: [sda] Attached SCSI removable disk [20/02/2023 11:33:08] scsi 1:0:0:0: Direct-Access ATA ADATA SU650 2A PQ: 0 ANSI: 6 [20/02/2023 11:33:08] sd 1:0:0:0: [sdb] 234441648 512-byte logical blocks: (120 GB/112 GiB) [20/02/2023 11:33:08] sd 1:0:0:0: [sdb] Write Protect is off [20/02/2023 11:33:08] sd 1:0:0:0: [sdb] Mode Sense: 43 00 00 00 [20/02/2023 11:33:08] sd 1:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA [20/02/2023 11:33:08] sdb: sdb1 [20/02/2023 11:33:08] sd 1:0:0:0: [sdb] Attached SCSI disk [20/02/2023 11:33:09] EXT4-fs (mmcblk0p1): mounted filesystem with ordered data mode. Opts: (null) [20/02/2023 11:33:09] mount_root: switching to jffs2 overlay [20/02/2023 11:33:09] procd: - early - [20/02/2023 11:33:09] procd: - watchdog - [20/02/2023 11:33:10] procd: - ubus - [20/02/2023 11:33:10] FAT-fs (sda): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] random: ubusd: uninitialized urandom read (4 bytes read, 61 bits of entropy available) [20/02/2023 11:33:11] procd: - init - [20/02/2023 11:33:12] FAT-fs (sdb): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [20/02/2023 11:33:12] cfg80211: World regulatory domain updated: [20/02/2023 11:33:12] cfg80211: DFS Master region: unset [20/02/2023 11:33:12] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time) [20/02/2023 11:33:12] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A) [20/02/2023 11:33:12] cfg80211: (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 2000 mBm), (N/A) [20/02/2023 11:33:12] ntfs: driver 2.1.32 [Flags: R/O MODULE]. [20/02/2023 11:33:12] Initializing XFRM netlink socket [20/02/2023 11:33:12] NET: Registered protocol family 15 [20/02/2023 11:33:12] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A) [20/02/2023 11:33:12] cfg80211: (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (N/A) [20/02/2023 11:33:12] cfg80211: (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A, 2000 mBm), (0 s) [20/02/2023 11:33:12] cfg80211: (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0 s) [20/02/2023 11:33:12] cfg80211: (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A) [20/02/2023 11:33:12] cfg80211: (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/A) [20/02/2023 11:33:12] ssdk_switch_device_num_init[998]:INFO:ess-switch dts node number: 1 [20/02/2023 11:33:12] ssdk_dt_get_switch_node[836]:INFO:ess-switch DT exist! [20/02/2023 11:33:12] ssdk_dt_parse_access_mode[737]:INFO:switch_access_mode: local bus [20/02/2023 11:33:12] ssdk_dt_parse_access_mode[750]:INFO:switchreg_base_addr: 0x3a000000 [20/02/2023 11:33:12] ssdk_dt_parse_access_mode[751]:INFO:switchreg_size: 0x1000000 [20/02/2023 11:33:12] ssdk_dt_parse_mac_mode[242]:INFO:mac mode = 0x0 [20/02/2023 11:33:12] ssdk_dt_parse_mac_mode[251]:INFO:mac mode1 = 0xf [20/02/2023 11:33:12] ssdk_dt_parse_mac_mode[260]:INFO:mac mode2 = 0xd [20/02/2023 11:33:12] ssdk_dt_parse_phy_info[569]:INFO:[PORT 5] port_mac_sel = QGMAC_PORT [20/02/2023 11:33:12] ssdk_dt_parse_uniphy[279]:INFO:ess-uniphy DT exist! [20/02/2023 11:33:12] ssdk_dt_parse_intf_mac[683]:INFO:dp1 MAC bc:cf:4f:ff:1b:a0 [20/02/2023 11:33:12] ssdk_plat_init start [20/02/2023 11:33:12] ssdk_ppe_clock_init[464]:INFO:ppe and uniphy clock init successfully! [20/02/2023 11:33:12] ssdk_probe[1878]:INFO:ess_rst doesn't exist! [20/02/2023 11:33:12] HPPE initializing... [20/02/2023 11:33:12] *************************hsl_phytype_get_by_phyid 193 phytype=7, phy_id=4dd0b1 [20/02/2023 11:33:12] <DBG> MALIBU 8075 Found, phytype=2 [20/02/2023 11:33:12] *************************hsl_phytype_get_by_phyid 193 phytype=7, phy_id=4dd0b1 [20/02/2023 11:33:12] <DBG> MALIBU 8075 Found, phytype=2 [20/02/2023 11:33:12] *************************hsl_phytype_get_by_phyid 193 phytype=7, phy_id=4dd0b1 [20/02/2023 11:33:12] <DBG> MALIBU 8075 Found, phytype=2 [20/02/2023 11:33:12] *************************hsl_phytype_get_by_phyid 193 phytype=7, phy_id=4dd0b1 [20/02/2023 11:33:12] <DBG> MALIBU 8075 Found, phytype=2 [20/02/2023 11:33:12] *************************hsl_phytype_get_by_phyid 193 phytype=7, phy_id=4dd101 [20/02/2023 11:33:12] *************************hsl_phytype_get_by_phyid 193 phytype=7, phy_id=31c31c12 [20/02/2023 11:33:12] <DBG> AQUANTIA PHY Found, phytype=3 [20/02/2023 11:33:12] malibu_phy_api_ops_init[2851]:INFO:qca probe malibu phy driver succeeded! [20/02/2023 11:33:12] aquantia_phy_api_ops_init[2180]:INFO:qca probe aquantia phy driver succeeded! [20/02/2023 11:33:12] qca808x_phy_api_ops_init[2125]:INFO:qca probe qca808x phy driver succeeded! [20/02/2023 11:33:12] qca808x_ptp_register[1377]:INFO:qca808x ptp clock registered [20/02/2023 11:33:12] regi_init[3405]:INFO:Initializing HPPE!! [20/02/2023 11:33:13] ssdk_ppe_reset_init[738]:INFO:ppe reset successfully! [20/02/2023 11:33:13] qca_hppe_tdm_hw_init[737]:INFO:tdm setup num=96 [20/02/2023 11:33:13] qca_hppe_portctrl_hw_init[165]:INFO:Hawkeye PPE port initializing [20/02/2023 11:33:14] FAT-fs (sda2): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [20/02/2023 11:33:16] ssdk_switch_register[1617]:INFO:Chip version 0x1500 [20/02/2023 11:33:16] qca_link_polling_select[1279]:INFO:link-polling-required node does not exist [20/02/2023 11:33:16] ssdk_switch_register[1642]:INFO:polling is selected [20/02/2023 11:33:16] regi_init[3409]:INFO:Initializing HPPE Done!! [20/02/2023 11:33:16] regi_init[3453]:INFO:qca-ssdk module init succeeded! [20/02/2023 11:33:16] tun: Universal TUN/TAP device driver, 1.6 [20/02/2023 11:33:16] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> [20/02/2023 11:33:16] EDMA ver 1 hw init [20/02/2023 11:33:16] EDMA HW Reset completed succesfully [20/02/2023 11:33:16] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7) [20/02/2023 11:33:16] RxDesc:1 (15-15) RxFill:1 (7-7) [20/02/2023 11:33:16] GMAC2(ffffffc03ab81880) Invalid MAC@ - using 82:00:b3:cf:69:43 [20/02/2023 11:33:16] GMAC3(ffffffc03ab85880) Invalid MAC@ - using aa:7b:52:7f:8a:bb [20/02/2023 11:33:16] GMAC4(ffffffc03ab89880) Invalid MAC@ - using 8a:2b:63:d7:e3:8e [20/02/2023 11:33:16] GMAC5(ffffffc03ab8d880) Invalid MAC@ - using 2e:19:30:c5:35:69 [20/02/2023 11:33:16] GMAC6(ffffffc039879880) Invalid MAC@ - using 82:17:be:67:b5:cf [20/02/2023 11:33:16] ********************************************************** [20/02/2023 11:33:16] * NSS Data Plane driver [20/02/2023 11:33:16] ********************************************************** [20/02/2023 11:33:16] l2tp_core: L2TP core driver, V2.0 [20/02/2023 11:33:16] l2tp_netlink: L2TP netlink interface [20/02/2023 11:33:16] nss_driver - fw of size 668348 bytes copied to load addr: 40000000, nss_id : 0 [20/02/2023 11:33:16] Supported Frequencies - [20/02/2023 11:33:16] 748.8 MHz 1.4976 GHz [20/02/2023 11:33:16] 1.6896 GHz <1>[ 16.468855] [20/02/2023 11:33:16] ffffffbffc651600: meminfo init succeed [20/02/2023 11:33:16] node size 2 # items 4 [20/02/2023 11:33:16] memory: 40000000 1073741824 (avl 940281856) items 4 active_cores 2 [20/02/2023 11:33:16] ffffffbffc651600: nss core 0 booted successfully [20/02/2023 11:33:16] nss_driver - fw of size 265248 bytes copied to load addr: 40800000, nss_id : 1 [20/02/2023 11:33:16] Supported Frequencies - [20/02/2023 11:33:16] 748.8 MHz 1.4976 GHz [20/02/2023 11:33:16] 1.6896 GHz <1>[ 16.531660] [20/02/2023 11:33:16] ffffffbffc658700: meminfo init succeed [20/02/2023 11:33:16] sit: IPv6 over IPv4 tunneling driver [20/02/2023 11:33:16] node size 2 # items 4 [20/02/2023 11:33:16] memory: 40000000 1073741824 (avl 940281856) items 4 active_cores 2 [20/02/2023 11:33:16] ffffffbffc658700: nss core 1 booted successfully [20/02/2023 11:33:16] nat46: module (version 8ff2ae59ec9840a7b8b45f976c51cae80abe0226) loaded. [20/02/2023 11:33:16] gre: GRE over IPv4 demultiplexor driver [20/02/2023 11:33:16] ip_gre: GRE over IPv4 tunneling driver [20/02/2023 11:33:16] ip6_gre: GRE over IPv6 tunneling driver [20/02/2023 11:33:16] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) [20/02/2023 11:33:16] QCA multicast snooping installed successfully [20/02/2023 11:33:16] ip6_tables: (C) 2000-2006 Netfilter Core Team [20/02/2023 11:33:16] QCA Hy-Fi multicast installation successfully [20/02/2023 11:33:16] PPP generic driver version 2.4.2 [20/02/2023 11:33:16] nss_lag_init[354]:LAG Manager Installed [20/02/2023 11:33:16] NET: Registered protocol family 24 [20/02/2023 11:33:16] tntfs: module license 'Commercial. For support email support@tuxera.com.' taints kernel. [20/02/2023 11:33:16] Disabling lock debugging due to kernel taint [20/02/2023 11:33:16] Tuxera NTFS driver 3021.4.23.8 [Flags: R/W MODULE]. [20/02/2023 11:33:16] Built against headers 4.4.60 #26 SMP PREEMPT Wed Jul 17 13:35:43 CST 2019 arm64 [20/02/2023 11:33:16] Running on kernel 4.4.60 #1 SMP PREEMPT Wed Sep 29 08:31:14 UTC 2021 aarch64 [20/02/2023 11:33:16] <NSS-CRYPTO>:module loaded Build_ID - 09/29/21, 07:31:58 SoC=ipq807x_64 [20/02/2023 11:33:16] cannot find nss-macsec0 node [20/02/2023 11:33:16] cannot find nss-macsec1 node [20/02/2023 11:33:16] cannot find nss-macsec2 node [20/02/2023 11:33:16] nss_macsec init success [20/02/2023 11:33:16] diag: IPC Logging disabled [20/02/2023 11:33:16] hidraw: raw HID events driver (C) Jiri Kosina [20/02/2023 11:33:16] u32 classifier [20/02/2023 11:33:16] input device check on [20/02/2023 11:33:16] Actions configured [20/02/2023 11:33:16] Mirror/redirect action on [20/02/2023 11:33:16] pktgen: Packet Generator for packet performance testing. Version: 2.75 [20/02/2023 11:33:16] arp_tables: (C) 2002 David S. Miller [20/02/2023 11:33:16] Bluetooth: Core ver 2.21 [20/02/2023 11:33:16] NET: Registered protocol family 31 [20/02/2023 11:33:16] Bluetooth: HCI device and connection manager initialized [20/02/2023 11:33:16] Bluetooth: HCI socket layer initialized [20/02/2023 11:33:16] Bluetooth: L2CAP socket layer initialized [20/02/2023 11:33:16] Bluetooth: SCO socket layer initialized [20/02/2023 11:33:16] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [20/02/2023 11:33:16] Bluetooth: BNEP filters: protocol multicast [20/02/2023 11:33:16] Bluetooth: BNEP socket layer initialized [20/02/2023 11:33:16] usbcore: registered new interface driver btusb [20/02/2023 11:33:16] Ebtables v2.0 registered [20/02/2023 11:33:16] Bluetooth: HCI UART driver ver 2.3 [20/02/2023 11:33:16] Bluetooth: HCI UART protocol H4 registered [20/02/2023 11:33:16] Bluetooth: HCI UART protocol BCSP registered [20/02/2023 11:33:16] Bluetooth: HCI UART protocol ATH3K registered [20/02/2023 11:33:16] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [20/02/2023 11:33:16] Bluetooth: HIDP socket layer initialized [20/02/2023 11:33:16] ip_tables: (C) 2000-2006 Netfilter Core Team [20/02/2023 11:33:16] l2tp_ppp: PPPoL2TP kernel driver, V2.0 [20/02/2023 11:33:16] nf_conntrack_rtsp v0.6.21 loading [20/02/2023 11:33:17] nf_nat_rtsp v0.6.21 loading [20/02/2023 11:33:17] PPP MPPE Compression module registered [20/02/2023 11:33:17] PPTP driver version 0.8.5 [20/02/2023 11:33:17] Bluetooth: RFCOMM TTY layer initialized [20/02/2023 11:33:17] Bluetooth: RFCOMM socket layer initialized [20/02/2023 11:33:17] Bluetooth: RFCOMM ver 1.11 [20/02/2023 11:33:17] usbcore: registered new interface driver usblp [20/02/2023 11:33:17] xt_time: kernel timezone is -0000 [20/02/2023 11:33:17] random: nonblocking pool is initialized [20/02/2023 11:33:21] configuring additional NSS pbufs [20/02/2023 11:33:21] additional pbufs of size 9003008 got added to NSS [20/02/2023 11:33:21] __mm_init_module [20/02/2023 11:33:21] qdf_dbg_mask value is invalid [20/02/2023 11:33:21] Using the default module debug levels instead [20/02/2023 11:33:21] qdf_print_ctrl_register: Allocated print control object 0 [20/02/2023 11:33:21] [20/02/2023 11:33:21] MINIDUMP VA .bss start=ffffffbffcc23700 module=qdf [20/02/2023 11:33:21] wlan: [2161:E:CONFIG] cfg_uint_item_handler: 171: gScanProbeRepeatTime=50 - Out of range [0, 30]; Using 50 [20/02/2023 11:33:21] [20/02/2023 11:33:21] MINIDUMP VA .bss start=ffffffbffcea4080 module=umac [20/02/2023 11:33:21] [20/02/2023 11:33:21] MINIDUMP VA .bss start=ffffffbffd047580 module=qca_ol=======ol_if_register_wifi3_0========== [20/02/2023 11:33:21] wlan: [2186:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered for target_type:1 with soc_ops:ffffffbffd11bd00 [20/02/2023 11:33:21] remoteproc remoteproc0: powering up q6v5-m3 [20/02/2023 11:33:21] remoteproc remoteproc0: Booting fw image IPQ8074/m3_fw.mdt, size 284 [20/02/2023 11:33:21] Sanity check passed for M3 image [20/02/2023 11:33:21] remoteproc remoteproc0: remote processor q6v5-m3 is now up [20/02/2023 11:33:21] wlan: [2186:I:ANY] ol_ath_ahb_ssr: 183: ol_ath_ahb_ssr: SSR event 2 [20/02/2023 11:33:21] <SSR>: glink SUBSYS_BEFOER_POWERUP reinit done [20/02/2023 11:33:21] remoteproc remoteproc1: powering up q6v5-wcss [20/02/2023 11:33:21] remoteproc remoteproc1: Booting fw image IPQ8074/q6_fw.mdt, size 668 [20/02/2023 11:33:21] Sanity check passed for the image [20/02/2023 11:33:22] glink_core_link_up glink is up [20/02/2023 11:33:22] glink_xprt_open_event [20/02/2023 11:33:22] Subsystem error monitoring/handling services are up [20/02/2023 11:33:22] remoteproc remoteproc1: remote processor q6v5-wcss is now up [20/02/2023 11:33:22] wlan: [2186:I:ANY] ol_ath_ahb_ssr: 183: ol_ath_ahb_ssr: SSR event 3 [20/02/2023 11:33:22] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [20/02/2023 11:33:22] cnss: QMI WLFW service connected, state: 0x1 [20/02/2023 11:33:22] diag: In diag_send_feature_mask_update, control channel is not open, p: 2, ffffffbffc87c2c8 [20/02/2023 11:33:22] cnss: device_id : 0xfffe mem mode : [0] [20/02/2023 11:33:22] cnss: No board_id entry in device tree [20/02/2023 11:33:22] cnss: BDF location : 0x000000004b0c0000 [20/02/2023 11:33:22] cnss: BDF IPQ8074/bdwlan.bin size 131072 [20/02/2023 11:33:22] cnss: BDF download response , result: 0, err: 0x0 [20/02/2023 11:33:22] cnss: per device BDF location : 0x000000004b0e0000 [20/02/2023 11:33:22] cnss: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000 [20/02/2023 11:33:22] cnss: BDF download response , result: 0, err: 0x0 [20/02/2023 11:33:22] wlan: [2186:I:ANY] pld_ahb_wlan_enable: 681: cnss_mode: Cold boot calibration [20/02/2023 11:33:23] Coldboot calibration wait started [20/02/2023 11:33:23] Coldboot calibration wait ended [20/02/2023 11:33:23] wlan: [2186:I:ANY] ol_ath_do_cold_boot_calibration: 467: Coldboot calib successful: radio_id 0x65534 [20/02/2023 11:33:23] cnss: QMI WLFW service disconnected, state: 0x7 [20/02/2023 11:33:23] wlan: [2186:I:ANY] init_ath_pci_3_0: 151: 6ath_ol_pci_wifi3.0: (Atheros/multi-bss) [20/02/2023 11:33:23] [20/02/2023 11:33:23] MINIDUMP VA .bss start=ffffffbffd11c180 module=wifi_3_0 [20/02/2023 11:33:23] wlan: [2193:I:ANY] ol_ath_ahb_ssr: 183: ol_ath_ahb_ssr: SSR event 0 [20/02/2023 11:33:23] remoteproc remoteproc1: stopped remote processor q6v5-wcss [20/02/2023 11:33:23] wlan: [2193:I:ANY] ol_ath_ahb_ssr: 183: ol_ath_ahb_ssr: SSR event 1 [20/02/2023 11:33:23] glink_core_link_down glink is down [20/02/2023 11:33:23] <SSR>: glink SUBSYS_AFTER_SHUTDOWN cleanup done [20/02/2023 11:33:23] remoteproc remoteproc0: stopped remote processor q6v5-m3 [20/02/2023 11:33:23] glink_xprt_close_event [20/02/2023 11:33:23] [20/02/2023 11:33:23] MINIDUMP VA .bss start=ffffffbffd23a580 module=qca_ol [20/02/2023 11:33:23] =======ol_if_register_wifi3_0========== [20/02/2023 11:33:23] wlan: [2198:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered for target_type:1 with soc_ops:ffffffbffd30ed00 [20/02/2023 11:33:23] remoteproc remoteproc0: powering up q6v5-m3 [20/02/2023 11:33:23] remoteproc remoteproc0: Booting fw image IPQ8074/m3_fw.mdt, size 284 [20/02/2023 11:33:23] Sanity check passed for M3 image [20/02/2023 11:33:23] remoteproc remoteproc0: remote processor q6v5-m3 is now up [20/02/2023 11:33:23] wlan: [2198:I:ANY] ol_ath_ahb_ssr: 183: ol_ath_ahb_ssr: SSR event 2 [20/02/2023 11:33:23] <SSR>: glink SUBSYS_BEFOER_POWERUP reinit done [20/02/2023 11:33:23] remoteproc remoteproc1: powering up q6v5-wcss [20/02/2023 11:33:23] remoteproc remoteproc1: Booting fw image IPQ8074/q6_fw.mdt, size 668 [20/02/2023 11:33:23] Sanity check passed for the image [20/02/2023 11:33:24] glink_core_link_up glink is up [20/02/2023 11:33:24] glink_xprt_open_event [20/02/2023 11:33:24] Subsystem error monitoring/handling services are up [20/02/2023 11:33:24] remoteproc remoteproc1: remote processor q6v5-wcss is now up [20/02/2023 11:33:24] IPC_RTR: ipc_router_create_log_ctx: IPC Logging disabled [20/02/2023 11:33:24] wlan: [2198:I:ANY] ol_ath_ahb_ssr: 183: ol_ath_ahb_ssr: SSR event 3 [20/02/2023 11:33:24] cnss: QMI WLFW service connected, state: 0x1 [20/02/2023 11:33:24] cnss: device_id : 0xfffe mem mode : [0] [20/02/2023 11:33:24] cnss: No board_id entry in device tree [20/02/2023 11:33:24] cnss: BDF location : 0x000000004b0c0000 [20/02/2023 11:33:24] cnss: BDF IPQ8074/bdwlan.bin size 131072 [20/02/2023 11:33:24] cnss: BDF download response , result: 0, err: 0x0 [20/02/2023 11:33:24] cnss: per device BDF location : 0x000000004b0e0000 [20/02/2023 11:33:24] cnss: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000 [20/02/2023 11:33:24] cnss: BDF download response , result: 0, err: 0x0 [20/02/2023 11:33:24] wlan: [2198:I:ANY] pld_ahb_wlan_enable: 689: cnss_mode: Mission mode [20/02/2023 11:33:24] wlan: [2198:I:ANY] qca_napi_create: 357: qca_napi_create: napi instance 0 created on pipe 4 [20/02/2023 11:33:24] wlan: [2198:I:ANY] __ol_ath_attach: 3064: Allocated soc ffffffc034d80880 [20/02/2023 11:33:24] btcoex_support 0 wlan_prio_gpio 0 [20/02/2023 11:33:24] wlan: [2198:E:CONFIG] cfg_uint_item_handler: 171: dp_int_timer_threshold_tx=1000 - Out of range [8, 100]; Using 1000 [20/02/2023 11:33:24] wlan: [2198:I:ANY] osif_nss_wifi_soc_setup: 186: nss-wifili:#1 register wifili function for soc [20/02/2023 11:33:24] wlan: [2198:I:ANY] osif_nss_wifi_soc_setup: 198: nss register id -1 nss config 3 Target Type 18 [20/02/2023 11:33:24] wlan: [2198:I:ANY] __ol_ath_attach: 3278: dev name soc0 [20/02/2023 11:33:24] wlan: [2198:I:ANY] ol_ath_soc_attach: 6591: WMI attached. wmi_handle ffffffc035093000 [20/02/2023 11:33:24] wlan: [2198:I:ANY] htc_wmi_init: 5958: htc_wmi_init() HT Create . ffffffc03627f000 [20/02/2023 11:33:24] wlan: [2198:I:ANY] htc_wmi_init: 5965: htc_wmi_init() Skipping BMI Done. [20/02/2023 11:33:24] wlan: [2198:I:ANY] htc_wmi_init: 6022: [htc_wmi_init:6022] host_enable 0 nss_nwifi_offload 0 [20/02/2023 11:33:24] wlan: [2198:I:ANY] ol_target_init_complete: 6140: CDP soc attach success [20/02/2023 11:33:24] wlan: [2198:I:ANY] ol_target_init_complete: 6147: Soc attach success NSS config 0 [20/02/2023 11:33:24] wlan: [2198:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle ffffffc03627f000, ep 2, value 1 [20/02/2023 11:33:24] wlan: [2198:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle ffffffc03627f000, ep 3, value 1 [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_atf_config_enable: 605: Airtime Fairness: num_peers=1058 num_active_peer=0 [20/02/2023 11:33:24] wlan: [167:I:TIF] HE_CAP Info = 1a08010d [20/02/2023 11:33:24] wlan: [167:I:TIF] Num HW modes = 2 [20/02/2023 11:33:24] wlan: [167:I:TIF] Num PHY = 3 [20/02/2023 11:33:24] wlan: [167:I:TIF] Preferred HW Mode = 1 Num Radios = 2 [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_add_11ax_modes: 1403: Adding 11ax regulatory modes, [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_add_11ax_modes: 1406: phy_id = 0 wireless modes = f97f9001 [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_add_11ax_modes: 1403: Adding 11ax regulatory modes, [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_add_11ax_modes: 1406: phy_id = 1 wireless modes = 680680c [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_add_11ax_modes: 1403: Adding 11ax regulatory modes, [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_add_11ax_modes: 1406: phy_id = 2 wireless modes = 397f9001 [20/02/2023 11:33:24] wlan: [167:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 390: dfs_offload 1 [20/02/2023 11:33:24] wlan: [167:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 1038: dfs->dfs_psoc_idx: 0 [20/02/2023 11:33:24] wlan: [167:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 1044: dfs_soc_obj->num_dfs_privs: 1 [20/02/2023 11:33:24] wlan: [167:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notification: 362: Do not allocate DFS object for 2G, pdev_id = 1 [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_update_pdev_tgt_info: 1064: CDP PDEV ATTACH success [20/02/2023 11:33:24] wlan: [167:I:TIF] init_deinit_update_pdev_tgt_info: 1064: CDP PDEV ATTACH success [20/02/2023 11:33:24] wlan: [167:I:ANY] copy_fw_abi_version_tlv: 6258: copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0 [20/02/2023 11:33:25] wlan: [167:I:ANY] dp_peer_map_attach_wifi3: 9983: dp_peer_map_attach_wifi3 max_peers 1111, max_ast_index: 4112 [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [167:I:ANY] ready_extract_init_status_tlv: 8002: ready_extract_init_status_tlv:0 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_connect_htc: 1219: WMI is ready [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 37 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 141 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 137 is unavailable [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_soc_attach: 6665: connect HTC [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_soc_attach: 6666: bypasswmi : 0 [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 38 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 138 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 139 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 55 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 49 is unavailable [20/02/2023 11:33:25] wlan: [2198:E:WMI] wmi_unified_register_event_handler: Event id 25 is unavailable [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_soc_attach: 6741: ol_ath_soc_attach() UMAC attach . [20/02/2023 11:33:25] wlan: [2198:I:ANY] ath_lowi_if_netlink_init: 177: ath_lowi_if_netlink_init LOWI Netlink successfully created [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3392: pdev_netdev name wifi0 [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3437: Skip txrx_pdev_attach_target [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3461: BURSTING enabled by default [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_attach: 7206: interface_id 0 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_regdmn_init: 6895: phy id = 0 Modes supported [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_regdmn_init: 6902: 11b = 0 11g = 0 11a = 1 11n = 1 11ac = 1 11ax = 1 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_regdmn_init: 6910: Reg cap - phy_id = 0 supp_bnd = 2, modes = f97f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4910, hi_5g = 6000 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_update_wireless_modes: 1318: wireless_modes = f97f9001 before update [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_update_wireless_modes: 1333: Wireless_modes = f97f9001 after update [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_update_ext_caps: 1842: 11ax 5G supported case [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed [20/02/2023 11:33:25] ieee80211_cbs_init CBS Inited [20/02/2023 11:33:25] wlan: [2198:I:ANY] acfg_attach: 3457: acfg_attach: 3457: Netlink socket created:ffffffc035090800 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_if_eeprom_attach: 1459: rate power table override is only supported for AR98XX [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_stats_attach: 2071: periodic_chan_stats: 1 [20/02/2023 11:33:25] wlan: [2198:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 25 [20/02/2023 11:33:25] wlan: [0:I:ANY] ol_ath_pdev_attach: 7542: Set global_ic[1], ptr:ffffffbffcea43e8 [20/02/2023 11:33:25] wlan: [0:I:ANY] dp_lag_soc_enable: 88: pdev(ffffffc036f0ce88) Enabling DBDC Repeater 1 [20/02/2023 11:33:25] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 44: pdev(ffffffc036f0ce88) is_primary 1 [20/02/2023 11:33:25] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_attach: 7660: Pdev = 0 Number of peers = 529 [20/02/2023 11:33:25] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 11903: twt enabled. [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_ucfg_set_rx_pkt_protocol_tagging: 1828: Set RX packet type TAG, opcode : 0, pkt_type : 18, metadata : 0xca0,pdev_id = 0, REO dest ring = 5 [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 583: ( 1) chan 36 blocked from cfg [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 583: ( 2) chan 132 blocked from cfg [20/02/2023 11:33:25] wlan: [2198:I:ANY] osif_wrap_attach: 239: osif wrap attached [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =ffffffc035090000 ic->ic_wrap_com=ffffffc035090000 &wrap_com->wc_devt=ffffffc035090000 [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3641: needed_headroom reservation 60 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_enable_fraglist: 2931: Enabled Fraglist bit for the radio wifi0 features 41 [20/02/2023 11:33:25] wlan: [2198:I:ANY] wlan_cfg80211_init: 9619: Number of 5G channels: 25 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ieee80211_cfg80211_radio_attach: 9713: ic: 0xffffffc033b00880, wdev: 0xffffffc033b10a70, wiphy: 0xffffffc0350edaa0, netdev: 0xffffffc033b00000 [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3392: pdev_netdev name wifi1 [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3437: Skip txrx_pdev_attach_target [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3461: BURSTING enabled by default [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_attach: 7206: interface_id 1 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_regdmn_init: 6895: phy id = 1 Modes supported [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_regdmn_init: 6902: 11b = 1 11g = 1 11a = 0 11n = 1 11ac = 1 11ax = 1 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_regdmn_init: 6910: Reg cap - phy_id = 1 supp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_update_wireless_modes: 1318: wireless_modes = 680680c before update [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_update_wireless_modes: 1333: Wireless_modes = 680680c after update [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_update_ext_caps: 1850: 11ax 2G supported case [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed [20/02/2023 11:33:25] ieee80211_cbs_init CBS Inited [20/02/2023 11:33:25] wlan: [2198:I:ANY] acfg_attach: 3432: Offload using existing sock ffffffc035090800 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_if_eeprom_attach: 1459: rate power table override is only supported for AR98XX [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_stats_attach: 2071: periodic_chan_stats: 1 [20/02/2023 11:33:25] wlan: [2198:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 11 [20/02/2023 11:33:25] wlan: [0:I:ANY] ol_ath_pdev_attach: 7542: Set global_ic[2], ptr:ffffffbffcea43e8 [20/02/2023 11:33:25] wlan: [0:I:ANY] dp_lag_soc_enable: 88: pdev(ffffffc0304eda08) Enabling DBDC Repeater 1 [20/02/2023 11:33:25] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 44: pdev(ffffffc0304eda08) is_primary 0 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pdev_attach: 7660: Pdev = 1 Number of peers = 529 [20/02/2023 11:33:25] wlan: [2198:E:WMI] event handler already registered 0x6019 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_ucfg_set_rx_pkt_protocol_tagging: 1828: Set RX packet type TAG, opcode : 0, pkt_type : 18, metadata : 0xca0,pdev_id = 1, REO dest ring = 5 [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 583: ( 1) chan 36 blocked from cfg [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 583: ( 2) chan 132 blocked from cfg [20/02/2023 11:33:25] wlan: [2198:I:ANY] osif_wrap_attach: 239: osif wrap attached [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] osif_wrap_attach: 247: Wrap Attached: Wrap_com =ffffffc029d56800 ic->ic_wrap_com=ffffffc029d56800 &wrap_com->wc_devt=ffffffc029d56800 [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2198:I:ANY] __ol_ath_attach: 3641: needed_headroom reservation 60 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ol_ath_enable_fraglist: 2931: Enabled Fraglist bit for the radio wifi1 features 41 [20/02/2023 11:33:25] wlan: [2198:I:ANY] wlan_cfg80211_init: 9607: Number of 2G channels: 11 [20/02/2023 11:33:25] wlan: [2198:I:ANY] ieee80211_cfg80211_radio_attach: 9713: ic: 0xffffffc033b40880, wdev: 0xffffffc033b50a70, wiphy: 0xffffffc029b002a0, netdev: 0xffffffc033b40000 [20/02/2023 11:33:25] wlan: [2198:I:ANY] wlan_pdev_operation: 729: num_radios=1, wifi_radios[0].sc = ffffffc033b00880_radio_type = 2 [20/02/2023 11:33:25] wlan: [2198:I:ANY] wlan_pdev_operation: 729: num_radios=2, wifi_radios[1].sc = ffffffc033b40880_radio_type = 2 [20/02/2023 11:33:25] wlan: [2198:I:ANY] init_ath_pci_3_0: 151: 6ath_ol_pci_wifi3.0: (Atheros/multi-bss) [20/02/2023 11:33:25] [20/02/2023 11:33:25] MINIDUMP VA .bss start=ffffffbffd30f180 module=wifi_3_0 [20/02/2023 11:33:25] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:25] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 11903: twt enabled. [20/02/2023 11:33:25] [20/02/2023 11:33:25] wlan: [2202:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered for target_type:0 with soc_ops:ffffffbffd3a8558 [20/02/2023 11:33:25] wlan: [2202:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered for target_type:0 with soc_ops:ffffffbffd3a8558 [20/02/2023 11:33:25] wlan: [2202:I:ANY] init_ath_pci_2_0: 143: 6ath_ol_pci_2_0: (Atheros/multi-bss) [20/02/2023 11:33:26] FAT-fs (sdb1): utf8 is not a recommended IO charset for FAT filesystems, filesystem will be case sensitive! [20/02/2023 11:33:26] ntfs: (device sdb1): parse_options(): Option iocharset is deprecated. Please use option nls=<charsetname> in the future. [20/02/2023 11:33:26] tntfs warning (device sdb1, pid 2519): parse_options(): Disabling default option utf8 and enabling option nls=utf8. This means that Emojis and other extended Unicode characters in filenames will not work. Do not specify nls=utf8 option to fix this. [20/02/2023 11:33:26] tntfs info (device sdb1, pid 2519): ntfs_fill_super(): fail_safe is enabled. [20/02/2023 11:33:26] tntfs info (device sdb1, pid 2545): ntfs_fill_super(): fail_safe is enabled. [20/02/2023 11:33:41] EXT4-fs (mmcblk0p11): mounted filesystem with ordered data mode. Opts: commit=1 [20/02/2023 11:33:41] EXT4-fs (mmcblk0p10): mounted filesystem with ordered data mode. Opts: commit=1 [20/02/2023 11:33:42] ECM init [20/02/2023 11:33:42] ECM database jhash random seed: 0xa550eda5 [20/02/2023 11:33:42] ECM init complete [20/02/2023 11:33:42] device eth0 entered promiscuous mode [20/02/2023 11:33:42] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready [20/02/2023 11:33:42] device eth1 entered promiscuous mode [20/02/2023 11:33:42] br-lan: port 2(eth1) entered forwarding state [20/02/2023 11:33:42] br-lan: port 2(eth1) entered forwarding state [20/02/2023 11:33:42] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready [20/02/2023 11:33:42] device eth2 entered promiscuous mode [20/02/2023 11:33:42] br-lan: port 3(eth2) entered forwarding state [20/02/2023 11:33:42] br-lan: port 3(eth2) entered forwarding state [20/02/2023 11:33:43] device eth3 entered promiscuous mode [20/02/2023 11:33:43] br-lan: port 4(eth3) entered forwarding state [20/02/2023 11:33:43] br-lan: port 4(eth3) entered forwarding state [20/02/2023 11:33:43] device eth5 entered promiscuous mode [20/02/2023 11:33:43] br-lan: port 5(eth5) entered forwarding state [20/02/2023 11:33:43] br-lan: port 5(eth5) entered forwarding state [20/02/2023 11:33:43] eth0: PHY Link up speed: 1000 [20/02/2023 11:33:43] eth3: PHY Link up speed: 1000 [20/02/2023 11:33:43] br-lan: port 1(eth0) entered forwarding state [20/02/2023 11:33:43] br-lan: port 1(eth0) entered forwarding state [20/02/2023 11:33:43] br-lan: port 2(eth1) entered disabled state [20/02/2023 11:33:43] br-lan: port 3(eth2) entered disabled state [20/02/2023 11:33:43] __mc_netlink_receive: Disable bridge snooping! [20/02/2023 11:33:43] br-lan: port 5(eth5) entered disabled state [20/02/2023 11:33:43] __mc_netlink_receive: Disable bridge snooping! [20/02/2023 11:33:44] wlan: [3822:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 13 [20/02/2023 11:33:44] wlan: [3822:I:ANY] number of channels: 2G = 13 5G = 0 [20/02/2023 11:33:44] wlan: [3837:I:ANY] wlan_cfg80211_set_hwaddr: 5439: wlan_cfg80211_set_hwaddr :bc:cf:4f:ff:1b:a2 ret: 0 [20/02/2023 11:33:44] wlan: [3839:I:ANY] ol_ath_set_config_param: 1493: set TXBF_SND_PERIOD: value 100 wmi_status 0 [20/02/2023 11:33:44] wlan: [0:I:ANY] dp_lag_soc_enable: 88: pdev(ffffffc0304eda08) Enabling DBDC Repeater 0 [20/02/2023 11:33:44] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:44] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:44] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:44] wlan: [0:I:ANY] ol_ath_set_config_param: 2209: Disconnect_timeout value: 10 [20/02/2023 11:33:44] wlan: [0:I:ANY] ol_ath_set_config_param: 2215: Reconfiguration_timeout value:60 [20/02/2023 11:33:45] br-lan: port 4(eth3) entered forwarding state [20/02/2023 11:33:45] br-lan: port 1(eth0) entered forwarding state [20/02/2023 11:33:45] wlan: [4180:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 19 [20/02/2023 11:33:45] wlan: [4180:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 979: freq=58 [20/02/2023 11:33:45] wlan: [4180:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 979: freq=106 [20/02/2023 11:33:45] wlan: [4180:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 979: freq=122 [20/02/2023 11:33:45] wlan: [4180:I:ANY] wlan_scan_update_channel_list: 1090: num_chan: 19 [20/02/2023 11:33:45] wlan: [4180:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 979: freq=58 [20/02/2023 11:33:45] wlan: [4180:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 979: freq=106 [20/02/2023 11:33:45] wlan: [4180:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_init_precac_list: 979: freq=122 [20/02/2023 11:33:45] wlan: [4180:I:ANY] number of channels: 2G = 0 5G = 19 [20/02/2023 11:33:45] wlan: [3522:I:ANY] ol_acfg_handle_wifi_ioctl: 417: ol_acfg_handle_wifi_ioctl: req->cmd=75 not valid for radio interface, it's for VAP [20/02/2023 11:33:45] wlan: [4198:I:ANY] wlan_cfg80211_set_hwaddr: 5439: wlan_cfg80211_set_hwaddr :bc:cf:4f:ff:1b:a3 ret: 0 [20/02/2023 11:33:45] wlan: [4200:I:ANY] ol_ath_set_config_param: 1493: set TXBF_SND_PERIOD: value 100 wmi_status 0 [20/02/2023 11:33:45] wlan: [0:I:ANY] dp_lag_soc_enable: 88: pdev(ffffffc036f0ce88) Enabling DBDC Repeater 0 [20/02/2023 11:33:45] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:45] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:45] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed [20/02/2023 11:33:45] wlan: [0:I:ANY] ol_ath_set_config_param: 2209: Disconnect_timeout value: 10 [20/02/2023 11:33:45] wlan: [0:I:ANY] ol_ath_set_config_param: 2215: Reconfiguration_timeout value:60 [20/02/2023 11:33:48] eth0: PHY Link is down [20/02/2023 11:33:48] eth3: PHY Link is down [20/02/2023 11:33:48] br-lan: port 1(eth0) entered disabled state [20/02/2023 11:33:48] br-lan: port 4(eth3) entered disabled state [20/02/2023 11:33:50] eth0: PHY Link up speed: 1000 [20/02/2023 11:33:50] br-lan: port 1(eth0) entered forwarding state [20/02/2023 11:33:50] br-lan: port 1(eth0) entered forwarding state [20/02/2023 11:33:50] eth3: PHY Link up speed: 1000 [20/02/2023 11:33:50] br-lan: port 4(eth3) entered forwarding state [20/02/2023 11:33:50] br-lan: port 4(eth3) entered forwarding state [20/02/2023 11:33:52] br-lan: port 1(eth0) entered forwarding state [20/02/2023 11:33:52] br-lan: port 4(eth3) entered forwarding state [20/02/2023 11:33:53] __mc_netlink_receive: Disable bridge snooping! [20/02/2023 11:33:59] Bluetooth: Out-of-order packet arrived, got 1 expected 0 [20/02/2023 11:34:03] __mc_netlink_receive: Enable bridge snooping!
printenv
baudrate=115200 bootargs=console=ttyMSM0,115200n8 bootcmd=bootipq bootdelay=2 boxid=xxxxxxxxxxxxxxxx countrycode=E1 defenv=sf probe && sf erase 0x600000 0x10000 ethact=eth0 ethaddr=BC:CF:4F:XX:XX:X0 fdt_high=0x4A400000 fdtcontroladdr=4a9674b0 flash_type=8 fwimg=norplusemmc-ipq807x_64-single.100ABSK3C0.imgroot@NBG7815:~# fw_printenv baudrate=115200 bootargs=console=ttyMSM0,115200n8 bootcmd=bootipq bootdelay=2 boxid=xxxxxxxxxxxxxxxx countrycode=E1 defenv=sf probe && sf erase 0x600000 0x10000 ethact=eth0 ethaddr=BC:CF:4F:XX:XX:X0 fdt_high=0x4A400000 fdtcontroladdr=4a9674b0 flash_type=8 fwimg=norplusemmc-ipq807x_64-single.100ABSK3C0.img ipaddr=192.168.1.1 ledB=run ledinit && i2c mw 0x40 0x18 0xff && i2c mw 0x40 0x1b 0xff && i2c mw 0x40 0x1e 0xff ledG=run ledinit && i2c mw 0x40 0x17 0xff && i2c mw 0x40 0x1a 0xff && i2c mw 0x40 0x1d 0xff ledR=run ledinit && i2c mw 0x40 0x16 0xff && i2c mw 0x40 0x19 0xff && i2c mw 0x40 0x1c 0xff ledRblink=i2c mw 0x40 0x16 0xff && i2c mw 0x40 0x19 0xff && i2c mw 0x40 0x1c 0xff && sleep 1 && i2c mw 0x40 0x16 0x00 && i2c mw 0x40 0x19 0x00 && i2c mw 0x40 0x1c 0x00 && sleep 1 ledallon=run ledinit && mw 0x44000000 ffffffff 3 && i2c write 0x44000000 0x32 0x16 9 && i2c write 0x44000000 0x35 0x16 9 ledinit=i2c dev 0 && i2c probe && i2c mw 0x40 0x0 0x40 && mw 0x44000000 a0a0a0a0 3 && i2c write 0x44000000 0x40 0x7 9 && mw 0x44000000 00000000 3 && i2c write 0x44000000 0x40 0x16 9 machid=80100f1 netmask=255.255.255.0 partno=NBG7815-EU0102F preboot=dcache off progimg=aq_load_fw 8 && tftpboot 0x44000000 $fwimg && imgaddr=0x44000000 && source $imgaddr:script && reset progzyxelimg=setenv machid 80100f1 && setenv bootcmd bootipq && saveenv && aq_load_fw 8 && tftpboot 0x44000000 $fwimg && imgaddr=0x44000000 && source $imgaddr:script && reset serialnum=xxxxxxxxxxxxxxxx serverip=192.168.1.99 soc_version_major=2 soc_version_minor=0 stderr=serial@78B3000 stdin=serial@78B3000 stdout=serial@78B3000 readonly=ro ipaddr=192.168.1.1 ledB=run ledinit && i2c mw 0x40 0x18 0xff && i2c mw 0x40 0x1b 0xff && i2c mw 0x40 0x1e 0xff ledG=run ledinit && i2c mw 0x40 0x17 0xff && i2c mw 0x40 0x1a 0xff && i2c mw 0x40 0x1d 0xff ledR=run ledinit && i2c mw 0x40 0x16 0xff && i2c mw 0x40 0x19 0xff && i2c mw 0x40 0x1c 0xff ledRblink=i2c mw 0x40 0x16 0xff && i2c mw 0x40 0x19 0xff && i2c mw 0x40 0x1c 0xff && sleep 1 && i2c mw 0x40 0x16 0x00 && i2c mw 0x40 0x19 0x00 && i2c mw 0x40 0x1c 0x00 && sleep 1 ledallon=run ledinit && mw 0x44000000 ffffffff 3 && i2c write 0x44000000 0x32 0x16 9 && i2c write 0x44000000 0x35 0x16 9 ledinit=i2c dev 0 && i2c probe && i2c mw 0x40 0x0 0x40 && mw 0x44000000 a0a0a0a0 3 && i2c write 0x44000000 0x40 0x7 9 && mw 0x44000000 00000000 3 && i2c write 0x44000000 0x40 0x16 9 machid=80100f1 netmask=255.255.255.0 partno=NBG7815-EU0102F preboot=dcache off progimg=aq_load_fw 8 && tftpboot 0x44000000 $fwimg && imgaddr=0x44000000 && source $imgaddr:script && reset progzyxelimg=setenv machid 80100f1 && setenv bootcmd bootipq && saveenv && aq_load_fw 8 && tftpboot 0x44000000 $fwimg && imgaddr=0x44000000 && source $imgaddr:script && reset serialnum=xxxxxxxxxxxxxxxx serverip=192.168.1.99 soc_version_major=2 soc_version_minor=0 stderr=serial@78B3000 stdin=serial@78B3000 stdout=serial@78B3000 readonly=ro