Differences

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

Link to this comparison view

Next revision
Previous revision
Next revisionBoth sides next revision
inbox:toh:asus:rt-ac57u_v2 [2021/10/28 12:22] – Created from the form at meta:create_new_device_page hsxskyinbox:toh:asus:rt-ac57u_v2 [2022/04/17 22:25] – [Installing OpenWrt] remove confusing info about similar devices (updated tag in repo has symlinks for all devices); clarify partition layout note alex.const
Line 1: Line 1:
-====== ASUS RT-AC57U V2 ======+====== ASUS RT-AC57U v2 ======
  
 {{page>meta:infobox:construction&noheader&nofooter&noeditbtn}} {{page>meta:infobox:construction&noheader&nofooter&noeditbtn}}
  
-===== Yourcontent =====+AC1200 Dual Band WiFi Gigabit Router.\\ 
 +Support for this device is **Work In Progress**!
  
-Add your content here.+^ Links ^^ 
 +| wikidevi (source of some info on the page)            | https://wikidevi.wi-cat.ru/ASUS_RT-AC57U_v2 | 
 +| GPL Source Code (select "Others" in "select OS" drop-down) | https://www.asus.com/Networking-IoT-Servers/WiFi-Routers/ASUS-WiFi-Routers/RT-AC57U-V2/HelpDesk_Download/
 + 
 +===== Common information ===== 
 + 
 +This section describes information that is shared across the series of related devices. 
 + 
 +^ Common Links ^^ 
 +| Forum thread | https://forum.openwrt.org/t/adding-openwrt-support-for-asus-rt-ac57u-v2/53281 | 
 +| WIP PR for qcn5502 (802.11n at 2.4GHz) Wi-Fi | https://github.com/openwrt/openwrt/pull/9389 | 
 +| FCC            | https://fcc.io/MSQ/-RTACRH01 
 +| Similar or identical devices          | [[inbox:toh:asus:rt-ac59u_series|series]] | 
 + 
 +^ Common specifications ^^ 
 +| SoC            | Qualcomm QCN5502 WiSoC| 
 +| CPU            | MIPS 74Kc (v5.0) @775MHz| 
 +| WLAN1          | Qualcomm Atheros QCN5502 (bgn)| 
 +| WLAN2          | Qualcomm Atheros QCA9888 (an+ac, 2T2R, 5GHz)| 
 +| RAM            | 128 MiB (Winbond W971GG6SB-25)| 
 +| USB            | one USB 2.0 port| 
 +| Switch         | Qualcomm Atheros QCA8337| 
 +| Ethernet speed | 1000Mbps| 
 +| LAN ports      | 4| 
 +| WAN ports      | 1| 
 + 
 +Serial: there are 4 connection points in the upper right corner of the board. 
 + 
 +Left to right: power, ground, TX, RX. Check the labels near the holes. Baud-rate is 115200. 
 + 
 +The router has 9 LEDs: 
 +  * Power 
 +  * Port4 
 +  * Port3 
 +  * Port2 
 +  * Port1 
 +  * Wan 
 +  * 2.4Ghz WiFi 
 +  * 5 Ghz WiFi 
 +  * USB 
 + 
 +==== Stock firmware ==== 
 + 
 +ssh access can be enabled on the router web admin page at this menu point: Administration -> System -> Service. 
 +You have full root access. 
 + 
 +^ Default settings ^^ 
 +| SSID 2.4GHz| ASUS| 
 +| SSID 5GHz  | ASUS_5G| 
 +| IP address | 192.168.50.1| 
 +| User       | admin| 
 +| Password   | admin| 
 + 
 +==== Installing OpenWrt ==== 
 + 
 +NOTE! There is no official support at this point. The following link leads to an unofficial, personal repository where the development is taking place. 
 + 
 +You can download the WIP source code and community images at https://gitlab.com/alexconst.sh/openwrt. 
 +  - Building from source: branch apjet01-802.11n is probably what you want as it is the only one with qcn5502 support 
 +  - Using unofficial images (NO WARRANTY! **BACK UP YOUR FLASH!**) 
 +    - make sure your stock flash layout matches the table under the "Flash Layout" section below on this page (rootfs doesn't matter as long as it's contained inside "linux"
 +    - checkout the ''apjet01-releases/v1'' tag and look inside ''asus-apjet01-releases'' directory 
 +    - select the file depending on the name **(and version!)** of your device 
 +    - ''*squashfs-factory.bin'' is what you want for full initial install 
 + 
 +In recovery mode, the bootloader will start a tftp //server// and wait for you to send the image. 
 + 
 +  - Connect router's LAN port to your computer 
 +  - Set static IP of computer to ''192.168.1.10/24'' 
 +  - Make sure the router is turned off 
 +  - Hold the reset button 
 +  - Turn the router on and keep holding the button a few seconds until you see the power LED blinking slowly 
 +  - Use a tftp **client** to send the image file to IP 192.168.1.1 at port 69 (example with atftp: ''%%atftp --put -l /path/to/image 192.168.1.1 69%%''
 +  - If there are no errors from tftp client, bootloader is installing OpenWrt; wait 2-3 minutes 
 +  - Remove static IP from your computer's network interface, switch back to DHCP 
 + 
 +==== Flash Layout ==== 
 + 
 +^ partition   ^ start            ^ end              ^ Name          ^ 
 +|mtd0| 0x000000000000 | 0x000000040000 | Bootloader| 
 +|mtd1| 0x000000040000 | 0x000000050000 | nvram     | 
 +|mtd2| 0x000000050000 | 0x000000060000 | Factory   | 
 +|mtd3| 0x000000060000 | 0x000000f80000 | linux     | 
 +|mtd4| 0x0000001ecb00 | 0x000000f80000 | rootfs    | 
 +|mtd5| 0x000000f80000 | 0x000001000000 | jffs2     | 
 +|mtd6| 0x000000000000 | 0x000001000000 | ALL       | 
 + 
 +You can backup a partition like this: 
 +  * Login via ssh, telnet or serial console 
 +  * Use dd command to backup (Danger, wrong usage can overwrite rom): ''dd if=/dev/mtd6 of=all.img'' 
 +  * Use scp to download the image 
 + 
 + 
 +===== Hardware ===== 
 + 
 +Router was produced at two slightly different **SOC**:  
 +  * Qualcomm Atheros QCA5502 ver 1 rev 0 
 +  * Qualcomm Atheros QCA5502 rev 0 
 + 
 +74Kc MIPS processor with 64 KB I-Cache and 32 KB D-Cache, targeted to operate at up to 775 MHz 
 + 
 +**Switch**: Atheros AR8337 rev. 2 
 + 
 +<hidden> 
 + 
 +<WRAP bootlog> 
 +<nowiki> 
 +IMQ driver loaded successfully. (numdevs = 8, numqueues = 1, imq_dev_accurate_stats = 1) 
 +        Hooking IMQ after NAT on PREROUTING. 
 +        Hooking IMQ before NAT on POSTROUTING. 
 +libphy: ag71xx_mdio: probed 
 +switch0: Atheros AR8337 rev. 2 switch registered on 19000000.mdio 
 +ar71xx: using random MAC address for 0 
 +eth0: Atheros AG71xx at 0xb9000000, irq 4 
 +ag71xx 19000000.ethernet: connected to PHY at 19000000.mdio:00 [uid=004dd036, driver=Atheros AR8216/AR8236/AR8316] 
 +PPP generic driver version 2.4.2 
 +PPP MPPE Compression module registered 
 +NET: Registered protocol family 24 
 +PPTP driver version 0.8.5 
 +ath79_wdt: WDOG_REG_CTRL: 0x80000000 
 + 
 +ath79_wdt: Last system reboot was due to WDOG 
 +u32 classifier 
 +    Performance counters on 
 +nf_conntrack version 0.5.0 (1948 buckets, 7792 max) 
 +xt_time: kernel timezone is -0000 
 +gre: GRE over IPv4 demultiplexor driver 
 +ip_tables: (C) 2000-2006 Netfilter Core Team 
 +arp_tables: (C) 2002 David S. Miller 
 +NET: Registered protocol family 10 
 +ip6_tables: (C) 2000-2006 Netfilter Core Team 
 +NET: Registered protocol family 17 
 +bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. 
 +Bridge firewalling registered 
 +l2tp_core: L2TP core driver, V2.0 
 +l2tp_ppp: PPPoL2TP kernel driver, V2.0 
 +l2tp_netlink: L2TP netlink interface 
 +8021q: 802.1Q VLAN Support v1.8 
 +</nowiki> 
 +</WRAP>\\ 
 + 
 +</hidden> 
 + 
 +**WLAN Hardware** 
 + 
 +<hidden> 
 + 
 +Qualcomm Atheros 5500 (integrated to SOC?) 
 +  * WLAN 2.4GHz: bgn 
 +<code> 
 +wifi0: Qualcomm Atheros 5500: mem_start: =0xb8100000, mem_end: =0xb8120000, irq=47 
 +ath_da_pci:  (Atheros/multi-bss) 
 +ath_ol_pci:  (Atheros/multi-bss) 
 +hif_pci_enable_bus: con_mode = 0x0, device_id = 0x56 
 +ath_ol_pci 0000:00:00.0: BAR 0: assigned [mem 0x12000000-0x121fffff 64bit] 
 +</code> 
 + 
 +<code> 
 +wifi0      Link encap:UNSPEC  HWaddr A8-5E-45-0C-16-B8-00-41-00-00-00-00-00-00-00-00 
 +           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
 +           RX packets:1771228 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:5477680 errors:28401 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:2699 
 +           RX bytes:170901312 (162.9 MiB)  TX bytes:2372010255 (2.2 GiB) 
 +           Interrupt:47 Memory:b8100000-b8120000 
 +</code>   
 + 
 +Qualcomm Atheros QCA9888 
 +  * WLAN 5.0GHz: a/n/ac 
 +<WRAP bootlog> 
 +<nowiki> 
 +PCI: Enabling device 0000:00:00.0 (0000 -> 0002) 
 +hif_pci_enable_bus: hif_enable_pci done *********** QCA9888 *************hif_pci_enable_bus: hif_type = 0xe, target_type = 0xchif_pci_enable_bus: hif_pci_probe_tgt_wakeup donehif_target_sync: Loop checking FW signalhif_target_sync: Got FW signal, retries = 0hif_config_ce: ce_init donehif_config_ce: X, ret = 0hif_set_hia: Ehif_set_hia_extnd:
 +chip_id 0xc chip_revision 0x0 
 + 
 + CLOCK PLL skipped 
 +hif_set_hia_extnd: setting the target pll frac ffffffff intval ffffffff 
 +hif_set_hia_extnd: no frac provided, skipping pre-configuring PLL 
 +hif_pci_bus_configure: hif_set_hia donehif_configure_irq: Ehif_pci_configure_legacy_irq: Ehif_pci_configure_legacy_irq: X, ret = 0hif_enable: X OKhif_napi_create: NAPI structures initializedhif_napi_create: NAPI id 6 created for pipe 5qca_napi_create: napi instance 32 created on pipe 4 
 +hif_napi_event: received evnt: CONF cmd; v = 1 (state=0x1)hif_napi_event: setting configuration to ON 
 +__ol_ath_attach() Allocated scn 86500400 
 +__ol_ath_attach: dev name wifi1 
 +ol_ath_attach interface_id 1 
 +ol_target_init() BMI inited. 
 +ol_target_init() BMI Get Target Info. 
 +Chip id: 0xc, chip version: 0x1000000 
 + 
 + CE WAR Disabled 
 +NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 
 +ol_target_init() configure Target . 
 + 
 + Target Version is 1000000 
 + 
 + Flash Download Address  c0000 
 +ol_transfer_bin_file: flash data file defined 
 +ath_mtd_read: read [Factory] from 0x5000 len 12064 
 +qc98xx_verify_checksum: flash checksum passed: 0x48f1 
 +ol_transfer_bin_file 3929: Download Flash data len 12064 
 +Board extended Data download address: 0x0 
 + 
 + Board data initialized 
 +ol_ath_download_firmware: Download OTP, flash download ADDRESS 0xc0000 
 + 
 + Selecting  OTP binary for CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/otp.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 0, Download data len 9116 
 + 
 + First OTP send param 8000 
 +ol_ath_download_firmware :First OTP download and Execute is good address:0x4000 return param 4660 
 +ol_ath_download_firmware:##Board Id 16 , CHIP Id 0 
 +ol_ath_download_firmware: BOARDDATA DOWNLOAD TO address 0xc0000 
 + 
 + wifi1: Selecting board data file name boardData_2_0_QCA9888_5G_Y9690.bin 
 +ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=QCA9888/hw.2/boardData_2_0_QCA9888_5G_Y9690.bin 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/boardData_2_0_QCA9888_5G_Y9690.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 3, Download data len 12064 
 +Board extended Data download address: 0x0 
 +ol_ath_download_firmware: Using 0x1234 for the remainder of init 
 + 
 + Selecting  OTP binary for CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/otp.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 0, Download data len 9116 
 +</nowiki> 
 +</WRAP>\\ 
 + 
 +<code> 
 +wifi1      Link encap:UNSPEC  HWaddr A8-5E-45-0C-16-BC-00-41-00-00-00-00-00-00-00-00 
 +           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
 +           RX packets:66399 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:501764 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:2699 
 +           RX bytes:12769893 (12.1 MiB)  TX bytes:355196025 (338.7 MiB) 
 +           Interrupt:40  
 +</code>              
 + 
 +</hidden> 
 + 
 + 
 +===== Data  ===== 
 +Device datta according: [[:docs:guide-developer:adding_new_device]] 
 + 
 +<hidden> 
 + 
 +dmesg: 
 +<WRAP bootlog> 
 +<nowiki> 
 +admin@RT-AC57U_V2:/# dmesg 
 +io scheduler noop registered 
 +io scheduler deadline registered (default) 
 +Serial: 8250/16550 driver, 1 ports, IRQ sharing disabled 
 +console [ttyS0] disabled 
 +18020000.uart: ttyS0 at MMIO 0x18020000 (irq = 11, base_baud = 1562500) is a 16550A 
 +console [ttyS0] enabled 
 +brd: module loaded 
 +ath79_spi_fixup_mac_addr: No eth1 alias in DT 
 +m25p80 spi0.0: found w25q128, expected n25q128a11 
 +m25p80 spi0.0: w25q128 (16384 Kbytes) 
 +Creating 7 MTD partitions on "ath79-nor0": 
 +0x000000000000-0x000000040000 : "Bootloader" 
 +0x000000040000-0x000000050000 : "nvram" 
 +0x000000050000-0x000000060000 : "Factory" 
 +0x000000060000-0x000000f80000 : "linux" 
 +0x0000001ecb00-0x000000f80000 : "rootfs" 
 +0x000000f80000-0x000001000000 : "jffs2" 
 +0x000000000000-0x000001000000 : "ALL" 
 +IMQ driver loaded successfully. (numdevs = 8, numqueues = 1, imq_dev_accurate_stats = 1) 
 +        Hooking IMQ after NAT on PREROUTING. 
 +        Hooking IMQ before NAT on POSTROUTING. 
 +libphy: ag71xx_mdio: probed 
 +switch0: Atheros AR8337 rev. 2 switch registered on 19000000.mdio 
 +ar71xx: using random MAC address for 0 
 +eth0: Atheros AG71xx at 0xb9000000, irq 4 
 +ag71xx 19000000.ethernet: connected to PHY at 19000000.mdio:00 [uid=004dd036, driver=Atheros AR8216/AR8236/AR8316] 
 +PPP generic driver version 2.4.2 
 +PPP MPPE Compression module registered 
 +NET: Registered protocol family 24 
 +PPTP driver version 0.8.5 
 +ath79_wdt: WDOG_REG_CTRL: 0x80000000 
 + 
 +ath79_wdt: Last system reboot was due to WDOG 
 +u32 classifier 
 +    Performance counters on 
 +nf_conntrack version 0.5.0 (1948 buckets, 7792 max) 
 +xt_time: kernel timezone is -0000 
 +gre: GRE over IPv4 demultiplexor driver 
 +ip_tables: (C) 2000-2006 Netfilter Core Team 
 +arp_tables: (C) 2002 David S. Miller 
 +NET: Registered protocol family 10 
 +ip6_tables: (C) 2000-2006 Netfilter Core Team 
 +NET: Registered protocol family 17 
 +bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this. 
 +Bridge firewalling registered 
 +l2tp_core: L2TP core driver, V2.0 
 +l2tp_ppp: PPPoL2TP kernel driver, V2.0 
 +l2tp_netlink: L2TP netlink interface 
 +8021q: 802.1Q VLAN Support v1.8 
 +fdt: not creating '/sys/firmware/fdt': CRC check failed 
 +VFS: Mounted root (squashfs filesystem) readonly on device 31:4. 
 +devtmpfs: mounted 
 +Freeing unused kernel memory: 176K (804a4000 - 804d0000) 
 +random: init: uninitialized urandom read (4 bytes read, 6 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 8 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 8 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 8 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 8 bits of entropy available) 
 +random: ln: uninitialized urandom read (4 bytes read, 8 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 9 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 9 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 9 bits of entropy available) 
 +random: modprobe: uninitialized urandom read (4 bytes read, 9 bits of entropy available) 
 +offset 0x8000 elapse 0ms 
 +found private data block and skip it 
 +bled: GPIO#15: netdev ath0. 
 +bled: GPIO#5: netdev ath1. 
 +ssdk_switch_device_num_init[985]:INFO:ess-switch dts node number: 1 
 +ssdk_plat_init start 
 +ssdk_driver_register[2427]:INFO:Register QCA PHY driver 
 +f1_phy_api_ops_init[1513]:INFO:qca probe f1 phy driver succeeded! 
 +regi_init[3370]:INFO:qca-ssdk module init succeeded! 
 +mem_manager: module license 'unspecified' taints kernel. 
 +Disabling lock debugging due to kernel taint 
 +ath_dfs: Version 2.0.0 
 +Copyright (c) 2005-2006 Atheros Communications, Inc. All Rights Reserved 
 +ath_spectral: Version 2.0.0 
 +Copyright (c) 2005-2009 Atheros Communications, Inc. All Rights Reserved 
 +ath_hal: 0.9.17.1 (AR5416, AR9380, REGOPS_FUNC, PRIVATE_DIAG, WRITE_EEPROM, 11D) 
 +ath_rate_atheros: Copyright (c) 2001-2005 Atheros Communications, Inc, All Rights Reserved 
 +ath_tx99: Version 2.0 
 +Copyright (c) 2010 Atheros Communications, Inc, All Rights Reserved 
 +ath_dev: Copyright (c) 2001-2007 Atheros Communications, Inc, All Rights Reserved 
 + JET_PRINT: init_ath_wmac[240]: Checking devid: 40 
 +__ath_attach: Set global_scn[0] 
 +*** All the minfree values should be <= ATH_TXBUF-32, otherwise default value will be used instead *** 
 +ACBKMinfree = 48 
 +ACBEMinfree = 32 
 +ACVIMinfree = 16 
 +ACVOMinfree = 0 
 +CABMinfree = 48 
 +UAPSDMinfree = 0 
 +ATH_TXBUF=2700 
 + JET_PRINT: ath_hal_attach[389]: Jet support is enabled. devid: 40 
 +Enterprise mode: 0x03bda000 
 +Restoring Cal data from DRAM 
 +ath_mtd_read: read [Factory] from 0x1000 len 1868 
 + 
 +ART Version : -48.0.0 
 +SW Image Version : -48.0.0.0.0 
 +Board Revision : 
 +ar9300_attach: nf_2_nom -110 nf_2_max -60 nf_2_min -125 
 + HAL_CAP_TXDESCLEN : 128 
 +HAL_CAP_TXSTATUSLEN : 36 
 +HAL_CAP_RXSTATUSLEN : 56 
 +SPECTRAL : get_capability not registered 
 +HAL_CAP_PHYDIAG : Capable 
 +SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 242) 
 +SPECTRAL : get_capability not registered 
 +HAL_CAP_RADAR   : Capable 
 +SPECTRAL : Need to fix the capablity check for SPECTRAL 
 + (spectral_attach : 247) 
 +SPECTRAL : get_capability not registered 
 +HAL_CAP_SPECTRAL_SCAN : Capable 
 +SPECTRAL : get_tsf64 not registered 
 +spectral_init_netlink 85 NULL SKB 
 +SPECTRAL : No ADVANCED SPECTRAL SUPPORT 
 +SPECTRAL :----- module attached 
 +Green-AP : Green-AP : Attached 
 + 
 +Starting random number generator thread 
 +ath_get_caps[6248] rx chainmask mismatch actual 15 sc_chainmak 0 
 +ath_get_caps[6211] tx chainmask mismatch actual 15 sc_chainmak 0 
 +ieee80211_cbs_init CBS Inited 
 +band steering initialized for direct attach hardware 
 +ieee80211_bsteering_attach: Band steering initialized 
 +acfg_attach: 2979: Netlink socket created:87268800 
 +ath_attach_dfs[12767] dfsdomain 1 
 +dfs_attach: event log enabled by default 
 +SPECTRAL : module already attached 
 +ath_attach: Set global_ic[1]..gloabl_ic ptr:86f64e10 
 +osif_wrap_attach:444 osif wrap attached 
 +osif_wrap_devt_init:405 osif wrap dev table init done 
 + Wrap Attached: Wrap_com =87174000 ic->ic_wrap_com=87174000 &wrap_com->wc_devt=87174000 
 +ath_tx_paprd_init sc 86cf8000 PAPRD disabled in HAL 
 +ath_thermal_mitigation_attach: -- 
 +wifi0: Qualcomm Atheros 5500: mem_start: =0xb8100000, mem_end: =0xb8120000, irq=47 
 +ath_da_pci:  (Atheros/multi-bss) 
 +ath_ol_pci:  (Atheros/multi-bss) 
 +hif_pci_enable_bus: con_mode = 0x0, device_id = 0x56 
 +ath_ol_pci 0000:00:00.0: BAR 0: assigned [mem 0x12000000-0x121fffff 64bit] 
 +PCI: Enabling device 0000:00:00.0 (0000 -> 0002) 
 +hif_pci_enable_bus: hif_enable_pci done *********** QCA9888 *************hif_pci_enable_bus: hif_type = 0xe, target_type = 0xchif_pci_enable_bus: hif_pci_probe_tgt_wakeup donehif_target_sync: Loop checking FW signalhif_target_sync: Got FW signal, retries = 0hif_config_ce: ce_init donehif_config_ce: X, ret = 0hif_set_hia: Ehif_set_hia_extnd:
 +chip_id 0xc chip_revision 0x0 
 + 
 + CLOCK PLL skipped 
 +hif_set_hia_extnd: setting the target pll frac ffffffff intval ffffffff 
 +hif_set_hia_extnd: no frac provided, skipping pre-configuring PLL 
 +hif_pci_bus_configure: hif_set_hia donehif_configure_irq: Ehif_pci_configure_legacy_irq: Ehif_pci_configure_legacy_irq: X, ret = 0hif_enable: X OKhif_napi_create: NAPI structures initializedhif_napi_create: NAPI id 6 created for pipe 5qca_napi_create: napi instance 32 created on pipe 4 
 +hif_napi_event: received evnt: CONF cmd; v = 1 (state=0x1)hif_napi_event: setting configuration to ON 
 +__ol_ath_attach() Allocated scn 86500400 
 +__ol_ath_attach: dev name wifi1 
 +ol_ath_attach interface_id 1 
 +ol_target_init() BMI inited. 
 +ol_target_init() BMI Get Target Info. 
 +Chip id: 0xc, chip version: 0x1000000 
 + 
 + CE WAR Disabled 
 +NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 
 +ol_target_init() configure Target . 
 + 
 + Target Version is 1000000 
 + 
 + Flash Download Address  c0000 
 +ol_transfer_bin_file: flash data file defined 
 +ath_mtd_read: read [Factory] from 0x5000 len 12064 
 +qc98xx_verify_checksum: flash checksum passed: 0x48f1 
 +ol_transfer_bin_file 3929: Download Flash data len 12064 
 +Board extended Data download address: 0x0 
 + 
 + Board data initialized 
 +ol_ath_download_firmware: Download OTP, flash download ADDRESS 0xc0000 
 + 
 + Selecting  OTP binary for CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/otp.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 0, Download data len 9116 
 + 
 + First OTP send param 8000 
 +ol_ath_download_firmware :First OTP download and Execute is good address:0x4000 return param 4660 
 +ol_ath_download_firmware:##Board Id 16 , CHIP Id 0 
 +ol_ath_download_firmware: BOARDDATA DOWNLOAD TO address 0xc0000 
 + 
 + wifi1: Selecting board data file name boardData_2_0_QCA9888_5G_Y9690.bin 
 +ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=QCA9888/hw.2/boardData_2_0_QCA9888_5G_Y9690.bin 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/boardData_2_0_QCA9888_5G_Y9690.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 3, Download data len 12064 
 +Board extended Data download address: 0x0 
 +ol_ath_download_firmware: Using 0x1234 for the remainder of init 
 + 
 + Selecting  OTP binary for CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/otp.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 0, Download data len 9116 
 + 
 + [Flash] : Ignore Module param 
 + 
 + Second otp download Param 10000 
 +ol_ath_download_firmware : Second OTP download and Execute is good, param=0x0 
 + 
 + Mission mode: Firmware CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/athwlan.codeswap.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_swap_seg_alloc: Successfully allocated memory for SWAP size=524288 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/athwlan.codeswap.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_swap_wlan_memory_expansion: length:278491 size_left:278511 dma_size_left:524288 fw_temp:c077c004 fw_entry_size:278515 
 +ol_swap_wlan_memory_expansion: dma_virt_addr :a6480000 fw_temp: c077c008 length: 278491 
 +Swap: bytes_left to copy: fw:16; dma_page:245797 
 +ol_swap_wlan_memory_expansion: length:0 size_left:12 dma_size_left:245797 fw_temp:c07bffe7 fw_entry_size:278515 
 +Swap: wrong length read:0 
 +ol_swap_wlan_memory_expansion: Swap total_bytes copied: 278491 Target address 41af58 
 +scn=86500400  target_write_addr=41af58 seg_info=8705e910 
 +ol_transfer_swap_struct:Code swap structure successfully downloaded for bin type =2 
 +bin_filename=QCA9888/hw.2/athwlan.bin swap_filename=/lib/firmware/QCA9888/hw.2/athwlan.codeswap.bin 
 +ol_transfer_bin_file: Downloading firmware file: QCA9888/hw.2/athwlan.bin 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/athwlan.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 1, Download data len 395380 
 +ol_target_init() Download FW done. 
 +ol_ath_attach() WMI attached. wmi_handle 8646a000 
 +wmi_unified_register_event_handler: Event id 62 is unavailable 
 ++htc_create ..  HIF :865c0000-htc_create: (0x8717a800) 
 +htc_wmi_init() HT Create . 8717a800 
 +htc_wmi_init 8437 host_enable 0 nss_nwifi_offload 0 
 +ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) 
 + OL_ACBKMinfree : 0 
 + OL_ACBEMinfree : 0 
 + OL_ACVIMinfree : 0 
 + OL_ACVOMinfree : 0 
 +hif_enable_fastpath, Enabling fastpath mode 
 ++HWT 
 +hif_completion_thread_startup: pipe_num:0 pipe_info:0x865c3a8chif_completion_thread_startup: pipe_num:3 pipe_info:0x865c3b4chif_completion_thread_startup: pipe_num:4 pipe_info:0x865c3b8c 
 +-HWT 
 +Startup Mode-0 set 
 + 
 +<=== cfg max peer id 1056 ====> 
 +htt_peer_map_timer_init Enter pdev 85ff8000 hrtimer 85ffc970 
 + 
 + htt_alloc_peer_map_mem : Alloc Success : host q vaddr 86554000 paddr 6554000 
 + 
 + htt_alloc_peer_map_mem : Flush Interval Configured to 256 pkts 
 +ol_txrx_pdev_attach: 2500 tx desc's allocated ; range starts from 854a0000 
 +Firmware_Build_Number:83 
 +FW wireless modes: 0x1f9001 
 +num_rf_chain:0x00000002  ht_cap_info:0x0000085b  vht_cap_info:0x339979b2  vht_supp_mcs:0x0000fffa 
 +wmi_service_coex_gpio 0, wmi_service_4_wire_coex_support 0, coex_version 0 
 + 
 +Sending Ext resource cfg: HOST PLATFORM as 1 
 +fw_feature_bitmap as 50 to TGT 
 +ol_ath_service_ready_event: tt_support: 1 
 +ol_ath_service_ready_event: periodic_chan_stats:
 +ol_ath_service_ready_event: sw_cal_support_check_flag:
 +Peer Caching Enabled ; num_peers = 530, num_active_peers = 52 num_tids = 104, num_vdevs = 17 
 +EXT NSS Supported 
 +idx 1 req 2  num_units 1 num_unit_info 12 unit size 256 actual units 53 
 +ol_ath_alloc_host_mem_chunk req_id 2 idx 0 num_units 53 unit_len 256, 
 +idx 2 req 3  num_units 1 num_unit_info 12 unit size 1024 actual units 53 
 +ol_ath_alloc_host_mem_chunk req_id 3 idx 1 num_units 53 unit_len 1024, 
 +idx 3 req 4  num_units 1 num_unit_info 12 unit size 4096 actual units 53 
 +ol_ath_alloc_host_mem_chunk req_id 4 idx 2 num_units 53 unit_len 4096, 
 +idx 6 req 9  num_units 1 num_unit_info 8 unit size 819200 actual units 1 
 +ol_ath_alloc_host_mem_chunk req_id 9 idx 3 num_units 1 unit_len 819200, 
 +idx 0 req 1  num_units 0 num_unit_info 2 unit size 880 actual units 531 
 +ol_ath_alloc_host_mem_chunk req_id 1 idx 4 num_units 531 unit_len 880, 
 +idx 4 req 5  num_units 0 num_unit_info 2 unit size 2076 actual units 531 
 +ol_ath_alloc_host_mem_chunk req_id 5 idx 5 num_units 531 unit_len 2076, 
 +Support not added yet for Service 91 
 +Support not added yet for Service 92 
 +No EXT_MSG send INIT now 
 +chunk 0 len 13568 requested , ptr  0x5498000 
 +chunk 1 len 54272 requested , ptr  0x5500000 
 +chunk 2 len 217088 requested , ptr  0x5540000 
 +chunk 3 len 819200 requested , ptr  0x5600000 
 +chunk 4 len 467280 requested , ptr  0x5580000 
 +chunk 5 len 1102356 requested , ptr  0x4c00000 
 +chunk 6 len 0 requested , ptr  0xffffffff 
 +ol_ath_service_ready_event[4288] WAPI MBSSID 2 
 +smart_log_init: Smart logging Enabled buf=85510000 (size=65536) 
 +Version = 16777216 3  status = 0 
 +ol_ath_connect_htc() WMI is ready 
 +htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 1 
 +target uses HTT version 2.2; host uses 2.2 
 +ol_ath_attach() connect HTC. 
 +bypasswmi : 0 
 +ol_regdmn_start: reg-domain param: regdmn=0, countryName=, wModeSelect=FFFFFFFF, netBand=FFFFFFFF, extendedChanMode=0. 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2) flags 0x2150 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4) flags 0xa0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x8) flags 0xc0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x20) flags 0xd0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x40) flags 0x150 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x800) flags 0x10080 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2000) flags 0x20080 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4000) flags 0x40080 
 +Add VHT80 channel: 5210 
 +Add VHT80 channel: 5290 
 +Add VHT80 channel: 5530 
 +Add VHT80 channel: 5610 
 +Add VHT80 channel: 5690 
 +Add VHT80 channel: 5775 
 +Skipping VHT80 channel 5825 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x200000) flags 0x4000100 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x400000) flags 0x8000100 
 +ol_ath_phyerr_attach: called 
 +freq=58 
 +freq=106 
 +freq=122 
 +OL Resmgr Init-ed 
 +ieee80211_cbs_init CBS Inited 
 +ieee80211_bsteering_attach: Band steering initialized 
 +acfg_attach: using existing sock 87268800 
 +ol_if_spectral_setup 
 +SPECTRAL : get_capability not registered 
 +HAL_CAP_PHYDIAG : Capable 
 +SPECTRAL : Need to fix the capablity check for RADAR (spectral_attach : 242) 
 +SPECTRAL : get_capability not registered 
 +HAL_CAP_RADAR   : Capable 
 +SPECTRAL : Need to fix the capablity check for SPECTRAL 
 + (spectral_attach : 247) 
 +SPECTRAL : get_capability not registered 
 +HAL_CAP_SPECTRAL_SCAN : Capable 
 +SPECTRAL : get_tsf64 not registered 
 +spectral_init_netlink 85 NULL SKB 
 +Green-AP : Green-AP : Attached 
 + 
 +Green-AP : Attached 
 +rate power table override is only supported for AR98XX 
 +ol_ath_smart_ant_attach: Hardware doest not support Smart Antenna. 
 +ol_if_dfs_setup: called 
 +ol_if_dfs_attach: called; ptr=8571997c, radar_info=86cafa20 
 +dfs_attach: event log enabled by default 
 +ol_ath_rtt_meas_report_attach: called 
 +ol_ath_lowi_wmi_event_attach: called 
 +>>>> CB Set 00000000 
 +ol_ath_attach() UMAC attach . 
 + 
 + BURSTING enabled by default 
 +ol_ath_attach: Set global_ic[2] ..ptr:86f64e10 
 +ath_lowi_if_netlink_init LOWI Netlink successfully created 
 +osif_wrap_attach:444 osif wrap attached 
 +osif_wrap_devt_init:405 osif wrap dev table init done 
 + Wrap Attached: Wrap_com =87174600 ic->ic_wrap_com=87174600 &wrap_com->wc_devt=87174600 
 +__ol_ath_attach: needed_headroom reservation 60 
 +ol_ath_thermal_mitigation_attach: -- 
 +ol_ath_pci_probe num_radios=0, wifi_radios[0].sc = 86500400 wifi_radio_type = 2 
 +ath_sysfs_diag_init: diag_fsattr 
 +Suspending Target  scn=86500400 
 +waiting for target paused event from target 
 +ol_ath_thermal_mitigation_detach: ++ 
 +ol_ath_thermal_mitigation_detach: -- 
 +freq=58 
 +freq=106 
 +freq=122 
 +ol_if_dfs_clist_update: called, cmd=1, nollist=00000000, nentries=0 
 +ce_h2t_tx_ce_cleanup 1039 Fastpath mode ON, Cleaning up HTT Tx CEsmart_log_deinit: Smart logging Disabled 
 +ol_tx_me_exit: Already Disabled !!! 
 +hif_pci_device_reset: Reset Devicehif_pci_disable_bus: Xhif_disable: Xhif_napi_destroy: NAPI 6 destroyed 
 +hif_napi_destroy: no NAPI instances. Zapped.ath_sysfs_diag_fini: diag_fsattr 
 +sc nodebug 0 
 +Starting the target before sending the command 
 +hif_pci_enable_bus: con_mode = 0x0, device_id = 0x56 
 +ath_ol_pci 0000:00:00.0: BAR 0: assigned [mem 0x12000000-0x121fffff 64bit] 
 +hif_pci_enable_bus: hif_enable_pci done *********** QCA9888 *************hif_pci_enable_bus: hif_type = 0xe, target_type = 0xchif_pci_enable_bus: hif_pci_probe_tgt_wakeup donehif_target_sync: Loop checking FW signalhif_target_sync: Got FW signal, retries = 0hif_config_ce: ce_init donehif_config_ce: X, ret = 0hif_set_hia: Ehif_set_hia_extnd:
 +chip_id 0xc chip_revision 0x0 
 + 
 + CLOCK PLL skipped 
 +hif_set_hia_extnd: setting the target pll frac ffffffff intval ffffffff 
 +hif_set_hia_extnd: no frac provided, skipping pre-configuring PLL 
 +hif_pci_bus_configure: hif_set_hia donehif_configure_irq: Ehif_pci_configure_legacy_irq: Ehif_pci_configure_legacy_irq: X, ret = 0hif_enable: X OKhif_napi_create: NAPI structures initializedhif_napi_create: NAPI id 6 created for pipe 5qca_napi_create: napi instance 32 created on pipe 4 
 +hif_napi_event: received evnt: CONF cmd; v = 1 (state=0x1)hif_napi_event: setting configuration to ON 
 +ol_target_init() BMI inited. 
 +ol_target_init() BMI Get Target Info. 
 +Chip id: 0xc, chip version: 0x1000000 
 + 
 + CE WAR Disabled 
 +NUM_DEV=1 FWMODE=0x2 FWSUBMODE=0x0 FWBR_BUF 0 
 +ol_target_init() configure Target . 
 + 
 + Target Version is 1000000 
 + 
 + Flash Download Address  c0000 
 +ol_transfer_bin_file: flash data file defined 
 +ath_mtd_read: read [Factory] from 0x5000 len 12064 
 +qc98xx_verify_checksum: flash checksum passed: 0x48f1 
 +ol_transfer_bin_file 3929: Download Flash data len 12064 
 +Board extended Data download address: 0x0 
 + 
 + Board data initialized 
 +ol_ath_download_firmware: Download OTP, flash download ADDRESS 0xc0000 
 + 
 + Selecting  OTP binary for CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/otp.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 0, Download data len 9116 
 + 
 + First OTP send param 8000 
 +ol_ath_download_firmware :First OTP download and Execute is good address:0x4000 return param 4660 
 +ol_ath_download_firmware:##Board Id 16 , CHIP Id 0 
 +ol_ath_download_firmware: BOARDDATA DOWNLOAD TO address 0xc0000 
 + 
 + wifi1: Selecting board data file name boardData_2_0_QCA9888_5G_Y9690.bin 
 +ol_transfer_bin_file: Board Data File download to address=0xc0000 file name=QCA9888/hw.2/boardData_2_0_QCA9888_5G_Y9690.bin 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/boardData_2_0_QCA9888_5G_Y9690.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 3, Download data len 12064 
 +Board extended Data download address: 0x0 
 +ol_ath_download_firmware: Using 0x1234 for the remainder of init 
 + 
 + Selecting  OTP binary for CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/otp.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 0, Download data len 9116 
 + 
 + [Flash] : Ignore Module param 
 + 
 + Second otp download Param 10000 
 +ol_ath_download_firmware : Second OTP download and Execute is good, param=0x0 
 + 
 + Mission mode: Firmware CHIP Version 0 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/athwlan.codeswap.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_swap_wlan_memory_expansion: length:278491 size_left:278511 dma_size_left:524288 fw_temp:c08a5004 fw_entry_size:278515 
 +ol_swap_wlan_memory_expansion: dma_virt_addr :a6480000 fw_temp: c08a5008 length: 278491 
 +Swap: bytes_left to copy: fw:16; dma_page:245797 
 +ol_swap_wlan_memory_expansion: length:0 size_left:12 dma_size_left:245797 fw_temp:c08e8fe7 fw_entry_size:278515 
 +Swap: wrong length read:0 
 +ol_swap_wlan_memory_expansion: Swap total_bytes copied: 278491 Target address 41af58 
 +scn=86500400  target_write_addr=41af58 seg_info=8705e910 
 +ol_transfer_swap_struct:Code swap structure successfully downloaded for bin type =2 
 +bin_filename=QCA9888/hw.2/athwlan.bin swap_filename=/lib/firmware/QCA9888/hw.2/athwlan.codeswap.bin 
 +ol_transfer_bin_file: Downloading firmware file: QCA9888/hw.2/athwlan.bin 
 +ath_ol_pci 0000:00:00.0: Direct firmware load for QCA9888/hw.2/athwlan.bin failed with error 0 
 +ath_ol_pci 0000:00:00.0: Falling back to user helper 
 +ol_transfer_bin_file 3738: downloading file 1, Download data len 395380 
 +ol_target_init() Download FW done. 
 ++htc_create ..  HIF :86720000-htc_create: (0x857bd800) 
 +htc_wmi_init() HT Create . 857bd800 
 +htc_wmi_init 8437 host_enable 0 nss_nwifi_offload 0 
 +ol_ath_set_default_tgt_config : AC Minfree buffer allocation through module param (umac.ko) 
 + OL_ACBKMinfree : 0 
 + OL_ACBEMinfree : 0 
 + OL_ACVIMinfree : 0 
 + OL_ACVOMinfree : 0 
 +hif_enable_fastpath, Enabling fastpath mode 
 ++HWT 
 +hif_completion_thread_startup: pipe_num:0 pipe_info:0x86723a8chif_completion_thread_startup: pipe_num:3 pipe_info:0x86723b4chif_completion_thread_startup: pipe_num:4 pipe_info:0x86723b8c 
 +-HWT 
 +wmi_unified_register_event_handler : event handler already registered 0x8002 
 +Startup Mode-0 set 
 + 
 +<=== cfg max peer id 1056 ====> 
 +htt_peer_map_timer_init Enter pdev 85d00000 hrtimer 85d04970 
 + 
 + htt_alloc_peer_map_mem : Alloc Success : host q vaddr 85704000 paddr 5704000 
 + 
 + htt_alloc_peer_map_mem : Flush Interval Configured to 256 pkts 
 +ol_txrx_pdev_attach: 2500 tx desc's allocated ; range starts from 85f40000 
 +Firmware_Build_Number:83 
 +FW wireless modes: 0x1f9001 
 +num_rf_chain:0x00000002  ht_cap_info:0x0000085b  vht_cap_info:0x339979b2  vht_supp_mcs:0x0000fffa 
 +wmi_service_coex_gpio 0, wmi_service_4_wire_coex_support 0, coex_version 0 
 + 
 +Sending Ext resource cfg: HOST PLATFORM as 1 
 +fw_feature_bitmap as 50 to TGT 
 +ol_ath_service_ready_event: tt_support: 1 
 +ol_ath_service_ready_event: periodic_chan_stats:
 +ol_ath_service_ready_event: sw_cal_support_check_flag:
 +Peer Caching Enabled ; num_peers = 530, num_active_peers = 52 num_tids = 104, num_vdevs = 17 
 +EXT NSS Supported 
 +idx 1 req 2  num_units 1 num_unit_info 12 unit size 256 actual units 53 
 +ol_ath_alloc_host_mem_chunk req_id 2 idx 0 num_units 53 unit_len 256, 
 +idx 2 req 3  num_units 1 num_unit_info 12 unit size 1024 actual units 53 
 +ol_ath_alloc_host_mem_chunk req_id 3 idx 1 num_units 53 unit_len 1024, 
 +idx 3 req 4  num_units 1 num_unit_info 12 unit size 4096 actual units 53 
 +ol_ath_alloc_host_mem_chunk req_id 4 idx 2 num_units 53 unit_len 4096, 
 +idx 6 req 9  num_units 1 num_unit_info 8 unit size 819200 actual units 1 
 +ol_ath_alloc_host_mem_chunk req_id 9 idx 3 num_units 1 unit_len 819200, 
 +idx 0 req 1  num_units 0 num_unit_info 2 unit size 880 actual units 531 
 +ol_ath_alloc_host_mem_chunk req_id 1 idx 4 num_units 531 unit_len 880, 
 +idx 4 req 5  num_units 0 num_unit_info 2 unit size 2076 actual units 531 
 +ol_ath_alloc_host_mem_chunk req_id 5 idx 5 num_units 531 unit_len 2076, 
 +Support not added yet for Service 91 
 +Support not added yet for Service 92 
 +No EXT_MSG send INIT now 
 +chunk 0 len 13568 requested , ptr  0x5498000 
 +chunk 1 len 54272 requested , ptr  0x5500000 
 +chunk 2 len 217088 requested , ptr  0x5540000 
 +chunk 3 len 819200 requested , ptr  0x5600000 
 +chunk 4 len 467280 requested , ptr  0x5580000 
 +chunk 5 len 1102356 requested , ptr  0x4c00000 
 +chunk 6 len 0 requested , ptr  0xffffffff 
 +ol_ath_service_ready_event[4288] WAPI MBSSID 2 
 +smart_log_init: Smart logging Enabled buf=85f30000 (size=65536) 
 +Version = 16777216 3  status = 0 
 +ol_ath_connect_htc() WMI is ready 
 +htt_h2t_frag_desc_bank_cfg_msg - HTT_H2T_MSG_TYPE_FRAG_DESC_BANK_CFG sent to FW for radio ID = 1 
 +target uses HTT version 2.2; host uses 2.2 
 +wmi_unified_register_event_handler : event handler already registered 0x900b 
 +wmi_unified_register_event_handler : event handler already registered 0x9042 
 +>>>> CB Set 00000000 
 +ol_ath_thermal_mitigation_attach: -- 
 +ol_if_dfs_setup: called 
 +ath_sysfs_diag_init: diag_fsattr 
 ++hif_update_pipe_callback pipeid 8 
 +-hif_update_pipe_callback 
 +ath_net80211_dfs_clist_update: called, cmd=1, nollist=00000000, nentries=0 
 +ath_attach_dfs[12767] dfsdomain 1 
 +dfs_attach: event log enabled by default 
 +isCountryCodeValid: EEPROM regdomain 0x0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2) flags 0x2150 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4) flags 0xa0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x8) flags 0xc0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x20) flags 0xd0 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x40) flags 0x150 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x800) flags 0x10080 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x2000) flags 0x20080 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x4000) flags 0x40080 
 +Add VHT80 channel: 5210 
 +Add VHT80 channel: 5290 
 +Add VHT80 channel: 5530 
 +Skipping VHT80 channel 5580 
 +Skipping VHT80 channel 5660 
 +Skipping VHT80 channel 5680 
 +Skipping VHT80 channel 5700 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x200000) flags 0x4000100 
 +ol_regdmn_init_channels: !avail mode 0x1f9001 (0x400000) flags 0x8000100 
 +freq=58 
 +freq=106 
 +[wifi1] FWLOG: [3171] WAL_DBGID_TX_AC_BUFFER_SET ( 0x3, 0x1e, 0x94c, 0x94c, 0x0 ) 
 +[wifi1] FWLOG: [3171] WAL_DBGID_TX_AC_BUFFER_SET ( 0x12, 0x1e, 0x94c, 0x94c, 0x0 ) 
 +[wifi1] FWLOG: [3171] WAL_DBGID_TX_AC_BUFFER_SET ( 0x45, 0x1e, 0x94c, 0x94c, 0x0 ) 
 +[wifi1] FWLOG: [3171] WAL_DBGID_TX_AC_BUFFER_SET ( 0x67, 0x1e, 0x94c, 0x94c, 0x0 ) 
 +[wifi1] FWLOG: [3171] WAL_DBGID_TX_AC_BUFFER_SET ( 0x100, 0x11e1a300 ) 
 +[wifi1] FWLOG: [3362] WAL_DBGID_PDEV_INFO_PRINT ( 0x37, 0x199, 0x130, 0x30, 0x0 ) 
 +[wifi1] FWLOG: [3362] WAL_DBGID_PDEV_INFO_PRINT ( 0x37, 0x30, 0x0, 0x30, 0x0 ) 
 +random: nonblocking pool is initialized 
 +wlan_vap_create : enter. devhandle=0x873d0400, opmode=IEEE80211_M_HOSTAP, flags=0x1 
 +ieee80211_mbo_vattach:MBO Initialized 
 +ieee80211_oce_vattach: OCE Initialized 
 +wlan_vap_create : exit. devhandle=0x873d0400, vap=0x85fa8000, opmode=IEEE80211_M_HOSTAP, flags=0x1. 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 +VAP device ath0 created osifp: (857be400) os_if: (85fa8000) 
 +Switching to Tx Mode-0 
 +wlan_vap_create : enter. devhandle=0x86500400, opmode=IEEE80211_M_HOSTAP, flags=0x1 
 +send_vdev_create_cmd_non_tlv: ID = 0 Type = 1, Subtype = 0 VAP Addr = a8:5e:45:0c:16:bc: 
 +ieee80211_mbo_vattach:MBO Initialized 
 +ieee80211_oce_vattach: OCE Initialized 
 +wlan_vap_create : exit. devhandle=0x86500400, vap=0x85fc8000, opmode=IEEE80211_M_HOSTAP, flags=0x1. 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 +Enabling TX checksum bit for the vap ath1 features 4000 
 +Enabling SG bit for the vap ath1 features 4000 
 +Enabling SG bit for the vap ath1 features 4000 
 +Enabling TSO bit for the vap ath1 features 4000 
 +Enabling LRO bit for the vap ath1 features 4000 
 +VAP device ath1 created osifp: (85fbc400) os_if: (85fc8000) 
 +wlan_vap_create : enter. devhandle=0x873d0400, opmode=IEEE80211_M_HOSTAP, flags=0x1 
 +ieee80211_mbo_vattach:MBO Initialized 
 +ieee80211_oce_vattach: OCE Initialized 
 +wlan_vap_create : exit. devhandle=0x873d0400, vap=0x85fd0000, opmode=IEEE80211_M_HOSTAP, flags=0x1. 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 +VAP device ath001 created osifp: (85fbe400) os_if: (85fd0000) 
 +jffs2: version 2.2 (NAND) (ZLIB) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc. 
 +nvram_commit(): pid 1 comm [init] 
 +found private data block and skip it 
 +usbcore: registered new interface driver usbfs 
 +usbcore: registered new interface driver hub 
 +usbcore: registered new device driver usb 
 +ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver 
 +ehci_ath79: unknown parameter 'log2_irq_thresh' ignored 
 +ehci-ath79 1b000000.usb: EHCI Host Controller 
 +ehci-ath79 1b000000.usb: new USB bus registered, assigned bus number 1 
 +ehci-ath79 1b000000.usb: irq 48, io mem 0x1b000000 
 +ehci-ath79 1b000000.usb: USB 2.0 started, EHCI 1.00 
 +hub 1-0:1.0: USB hub found 
 +hub 1-0:1.0: 1 port detected 
 +ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver 
 +usbcore: registered new interface driver cdc_acm 
 +cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters 
 +usbcore: registered new interface driver asix 
 +usbcore: registered new interface driver cdc_ether 
 +usbcore: registered new interface driver rndis_host 
 +usbcore: registered new interface driver cdc_ncm 
 +device vlan1 entered promiscuous mode 
 +device eth0 entered promiscuous mode 
 +device ath0 entered promiscuous mode 
 +device ath1 entered promiscuous mode 
 +device ath001 entered promiscuous mode 
 +        DCS for CW interference mitigation:   0 
 +        DCS for WLAN interference mitigation: 0 
 +siwfreq 
 +Set freq vap 0 stop send + 85fc8000 
 +Set freq vap 0 stop send -85fc8000 
 +Set wait done --85fc8000 
 +eth0: link up (1000Mbps/Full duplex) 
 +br0: port 1(vlan1) entered forwarding state 
 +br0: port 1(vlan1) entered forwarding state 
 +[DEBUG] vap-0(ath0):set SIOC80211NWID, 6 characters 
 + 
 + DES SSID SET=**Secret** 
 +br0: port 2(ath0) entered forwarding state 
 +br0: port 2(ath0) entered forwarding state 
 +8021q: adding VLAN 0 to HW filter on device ath0 
 +Ebtables v2.0 registered 
 +usbcore: registered new interface driver usb-storage 
 +---- ACS CALCULATE ---- 
 +Chan 1 pre_param 0 param 0 
 + Chan 6 pre_param 0 param 0 
 + Chan 6 pre_param 0 param 0 
 + Best Channel Selected 1 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 + ieee80211_ioctl_siwmode: imr.ifm_active=918144, new mode=3, valid=1 
 +br0: port 2(ath0) entered disabled state 
 + DEVICE IS DOWN ifname=ath0 
 + DEVICE IS DOWN ifname=ath0 
 +Warning: node not in table 0x84f27000 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 +br0: port 2(ath0) entered forwarding state 
 +br0: port 2(ath0) entered forwarding state 
 +8021q: adding VLAN 0 to HW filter on device ath0 
 +su bfee 1 mu bfee 0 su bfer 1 mu bfer 1 impl bf 0 sounding dim 1 
 +su bfee 1 mu bfee 0 su bfer 1 mu bfer 1 impl bf 0 sounding dim 1 
 +su bfee 1 mu bfee 0 su bfer 1 mu bfer 1 impl bf 0 sounding dim 1 
 +su bfee 1 mu bfee 0 su bfer 1 mu bfer 1 impl bf 0 sounding dim 1 
 +su bfee 1 mu bfee 0 su bfer 1 mu bfer 1 impl bf 0 sounding dim 1 
 +[DEBUG] vap-0(ath1):set SIOC80211NWID, 6 characters 
 + 
 + DES SSID SET=SZ2BTP 
 +send_wmm_update_cmd_non_tlv: 
 +send_wmm_update_cmd_non_tlv: 
 +send_wmm_update_cmd_non_tlv: 
 +send_wmm_update_cmd_non_tlv: 
 +OL vap_start + 
 +VDEV START 
 +OL vap_start - 
 +ol_vdev_start_resp_ev for vap 0 (8646a000) 
 +send_wmm_update_cmd_non_tlv: 
 +ol_if_dfs_configure: called 
 +ol_if_dfs_configure: ETSI domain 
 +ol_if_dfs_disable: called 
 +ol_if_dfs_enable: called 
 +ol_ath_vap_set_param: Now supported MGMT RATE is 6000(kbps) and rate code: 0x3 
 +ol_ath_vap_set_param: Now supported MGMT RATE is 6000(kbps) and rate code: 0x3 
 +br0: port 3(ath1) entered forwarding state 
 +br0: port 3(ath1) entered forwarding state 
 +8021q: adding VLAN 0 to HW filter on device ath1 
 + ieee80211_ioctl_siwmode: imr.ifm_active=18875008, new mode=3, valid=1 
 +[wifi1] FWLOG: [22781] WAL_DBGID_PDEV_INFO_PRINT ( 0x2, 0x0 ) 
 +[wifi1] FWLOG: [22951] vap-0 WMI_CMD_PARAMS ( 0xff, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [23093] WAL_DBGID_DEV_RESET ( 0xc01d, 0x49b ) 
 +[wifi1] FWLOG: [23279] vap-0 VDEV_MGR_VDEV_START ( 0x15a4, 0x2, 0x0, 0x1 ) 
 +[wifi1] FWLOG: [23285] WAL channel change freq=5540, mode=10 flags=0 rx_ok=1 tx_ok=1 
 +STOPPED EVENT for vap 0 (8646a000) 
 +send_vdev_down_cmd_non_tlv for vap 0 
 +br0: port 3(ath1) entered disabled state 
 + DEVICE IS DOWN ifname=ath1 
 + DEVICE IS DOWN ifname=ath1 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 100. 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 104. 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 108. 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 112. 
 +OL vap_start + 
 +VDEV START 
 +OL vap_start - 
 +ol_vdev_start_resp_ev for vap 0 (8646a000) 
 +send_wmm_update_cmd_non_tlv: 
 +ol_if_dfs_configure: called 
 +ol_if_dfs_configure: ETSI domain 
 +ol_if_dfs_disable: called 
 +ol_if_dfs_enable: called 
 +ol_ath_vap_set_param: Now supported MGMT RATE is 6000(kbps) and rate code: 0x3 
 +ol_ath_vap_set_param: Now supported MGMT RATE is 6000(kbps) and rate code: 0x3 
 +br0: port 3(ath1) entered forwarding state 
 +br0: port 3(ath1) entered forwarding state 
 +8021q: adding VLAN 0 to HW filter on device ath1 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 100. 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 104. 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 108. 
 +dfs_deliver_event: dfs CAC_START event delivered on chan 112. 
 +[DEBUG] vap-1(ath001):set SIOC80211NWID, 11 characters 
 + 
 + DES SSID SET=**Secret** 
 +br0: port 4(ath001) entered forwarding state 
 +br0: port 4(ath001) entered forwarding state 
 +8021q: adding VLAN 0 to HW filter on device ath001 
 + ieee80211_ioctl_siwmode: imr.ifm_active=918144, new mode=3, valid=1 
 +br0: port 4(ath001) entered disabled state 
 + DEVICE IS DOWN ifname=ath001 
 + DEVICE IS DOWN ifname=ath001 
 +Warning: node not in table 0x84929000 
 +[wifi1] FWLOG: [23499] VDEV_MGR_VDEV_START_RESP ( 0x0 ) 
 +[wifi1] FWLOG: [23689] RESMGR_OCS_GEN_PERIODIC_NOA ( 0x0 ) 
 +[wifi1] FWLOG: [23689] RESMGR_OCS_GEN_PERIODIC_NOA ( 0x0 ) 
 +[wifi1] FWLOG: [24128] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [24128] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [24158] vap-0 VDEV_MGR_VDEV_START ( 0x15a4, 0x2, 0x0, 0x1 ) 
 +[wifi1] FWLOG: [24158] VDEV_MGR_VDEV_START_RESP ( 0x0 ) 
 +br0: port 4(ath001) entered forwarding state 
 +br0: port 4(ath001) entered forwarding state 
 +8021q: adding VLAN 0 to HW filter on device ath001 
 +siwfreq 
 +Set freq vap 0 stop send + 85fa8000 
 +print_assoc_deny_ratelimit: 5 callbacks suppressed 
 +Set freq vap 0 stop send -85fa8000 
 +Set wait done --85fa8000 
 +Set freq vap 1 stop send + 85fd0000 
 +Set freq vap 1 stop send -85fd0000 
 +Set wait done --85fd0000 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [24:6f:28:16:2d:58]station associated at aid 2: long preamble, short slot time, QoS, HT40 cap 0x431 
 +cac_timeout cac expired, chan 5540 curr time 4294767 
 +cac_timeout : 1629 CAC expired here, adding to etsi_precac_done_list 
 +dfs_deliver_event: dfs CAC_COMPLETED event delivered on chan 100. 
 +dfs_deliver_event: dfs CAC_COMPLETED event delivered on chan 104. 
 +dfs_deliver_event: dfs CAC_COMPLETED event delivered on chan 108. 
 +dfs_deliver_event: dfs CAC_COMPLETED event delivered on chan 112. 
 +su bfee 1 mu bfee 0 su bfer 1 mu bfer 1 impl bf 0 sounding dim 1 
 +send_vdev_up_cmd_non_tlv for vap 0 
 +Beacon mode set to staggered. Cannot enable FD 
 +__ieee80211_smart_ant_init: Smart Antenna functions are not registered !!! 
 +[wifi1] FWLOG: [87638] VDEV_MGR_HP_START_TIME ( 0x0, 0x15a4, 0x4eb6001 ) 
 +[wifi1] FWLOG: [87638] RESMGR_OCS_GEN_PERIODIC_NOA ( 0x1 ) 
 +[wifi1] FWLOG: [87638] RESMGR_OCS_GEN_PERIODIC_NOA ( 0x0 ) 
 +[wifi1] FWLOG: [87638] VDEV_MGR_AP_TBTT_CONFIG ( 0x0, 0x15a4, 0x0, 0x0 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 3: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 3 leaves (refcnt 5) 
 +[wifi1] FWLOG: [3700523] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [3700523] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [7376775] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [7376775] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [10104076] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [10104080] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [10104080] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [10104115] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [10104115] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [10104116] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [10104117] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [10104117] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [10104117] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [10104348] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [10104349] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [10104366] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [10104400] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [10775493] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460001, 0x0, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [11053040] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11054072] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11055105] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11056137] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11057159] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11057159] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 2) 
 +[wifi1] FWLOG: [11062746] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11062746] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [12916377] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [12916395] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [12916395] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [12916396] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [12916407] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [12916407] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [12916407] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [12916543] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [12916543] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [12924620] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [12945581] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station with aid 3 leaves (refcnt 5) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 2) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [13376988] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [13376988] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [13376988] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [13377199] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [13377223] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [13377223] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [13377224] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [13377229] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [13377229] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [13377229] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [13377292] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [13377293] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [13377511] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [13377547] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [13377547] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +[wifi1] FWLOG: [13380937] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [13381380] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [13494984] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460001, 0x0, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station with aid 3 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [17053827] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [17053902] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [17053902] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [20730135] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [20730349] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [20730349] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [24406529] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [24406775] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [24406775] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [28083168] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [28083454] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [28083454] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [31759907] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [31760124] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [31760124] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [35436517] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35436765] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35436765] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +[wifi1] FWLOG: [39112821] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [39113003] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [39113003] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 2: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [40086732] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [40086821] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x2, 0x1, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [40086821] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x404114, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [40086822] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x2, 0x1 ) 
 +[wifi1] FWLOG: [40086973] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [40086973] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [40086973] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f488 ) 
 +[wifi1] FWLOG: [40086993] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [40086995] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [40087085] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [40089565] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 2 leaves (refcnt 3) 
 +[wifi1] FWLOG: [40098571] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [40098571] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [40098571] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f488 ) 
 +[wifi1] FWLOG: [40099094] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [40099150] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [40099150] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +Interference detected 
 +rx_clear=100, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 4) 
 +[wifi1] FWLOG: [42698603] vap-0 VDEV_MGR_AP_KEEPALIVE_UNRESPONSIVE ( 0x1, 0x12d, 0x0, 0x1 ) 
 +[wifi1] FWLOG: [42698609] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [42698609] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [42698609] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [42699122] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [42699122] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 4: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 4 leaves (refcnt 4) 
 +[wifi1] FWLOG: [46375514] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [46375514] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [46391737] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [46391769] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [46391769] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [46391770] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [46391910] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [46391910] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [46391910] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [46392142] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [46392144] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [46392374] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [46392405] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [46393128] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [46616655] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [46616655] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [46616655] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [46617167] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [46617167] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [50293651] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [50293651] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +Interference detected 
 +rx_clear=100, rx_frame=0, tx_frame=0 
 +ath0: [4c:63:71:e1:db:46]station with aid 3 leaves (refcnt 4) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 3 leaves (refcnt 4) 
 +[wifi1] FWLOG: [53969933] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [53969933] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [57646375] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [57646375] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +[wifi1] FWLOG: [61322897] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [61322897] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station reassociated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 3 leaves (refcnt 4) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +[wifi1] FWLOG: [64999126] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [64999126] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 3 leaves (refcnt 4) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 4: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 4 leaves (refcnt 4) 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 3 leaves (refcnt 4) 
 +[wifi1] FWLOG: [68675617] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [68675617] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 4: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 4 leaves (refcnt 4) 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 3 leaves (refcnt 4) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [70946956] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [70947121] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [70947121] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [70947121] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [70947150] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [70947150] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [70947150] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [70947159] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [70947161] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [70951158] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [70956946] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [70973768] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [71307773] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [71307773] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [71307773] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [71308286] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [71308286] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [71600785] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [71600911] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [71600911] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [71600912] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [71600922] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [71600922] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [71600922] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [71601156] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [71601158] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [71601382] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [71601437] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [71602122] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [71958760] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [71958760] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [71958760] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [71959273] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [71959273] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [74068017] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74068083] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [74068083] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [74068083] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [74068163] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74068163] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74068163] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74068367] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74068368] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74068618] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74068651] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74068767] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 2) 
 +[wifi1] FWLOG: [74111505] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74111505] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74111505] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74112018] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74112018] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [74135479] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74135671] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [74135671] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [74135671] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [74136547] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74136547] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74136547] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74136569] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x3, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74136570] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74137618] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74139162] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 29) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 2) 
 +[wifi1] FWLOG: [74195537] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74195537] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74195537] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [74196050] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74196050] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [74280862] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74280883] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [74280883] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [74280883] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [74280997] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74280997] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74280997] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74281021] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74281023] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74281024] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 2) 
 +[wifi1] FWLOG: [74293954] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74293954] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74293954] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74294467] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74294467] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x511 
 +[wifi1] FWLOG: [74295218] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74295220] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [74295220] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [74295220] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [74295294] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74295294] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74295294] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74295313] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74295315] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74297191] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74301223] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 5) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 2) 
 +[wifi1] FWLOG: [74377483] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74377483] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74377483] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 3: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [74377996] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74377996] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station with aid 3 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [74421932] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74421999] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [74421999] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [74421999] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [74422087] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74422087] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74422087] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74422113] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74422115] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [74423063] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74430832] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [74490870] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x1, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [74525065] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [74525065] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74525065] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [74525578] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [74525578] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [b4:e6:2d:96:ce:f9]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +[wifi1] FWLOG: [78201998] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [78201998] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [78676706] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [78676773] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [78676773] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [78676774] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [78676878] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [78676878] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [78676878] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [78677102] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [78677103] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [78677322] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [78677360] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [78677775] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath0: [a4:cf:12:db:08:c3]station associated at aid 4: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [b4:e6:2d:96:ce:f9]station with aid 3 leaves (refcnt 4) 
 +ath0: [b4:e6:2d:96:ce:f9]station associated at aid 3: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [b4:e6:2d:96:ce:f9]station with aid 3 leaves (refcnt 4) 
 +ath0: [b4:e6:2d:96:ce:f9]station associated at aid 3: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 4) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 4) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 5: long preamble, long slot time, QoS, HT40 cap 0x431 
 +ath0: [c4:dd:57:0c:ea:b4]station associated at aid 6: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [c4:dd:57:0c:f3:0a]station associated at aid 7: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9c:5a]station associated at aid 8: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [c4:dd:57:0c:f3:0a]station with aid 7 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:9c:5a]station with aid 8 leaves (refcnt 4) 
 +ath0: [c4:dd:57:0c:f3:0a]station associated at aid 7: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [c4:dd:57:0c:ea:b4]station with aid 6 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:9c:5a]station associated at aid 6: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [c4:dd:57:0c:ea:b4]station associated at aid 8: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [70:03:9f:47:34:ac]station associated at aid 9: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 5 leaves (refcnt 4) 
 +ath0: [70:03:9f:47:34:ac]station with aid 9 leaves (refcnt 4) 
 +ath0: [70:03:9f:47:34:ac]station associated at aid 5: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:15:89]station associated at aid 9: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:15:89]station with aid 9 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:15:89]station associated at aid 9: long preamble, long slot time, HT20 cap 0x31 
 +[wifi1] FWLOG: [81878359] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [81878394] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [81878394] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 4) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [84426934] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [84426934] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [84426934] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [84427446] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [84427446] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 10: long preamble, long slot time, QoS, HT40 cap 0x31 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 4) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [24:6f:28:16:2d:58]station with aid 2 leaves (refcnt 4) 
 +ath0: [24:6f:28:16:2d:58]station associated at aid 2: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath0: [24:6f:28:16:2d:58]station with aid 2 leaves (refcnt 4) 
 +ath0: [24:6f:28:16:2d:58]station associated at aid 2: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [87027070] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [87027184] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [87027184] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [87027185] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [87027205] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [87027205] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [87027205] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [87027538] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [87027540] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [87027843] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [87027915] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [87028511] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 10 leaves (refcnt 4) 
 +[wifi1] FWLOG: [88103402] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [88103499] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [88103499] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 10: long preamble, long slot time, QoS, HT40 cap 0x31 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 10 leaves (refcnt 4) 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [89467116] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [89467116] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [89467116] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [89467629] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [89467629] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 10: long preamble, long slot time, QoS, HT40 cap 0x31 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=100, rx_frame=0, tx_frame=0 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 10 leaves (refcnt 7) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 10: long preamble, long slot time, QoS, HT40 cap 0x31 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=100, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=99, rx_frame=0, tx_frame=0 
 +Interference detected 
 +rx_clear=100, rx_frame=0, tx_frame=0 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 10 leaves (refcnt 5) 
 +[wifi1] FWLOG: [93143736] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [93143736] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 4) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, long slot time, QoS, HT40 cap 0x31 
 +found private data block and skip it 
 +[wifi1] FWLOG: [96820111] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [96820111] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [97418632] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [97418674] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [97418674] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [97418674] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [97418756] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [97418756] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [97418756] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [97418902] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [97418904] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [97418918] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [97418971] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [97459931] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460001, 0x0, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 10: long preamble, long slot time, QoS, HT20 cap 0x411 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 4) 
 +[wifi1] FWLOG: [97793532] vap-0 VDEV_MGR_AP_KEEPALIVE_UNRESPONSIVE ( 0x1, 0x12d, 0x0, 0x1 ) 
 +[wifi1] FWLOG: [97793538] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [97793538] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [97793538] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [97794051] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [97794051] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [101470632] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [101470632] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [105147192] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [105147192] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [108823912] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [108823912] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [112500560] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [112500560] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +[wifi1] FWLOG: [116177314] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [116177314] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [119854199] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [119854199] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [123531123] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [123531123] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [127207886] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [127207886] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [129047157] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [129047313] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [129047313] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [129047313] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [129047336] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [129047336] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [129047336] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [129047477] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [129047479] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [129047726] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [129047813] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [129175318] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [129175318] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [129175318] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [129175830] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [129175830] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, long slot time, QoS, HT20 cap 0x11 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [131445173] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [131445280] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [131445280] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [131445281] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [131445299] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [131445299] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [131445299] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [131445502] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [131445504] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [131445748] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [131445831] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [131480930] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [131480930] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [131480930] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [131481442] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [131481442] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [f8:cf:c5:8d:c1:dd]station associated at aid 11: long preamble, long slot time, QoS, HT40 cap 0x11 
 +ath0: [f8:cf:c5:8d:c1:dd]station with aid 11 leaves (refcnt 4) 
 +ath0: [f8:cf:c5:8d:c1:dd]station associated at aid 11: long preamble, long slot time, QoS, HT40 cap 0x11 
 +ath0: [d4:d2:d6:f8:03:3f]station associated at aid 12: long preamble, long slot time, QoS, HT40 cap 0x11 
 +ath0: [d4:d2:d6:f8:03:3f]station with aid 12 leaves (refcnt 4) 
 +ath0: [d4:d2:d6:f8:03:3f]station with aid 0 leaves (refcnt 3) 
 +ath0: [d4:d2:d6:f8:03:3f]station associated at aid 12: long preamble, long slot time, QoS, HT40 cap 0x11 
 +ath0: [a4:cf:12:da:a5:35]station associated at aid 13: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9e:eb]station associated at aid 14: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:73:7e]station associated at aid 15: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:b4:e7]station associated at aid 16: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9c:5b]station associated at aid 17: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:73:7e]station with aid 15 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:a5:35]station with aid 13 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:9e:eb]station with aid 14 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:9c:5b]station with aid 17 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:b4:e7]station with aid 16 leaves (refcnt 4) 
 +ath0: [d4:d2:d6:f8:03:3f]station with aid 12 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:a5:35]station associated at aid 12: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9e:eb]station associated at aid 13: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:73:7e]station associated at aid 14: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:b4:e7]station associated at aid 15: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9c:5b]station associated at aid 16: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [d4:d2:d6:f8:03:3f]station associated at aid 17: long preamble, long slot time, QoS, HT40 cap 0x11 
 +ath0: [a4:cf:12:da:a5:35]station with aid 12 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:9e:eb]station with aid 13 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:b4:e7]station with aid 15 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:9c:5b]station with aid 16 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:73:7e]station with aid 14 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:a5:35]station associated at aid 12: long preamble, long slot time cap 0x31 
 +ath0: [a4:cf:12:da:a5:35]station with aid 12 leaves (refcnt 3) 
 +ath0: [a4:cf:12:da:9e:eb]station associated at aid 12: long preamble, long slot time cap 0x31 
 +ath0: [a4:cf:12:da:b4:e7]station associated at aid 13: long preamble, long slot time cap 0x31 
 +ath0: [a4:cf:12:da:9c:5b]station associated at aid 14: long preamble, long slot time cap 0x31 
 +ath0: [a4:cf:12:da:73:7e]station associated at aid 15: long preamble, long slot time cap 0x31 
 +ath0: [a4:cf:12:da:73:7e]station with aid 15 leaves (refcnt 3) 
 +ath0: [a4:cf:12:da:9c:5b]station with aid 14 leaves (refcnt 3) 
 +ath0: [a4:cf:12:da:b4:e7]station with aid 13 leaves (refcnt 3) 
 +ath0: [a4:cf:12:da:9e:eb]station with aid 12 leaves (refcnt 3) 
 +ath0: [d4:d2:d6:f8:03:3f]station with aid 17 leaves (refcnt 4) 
 +ath0: [a4:cf:12:da:73:7e]station associated at aid 12: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [d4:d2:d6:f8:03:3f]station associated at aid 13: long preamble, long slot time, QoS, HT40 cap 0x11 
 +ath0: [a4:cf:12:da:a5:35]station associated at aid 14: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:b4:e7]station associated at aid 15: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9e:eb]station associated at aid 16: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [a4:cf:12:da:9c:5b]station associated at aid 17: long preamble, long slot time, HT20 cap 0x31 
 +ath0: [f8:cf:c5:8d:c1:dd]station with aid 11 leaves (refcnt 4) 
 +Interference detected 
 +rx_clear=100, rx_frame=0, tx_frame=0 
 +[wifi1] FWLOG: [940382] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [940382] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [4617415] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [4617415] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [6586811] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [6586843] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [6586843] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [6586843] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [6586869] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [6586869] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [6586870] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [6592939] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [6602880] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x6, 0x40, 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 4) 
 +ath0: [4c:63:71:e1:db:46]station with aid 10 leaves (refcnt 8) 
 +[wifi1] FWLOG: [6769364] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [7034176] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0xa, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [7712247] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460001, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [8294366] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [8294677] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [8294677] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [b4:e6:2d:96:ce:f9]station with aid 3 leaves (refcnt 4) 
 +ath0: [b4:e6:2d:96:ce:f9]station associated at aid 3: long preamble, short slot time, QoS, HT40 cap 0x431 
 +[wifi1] FWLOG: [11971287] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11971528] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [11971528] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +[wifi1] FWLOG: [15647864] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [15648141] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [15648141] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 10: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 4) 
 +[wifi1] FWLOG: [17759345] vap-0 VDEV_MGR_AP_KEEPALIVE_UNRESPONSIVE ( 0x1, 0x12d, 0x0, 0x1 ) 
 +[wifi1] FWLOG: [17759351] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [17759351] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [17759351] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [17759864] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [17759864] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 7) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 4) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [19158233] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [19158261] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [19158261] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [19158261] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [19158370] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [19158370] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [19158370] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [19158611] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [19158613] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [19158829] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [19158864] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [20022086] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [20022086] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [20022086] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [20022598] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [20022598] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [23699150] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [23699150] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [26570241] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [26570397] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [26570397] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [26570397] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [26570425] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [26570425] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [26570425] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [26570633] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [26570634] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [26570833] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [26570859] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [26571605] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [27206933] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [27206933] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [27206933] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [27207467] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [27207467] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [30883830] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [30883830] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [31128054] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [31128118] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [31128118] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [31128118] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [31128189] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [31128189] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [31128189] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [31128368] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [31128369] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [31128587] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [31128644] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [31129354] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 1 leaves (refcnt 3) 
 +[wifi1] FWLOG: [31143554] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [31143554] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [31143554] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [31144066] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [31144066] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +found private data block and skip it 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station reassociated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 7) 
 +ath0: [9c:d2:1e:5b:3f:39]station associated at aid 11: long preamble, short slot time, QoS, HT40 cap 0x431 
 +[wifi1] FWLOG: [34820346] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [34820346] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [35316989] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [35317021] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [35317021] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35317021] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [35317147] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [35317147] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [35317148] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [35355066] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [35355067] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [35360143] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [35366044] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +ath0: [04:b1:67:2d:58:da]station associated at aid 18: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath0: [04:b1:67:2d:58:da]station with aid 18 leaves (refcnt 4) 
 +ath1: [04:b1:67:2d:58:da]station associated at aid 2: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [35453959] RATE: ChainMask 1, peer_mac 58:da, phymode 10, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [35453962] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x2, 0x1, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [35453962] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x404114, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [35453963] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x2, 0x1 ) 
 +[wifi1] FWLOG: [35454130] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [35454130] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35454130] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f488 ) 
 +[wifi1] FWLOG: [35454179] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0006, 0x2, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [35454181] RATE: ChainMask 1, peer_mac 58:da, phymode 15, ni_flags 0x0620b006, vht_mcs_set 0xfffe, ht_mcs_set 0x00ff, legacy_rate_set 0x0ff0 
 +ath0: [4c:63:71:e1:db:46]station with aid 10 leaves (refcnt 8) 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 8) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x431 
 +[wifi1] FWLOG: [35460192] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0000, 0x6, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [35462735] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0002, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [35463918] WAL_DBGID_TX_BA_SETUP ( 0x44f488, 0x58da0001, 0x0, 0x40, 0x1 ) 
 +ath1: [04:b1:67:2d:58:da]station with aid 2 leaves (refcnt 3) 
 +[wifi1] FWLOG: [35473654] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0x58da, 0x0 ) 
 +[wifi1] FWLOG: [35473654] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35473654] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f488 ) 
 +[wifi1] FWLOG: [35474177] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35474224] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [35474224] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +ath0: [9c:d2:1e:5b:3f:39]station with aid 11 leaves (refcnt 4) 
 +ath0: [a4:cf:12:75:b5:a4]station with aid 1 leaves (refcnt 8) 
 +ath0: [a4:cf:12:75:b5:a4]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x431 
 +[wifi1] FWLOG: [36679361] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460001, 0x0, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 10: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 2) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [37035283] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [37035283] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [37035283] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [37035494] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [37035524] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [37035524] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [37035524] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [37035524] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [37035524] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [37035525] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [37035571] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x0, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [37035572] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [37035807] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [37035811] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [37035811] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +ath0: [4c:63:71:e1:db:46]station with aid 10 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +ath001: [cc:f9:57:10:6c:61]station associated at aid 1: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [38250497] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460002, 0x2, 0x40, 0x1 ) 
 +ath001: [cc:f9:57:10:6c:61]station with aid 1 leaves (refcnt 5) 
 +[wifi1] FWLOG: [38770998] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x17, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [38772395] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460001, 0x0, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 10: long preamble, short slot time, QoS, HT20 cap 0x411 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 2) 
 +ath1: [4c:63:71:e1:db:46]station associated at aid 1: long preamble, short slot time, QoS, HT40 cap 0x111 
 +[wifi1] FWLOG: [39941865] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [39941865] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [39941865] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [39942076] RATE: ChainMask 3, peer_mac db:46, phymode 10, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [39942107] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [39942107] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [39942107] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [39942223] MGMT_TXRX_MU_GID_MGMT ( 0xaf, 0x1, 0x0, 0xfffe, 0x0 ) 
 +[wifi1] FWLOG: [39942223] MGMT_TXRX_MU_GID_MGMT ( 0xb3, 0x0, 0x0, 0x0, 0x0 ) 
 +[wifi1] FWLOG: [39942311] MGMT_TXRX_MU_GID_MGMT ( 0xadd, 0x1, 0x0 ) 
 +[wifi1] FWLOG: [39942311] RATE: ChainMask 3, peer_mac db:46, phymode 15, ni_flags 0x0621b006, vht_mcs_set 0xfffa, ht_mcs_set 0xffff, legacy_rate_set 0x0ff0 
 +[wifi1] FWLOG: [39942319] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460006, 0x3, 0x40, 0x1 ) 
 +[wifi1] FWLOG: [39942388] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [39942408] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [39942408] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x1 ) 
 +[wifi1] FWLOG: [39982253] WAL_DBGID_TX_BA_SETUP ( 0x44f5f0, 0xdb460000, 0x1, 0x40, 0x1 ) 
 +ath0: [4c:63:71:e1:db:46]station with aid 10 leaves (refcnt 5) 
 +ath0: [4c:63:71:e1:db:46]station associated at aid 10: long preamble, short slot time, QoS, HT20 cap 0x411 
 +[wifi1] FWLOG: [40052506] vap-0 AP PS: AID=1 detected out-of-sync now=174270234 tx_waiting=174259919 txq_depth=0 
 +ath1: [4c:63:71:e1:db:46]station with aid 1 leaves (refcnt 4) 
 +[wifi1] FWLOG: [40343331] vap-0 VDEV_MGR_AP_KEEPALIVE_UNRESPONSIVE ( 0x1, 0x12d, 0x0, 0x1 ) 
 +[wifi1] FWLOG: [40343337] WAL_DBGID_SECURITY_UCAST_KEY_SET ( 0xdb46, 0x0 ) 
 +[wifi1] FWLOG: [40343337] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [40343337] WAL_DBGID_SECURITY_ALLOW_DATA ( 0x44f5f0 ) 
 +[wifi1] FWLOG: [40343850] WAL_DBGID_SECURITY_ENCR_EN (  ) 
 +[wifi1] FWLOG: [40343850] WAL_DBGID_SECURITY_MCAST_KEY_SET ( 0x2 ) 
 +admin@RT-AC57U_V2:/# 
 +</nowiki> 
 +</WRAP>\\ 
 + 
 +<code> 
 +admin@RT-AC57U_V2:/# cat /proc/cmdline 
 +board=DTB console=ttyS0,115200 root=/dev/mtdblock4 rootfstype=squashfs mem=128M 
 + 
 +admin@RT-AC57U_V2:/# cat /proc/cpuinfo 
 +system type             : Qualcomm Atheros QCA5502 ver 1 rev 0 
 +machine                 : ASUS RT-AC59U 
 +processor               : 0 
 +cpu model               : MIPS 74Kc V5.0 
 +BogoMIPS                : 385.84 
 +wait instruction        : yes 
 +microsecond timers      : yes 
 +tlb_entries             : 32 
 +extra interrupt vector  : yes 
 +hardware watchpoint     : yes, count: 4, address/irw mask: [0x0ffc, 0x0ffc, 0x0ffb, 0x0ffb] 
 +isa                     : mips1 mips2 mips32r1 mips32r2 
 +ASEs implemented        : mips16 dsp dsp2 
 +shadow register sets    : 1 
 +kscratch registers      : 0 
 +package                 : 0 
 +core                    : 0 
 +VCED exceptions         : not available 
 +VCEI exceptions         : not available 
 + 
 +admin@RT-AC57U_V2:/# cat /proc/meminfo 
 +MemTotal:         124892 kB 
 +MemFree:           22060 kB 
 +MemAvailable:      55312 kB 
 +Buffers:           10980 kB 
 +Cached:            32844 kB 
 +SwapCached:            0 kB 
 +Active:            35772 kB 
 +Inactive:          20224 kB 
 +Active(anon):      13756 kB 
 +Inactive(anon):       44 kB 
 +Active(file):      22016 kB 
 +Inactive(file):    20180 kB 
 +Unevictable:           0 kB 
 +Mlocked:               0 kB 
 +SwapTotal:             0 kB 
 +SwapFree:              0 kB 
 +Dirty:                 0 kB 
 +Writeback:             0 kB 
 +AnonPages:         12188 kB 
 +Mapped:             7552 kB 
 +Shmem:              1628 kB 
 +Slab:              26164 kB 
 +SReclaimable:       2592 kB 
 +SUnreclaim:        23572 kB 
 +KernelStack:         528 kB 
 +PageTables:          504 kB 
 +NFS_Unstable:          0 kB 
 +Bounce:                0 kB 
 +WritebackTmp:          0 kB 
 +CommitLimit:       62444 kB 
 +Committed_AS:      25772 kB 
 +VmallocTotal:    1048372 kB 
 +VmallocUsed:           0 kB 
 +VmallocChunk:          0 kB 
 + 
 +admin@RT-AC57U_V2:/# cat /proc/devices 
 +Character devices: 
 +  1 mem 
 +  2 pty 
 +  3 ttyp 
 +  4 ttyS 
 +  5 /dev/tty 
 +  5 /dev/console 
 +  5 /dev/ptmx 
 + 10 misc 
 + 90 mtd 
 +108 ppp 
 +128 ptm 
 +136 pts 
 +166 ttyACM 
 +180 usb 
 +189 usb_device 
 +228 nvram 
 +254 bled 
 + 
 +Block devices: 
 +  1 ramdisk 
 +259 blkext 
 +  8 sd 
 + 31 mtdblock 
 + 65 sd 
 + 66 sd 
 + 67 sd 
 + 68 sd 
 + 69 sd 
 + 70 sd 
 + 71 sd 
 +128 sd 
 +129 sd 
 +130 sd 
 +131 sd 
 +132 sd 
 +133 sd 
 +134 sd 
 +135 sd 
 + 
 +admin@RT-AC57U_V2:/# ls /sys/devices/platform 
 +ahb                   b8100000.wifi         oscillator            uevent 
 +alarmtimer            interrupt-controller  serial8250 
 + 
 +admin@RT-AC57U_V2:/# cat /proc/mtd 
 +dev:    size   erasesize  name 
 +mtd0: 00040000 00010000 "Bootloader" 
 +mtd1: 00010000 00010000 "nvram" 
 +mtd2: 00010000 00010000 "Factory" 
 +mtd3: 00f20000 00010000 "linux" 
 +mtd4: 00d93500 00010000 "rootfs" 
 +mtd5: 00080000 00010000 "jffs2" 
 +mtd6: 01000000 00010000 "ALL" 
 + 
 +admin@RT-AC57U_V2:/# cat /sys/class/mtd/mtd*/offset 
 +
 +262144 
 +327680 
 +393216 
 +2018048 
 +16252928 
 +
 + 
 +</code> 
 + 
 +ifconfig (configured as AP) 
 +<WRAP bootlog> 
 +<nowiki> 
 +admin@RT-AC57U_V2:/# ifconfig -a 
 +ath0       Link encap:Ethernet  HWaddr A8:5E:45:0C:16:B8 
 +           UP BROADCAST RUNNING  MTU:1500  Metric:1 
 +           RX packets:993009 errors:15 dropped:15 overruns:0 frame:0 
 +           TX packets:2079102 errors:0 dropped:198 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:
 +           RX bytes:123619194 (117.8 MiB)  TX bytes:1559111119 (1.4 GiB) 
 + 
 +ath001     Link encap:Ethernet  HWaddr A8:5E:45:0C:16:B9 
 +           UP BROADCAST RUNNING  MTU:1500  Metric:1 
 +           RX packets:8379 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:585137 errors:0 dropped:187279 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:
 +           RX bytes:1061284 (1.0 MiB)  TX bytes:83854316 (79.9 MiB) 
 + 
 +ath1       Link encap:Ethernet  HWaddr A8:5E:45:0C:16:BC 
 +           UP BROADCAST RUNNING  MTU:1500  Metric:1 
 +           RX packets:52350 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:1026086 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:
 +           RX bytes:12651152 (12.0 MiB)  TX bytes:423226325 (403.6 MiB) 
 + 
 +br0        Link encap:Ethernet  HWaddr A8:5E:45:0C:16:B8 
 +           inet addr:192.168.0.13  Bcast:192.168.0.255  Mask:255.255.255.0 
 +           UP BROADCAST RUNNING ALLMULTI MULTICAST  MTU:1500  Metric:1 
 +           RX packets:887147 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:255834 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:1000 
 +           RX bytes:97046770 (92.5 MiB)  TX bytes:232199624 (221.4 MiB) 
 + 
 +eth0       Link encap:Ethernet  HWaddr A8:5E:45:0C:16:B8 
 +           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
 +           RX packets:2389114 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:1295896 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:1000 
 +           RX bytes:1844388464 (1.7 GiB)  TX bytes:350849195 (334.5 MiB) 
 +           Interrupt:
 + 
 +imq0       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq1       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq2       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq3       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq4       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq5       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq6       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +imq7       Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           NOARP  MTU:16000  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:11000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +lo         Link encap:Local Loopback 
 +           inet addr:127.0.0.1  Mask:255.0.0.0 
 +           UP LOOPBACK RUNNING MULTICAST  MTU:65536  Metric:1 
 +           RX packets:125 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:125 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:
 +           RX bytes:42246 (41.2 KiB)  TX bytes:42246 (41.2 KiB) 
 + 
 +miireg     Link encap:UNSPEC  HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 
 +           [NO FLAGS]  MTU:0  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +vlan1      Link encap:Ethernet  HWaddr A8:5E:45:0C:16:B8 
 +           UP BROADCAST RUNNING ALLMULTI MULTICAST  MTU:1500  Metric:1 
 +           RX packets:2389114 errors:0 dropped:314 overruns:0 frame:0 
 +           TX packets:1295896 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:1000 
 +           RX bytes:1801384412 (1.6 GiB)  TX bytes:345665611 (329.6 MiB) 
 + 
 +vlan2      Link encap:Ethernet  HWaddr A8:5E:45:0C:16:B8 
 +           BROADCAST MULTICAST  MTU:1500  Metric:1 
 +           RX packets:0 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:1000 
 +           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B) 
 + 
 +wifi0      Link encap:UNSPEC  HWaddr A8-5E-45-0C-16-B8-00-41-00-00-00-00-00-00-00-00 
 +           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
 +           RX packets:1771228 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:5477680 errors:28401 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:2699 
 +           RX bytes:170901312 (162.9 MiB)  TX bytes:2372010255 (2.2 GiB) 
 +           Interrupt:47 Memory:b8100000-b8120000 
 + 
 +wifi1      Link encap:UNSPEC  HWaddr A8-5E-45-0C-16-BC-00-41-00-00-00-00-00-00-00-00 
 +           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1 
 +           RX packets:66399 errors:0 dropped:0 overruns:0 frame:0 
 +           TX packets:501764 errors:0 dropped:0 overruns:0 carrier:0 
 +           collisions:0 txqueuelen:2699 
 +           RX bytes:12769893 (12.1 MiB)  TX bytes:355196025 (338.7 MiB) 
 +           Interrupt:40 
 +</nowiki> 
 +</WRAP>\\ 
 + 
 +<code> 
 + 
 +admin@RT-AC57U_V2:/# ls /sys/class/net 
 +ath0    ath1    eth0    imq1    imq3    imq5    imq7    miireg  vlan2   wifi1 
 +ath001  br0     imq0    imq2    imq4    imq6    lo      vlan1   wifi0 
 + 
 + 
 +admin@RT-AC57U_V2:/# brctl show 
 +bridge name     bridge id               STP enabled     interfaces 
 +br0             8000.a85e450c16b8       no              vlan1 
 +                                                        ath0 
 +                                                        ath1 
 +                                                        ath001 
 + 
 + 
 + 
 +admin@RT-AC57U_V2:/# cat /sys/kernel/debug/gpio 
 +GPIOs 0-22, platform/18040000.gpio, ath79: 
 + gpio-1                      |sysfs               ) in  hi 
 + gpio-4                      |sysfs               ) out hi 
 + gpio-5                      |sysfs               ) out lo 
 + gpio-15  (                    |sysfs               ) out lo 
 + gpio-16  (                    |sysfs               ) out lo 
 + gpio-17  (                    |sysfs               ) in  hi 
 + 
 +</code> 
 + 
 +</hidden>
  
 ===== Tags ===== ===== Tags =====
-//Add some basic tags, e.g. SoC, RAM, Flash.// -> [[meta:tags|How to add tags]] + 
-{{tag>EXAMPLETAG unsupported}}+{{tagpage>WIP}} {{tagpage>ath79}} {{tagpage>16flash}} {{tagpage>128ram}} {{tagpage>5port}} {{tagpage>1usb}}
  • Last modified: 2024/05/09 00:21
  • by marceloalm