Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
inbox:toh:tp-link:x80-5g_v1 [2024/04/05 22:47] – [Table] professor_jonnyinbox:toh:tp-link:x80-5g_v1 [2024/08/13 00:34] – [Installing OpenWrt factory.ubi part 2 of 2] professor_jonny
Line 1: Line 1:
 ====== TP-Link X80-5G V1====== ====== TP-Link X80-5G V1======
 ~~NOTOC~~ ~~NOTOC~~
 +
 +{{ media:tplink:x80-5g:x80-5g_media_sample.jpg?400|X80-5G}}
 +
  
 /* This template is intended to be used via https://openwrt.org/meta/create_new_device_page . */ /* This template is intended to be used via https://openwrt.org/meta/create_new_device_page . */
  
-{{page>meta:infobox:construction&noheader&nofooter&noeditbtn}}+The TP-Link Deco X80-5G is a dual port router with a built in 5g modem and a phone port.
  
-//Write a shortrelevant description of the deviceInclude a technical overview, but avoid marketing buzzwords/useless stuffTwo to four sentences is about rightA picture is good, tooEdit the page to see how to add pictures.//+  * Dual-Band Wi-Fi 6. 
 +  * Dual Eithernet ports 1× 2.5 Gbps port and 1× Gigabit 
 +  * VoLTE/VoIP POTS telephony Support. 
 +  * Based on the Qualcomm IPQ8074A SoCAP-HK01-C1 reference design. 
 +  * 5G mm wave Modem based on the Snapdragon X55 5G Modem-RF System with theoretical 10 Gbps Peak download and 3.5 Gbps peak upload speeds. 
 +  * Dual firmware with U-boot HTTP based recovery. 
 + 
 + 
 +Manufacture info: 
 + 
 +https://www.tp-link.com/us/deco-mesh-wifi/product-family/deco-x80-5g/ 
 + 
 +https://www.qualcomm.com/news/releases/2024/02/qualcomm-unveils-the-world-s-most-advanced-5g-modem-rf-system--h 
 + 
 +https://www.qualcomm.com/products/technology/modems/snapdragon-x80-5g-modem-rf-system 
 + 
 +GPL source: 
 + 
 +https://static.tp-link.com/upload/gpl-code/2024/202404/20240423/X80-5G.tar 
 + 
 +https://www.tp-link.com/en/support/download/deco-x80-5g/#GPL-Code
  
 /*****/ /*****/
Line 12: Line 35:
 /*****/ /*****/
  
-{{ media:example:genericrouter1.png?200|Generic Router}}+ 
  
  
Line 20: Line 44:
  
  
-/*** if info available: uncomment and fill in+
 ===== Supporting activities ===== ===== Supporting activities =====
-//Describe if there are any ongoing activities that might lead to OpenWrt support.// 
  
-  * OpenWrt forum thread: (add link) +  * OpenWrt forum thread: (https://forum.openwrt.org/t/ipq8074a-tp-link-deco-x80-5g-info-thread/176308
-***/+  WIP Private Git hub branch: (https://github.com/professor-jonny/pj_openwrt/tree/x80-5g) 
 + 
  
  
-/*** if info available: uncomment and fill in 
 ===== Experimental firmware ===== ===== Experimental firmware =====
  
-//List experimental firmware download links here.// 
  
-//None at this time.//+  * Initramfs Test Image: (https://github.com/professor-jonny/images/blob/main/openwrt-qualcommax-ipq807x-tplink_x80-5g-initramfs-uImage.itb) 
 +  * factory   Test Image: (https://github.com/professor-jonny/images/blob/main/openwrt-qualcommax-ipq807x-tplink_x80-5g-squashfs-factory.ubi) 
  
-  * External image (add link) 
-  * trunk image (add link) 
-  * ... 
-***/ 
  
  
 ===== Hardware highlights ===== ===== Hardware highlights =====
-^ CPU                         ^ Ram      ^ Flash   ^ Network         ^ WLAN                         USB      ^ Serial  ^ JTag  +^ CPU                                 ^ Ram (DDR3)       ^ Flash (Nand)     ^ Network                ^ WLAN 2.5G   WLAN 5G                ^ Mobile ^ VoLTE/IP Telephony   ^ Serial ^ 
-| IPQ8074A, SoC Version: 2. |  64 MiB  |  8 MiB  |  1x 2.5g 1x 1g  |  2.5g b/g/n/ax 5g a/n/ac/ax  |  1x 2.0   Yes     ?    |+| IPQ8074A @2.2ghz  |  512MB (4Gbit)  |  128MB (1Gbit)|  2 |  B/G/N/AX | A/N/AC/AX  |  5G/ 4.5gLTE    RJ11 POTS |   Yes| 
  
  
-/*** if info available: uncomment and fill in 
 ===== Installation ===== ===== Installation =====
   - → [[:downloads|Obtain firmware]]   - → [[:downloads|Obtain firmware]]
Line 52: Line 73:
   - → [[:downloads|Latest OpenWrt release]]   - → [[:downloads|Latest OpenWrt release]]
  
-==== Installing OpenWrt ==== +==== Installing initramfs image part 1 of 2==== 
-***/+ 
 + 
 +  - Download and copy the initramfs image to your PC's TFTP server folder. 
 +  - connect up your serial port and set up a connection with a terminal program such as SmarTTY 
 +  - Plug the router into your computer using an ethernet cable 
 +  - set your pc's IP address to the below settings: 
 +  - static 192.168.1.2. 
 +  - power the router and quickly type the magic string "tpl" and press enter to break into u-boot 
 +  - in the shell set the environment variables to enable tftpbooting 
 +  - setenv ipaddr 192.168.1.1 
 +  - setenv serverip 192.168.1.2 
 +  - In the shell run the below command to initiate the image transfer: 
 +  - this will load your image to memory as location 044000000 in ram 
 +  - tftpboot 0x44000000 192.168.1.2:openwrt-qualcommax-ipq807x-tplink_x80-5g-initramfs-uImage.itb 
 +  - your image will now upload to your ram ready to boot. 
 +  - run (bootm) and your image will now load. 
 + 
 +==== Installing OpenWrt factory.ubi part 2 of 2 ==== 
 + 
 +  - Download a copy of the factory.ubi to your pc 
 +  - set up a ssh/scp session to your router with a program such as SmarTTY. 
 +  - upload the factory.ubi to /tmp on your router 
 +  - in the console run the below command: 
 +  - ubiformat /dev/mtd12 -y -f /tmp/openwrt-qualcommax-ipq807x-tplink_x80-5g-squashfs-factory.ubi 
 +  - wait for it to complete and reboot your router.
  
  
-/*** if info available: uncomment and fill in 
 ===== Debricking ===== ===== Debricking =====
--> [[docs:guide-user:troubleshooting:generic.debrick]] +The Deco X80-5G has HTTP Uboot Method for recovering the device. 
-***/+The official guide can be found herehttps://www.tp-link.com/en/support/faq/2958/ 
 + 
 +Firstly download your firmware to your PC  
 +Set a static IP address and netmask of 192.168.0.2/255.255.255.0 on your Ethernet port on your PC. 
 + 
 +Connect the PC directly to the ethernet port of the Deco unit. 
 + 
 +Use a pin/pen to press and hold the reset button and plug power into the device. 
 +On the PC, access http://192.168.0.1, you would be able to see the firmware recovery page. 
 +Select your previously downloaded firmware and recovery will start. 
 +After a while your device will reboot, and it will be back to stock.
  
  
-/*** if info available: uncomment and fill in 
 ===== Failsafe mode ===== ===== Failsafe mode =====
--[[docs:guide-user:troubleshooting:failsafe_and_factory_reset]] +Failsafe mode can be invoked by halting the boot process from a serial connection. 
-***/+ 
 +Firstly connect a serial device and set up a connection. 
 +Watch the boot log waiting for the Failsafe prompt and press f and then enter 
 +you will be presented with the below: 
 + 
 +<code> 
 +================= FAILSAFE MODE active ================ 
 +special commands: 
 +* firstboot          reset settings to factory defaults 
 +* mount_root     mount root-partition with config files 
 + 
 +after mount_root
 +passwd                         change root's password 
 +* /etc/config               directory with config files 
 + 
 +for more help see: 
 +http://wiki.openwrt.org/doc/howto/generic.failsafe 
 +</code> 
  
  
Line 91: Line 162:
  
  
-/*** if info available: uncomment and fill in+
 ==== Buttons ==== ==== Buttons ====
--> [[docs:guide-user:hardware:hardware.button]] on howto use and configure the hardware button(s). 
-Here, we merely name the buttons, so we can use them in the above Howto. 
- 
 <WRAP BOX 600px> <WRAP BOX 600px>
-FIXME Please fill in real values for this device, then remove the EXAMPLEs and the WRAP that encloses this text.+
  
 The TP-Link X80-5G has the following buttons: The TP-Link X80-5G has the following buttons:
  
 ^ BUTTON                       ^ Event   ^ ^ BUTTON                       ^ Event   ^
-EXAMPLE Reset                |  reset  +| Reset                |  reset/ recover  |
-| EXAMPLE Secure Easy Setup    |   ses   | +
-| EXAMPLE No buttons at all.      -    |+
 </WRAP> </WRAP>
-***/+
  
  
 ===== Hardware ===== ===== Hardware =====
 ==== Info ==== ==== Info ====
-^ Architecture     EXAMPLE MIPS                             +^ Architecture                  ARMv8-A (aarch64 Cortex A53, 4 cores)                      
-^ Vendor           EXAMPLE Ralink                           +^ Vendor                        Qualcomm                                                   
-^ Bootloader       EXAMPLE U-Boot                           +^ Bootloader                    | U-Boot (2016)                                              
-^ System-On-Chip   EXAMPLE Ralink RT3052 - MIPS 24K V4.12   +^ System-On-Chip                Qualcomm IPQ8074A (Networking Pro 1210 platform)           
-^ CPU/Speed        EXAMPLE 451 MHz                          +^ CPU/Speed                     2.2GHZ                                                     
-^ Flash-Chip       EXAMPLE unkown                           | +^ Flash-Chip                    ESMT F59D1G81MB-45TI 1G-bit NAND                           | 
-^ Flash size       EXAMPLE 8 MiB                            +^ Flash MB                      128MB (1Gbit)                                              
-^ RAM              | EXAMPLE 64 MiB                           +^ RAM-chip                      | 2* ESMT M15T4G16256A-DEBG2G 2Gb DDR3L (32bit)              | 
-Wireless         EXAMPLE RT2860v2 2.4GHz 802.11bgn        +^ RAM MB                        | 512MB (4Gbit)                                              
-Ethernet         EXAMPLE 10/100 Mbit/s wvlan support    +WLan System-On-Chip (5g)      Qualcomm QCN5054                                           | 
-Switch           EXAMPLE Qualcomm Atheros QCA8337         +^ WLan Front end modules (5g)   | 8* Qorvo QPF4588                                           | 
-USB              EXAMPLE 1x 2.0                           +^ WLAN (5G)                     | A/N/AC/AX                                                  | 
-Serial           EXAMPLE [[#Serial|Yes]]                  +^ WLAN Antenna (int)            | 8* (4 shared with 2.5G)                                    | 
-JTAG             | EXAMPLE [[#JTAG|Not populated]]          +^ WLan System-On-Chip (2.4G)    | Qualcomm QCN5024                                           
- +WLan Front end modules (2.4G) | 4* Skyworks SKY85340-11                                    | 
- +^ WLAN (2.4G)                   B/G/N/AX                                                   
-/*** if info available: uncomment and fill in+WLAN Antenna (int)            | 4* (shared with 5g)                                        | 
 +^ Eithernet-phy (1Gbit)         | Qualcomm (Atheros) AR8033-AL1A                             
 +Ethernet (1Gbit)              1*                                                         | 
 +^ Eithernet-phy (2.5Gbit)       | Qualcomm QCA8081                                           
 +Ethernet (2.5Gbit)            1*                                                         | 
 +^ Switch                        | Embedded in the SOC?                                       | 
 +Serial                        1.8v 8n1 (testpoints)                                      
 +Modem System-On-Chip          | Qualcomm 5G RG50xQ (Snapdragon X55 platform)               | 
 +^ 5G modem capability           | 5000Mbps down 900Mbps up                                   | 
 +^ 5G modem bands                | N1/N3/N5/N7/N8/N20/N28/N38/N40/N41/N77/N78/N79             | 
 +^ 4G modem capability           4.5G LTE-Advanced Pro (Cat20 down 2Gbps) (Cat18 up 200Mbps)  
 +^ 4G modem FDD bands            | B1/B3/B5/B7/B8/B18/B19/B20/B26/B28                         | 
 +^ 4G modem TDD bands            | B34/B38/B39/B40/B41/B42/B43                                | 
 +^ Modem antenna (int)           | 8* (5G/4G use)                                             | 
 +^ Modem antenna (ext)           | 2SMA connectors (5G/4G use)                              | 
 +^ SIM type                      | 1Nano SIM                                                | 
 +^ Telephony                     | 1POTS RJ11                                               |
 ==== Flash Layout ==== ==== Flash Layout ====
-<WRAP BOX+<code
-FIXME //[[:docs:techref:flash.layout#discovery_how_to_find_out|Find out flash layout]], then add the flash layout table here (copy, paste, modify the [[docs:techref:flash.layout#partitioning_of_squashfs-images|example]]).// +dev   size   erasesize  name 
- +mtd000100000 00020000 "0:SBL1" 
-Please check out the article [[docs:techref:flash.layout|Flash layout]]. It contains examples and explanations that describe how to document the flash layout. +mtd100100000 00020000 "0:MIBIB" 
-</WRAP> +mtd2: 00080000 00020000 "0:BOOTCONFIG" 
-***/+mtd300080000 00020000 "0:BOOTCONFIG1" 
 +mtd4: 00300000 00020000 "0:QSEE" 
 +mtd5: 00080000 00020000 "0:DEVCFG" 
 +mtd6: 00080000 00020000 "0:APDP" 
 +mtd7: 00080000 00020000 "0:RPM" 
 +mtd8: 00080000 00020000 "0:CDT" 
 +mtd9: 00180000 00020000 "0:APPSBLENV" 
 +mtd10: 00200000 00020000 "0:APPSBL" 
 +mtd11: 00080000 00020000 "0:ART" 
 +mtd12: 02a00000 00020000 "rootfs" 
 +mtd13: 02a00000 00020000 "rootfs_1" 
 +mtd14: 00080000 00020000 "0:ETHPHYFW" 
 +mtd15: 00900000 00020000 "factory_data" 
 +mtd16: 01100000 00020000 "runtime_data" 
 +mtd17: 00573000 0001f000 "kernel" 
 +mtd18: 01341000 0001f000 "ubi_rootfs" 
 +</code>
  
  
Line 143: Line 241:
 /* Thanks, your wiki administration - Oct. 2015 */ /* Thanks, your wiki administration - Oct. 2015 */
  
-**Insert photo of front of the casing**+**Back ports**
  
-**Insert photo of back of the casing**+{{:media:tplink:x80-5g:x80-5g_ports.jpg?direct&400|}}
  
-**Insert photo of backside label**+**Bottom and label** 
 + 
 +{{:media:tplink:x80-5g:x80-5g_bottom.jpg?direct&400|}} 
 + 
 +**PCB's ** 
 + 
 +{{:media:tplink:x80-5g:x80-5g_pcb1.jpeg?direct&400|}} 
 +{{:media:tplink:x80-5g:x80-5g_pcb1_back.jpeg?direct&400|}} 
 +{{:media:tplink:x80-5g:x80-5g_pcb2.jpeg?direct&400|}} 
 +{{:media:tplink:x80-5g:x80-5g_soc.jpeg?direct&400|}}
  
-**Insert photo of PCB** 
  
 ==== Opening the case ==== ==== Opening the case ====
  
-<WRAP BOX> 
-FIXME //Describe what needs to be done to open the device, e.g. remove rubber feet, adhesive labels, screws, ...// 
-</WRAP> 
  
-==== Serial ==== +  It has a top cover you pry off to see the fan which exposes four screws two for each clam shell o part of the case. 
--> [[docs:techref:hardware:port.serial]] general information about the serial portserial port cableetc.+  Underneath it has four rubber feet with screws beneath I just forced my screw-driver through the rubber pad to save removing them. 
 +  With all 8 screws removed you may split off both sides of the shell. 
 +  On the side of the shell with the RGB info LED it has a small PCB with a harness with a push in connector that needs removing on the bottom of the device before separating. 
 +  At this point you have enough to expose the serial UART and I really would not recommend you proceed any further. 
 +  To completely disassemble the deviceone must unsolder at least one of the two antennas labeled 1 and 2 and slide the PCB up from the top fan assembly. 
 +  Behind the antennas 1 and 2 is 2 screws to remove the fan assembly. 
 +  once the fan assembly is lifted up you can unplug the fan connector to remove it. 
 +  You then can start to separate the two PCB's of the device there is there is 14 IPEX/ U.FL connectors 8 for the WIFI and 8 for the LTEThey are all labeled on the PCB and the antennas. 
 +  All the U.Fl cables are secured with spring clips and tape and plastic hooks I'd recommend you take pictures as it was a pain to work out how to route them to get it together again. 
 +  With all the antenna connectors unplugged you can then remove the screws holding the heatsinks PCB's and antenna Frames. 
 +  NOTE all the screws are of different lengths make sure to note their location for reassembly. 
 +  Separating the two halves this will expose the bottom 2 cover screws to remove the base.
  
-How to connect to the Serial Port of this specific device:\\ + 
-**Insert photo of PCB with markings for serial port**+ 
 + 
 + 
 +==== Serial ====
  
 <WRAP BOX> <WRAP BOX>
-FIXME //Replace EXAMPLE by real values.//+Between antennas 7 and 8 on the PCB with the RGB harness there are three test pads labeled TP1 TP2 and TP3. 
 + 
 +I soldered a standard pin header to the test pads but be aware it is very fragile and would be easy to rip them off by accident but seems sturdy with TP3 being on a ground plane. 
 + 
 + 
 +{{:media:tplink:x80-5g:x80-5g_uart.jpeg?direct&400|}} 
 + 
 +Green is Ground (TP3) 
 +Yellow is RX (TP2) 
 +Orange is TX (TP1) 
 + 
 +<code> 
 +                        R (~5k Ohms)     ------------- 
 +                     /---\/\/\/`--VCC----| USB FTDI  | 
 +  -----------        |                   | 1.8V      | 
 +  |TP2|---RX----ora--+----------- TX-----|           | --> to PC (minicom, screen, C-Kermit, putty ...) 
 +  |TP1|---TX----yel-------------- RX-----|           | 
 +  |TP3|---GND---gre-------------- GND----|           | 
 +  -----------                            ------------- 
 +</code> 
 </WRAP> </WRAP>
  
-^ Serial connection parameters\\ for TP-Link X80-5G V1 | EXAMPLE 115200, 8N1, 3.3V |+^ Serial connection parameters\\ for TP-Link X80-5G V1  | 115200, 8N1, 1.8V  \\ CR(/r) line ending format| 
 +^ Uboot Magic string\\ (password) | tpl (enter) |
  
 ==== JTAG ==== ==== JTAG ====
Line 178: Line 316:
 ==== OEM bootlog ==== ==== OEM bootlog ====
 <WRAP bootlog> <WRAP bootlog>
-<nowiki>COPY HERE THE BOOTLOG WITH THE ORIGINAL FIRMWARE</nowiki>+<nowiki> 
 +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-00158 
 +S - IMAGE_VARIANT_STRING=HAACANAZA 
 +S - OEM_IMAGE_VERSION_STRING=CRM 
 +S - Boot Config, 0x000002e5 
 +B -       201 - PBL, Start 
 +B -      2736 - bootable_media_detect_entry, Start 
 +B -      3444 - bootable_media_detect_success, Start 
 +B -      3448 - elf_loader_entry, Start 
 +B -      6116 - auth_hash_seg_entry, Start 
 +B -      6359 - auth_hash_seg_exit, Start 
 +B -     68381 - elf_segs_hash_verify_entry, Start 
 +B -    131223 - PBL, End 
 +B -    142282 - SBL1, Start 
 +B -    194132 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4 
 +B -    200598 - pm_device_init, Start 
 +B -    321714 - PM_SET_VAL:Skip 
 +D -    120658 - pm_device_init, Delta 
 +B -    324123 - pm_driver_init, Start 
 +D -      5368 - pm_driver_init, Delta 
 +B -    330498 - clock_init, Start 
 +D -      2135 - clock_init, Delta 
 +B -    334432 - boot_flash_init, Start 
 +D -     12566 - boot_flash_init, Delta 
 +B -    350780 - boot_config_data_table_init, Start 
 +D -      3111 - boot_config_data_table_init, Delta - (575 Bytes) 
 +B -    358283 - Boot Setting :  0x00000618 
 +B -    362187 - CDT version:2,Platform ID:8,Major ID:1,Minor ID:4,Subtype:
 +B -    369111 - sbl1_ddr_set_params, Start 
 +B -    372923 - CPR configuration: 0x30c 
 +B -    376278 - cpr_init, Start 
 +B -    379176 - Rail:0 Mode: 5 Voltage: 792000 
 +B -    384269 - CL CPR settled at 744000mV 
 +B -    387106 - Rail:1 Mode: 5 Voltage: 880000 
 +B -    391376 - Rail:1 Mode: 7 Voltage: 888000 
 +D -     16531 - cpr_init, Delta 
 +B -    398177 - Pre_DDR_clock_init, Start 
 +B -    402264 - Pre_DDR_clock_init, End 
 +B -    405589 - DDR Type : PCDDR3 
 +B -    411323 - do ddr sanity test, Start 
 +D -      1067 - do ddr sanity test, Delta 
 +B -    416081 - DDR: Start of HAL DDR Boot Training 
 +B -    420808 - DDR: End of HAL DDR Boot Training 
 +B -    426512 - DDR: Checksum to be stored on flash is 1377291785 
 +B -    436821 - Image Load, Start 
 +D -    224327 - QSEE Image Loaded, Delta - (1376448 Bytes) 
 +B -    661240 - Image Load, Start 
 +D -        61 - SEC Image Loaded, Delta - (0 Bytes) 
 +B -    668926 - Image Load, Start 
 +D -     10705 - DEVCFG Image Loaded, Delta - (26008 Bytes) 
 +B -    679723 - Image Load, Start 
 +D -     22051 - RPM Image Loaded, Delta - (86584 Bytes) 
 +B -    701866 - Image Load, Start 
 +D -    108976 - APPSBL Image Loaded, Delta - (672668 Bytes) 
 +B -    810964 - QSEE Execution, Start 
 +D -        61 - QSEE Execution, Delta 
 +B -    816759 - USB D+ check, Start 
 +D -         0 - USB D+ check, Delta 
 +B -    823164 - SBL1, End 
 +D -    683170 - SBL1, Delta 
 +S - Flash Throughput, 6745 KB/s  (2162955 Bytes,  320641 us) 
 +S - DDR Frequency, 466 MHz 
 +S - Core 0 Frequency, 1651 MHz 
 + 
 + 
 +U-Boot 2016.01 (Feb 25 2021 - 20:16:45 +0800) 
 + 
 +DRAM:  smem ram ptable found: ver: 1 len: 4 
 +1 GiB 
 +NAND:  Could not find nand_gpio in dts, using defaults 
 +ONFI device found 
 +ID = 158061c8 
 +Vendor = c8 
 +Device = 61 
 +SF: Unsupported flash IDs: manuf 00, jedec 1c78, ext_jedec 4a74 
 +ipq_spi: SPI Flash not found (bus/cs/speed/mode) = (0/0/48000000/0) 
 +128 MiB 
 +MMC:   <NULL>:
 +PCI0 is not defined in the device tree 
 +PCI1 is not defined in the device tree 
 +In:    serial@78B3000 
 +Out:   serial@78B3000 
 +Err:   serial@78B3000 
 +machid: 8010400 
 +Card did not respond to voltage select! 
 +eth0 MAC Address from ART is not valid 
 +eth1 MAC Address from ART is not valid 
 +eth2 MAC Address from ART is not valid 
 +eth3 MAC Address from ART is not valid 
 +eth4 MAC Address from ART is not valid 
 +eth5 MAC Address from ART is not valid 
 +gpio 38 set BOARD_3V9_5V_EN_GPIO to high[1]  
 +gpio 64 set PHY_QCA8081_1V8_EN_GPIO to high[1]  
 +gpio 33 set PHY_AR8033_3V3_EN_GPIO to high[1]  
 +gpio 35 set ONOFF_MODULE_5G_GPIO to low[0] ... 1s  
 +gpio 35 set ONOFF_MODULE_5G_GPIO to high[1] 
 +ubi0: attaching mtd1 
 +ubi0: scanning is finished 
 +ubi0: attached mtd1 (name "mtd=0", size 9 MiB) 
 +ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +ubi0: good PEBs: 72, bad PEBs: 0, corrupted PEBs: 0 
 +ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 
 +ubi0: max/mean erase counter: 11/6, WL threshold: 4096, image sequence number: 1097309032 
 +ubi0: available PEBs: 0, total reserved PEBs: 72, PEBs reserved for bad PEB handling: 20 
 +Find no boot alter flag! 
 +Enter magic string to stop autoboot in?Unmounting UBIFS volume ubi_factory_data! 
 +ubi0: detaching mtd1 
 +ubi0: mtd1 is detached 
 +ubi0: attaching mtd1 
 +ubi0: scanning is finished 
 +ubi0: attached mtd1 (name "mtd=0", size 42 MiB) 
 +ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +ubi0: good PEBs: 336, bad PEBs: 0, corrupted PEBs: 0 
 +ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 
 +ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 273099923 
 +ubi0: available PEBs: 108, total reserved PEBs: 228, PEBs reserved for bad PEB handling:  
 +20 
 +Read 0 bytes from volume kernel to 44000000 
 +No size specified -> Using max size (5713920) 
 +## Loading kernel from FIT Image at 44000000 ... 
 +   Using 'config@hk01.c5' configuration 
 +   Trying 'kernel@1' kernel subimage 
 +     Description:  ARM64 OpenWrt Linux-4.4.60 
 +     Type:         Kernel Image 
 +     Compression:  gzip compressed 
 +     Data Start:   0x440000e8 
 +     Data Size:    3857929 Bytes = 3.7 MiB 
 +     Architecture: AArch64 
 +     OS:           Linux 
 +     Load Address: 0x41080000 
 +     Entry Point:  0x41080000 
 +     Hash algo:    crc32 
 +     Hash value:   db19bb74 
 +     Hash algo:    sha1 
 +     Hash value:   80e8e02e244a73839be2d7cb2a6f845e49cb0cc8 
 +   Verifying Hash Integrity ... crc32+ sha1+ OK 
 +## Loading fdt from FIT Image at 44000000 ... 
 +   Using 'config@hk01.c5' configuration 
 +   Trying 'fdt@hk01.c5' fdt subimage 
 +     Description:  ARM64 OpenWrt qcom-ipq807x-hkxx device tree blob 
 +     Type:         Flat Device Tree 
 +     Compression:  uncompressed 
 +     Data Start:   0x443d8698 
 +     Data Size:    92380 Bytes = 90.2 KiB 
 +     Architecture: AArch64 
 +     Hash algo:    crc32 
 +     Hash value:   3f191698 
 +     Hash algo:    sha1 
 +     Hash value:   d0cbc4e75fecf605333dd4a95c21ed37d26c3df4 
 +   Verifying Hash Integrity ... crc32+ sha1+ OK 
 +   Booting using the fdt blob at 0x443d8698 
 +   Uncompressing Kernel Image ... OK 
 +   Loading Device Tree to 4a3e6000, end 4a3ff8db ... OK 
 +Could not find PCI in device tree 
 +Using machid 0x8010400 from environment 
 + 
 +Starting kernel ... 
 + 
 +Jumping to AARCH64 kernel via monitor 
 +[    0.000000] Booting Linux on physical CPU 0x0 
 +[    0.000000] Linux version 4.4.60 (tplink@linuxci2-sp) (gcc version 5.2.0 (OpenWrt GCC  
 +5.2.0 34c568b+r49254) ) #1 SMP PREEMPT Mon Apr 10 21:40:48 CST 2023 
 +[    0.000000] Boot CPU: AArch64 Processor [410fd034] 
 +[    0.000000] Ignoring memory range 0x40000000 - 0x41000000 
 +[    0.000000] Machine: Qualcomm Technologies, Inc. IPQ807x/AP-HK01-C5 
 +[    0.000000] efi: Getting EFI parameters from FDT: 
 +[    0.000000] efi: UEFI not found. 
 +[    0.000000] Reserved memory: OVERLAP DETECTED! 
 +[    0.000000] wifi_dump@51100000 (0x0000000051100000--0x0000000051700000) overlaps with  
 +wigig_dump@51300000 (0x0000000051300000--0x0000000051700000) 
 +[    0.000000] psci: probing for conduit method from DT. 
 +[    0.000000] psci: PSCIv1.0 detected in firmware. 
 +[    0.000000] psci: Using standard PSCI v0.2 function IDs 
 +[    0.000000] psci: MIGRATE_INFO_TYPE not supported. 
 +[    0.000000] PERCPU: Embedded 14 pages/cpu @ffffffc03ef43000 s19328 r8192 d29824 u57344 
 +[    0.000000] Detected VIPT I-cache on CPU0 
 +[    0.000000] CPU features: enabling workaround for ARM erratum 845719 
 +[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 22503 
 +
 +[    0.000000] Kernel command line: ubi.mtd=rootfs root=mtd:ubi_rootfs rootfstype=squashf 
 +s rootwait swiotlb=1 
 +[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes) 
 +[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes) 
 +[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes) 
 +[    0.000000] software IO TLB [mem 0x7fd3c000-0x7fd7c000] (0MB) mapped at [ffffffc03ed3c 
 +000-ffffffc03ed7bfff] 
 +[    0.000000] Memory: 886388K/914432K available (5258K kernel code, 609K rwdata, 2292K r 
 +odata, 220K init, 466K bss, 28044K reserved, 0K cma-reserved) 
 +[    0.000000] Virtual kernel memory layout: 
 +[    0.000000]     vmalloc : 0xffffff8000000000 - 0xffffffbdbfff0000     246 GB) 
 +[    0.000000]     vmemmap : 0xffffffbdc0000000 - 0xffffffbfc0000000       8 GB maximum 
 +
 +[    0.000000]               0xffffffbdc0040000 - 0xffffffbdc1000000      15 MB actual) 
 +[    0.000000]     fixed   : 0xffffffbffa7fd000 - 0xffffffbffac00000    4108 KB) 
 +[    0.000000]     PCI I/O : 0xffffffbffae00000 - 0xffffffbffbe00000      16 MB) 
 +[    0.000000]     modules : 0xffffffbffc000000 - 0xffffffc000000000      64 MB) 
 +[    0.000000]     memory  : 0xffffffc000000000 - 0xffffffc03f000000    1008 MB) 
 +[    0.000000]       .init : 0xffffffc0007e2000 - 0xffffffc000819000     220 KB) 
 +[    0.000000]       .text : 0xffffffc000080000 - 0xffffffc0007e1844    7559 KB) 
 +[    0.000000]       .data : 0xffffffc000828000 - 0xffffffc0008c0400     609 KB) 
 +[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1 
 +[    0.000000] Preemptible hierarchical RCU implementation. 
 +[    0.000000]  Build-time adjustment of leaf fanout to 64. 
 +[    0.000000] NR_IRQS:64 nr_irqs:64 0 
 +[    0.000000] Architected cp15 timer(s) running at 19.20MHz (virt). 
 +[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987 
 +e47, max_idle_ns: 440795202767 ns 
 +[    0.000005] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078n 
 +
 +[    0.000508] Calibrating delay loop (skipped), value calculated using timer frequency.. 
 + 38.40 BogoMIPS (lpj=192000) 
 +[    0.000520] pid_max: default: 32768 minimum: 301 
 +[    0.000612] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes) 
 +[    0.000622] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes) 
 +[    0.001283] EFI services will not be available. 
 +[    0.001308] ASID allocator initialised with 65536 entries 
 +[    0.051933] MSM Memory Dump base table set up 
 +[    0.051954] MSM Memory Dump apps data table set up 
 +[    0.090039] Detected VIPT I-cache on CPU1 
 +[    0.090083] CPU1: Booted secondary processor [410fd034] 
 +[    0.120022] Detected VIPT I-cache on CPU2 
 +[    0.120049] CPU2: Booted secondary processor [410fd034] 
 +[    0.150051] Detected VIPT I-cache on CPU3 
 +[    0.150077] CPU3: Booted secondary processor [410fd034] 
 +[    0.150126] Brought up 4 CPUs 
 +[    0.150153] SMP: Total of 4 processors activated. 
 +[    0.150163] CPU: All CPU(s) started at EL1 
 +[    0.150186] alternatives: patching kernel code 
 +[    0.169584] DMI not present or invalid. 
 +[    0.169818] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns 
 +: 19112604462750000 ns 
 +[    0.169842] futex hash table entries: 1024 (order: 5, 131072 bytes) 
 +[    0.170038] pinctrl core: initialized pinctrl subsystem 
 +[    0.171151] NET: Registered protocol family 16 
 +[    0.199989] cpuidle: using governor ladder 
 +[    0.230004] cpuidle: using governor menu 
 +[    0.230210] NET: Registered protocol family 42 
 +[    0.230287] vdso: 2 pages (1 code @ ffffffc00082d000, 1 data @ ffffffc00082c000) 
 +[    0.230398] DMA: preallocated 256 KiB pool for atomic allocations 
 +[    0.230527] CPU: IPQ8074A, SoC Version: 2.0 
 +[    0.230949] IPC logging disabled 
 +[    0.230955] IPC logging disabled 
 +[    0.230960] IPC logging disabled 
 +[    0.230964] IPC logging disabled 
 +[    0.230969] IPC logging disabled 
 +[    0.233206] Soc version is not 1, changing clock offsets 
 +[    0.241895] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ! 
 +[    0.244585] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel ! 
 +[    0.247995] sps:sps is ready. 
 +[    0.254986] spmi spmi-0: PMIC Arb Version-2 (0x20010000) 
 +[    0.262935] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 
 +[    0.263195] qcom,cpr3-npu-regulator a4000.npu-cpr: NPU CPR valid fuse count: 2 
 +[    0.301899] pps_core: LinuxPPS API ver. 1 registered 
 +[    0.301906] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giom 
 +etti@linux.it> 
 +[    0.301928] PTP clock support registered 
 +[    0.302077] dmi: Firmware registration failed. 
 +[    0.303583] Advanced Linux Sound Architecture Driver Initialized. 
 +[    0.304211] clocksource: Switched to clocksource arch_sys_counter 
 +[    0.307322] NET: Registered protocol family 2 
 +[    0.307883] TCP established hash table entries: 8192 (order: 4, 65536 bytes) 
 +[    0.307991] TCP bind hash table entries: 8192 (order: 5, 131072 bytes) 
 +[    0.308176] TCP: Hash tables configured (established 8192 bind 8192) 
 +[    0.308228] UDP hash table entries: 512 (order: 2, 16384 bytes) 
 +[    0.308265] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes) 
 +[    0.308437] NET: Registered protocol family 1 
 +[    0.315795] squashfs: version 4.0 (2009/01/31) Phillip Lougher 
 +[    0.315812] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 20 
 +01-2006 Red Hat, Inc. 
 +[    0.319103] Key type asymmetric registered 
 +[    0.319118] Asymmetric key parser 'x509' registered 
 +[    0.319146] io scheduler noop registered 
 +[    0.319159] io scheduler deadline registered (default) 
 +[    0.321544] 20000000.pci supply vdda not found, using dummy regulator 
 +[    0.321590] 20000000.pci supply vdda_phy not found, using dummy regulator 
 +[    0.321627] 20000000.pci supply vdda_refclk not found, using dummy regulator 
 +[    0.322590] PCI host bridge /soc/pci@20000000 ranges: 
 +[    0.322618]    IO 0x20200000..0x2020ffff -> 0x20200000 
 +[    0.322633]   MEM 0x20220000..0x2fffffff -> 0x20220000 
 +[    0.565748] qcom-pcie 20000000.pci: link up 
 +[    0.565895] qcom-pcie 20000000.pci: PCI host bridge to bus 0000:00 
 +[    0.565908] pci_bus 0000:00: root bus resource [bus 00-ff] 
 +[    0.565921] pci_bus 0000:00: root bus resource [io  0x0000-0xffff] (bus address [0x202 
 +00000-0x2020ffff]) 
 +[    0.565931] pci_bus 0000:00: root bus resource [mem 0x20220000-0x2fffffff] 
 +[    0.566250] pci 0000:00:00.0: bridge configuration invalid ([bus 00-00]), reconfigurin 
 +
 +[    0.567232] pci 0000:00:00.0: BAR 8: assigned [mem 0x20300000-0x204fffff] 
 +[    0.567248] pci 0000:00:00.0: BAR 9: assigned [mem 0x20500000-0x206fffff 64bit pref] 
 +[    0.567261] pci 0000:00:00.0: BAR 0: assigned [mem 0x20220000-0x20220fff 64bit] 
 +[    0.567277] pci 0000:00:00.0: BAR 7: assigned [io  0x1000-0x1fff] 
 +[    0.567292] pci 0000:01:00.0: BAR 0: assigned [mem 0x20300000-0x20300fff 64bit] 
 +[    0.567344] pci 0000:01:00.0: BAR 2: assigned [mem 0x20301000-0x20301fff 64bit] 
 +[    0.567393] pci 0000:00:00.0: PCI bridge to [bus 01] 
 +[    0.567403] pci 0000:00:00.0:   bridge window [io  0x1000-0x1fff] 
 +[    0.567415] pci 0000:00:00.0:   bridge window [mem 0x20300000-0x204fffff] 
 +[    0.567425] pci 0000:00:00.0:   bridge window [mem 0x20500000-0x206fffff 64bit pref] 
 +[    0.567478] PCIe: RC0 enabled during bootup 
 +[    0.567892] MDSS QPIC HW Base phy_Address=0x7980000 virt=ffffff80004c0000 
 +[    0.568265] mdss_qpic_panel_probe: Panel Name = qpic lcd panel 
 +[    0.569465] mdss_fb_register: FrameBuffer[0] 800x480 registered successfully! 
 +[    0.573296] msm_rpm_log_probe: OK 
 +[    0.573645] msm-dcc b3000.dcc: DCC XPU is not specified 
 +[    0.573886] msm-dcc b3000.dcc: jiffies_64: 0xffff8b08, cntvct_64: 0xb054731 
 +[    0.573898] msm-dcc b3000.dcc: gcnt_hi: 0x00000000(0xffffff80003ce004) 
 +[    0.573909] msm-dcc b3000.dcc: gcnt_lo: 0x0b0548f9(0xffffff80003ce000) 
 +[    0.574548] TZ SMMU State: SMMU Stage2 Enabled 
 +[    0.574626] TZ Log : Will warn on Access Violation, as paniconaccessviolation is not s 
 +et 
 +[    0.576227] msm_serial 78b3000.serial: msm_serial: detected port #0 
 +[    0.576265] msm_serial 78b3000.serial: uartclk = 3686400 
 +[    0.576300] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 77, base_baud = 230400) i 
 +s a MSM 
 +[    0.576318] msm_serial: console setup on port #0 
 +[    1.402862] console [ttyMSM0] enabled 
 +[    1.407856] msm_serial 78b1000.serial: msm_serial: detected port #1 
 +[    1.411123] msm_serial 78b1000.serial: uartclk = 19200000 
 +[    1.417210] 78b1000.serial: ttyMSM1 at MMIO 0x78b1000 (irq = 78, base_baud = 1200000)  
 +is a MSM 
 +[    1.423066] msm_serial: driver initialized 
 +[    1.431563] msm_serial_hsl_init: driver initialized 
 +[    1.443738] brd: module loaded 
 +[    1.444973] flash_chrdev : flash_chrdev_init  
 +[    1.445678] flash_chrdev : flash_chrdev_init  
 +[    1.450939] QPIC controller hw version Major:1, Minor:5 
 +[    1.454810] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0x61 
 +[    1.459486] nand: ONFI 10-Compliant GigaDevice PSR1GA30DT 
 +[    1.466127] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64 
 +[    1.471456] 17 ofpart partitions found on MTD device qcom_nand.0 
 +[    1.478855] Creating 17 MTD partitions on "qcom_nand.0": 
 +[    1.485018] 0x000000000000-0x000000100000 : "0:SBL1" 
 +[    1.491858] 0x000000100000-0x000000200000 : "0:MIBIB" 
 +[    1.496731] 0x000000200000-0x000000280000 : "0:BOOTCONFIG" 
 +[    1.501269] 0x000000280000-0x000000300000 : "0:BOOTCONFIG1" 
 +[    1.506627] 0x000000300000-0x000000600000 : "0:QSEE" 
 +[    1.514296] 0x000000600000-0x000000680000 : "0:DEVCFG" 
 +[    1.517315] 0x000000680000-0x000000700000 : "0:APDP" 
 +[    1.522237] 0x000000700000-0x000000780000 : "0:RPM" 
 +[    1.527392] 0x000000780000-0x000000800000 : "0:CDT" 
 +[    1.531950] 0x000000800000-0x000000980000 : "0:APPSBLENV" 
 +[    1.537700] 0x000000980000-0x000000b80000 : "0:APPSBL" 
 +[    1.543687] 0x000000b80000-0x000000c00000 : "0:ART" 
 +[    1.547406] 0x000000c00000-0x000003600000 : "rootfs" 
 +[    1.588415] mtd: device 12 (rootfs) set to be root filesystem 
 +[    1.588737] mtdsplit: no squashfs found in "rootfs" 
 +[    1.593137] 0x000003600000-0x000006000000 : "rootfs_1" 
 +[    1.635136] 0x000006000000-0x000006080000 : "0:ETHPHYFW" 
 +[    1.636185] 0x000006080000-0x000006980000 : "factory_data" 
 +[    1.647896] 0x000006980000-0x000007a80000 : "runtime_data" 
 +[    1.664180] libphy: Fixed MDIO Bus: probed 
 +[    3.774917] gpio_set_value 44: 0 [1.5s~2s] gpio_set_value 44: 1 
 +[    6.044230] gpio_set_value 37: 0 [1.5s~2s] gpio_set_value 37: 1 
 +[    6.557237] qca-mdio 90000.mdio: Could not find phy-reset-gpio 
 +[    6.557358] libphy: qca_mdio: probed 
 +[    6.562715] qca-mdio 90000.mdio: qca-mdio driver was registered 
 +[    6.565957] Unable to create IPC log context! 
 +[    6.571594] Skip QCA8074V1 in V2 platform 
 +[    6.576124] cnss: Platform driver probed successfully. plat ffffffc03d0e2018 tgt 0xfff 
 +
 +[    6.580077] i2c /dev entries driver 
 +[    6.596177] sdhci: Secure Digital Host Controller Interface driver 
 +[    6.596204] sdhci: Copyright(c) Pierre Ossman 
 +[    6.601245] sdhci-pltfm: SDHCI platform and OF driver helper 
 +[    6.606292] sdhci_msm 7824900.sdhci: sdhci_msm_probe: ICE device is not enabled 
 +[    6.611448] sdhci_msm 7824900.sdhci: No vreg data found for vdd 
 +[    6.618457] sdhci_msm 7824900.sdhci: No vreg data found for vdd-io 
 +[    6.625659] sdhci_msm 7824900.sdhci: No vmmc regulator found 
 +[    6.630586] sdhci_msm 7824900.sdhci: No vqmmc regulator found 
 +[    6.674272] mmc0: SDHCI controller on 7824900.sdhci [7824900.sdhci] using ADMA 64-bit 
 +[    6.694424]  
 +[    6.694424] Version Rollback Feature Disabled 
 +[    6.699015] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000 
 +008b04000 
 +[    6.703233] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000 
 +008b04000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000008b04 
 +000 
 +[    6.723341] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000 
 +008b04000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000008b04 
 +000 
 +[    6.735184] sps:BAM 0x0000000008b04000 is registered.[    6.745177] remoteproc remotep 
 +roc0: releasing cd00000.qcom_q6v5_wcss 
 +[    6.748467] SPMI VADC - Min ch: 0 Max ch: 15 
 +[    6.755698] of_graph_get_next_endpoint(): no port node found in /soc/csr@6001000 
 +[    6.758174] coresight-csr 6001000.csr: CSR initialized 
 +[    6.765662] of_graph_get_next_endpoint(): no port node found in /soc/cti@6010000 
 +[    6.770582] of_graph_get_next_endpoint(): no port node found in /soc/cti@6011000 
 +[    6.778148] of_graph_get_next_endpoint(): no port node found in /soc/cti@6012000 
 +[    6.785507] of_graph_get_next_endpoint(): no port node found in /soc/cti@6013000 
 +[    6.792869] of_graph_get_next_endpoint(): no port node found in /soc/cti@6014000 
 +[    6.800268] of_graph_get_next_endpoint(): no port node found in /soc/cti@6015000 
 +[    6.807640] of_graph_get_next_endpoint(): no port node found in /soc/cti@6016000 
 +[    6.815045] of_graph_get_next_endpoint(): no port node found in /soc/cti@6017000 
 +[    6.822382] of_graph_get_next_endpoint(): no port node found in /soc/cti@6018000 
 +[    6.829781] of_graph_get_next_endpoint(): no port node found in /soc/cti@6019000 
 +[    6.837156] of_graph_get_next_endpoint(): no port node found in /soc/cti@601a000 
 +[    6.844536] of_graph_get_next_endpoint(): no port node found in /soc/cti@601b000 
 +[    6.851896] of_graph_get_next_endpoint(): no port node found in /soc/cti@601c000 
 +[    6.859292] of_graph_get_next_endpoint(): no port node found in /soc/cti@601d000 
 +[    6.866671] of_graph_get_next_endpoint(): no port node found in /soc/cti@601e000 
 +[    6.874032] of_graph_get_next_endpoint(): no port node found in /soc/cti@601f000 
 +[    6.881427] of_graph_get_next_endpoint(): no port node found in /soc/cti@6198000 
 +[    6.889021] of_graph_get_next_endpoint(): no port node found in /soc/cti@6199000 
 +[    6.896336] of_graph_get_next_endpoint(): no port node found in /soc/cti@619a000 
 +[    6.903747] of_graph_get_next_endpoint(): no port node found in /soc/cti@619b000 
 +[    6.911186] of_graph_get_next_endpoint(): no port node found in /soc/cti@610c000 
 +[    6.918525] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x0000000 
 +006044000 
 +[    6.925557] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x0000000 
 +006044000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x0000000006044 
 +000 
 +[    6.942659] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x0000000 
 +006044000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x0000000006044 
 +000 
 +[    6.958536] sps:BAM 0x0000000006044000 is registered.[    6.966234] coresight-tmc 6028 
 +000.tmc: TMC initialized 
 +[    6.970994] coresight-tmc 6027000.tmc: TMC initialized 
 +[    6.976142] coresight-funnel 6021000.funnel: FUNNEL initialized 
 +[    6.981148] coresight-funnel 6100000.funnel: FUNNEL initialized 
 +[    6.986984] coresight-funnel 6120000.funnel: FUNNEL initialized 
 +[    6.992864] coresight-funnel 6130000.funnel: FUNNEL initialized 
 +[    6.998796] coresight-funnel 61a1000.funnel: FUNNEL initialized 
 +[    7.005280] coresight-etm4x 619c000.etm: ETM 4.0 initialized 
 +[    7.010939] coresight-etm4x 619d000.etm: ETM 4.0 initialized 
 +[    7.016905] coresight-etm4x 619e000.etm: ETM 4.0 initialized 
 +[    7.022586] coresight-etm4x 619f000.etm: ETM 4.0 initialized 
 +[    7.027818] coresight-replicator-qcom 6026000.replicator: REPLICATOR 1.0 initialized 
 +[    7.033537] coresight-stm 6002000.stm: STM initialized 
 +[    7.042151] of_graph_get_next_endpoint(): no port node found in /soc/hwevent@6101000 
 +[    7.046000] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized 
 +[    7.054298] fan-gpio soc:fans: gpio_fan_probe success 
 +[    7.061382] antenna-gpio soc:antennas: gpio_fan_probe success 
 +[    7.066391] modem-gpio soc:modem: gpio_fan_probe success 
 +[    7.074396] nf_conntrack version 0.5.0 (6924 buckets, 27696 max) 
 +[    7.077681] ip_tables: (C) 2000-2006 Netfilter Core Team 
 +[    7.083596] NET: Registered protocol family 10 
 +[    7.089238] NET: Registered protocol family 17 
 +[    7.092757] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Upda 
 +te your scripts to load br_netfilter if you need this. 
 +[    7.097202] Bridge firewalling registered 
 +[    7.109923] 8021q: 802.1Q VLAN Support v1.8 
 +[    7.115365] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid fuse count: 4 
 +[    7.117957] pmd9655_s3: supplied by e-smps1-reg 
 +[    7.125296] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bin = 0 
 +[    7.129616] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusing revision = 1 
 +[    7.136248] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc fuse value = 0 
 +[    7.143879] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage boost fuse config =  
 +0 boost = disable 
 +[    7.151422] cpr3_mem_acc_init: apc: not using memory accelerator regulator 
 +[    7.160535] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused      SVS 
 +: open-loop= 704000 uV 
 +[    7.167480] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused      NOM 
 +: open-loop= 808000 uV 
 +[    7.177462] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused    TURBO 
 +: open-loop= 864000 uV 
 +[    7.187272] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_corner: fused   STURBO 
 +: open-loop= 944000 uV 
 +[    7.197146] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused      SVS:  
 +quot[ 7]= 767, quot_offset[ 7]=   0 
 +[    7.206895] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused      NOM:  
 +quot[ 7]= 972, quot_offset[ 7]= 205 
 +[    7.217744] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused    TURBO:  
 +quot[ 7]=1073, quot_offset[ 7]= 100 
 +[    7.228682] cpr4_ipq807x_apss_calculate_target_quotients: apc_corner: fused   STURBO:  
 +quot[ 7]=1226, quot_offset[ 7]= 150 
 +[    7.239742] cpr3_regulator_init_ctrl: apc: Default CPR mode = closed-loop 
 +[    7.251063] qcom,cpr3-npu-regulator a4000.npu-cpr: NPU CPR valid fuse count: 2 
 +[    7.257413] pmd9655_s4: supplied by e-smps1-reg 
 +[    7.264558] cpr3_mem_acc_init: npu: not using memory accelerator regulator 
 +[    7.268854] npu_corner: fused      NOM: open-loop= 776000 uV 
 +[    7.275808] npu_corner: fused    TURBO: open-loop= 832000 uV 
 +[    7.281649] npu_corner: fused      NOM: open-loop= 776000 uV 
 +[    7.287264] npu_corner: fused    TURBO: open-loop= 832000 uV 
 +[    7.292918] npu_corner: Normal and Cold condition init done. Default to normal. 
 +[    7.299694] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 800000 KHz 
 +[    7.305757] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1017 
 +600 KHz 
 +[    7.314416] qcom-q6v5-wcss-pil cd00000.qcom_q6v5_wcss: ssr registeration success qcom_ 
 +q6v5_wcss 
 +[    7.321581] remoteproc remoteproc0: cd00000.qcom_q6v5_wcss is available 
 +[    7.330269] ubi0: attaching mtd12 
 +[    7.544562] ubi0: scanning is finished 
 +[    7.550779] ubi0: attached mtd12 (name "rootfs", size 42 MiB) 
 +[    7.550797] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +[    7.555498] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +[    7.562262] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +[    7.569125] ubi0: good PEBs: 336, bad PEBs: 0, corrupted PEBs: 0 
 +[    7.575893] ubi0: user volume: 2, internal volumes: 1, max. volumes count: 128 
 +[    7.582142] ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence numb 
 +er: 273099923 
 +[    7.589180] ubi0: available PEBs: 108, total reserved PEBs: 228, PEBs reserved for bad 
 + PEB handling: 20 
 +[    7.598127] ubi0: background thread "ubi_bgt0d" started, PID 109 
 +[    7.619118] input: soc:gpio_keys as /devices/platform/soc/soc:gpio_keys/input/input0 
 +[    7.619187] hctosys: unable to open rtc device (rtc0) 
 +[    7.630753] pmd9655_ldo11: disabling 
 +[    7.631286] ALSA device list: 
 +[    7.634571]   No soundcards found. 
 +[    7.639610] VFS: Mounted root (squashfs filesystem) readonly on device 31:18. 
 +[    7.640778] Freeing unused kernel memory: 220K (ffffffc0007e2000 - ffffffc000819000) 
 +[    7.647919] Freeing alternatives memory: 40K (ffffffc000819000 - ffffffc000823000) 
 +[    7.909292] init: Console is alive 
 +[    7.909373] init: - watchdog - 
 +[    7.928794] random: nonblocking pool is initialized 
 +[    8.683951] usbcore: registered new interface driver usbfs 
 +[    8.683992] usbcore: registered new interface driver hub 
 +[    8.688411] usbcore: registered new device driver usb 
 +[    8.694189] Button Hotplug driver version 0.4.1 
 +[    8.702098] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    8.764429] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    8.826336] msm-usb-ssphy-qmp 78000.ssphy: Initializing QMP phy 
 +[    8.833021] msm-usb-ssphy-qmp 78000.ssphy: QMP PHY initialization timeout 
 +[    8.833042] msm-usb-ssphy-qmp 78000.ssphy: USB3_PHY_PCS_STATUS:68686868 
 +[    9.039872] msm-usb-ssphy-qmp 58000.ssphy: Initializing QMP phy 
 +[    9.047170] msm-usb-ssphy-qmp 58000.ssphy: QMP PHY initialization timeout 
 +[    9.047191] msm-usb-ssphy-qmp 58000.ssphy: USB3_PHY_PCS_STATUS:68686868 
 +[    9.253329] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.304420] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.364415] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.425595] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.484410] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.544602] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.604389] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.664780] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 
 +[    9.664809] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 1 
 +[    9.669281] xhci-hcd xhci-hcd.0.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0 
 +x00010010 
 +[    9.676758] xhci-hcd xhci-hcd.0.auto: irq 208, io mem 0x08a00000 
 +[    9.685663] hub 1-0:1.0: USB hub found 
 +[    9.691635] hub 1-0:1.0: 1 port detected 
 +[    9.695335] xhci-hcd xhci-hcd.0.auto: xHCI Host Controller 
 +[    9.699269] xhci-hcd xhci-hcd.0.auto: new USB bus registered, assigned bus number 2 
 +[    9.704609] usb usb2: We don't know the algorithms for LPM for this host, disabling LP 
 +M. 
 +[    9.712304] hub 2-0:1.0: USB hub found 
 +[    9.720456] hub 2-0:1.0: 1 port detected 
 +[    9.724148] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller 
 +[    9.728096] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 3 
 +[    9.733497] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci version 0x110 quirks 0 
 +x00010010 
 +[    9.740959] xhci-hcd xhci-hcd.1.auto: irq 209, io mem 0x08c00000 
 +[    9.749817] hub 3-0:1.0: USB hub found 
 +[    9.755873] hub 3-0:1.0: 1 port detected 
 +[    9.759528] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller 
 +[    9.763504] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 4 
 +[    9.768826] usb usb4: We don't know the algorithms for LPM for this host, disabling LP 
 +M. 
 +[    9.776543] hub 4-0:1.0: USB hub found 
 +[    9.784692] hub 4-0:1.0: 1 port detected 
 +[    9.788686] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.845559] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.904405] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[    9.964452] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   10.014218] usb 1-1: new high-speed USB device number 2 using xhci-hcd 
 +[   10.912071] init: - preinit - 
 +ignore preinit load_wifi_board_bin 
 +Press the [f] key and hit [enter] to enter failsafe mode 
 +Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level 
 +Before mount_root 
 +mounting /dev/root 
 +cp: can't stat '/tmp/log_export_tmp/*': No such file or directory 
 +After mount_root 
 +[   14.254950] procd: - early - 
 +[   14.254987] procd: - watchdog - 
 +[   14.878749] procd: - ubus - 
 +[   15.880871] procd: - init - 
 +Please press Enter to activate this console. 
 +[   15.926739] ubi1: attaching mtd15 
 +[   15.972067] ubi1: scanning is finished 
 +[   15.978201] ubi1: attached mtd15 (name "factory_data", size 9 MiB) 
 +[   15.978220] ubi1: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +[   15.983261] ubi1: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +[   15.990131] ubi1: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +[   15.996981] ubi1: good PEBs: 72, bad PEBs: 0, corrupted PEBs: 0 
 +[   16.003744] ubi1: user volume: 1, internal volumes: 1, max. volumes count: 128 
 +[   16.009657] ubi1: max/mean erase counter: 11/6, WL threshold: 4096, image sequence num 
 +ber: 1097309032 
 +[   16.016950] ubi1: available PEBs: 0, total reserved PEBs: 72, PEBs reserved for bad PE 
 +B handling: 20 
 +[   16.026245] ubi1: background thread "ubi_bgt1d" started, PID 214 
 +ubi_factory_data found, mounting... 
 +[   16.055184] UBIFS (ubi1:0): background thread "ubifs_bgt1_0" started, PID 221 
 +[   16.090330] UBIFS (ubi1:0): recovery needed 
 +[   16.170166] UBIFS (ubi1:0): recovery completed 
 +[   16.170216] UBIFS (ubi1:0): UBIFS: mounted UBI device 1, volume 0, name "ubi_factory_d 
 +ata" 
 +[   16.173495] UBIFS (ubi1:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes 
 +: 2048 bytes/2048 bytes 
 +[   16.181753] UBIFS (ubi1:0): FS size: 4825088 bytes (4 MiB, 38 LEBs), journal size 1142 
 +785 bytes (1 MiB, 9 LEBs) 
 +[   16.191732] UBIFS (ubi1:0): reserved for root: 0 bytes (0 KiB) 
 +[   16.201621] UBIFS (ubi1:0): media format: w4/r0 (latest is w4/r0), UUID 555FE482-AC27- 
 +41A3-A0C3-47CC50ED88FA, small LPT model 
 +[   16.213139] ubi2: attaching mtd16 
 +[   16.304218] ubi2: scanning is finished 
 +[   16.310419] ubi2: attached mtd16 (name "runtime_data", size 17 MiB) 
 +[   16.310439] ubi2: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +[   16.315490] ubi2: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +[   16.322424] ubi2: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +[   16.329287] ubi2: good PEBs: 136, bad PEBs: 0, corrupted PEBs: 0 
 +[   16.336055] ubi2: user volume: 1, internal volumes: 1, max. volumes count: 128 
 +[   16.342304] ubi2: max/mean erase counter: 15/8, WL threshold: 4096, image sequence num 
 +ber: 728371170 
 +[   16.349342] ubi2: available PEBs: 0, total reserved PEBs: 136, PEBs reserved for bad P 
 +EB handling: 20 
 +[   16.358637] ubi2: background thread "ubi_bgt2d" started, PID 227 
 +ubi_runtime_data found, mounting... 
 +[   16.374436] UBIFS (ubi2:0): background thread "ubifs_bgt2_0" started, PID 234 
 +[   16.407601] UBIFS (ubi2:0): recovery needed 
 +[   16.496562] UBIFS (ubi2:0): recovery completed 
 +[   16.496628] UBIFS (ubi2:0): UBIFS: mounted UBI device 2, volume 0, name "ubi_runtime_d 
 +ata" 
 +[   16.499899] UBIFS (ubi2:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes 
 +: 2048 bytes/2048 bytes 
 +[   16.508153] UBIFS (ubi2:0): FS size: 9904128 bytes (9 MiB, 78 LEBs), journal size 1777 
 +664 bytes (1 MiB, 14 LEBs) 
 +[   16.518134] UBIFS (ubi2:0): reserved for root: 0 bytes (0 KiB) 
 +[   16.528364] UBIFS (ubi2:0): media format: w4/r0 (latest is w4/r0), UUID EB7DF1AC-F4C9- 
 +4CA1-A141-55D4B7DCC73E, small LPT model 
 + WIFI FW mount is successful 
 +[   17.073271] use sfe_cm.ko and sfe_drv_init do nothing 
 +[   17.081485] cfg80211: World regulatory domain updated: 
 +[   17.081509] cfg80211:  DFS Master region: unset 
 +[   17.085535] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_ei 
 +rp), (dfs_cac_time) 
 +[   17.090119] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A 
 +
 +[   17.099823] cfg80211:   (2457000 KHz - 2482000 KHz @ 20000 KHz, 92000 KHz AUTO), (N/A, 
 + 2000 mBm), (N/A) 
 +[   17.107494] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (N/A, 2000 mBm), (N/A 
 +
 +[   17.116861] cfg80211:   (5170000 KHz - 5250000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A 
 +, 2000 mBm), (N/A) 
 +[   17.124856] cfg80211:   (5250000 KHz - 5330000 KHz @ 80000 KHz, 160000 KHz AUTO), (N/A 
 +, 2000 mBm), (0 s) 
 +[   17.134573] cfg80211:   (5490000 KHz - 5730000 KHz @ 160000 KHz), (N/A, 2000 mBm), (0  
 +s) 
 +[   17.144027] cfg80211:   (5735000 KHz - 5835000 KHz @ 80000 KHz), (N/A, 2000 mBm), (N/A 
 +
 +[   17.152105] cfg80211:   (57240000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 0 mBm), (N/ 
 +A) 
 +[   17.298616] ssdk_switch_device_num_init[1084]:INFO:ess-switch dts node number: 1 
 +[   17.302311] ssdk_dt_get_switch_node[919]:INFO:ess-switch DT exist! 
 +[   17.309316] ssdk_dt_parse_access_mode[820]:INFO:switch_access_mode: local bus 
 +[   17.315481] ssdk_dt_parse_access_mode[833]:INFO:switchreg_base_addr: 0x3a000000 
 +[   17.322595] ssdk_dt_parse_access_mode[834]:INFO:switchreg_size: 0x1000000 
 +[   17.329885] ssdk_dt_parse_mac_mode[288]:INFO:mac mode = 0x0 
 +[   17.336310] ssdk_dt_parse_mac_mode[297]:INFO:mac mode1 = 0xf 
 +[   17.341863] ssdk_dt_parse_mac_mode[306]:INFO:mac mode2 = 0xf 
 +[   17.347519] ssdk_dt_parse_phy_info[639]:INFO:[PORT 5] port_mac_sel = QGMAC_PORT 
 +[   17.353163] ssdk_dt_parse_uniphy[325]:INFO:ess-uniphy DT exist! 
 +[   17.360626] ssdk_plat_init start 
 +[   17.435858] ssdk_gcc_clock_init[629]:INFO:SSDK gcc clock init successfully! 
 +[   17.438980] ssdk_probe[1923]:INFO:ess_rst doesn't exist! 
 +[   17.446092] HPPE initializing... 
 +[   17.446964] ssdk_phy_driver_init[299]:INFO:dev_id = 0, phy_adress = 0, phy_id = 0xffff 
 +ffff phytype doesn't match 
 +[   17.454346] ssdk_phy_driver_init[299]:INFO:dev_id = 0, phy_adress = 1, phy_id = 0xffff 
 +ffff phytype doesn't match 
 +[   17.464487] ssdk_phy_driver_init[299]:INFO:dev_id = 0, phy_adress = 2, phy_id = 0xffff 
 +ffff phytype doesn't match 
 +[   17.474639] ssdk_phy_driver_init[299]:INFO:dev_id = 0, phy_adress = 3, phy_id = 0xffff 
 +ffff phytype doesn't match 
 +[   17.484817] qca803x_phy_api_ops_init[2180]:INFO:qca probe qca803x phy driver succeeded 
 +
 +[   17.495373] qca808x_phy_api_ops_init[2155]:INFO:qca probe qca808x phy driver succeeded 
 +
 +[   17.504170] qca808x_ptp_register[1410]:INFO:qca808x ptp clock registered 
 +[   17.510927] regi_init[3374]:INFO:Initializing HPPE!! 
 +[   17.734205] ssdk_ppe_reset_init[860]:INFO:ppe reset successfully! 
 +[   17.740152] qca_hppe_tdm_hw_init[674]:INFO:tdm setup num=96 
 +[   17.743526] qca_hppe_portctrl_hw_init[105]:INFO:Hawkeye PPE port initializing 
 +[   20.121261] ssdk_switch_register[1632]:INFO:Chip version 0x1500 
 +[   20.124241] qca_link_polling_select[1282]:INFO:link-polling-required node does not exi 
 +st 
 +[   20.130479] ssdk_switch_register[1657]:INFO:polling is selected 
 +[   20.138207] regi_init[3378]:INFO:Initializing HPPE Done!! 
 +[   20.143109] regi_init[3439]:INFO:qca-ssdk module init succeeded! 
 +[   20.149572] tun: Universal TUN/TAP device driver, 1.6 
 +[   20.151576] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com> 
 +[   20.158534] EDMA ver 1 hw init 
 +[   20.162820] EDMA HW Reset completed succesfully 
 +[   20.165716] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7) 
 +[   20.170065] RxDesc:1 (15-15) RxFill:1 (7-7) 
 +[   20.175793] GMAC1(ffffffc039c95880) Invalid MAC@ - using 4e:c7:5c:67:64:44 
 +[   20.179513] libphy: PHY 90000.mdio:00 not found 
 +[   20.186434] nss-dp: probe of 3a001000.dp1 failed with error -14 
 +[   20.190842] GMAC2(ffffffc039c95880) Invalid MAC@ - using 92:78:26:ac:59:bc 
 +[   20.196754] libphy: PHY 90000.mdio:01 not found 
 +[   20.203663] nss-dp: probe of 3a001200.dp2 failed with error -14 
 +[   20.208121] GMAC3(ffffffc039c95880) Invalid MAC@ - using c2:7a:99:cf:86:6d 
 +[   20.214014] libphy: PHY 90000.mdio:02 not found 
 +[   20.220946] nss-dp: probe of 3a001400.dp3 failed with error -14 
 +[   20.225394] GMAC4(ffffffc039c95880) Invalid MAC@ - using 52:cf:f0:55:6b:32 
 +[   20.231289] libphy: PHY 90000.mdio:03 not found 
 +[   20.238221] nss-dp: probe of 3a001600.dp4 failed with error -14 
 +[   20.242660] GMAC5(ffffffc039c95880) Invalid MAC@ - using 4a:0a:3c:22:81:37 
 +[   20.450376] GMAC6(ffffffc039c9a880) Invalid MAC@ - using f6:97:bf:07:c2:59 
 +[   20.524889] ********************************************************** 
 +[   20.524913] * NSS Data Plane driver 
 +[   20.530293] ********************************************************** 
 +[   20.535616] l2tp_core: L2TP core driver, V2.0 
 +[   20.540791] l2tp_netlink: L2TP netlink interface 
 +[   20.665667] nss_driver - fw of size 743024  bytes copied to load addr: 40000000, nss_i 
 +d : 0 
 +[   20.667337] Supported Frequencies -  
 +[   20.672813] 748.8 MHz 1.4976 GHz  
 +[   20.678794] 1.6896 GHz [   20.679839]  
 +[   20.682202] ffffffbffc597100: set sdma ffffffc03ba31e00 
 +[   20.683726] ffffffbffc597100: meminfo init succeed 
 +[   20.717638] node size 2 # items 4 
 +[   20.717660] memory: 40000000 1073741824 (avl 938553344) items 4 active_cores 2 
 +[   20.719997] addr/size storage words 2 2 # words 4 in DTS, ddr size 1000000 
 +[   20.727094] ffffffbffc597100: nss core 0 booted successfully 
 +[   20.734777] nss_driver - fw of size 289420  bytes copied to load addr: 40800000, nss_i 
 +d : 1 
 +[   20.740574] Supported Frequencies -  
 +[   20.747803] 748.8 MHz 1.4976 GHz  
 +[   20.753767] 1.6896 GHz [   20.754813]  
 +[   20.757183] ffffffbffc59e680: set sdma ffffffc03a528a00 
 +[   20.758705] ffffffbffc59e680: meminfo init succeed 
 +[   20.765065] sit: IPv6 over IPv4 tunneling driver 
 +[   20.767053] node size 2 # items 4 
 +[   20.767056] memory: 40000000 1073741824 (avl 938553344) items 4 active_cores 2 
 +[   20.767087] addr/size storage words 2 2 # words 4 in DTS, ddr size 1000000 
 +[   20.767095] ffffffbffc59e680: nss core 1 booted successfully 
 +[   20.791635] nat46: module (version 8ff2ae59ec9840a7b8b45f976c51cae80abe0226) loaded. 
 +[   20.800437] tipc: Activated (version 2.0.0) 
 +[   20.804000] NET: Registered protocol family 30 
 +[   20.808036] tipc: Started in single node mode 
 +[   20.812841] gre: GRE over IPv4 demultiplexor driver 
 +[   20.817518] ip_gre: GRE over IPv4 tunneling driver 
 +[   20.822824] ip6_gre: GRE over IPv6 tunneling driver 
 +[   20.828320] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011) 
 +[   20.843347] ip6_tables: (C) 2000-2006 Netfilter Core Team 
 +[   20.848091] openvswitch: Open vSwitch switching datapath 
 +[   20.851584] QCA Hy-Fi multicast installation successfully 
 +[   20.856953] PPP generic driver version 2.4.2 
 +[   20.859917] nss_lag_init[354]:LAG Manager Installed 
 +[   20.864162] NET: Registered protocol family 24 
 +[   20.869150] PPTP driver version 0.8.5 
 +[   20.877102] diag: IPC Logging disabled 
 +[   20.887503] TRACK: P[0]      PMask[4] 
 +[   20.887523] TRACK: P[1]      PMask[4] 
 +[   20.889787] TRACK: P[2]      PMask[4] 
 +[   20.895158] TRACK: P[3]      PMask[4] 
 +[   20.896257] nik 4097 info->svc_id 
 +[   20.902610] QCA multicast snooping installed successfully 
 +[   20.903510] <NSS-CRYPTO>:module loaded Build_ID - 04/10/23, 21:12:08 SoC=ipq807x_64 
 +[   20.911923] cannot find nss-macsec0 node 
 +[   20.915626] cannot find nss-macsec1 node 
 +[   20.919673] cannot find nss-macsec2 node 
 +[   20.923553] nss_macsec init success 
 +[   20.929554] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   20.994971] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.067009] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.154844] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.227321] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.294910] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.355276] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.414834] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.475341] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.544804] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.605119] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.664771] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.725247] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.785175] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.844737] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.905193] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   21.974781] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.035225] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.094757] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.155212] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.214776] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.274702] u32 classifier 
 +[   22.274717]     Performance counters on 
 +[   22.276293]     input device check on 
 +[   22.280042]     Actions configured 
 +[   22.284472] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.344760] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.404792] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.465155] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.524689] Mirror/redirect action on 
 +[   22.525251] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.584782] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.645186] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.704794] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.765253] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.824764] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.884836] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   22.945246] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.004822] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.065298] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.124822] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.185261] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.244812] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.305259] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.364810] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.425233] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.494840] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.555219] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.615253] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.674816] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.734822] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.795259] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.855261] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.914830] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   23.975257] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.034835] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.094835] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.155432] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.214884] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.275272] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.334865] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.395258] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.454861] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.515298] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.574858] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.635343] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.694854] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.755248] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.814879] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.876211] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.925030] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   24.995221] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.064959] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.125926] mhi_init Quectel_Linux_PCIE_MHI_Driver_V1.3.0.13 
 +[   25.126051] rmnet_nss_init(): initializing rmnet_nss 
 +[   25.130840] mhi_pci_probe pci_dev->name = 0000:01:00.0, domain=0, bus=1, slot=0, vendo 
 +r=17CB, device=0306 
 +[   25.135803] mhi_q 0000:01:00.0: BAR 0: assigned [mem 0x20300000-0x20300fff 64bit] 
 +[   25.145154] mhi_q 0000:01:00.0: enabling device (0000 -> 0002) 
 +[   25.153910] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.215521] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.274869] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.334768] device recognition register succes 
 +[   25.335412] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.366165] [I][mhi_netdev_enable_iface] Prepare the channels for transfer 
 +[   25.396637] [I][mhi_netdev_enable_iface] Exited. 
 +[   25.397025] rmnet_vnd_register_device(rmnet_mhi0.1)=0 
 +[   25.400987] net rmnet_mhi0 rmnet_mhi0.1: NSS context created 
 +[   25.405370] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.485089] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.545388] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.604915] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.665411] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.725312] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   25.786144] Ebtables v2.0 registered 
 +[   25.787644] l2tp_ppp: PPPoL2TP kernel driver, V2.0 
 +[   25.938326] Netfilter messages via NETLINK v0.30. 
 +[   25.941881] usbcore: registered new interface driver usbserial 
 +[   25.942038] usbcore: registered new interface driver usbserial_generic 
 +[   25.947856] usbserial: USB Serial support registered for generic 
 +[   25.961207] xt_time: kernel timezone is -0000 
 +[   25.962070] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   26.047647] ctnetlink v0.93: registering with nfnetlink. 
 +[   26.052339] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +[   26.105538] usbcore: registered new interface driver option 
 +[   26.105586] usbserial: USB Serial support registered for GSM modem (1-port) 
 +[   26.110033] option 1-1:1.0: GSM modem (1-port) converter detected 
 +[   26.117006] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB0 
 +[   26.123181] option 1-1:1.1: GSM modem (1-port) converter detected 
 +[   26.130064] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB1 
 +[   26.136096] option 1-1:1.2: GSM modem (1-port) converter detected 
 +[   26.142861] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB2 
 +[   26.148947] option 1-1:1.3: GSM modem (1-port) converter detected 
 +[   26.155738] usb 1-1: GSM modem (1-port) converter now attached to ttyUSB3 
 +[   26.162833] dwc3_qcom: exports duplicate symbol msm_data_fifo_config (owned by dwc3_of 
 +_simple) 
 +reloadprofile() begin 
 +reloadprofile() end 
 +==reloadConfig()== begin 
 +  ==loadDefaultConfig()== begin 
 +  ==loadConfigToFiles(): default-config to /tmp/defaultconfig== begin 
 +  ==loadConfigToFiles()== end 
 +  ==set_usrconfig_info()== start 
 +  ==set_usrconfig_info()== end 
 +  ==loadDefaultConfig()== end 
 +  ==loadConfigToFiles(): user-config to /tmp/userconfig== begin 
 +  ==loadConfigToFiles()== end 
 +==reloadConfig()===== no need to load emmc-config 
 +  ==loadConfigToFiles(): device-config to /tmp/userconfig== begin 
 +  ==loadConfigToFiles()== end 
 +  ** user-config loaded ** 
 +==reloadConfig()== end 
 +merge_extra_config() begin 
 +  ==loadConfigToFiles(): default-config to /tmp/merge== begin 
 +  ==loadConfigToFiles()== end 
 +mergeconfigbycountry() begin 
 +mergeconfigbycountry() country US 
 +mergeconfigbycountry() end 
 +merge_extra_config() end 
 +phylink down boot 1 
 +[   27.491774] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 
 +[   27.502940] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready 
 +[   27.715276] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready 
 +acfg_tool: Issuing blocking call to wait for events 
 +[   28.479951] ECM init 
 +[   28.480004] ECM database jhash random seed: 0x2fe6736c 
 +[   28.482051] ECM init complete 
 +[   28.494704] ECM OVS Test INIT 
 +switch: reset_wan_vlan: select p4: 1 
 +switch: reset_wan_vlan: select p5: 2 
 +[   30.076407] IPv6: ADDRCONF(NETDEV_UP): br-wan: link is not ready 
 +[   30.122680] Load statistics in Router Mode 
 +[   30.122763] module inited 
 +to down eth0/1 after netfid 
 +[   30.296120] ext_antenna_en_store ==>gpio 56 value 0  buf 0 
 +[   30.296120]   
 +[awnd_update_wifi_tpie:911]: config_generic failed awnd_update_tpie(): ath02[-1] 
 +  
 +[awnd_update_wifi_tpie:911]: config_generic failed awnd_update_tpie(): ath12[-1] 
 +  
 +apsd: start apsd 
 +whc (repacd): Start: 
 +whc (repacd): GatewayConnectedMode(gwcon_mode): CAP 
 +whc (repacd): TrafficSeparationEnabled(traffic_separation_enabled):
 +whc (repacd): get whc_wifi_config_lock 
 +whc (repacd): starting WHC auto-configuration 
 +whc (repacd): Managed network: lan 
 +whc (repacd): Device type: AP 
 +whc (repacd): Sysmode: Router 
 +whc (repacd): the guest network version of the device is latest, we do nothing(uci_revert 
 +_state wifi guest enable) 
 +whc (repacd): stop repacd-run.sh 
 +whc (repacd): Start: 
 +whc (repacd): GatewayConnectedMode(gwcon_mode): CAP 
 +whc (repacd): TrafficSeparationEnabled(traffic_separation_enabled):
 +whc (repacd): wifi config change(is different from /var/state/wifi). wifi_cmd:reload wifi 
 +1,wifi0 
 +whc (repacd): Using SON mode for GW Connected AP 
 +whc (repacd): __repacd_restart_dependencies: Restarting network stack... 
 +wifi reload 
 +[   32.429779] IPv6: ADDRCONF(NETDEV_UP): br-wan: link is not ready 
 +[   32.431707] [I][mhi_netdev_open] Opened net dev interface 
 +[   32.435036] IPv6: ADDRCONF(NETDEV_UP): rmnet_mhi0: link is not ready 
 +[   32.441973] 8021q: VLANs not supported on rmnet_mhi0 
 +[   32.446890] IPv6: ADDRCONF(NETDEV_UP): rmnet_mhi0.1: link is not ready 
 +[   32.455784] device eth0 entered promiscuous mode 
 +[   32.458065] IPv6: ADDRCONF(NETDEV_UP): br-lan: link is not ready 
 +[   32.465207] device eth1 entered promiscuous mode 
 +[ vlan_set_device_state ] 165: --------------->Create VID='1' 
 +  
 +qcawifi qcawificfg80211 disable radio wifi1 
 +qcawifi qcawificfg80211 disable radio wifi0 
 +qcawifi qcawificfg80211 disable radio wifi2 
 +qcawifi qcawificfg80211: enable radio wifi1 
 +echo -n /ini > /sys/module/firmware_class/parameters/path 
 +update_ini_file cfg80211_config=1 
 +update_ini_file qwrap_enable=0 
 +update_ini_file nss_wifi_olcfg=3 
 +update_ini_file rx_hash=0 
 +sysctl -w dev.nss.n2hcfg.extra_pbuf_core0=9000000 
 +[   33.534121] configuring additional NSS pbufs 
 +[   33.560538] additional pbufs of size 9003008 got added to NSS 
 +sysctl -w dev.nss.n2hcfg.n2h_high_water_core0=67392 
 +sysctl -w dev.nss.n2hcfg.n2h_wifi_pool_buf=40960 
 +insmod mem_manager 
 +[   33.584124] mem_manager: module license 'Proprietary' taints kernel. 
 +[   33.584152] Disabling lock debugging due to kernel taint 
 +insmod qdf mem_debug_disabled=1 
 +insmod asf 
 +insmod umac enable_pktlog_support=1 
 +[   33.952252] wlan: [2582:E:CONFIG] cfg_uint_item_handler: 171: gScanProbeRepeatTime=50  
 +- Out of range [0, 30]; Using 50 
 +insmod qca_spectral 
 +echo 1 > /sys/module/cnss2/parameters/cold_boot_support 
 +echo 1 > /sys/module/cnss2/parameters/daemon_support 
 +*****starting cnssdaemon***** 
 +*********initiating cold boot calibration************* 
 +insmod qca_ol testmode=7 
 +echo -1000 > /proc/`pgrep cnssdaemon`/oom_score_adj 
 +*****cnssdaemon pid=2617********* 
 +insmod wifi_3_0 
 +[   34.210926] wlan: [2623:I:ANY] =======ol_if_register_wifi3_0========== 
 +[   34.210926]  
 +[   34.210962] wlan: [2623:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered f 
 +or target_type:1 with soc_ops:ffffffbffd649a40 
 +[   34.217870] wlan: [2623:I:ANY] ol_ath_wifi_ssr: 256: ol_ath_wifi_ssr: SSR event 2 bus_ 
 +type 1 
 +[   34.229930] remoteproc remoteproc0: powering up cd00000.qcom_q6v5_wcss 
 +[   34.248883] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668 
 +[   35.215357] remoteproc remoteproc0: remote processor cd00000.qcom_q6v5_wcss is now up 
 +[   35.215421] wlan: [2623:I:ANY] ol_ath_wifi_ssr: 256: ol_ath_wifi_ssr: SSR event 3 bus_ 
 +type 1 
 +[   35.215824] rpmsg_dev_probe: No pm domain 
 +[   35.215975] rpmsg_dev_probe: No pm domain 
 +[   35.216853] cnss: QMI WLFW service connected, state: 0x1 
 +[   35.216998] cnss: device_id : 65534 mem mode : [0] 
 +[   35.217086] diag: In diag_send_feature_mask_update, control channel is not open, p: 2, 
 + ffffffbffc9dacc8 
 +[   35.218749] cnss: Target capability: chip_id: 0x0, chip_family: 0x0, board_id: 0xff, s 
 +oc_id: 0xffffffff, fw_version: 0x220604a5, fw_build_timestamp: 2021-08-12 01:51, otp_vers 
 +ion: 0x0 eeprom_caldata_read_timeout 0s 
 +[   35.218757] cnss: Downloading BDF: bdwlan.bin, size: 64 
 +[   35.218762] cnss: No board_id entry in device tree 
 +[   35.219162] cnss: BDF location : 0x4b0c0000 
 +[   35.219167] cnss: BDF IPQ8074/bdwlan.bin size 131072 
 +[   35.219382] cnss: Downloading BDF: caldata.bin, size: 64 
 +[   35.219801] cnss: per device BDF location : 0x4b0e0000 
 +[   35.219886] cnss: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000 
 +[   35.306486] wlan: [2623:I:ANY] ol_ath_check_fw_ready: 614: Waiting for FW ready device 
 + fffe 
 +[   35.313326] wlan: [2623:I:ANY] ol_ath_check_fw_ready: 624: FW ready received for devic 
 +e fffe 
 +[   35.322423] wlan: [2623:I:ANY] pld_ahb_wlan_enable: 691: cnss_mode: Cold boot calibrat 
 +ion 
 +[   35.406828] wlan: [2623:I:ANY] Coldboot calibration wait started 
 +[   35.406828]  
 +not found in config 
 +echo 0 to init 
 +===parental_control_avira=== no need to start 
 +[   36.186999] mode:0 
 +[ 3366(lan)] [smartip_get_cfg 166] key:gw value:192.168.68.1 
 +  
 +[ 3366(lan)] [smartip_get_cfg 166] key:lanip value:192.168.68.1 
 +  
 +[ 3366(lan)] [smartip_get_cfg 166] key:lantype value:1 
 +  
 +GMT-12:00        
 +[ 3366(lan)] [smartip_get_cfg 166] key:mask value:255.255.252.0 
 +  
 +false 0 
 +[ 3366(lan)] [smartip_init_dhcp_hook_socket 2329] create dhcp ho[   36.757355] g_back_dev 
 +_num:16 
 +ok success 
 +  
 +[ 3366(lan)] [smartip_start_drop_dhcp_pkg 2215] start select dhcp package! 
 +  
 +[ 3366(lan)] [smartip_check_status_Router_mode 1719] new dnsServer is 0xc0a84401 0x0 
 +  
 +[ 3366(lan)] [smartip_notify_lan_update 1320] Notify the lan ip changed. 
 +  
 +[ 3366(lan)] [smartip_update_lanip 593] config IP:  ifconfig br-lan 192.168.68.1 netmask  
 +255.255.252.0 
 +  
 +[ 3366(lan)] [smartip_update_lanip 604] route del default dev br-lan 
 +  
 +[ 3366(lan)] [smartip_update_lanip 622] restart miniupnpd 
 +  
 +[ 3623(lan)] [smartip_call_hotplug_ip 2032] Send Message -- TYPE:lan, EVENT:UPDATE 
 +  
 +[ 3669(lan)] [smartip_call_hotplug_ip 2032] Send Message -- TYPE:lan, EVENT:FAPIPUPDATE 
 +  
 +IPConflict2 mask:22 lan_addr:192.168.68.1 mask_str:255.255.252.0 
 +IPConflict2 mask:22 
 +IPConflict2 old_mask:255.255.252.0 old_ip:192.168.68.1 
 +[   37.027652] mode:0 
 +[ 3366(lan)] [smartip_update_lanip 634] restart domain_login 
 +  
 +[ 3366(lan)] [smartip_start_process 366] start udhcpd 
 +  
 +[   38.566713] Ebtables v2.0 unregistered 
 +[ flowstat_get_wwan_tx_rx_statistics ] 136: Get Rx/Tx flow from qmi failed!  
 +[   41.107046] wlan: [2623:I:ANY] Coldboot calibration wait ended 
 +[   41.107046]  
 +[   41.108717] wlan: [2623:I:ANY] ol_ath_do_cold_boot_calibration: 598: Coldboot calib su 
 +ccessful: radio_id 0x65534 
 +[   41.108777] cnss: QMI WLFW service disconnected, state: 0x6 
 +[   41.124118] wlan: [2623:I:ANY] init_ath_pci_3_0: 179: 6ath_ol_pci_wifi3.0 :  (Atheros/ 
 +multi-bss) 
 +[   41.134504] wlan: [3807:I:ANY] ol_ath_wifi_ssr: 256: ol_ath_wifi_ssr: SSR event 0 bus_ 
 +type 1 
 +rmmod wifi_3_0 
 +[   41.163768] remoteproc remoteproc0: stopped remote processor cd00000.qcom_q6v5_wcss 
 +[   41.163817] wlan: [3807:I:ANY] ol_ath_wifi_ssr: 256: ol_ath_wifi_ssr: SSR event 1 bus_ 
 +type 1 
 +rmmod qca_ol 
 +insmod qca_ol 
 +insmod wifi_3_0 
 +[   41.299397] wlan: [3815:I:ANY] =======ol_if_register_wifi3_0========== 
 +[   41.299397]  
 +[   41.299433] wlan: [3815:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered f 
 +or target_type:1 with soc_ops:ffffffbffd897a40 
 +[   41.306266] wlan: [3815:I:ANY] ol_ath_wifi_ssr: 256: ol_ath_wifi_ssr: SSR event 2 bus_ 
 +type 1 
 +[   41.318385] remoteproc remoteproc0: powering up cd00000.qcom_q6v5_wcss 
 +[   41.327102] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw.mdt, size 668 
 +[   41.684235] remoteproc remoteproc0: remote processor cd00000.qcom_q6v5_wcss is now up 
 +[   41.684303] wlan: [3815:I:ANY] ol_ath_wifi_ssr: 256: ol_ath_wifi_ssr: SSR event 3 bus_ 
 +type 1 
 +[   41.684685] rpmsg_dev_probe: No pm domain 
 +[   41.684857] rpmsg_dev_probe: No pm domain 
 +[   41.685472] cnss: QMI WLFW service connected, state: 0x1 
 +[   41.685628] cnss: device_id : 65534 mem mode : [0] 
 +[   41.695764] cnss: Target capability: chip_id: 0x0, chip_family: 0x0, board_id: 0xff, s 
 +oc_id: 0xffffffff, fw_version: 0x220604a5, fw_build_timestamp: 2021-08-12 01:51, otp_vers 
 +ion: 0x0 eeprom_caldata_read_timeout 0s 
 +[   41.695772] cnss: Downloading BDF: bdwlan.bin, size: 64 
 +[   41.695777] cnss: No board_id entry in device tree 
 +[   41.696164] cnss: BDF location : 0x4b0c0000 
 +[   41.696165] cnss: BDF IPQ8074/bdwlan.bin size 131072 
 +[   41.696392] cnss: Downloading BDF: caldata.bin, size: 64 
 +[   41.696749] cnss: per device BDF location : 0x4b0e0000 
 +[   41.696846] cnss: CALDATA IPQ8074/caldata.bin size 131072 offset 0x20000 
 +[   41.765976] wlan: [3815:I:ANY] ol_ath_check_fw_ready: 614: Waiting for FW ready device 
 + fffe 
 +[   41.772814] wlan: [3815:I:ANY] ol_ath_check_fw_ready: 624: FW ready received for devic 
 +e fffe 
 +[   41.781514] wlan: [3815:I:ANY] pld_ahb_wlan_enable: 699: cnss_mode: Mission mode  
 +[   41.798345] wlan: [3815:I:ANY] qca_napi_create: 364: qca_napi_create: napi instance 0  
 +created on pipe 4 
 +[   41.798532] wlan: [3815:I:ANY] __ol_ath_attach: 3922: Allocated soc ffffffc031180880 
 +[   41.824310] wlan: [3815:E:CONFIG] cfg_uint_item_handler: 171: dp_int_timer_threshold_t 
 +x=1000 - Out of range [8, 100]; Using 1000 
 +[   41.824438] wlan: [3815:E:CONFIG] cfg_uint_item_handler: 171: dp_rxdma_monitor_buf_rin 
 +g=8192 - Out of range [16, 4096]; Using 2048 
 +[   41.834959] wlan: [3815:E:CONFIG] cfg_uint_item_handler: 171: dp_rxdma_monitor_dst_rin 
 +g=8192 - Out of range [48, 4096]; Using 1024 
 +[   41.846666] wlan: [3815:I:ANY] osif_nss_wifi_soc_setup: 170: nss-wifili: Could not set 
 + nss_cfg due to Invalid HW mode 7 
 +[   41.858212] wlan: [3815:I:ANY] osif_nss_wifi_soc_setup: 204: nss register id -1 nss co 
 +nfig 3 Target Type 18  
 +[   41.868902] wlan: [3815:I:ANY] __ol_ath_attach: 4129: dev name soc0 
 +[   41.879110] wlan: [3815:I:ANY] ol_ath_soc_attach: 7124: WMI attached. wmi_handle fffff 
 +fc034e57400  
 +[   41.885027] wlan: [3815:I:ANY] htc_wmi_init: 6134: htc_wmi_init() HT Create . ffffffc0 
 +338dc000 
 +[   41.893964] wlan: [3815:I:ANY] htc_wmi_init: 6141: htc_wmi_init() Skipping BMI Done.  
 +[   41.902564] wlan: [3815:I:ANY] htc_wmi_init: 6198: [htc_wmi_init:6198] host_enable 0 n 
 +ss_nwifi_offload 0 
 +[   41.913048] wlan: [3815:I:ANY] ol_target_init_complete: 6320: CDP soc attach success 
 +[   41.920020] wlan: [3815:I:ANY] ol_target_init_complete: 6327: Soc attach success NSS c 
 +onfig 0  
 +[   41.927781] wlan: [3815:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle fff 
 +fffc0338dc000, ep 2, value 1 
 +[   41.936197] wlan: [3815:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle fff 
 +fffc0338dc000, ep 3, value 1 
 +[   41.946526] wlan: [3815:I:ANY] htc_set_async_ep: 428: htc_set_async_ep: htc_handle fff 
 +fffc0338dc000, ep 4, value 1 
 +[   41.957172] wlan: [485:I:TIF] init_deinit_populate_hw_mode_capability: 361: Preferred  
 +mode is not set, use mode id 1 
 +[   41.957172]  
 +[   41.967159] wlan: [485:I:TIF] HE_CAP Info = 1a08010d 
 +[   41.979207] wlan: [485:I:TIF] Num HW modes = 1 
 +[   41.984237] wlan: [485:I:TIF] Num PHY = 2 
 +[   41.988490] wlan: [485:I:TIF] Preferred HW Mode = 1 Num Radios = 2 
 +[   41.992574] wlan: [485:I:TIF] init_deinit_add_11ax_modes: 1779: Adding 11ax regulatory 
 + modes, 
 +[   41.998656] wlan: [485:I:TIF] init_deinit_add_11ax_modes: 1783:  phy_id = 0 wireless m 
 +odes = f97f9001 
 +[   42.007251] wlan: [485:I:TIF] init_deinit_add_11ax_modes: 1779: Adding 11ax regulatory 
 + modes, 
 +[   42.016451] wlan: [485:I:TIF] init_deinit_add_11ax_modes: 1783:  phy_id = 1 wireless m 
 +odes = 680680c 
 +[   42.024960] wlan: [485:I:TIF] init_deinit_add_11ax_modes: 1806: hw_mode_id = 1 phy_id  
 += 0 wireless modes = f97f9001 
 +[   42.034159] wlan: [485:I:TIF] init_deinit_add_11ax_modes: 1806: hw_mode_id = 1 phy_id  
 += 1 wireless modes = 680688c 
 +[   42.044582] wlan: [485:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notific 
 +ation: 421: dfs_offload 1 
 +[   42.054740] wlan: [485:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 2850: df 
 +s->dfs_psoc_idx: 0  
 +[   42.064718] wlan: [485:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_agile_soc_obj_init: 2856: df 
 +s_soc_obj->num_dfs_privs: 1  
 +[   42.074643] wlan: [485:I:dfs] WLAN_DEBUG_DFS_ALWAYS : wlan_dfs_pdev_obj_create_notific 
 +ation: 393: Do not allocate DFS object for 2G, pdev_id = 1 
 +[   42.084728] wlan: [485:I:ANY] init_deinit_update_pdev_tgt_info: 1347: pdev id:0 wmi_ha 
 +ndle:ffffffc034e57400 
 +[   42.126670] wlan: [485:I:ANY] init_deinit_update_pdev_tgt_info: 1403: Pdev = 0 Number  
 +of peers = 529 vdevs = 17 
 +[   42.126707] wlan: [485:I:TIF] init_deinit_update_pdev_tgt_info: 1406: CDP PDEV ATTACH  
 +success 
 +[   42.135855] wlan: [485:I:ANY] init_deinit_update_pdev_tgt_info: 1347: pdev id:1 wmi_ha 
 +ndle:ffffffc034d11c00 
 +[   42.152559] wlan: [485:I:ANY] init_deinit_update_pdev_tgt_info: 1403: Pdev = 1 Number  
 +of peers = 529 vdevs = 17 
 +[   42.153795] wlan: [485:I:TIF] init_deinit_update_pdev_tgt_info: 1406: CDP PDEV ATTACH  
 +success 
 +[   42.264304] wlan: [485:I:ANY] copy_fw_abi_version_tlv: 6960: copy_fw_abi_version_tlv:  
 +INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0 
 +[   42.463769] wlan: [485:I:ANY] ready_extract_init_status_tlv: 9002: ready_extract_init_ 
 +status_tlv:
 +[   42.463799] wlan: [485:I:ANY] dp_peer_map_attach_wifi3: 9790: dp_peer_map_attach_wifi3 
 + max_peers 1109, max_ast_index: 4112 
 +[   42.463799]  
 +[   42.471815] wlan: [3815:I:ANY] ol_ath_connect_htc: 1215: WMI is ready 
 +[   42.484179] wlan: [3815:I:ANY] ol_ath_soc_attach: 7215: connect HTC 
 +[   42.490628] wlan: [3815:I:ANY] ol_ath_soc_attach: 7216: bypasswmi : 0 
 +[   42.496716] wlan: [3815:I:ANY] ol_ath_soc_attach: 7290: ol_ath_soc_attach() UMAC attac 
 +h .  
 +[   42.503355] wlan: [3815:I:ANY] __ol_ath_attach: 4242: pdev_netdev name wifi0 
 +[   42.511468] wlan: [3815:I:ANY] __ol_ath_attach: 4289: Skip txrx_pdev_attach_target 
 +[   42.518666] wlan: [3815:I:ANY] __ol_ath_attach: 4315: BURSTING enabled by default 
 +[   42.526092] wlan: [3815:I:ANY] ol_ath_pdev_attach: 9058: interface_id 0 
 +[   42.533595] wlan: [3815:I:TIF] ol_ath_pdev_regdmn_init: 7444:  phy id = 0 Modes suppor 
 +ted 
 +[   42.540022] wlan: [3815:I:TIF] ol_ath_pdev_regdmn_init: 7451:  11b = 0 11g = 0 11a = 1 
 + 11n = 1 11ac = 1 11ax = 1 
 +[   42.548359] wlan: [3815:I:TIF] ol_ath_pdev_regdmn_init: 7460:  Reg cap - phy_id = 0 su 
 +pp_bnd = 2, modes = f97f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4900, hi_5g = 6100 
 +[   42.558611] wlan: [3815:I:ANY] ol_ath_update_wireless_modes: 1344: wireless_modes = f9 
 +7f9001 before update 
 +[   42.572921] wlan: [3815:I:ANY] ol_ath_update_wireless_modes: 1359: Wireless_modes = f9 
 +7f9001 after update 
 +[   42.582660] wlan: [3815:I:ANY] ol_ath_update_ext_caps: 1932: 11ax 5G supported case 
 +[   42.592374] wlan: [3815:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed 
 +[   42.599863] wlan: [3815:I:ANY] acfg_attach: 3519: acfg_attach: 3519: Netlink socket cr 
 +eated:ffffffc02b620400 
 +[   42.606350] wlan: [3815:I:ANY] ol_ath_stats_attach: 2275: periodic_chan_stats:
 +[   42.616734] wlan: [3815:I:ANY] wlan_scan_update_channel_list: 1135: num_chan: 4 
 +[   42.623799] wlan: [0:I:ANY] ol_ath_pdev_attach: 9402: Set global_ic[1], ptr:ffffffbffd 
 +3721e8 
 +[   42.630821] wlan: [0:I:ANY] dp_lag_soc_enable: 102: pdev(ffffffc034d12008) Enabling DB 
 +DC Repeater 1  
 +[   42.639503] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 55: pdev(ffffffc034d12008)  
 +is_primary 1  
 +[   42.648838] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 14623: twt enabl 
 +ed. 
 +[   42.648838]  
 +[   42.650024] wlan: [3815:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 542: cfg block ch 
 +annel list is empty 
 +[   42.650029] wlan: [3815:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3850: pdev_idx =  
 +0 tx_desc_limit = 0 
 +[   42.650043] wlan: [3815:I:ANY] osif_wrap_attach: 239: osif wrap attached 
 +[   42.650043]  
 +[   42.650045] wlan: [3815:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done 
 +[   42.650045]  
 +[   42.650049] wlan: [3815:I:ANY] osif_wrap_attach: 247:  Wrap Attached: Wrap_com =ffffff 
 +c02b620800 ic->ic_wrap_com=ffffffc02b620800 &wrap_com->wc_devt=ffffffc02b620800  
 +[   42.650049]  
 +[   42.650069] wlan: [3815:I:ANY] __ol_ath_attach: 4485: needed_headroom reservation 60 
 +[   42.650245] wlan: [3815:I:ANY] ieee80211_cfg80211_radio_attach: 11806: ic: 0xffffffc03 
 +0f60880, wdev: 0xffffffc030f78a58, wiphy: 0xffffffc0320442a0, netdev: 0xffffffc030f60000  
 +[   42.650707] wlan: [3815:I:ANY] __ol_ath_attach: 4242: pdev_netdev name wifi1 
 +[   42.650722] wlan: [3815:I:ANY] __ol_ath_attach: 4289: Skip txrx_pdev_attach_target 
 +[   42.650725] wlan: [3815:I:ANY] __ol_ath_attach: 4315: BURSTING enabled by default 
 +[   42.650763] wlan: [3815:I:ANY] ol_ath_pdev_attach: 9058: interface_id 1 
 +[   42.650774] wlan: [3815:I:TIF] ol_ath_pdev_regdmn_init: 7444:  phy id = 1 Modes suppor 
 +ted 
 +[   42.650778] wlan: [3815:I:TIF] ol_ath_pdev_regdmn_init: 7451:  11b = 1 11g = 1 11a = 0 
 + 11n = 1 11ac = 1 11ax = 1 
 +[   42.650782] wlan: [3815:I:TIF] ol_ath_pdev_regdmn_init: 7460:  Reg cap - phy_id = 1 su 
 +pp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0 
 +[   42.650785] wlan: [3815:I:ANY] ol_ath_update_wireless_modes: 1344: wireless_modes = 68 
 +0680c before update 
 +[   42.650787] wlan: [3815:I:ANY] ol_ath_update_wireless_modes: 1359: Wireless_modes = 68 
 +0680c after update 
 +[   42.650791] wlan: [3815:I:ANY] ol_ath_update_ext_caps: 1940: 11ax 2G supported case 
 +[   42.650882] wlan: [3815:I:ANY] ol_resmgr_create: 223: OL Resmgr Init-ed 
 +[   42.650988] wlan: [3815:I:ANY] acfg_attach: 3494: Offload using existing sock ffffffc0 
 +2b620400 
 +[   42.650997] wlan: [3815:I:ANY] ol_ath_stats_attach: 2275: periodic_chan_stats:
 +[   42.651164] wlan: [3815:I:ANY] wlan_scan_update_channel_list: 1135: num_chan: 11 
 +[   42.651188] wlan: [0:I:ANY] ol_ath_pdev_attach: 9402: Set global_ic[2], ptr:ffffffbffd 
 +3721e8 
 +[   42.651193] wlan: [0:I:ANY] dp_lag_soc_enable: 102: pdev(ffffffc034d11808) Enabling DB 
 +DC Repeater 1  
 +[   42.651198] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: 55: pdev(ffffffc034d11808)  
 +is_primary 0  
 +[   42.652581] wlan: [3815:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: 542: cfg block ch 
 +annel list is empty 
 +[   42.652586] wlan: [3815:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: 3850: pdev_idx =  
 +1 tx_desc_limit = 0 
 +[   42.652600] wlan: [3815:I:ANY] osif_wrap_attach: 239: osif wrap attached 
 +[   42.652600]  
 +[   42.652603] wlan: [3815:I:ANY] osif_wrap_devt_init: 201: osif wrap dev table init done 
 +[   42.652603]  
 +[   42.652607] wlan: [3815:I:ANY] osif_wrap_attach: 247:  Wrap Attached: Wrap_com =ffffff 
 +c02b622400 ic->ic_wrap_com=ffffffc02b622400 &wrap_com->wc_devt=ffffffc02b622400  
 +[   42.652607]  
 +[   42.652622] wlan: [3815:I:ANY] __ol_ath_attach: 4485: needed_headroom reservation 60 
 +[   42.652634] wlan: [3815:I:ANY] wlan_cfg80211_init: 11680: Number of 2G channels: 11  
 +[   42.652746] wlan: [3815:I:ANY] ieee80211_cfg80211_radio_attach: 11806: ic: 0xffffffc03 
 +0fa0880, wdev: 0xffffffc030fb8a58, wiphy: 0xffffffc034ff5aa0, netdev: 0xffffffc030fa0000  
 +[   42.653112] wlan: [3815:I:Dynamic Mode Change] ol_ath_check_and_reconfig_hw_mode: 3819 
 +: Running with HW mode = 1 
 +[   42.653305] wlan: [3815:E:QLD] qld_register: 108: Handle or address is NULL 
 +[   42.653318] wlan: [3815:I:ANY] wlan_pdev_operation: 726: num_radios=1, wifi_radios[0]. 
 +sc = ffffffc030f60880_radio_type = 2 
 +[   42.653322] wlan: [3815:I:ANY] wlan_pdev_operation: 726: num_radios=2, wifi_radios[1]. 
 +sc = ffffffc030fa0880_radio_type = 2 
 +[   42.653344] wlan: [3815:I:ANY] init_ath_pci_3_0: 179: 6ath_ol_pci_wifi3.0 :  (Atheros/ 
 +multi-bss) 
 +[   43.011809] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: 14623: twt enabl 
 +ed. 
 +[   43.011809]  
 +insmod wifi_2_0 
 +[   43.033399] wlan: [3820:I:ANY] osif_nss_register_module: 90: NSS wifi ops registered f 
 +or target_type:0 with soc_ops:ffffffbffd938de0 
 +[   43.033842] wlan: [3820:I:ANY] init_ath_pci_2_0: 143: 6ath_ol_pci_2_0:  (Atheros/multi 
 +-bss) 
 +insmod ath_pktlog 
 +insmod smart_antenna 
 +QCAWIFICFG80211 No Direct-Attach chipsets found. 
 +cfg80211tool wifi1 setCountry US 
 +[   43.662756] wlan: [4231:I:ANY] wlan_scan_update_channel_list: 1135: num_chan: 11 
 +[   43.662830] wlan: [4231:I:ANY] number of channels: 2G = 11 5G = 0, 6G = 0 
 +[   43.669238] wlan: [4231:I:ANY] wlan_cfg80211_set_country: 6519: wlan_cfg80211_set_coun 
 +try: Country: US ret: 0  
 +cfg80211tool wifi1 bsta_fixed_idmask 255 
 +cfg80211tool wifi1 set_bcnburst 1 
 +cfg80211tool wifi1 ce_debug_stats 1 
 +cfg80211tool wifi1 sIgmpDscpOvrid 1 
 +cfg80211tool wifi1 sIgmpDscpTidMap 6 
 +cfg80211tool wifi1 enable_ol_stats 1 
 +[   43.809245] wlan: [4249:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 2 Max 
 +_mac_rings 1  
 +[   43.809313] wlan: [4249:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 1 Max 
 +_mac_rings 1  
 +ifconfig wifi1 down 
 +[ flowstat_get_wwan_tx_rx_statistics ] 136: Get Rx/Tx flow from qmi failed!  
 +cfg80211tool wifi1 setHwaddr B4:B0:24:59:B8:0E 
 +[   43.842525] wlan: [4255:I:ANY] wlan_cfg80211_set_hwaddr: 6592: wlan_cfg80211_set_hwadd 
 +r :b4:b0:24:59:b8:0e ret: 0  
 +ifconfig wifi1 up 
 +cfg80211tool wifi1 txbf_snd_int 100 
 +[   43.871625] wlan: [4260:I:ANY] ol_ath_set_config_param: 1640: set TXBF_SND_PERIOD: val 
 +ue 100 wmi_status 0 
 +cfg80211tool wifi1 obss_rssi_th 35 
 +cfg80211tool wifi1 obss_rxrssi_th 35 
 +cfg80211tool wifi1 dbdc_enable 0 
 +[   43.942217] wlan: [0:I:ANY] dp_lag_soc_enable: 102: pdev(ffffffc034d11808) Enabling DB 
 +DC Repeater 0  
 +cfg80211tool wifi1 no_vlan 1 
 +cfg80211tool wifi1 discon_time 10 
 +[   43.992196] wlan: [0:I:ANY] ol_ath_set_config_param: 2377: Disconnect_timeout value: 1 
 +
 +cfg80211tool wifi1 reconfig_time 60 
 +[   44.017214] wlan: [0:I:ANY] ol_ath_set_config_param: 2383: Reconfiguration_timeout val 
 +ue:60 
 +sysctl -w dev.nss.n2hcfg.n2h_high_water_core0=67392 
 +sysctl -w dev.nss.n2hcfg.n2h_wifi_pool_buf=40960 
 +cfg80211tool wifi1 fc_buf0_max 16384 
 +cfg80211tool wifi1 fc_buf1_max 16384 
 +cfg80211tool wifi1 fc_buf2_max 16384 
 +cfg80211tool wifi1 fc_buf3_max 32768 
 +sysctl -w dev.nss.n2hcfg.n2h_queue_limit_core0=256 
 +sysctl -w dev.nss.n2hcfg.n2h_queue_limit_core1=256 
 +cfg80211tool wifi1 get_rxchainmask 
 +number of vifs: ath0 ath02  
 +ifconfig wifi1 up 
 +wlanconfig ath0 create wlandev wifi1 wlanmode ap -cfg80211 
 +iw phy phy1 interface add ath0 type __ap 
 +[   44.328604] wlan: [4382:I:ANY] wlan_cfg80211_add_virtual_intf: 335: proprietary mode 6 
 + for interface: ath0 : clone params: 0x00000001  
 +[   44.328677] wlan: [4382:I:ANY] osifp_create_wlan_vap: 9626: VDEV Create b4:b0:24:59:b8 
 +:0e 
 +[   44.339697] wlan: [4382:I:ANY] wlan_vap_create: 1600: devhandle=0xffffffc030fa0880, op 
 +mode=IEEE80211_M_HOSTAP, flags=0x1 
 +[   44.339697]  
 +[   44.347991] wlan: [4382:I:ANY] ol_ath_vap_set_param: 1209: Setting SGI value: 1 
 +[   44.360190] wlan: [4382:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:1|dl_muofdma_bfer:
 +[   44.367305] wlan: [4382:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x7b 
 +[   44.382590] wlan: [4382:I:ANY] ol_ath_vap_set_param: 2269: VDEV params:AC/VHT sounding 
 + mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged 
 +[   44.389377] wlan: [4382:I:ANY] MBO Initialized 
 +[   44.403391] wlan: [4382:I:ANY] OCE Initialized 
 +[   44.407926] wlan: [4382:I:ANY] osif_create_vap_complete: 9834: TX Checksum:1|SG:1|TSO: 
 +1|LRO:0 
 +[   44.413312] wlan: [4382:I:ANY] VAP device ath0 created osifp: (ffffffc02d12a880) os_if 
 +: (ffffffc02a9d0000) 
 +cfg80211tool ath0 mode 11GHE40 
 +cfg80211tool ath0 mode 11GHE40 
 +cfg80211tool ath0 channel 0 
 +cfg80211tool ath0 hide_ssid 0 
 +cfg80211tool ath0 nrshareflag 7 
 +cfg80211tool ath0 disablecoext 1 
 +iw ath0 set 4addr on 
 +cfg80211tool ath0 wds 1 
 +cfg80211tool ath0 backhaul 0 
 +cfg80211tool ath0 uapsd 1 
 +cfg80211tool ath0 vap_ind 0 
 +cfg80211tool ath0 extap 0 
 +iw ath0 set 4addr on 
 +cfg80211tool ath0 stafwd 0 
 +cfg80211tool ath0 maxsta 128 
 +[   44.874157] wlan: [4446:I:ANY] ieee80211_ucfg_setparam: 1536: Setting Max Stations:128 
 +cfg80211tool ath0 blockdfschan 1 
 +cfg80211tool ath0 twt_responder 0 
 +cfg80211tool ath0 rrm 1 
 +cfg80211tool ath0 vhtsubfee 1 
 +cfg80211tool ath0 vhtmubfee 1 
 +cfg80211tool ath0 vhtsubfer 1 
 +cfg80211tool ath0 vhtmubfer 1 
 +cfg80211tool ath0 he_subfee 1 
 +[   45.181418] wlan: [4473:I:ANY] wlan_set_param: 2964: HE SU BFEE already set with this  
 +value =1  
 +cfg80211tool ath0 he_subfer 1 
 +[   45.223138] wlan: [4476:I:ANY] wlan_set_param: 2983: HE SU BFER already set with this  
 +value =1  
 +cfg80211tool ath0 he_mubfee 1 
 +[   45.264096] wlan: [4479:I:ANY] ieee80211_ucfg_setparam: 4919: HE MU BFEE only supporte 
 +d in STA mode  
 +cfg80211tool ath0 he_mubfer 1 
 +[   45.305871] wlan: [4482:I:ANY] wlan_set_param: 3029:  HE MU BFER already set with this 
 + value =1  
 +cfg80211tool ath0 athnewind 1 
 +iwpriv ath0 he_ulmumimo 0 
 +[   45.364080] wlan: [4493:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:0|dl_muofdma_bfer:
 +[   45.364126] wlan: [4493:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x3b 
 +iwpriv ath0 he_ulofdma 0 
 +[   45.385664] wlan: [4496:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:0|ul_mumimo:0|dl_muofdma_bfer:
 +[   45.387245] wlan: [4496:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x1b 
 +cfg80211tool ath0 ap_bridge 1 
 +wpa_cli -g /var/run/hostapd/global raw ADD bss_config=ath0:/var/run/hostapd-ath0.conf 
 +[   45.554826] device ath0 entered promiscuous mode 
 +[   45.555292] br-lan: port 3(ath0) entered forwarding state 
 +[   45.560034] br-lan: port 3(ath0) entered forwarding state 
 +[   45.565933] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3709: vap-0(ath0):ACS Params 
 +[   45.570707] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3712: ht_enabled:1|ht40_enabled:0| 
 +vht_enabled:1|hw_mode:29|chwidth:20| 
 +[   45.578243] wlan: [954:I:ANY] ieee80211_autoselect_infra_bss_channel: 4151: ACS starte 
 +d: vap:0xffffffc02a9d0000 
 +[   45.589234] IPv6: ADDRCONF(NETDEV_CHANGE): br-lan: link becomes ready 
 +ifconfig ath0 up 
 +iw phy phy1 set rts off 
 +wlanconfig ath02 create wlandev wifi1 wlanmode ap -cfg80211 
 +iw phy phy1 interface add ath02 type __ap 
 +[   45.728033] wlan: [4572:I:ANY] wlan_cfg80211_add_virtual_intf: 335: proprietary mode 6 
 + for interface: ath02 : clone params: 0x00000001  
 +[   45.728099] wlan: [4572:I:ANY] osifp_create_wlan_vap: 9626: VDEV Create ba:b0:24:59:b8 
 +:0e 
 +[   45.739063] wlan: [4572:I:ANY] wlan_vap_create: 1600: devhandle=0xffffffc030fa0880, op 
 +mode=IEEE80211_M_HOSTAP, flags=0x1 
 +[   45.739063]  
 +[   45.747471] wlan: [4572:I:ANY] ol_ath_vap_set_param: 1209: Setting SGI value: 1 
 +[   45.759699] wlan: [4572:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:1|dl_muofdma_bfer:
 +[   45.766810] wlan: [4572:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x7b 
 +[   45.782172] wlan: [4572:I:ANY] ol_ath_vap_set_param: 2269: VDEV params:AC/VHT sounding 
 + mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged 
 +[   45.788883] wlan: [4572:I:ANY] MBO Initialized 
 +[   45.802897] wlan: [4572:I:ANY] OCE Initialized 
 +[   45.807438] wlan: [4572:I:ANY] osif_create_vap_complete: 9834: TX Checksum:1|SG:1|TSO: 
 +1|LRO:0 
 +[   45.812772] wlan: [4572:I:ANY] VAP device ath02 created osifp: (ffffffc02d12c880) os_i 
 +f: (ffffffc02a480000) 
 +cfg80211tool ath02 mode 11GHE40 
 +cfg80211tool ath02 mode 11GHE40 
 +cfg80211tool ath02 channel 0 
 +cfg80211tool ath02 hide_ssid 1 
 +cfg80211tool ath02 dynamicbeacon 0 
 +cfg80211tool ath02 disablecoext 1 
 +iw ath02 set 4addr on 
 +cfg80211tool ath02 wds 1 
 +cfg80211tool ath02 backhaul 0 
 +cfg80211tool ath02 uapsd 1 
 +cfg80211tool ath02 vap_ind 0 
 +cfg80211tool ath02 extap 0 
 +iw ath02 set 4addr on 
 +cfg80211tool ath02 stafwd 0 
 +cfg80211tool ath02 maxsta 128 
 +[   46.269705] wlan: [4635:I:ANY] ieee80211_ucfg_setparam: 1536: Setting Max Stations:128 
 +cfg80211tool ath02 blockdfschan 1 
 +cfg80211tool ath02 twt_responder 0 
 +cfg80211tool ath02 rrm 1 
 +cfg80211tool ath02 athnewind 1 
 +cfg80211tool ath02 rept_spl 0 
 +cfg80211tool ath02 ap_bridge 1 
 +wpa_cli -g /var/run/hostapd/global raw ADD bss_config=ath02:/var/run/hostapd-ath02.conf 
 +[   46.643233] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3709: vap-1(ath02):ACS Params 
 +[   46.643394] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3712: ht_enabled:1|ht40_enabled:0| 
 +vht_enabled:1|hw_mode:29|chwidth:20| 
 +[   46.650864] wlan: [954:I:ANY] ieee80211_autoselect_infra_bss_channel: 4151: ACS starte 
 +d: vap:0xffffffc02a480000 
 +ifconfig ath02 up 
 +iw phy phy1 set rts off 
 +qcawifi qcawificfg80211: enable radio wifi0 
 +echo -n /ini > /sys/module/firmware_class/parameters/path 
 +update_ini_file cfg80211_config=1 
 +update_ini_file qwrap_enable=0 
 +update_ini_file nss_wifi_olcfg=3 
 +update_ini_file rx_hash=0 
 +cfg80211tool wifi0 blockdfslist 1 
 +cfg80211tool wifi0 setCountry US 
 +[   47.380336] wlan: [5236:I:ANY] wlan_scan_update_channel_list: 1135: num_chan: 4 
 +[   47.380792] wlan: [5236:I:ANY] wlan_scan_update_channel_list: 1135: num_chan: 4 
 +[   47.386497] wlan: [5236:I:ANY] number of channels: 2G = 0 5G = 4, 6G = 0 
 +[   47.393745] wlan: [5236:I:ANY] wlan_cfg80211_set_country: 6519: wlan_cfg80211_set_coun 
 +try: Country: US ret: 0  
 +[   47.400733] wlan: [941:I:ANY] ol_acfg_handle_wifi_ioctl: 446: ol_acfg_handle_wifi_ioct 
 +l: req->cmd=76 not valid for radio interface, it's for VAP 
 +cfg80211tool wifi0 bsta_fixed_idmask 255 
 +cfg80211tool wifi0 set_bcnburst 1 
 +cfg80211tool wifi0 ce_debug_stats 1 
 +cfg80211tool wifi0 sIgmpDscpOvrid 1 
 +cfg80211tool wifi0 sIgmpDscpTidMap 6 
 +cfg80211tool wifi0 enable_ol_stats 1 
 +[   47.544745] wlan: [5254:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 2 Max 
 +_mac_rings 1  
 +[   47.544810] wlan: [5254:I:Monitor Filter] dp_mon_ht2_rx_ring_cfg: 119: srng type 1 Max 
 +_mac_rings 1  
 +ifconfig wifi0 down 
 +cfg80211tool wifi0 setHwaddr B4:B0:24:59:B8:0F 
 +[   47.577762] wlan: [5259:I:ANY] wlan_cfg80211_set_hwaddr: 6592: wlan_cfg80211_set_hwadd 
 +r :b4:b0:24:59:b8:0f ret: 0  
 +ifconfig wifi0 up 
 +cfg80211tool wifi0 txbf_snd_int 100 
 +[   47.606606] wlan: [5264:I:ANY] ol_ath_set_config_param: 1640: set TXBF_SND_PERIOD: val 
 +ue 100 wmi_status 0 
 +cfg80211tool wifi0 obss_rssi_th 35 
 +cfg80211tool wifi0 obss_rxrssi_th 35 
 +cfg80211tool wifi0 dbdc_enable 0 
 +[   47.677158] wlan: [0:I:ANY] dp_lag_soc_enable: 102: pdev(ffffffc034d12008) Enabling DB 
 +DC Repeater 0  
 +cfg80211tool wifi0 no_vlan 1 
 +cfg80211tool wifi0 discon_time 10 
 +[   47.727734] wlan: [0:I:ANY] ol_ath_set_config_param: 2377: Disconnect_timeout value: 1 
 +
 +cfg80211tool wifi0 reconfig_time 60 
 +[   47.752684] wlan: [0:I:ANY] ol_ath_set_config_param: 2383: Reconfiguration_timeout val 
 +ue:60 
 +cfg80211tool wifi0 fc_buf0_max 32768 
 +cfg80211tool wifi0 fc_buf1_max 32768 
 +cfg80211tool wifi0 fc_buf2_max 32768 
 +cfg80211tool wifi0 fc_buf3_max 32768 
 +sysctl -w dev.nss.n2hcfg.n2h_queue_limit_core0=256 
 +sysctl -w dev.nss.n2hcfg.n2h_queue_limit_core1=256 
 +cfg80211tool wifi0 get_rxchainmask 
 +number of vifs: ath1 ath12  
 +ifconfig wifi0 up 
 +wlanconfig ath1 create wlandev wifi0 wlanmode ap -cfg80211 
 +iw phy phy0 interface add ath1 type __ap 
 +[   47.999653] wlan: [5377:I:ANY] wlan_cfg80211_add_virtual_intf: 335: proprietary mode 6 
 + for interface: ath1 : clone params: 0x00000001  
 +[   47.999719] wlan: [5377:I:ANY] osifp_create_wlan_vap: 9626: VDEV Create b4:b0:24:59:b8 
 +:0f 
 +[   48.010682] wlan: [5377:I:ANY] wlan_vap_create: 1600: devhandle=0xffffffc030f60880, op 
 +mode=IEEE80211_M_HOSTAP, flags=0x1 
 +[   48.010682]  
 +[   48.019026] wlan: [5377:I:ANY] ol_ath_vap_set_param: 1209: Setting SGI value: 1 
 +[   48.031266] wlan: [5377:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:1|dl_muofdma_bfer:
 +[   48.038337] wlan: [5377:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x7b 
 +[   48.053656] wlan: [5377:I:ANY] ol_ath_vap_set_param: 2269: VDEV params:AC/VHT sounding 
 + mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged 
 +[   48.060423] wlan: [5377:I:ANY] MBO Initialized 
 +[   48.074431] wlan: [5377:I:ANY] OCE Initialized 
 +[   48.078971] wlan: [5377:I:ANY] osif_create_vap_complete: 9834: TX Checksum:1|SG:1|TSO: 
 +1|LRO:0 
 +[   48.084652] wlan: [5377:I:ANY] VAP device ath1 created osifp: (ffffffc02b302880) os_if 
 +: (ffffffc02a4a8000) 
 +cfg80211tool ath1 mode 11AHE80 
 +cfg80211tool ath1 mode 11AHE80 
 +cfg80211tool ath1 channel 0 
 +cfg80211tool ath1 hide_ssid 0 
 +cfg80211tool ath1 nrshareflag 7 
 +cfg80211tool ath1 disablecoext 1 
 +iw ath1 set 4addr on 
 +cfg80211tool ath1 wds 1 
 +cfg80211tool ath1 backhaul 0 
 +cfg80211tool ath1 uapsd 1 
 +cfg80211tool ath1 vap_ind 0 
 +cfg80211tool ath1 extap 0 
 +iw ath1 set 4addr on 
 +cfg80211tool ath1 amsdu 2 
 +cfg80211tool ath1 stafwd 0 
 +cfg80211tool ath1 maxsta 128 
 +[   48.577306] wlan: [5445:I:ANY] ieee80211_ucfg_setparam: 1536: Setting Max Stations:128 
 +cfg80211tool ath1 blockdfschan 1 
 +cfg80211tool ath1 twt_responder 0 
 +cfg80211tool ath1 rrm 1 
 +cfg80211tool ath1 vhtsubfee 1 
 +cfg80211tool ath1 vhtmubfee 1 
 +cfg80211tool ath1 vhtsubfer 1 
 +cfg80211tool ath1 vhtmubfer 1 
 +[ flowstat_get_wwan_tx_rx_statistics ] 136: Get Rx/Tx flow from qmi failed!  
 +cfg80211tool ath1 he_subfee 1 
 +[   48.884830] wlan: [5472:I:ANY] wlan_set_param: 2964: HE SU BFEE already set with this  
 +value =1  
 +cfg80211tool ath1 he_subfer 1 
 +[   48.926217] wlan: [5475:I:ANY] wlan_set_param: 2983: HE SU BFER already set with this  
 +value =1  
 +cfg80211tool ath1 he_mubfee 1 
 +[   48.967891] wlan: [5478:I:ANY] ieee80211_ucfg_setparam: 4919: HE MU BFEE only supporte 
 +d in STA mode  
 +cfg80211tool ath1 he_mubfer 1 
 +[   48.980674] ieee80211_acs_find_best_11ng_centerchan: acs_11ngbestchan = 11 
 +[   48.980704] 2.4G Best Channel Selected 10 rssi 0 nf -97  
 +[   48.986628] wlan: [2583:I:ANY] vap-0(ath0): ACS result PCH 10 freq 2457, SCH 6 freq 24 
 +37, hw_mode 1 chwidth 40, vht_seg0 8 freq 2447, vht_seg1 0 freq 0 
 +[   48.991906] wlan: [2583:I:ANY] vap-1(ath02): ACS result PCH 10 freq 2457, SCH 6 freq 2 
 +437, hw_mode 1 chwidth 40, vht_seg0 8 freq 2447, vht_seg1 0 freq 0 
 +[   49.005414] wlan: [2583:I:ANY] ieee80211_acs_scan_evhandler: 3885: lock held duration: 
 + 25(ms) 
 +[   49.023510] wlan: [5481:I:ANY] wlan_set_param: 3029:  HE MU BFER already set with this 
 + value =1  
 +[   49.027754] wlan: [954:I:ANY] DES SSID SET=deco 
 +[   49.036448] wlan: [954:I:ANY] wlan_cfg80211_chan_to_phymode: 1239: wlan_cfg80211_chan_ 
 +to_phymode: band:0 width: 2 channel_cfreq: 2457 center_freq1: 2447 chandef.center_freq2:  
 +0 flags: 0  
 +[   49.040808] wlan: [954:I:ANY] ieee80211_ucfg_set_freq_internal: 553:  
 +[   49.040808]  Channel is configured already!! 
 +cfg80211tool ath1 athnewind 1 
 +[   49.082772] wlan: [0:I:CMN_MLME] vdev[0] ieee chan:10 freq:2457 
 +[   49.082984] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   49.082984] FD Interval should be a factor of BI. 
 +[   49.082984] Disabling FD 
 +[   49.082984]  
 +[   49.087606] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   49.087606] FD Interval should be a factor of BI. 
 +[   49.087606] Disabling FD 
 +[   49.087606]  
 +[   49.094846] wlan: [954:I:ANY] DES SSID SET=zEQQkhpPcoaHsP34 
 +[   49.094851] wlan: [954:I:ANY] wlan_cfg80211_set_phymode: 1215: desired hw mode: 27 
 +[   49.094902] wlan: [954:I:ANY] ieee80211_ucfg_set_freq_internal: 553:  
 +[   49.094902]  Channel is configured already!! 
 +[   49.140523] wlan: [0:I:ANY] vdev[0]: Mgt Rate:1000(kbps) 
 +[   49.151148] wlan: [0:I:ANY] vdev[0]: Mgt Rate:1000(kbps) 
 +[   49.157119] wlan: [0:I:CMN_MLME] vdev[1] ieee chan:10 freq:2457 
 +[   49.162023] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   49.162023] FD Interval should be a factor of BI. 
 +[   49.162023] Disabling FD 
 +[   49.162023]  
 +[   49.167624] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   49.167624] FD Interval should be a factor of BI. 
 +[   49.167624] Disabling FD 
 +[   49.167624]  
 +[   49.187716] wlan: [0:I:ANY] vdev[1]: Mgt Rate:1000(kbps) 
 +[   49.207562] wlan: [0:I:ANY] vdev[1]: Mgt Rate:1000(kbps) 
 +iwpriv ath1 he_ulmumimo 0 
 +[   49.222651] wlan: [5493:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:0|dl_muofdma_bfer:
 +[   49.222697] wlan: [5493:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x3b 
 +iwpriv ath1 he_ulofdma 0 
 +[   49.244336] wlan: [5496:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:0|ul_mumimo:0|dl_muofdma_bfer:
 +[   49.245799] wlan: [5496:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x1b 
 +cfg80211tool ath1 ap_bridge 1 
 +wpa_cli -g /var/run/hostapd/global raw ADD bss_config=ath1:/var/run/hostapd-ath1.conf 
 +[   49.415427] device ath1 entered promiscuous mode 
 +[   49.416121] br-lan: port 4(ath1) entered forwarding state 
 +[   49.420859] br-lan: port 4(ath1) entered forwarding state 
 +[   49.426574] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3709: vap-2(ath1):ACS Params 
 +[   49.431535] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3712: ht_enabled:1|ht40_enabled:0| 
 +vht_enabled:1|hw_mode:30|chwidth:20| 
 +[   49.439165] wlan: [954:I:ANY] ieee80211_autoselect_infra_bss_channel: 4151: ACS starte 
 +d: vap:0xffffffc02a4a8000 
 +ifconfig ath1 up 
 +iw phy phy0 set rts off 
 +wlanconfig ath12 create wlandev wifi0 wlanmode ap -cfg80211 
 +iw phy phy0 interface add ath12 type __ap 
 +[   49.571427] wlan: [5571:I:ANY] wlan_cfg80211_add_virtual_intf: 335: proprietary mode 6 
 + for interface: ath12 : clone params: 0x00000001  
 +[   49.571493] wlan: [5571:I:ANY] osifp_create_wlan_vap: 9626: VDEV Create ba:b0:24:59:b8 
 +:0f 
 +[   49.582543] wlan: [5571:I:ANY] wlan_vap_create: 1600: devhandle=0xffffffc030f60880, op 
 +mode=IEEE80211_M_HOSTAP, flags=0x1 
 +[   49.582543]  
 +[   49.590914] wlan: [5571:I:ANY] ol_ath_vap_set_param: 1209: Setting SGI value: 1 
 +[   49.603112] wlan: [5571:I:ANY] ol_ath_vap_set_param: 2241: VDEV params:HE su_bfee:1|su 
 +_bfer:1|mu_bfee:0|mu_bfer:1|dl_muofdma:1|ul_muofdma:1|ul_mumimo:1|dl_muofdma_bfer:
 +[   49.610233] wlan: [5571:I:ANY] ol_ath_vap_set_param: 2254: he_bf_cap=0x7b 
 +[   49.625489] wlan: [5571:I:ANY] ol_ath_vap_set_param: 2269: VDEV params:AC/VHT sounding 
 + mode:HE|SU/MU sounding mode:SU|Trig/Non-Trig sounding mode:Non-Trigged 
 +[   49.632266] wlan: [5571:I:ANY] MBO Initialized 
 +[   49.646335] wlan: [5571:I:ANY] OCE Initialized 
 +[   49.650827] wlan: [5571:I:ANY] osif_create_vap_complete: 9834: TX Checksum:1|SG:1|TSO: 
 +1|LRO:0 
 +[   49.656551] wlan: [5571:I:ANY] VAP device ath12 created osifp: (ffffffc02b304880) os_i 
 +f: (ffffffc02a580000) 
 +cfg80211tool ath12 mode 11AHE80 
 +cfg80211tool ath12 mode 11AHE80 
 +cfg80211tool ath12 channel 0 
 +cfg80211tool ath12 hide_ssid 1 
 +cfg80211tool ath12 dynamicbeacon 0 
 +cfg80211tool ath12 disablecoext 1 
 +iw ath12 set 4addr on 
 +cfg80211tool ath12 wds 1 
 +cfg80211tool ath12 backhaul 0 
 +cfg80211tool ath12 uapsd 1 
 +cfg80211tool ath12 vap_ind 0 
 +cfg80211tool ath12 extap 0 
 +iw ath12 set 4addr on 
 +cfg80211tool ath12 stafwd 0 
 +cfg80211tool ath12 maxsta 128 
 +[   50.113671] wlan: [5634:I:ANY] ieee80211_ucfg_setparam: 1536: Setting Max Stations:128 
 +cfg80211tool ath12 blockdfschan 1 
 +cfg80211tool ath12 twt_responder 0 
 +cfg80211tool ath12 rrm 1 
 +cfg80211tool ath12 athnewind 1 
 +cfg80211tool ath12 rept_spl 0 
 +cfg80211tool ath12 ap_bridge 1 
 +wpa_cli -g /var/run/hostapd/global raw ADD bss_config=ath12:/var/run/hostapd-ath12.conf 
 +[   50.498032] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3709: vap-3(ath12):ACS Params 
 +[   50.498858] wlan: [954:I:ANY] wlan_cfg80211_do_acs: 3712: ht_enabled:1|ht40_enabled:0| 
 +vht_enabled:1|hw_mode:30|chwidth:20| 
 +[   50.506392] wlan: [954:I:ANY] ieee80211_autoselect_infra_bss_channel: 4151: ACS starte 
 +d: vap:0xffffffc02a580000 
 +ifconfig ath12 up 
 +iw phy phy0 set rts off 
 +[   50.545215] Not a Hy-Fi device, or device not found: br-iptv 
 +[   50.545696] Not a Hy-Fi device, or device not found: br-iptv 
 +qcawifi qcawificfg80211: enable radio wifi2 
 +echo -n /ini > /sys/module/firmware_class/parameters/path 
 +update_ini_file cfg80211_config=1 
 +update_ini_file qwrap_enable=0 
 +update_ini_file nss_wifi_olcfg=3 
 +update_ini_file rx_hash=0 
 +[   50.708326] wlan: [2583:I:ANY] vap-2(ath1): ACS result PCH 48 freq 5240, SCH 36 freq 5 
 +180, hw_mode 2 chwidth 80, vht_seg0 42 freq 5210, vht_seg1 0 freq 0 
 +[   50.708431] wlan: [2583:I:ANY] vap-3(ath12): ACS result PCH 48 freq 5240, SCH 36 freq  
 +5180, hw_mode 2 chwidth 80, vht_seg0 42 freq 5210, vht_seg1 0 freq 0 
 +[   50.721318] wlan: [2583:I:ANY] ieee80211_acs_scan_evhandler: 3885: lock held duration: 
 + 13(ms) 
 +[   50.744494] wlan: [954:I:ANY] DES SSID SET=deco 
 +[   50.744523] wlan: [954:I:ANY] wlan_cfg80211_set_phymode: 1215: desired hw mode: 30 
 +[   50.747968] wlan: [954:I:ANY] ieee80211_ucfg_set_freq_internal: 553:  
 +[   50.747968]  Channel is configured already!! 
 +[   50.784793] wlan: [0:I:CMN_MLME] vdev[2] ieee chan:48 freq:5240 
 +[   50.785015] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   50.785015] FD Interval should be a factor of BI. 
 +[   50.785015] Disabling FD 
 +[   50.785015]  
 +[   50.789681] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   50.789681] FD Interval should be a factor of BI. 
 +[   50.789681] Disabling FD 
 +[   50.789681]  
 +[   50.793247] wlan: [954:I:ANY] DES SSID SET=zEQQkhpPcoaHsP34 
 +[   50.793254] wlan: [954:I:ANY] wlan_cfg80211_set_phymode: 1215: desired hw mode: 30 
 +[   50.793353] wlan: [954:I:ANY] ieee80211_ucfg_set_freq_internal: 553:  
 +[   50.793353]  Channel is configured already!! 
 +[   50.793539] wlan: [0:I:dfs] WLAN_DEBUG_DFS_ALWAYS : dfs_set_current_channel_for_freq:  
 +879: dfs_curchan already updated 
 +[   50.853264] wlan: [0:I:ANY] vdev[2]: Mgt Rate:6000(kbps) 
 +[   50.863910] wlan: [0:I:ANY] vdev[2]: Mgt Rate:6000(kbps) 
 +[   50.870219] wlan: [0:I:CMN_MLME] vdev[3] ieee chan:48 freq:5240 
 +[   50.874794] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   50.874794] FD Interval should be a factor of BI. 
 +[   50.874794] Disabling FD 
 +[   50.874794]  
 +[   50.880377] wlan: [0:E:FILS discovery] wlan_fd_set_valid_fd_period: 607: Invalid FD In 
 +terval : 0. Valid range is 20 - 100ms. 
 +[   50.880377] FD Interval should be a factor of BI. 
 +[   50.880377] Disabling FD 
 +[   50.880377]  
 +[   50.900504] wlan: [0:I:ANY] vdev[3]: Mgt Rate:6000(kbps) 
 +[   50.920355] wlan: [0:I:ANY] vdev[3]: Mgt Rate:6000(kbps) 
 +echo q6mem > /sys/bus/coresight/devices/coresight-tmc-etr/out_mode 
 +echo 1 > /sys/bus/coresight/devices/coresight-tmc-etr/curr_s[   51.492436] coresight-funn 
 +el 6130000.funnel: FUNNEL inport 5 enabled 
 +[   51.497337] coresight-funnel 6021000.funnel: FUNNEL inport 6 enabled 
 +[   51.504745] coresight-tmc 6028000.tmc: TMC enabled 
 +[   51.507606] coresight-replicator-qcom 6026000.replicator: REPLICATOR enabled 
 +[   51.512209] coresight-tmc 6027000.tmc: TMC enabled 
 +[   51.519421] coresight-funnel 6021000.funnel: FUNNEL inport 7 enabled 
 +[   51.524056] coresight-stm 6002000.stm: STM tracing enabled 
 +ink 
 +echo 5 > /sys/bus/coresight/devices/coresight-funnel-mm/funnel_ctrl 
 +echo 6 > /sys/bus/coresight/devices/coresight-funnel-in0/funnel_ctrl 
 +echo 1 > /sys/bus/coresight/devices/coresight-stm/enable 
 +*****QDSS Tracing Configuration completed******* 
 +echo -e qdss_trace_load_config\nqdss_trace_start\nquit\n > /tmp/qdss_trace_commands 
 +******Starting cnss_cli******** 
 +whc (repacd): do __repacd_add_vlan_interfaces network:lan vlan id:1 backhual_iface:wifi 
 +whc (repacd): 2g interfaces:ath02, 5g interfaces:ath12 
 +whc (repacd): plc interfaces: 
 +interface5g:ath12 
 +whc (repacd): ath12.1 does not exist, add it. 
 +[   51.914077] device ath12.1 entered promiscuous mode 
 +[   51.918134] device ath12 entered promiscuous mode 
 +[   51.918530] br-lan: port 5(ath12.1) entered forwarding state 
 +[   51.922681] br-lan: port 5(ath12.1) entered forwarding state 
 +interface2g:ath02 
 +whc (repacd): ath02.1 does not exist, add it. 
 +[   51.972094] device ath02.1 entered promiscuous mode 
 +[   51.976114] device ath02 entered promiscuous mode 
 +[   51.976401] br-lan: port 6(ath02.1) entered forwarding state 
 +[   51.980689] br-lan: port 6(ath02.1) entered forwarding state 
 +whc (repacd): do __repacd_add_vlan_interfaces network:lan vlan id:2 backhual_iface:wifi 
 +whc (repacd): 2g interfaces:ath02, 5g interfaces:ath12 
 +whc (repacd): plc interfaces: 
 +interface5g:ath12 
 +whc (repacd): ath12.2 does not exist, add it. 
 +[   52.094301] device ath12.2 entered promiscuous mode 
 +[   52.097019] br-lan: port 7(ath12.2) entered forwarding state 
 +[   52.098003] br-lan: port 7(ath12.2) entered forwarding state 
 +interface2g:ath02 
 +whc (repacd): ath02.2 does not exist, add it. 
 +[   52.149687] device ath02.2 entered promiscuous mode 
 +[   52.152646] br-lan: port 8(ath02.2) entered forwarding state 
 +[   52.153387] br-lan: port 8(ath02.2) entered forwarding state 
 +whc (repacd): do __repacd_del_vlan_interfaces network:lan vlan id:1 backhual_iface:plc 
 +whc (repacd): 2g interfaces:, 5g interfaces: 
 +whc (repacd):  plc interfaces: 
 +whc (repacd): do __repacd_del_vlan_interfaces network:lan vlan id:2 backhual_iface:plc 
 +whc (repacd): 2g interfaces:, 5g interfaces: 
 +whc (repacd):  plc interfaces: 
 +whc (repacd): set wifi done flag 
 +whc (repacd): unlock whc_wifi_config_lock 
 +whc (repacd): get whc_wifi_config_lock 
 +whc (repacd): clear wifi_set_done flag 
 +whc (repacd): starting WHC auto-configuration 
 +whc (repacd): Managed network: lan 
 +whc (repacd): Device type: AP 
 +whc (repacd): Sysmode: Router 
 +whc (repacd): the guest network version of the device is latest, we do nothing(uci_revert 
 +_state wifi guest enable) 
 +whc (repacd): Using SON mode for GW Connected AP 
 +whc (repacd): __repacd_restart_dependencies: No changes; not restarting network stack... 
 +whc (repacd): do __repacd_add_vlan_interfaces network:lan vlan id:1 backhual_iface:wifi 
 +whc (repacd): 2g interfaces:ath02, 5g interfaces:ath12 
 +whc (repacd): plc interfaces: 
 +interface5g:ath12 
 +whc (repacd): ath12.1 already existed, do nothing. 
 +interface2g:ath02 
 +whc (repacd): ath02.1 already existed, do nothing. 
 +whc (repacd): do __repacd_add_vlan_interfaces network:lan vlan id:2 backhual_iface:wifi 
 +whc (repacd): 2g interfaces:ath02, 5g interfaces:ath12 
 +whc (repacd): plc interfaces: 
 +interface5g:ath12 
 +whc (repacd): ath12.2 already existed, do nothing. 
 +interface2g:ath02 
 +whc (repacd): ath02.2 already existed, do nothing. 
 +whc (repacd): do __repacd_del_vlan_interfaces network:lan vlan id:1 backhual_iface:plc 
 +whc (repacd): 2g interfaces:, 5g interfaces: 
 +whc (repacd):  plc interfaces: 
 +whc (repacd): do __repacd_del_vlan_interfaces network:lan vlan id:2 backhual_iface:plc 
 +whc (repacd): 2g interfaces:, 5g interfaces: 
 +whc (repacd):  plc interfaces: 
 +whc (repacd): set wifi done flag 
 +whc (repacd): unlock whc_wifi_config_lock 
 +[aviraSentinelFull]: stop IS_AVIRA_SENTINEL_FULL_RESTART: 0  
 +[aviraSentinelLite]: stop IS_AVIRA_SENTINEL_LITE_RESTART: 0  
 +[ flowstat_start_timer ] 677: ===> last_up_time=0  
 +iptv.init start iptv 
 +iptv start_service  
 +switch: reset_wan_vlan: select p4: 1 
 +switch: reset_wan_vlan: select p5: 2 
 +mac:B4-B0-24-59-B8-0C 
 +
 +cap_mac: 
 +
 +[   54.394821] ivalue value: 
 +[   54.394842] bind_divece_num:
 +[ 7432] [init 340] init nds:0x0 
 +  
 +wanDetect: INFO: wandetect_get_profile_eths: 
 +wanDetect: INFO:        eth0 
 +wanDetect: INFO:        eth1 
 +[ 7432] [dns_proxy_execFormatCmd 88] cmd: nat del dns 
 +  
 +wanDetect: INFO: my device_id : 80198A32723C173A21C35791744A5A151F4D05B6 
 +wanDetect: INFO: init_no_wan_mode 
 +wanDetect: INFO: clear_dialed_flag 
 +wanDetect: INFO: move all interface to br-lan  
 +wanDetect: INFO: move eth0 to br-lan... 
 +[ 7432] [dns_proxy_execFormatCmd 88] cmd: nat add dns { 192.168.68.1 0.0.0.0 } 
 +  
 +conn-indicator: INFO: -- running -- 
 +conn-indicator: NOTE: BINDING state: -1 -> 3 
 +conn-indicator: INFO: <30000307> Invoke led: conn[2] 
 +conn-indicator: NOTE: Mode changed: Unknown -> Router 
 +conn-indicator: NOTE: Role changed: Unknown -> FAP 
 +conn-indicator: ERR: [validate_dir] stat(/tmp/sync-server): No such file or directory 
 +conn-indicator: ERR: Invalid directory: /tmp/sync-server 
 +conn-indicator: ERR: Failed to watch /tmp/sync-server/mesh_dev_list 
 +conn-indicator: ERR: Failed to allocate DEV_LIST 
 +conn-indicator: NOTE: Network type: Unknown -> FAP 
 +conn-indicator: INFO: <31330307> Invoke led: conn[1] 
 +conn-indicator: NOTE: Connectivity changed: FAP.LOST(0x7) -> OFFLINE(0x1) 
 +wandetect: move eth0 to other bridge 
 +wandetect: move eth0 to lan bridge 
 +device eth0 is not a slave of br-wan 
 +device eth0 is already a member of a bridge; can't enslave it to bridge br-lan. 
 +===== TIPC have already enabled ====     
 +[ 7432] [dns_proxy_execFormatCmd 88] cmd: nat add dns { 0.0.0.0 0.0.0.0 } 
 +  
 +wanDetect: INFO: move eth1 to br-lan... 
 +[ 7432] [main 481] init done, now do uloop_run 
 +  
 +[   54.716004] Started in network mode 
 +[   54.716031] Own node address <224.3584.1>, network identity 4711 
 +[   54.725041] Enabled bearer <deco:br-lan:1>, discovery domain <224.3584.0>, priority 10 
 +wandetect: move eth1 to other bridge 
 +wandetect: move eth1 to lan bridge 
 +device eth1 is not a slave of br-wan 
 +device eth1 is already a member of a bridge; can't enslave it to bridge br-lan. 
 +wanDetect: INFO: Goto uloop_run 
 +tipc-server: INFO: -- running -- 
 +tipc-server: INFO: server radar: port {18888,100,200} created 
 +tipc-server: INFO: mode is AP 
 + 
 +tipc-server: INFO: mode is AP 
 + 
 +tipc-server: INFO: server AP: port {5000,100,100} created 
 +tipc-server: INFO: mode is AP 
 + 
 +[   54.784496] Not a Hy-Fi device, or device not found: br-iptv 
 +[   54.786621] Not a Hy-Fi device, or device not found: br-iptv 
 +conn-indicator: INFO: Notify inet.down 
 +json_object_from_file: error reading file /tmp/sync-server/mesh_dev_list: No such file or 
 + directory 
 +smart_home_schedule reload_service 
 +maclist_smart_home: 
 +#### no schedule client found in blacklist config #### 
 +[   55.072358] S95done (7851): drop_caches:
 +conn-indicator: ERR: [validate_dir] stat(/tmp/sync-server): No such file or directory 
 +conn-indicator: ERR: Invalid directory: /tmp/sync-server 
 +conn-indicator: ERR: Failed to watch /tmp/sync-server/mesh_dev_list 
 +conn-indicator: ERR: Failed to allocate DEV_LIST 
 +manager permission has been set, no need to set again    
 +guest-eth: Start to set guest vlan 
 +guest-eth: Ignore system signal 
 +guest-eth: Lock vlan.lock 
 +guest-eth: AP role, eth0 eth1 set tag port, vlan id is 591 
 +guest-eth: add eth if eth0.591 
 +[   56.215089] device eth0.591 entered promiscuous mode 
 +[   56.222165] IPv6: ADDRCONF(NETDEV_UP): eth0.591: link is not ready 
 +guest-eth: add eth if eth1.591 
 +[   56.239741] device eth1.591 entered promiscuous mode 
 +[   56.246461] IPv6: ADDRCONF(NETDEV_UP): eth1.591: link is not ready 
 +mac:B4-B0-24-59-B8-0C 
 +role:AP 
 +update fap: B4:B0:24:59:B8:0C 
 +[   56.389241] net rmnet_mhi0: link_state 0x0 -> 0x1 
 +[   56.391828] IPv6: ADDRCONF(NETDEV_CHANGE): rmnet_mhi0: link becomes ready 
 +[   56.393075] IPv6: ADDRCONF(NETDEV_CHANGE): rmnet_mhi0.1: link becomes ready 
 +conn-indicator: INFO: <31330301> link event: rmnet_mhi0.upwanDetect: INFO: --> link event 
 +: rmnet_mhi0.up 
 + 
 +wanDetect: INFO: ! mode_need_dial 
 +conn-indicator: INFO: <31330301> link event: rmnet_mhi0.1.up 
 +wanDetect: INFO: --> link event: rmnet_mhi0.1.up 
 +wanDetect: INFO: ! mode_need_dial 
 +conn-indicator: ERR: [validate_dir] stat(/tmp/sync-server): No such file or directory 
 +conn-indicator: ERR: Invalid directory: /tmp/sync-server 
 +conn-indicator: ERR: Failed to watch /tmp/sync-server/mesh_dev_list 
 +conn-indicator: ERR: Failed to allocate DEV_LIST 
 +*****/tmp/ipv6_firewall/op_rule_id file not found, create it.***** 
 +[   56.974641] Not a Hy-Fi device, or device not found: br-iptv 
 +[   56.974734] Not a Hy-Fi device, or device not found: br-iptv 
 +[ 3366(lan)] [smartip_ibus_handle_wifi_event 2289] smartipd handle wifi event:9 
 +  
 +[ 3366(lan)] [smartip_ibus_handle_wifi_event 2313] RE -> AP 
 +  
 +[ 3366(lan)] [smartip_ibus_handle_dhcp_server_changed 2204] DHCP Server changed 
 +  
 +[ 3366(lan)] [smartip_ibus_handle_dhcp_server_changed 2238] Restart dhcpd 
 +  
 +[ 3366(lan)] [smartip_kill_process 271] kill process udhcpd 
 +  
 +conn-indicator: ERR: [validate_dir] stat(/tmp/sync-server): No such file or directory 
 +conn-indicator: ERR: Invalid directory: /tmp/sync-server 
 +conn-indicator: ERR: Failed to watch /tmp/sync-server/mesh_dev_list 
 +conn-indicator: ERR: Failed to allocate DEV_LIST 
 +[ 3366(lan)] [smartip_start_process 366] start udhcpd 
 +  
 +[ 3366(lan)] [smartip_check_lan_wan_is_samesubnet 2800] br-wan has no ip! 
 +  
 +[ 3366(lan)] [smartip_ibus_handle_wifi_event 2343] Change to FAP, Update Lan IP 
 +  
 +[ 3366(lan)] [smartip_notify_lan_update 1320] Notify the lan ip changed. 
 +  
 +[ 3366(lan)] [smartip_update_lanip 593] config IP:  ifconfig br-lan 192.168.68.1 netmask  
 +255.255.252.0 
 +  
 +[ 3366(lan)] [smartip_update_lanip 604] route del default dev br-lan 
 +  
 +[   58.561785] work mode change to :AP 
 +[   58.561785]  
 +[   58.564769] get dev num:2 
 +[   58.566301] statistics: SET_STA_DEVICE dev_name=eth0 
 +[   58.566304] statistics: SET_STA_DEVICE dev_name=eth1 
 +[   58.566308] backhaul sta dev num:2 
 +conn-indicator: ERR: [validate_dir] stat(/tmp/sync-server): No such file or directory 
 +conn-indicator: ERR: Invalid directory: /tmp/sync-server 
 +conn-indicator: ERR: Failed to watch /tmp/sync-server/mesh_dev_list 
 +conn-indicator: ERR: Failed to allocate DEV_LIST 
 +start minitor config flowstat_send_test_sms 
 +[ 3366(lan)] [smartip_update_lanip 622] restart miniupnpd 
 +  
 +parental-control_avira: Restart the avira homecare 
 +[ 8728(lan)] [smartip_call_hotplug_ip 2032] Send Message -- TYPE:lan, EVENT:UPDATE 
 +  
 +start minitor config mobile_config 
 +[ 8849(lan)] [smartip_call_hotplug_ip 2032] Send Message -- TYPE:lan, EVENT:FAPIPUPDATE 
 +  
 +not found in config 
 +echo 0 to init 
 +===parental_control_avira=== no need to start 
 +[aviraSentinelFull]: stop IS_AVIRA_SENTINEL_FULL_RESTART: 0  
 +false 0 
 +start minitor config profile_action 
 +[aviraSentinelLite]: stop IS_AVIRA_SENTINEL_LITE_RESTART: 0  
 +IPConflict2 mask:22 lan_addr:192.168.68.1 mask_str:255.255.252.0 
 +IPConflict2 mask:22 
 +IPConflict2 old_mask:255.255.252.0 old_ip:192.168.68.1 
 +[ 3366(lan)] [smartip_update_lanip 634] restart domain_login 
 +  
 +[   59.375519] Not a Hy-Fi device, or device not found: br-iptv 
 +[   59.375636] Not a Hy-Fi device, or device not found: br-iptv 
 +qos_v2 disable gro  
 +qos_v2 start  
 +conn-indicator: ERR: [validate_dir] stat(/tmp/sync-server): No such file or directory 
 +conn-indicator: ERR: Invalid directory: /tmp/sync-server 
 +conn-indicator: ERR: Failed to watch /tmp/sync-server/mesh_dev_list 
 +conn-indicator: ERR: Failed to allocate DEV_LIST 
 +wanDetect: ERR: port update : eth0 
 +/lib/sync-server/scripts/detect-re:35:  error open file failed:/var/run/record_devid     
 +/lib/sync-server/scripts/detect-re:35:  error open file failed:/tmp/sync-server/mesh_dev_ 
 +list     
 +/lib/sync-server/scripts/detect-re:57:  error: record_devid or mesh_dev_list is nil, do n 
 +othing   
 +conn-indicator: ERR: [file_md5sum] fopen(/tmp/sync-server/mesh_dev_list): No such file or 
 + directory 
 +json_object_from_file: error reading file /tmp/sync-server/mesh_dev_list: No such file or 
 + directory 
 +conn-indicator: ERR: [update_devlist] Failed to parse /tmp/sync-server/mesh_dev_list: No  
 +such file or directory 
 +[   60.738621] mode:0 
 +/lib/sync-server/scripts/probe:228:     error open file failed:/var/run/record_devid     
 +/lib/sync-server/scripts/probe:748:     to_get_info 80198A32723C173A21C35791744A5A151F4D0 
 +5B6 first, clean old record data         
 +/lib/sync-server/scripts/probe:752:     to_get_info 80198A32723C173A21C35791744A5A151F4D0 
 +5B6      
 +========= MODE: cloud_awn_update begin ==========        
 +mode: AP         
 +Ipv6 Firewall config trigger stop! 
 +qos_v2 stop  
 +========= MODE: update awn feature info to cloud ==========      
 +--------->exiting qos 
 +/lib/sync-server/scripts/probe:861:     to_get_info: ["192.168.68.1","1"       
 +conn-indicator: ERR: [update_devlist] Failed to parse /tmp/sync-server/mesh_dev_list: Res 
 +ource temporarily unavailable 
 +/lib/sync-server/scripts/get-info:84:    Total 1 devices need to get info        
 +sync_get_info begin()    
 +sync_get_compatible_info         
 +sync_get_info end()      
 +error open file failed:/var/run/record_devid     
 +error open file failed:/var/run/record_op        
 +error open file failed:/var/run/record_cfg       
 +error open file failed:/var/run/record_component_router_owner    
 +error open file failed:/var/run/record_component_router_user     
 +error open file failed:/var/run/record_component_ap_owner        
 +error open file failed:/var/run/record_component_ap_user         
 +error open file failed:/var/run/record_opcode_cfg        
 +error open file failed:/var/run/record_devid     
 +error open file failed:/tmp/check_dev    
 +error open file failed:/var/run/record_component_whole   
 +update_compitable_list can't support IOT         
 +/lib/sync-server/scripts/get-info:92:   Total 1 devices were got info successfully       
 +error open file failed:/var/run/lookup_cfg       
 +there is no iot fap      
 +error open file failed:/var/run/lookup_op        
 +check_opcode_iot         
 +fap has no iot   
 +/lib/sync-server/scripts/get-info:104:   Total 1 devices need to get cfg         
 +req:    {"method":"getDeviceUserInfo","params":{"deviceId":"80198A32723C173A21C35791744A5 
 +A151F4D05B6"}}   
 +qos_v2 disable gro  
 +qos_v2 start  
 +sync_get_cfg begin()     
 +Warning! can't find cfg : white_list_1   
 +sync_get_cfg end()       
 +error open file failed:/tmp/merge_cfgs   
 +/lib/sync-server/scripts/get-info:106:  Total 1 devices were got cfg successfully        
 +/lib/sync-server/scripts/get-info:121:   merge_cfgs is nil , don't update user_config.   
 + Total 1 devices need to update dev list         
 +Total 1 devices were update dev list successfully        
 +re:     -3002    
 +get_deviceUserInfo: request error        
 + ======= ERROR: get cloudUserName from cloud failed ======       
 +req:    {"method":"getDeviceUserInfo","params":{"deviceId":"80198A32723C173A21C35791744A5 
 +A151F4D05B6"}}   
 +re:     -3002    
 +get_deviceUserInfo: request error        
 + ======= ERROR: get cloudUserName from cloud failed ======       
 +req:    {"method":"getDeviceUserInfo","params":{"deviceId":"80198A32723C173A21C35791744A5 
 +A151F4D05B6"}}   
 +re:     -3002    
 +get_deviceUserInfo: request error        
 + ======= ERROR: get cloudUserName from cloud failed ======       
 +notify_check_client: current time is 1681133532  
 +req:    {"method":"getDeviceUserInfo","params":{"deviceId":"80198A32723C173A21C35791744A5 
 +A151F4D05B6"}}   
 +client triggers is opened.       
 +re:     -3002    
 +get_deviceUserInfo: request error        
 + ======= ERROR: get cloudUserName from cloud failed ======       
 +</nowiki>
 </WRAP>\\ </WRAP>\\
  
 ==== OpenWrt bootlog ==== ==== OpenWrt bootlog ====
 <WRAP bootlog> <WRAP bootlog>
-<nowiki>COPY HERE THE BOOTLOG ONCE OPENWRT IS INSTALLED AND RUNNING</nowiki>+<nowiki> 
 +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-00158 
 +S - IMAGE_VARIANT_STRING=HAACANAZA 
 +S - OEM_IMAGE_VERSION_STRING=CRM 
 +S - Boot Config, 0x000002e5 
 +B -       201 - PBL, Start 
 +B -      2736 - bootable_media_detect_entry, Start 
 +B -      3443 - bootable_media_detect_success, Start 
 +B -      3448 - elf_loader_entry, Start 
 +B -      6114 - auth_hash_seg_entry, Start 
 +B -      6357 - auth_hash_seg_exit, Start 
 +B -     68340 - elf_segs_hash_verify_entry, Start 
 +B -    131183 - PBL, End 
 +B -    217617 - SBL1, Start 
 +B -    296917 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4 
 +B -    306799 - pm_device_init, Start 
 +B -    489891 - PM_SET_VAL:Skip 
 +D -    181170 - pm_device_init, Delta 
 +B -    492300 - pm_driver_init, Start 
 +D -      5368 - pm_driver_init, Delta 
 +B -    498675 - clock_init, Start 
 +D -      2135 - clock_init, Delta 
 +B -    502609 - boot_flash_init, Start 
 +D -     12566 - boot_flash_init, Delta 
 +B -    518957 - boot_config_data_table_init, Start 
 +D -      3111 - boot_config_data_table_init, Delta - (575 Bytes) 
 +B -    526460 - Boot Setting :  0x00000618 
 +B -    530364 - CDT version:2,Platform ID:8,Major ID:1,Minor ID:4,Sub 
 +type:0 
 +B -    537288 - sbl1_ddr_set_params, Start 
 +B -    541100 - CPR configuration: 0x30c 
 +B -    544455 - cpr_init, Start 
 +B -    547353 - Rail:0 Mode: 5 Voltage: 792000 
 +B -    552446 - CL CPR settled at 744000mV 
 +B -    555283 - Rail:1 Mode: 5 Voltage: 880000 
 +B -    559553 - Rail:1 Mode: 7 Voltage: 888000 
 +D -     16531 - cpr_init, Delta 
 +B -    566354 - Pre_DDR_clock_init, Start 
 +B -    570472 - Pre_DDR_clock_init, End 
 +B -    573766 - DDR Type : PCDDR3 
 +B -    579500 - do ddr sanity test, Start 
 +D -      1067 - do ddr sanity test, Delta 
 +B -    584258 - DDR: Start of HAL DDR Boot Training 
 +B -    588985 - DDR: End of HAL DDR Boot Training 
 +B -    594689 - DDR: Checksum to be stored on flash is 1377291785 
 +B -    604998 - Image Load, Start 
 +D -    224358 - QSEE Image Loaded, Delta - (1376448 Bytes) 
 +B -    829447 - Image Load, Start 
 +D -        61 - SEC Image Loaded, Delta - (0 Bytes) 
 +B -    837133 - Image Load, Start 
 +D -     10706 - DEVCFG Image Loaded, Delta - (26008 Bytes) 
 +B -    847930 - Image Load, Start 
 +D -     22021 - RPM Image Loaded, Delta - (86584 Bytes) 
 +B -    870043 - Image Load, Start 
 +D -    108915 - APPSBL Image Loaded, Delta - (672668 Bytes) 
 +B -    979111 - QSEE Execution, Start 
 +D -        91 - QSEE Execution, Delta 
 +B -    984906 - USB D+ check, Start 
 +D -         0 - USB D+ check, Delta 
 +B -    991280 - SBL1, End 
 +D -    775981 - SBL1, Delta 
 +S - Flash Throughput, 6744 KB/s  (2162955 Bytes,  320702 us) 
 +S - DDR Frequency, 466 MHz 
 +S - Core 0 Frequency, 1651 MHz 
 + 
 + 
 +U-Boot 2016.01 (Feb 25 2021 - 20:16:45 +0800) 
 + 
 +DRAM:  smem ram ptable found: ver: 1 len: 4 
 +1 GiB 
 +NAND:  Could not find nand_gpio in dts, using defaults 
 +ONFI device found 
 +ID = 158061c8 
 +Vendor = c8 
 +Device = 61 
 +SF: Unsupported flash IDs: manuf 00, jedec 1c78, ext_jedec 4a74 
 +ipq_spi: SPI Flash not found (bus/cs/speed/mode) = (0/0/48000000/0) 
 +128 MiB 
 +MMC:   <NULL>:
 +PCI0 is not defined in the device tree 
 +PCI1 is not defined in the device tree 
 +In:    serial@78B3000 
 +Out:   serial@78B3000 
 +Err:   serial@78B3000 
 +machid: 8010400 
 +Card did not respond to voltage select! 
 +eth0 MAC Address from ART is not valid 
 +eth1 MAC Address from ART is not valid 
 +eth2 MAC Address from ART is not valid 
 +eth3 MAC Address from ART is not valid 
 +eth4 MAC Address from ART is not valid 
 +eth5 MAC Address from ART is not valid 
 +gpio 38 set BOARD_3V9_5V_EN_GPIO to high[1]  
 +gpio 64 set PHY_QCA8081_1V8_EN_GPIO to high[1]  
 +gpio 33 set PHY_AR8033_3V3_EN_GPIO to high[1]  
 +gpio 35 set ONOFF_MODULE_5G_GPIO to low[0] ... 1s  
 +gpio 35 set ONOFF_MODULE_5G_GPIO to high[1] 
 +ubi0: attaching mtd1 
 +ubi0: scanning is finished 
 +ubi0: attached mtd1 (name "mtd=0", size 9 MiB) 
 +ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +ubi0: good PEBs: 72, bad PEBs: 0, corrupted PEBs: 0 
 +ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 
 +ubi0: max/mean erase counter: 15/8, WL threshold: 4096, image sequenc 
 +e number: 1097309032 
 +ubi0: available PEBs: 0, total reserved PEBs: 72, PEBs reserved for b 
 +ad PEB handling: 20 
 +Find no boot alter flag! 
 +Enter magic string to stop autoboot in 1 seconds 
 +Unmounting UBIFS volume ubi_factory_data! 
 +ubi0: detaching mtd1 
 +ubi0: mtd1 is detached 
 +ubi0: attaching mtd1 
 +ubi0: scanning is finished 
 +ubi0: attached mtd1 (name "mtd=0", size 42 MiB) 
 +ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes 
 +ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 
 +ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 
 +ubi0: good PEBs: 336, bad PEBs: 0, corrupted PEBs: 0 
 +ubi0: user volume: 3, internal volumes: 1, max. volumes count: 128 
 +ubi0: max/mean erase counter: 4/2, WL threshold: 4096, image sequence 
 + number: 473343929 
 +ubi0: available PEBs: 0, total reserved PEBs: 336, PEBs reserved for  
 +bad PEB handling: 20 
 +Read 0 bytes from volume kernel to 44000000 
 +No size specified -> Using max size (5332992) 
 +## Loading kernel from FIT Image at 44000000 ... 
 +   Using 'config@hk01.c5' configuration 
 +   Trying 'kernel-1' kernel subimage 
 +     Description:  ARM64 OpenWrt Linux-6.6.44 
 +     Type:         Kernel Image 
 +     Compression:  gzip compressed 
 +     Data Start:   0x440000e8 
 +     Data Size:    5177696 Bytes = 4.9 MiB 
 +     Architecture: AArch64 
 +     OS:           Linux 
 +     Load Address: 0x41000000 
 +     Entry Point:  0x41000000 
 +     Hash algo:    crc32 
 +     Hash value:   7967ebe7 
 +     Hash algo:    sha1 
 +     Hash value:   8fd37f2833dafd0dfed3db92f120db3e04416d79 
 +   Verifying Hash Integrity ... crc32+ sha1+ OK 
 +## Loading fdt from FIT Image at 44000000 ... 
 +   Using 'config@hk01.c5' configuration 
 +   Trying 'fdt-1' fdt subimage 
 +     Description:  ARM64 OpenWrt tplink_x80-5g device tree blob 
 +     Type:         Flat Device Tree 
 +     Compression:  uncompressed 
 +     Data Start:   0x444f0388 
 +     Data Size:    46489 Bytes = 45.4 KiB 
 +     Architecture: AArch64 
 +     Hash algo:    crc32 
 +     Hash value:   abe3e37d 
 +     Hash algo:    sha1 
 +     Hash value:   8dfcddfc3942742eadc498f05b143cc0b771d139 
 +   Verifying Hash Integrity ... crc32+ sha1+ OK 
 +   Booting using the fdt blob at 0x444f0388 
 +   Uncompressing Kernel Image ... OK 
 +   Loading Device Tree to 4a3f1000, end 4a3ff598 ... OK 
 +Could not find PCI in device tree 
 +Using machid 0x8010400 from environment 
 + 
 +Starting kernel ... 
 + 
 +Jumping to AARCH64 kernel via monitor 
 +[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x410fd034 
 +
 +[    0.000000] Linux version 6.6.44 (professor_jonny@MRSPARKLE) (aarc 
 +h64-openwrt-linux-musl-gcc (OpenWrt GCC 13.3.0 r26970-e6c9264351) 13. 
 +3.0, GNU ld (GNU Binutils) 2.42) #0 SMP Mon Aug 12 18:49:30 2024 
 +[    0.000000] Machine model: tplink x80-5g 
 +[    0.000000] OF: reserved mem: 0x0000000040000000..0x0000000040ffff 
 +ff (16384 KiB) nomap non-reusable nss@40000000 
 +[    0.000000] OF: reserved mem: 0x000000004a400000..0x000000004a5fff 
 +ff (2048 KiB) nomap non-reusable tzapp@4a400000 
 +[    0.000000] OF: reserved mem: 0x000000004a600000..0x000000004a9fff 
 +ff (4096 KiB) nomap non-reusable bootloader@4a600000 
 +[    0.000000] OF: reserved mem: 0x000000004aa00000..0x000000004aafff 
 +ff (1024 KiB) nomap non-reusable sbl@4aa00000 
 +[    0.000000] OF: reserved mem: 0x000000004ab00000..0x000000004abfff 
 +ff (1024 KiB) nomap non-reusable smem@4ab00000 
 +[    0.000000] OF: reserved mem: 0x000000004ac00000..0x000000004affff 
 +ff (4096 KiB) nomap non-reusable memory@4ac00000 
 +[    0.000000] OF: reserved mem: 0x000000004b000000..0x0000000050efff 
 +ff (97280 KiB) nomap non-reusable wcnss@4b000000 
 +[    0.000000] OF: reserved mem: 0x0000000050f00000..0x0000000050ffff 
 +ff (1024 KiB) nomap non-reusable q6_etr_dump@50f00000 
 +[    0.000000] OF: reserved mem: 0x0000000051000000..0x00000000510fff 
 +ff (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-0x0000000 
 +07fffffff] 
 +[    0.000000] psci: probing for conduit method from DT. 
 +[    0.000000] psci: PSCIv1.0 detected in firmware. 
 +[    0.000000] psci: Using standard PSCI v0.2 function IDs 
 +[    0.000000] psci: MIGRATE_INFO_TYPE not supported. 
 +[    0.000000] psci: SMC Calling Convention v1.0 
 +[    0.000000] percpu: Embedded 18 pages/cpu s35240 r8192 d30296 u737 
 +28 
 +[    0.000000] Detected VIPT I-cache on CPU0 
 +[    0.000000] alternatives: applying boot alternatives 
 +[    0.000000] Kernel command line: ubi.mtd=rootfs root=mtd:ubi_rootf 
 +s rootfstype=squashfs rootwait root=/dev/ubiblock0_1 
 +[    0.000000] Dentry cache hash table entries: 131072 (order: 8, 104 
 +8576 bytes, linear) 
 +[    0.000000] Inode-cache hash table entries: 65536 (order: 7, 52428 
 +8 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:of 
 +
 +[    0.000000] software IO TLB: SWIOTLB bounce buffer size adjusted t 
 +o 1MB 
 +[    0.000000] software IO TLB: area num 4. 
 +[    0.000000] software IO TLB: mapped [mem 0x000000007eb00000-0x0000 
 +00007ec00000] (1MB) 
 +[    0.000000] Memory: 885772K/1048576K available (8128K kernel code, 
 + 892K rwdata, 2500K rodata, 1472K init, 276K bss, 162804K reserved, 0 
 +K cma-reserved) 
 +[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nod 
 +es=1 
 +[    0.000000] rcu: Hierarchical RCU implementation. 
 +[    0.000000]  Tracing variant of Tasks RCU enabled. 
 +[    0.000000] rcu: RCU calculated value of scheduler-enlistment dela 
 +y 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 con 
 +tention. 
 +[    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.000129] Calibrating delay loop (skipped), value calculated usi 
 +ng timer frequency.. 38.40 BogoMIPS (lpj=192000) 
 +[    0.000142] pid_max: default: 32768 minimum: 301 
 +[    0.005160] Mount-cache hash table entries: 2048 (order: 2, 16384  
 +bytes, linear) 
 +[    0.005174] Mountpoint-cache hash table entries: 2048 (order: 2, 1 
 +6384 bytes, linear) 
 +[    0.009416] RCU Tasks Trace: Setting shift to 2 and lim to 1 rcu_t 
 +ask_cb_adjust=1. 
 +[    0.009641] rcu: Hierarchical SRCU implementation. 
 +[    0.009646] rcu:     Max phase no-delay instances is 1000. 
 +[    0.010569] smp: Bringing up secondary CPUs ... 
 +[    0.011229] Detected VIPT I-cache on CPU1 
 +[    0.011332] CPU1: Booted secondary processor 0x0000000001 [0x410fd 
 +034] 
 +[    0.012001] Detected VIPT I-cache on CPU2 
 +[    0.012070] CPU2: Booted secondary processor 0x0000000002 [0x410fd 
 +034] 
 +[    0.012721] Detected VIPT I-cache on CPU3 
 +[    0.012786] CPU3: Booted secondary processor 0x0000000003 [0x410fd 
 +034] 
 +[    0.012855] smp: Brought up 1 node, 4 CPUs 
 +[    0.012863] SMP: Total of 4 processors activated. 
 +[    0.012869] CPU features: detected: 32-bit EL0 Support 
 +[    0.012874] CPU features: detected: CRC32 instructions 
 +[    0.012943] CPU features: emulated: Privileged Access Never (PAN)  
 +using TTBR0_EL1 switching 
 +[    0.012950] CPU: All CPU(s) started at EL1 
 +[    0.012953] alternatives: applying system-wide alternatives 
 +[    0.023013] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xf 
 +fffffff, max_idle_ns: 19112604462750000 ns 
 +[    0.023042] futex hash table entries: 1024 (order: 4, 65536 bytes, 
 + linear) 
 +[    0.024776] pinctrl core: initialized pinctrl subsystem 
 +[    0.026479] NET: Registered PF_NETLINK/PF_ROUTE protocol family 
 +[    0.027055] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic a 
 +llocations 
 +[    0.027098] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for  
 +atomic allocations 
 +[    0.027132] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool fo 
 +r atomic allocations 
 +[    0.027519] thermal_sys: Registered thermal governor 'step_wise' 
 +[    0.027576] cpuidle: using governor menu 
 +[    0.027779] ASID allocator initialised with 65536 entries 
 +[    0.054062] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid  
 +fuse count: 4 
 +[    0.056925] Modules: 29408 pages in range for non-PLT usage 
 +[    0.056933] Modules: 520928 pages in range for PLT usage 
 +[    0.061698] SCSI subsystem initialized 
 +[    0.061902] usbcore: registered new interface driver usbfs 
 +[    0.061937] usbcore: registered new interface driver hub 
 +[    0.061985] usbcore: registered new device driver usb 
 +[    0.062436] qcom_scm: convention: smc arm 64 
 +[    0.064085] clocksource: Switched to clocksource arch_sys_counter 
 +[    0.067864] NET: Registered PF_INET protocol family 
 +[    0.068014] IP idents hash table entries: 16384 (order: 5, 131072  
 +bytes, linear) 
 +[    0.070595] tcp_listen_portaddr_hash hash table entries: 512 (orde 
 +r: 1, 8192 bytes, linear) 
 +[    0.070618] Table-perturb hash table entries: 65536 (order: 6, 262 
 +144 bytes, linear) 
 +[    0.070633] TCP established hash table entries: 8192 (order: 4, 65 
 +536 bytes, linear) 
 +[    0.070720] TCP bind hash table entries: 8192 (order: 6, 262144 by 
 +tes, linear) 
 +[    0.070992] TCP: Hash tables configured (established 8192 bind 819 
 +2) 
 +[    0.071095] UDP hash table entries: 512 (order: 2, 16384 bytes, li 
 +near) 
 +[    0.071133] UDP-Lite hash table entries: 512 (order: 2, 16384 byte 
 +s, linear) 
 +[    0.071609] NET: Registered PF_UNIX/PF_LOCAL protocol family 
 +[    0.071651] PCI: CLS 0 bytes, default 64 
 +[    0.073484] workingset: timestamp_bits=46 max_order=18 bucket_orde 
 +r=0 
 +[    0.074113] squashfs: version 4.0 (2009/01/31) Phillip Lougher 
 +[    0.074121] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CM 
 +ODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. 
 +[    0.080431] qcom-qmp-usb-phy 58000.phy: supply vdda-phy not found, 
 + using dummy regulator 
 +[    0.080571] qcom-qmp-usb-phy 58000.phy: supply vdda-pll not found, 
 + using dummy regulator 
 +[    0.081426] qcom-qmp-usb-phy 78000.phy: supply vdda-phy not found, 
 + using dummy regulator 
 +[    0.081575] qcom-qmp-usb-phy 78000.phy: supply vdda-pll not found, 
 + using dummy regulator 
 +[    0.082679] qcom-qusb2-phy 59000.phy: supply vdd not found, using  
 +dummy regulator 
 +[    0.082836] qcom-qusb2-phy 59000.phy: supply vdda-pll not found, u 
 +sing dummy regulator 
 +[    0.082879] qcom-qusb2-phy 59000.phy: supply vdda-phy-dpdm not fou 
 +nd, using dummy regulator 
 +[    0.083058] qcom-qusb2-phy 59000.phy: Registered Qcom-QUSB2 phy 
 +[    0.083272] qcom-qusb2-phy 79000.phy: supply vdd not found, using  
 +dummy regulator 
 +[    0.083398] qcom-qusb2-phy 79000.phy: supply vdda-pll not found, u 
 +sing dummy regulator 
 +[    0.083472] qcom-qusb2-phy 79000.phy: supply vdda-phy-dpdm not fou 
 +nd, using dummy regulator 
 +[    0.083643] qcom-qusb2-phy 79000.phy: Registered Qcom-QUSB2 phy 
 +[    0.091844] Serial: 8250/16550 driver, 2 ports, IRQ sharing disabl 
 +ed 
 +[    0.092838] msm_serial 78b3000.serial: msm_serial: detected port # 
 +
 +[    0.092893] msm_serial 78b3000.serial: uartclk = 3686400 
 +[    0.093209] 78b3000.serial: ttyMSM0 at MMIO 0x78b3000 (irq = 20, b 
 +ase_baud = 230400) is a MSM 
 +[    0.093242] msm_serial: console setup on port #0 
 +[    0.093283] printk: console [ttyMSM0] enabled 
 +[    0.901985] msm_serial: driver initialized 
 +[    0.911165] loop: module loaded 
 +[    0.912571] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0x 
 +61 
 +[    0.913121] nand: ESMT PSR1GA30DT 
 +[    0.919788] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 20 
 +48, OOB size: 64 
 +[    0.923982] spmi spmi-0: PMIC arbiter version v2 (0x20010000) 
 +[    0.985585] i2c_dev: i2c /dev entries driver 
 +[    0.991897] sdhci: Secure Digital Host Controller Interface driver 
 +[    0.991943] sdhci: Copyright(c) Pierre Ossman 
 +[    0.997045] sdhci-pltfm: SDHCI platform and OF driver helper 
 +[    1.003258] remoteproc remoteproc0: releasing cd00000.q6v5_wcss 
 +[    1.010962] NET: Registered PF_INET6 protocol family 
 +[    1.014030] Segment Routing with IPv6 
 +[    1.018059] In-situ OAM (IOAM) with IPv6 
 +[    1.021629] NET: Registered PF_PACKET protocol family 
 +[    1.025744] 8021q: 802.1Q VLAN Support v1.8 
 +[    1.061403] qcom,cpr4-apss-regulator b018000.cpr4-ctrl: CPR valid  
 +fuse count: 4 
 +[    1.061772] cpr4_ipq807x_apss_read_fuse_data: apc_corner: speed bi 
 +n = 0 
 +[    1.067578] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR fusi 
 +ng revision = 1 
 +[    1.074161] cpr4_ipq807x_apss_read_fuse_data: apc_corner: CPR misc 
 + fuse value = 0 
 +[    1.081792] cpr4_ipq807x_apss_read_fuse_data: apc_corner: Voltage  
 +boost fuse config = 0 boost = disable 
 +[    1.089325] cpr3_mem_acc_init: apc: not using memory accelerator r 
 +egulator 
 +[    1.098458] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_co 
 +rner: fused      SVS: open-loop= 704000 uV 
 +[    1.105409] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_co 
 +rner: fused      NOM: open-loop= 808000 uV 
 +[    1.115394] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_co 
 +rner: fused    TURBO: open-loop= 864000 uV 
 +[    1.125200] cpr4_ipq807x_apss_calculate_open_loop_voltages: apc_co 
 +rner: fused   STURBO: open-loop= 944000 uV 
 +[    1.135062] cpr4_ipq807x_apss_calculate_target_quotients: apc_corn 
 +er: fused      SVS: quot[ 7]= 767, quot_offset[ 7]=   0 
 +[    1.144822] cpr4_ipq807x_apss_calculate_target_quotients: apc_corn 
 +er: fused      NOM: quot[ 7]= 972, quot_offset[ 7]= 205 
 +[    1.155670] cpr4_ipq807x_apss_calculate_target_quotients: apc_corn 
 +er: fused    TURBO: quot[ 7]=1073, quot_offset[ 7]= 100 
 +[    1.166612] cpr4_ipq807x_apss_calculate_target_quotients: apc_corn 
 +er: fused   STURBO: quot[ 7]=1226, quot_offset[ 7]= 150 
 +[    1.177779] cpr3_regulator_init_ctrl: apc: Default CPR mode = clos 
 +ed-loop 
 +[    1.180467] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0x 
 +61 
 +[    1.195245] nand: ESMT PSR1GA30DT 
 +[    1.201639] nand: 128 MiB, SLC, erase size: 128 KiB, page size: 20 
 +48, OOB size: 64 
 +[    1.205306] 17 qcomsmem partitions found on MTD device qcom_nand.0 
 +[    1.212325] Creating 17 MTD partitions on "qcom_nand.0": 
 +[    1.218525] 0x000000000000-0x000000100000 : "0:sbl1" 
 +[    1.225526] 0x000000100000-0x000000200000 : "0:mibib" 
 +[    1.230284] 0x000000200000-0x000000280000 : "0:bootconfig" 
 +[    1.234827] 0x000000280000-0x000000300000 : "0:bootconfig1" 
 +[    1.240130] 0x000000300000-0x000000600000 : "0:qsee" 
 +[    1.247900] 0x000000600000-0x000000680000 : "0:devcfg" 
 +[    1.250843] 0x000000680000-0x000000700000 : "0:apdp" 
 +[    1.255831] 0x000000700000-0x000000780000 : "0:rpm" 
 +[    1.260902] 0x000000780000-0x000000800000 : "0:cdt" 
 +[    1.265756] 0x000000800000-0x000000980000 : "0:appsblenv" 
 +[    1.271275] 0x000000980000-0x000000b80000 : "0:appsbl" 
 +[    1.277351] 0x000000b80000-0x000000c00000 : "0:art" 
 +[    1.280960] 0x000000c00000-0x000003600000 : "rootfs" 
 +[    1.322828] mtd: setting mtd12 (rootfs) as root device 
 +[    1.323207] mtdsplit: no squashfs found in "rootfs" 
 +[    1.326934] 0x000003600000-0x000006000000 : "rootfs_1" 
 +[    1.370320] 0x000006000000-0x000006080000 : "0:ethphyfw" 
 +[    1.371329] 0x000006080000-0x000006980000 : "factory_data" 
 +[    1.383576] 0x000006980000-0x000007a80000 : "runtime_data" 
 +[    1.407745] cpufreq: cpufreq_online: CPU0: Running at unlisted ini 
 +tial frequency: 800000 KHz, changing to: 1017600 KHz 
 +[    1.409628] remoteproc remoteproc0: cd00000.q6v5_wcss is available 
 +[    1.417712] ubi0: attaching mtd12 
 +[    1.655198] ubi0: scanning is finished 
 +[    1.662605] ubi0: attached mtd12 (name "rootfs", size 42 MiB) 
 +[    1.662643] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 1269 
 +76 bytes 
 +[    1.667350] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page si 
 +ze 2048 
 +[    1.674115] ubi0: VID header offset: 2048 (aligned 2048), data off 
 +set: 4096 
 +[    1.680965] ubi0: good PEBs: 336, bad PEBs: 0, corrupted PEBs: 0 
 +[    1.687741] ubi0: user volume: 3, internal volumes: 1, max. volume 
 +s count: 128 
 +[    1.693987] ubi0: max/mean erase counter: 4/2, WL threshold: 4096, 
 + image sequence number: 473343929 
 +[    1.701032] ubi0: available PEBs: 0, total reserved PEBs: 336, PEB 
 +s reserved for bad PEB handling: 20 
 +[    1.709975] ubi0: background thread "ubi_bgt0d" started, PID 602 
 +[    1.719923] block ubiblock0_1: created from ubi0:1(ro?   1.73448 
 +5] VFS: Mounted root (squashfs filesystem) readonly on device 254:0. 
 +[    1.735007] Freeing unused kernel memory: 1472K 
 +[    1.740712] Run /sbin/init as init process 
 +[    1.923590] init: Console is alive 
 +[    1.923749] init: - watchdog - 
 +[    2.524754] kmodloader: loading kernel modules from /etc/modules-b 
 +oot.d/* 
 +[    2.557435] gpio_button_hotplug: loading out-of-tree module taints 
 + kernel. 
 +[    2.595392] ssdk_dt_parse_interrupt[941]:INFO:intr-gpio does not e 
 +xist 
 +[    4.294137] regi_init[2525]:INFO:Initializing HPPE Done!! 
 +[    4.294267] regi_init[2574]:INFO:qca-ssdk module init succeeded! 
 +[    4.300638] EDMA ver 1 hw init 
 +[    4.304840] EDMA HW Reset completed succesfully 
 +[    4.307494] Num rings - TxDesc:1 (23-23) TxCmpl:1 (7-7) 
 +[    4.311889] RxDesc:1 (15-15) RxFill:1 (7-7) 
 +[    4.317515] GMAC5(ffffff800374d900) Invalid MAC@ - using 26:d0:89: 
 +e6:ac:eb 
 +[    4.321270] dp5: ppe offload disabled: 0 for macid 5 
 +[    4.328219] dp5: Switch attached to macid 5 status: 0 
 +[    4.426259] Qualcomm QCA8081 90000.mdio-1:1c: attached PHY driver  
 +(mii_bus:phy_addr=90000.mdio-1:1c, irq=POLL) 
 +[    4.427141] GMAC6(ffffff800374b900) Invalid MAC@ - using 26:ad:0c: 
 +d7:44:f6 
 +[    4.435169] dp6-syn: ppe offload disabled: 0 for macid 6 
 +[    4.442005] dp6-syn: Switch attached to macid 6 status: 0 
 +[    4.524505] Qualcomm Atheros AR8031/AR8033 90000.mdio-1:04: attach 
 +ed PHY driver (mii_bus:phy_addr=90000.mdio-1:04, irq=POLL) 
 +[    4.525319] ****************************************************** 
 +**** 
 +[    4.534812] * NSS Data Plane driver 
 +[    4.541115] ****************************************************** 
 +**** 
 +[    4.562321] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller 
 +[    4.562381] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assi 
 +gned bus number 1 
 +[    4.566900] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220fe65 hci ve 
 +rsion 0x110 quirks 0x0000008002000010 
 +[    4.574310] xhci-hcd xhci-hcd.1.auto: irq 38, io mem 0x08a00000 
 +[    4.583766] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller 
 +[    4.589548] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assi 
 +gned bus number 2 
 +[    4.595104] xhci-hcd xhci-hcd.1.auto: Host supports USB 3.0 SuperS 
 +peed 
 +[    4.603050] hub 1-0:1.0: USB hub found 
 +[    4.609276] hub 1-0:1.0: 1 port detected 
 +[    4.613239] usb usb2: We don't know the algorithms for LPM for thi 
 +s host, disabling LPM. 
 +[    4.617499] hub 2-0:1.0: USB hub found 
 +[    4.625208] hub 2-0:1.0: 1 port detected 
 +[    4.629035] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller 
 +[    4.632775] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assi 
 +gned bus number 3 
 +[    4.638215] xhci-hcd xhci-hcd.2.auto: hcc params 0x0220fe65 hci ve 
 +rsion 0x110 quirks 0x0000008002000010 
 +[    4.645670] xhci-hcd xhci-hcd.2.auto: irq 39, io mem 0x08c00000 
 +[    4.655093] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller 
 +[    4.660897] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assi 
 +gned bus number 4 
 +[    4.666463] xhci-hcd xhci-hcd.2.auto: Host supports USB 3.0 SuperS 
 +peed 
 +[    4.674609] hub 3-0:1.0: USB hub found 
 +[    4.680617] hub 3-0:1.0: 1 port detected 
 +[    4.684668] usb usb4: We don't know the algorithms for LPM for thi 
 +s host, disabling LPM. 
 +[    4.688672] hub 4-0:1.0: USB hub found 
 +[    4.696504] hub 4-0:1.0: 1 port detected 
 +[    4.702753] kmodloader: done loading kernel modules from /etc/modu 
 +les-boot.d/
 +[    4.705919] init: - preinit - 
 +[    7.784080] random: crng init done 
 +/bin/board_detect: /etc/board.d/03_gpio_switches: line 5: 512: not fo 
 +und 
 +Press the [f] key and hit [enter] to enter failsafe mode 
 +Press the [1], [2], [3] or [4] key and hit [enter] to select the debu 
 +g level 
 +[    9.959699] UBIFS (ubi0:2): Mounting in unauthenticated mode 
 +[    9.959840] UBIFS (ubi0:2): background thread "ubifs_bgt0_2" start 
 +ed, PID 837 
 +[    9.997762] UBIFS (ubi0:2): recovery needed 
 +[   10.095746] UBIFS (ubi0:2): recovery completed 
 +[   10.095865] UBIFS (ubi0:2): UBIFS: mounted UBI device 0, volume 2, 
 + name "rootfs_data" 
 +[   10.099093] UBIFS (ubi0:2): LEB size: 126976 bytes (124 KiB), min. 
 +/max. I/O unit sizes: 2048 bytes/2048 bytes 
 +[   10.107013] UBIFS (ubi0:2): FS size: 22220800 bytes (21 MiB, 175 L 
 +EBs), max 185 LEBs, journal size 1142784 bytes (1 MiB, 9 LEBs) 
 +[   10.116905] UBIFS (ubi0:2): reserved for root: 1049543 bytes (1024 
 + KiB) 
 +[   10.128525] UBIFS (ubi0:2): media format: w5/r0 (latest is w5/r0), 
 + UUID 6F2A9AA2-0601-44C9-9ABB-95CF22F596A9, small LPT model 
 +[   10.139241] mount_root: switching to ubifs overlay 
 +[   10.150627] overlayfs: null uuid detected in lower fs '/', falling 
 + back to xino=off,index=off,nfs_export=off. 
 +[   10.156853] urandom-seed: Seeding with /etc/urandom.seed 
 +[   10.218480] procd: - early - 
 +[   10.218591] procd: - watchdog - 
 +Failed to connect to ubus 
 +[   10.755603] procd: - watchdog - 
 +[   10.755826] procd: - ubus - 
 +[   10.810851] procd: - init - 
 +Please press Enter to activate this console. 
 +[   11.100375] kmodloader: loading kernel modules from /etc/modules.d 
 +/* 
 +[   11.177288] jitterentropy: Initialization failed with host not com 
 +pliant with requirements:
 +[   11.273117] urngd: v1.0.2 started. 
 +[   11.281802] usbcore: registered new interface driver cdc_wdm 
 +[   11.282218] Loading modules backported from Linux version v6.9.9-0 
 +-g28fdf4518483 
 +[   11.286563] Backport generated by backports.git v6.1.97-1-29-gf1d2 
 +4a3683b2 
 +[   11.298563] NET: Registered PF_QIPCRTR protocol family 
 +[   11.302890] usbcore: registered new interface driver usbserial_gen 
 +eric 
 +[   11.305770] usbserial: USB Serial support registered for generic 
 +[   11.313785] usbcore: registered new interface driver cdc_ether 
 +[   11.319426] usbcore: registered new interface driver cdc_ncm 
 +[   11.362406] PPP generic driver version 2.4.2 
 +[   11.363248] NET: Registered PF_PPPOX protocol family 
 +[   11.366672] usbcore: registered new interface driver qmi_wwan 
 +[   11.379253] ath11k c000000.wifi: ipq8074 hw2.0 
 +[   11.379287] ath11k c000000.wifi: FW memory mode: 0 
 +[   11.405431] remoteproc remoteproc0: powering up cd00000.q6v5_wcss 
 +[   11.405807] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw 
 +.mdt, size 668 
 +[   12.530428] remoteproc remoteproc0: remote processor cd00000.q6v5_ 
 +wcss is now up 
 +[   12.574441] ath11k c000000.wifi: qmi ignore invalid mem req type 3 
 +[   12.581908] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board 
 +_id 0xff soc_id 0xffffffff 
 +[   12.581944] ath11k c000000.wifi: fw_version 0x290604a5 fw_build_ti 
 +mestamp 2023-10-12 02:06 fw_build_id WLAN.HK.2.9.0.1-01977-QCAHKSWPL_ 
 +SILICONZ-1 
 +[   17.955551] remoteproc remoteproc0: stopped remote processor cd000 
 +00.q6v5_wcss 
 +[   17.955595] remoteproc remoteproc0: powering up cd00000.q6v5_wcss 
 +[   17.961744] remoteproc remoteproc0: Booting fw image IPQ8074/q6_fw 
 +.mdt, size 668 
 +[   18.311610] remoteproc remoteproc0: remote processor cd00000.q6v5_ 
 +wcss is now up 
 +[   18.312779] usbcore: registered new interface driver cdc_mbim 
 +[   18.319761] usbcore: registered new interface driver option 
 +[   18.323750] usbserial: USB Serial support registered for GSM modem 
 + (1-port) 
 +[   18.330992] usbcore: registered new interface driver qcserial 
 +[   18.336102] usbserial: USB Serial support registered for Qualcomm  
 +USB modem 
 +[   18.356442] ath11k c000000.wifi: qmi ignore invalid mem req type 3 
 +[   18.360407] kmodloader: done loading kernel modules from /etc/modu 
 +les.d/* 
 +[   18.362960] ath11k c000000.wifi: chip_id 0x0 chip_family 0x0 board 
 +_id 0xff soc_id 0xffffffff 
 +[   18.368400] ath11k c000000.wifi: fw_version 0x290604a5 fw_build_ti 
 +mestamp 2023-10-12 02:06 fw_build_id WLAN.HK.2.9.0.1-01977-QCAHKSWPL_ 
 +SILICONZ-1 
 +[   18.669104] ath11k c000000.wifi: htt event 48 not handled 
 +[   21.011387] br-adults_lan: port 1(lan) entered blocking state 
 +[   21.011432] br-adults_lan: port 1(lan) entered disabled state 
 +[   21.016211] nss-dp 3a007000.dp6-syn lan: entered allmulticast mode 
 +[   21.022044] nss-dp 3a007000.dp6-syn lan: entered promiscuous mode 
 +[   21.608631] export_store: invalid GPIO 423 
 +[   21.653574] br-adults_lan: port 2(phy1-ap0) entered blocking state 
 +[   21.653624] br-adults_lan: port 2(phy1-ap0) entered disabled state 
 +[   21.658782] ath11k c000000.wifi phy1-ap0: entered allmulticast mod 
 +
 +[   21.665096] ath11k c000000.wifi phy1-ap0: entered promiscuous mode 
 +[   21.671225] br-adults_lan: port 2(phy1-ap0) entered blocking state 
 +[   21.677300] br-adults_lan: port 2(phy1-ap0) entered forwarding sta 
 +te 
 +[   21.947217] br-kids_lan: port 1(phy1-ap1) entered blocking state 
 +[   21.947267] br-kids_lan: port 1(phy1-ap1) entered disabled state 
 +[   21.952341] ath11k c000000.wifi phy1-ap1: entered allmulticast mod 
 +
 +[   21.958597] ath11k c000000.wifi phy1-ap1: entered promiscuous mode 
 +[   21.966684] br-kids_lan: port 1(phy1-ap1) entered blocking state 
 +[   21.970538] br-kids_lan: port 1(phy1-ap1) entered forwarding state 
 +[   22.771582] br-kids_lan: port 2(Kids_5.0g) entered blocking state 
 +[   22.771628] br-kids_lan: port 2(Kids_5.0g) entered disabled state 
 +[   22.776775] ath11k c000000.wifi Kids_5.0g: entered allmulticast mo 
 +de 
 +[   22.782945] ath11k c000000.wifi Kids_5.0g: entered promiscuous mod 
 +
 +[   23.302842] br-kids_lan: port 2(Kids_5.0g) entered blocking state 
 +[   23.302891] br-kids_lan: port 2(Kids_5.0g) entered forwarding stat 
 +
 +[   23.316855] br-adults_lan: port 3(Adults_5.0g) entered blocking st 
 +ate 
 +[   23.316908] br-adults_lan: port 3(Adults_5.0g) entered disabled st 
 +ate 
 +[   23.322389] ath11k c000000.wifi Adults_5.0g: entered allmulticast  
 +mode 
 +[   23.328970] ath11k c000000.wifi Adults_5.0g: entered promiscuous m 
 +ode 
 +[   23.336522] br-adults_lan: port 3(Adults_5.0g) entered blocking st 
 +ate 
 +[   23.341657] br-adults_lan: port 3(Adults_5.0g) entered forwarding  
 +state 
 +[   23.364258] ath11k c000000.wifi Adults_5.0g: left allmulticast mod 
 +
 +[   23.364318] ath11k c000000.wifi Adults_5.0g: left promiscuous mode 
 +[   23.369419] br-adults_lan: port 3(Adults_5.0g) entered disabled st 
 +ate 
 +[   23.426205] br-adults_lan: port 3(Adults_5.0g) entered blocking st 
 +ate 
 +[   23.426250] br-adults_lan: port 3(Adults_5.0g) entered disabled st 
 +ate 
 +[   23.431665] ath11k c000000.wifi Adults_5.0g: entered allmulticast  
 +mode 
 +[   23.438307] ath11k c000000.wifi Adults_5.0g: entered promiscuous m 
 +ode 
 +[   23.444587] br-adults_lan: port 3(Adults_5.0g) entered blocking st 
 +ate 
 +[   23.450991] br-adults_lan: port 3(Adults_5.0g) entered forwarding  
 +state 
 +[   25.204492] nss-dp 3a007000.dp6-syn lan: PHY Link up speed: 1000 
 +[   25.204585] br-adults_lan: port 1(lan) entered blocking state 
 +[   25.209583] br-adults_lan: port 1(lan) entered forwarding state 
 +[   28.644487] platform phy-leds: deferred probe pending 
 +[   31.844185] l11: disabling 
 +[   38.774105] usb 1-1: new high-speed USB device number 2 using xhci 
 +-hcd 
 +[   39.068217] option 1-1:1.0: GSM modem (1-port) converter detected 
 +[   39.068522] usb 1-1: GSM modem (1-port) converter now attached to  
 +ttyUSB0 
 +[   39.073738] option 1-1:1.1: GSM modem (1-port) converter detected 
 +[   39.080508] usb 1-1: GSM modem (1-port) converter now attached to  
 +ttyUSB1 
 +[   39.086559] option 1-1:1.2: GSM modem (1-port) converter detected 
 +[   39.093315] usb 1-1: GSM modem (1-port) converter now attached to  
 +ttyUSB2 
 +[   39.099454] option 1-1:1.3: GSM modem (1-port) converter detected 
 +[   39.106172] usb 1-1: GSM modem (1-port) converter now attached to  
 +ttyUSB3 
 + 
 + 
 + 
 +BusyBox v1.36.1 (2024-08-08 21:48:47 UTC) built-in shell (ash) 
 + 
 +  _______                     ________        __ 
 +       |.-----.-----.-----.|  |  |  |.----.|  |_ 
 +     ||  _  |  -__|     ||  |  |  ||   _||   _| 
 + |_______||   __|_____|__|__||________||__|  |____| 
 +          |__| W I R E L E S S   F R E E D O M 
 + ----------------------------------------------------- 
 + OpenWrt SNAPSHOT, r27126-38a87b1b8d 
 + ----------------------------------------------------- 
 +root@OpenWrt:/#  </nowiki>
 </WRAP>\\ </WRAP>\\
 +
 +
 +
 +==== Devices ====
 +<WRAP bootlog>
 +<nowiki>
 +cat /proc/devices
 +Character devices:
 +  1 mem
 +  5 /dev/tty
 +  5 /dev/console
 +  5 /dev/ptmx
 + 10 misc
 + 13 input
 + 29 fb
 + 89 i2c
 + 90 mtd
 +116 alsa
 +128 ptm
 +136 pts
 +153 spi
 +180 usb
 +189 usb_device
 +239 flash_chrdev
 +241 ubi0
 +242 subsys
 +243 nvme
 +244 ttyMSM
 +245 ttyMSM
 +246 dcc_sram
 +247 mhi_uci
 +248 watchdog
 +249 iio
 +250 ptp
 +251 pps
 +252 rtc
 +253 msm_sps
 +254 rpmsg
 +
 +Block devices:
 +  1 ramdisk
 +259 blkext
 + 31 mtdblock
 +179 mmc
 +253 ubiblock
 +254 nvme
 +root@(none):/# 
 +</nowiki>
 +</WRAP>\\
 +==== Stock configuration (AP-HK01-C5.dts) ====
 +<WRAP bootlog>
 +<nowiki>
 +/dts-v1/;
 +/*
 + * Copyright (c) 2017-2019, The Linux Foundation. All rights reserved.
 + *
 + * Permission to use, copy, modify, and/or distribute this software for any
 + * purpose with or without fee is hereby granted, provided that the above
 + * copyright notice and this permission notice appear in all copies.
 + *
 + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 + */
 +#include "qcom-ipq807x-soc.dtsi"
 +#include "qcom-ipq807x-hk-cpu.dtsi"
 +#include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
 +
 +/ {
 + #address-cells = <0x2>;
 + #size-cells = <0x2>;
 + model = "Qualcomm Technologies, Inc. IPQ807x/AP-HK01-C5";
 + compatible = "qcom,ipq807x-hk01", "qcom,ipq807x";
 + qcom,msm-id = <0x143 0x0>, <0x158 0x0>, <0x186 0x0>, <0x188 0x0>;
 + interrupt-parent = <&intc>;
 + qcom,board-id = <0x8 0x0>;
 + qcom,pmic-id = <0x0 0x0 0x0 0x0>;
 +
 + aliases {
 + sdhc1 = &sdhc_1; /* SDC1 eMMC slot */
 + /*
 + * Aliases as required by u-boot
 + * to patch MAC addresses
 + */
 + ethernet0 = "/soc/dp1";
 + ethernet1 = "/soc/dp2";
 + ethernet2 = "/soc/dp3";
 + ethernet3 = "/soc/dp4";
 + ethernet4 = "/soc/dp5";
 + ethernet5 = "/soc/dp6"; 
 + };
 +
 + chosen {
 + bootargs = "console=ttyMSM0,115200,n8 root=/dev/ram0 rw init=/init";
 + bootargs-append = " swiotlb=1";
 + };
 +};
 +
 +&spmi_bus {
 + pmic@0 {
 + compatible ="qcom,spmi-pmic";
 + reg = <0x0 SPMI_USID>;
 + #address-cells = <1>;
 + #size-cells = <0>;
 +
 + pmm8074_gpios: gpios@c000 {
 + compatible = "qcom,pma8084-gpio";
 + reg = <0xc000 0xc00>;
 + gpio-controller;
 + #gpio-cells = <2>;
 + interrupts = <0 0xc0 0 IRQ_TYPE_NONE>,
 +      <0 0xc1 0 IRQ_TYPE_NONE>,
 +      <0 0xc2 0 IRQ_TYPE_NONE>,
 +      <0 0xc3 0 IRQ_TYPE_NONE>,
 +      <0 0xc4 0 IRQ_TYPE_NONE>,
 +      <0 0xc5 0 IRQ_TYPE_NONE>,
 +      <0 0xc6 0 IRQ_TYPE_NONE>,
 +      <0 0xc7 0 IRQ_TYPE_NONE>,
 +      <0 0xc8 0 IRQ_TYPE_NONE>,
 +      <0 0xc9 0 IRQ_TYPE_NONE>,
 +      <0 0xca 0 IRQ_TYPE_NONE>,
 +      <0 0xcb 0 IRQ_TYPE_NONE>;
 + pinctrl-0 = <&pmm8074_gpio>;
 + pinctrl-names = "default";
 +
 + pmm8074_gpio: pmm8074_gpio {
 + pinconf {
 + pins = "gpio6";
 + function = PMIC_GPIO_FUNC_NORMAL;
 + bias-pull-up;
 + output-high;
 + };
 + };
 + };
 + };
 +};
 +
 +&tlmm {
 + pinctrl-0 = <&pcie_sdx_gpio>;
 + pinctrl-names = "default";
 + pcie_sdx_gpio: pcie_sdx_gpio {
 + ap2mdm_err_ftl {
 + pins = "gpio27";
 + function = "gpio";
 + drive-strength = <8>;
 + bias-pull-down;
 + };
 + sdx_pon_gpio {
 + pins = "gpio30";
 + function = "gpio";
 + drive-strength = <8>;
 + bias-pull-up;
 + output-high;
 + };
 + ap2mdm_status {
 + pins = "gpio26";
 + function = "gpio";
 + drive-strength = <8>;
 + bias-pull-up;
 + output-high;
 + };
 + };
 +
 + pcie_wake_pins: pcie0_wake_gpio {
 + pins = "gpio59";
 + function = "pcie0_wake";
 + drive-strength = <8>;
 + bias-pull-up;
 + };
 +
 + mdio_pins: mdio_pinmux {
 + mux_0 {
 + pins = "gpio68";
 + function = "mdc";
 + drive-strength = <8>;
 + bias-pull-up;
 + };
 + mux_1 {
 + pins = "gpio69";
 + function = "mdio";
 + drive-strength = <8>;
 + bias-pull-up;
 + };
 + mux_2 {
 + pins = "gpio37";
 + function = "gpio";
 + bias-pull-up;
 + };
 + mux_3 {
 + pins = "gpio44";
 + function = "gpio";
 + bias-pull-up;
 + };
 + };
 +
 + uart_pins: uart_pins {
 + mux {
 + pins = "gpio23", "gpio24";
 + function = "blsp4_uart1";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + };
 +
 + qpic_pins: qpic_pins {
 + data_0 {
 + pins = "gpio15";
 + function = "qpic_pad0";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_1 {
 + pins = "gpio12";
 + function = "qpic_pad1";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_2 {
 + pins = "gpio13";
 + function = "qpic_pad2";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_3 {
 + pins = "gpio14";
 + function = "qpic_pad3";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_4 {
 + pins = "gpio5";
 + function = "qpic_pad4";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_5 {
 + pins = "gpio6";
 + function = "qpic_pad5";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_6 {
 + pins = "gpio7";
 + function = "qpic_pad6";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_7 {
 + pins = "gpio8";
 + function = "qpic_pad7";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + data_8 {
 + pins = "gpio16";
 + function = "qpic_pad8";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + qpic_pad {
 + pins = "gpio0", "gpio1", "gpio2", "gpio3", "gpio4",
 +        "gpio9", "gpio10", "gpio11", "gpio17";
 + function = "qpic_pad";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + };
 +
 + hsuart_pins: hsuart_pins {
 + mux {
 + pins = "gpio46", "gpio47", "gpio48", "gpio49";
 + function = "blsp2_uart";
 + drive-strength = <8>;
 + bias-disable;
 + };
 + };
 +
 + fan_pins: fan_pins {
 + mux {
 + pins = "gpio40", "gpio41", "gpio42";
 + function = "gpio";
 + drive-strength = <2>;
 + bias-disable;
 + };
 + };
 +
 + antenna_pins: antenna_pins {
 + ext_antenna_en {
 + pins = "gpio56";
 + function = "gpio";
 + drive-strength = <2>;
 + bias-disable;
 + };
 + };
 +
 + modem_pins: modem_pins {
 + modem_reset {
 + pins = "gpio29";
 + function = "gpio";
 + drive-strength = <2>;
 + bias-disable;
 + };
 +
 + w_disable {
 + pins = "gpio55";
 + function = "gpio";
 + drive-strength = <2>;
 + bias-disable;
 + };
 + };
 +
 + ledc_pins: ledc_pinmux {
 + led_clk {
 + pins = "gpio18";
 + function = "led0";
 + drive-strength = <8>;
 + bias-pull-down;
 + };
 + led_data {
 + pins = "gpio19";
 + function = "led1";
 + drive-strength = <8>;
 + bias-pull-down;
 + };
 + led_clr {
 + pins = "gpio20";
 + function = "led2";
 + drive-strength = <8>;
 + bias-pull-up;
 + };
 + };
 +};
 +
 +&soc {
 + mdio: mdio@90000 {
 + pinctrl-0 = <&mdio_pins>;
 + pinctrl-names = "default";
 + phy-reset-gpio = <&tlmm 44 0 &tlmm 37 1>;
 + compatible = "qcom,ipq40xx-mdio", "qcom,qca-mdio";
 + phy0: ethernet-phy@0 {
 + reg = <0>;
 + };
 + phy1: ethernet-phy@1 {
 + reg = <1>;
 + };
 + phy2: ethernet-phy@2 {
 + reg = <2>;
 + };
 + phy3: ethernet-phy@3 {
 + reg = <3>;
 + };
 + phy4: ethernet-phy@4 {
 + reg = <28>;
 + };
 + phy5: ethernet-phy@5 {
 + reg = <4>;
 + };
 + };
 +
 + ess-switch@3a000000 {
 + switch_cpu_bmp = <0x1>;  /* cpu port bitmap */
 + switch_lan_bmp = <0x3e>; /* lan port bitmap */
 + switch_wan_bmp = <0x40>; /* wan port bitmap */
 + switch_mac_mode = <0x0>; /* mac mode for uniphy instance0*/
 + switch_mac_mode1 = <0xf>; /* mac mode for uniphy instance1*/
 + switch_mac_mode2 = <0xf>; /* mac mode for uniphy instance2*/
 + bm_tick_mode = <0>; /* bm tick mode */
 + tm_tick_mode = <0>; /* tm tick mode */
 + qcom,port_phyinfo {
 + port@0 {
 + port_id = <1>;
 + phy_address = <0>;
 + };
 + port@1 {
 + port_id = <2>;
 + phy_address = <1>;
 + };
 + port@2 {
 + port_id = <3>;
 + phy_address = <2>;
 + };
 + port@3 {
 + port_id = <4>;
 + phy_address = <3>;
 + };
 + port@4 {
 + port_id = <5>;
 + phy_address = <28>;
 + port_mac_sel="QGMAC_PORT";
 + };
 + port@5 {
 + port_id = <6>;
 + phy_address = <4>;
 + };
 + };
 + port_scheduler_resource {
 + port@0 {
 + port_id = <0>;
 + ucast_queue = <0 143>;
 + mcast_queue = <256 271>;
 + l0sp = <0 35>;
 + l0cdrr = <0 47>;
 + l0edrr = <0 47>;
 + l1cdrr = <0 7>;
 + l1edrr = <0 7>;
 + };
 + port@1 {
 + port_id = <1>;
 + ucast_queue = <144 159>;
 + mcast_queue = <272 275>;
 + l0sp = <36 39>;
 + l0cdrr = <48 63>;
 + l0edrr = <48 63>;
 + l1cdrr = <8 11>;
 + l1edrr = <8 11>;
 + };
 + port@2 {
 + port_id = <2>;
 + ucast_queue = <160 175>;
 + mcast_queue = <276 279>;
 + l0sp = <40 43>;
 + l0cdrr = <64 79>;
 + l0edrr = <64 79>;
 + l1cdrr = <12 15>;
 + l1edrr = <12 15>;
 + };
 + port@3 {
 + port_id = <3>;
 + ucast_queue = <176 191>;
 + mcast_queue = <280 283>;
 + l0sp = <44 47>;
 + l0cdrr = <80 95>;
 + l0edrr = <80 95>;
 + l1cdrr = <16 19>;
 + l1edrr = <16 19>;
 + };
 + port@4 {
 + port_id = <4>;
 + ucast_queue = <192 207>;
 + mcast_queue = <284 287>;
 + l0sp = <48 51>;
 + l0cdrr = <96 111>;
 + l0edrr = <96 111>;
 + l1cdrr = <20 23>;
 + l1edrr = <20 23>;
 + };
 + port@5 {
 + port_id = <5>;
 + ucast_queue = <208 223>;
 + mcast_queue = <288 291>;
 + l0sp = <52 55>;
 + l0cdrr = <112 127>;
 + l0edrr = <112 127>;
 + l1cdrr = <24 27>;
 + l1edrr = <24 27>;
 + };
 + port@6 {
 + port_id = <6>;
 + ucast_queue = <224 239>;
 + mcast_queue = <292 295>;
 + l0sp = <56 59>;
 + l0cdrr = <128 143>;
 + l0edrr = <128 143>;
 + l1cdrr = <28 31>;
 + l1edrr = <28 31>;
 + };
 + port@7 {
 + port_id = <7>;
 + ucast_queue = <240 255>;
 + mcast_queue = <296 299>;
 + l0sp = <60 63>;
 + l0cdrr = <144 159>;
 + l0edrr = <144 159>;
 + l1cdrr = <32 35>;
 + l1edrr = <32 35>;
 + };
 + };
 + port_scheduler_config {
 + port@0 {
 + port_id = <0>;
 + l1scheduler {
 + group@0 {
 + sp = <0 1>; /*L0 SPs*/
 + /*cpri cdrr epri edrr*/
 + cfg = <0 0 0 0>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + /*unicast queues*/
 + ucast_queue = <0 4 8>;
 + /*multicast queues*/
 + mcast_queue = <256 260>;
 + /*sp cpri cdrr epri edrr*/
 + cfg = <0 0 0 0 0>;
 + };
 + group@1 {
 + ucast_queue = <1 5 9>;
 + mcast_queue = <257 261>;
 + cfg = <0 1 1 1 1>;
 + };
 + group@2 {
 + ucast_queue = <2 6 10>;
 + mcast_queue = <258 262>;
 + cfg = <0 2 2 2 2>;
 + };
 + group@3 {
 + ucast_queue = <3 7 11>;
 + mcast_queue = <259 263>;
 + cfg = <0 3 3 3 3>;
 + };
 + };
 + };
 + port@1 {
 + port_id = <1>;
 + l1scheduler {
 + group@0 {
 + sp = <36>;
 + cfg = <0 8 0 8>;
 + };
 + group@1 {
 + sp = <37>;
 + cfg = <1 9 1 9>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <144>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <272>;
 + mcast_loop_pri = <4>;
 + cfg = <36 0 48 0 48>;
 + };
 + };
 + };
 + port@2 {
 + port_id = <2>;
 + l1scheduler {
 + group@0 {
 + sp = <40>;
 + cfg = <0 12 0 12>;
 + };
 + group@1 {
 + sp = <41>;
 + cfg = <1 13 1 13>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <160>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <276>;
 + mcast_loop_pri = <4>;
 + cfg = <40 0 64 0 64>;
 + };
 + };
 + };
 + port@3 {
 + port_id = <3>;
 + l1scheduler {
 + group@0 {
 + sp = <44>;
 + cfg = <0 16 0 16>;
 + };
 + group@1 {
 + sp = <45>;
 + cfg = <1 17 1 17>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <176>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <280>;
 + mcast_loop_pri = <4>;
 + cfg = <44 0 80 0 80>;
 + };
 + };
 + };
 + port@4 {
 + port_id = <4>;
 + l1scheduler {
 + group@0 {
 + sp = <48>;
 + cfg = <0 20 0 20>;
 + };
 + group@1 {
 + sp = <49>;
 + cfg = <1 21 1 21>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <192>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <284>;
 + mcast_loop_pri = <4>;
 + cfg = <48 0 96 0 96>;
 + };
 + };
 + };
 + port@5 {
 + port_id = <5>;
 + l1scheduler {
 + group@0 {
 + sp = <52>;
 + cfg = <0 24 0 24>;
 + };
 + group@1 {
 + sp = <53>;
 + cfg = <1 25 1 25>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <208>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <288>;
 + mcast_loop_pri = <4>;
 + cfg = <52 0 112 0 112>;
 + };
 + };
 + };
 + port@6 {
 + port_id = <6>;
 + l1scheduler {
 + group@0 {
 + sp = <56>;
 + cfg = <0 28 0 28>;
 + };
 + group@1 {
 + sp = <57>;
 + cfg = <1 29 1 29>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <224>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <292>;
 + mcast_loop_pri = <4>;
 + cfg = <56 0 128 0 128>;
 + };
 + };
 + };
 + port@7 {
 + port_id = <7>;
 + l1scheduler {
 + group@0 {
 + sp = <60>;
 + cfg = <0 32 0 32>;
 + };
 + group@1 {
 + sp = <61>;
 + cfg = <1 33 1 33>;
 + };
 + };
 + l0scheduler {
 + group@0 {
 + ucast_queue = <240>;
 + ucast_loop_pri = <16>;
 + mcast_queue = <296>;
 + cfg = <60 0 144 0 144>;
 + };
 + };
 + };
 + };
 + };
 +
 + dp1 {
 + device_type = "network";
 + compatible = "qcom,nss-dp";
 + qcom,id = <1>;
 + reg = <0x3a001000 0x200>;
 + qcom,mactype = <0>;
 + local-mac-address = [000000000000];
 + qcom,link-poll = <1>;
 + qcom,phy-mdio-addr = <0>;
 + phy-mode = "sgmii";
 + };
 +
 + dp2 {
 + device_type = "network";
 + compatible = "qcom,nss-dp";
 + qcom,id = <2>;
 + reg = <0x3a001200 0x200>;
 + qcom,mactype = <0>;
 + local-mac-address = [000000000000];
 + qcom,link-poll = <1>;
 + qcom,phy-mdio-addr = <1>;
 + phy-mode = "sgmii";
 + };
 +
 + dp3 {
 + device_type = "network";
 + compatible = "qcom,nss-dp";
 + qcom,id = <3>;
 + reg = <0x3a001400 0x200>;
 + qcom,mactype = <0>;
 + local-mac-address = [000000000000];
 + qcom,link-poll = <1>;
 + qcom,phy-mdio-addr = <2>;
 + phy-mode = "sgmii";
 + };
 +
 + dp4 {
 + device_type = "network";
 + compatible = "qcom,nss-dp";
 + qcom,id = <4>;
 + reg = <0x3a001600 0x200>;
 + qcom,mactype = <0>;
 + local-mac-address = [000000000000];
 + qcom,link-poll = <1>;
 + qcom,phy-mdio-addr = <3>;
 + phy-mode = "sgmii";
 + };
 +
 + dp5 {
 + device_type = "network";
 + compatible = "qcom,nss-dp";
 + qcom,id = <5>;
 + reg = <0x3a001800 0x200>;
 + qcom,mactype = <0>;
 + local-mac-address = [000000000000];
 + qcom,link-poll = <1>;
 + qcom,phy-mdio-addr = <28>;
 + phy-mode = "sgmii";
 + };
 +
 + dp6 {
 + device_type = "network";
 + compatible = "qcom,nss-dp";
 + qcom,id = <6>;
 + reg = <0x3a007000 0x3fff>;
 + qcom,mactype = <0>;
 + local-mac-address = [000000000000];
 + qcom,link-poll = <1>;
 + qcom,phy-mdio-addr = <4>;
 + phy-mode = "sgmii";
 + };
 +
 + gpio_keys {
 + compatible = "gpio-keys";
 +
 + button@1 {
 + label = "reset";
 + linux,code = <KEY_RESTART>;
 + gpios = <&tlmm 27 GPIO_ACTIVE_LOW>;
 + linux,input-type = <1>;
 + };
 + };
 +
 + fans {
 + compatible = "gpio-fan";
 + pinctrl-0 = <&fan_pins>;
 + pinctrl-names = "default";
 + fan1 {
 + label = "fan1";
 + gpios = <&tlmm 40 GPIO_ACTIVE_HIGH>;
 + };
 + fan2 {
 + label = "fan2";
 + gpios = <&tlmm 41 GPIO_ACTIVE_HIGH>;
 + };
 + fan3 {
 + label = "fan3";
 + gpios = <&tlmm 42 GPIO_ACTIVE_HIGH>;
 + };
 + };
 +
 + antennas {
 + compatible = "gpio-antenna";
 + pinctrl-0 = <&antenna_pins>;
 + pinctrl-names = "default";
 + ext_antenna_en {
 + label = "ext_antenna_en";
 + gpios = <&tlmm 56 GPIO_ACTIVE_HIGH>;
 + };
 + };
 +
 + modem {
 + compatible = "gpio-modem";
 + pinctrl-0 = <&modem_pins>;
 + pinctrl-names = "default";
 + modem_reset {
 + label = "modem_reset";
 + gpios = <&tlmm 29 GPIO_ACTIVE_LOW>;
 + };
 +
 + w_disable {
 + label = "w_disable";
 + gpios = <&tlmm 55 GPIO_ACTIVE_LOW>;
 + };
 + };
 +
 + leds {
 + compatible = "gpio-leds";
 +
 + red {
 + gpios = <&tlmm 51 GPIO_ACTIVE_HIGH>;
 + default-state = "on";
 + };
 + green {
 + gpios = <&tlmm 50 GPIO_ACTIVE_HIGH>;
 + default-state = "on";
 + };
 + blue {
 + gpios = <&tlmm 52 GPIO_ACTIVE_HIGH>;
 + default-state = "off";
 + };
 +
 + yellow_mix {
 + default-state = "off";
 + virtuals = <0>, <1>, <3>;
 + };
 + blue_mix {
 + default-state = "off";
 + virtuals = <1>, <2>, <3>;
 + };
 + };
 +};
 +
 +&serial_blsp4 {
 + pinctrl-0 = <&uart_pins>;
 + pinctrl-names = "default";
 + status = "ok";
 +};
 +
 +
 +&serial_blsp2 {
 + pinctrl-0 = <&hsuart_pins>;
 + pinctrl-names = "default";
 + status = "ok";
 +};
 +
 +&msm_imem {
 + status = "enabled";
 +};
 +
 +&ssphy_0 {
 + status = "ok";
 +};
 +
 +&qusb_phy_0 {
 + status = "ok";
 +};
 +
 +&ssphy_1 {
 + status = "ok";
 +};
 +
 +&qusb_phy_1 {
 + status = "ok";
 +};
 +
 +&usb3_0 {
 + status = "ok";
 +};
 +
 +&usb3_1 {
 + status = "ok";
 +};
 +
 +&cryptobam {
 + status = "ok";
 +};
 +
 +&crypto {
 + status = "ok";
 +};
 +
 +&sdhc_1 {
 + qcom,clk-rates = <400000 25000000 50000000 100000000 \
 + 192000000 384000000>;
 + qcom,bus-speed-mode = "HS400_1p8v", "HS200_1p8v", "DDR_1p8v";
 + qcom,nonremovable;
 + status = "ok";
 +};
 +
 +&qpic_bam {
 + status = "ok";
 +};
 +
 +&nand {
 + pinctrl-0 = <&qpic_pins>;
 + pinctrl-names = "default";
 + status = "ok";
 +};
 +
 +&pcie0 {
 + interrupts-extended = <&intc 0 52 0>, <&intc 0 416 0>, <&intc 0 417 0>,
 + <&intc 0 418 0>, <&intc 0 419 0>, <&intc 0 420 0>,
 + <&intc 0 421 0>, <&intc 0 422 0>, <&intc 0 423 0>,
 + <&intc 0 424 0>, <&intc 0 425 0>, <&intc 0 426 0>,
 + <&intc 0 427 0>, <&intc 0 428 0>, <&intc 0 429 0>,
 + <&intc 0 430 0>, <&intc 0 431 0>, <&tlmm 59 0>,
 + <&tlmm 33 0>;
 +
 + interrupt-names = "msi", "msi_0", "msi_1",
 + "msi_2", "msi_3", "msi_4",
 + "msi_5", "msi_6", "msi_7",
 + "msi_8", "msi_9", "msi_10",
 + "msi_11", "msi_12", "msi_13",
 + "msi_14", "msi_15", "wake_gpio";
 +
 + pinctrl-0 = <&pcie_wake_pins>;
 + pinctrl-names = "default";
 + link_retries_count = <10>;
 + use_delay = <0>;
 +};
 +
 +&pcie1 {
 + status = "disabled";
 +};
 +
 +&qpic_lcd {
 + status = "ok";
 +};
 +
 +&qpic_lcd_panel {
 + status = "ok";
 +};
 +
 +&ledc {
 + pinctrl-0 = <&ledc_pins>;
 + pinctrl-names = "default";
 + status = "ok";
 + led0 {
 + label = "ipq::led0";
 + linux,default-trigger = "led_wifi_son_green";
 + };
 + led1 {
 + label = "ipq::led1";
 + linux,default-trigger = "led_wifi_son_orange";
 + };
 + led2 {
 + label = "ipq::led2";
 + linux,default-trigger = "led_wifi_son_blue";
 + };
 + led3 {
 + label = "ipq::led3";
 + linux,default-trigger = "led_2g";
 + };
 + led4 {
 + label = "ipq::led4";
 + linux,default-trigger = "led_5gl";
 + };
 + led5 {
 + label = "ipq::led5";
 + linux,default-trigger = "led_5gh";
 + };
 + led6 {
 + label = "ipq::led6";
 + linux,default-trigger = "led_lan";
 + };
 + led7 {
 + label = "ipq::led7";
 + linux,default-trigger = "led_wan";
 + };
 + led8 {
 + label = "ipq::led8";
 + linux,default-trigger = "led_10g_link";
 + };
 + led9 {
 + label = "ipq::led9";
 + linux,default-trigger = "led_sfp";
 + };
 + led10 {
 + label = "ipq::led10";
 + linux,default-trigger = "led_bt";
 + };
 + led11 {
 + label = "ipq::led11";
 + linux,default-trigger = "none";
 + };
 + led12 {
 + label = "ipq::led12";
 + linux,default-trigger = "none";
 + };
 +};
 +
 +&watchdog {
 + mhi-wdt-panic-enable;
 +};
 +
 +&pcie0_rp {
 +
 + #address-cells = <5>;
 + #size-cells = <0>;
 +
 + status = "ok";
 + aliases {
 + mhi-netdev0 = &mhi_netdev_0;
 + mhi_netdev2 = &mhi_netdev_2;
 + };
 + mhi_0: qcom,mhi@0 {
 + reg = <0 0 0 0 0 >;
 +
 + ap2mdm = <26>;
 + mdm2ap = <25>;
 +
 + /* controller specific configuration */
 + qcom,iommu-dma = "disabled";
 +
 +
 + /* mhi bus specific settings */
 + mhi,max-channels = <110>;
 + mhi,timeout = <60000>;
 + mhi,ssr-negotiate;
 +
 + mhi_channels: mhi_channels {
 + #address-cells = <1>;
 + #size-cells = <0>;
 +
 + mhi_chan@0 {
 + reg = <0>;
 + label = "LOOPBACK";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <2>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@1 {
 + reg = <1>;
 + label = "LOOPBACK";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <2>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@4 {
 + reg = <4>;
 + label = "DIAG";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <1>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@5 {
 + reg = <5>;
 + label = "DIAG";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <3>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@14 {
 + reg = <14>;
 + label = "QMI0";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <1>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@15 {
 + reg = <15>;
 + label = "QMI0";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <2>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@16 {
 + reg = <16>;
 + label = "QMI1";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <3>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@17 {
 + reg = <17>;
 + label = "QMI1";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <3>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@18 {
 + reg = <18>;
 + label = "IP_CTRL";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <1>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@19 {
 + reg = <19>;
 + label = "IP_CTRL";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <1>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + mhi,auto-queue;
 + };
 +
 + mhi_chan@20 {
 + reg = <20>;
 + label = "IPCR";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <2>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <1>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + mhi,auto-start;
 + };
 +
 + mhi_chan@21 {
 + reg = <21>;
 + label = "IPCR";
 + mhi,num-elements = <64>;
 + mhi,event-ring = <2>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <0>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + mhi,auto-queue;
 + mhi,auto-start;
 + };
 +
 + mhi_chan@46 {
 + reg = <46>;
 + label = "IP_SW0";
 + mhi,num-elements = <512>;
 + mhi,event-ring = <4>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <1>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@47 {
 + reg = <47>;
 + label = "IP_SW0";
 + mhi,num-elements = <512>;
 + mhi,event-ring = <5>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <4>;
 + mhi,doorbell-mode = <2>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@100 {
 + reg = <100>;
 + label = "IP_HW0";
 + mhi,num-elements = <512>;
 + mhi,event-ring = <6>;
 + mhi,chan-dir = <1>;
 + mhi,data-type = <1>;
 + mhi,doorbell-mode = <3>;
 + mhi,ee = <0x4>;
 + mhi,db-mode-switch;
 + };
 +
 + mhi_chan@101 {
 + reg = <101>;
 + label = "IP_HW0";
 + mhi,num-elements = <512>;
 + mhi,event-ring = <7>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <4>;
 + mhi,doorbell-mode = <3>;
 + mhi,ee = <0x4>;
 + };
 +
 + mhi_chan@102 {
 + reg = <102>;
 + label = "IP_HW_ADPL";
 + mhi,event-ring = <8>;
 + mhi,chan-dir = <2>;
 + mhi,data-type = <3>;
 + mhi,ee = <0x4>;
 + mhi,offload-chan;
 + mhi,lpm-notify;
 + };
 +
 + };
 +
 + mhi_events: mhi_events {
 + #address-cells = <1>;
 + #size-cells = <0>;
 +
 + mhi_event@0 {
 + reg = <0>;
 + mhi,num-elements = <32>;
 + mhi,intmod = <1>;
 + mhi,msi = <1>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + mhi,data-type = <1>;
 + };
 +
 + mhi_event@1 {
 + mhi,num-elements = <256>;
 + mhi,intmod = <1>;
 + mhi,msi = <2>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + };
 +
 + mhi_event@2 {
 + mhi,num-elements = <256>;
 + mhi,intmod = <1>;
 + mhi,msi = <3>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + };
 +
 + mhi_event@3 {
 + mhi,num-elements = <256>;
 + mhi,intmod = <1>;
 + mhi,msi = <4>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + };
 +
 + mhi_event@4 {
 + mhi,num-elements = <1024>;
 + mhi,intmod = <5>;
 + mhi,msi = <5>;
 + mhi,chan = <46>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + };
 +
 + mhi_event@5 {
 + mhi,num-elements = <1024>;
 + mhi,intmod = <5>;
 + mhi,msi = <6>;
 + mhi,chan = <47>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + mhi,client-manage;
 + };
 +
 +
 + mhi_event@6 {
 + mhi,num-elements = <1024>;
 + mhi,intmod = <5>;
 + mhi,msi = <5>;
 + mhi,chan = <100>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,hw-ev;
 + };
 +
 + mhi_event@7 {
 + mhi,num-elements = <1024>;
 + mhi,intmod = <5>;
 + mhi,msi = <6>;
 + mhi,chan = <101>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,client-manage;
 + mhi,hw-ev;
 + };
 +
 +
 + mhi_event@8 {
 + mhi,num-elements = <0>;
 + mhi,intmod = <0>;
 + mhi,msi = <0>;
 + mhi,chan = <102>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,hw-ev;
 + mhi,client-manage;
 + mhi,offload;
 + };
 +
 + mhi_event@9 {
 + mhi,num-elements = <1024>;
 + mhi,intmod = <5>;
 + mhi,msi = <7>;
 + mhi,chan = <103>;
 + mhi,priority = <1>;
 + mhi,brstmode = <2>;
 + mhi,hw-ev;
 + };
 +
 + mhi_event@10 {
 + mhi,num-elements = <0>;
 + mhi,intmod = <0>;
 + mhi,msi = <0>;
 + mhi,chan = <105>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,hw-ev;
 + mhi,client-manage;
 + mhi,offload;
 + };
 +
 + mhi_event@11 {
 + mhi,num-elements = <0>;
 + mhi,intmod = <0>;
 + mhi,msi = <0>;
 + mhi,chan = <106>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,hw-ev;
 + mhi,client-manage;
 + mhi,offload;
 + };
 +
 + mhi_event@12 {
 + mhi,num-elements = <0>;
 + mhi,intmod = <0>;
 + mhi,msi = <0>;
 + mhi,chan = <107>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,hw-ev;
 + mhi,client-manage;
 + mhi,offload;
 + };
 +
 + mhi_event@13 {
 + mhi,num-elements = <0>;
 + mhi,intmod = <0>;
 + mhi,msi = <0>;
 + mhi,chan = <108>;
 + mhi,priority = <1>;
 + mhi,brstmode = <3>;
 + mhi,hw-ev;
 + mhi,client-manage;
 + mhi,offload;
 + };
 + };
 +
 + mhi_devices: mhi_devices {
 + #address-cells = <1>;
 + #size-cells = <0>;
 +
 + mhi_netdev_0: mhi_rmnet@0 {
 + reg = <0x0>;
 + mhi,chan = "IP_HW0";
 + mhi,interface-name = "rmnet_mhi";
 + mhi,mru = <0x4000>;
 + mhi,chain-skb;
 + };
 +
 + mhi_rmnet@1 {
 + reg = <0x1>;
 + mhi,chan = "IP_HW0_RSC";
 + mhi,mru = <0x8000>;
 + mhi,rsc-parent = <&mhi_netdev_0>;
 + };
 +
 + mhi_netdev_2: mhi_rmnet@2 {
 + reg = <0x2>;
 + mhi,chan = "IP_SW0";
 + mhi,interface-name = "rmnet_mhi_sw";
 + mhi,mru = <0x4000>;
 + mhi,disable-chain-skb;
 + };
 +
 + mhi_qrtr {
 + mhi,chan = "IPCR";
 + qcom,net-id = <3>;
 + };
 + };
 +
 + };
 +};
 +
 +</nowiki>
 +</WRAP>\\
 +
  
 ===== Notes ===== ===== Notes =====
 +There is potential to exploit the HTTP U-Boot recovery method with a buffer overflow to run arbitrary shellcode:
 +https://github.com/naf419/tplink_deco_exploits
 +
 +The unit has 2x OS images on NAND flash, one image is for normal operation and the other one is for recovering of firmware or upgrading.
 +
 +
  
 ===== Tags ===== ===== Tags =====
 [[meta:tags|How to add tags]] [[meta:tags|How to add tags]]
-{{tag>EXAMPLETAG unsupported}}+{{tag>ipq807x ipq8074a QCA8081 QCN5054 QCN5024 AR8033-AL1A QPF4588 SKY85340-11 128nand 512ram 2port gigabitethernet 2.5gigabitethernet 2port 4core wifi6 802.11ax 802.11abgn 8x8 MU-MIMO OFDMA ARMv8 LTE 1SIM InternalAntenna 4g 5g_mm_wave 2_ant 1_button 12v_powered unsupported}} 
 + 
 + 
  • Last modified: 2024/08/22 20:23
  • by professor_jonny