don't use generic file.
BDF (Board Data File) contains lots of board-special wifi config ( tx power table, fem configs ). Incorrent files will make your wifi slow, over-temperature, or even damage.
don't use generic file.
BDF (Board Data File) contains lots of board-special wifi config ( tx power table, fem configs ). Incorrent files will make your wifi slow, over-temperature, or even damage.
Noted and thank you.
How does one convert a BDF from an older FW (2.4) to make it work with the newer one (2.9). Is there any tool/script for that?
qualcomm give a python script and a excel to convert from/to txt file ( with fields name ) but it under NDA. lol
Which error did you get now ?
The radio doesnāt broadcast and thereās no error in the logs using the BDF extracted from stock FW.
Sometimes, I can see the SSID using an iPhone, but it doesnāt show on any other devices (Windows or Linux). Connecting to it doesnāt work either. Removed the regdomain, same result.
Can you check what's wrong after manually converting from FW 2.4 to 2.9: https://filebin.net/ztyfqvn1spkund89 ?
The same problem I have met. No sure why, but without m3 dump memory, the wifi of qcn6122 can't be scanned. This is why I add this patch: https://github.com/hzyitc/openwrt-redmi-ax3000/blob/ipq50xx-mainline-kernel-5.15-openwrt-23.05/package/kernel/mac80211/patches/ath11k/302-wifi-ath11k-Support-to-assign-m3-dump-memory.patch
unfortunately, radio comes up but is not broadcasting with the v2.9 version. It also shows the wrong freq while the radio doesn't support 6Ghz.
I've uploaded the BDFs of the stock FW here: Filebin | 78m2lprtba0tc6uo
I've included all countries/regions and stock uses board a0 (160). Can you check if you can convert to 2.9?
You can try this: https://filebin.net/r3vk4uspnw97owqt
But I have no idea if it will work...
Thanks, will test later and revert. Much appreciated
the BDF apparently works, though I don't get above 300 Mbps on speedtests (fast.com & speedtest.net).
Also, what country region did you base it on? quick test shows the 160Ghz mode works only when country is set to US.
root@ae-ap06:~# iw reg get
global
country US: DFS-FCC
(902 - 904 @ 2), (N/A, 30), (N/A)
(904 - 920 @ 16), (N/A, 30), (N/A)
(920 - 928 @ 8), (N/A, 30), (N/A)
(2400 - 2472 @ 40), (N/A, 30), (N/A)
(5150 - 5250 @ 80), (N/A, 23), (N/A), AUTO-BW
(5250 - 5350 @ 80), (N/A, 24), (0 ms), DFS, AUTO-BW
(5470 - 5730 @ 160), (N/A, 24), (0 ms), DFS
(5730 - 5850 @ 80), (N/A, 30), (N/A), AUTO-BW
(5850 - 5895 @ 40), (N/A, 27), (N/A), NO-OUTDOOR, AUTO-BW, PASSIVE-SCAN
(5925 - 7125 @ 320), (N/A, 12), (N/A), NO-OUTDOOR, PASSIVE-SCAN
(57240 - 71000 @ 2160), (N/A, 40), (N/A)
phy#0 (self-managed)
country US: DFS-FCC
(2402 - 2472 @ 40), (6, 30), (N/A)
(5170 - 5250 @ 80), (N/A, 30), (N/A), AUTO-BW
(5250 - 5330 @ 80), (N/A, 24), (0 ms), DFS, AUTO-BW
(5490 - 5730 @ 160), (N/A, 24), (0 ms), DFS, AUTO-BW
(5735 - 5895 @ 160), (N/A, 30), (N/A), AUTO-BW
(5925 - 7125 @ 160), (N/A, 30), (N/A), NO-OUTDOOR, AUTO-BW
when set to GB/NL/00/others:
root@ae-ap06:~# iw reg get
global
country GB: DFS-ETSI
(2400 - 2483 @ 40), (N/A, 20), (N/A)
(5150 - 5250 @ 80), (N/A, 23), (N/A), NO-OUTDOOR, AUTO-BW
(5250 - 5350 @ 80), (N/A, 20), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
(5470 - 5730 @ 160), (N/A, 26), (0 ms), DFS
(5725 - 5850 @ 80), (N/A, 23), (N/A), NO-OUTDOOR
(5925 - 6425 @ 160), (N/A, 23), (N/A), NO-OUTDOOR
(57000 - 71000 @ 2160), (N/A, 40), (N/A)
phy#0 (self-managed)
country GB: DFS-ETSI
(2402 - 2482 @ 40), (N/A, 20), (N/A)
(5170 - 5250 @ 80), (N/A, 23), (N/A), NO-OUTDOOR, AUTO-BW
(5250 - 5330 @ 80), (N/A, 23), (0 ms), NO-OUTDOOR, DFS, AUTO-BW
(5490 - 5590 @ 80), (N/A, 30), (0 ms), DFS, AUTO-BW
(5590 - 5650 @ 40), (N/A, 30), (600000 ms), DFS, AUTO-BW
(5650 - 5710 @ 40), (N/A, 30), (0 ms), DFS, AUTO-BW
(5945 - 6425 @ 160), (N/A, 24), (N/A), NO-OUTDOOR, AUTO-BW
As FYI, I also learned from qcom documentation that bdwlan.ba0 is the right one for this 5Ghz radio (see section 8.5):
Thanks for the link.
BDF files are used depending on the configured region (/etc/system/wait
):
#Override with default FCC data
#cp /lib/firmware/IPQ4019/FCC/* /tmp/IPQ4019/hw.1
ls -l /lib/firmware/
cp /etc/firmware/IPQ5018/FCC/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/FCC/* /lib/firmware/qcn9000
#If detects region other then US(FCC), use those date instead.
if [ "$COUNTRY" ] ; then
case "$COUNTRY" in
"CHN") #China
echo "[utopia][init] Using CHN region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region CN
#cp /lib/firmware/IPQ4019/CN/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/CN/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/CN/* /lib/firmware/qcn9000
;;
"HKG") #HKG
echo "[utopia][init] Using HKG region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region HK
#cp /lib/firmware/IPQ4019/HK/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/HK/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/HK/* /lib/firmware/qcn9000
;;
"IND") #India
echo "[utopia][init] Using IND region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region IN
#cp /lib/firmware/IPQ4019/IN/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/IN/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/IN/* /lib/firmware/qcn9000
;;
"PHL") #Philippines
echo "[utopia][init] Using PHL region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region PH
#cp /lib/firmware/IPQ4019/PH/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/PH/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/PH/* /lib/firmware/qcn9000
;;
"SGP") #Singapore
echo "[utopia][init] Using SGP region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region SG
#cp /lib/firmware/IPQ4019/SG/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/SG/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/SG/* /lib/firmware/qcn9000
;;
"THA") #Thailand
echo "[utopia][init] Using THA region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region TH
#cp /lib/firmware/IPQ4019/TH/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/TH/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/TH/* /lib/firmware/qcn9000
;;
"JPN")
echo "[utopia][init] Using JPN region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region JP
#cp /lib/firmware/IPQ4019/JP/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/JP/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/JP/* /lib/firmware/qcn9000
;;
"KOR")
echo "[utopia][init] Using KOR region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region KR
#cp /lib/firmware/IPQ4019/KR/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/KR/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/KR/* /lib/firmware/qcn9000
;;
"XAH")
echo "[utopia][init] Using XAH region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region AH
#cp /lib/firmware/IPQ4019/AH/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/AH/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/AH/* /lib/firmware/qcn9000
;;
"TWN")
echo "[utopia][init] Using TWN region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region US
#cp /lib/firmware/IPQ4019/FCC/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/FCC/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/FCC/* /lib/firmware/qcn9000
;;
"CAN")
echo "[utopia][init] Using CAN region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region CA
#cp /lib/firmware/IPQ4019/IC/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/IC/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/IC/* /lib/firmware/qcn9000
;;
"EEE")
echo "[utopia][init] Using EEE region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region EU
#cp /lib/firmware/IPQ4019/EU/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/EU/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/EU/* /lib/firmware/qcn9000
;;
"XME")
echo "[utopia][init] Using XME region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region ME
#cp /lib/firmware/IPQ4019/ME/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/ME/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/ME/* /lib/firmware/qcn9000
;;
# "SAU")
# echo "[utopia][init] Using SAU region for WiFi firmware and board data"
# syscfg_set wifi::multiregion_region ME
# cp /etc/firmware/IPQ5018/ME/* /lib/firmware/IPQ5018
# cp /etc/firmware/qcn9000/ME/* /lib/firmware/qcn9000
# ;;
"USA")
echo "[utopia][init] Using USA region for WiFi firmware and board data"
syscfg_set wifi::multiregion_region US
#cp /lib/firmware/IPQ4019/FCC/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/FCC/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/FCC/* /lib/firmware/qcn9000
;;
*)
echo "[utopia][init] Critical error, no support Country Code"
;;
esac
else
case "$REGION" in
"CA")
echo "[utopia][init] Using CA region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/IC/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/IC/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/IC/* /lib/firmware/qcn9000
;;
"AH")
echo "[utopia][init] Using AH region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/AH/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/AH/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/AH/* /lib/firmware/qcn9000
;;
"EU")
echo "[utopia][init] Using EU region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/EU/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/EU/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/EU/* /lib/firmware/qcn9000
;;
"PH")
echo "[utopia][init] Using PH region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/PH/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/PH/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/PH/* /lib/firmware/qcn9000
;;
"ME")
echo "[utopia][init] Using ME region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/ME/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/ME/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/ME/* /lib/firmware/qcn9000
;;
"CN")
echo "[utopia][init] Using CN region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/CN/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/CN/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/CN/* /lib/firmware/qcn9000
;;
"JP")
echo "[utopia][init] Using JP region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/JP/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/JP/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/JP/* /lib/firmware/qcn9000
;;
"KR")
echo "[utopia][init] Using KR region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/KR/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/KR/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/KR/* /lib/firmware/qcn9000
;;
"HK")
echo "[utopia][init] Using HK region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/HK/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/HK/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/HK/* /lib/firmware/qcn9000
;;
"IN")
echo "[utopia][init] Using IN region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/IN/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/IN/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/IN/* /lib/firmware/qcn9000
;;
"TH")
echo "[utopia][init] Using TH region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/TH/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/TH/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/TH/* /lib/firmware/qcn9000
;;
"SG")
echo "[utopia][init] Using SG region for WiFi firmware and board data"
#cp /lib/firmware/IPQ4019/SG/* /tmp/IPQ4019/hw.1
cp /etc/firmware/IPQ5018/SG/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/SG/* /lib/firmware/qcn9000
;;
"TW")
echo "[utopia][init] Using TW region for WiFi firmware and board data"
cp /etc/firmware/IPQ5018/FCC/* /lib/firmware/IPQ5018
cp /etc/firmware/qcn9000/FCC/* /lib/firmware/qcn9000
;;
*)
echo "[utopia][init] No REGION definded, use FCC"
;;
esac
fi
I used the FCC region.
Iāve moved to kernel 6.1 and 6.6. What will the next release be based on?
When trying to make progress on ath11k ipq5018 wifi, I now run into an issue with qcom scm where it hangs/times out/reboots on calling qcom_scm_pas_auth_and_reset() when bringing up Q6 wcss. Not sure where to start troubleshooting as scm calls and the firmware are black boxes to me. Any hints/suggestions?
@hzyitc: have you moved to kernel 6.x and run into this as well?
Very likely v6.6, but if ipq50xx will be ready by the time the next release branch gets cut, is an open question. For a new (sub-)target there's no point concentrating on anything but the most current kernel available in OpenWrt (the qualcommax umbrella target has already dropped support for anything older than v6.6 anyways).
yeah. doing it. But for now I'm just working on ethernet. Will test WiFi these day.
By the way, I had solved the DMA issue of qca-nss-dp. Will open a WiP PR to openwrt offical these day.
Iāve made a start with kernel 6.6 here, including your patches for ethernet (a much cleaner solution, great stuff)
just dug a bit deeper in the downstream code repository and found that the reset command in scm for ipq5018 is different from what is defined in the qcom_scm.h header file:
#define QCOM_SCM_PIL_PAS_AUTH_AND_RESET 0x05
should actually be 0x14 based on the q6v5 mpd driver here
just tested it, got past qcom_scm_pas_auth_and_reset() but now get a time out on the qcom_q6v5_wait_for_start when trying to bring up the Q6 processor:
[ 16.996870] ath11k c000000.wifi: failed to boot the remote processor Q6
[ 17.002609] ath11k c000000.wifi: failed to power up :-110
will continue troubleshooting and report back
Working on this. And found some bug. Will send PR.
HI,i have a TTL bootlog to share.I just have the board with openwrt. I hope can help you.
Also, if possible, please help me backup the original firmware and share it with me. Thank you!
Format: Log Type - Time(microsec) - Message - Optional Info
Log Type: B - Since Boot(Power On Reset), D - Delta, S - Statistic
S - QC_IMAGE_VERSION_STRING=BOOT.BF.3.3.1.1-00052
S - IMAGE_VARIANT_STRING=MAACANAZA
S - OEM_IMAGE_VERSION_STRING=CRM
S - Boot Config, 0x000002c5
B - 127 - PBL, Start
B - 1560 - bootable_media_detect_entry, Start
B - 3282 - bootable_media_detect_success, Start
B - 3285 - elf_loader_entry, Start
B - 8190 - auth_hash_seg_entry, Start
B - 8550 - auth_hash_seg_exit, Start
B - 98821 - elf_segs_hash_verify_entry, Start
B - 167991 - PBL, End
B - 138379 - SBL1, Start
B - 199775 - GCC [RstStat:0x10, RstDbg:0x600000] WDog Stat : 0x4
B - 208071 - clock_init, Start
D - 7198 - clock_init, Delta
B - 215421 - boot_flash_init, Start
D - 13145 - boot_flash_init, Delta
B - 228628 - boot_config_data_table_init, Start
D - 4849 - boot_config_data_table_init, Delta - (575 Bytes)
B - 236527 - Boot Setting : 0x00000618
B - 242719 - CDT version:2,Platform ID:8,Major ID:4,Minor ID:0,Subtype:1
B - 249642 - sbl1_ddr_set_params, Start
B - 251259 - Pre_DDR_clock_init, Start
B - 256901 - Pre_DDR_clock_init, End
B - 897676 - do ddr sanity test, Start
D - 61 - do ddr sanity test, Delta
B - 902342 - Image Load, Start
D - 220149 - QSEE Image Loaded, Delta - (523680 Bytes)
B - 1123345 - Image Load, Start
D - 14061 - DEVCFG Image Loaded, Delta - (13592 Bytes)
B - 1137436 - Image Load, Start
D - 175558 - APPSBL Image Loaded, Delta - (422316 Bytes)
B - 1313055 - QSEE Execution, Start
D - 61 - QSEE Execution, Delta
B - 1319521 - SBL1, End
D - 1183796 - SBL1, Delta
S - Flash Throughput, 2461 KB/s (960163 Bytes, 390058 us)
S - DDR Frequency, 800 MHz
S - Core 0 Frequency, 800 MHz
U-Boot 2016.01 (May 27 2021 - 11:31:56 +0800)
CBT U-Boot ver: 3.1.02 ([IPQ5018].[SPF11.3].[CS])
DRAM: smem ram ptable found: ver: 1 len: 4
512 MiB
NAND: QPIC controller support serial NAND
ID = 22c822c8
Vendor = c8
Device = 22
Serial Nand Device Found With ID : 0xc8 0x22
Serial NAND device Manufature:GD5F2GQ5REYIH
Device Size:256 MiB, Page size:2048, Spare Size:64, ECC:4-bit
SF: Unsupported flash IDs: manuf 00, jedec 0000, ext_jedec 0000
ipq_spi: SPI Flash not found (bus/cs/speed/mode) = (0/0/48000000/0)
256 MiB
MMC: sdhci: Node Not found, skipping initialization
PCI Link Intialized
PCI1 is not defined in the device tree
In: serial@78AF000
Out: serial@78AF000
Err: serial@78AF000
machid: 8040001
eth0 MAC Address from ART is not valid
eth1 MAC Address from ART is not valid
Hit any key to stop autoboot: 0
ubi0: attaching mtd1
ubi0: scanning is finished
ubi0: attached mtd1 (name "mtd=0", size 74 MiB)
ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
ubi0: good PEBs: 592, bad PEBs: 0, corrupted PEBs: 0
ubi0: user volume: 5, internal volumes: 1, max. volumes count: 128
ubi0: max/mean erase counter: 12/4, WL threshold: 4096, image sequence number: 222949656
ubi0: available PEBs: 0, total reserved PEBs: 592, PEBs reserved for bad PEB handling: 40
Read 0 bytes from volume kernel to 44000000
No size specified -> Using max size (4075368)
## Loading kernel from FIT Image at 44000000 ...
Using 'config@mp03.1' configuration
Trying 'kernel@1' kernel subimage
Description: ARM OpenWrt Linux-4.4.60
Type: Kernel Image
Compression: lzma compressed
Data Start: 0x440000e4
Data Size: 2946754 Bytes = 2.8 MiB
Architecture: ARM
OS: Linux
Load Address: 0x41208000
Entry Point: 0x41208000
Hash algo: crc32
Hash value: f01460eb
Hash algo: sha1
Hash value: bafbb5a80290b55321e0568dd92fa3d979e32a42
Verifying Hash Integrity ... crc32+ sha1+ OK
## Loading fdt from FIT Image at 44000000 ...
Using 'config@mp03.1' configuration
Trying 'fdt@mp03.1' fdt subimage
Description: ARM OpenWrt qcom-ipq50xx-mpxx device tree blob
Type: Flat Device Tree
Compression: uncompressed
Data Start: 0x443594d4
Data Size: 56252 Bytes = 54.9 KiB
Architecture: ARM
Hash algo: crc32
Hash value: f840aec8
Hash algo: sha1
Hash value: 35ecec827943d28e581a8c52b4480ff78b2c76c4
Verifying Hash Integrity ... crc32+ sha1+ OK
Booting using the fdt blob at 0x443594d4
Uncompressing Kernel Image ... OK
Loading Device Tree to 4a3ef000, end 4a3ffbbb ... OK
Could not find PCI in device tree
Using machid 0x8040001 from environment
Starting kernel ...
[ 0.000000] Booting Linux on physical CPU 0x0
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 0.000000] Initializing cgroup subsys cpuacct
[ 0.000000] Linux version 4.4.60 (talmud@9003995A-PC-64) (gcc version 5.2.0 (OpenWrt GCC 5.2.0 unknown) ) #9 SMP PREEMPT Fri May 28 17:05:22 CST 2021
[ 0.000000] CPU: ARMv7 Processor [51af8014] revision 4 (ARMv7), cr=10c0383d
[ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
[ 0.000000] Machine model: Qualcomm Technologies, Inc. IPQ5018/AP-MP03.1
[ 0.000000] Ignoring memory range 0x40000000 - 0x41000000
[ 0.000000] Reserved memory: created DMA memory pool at 0x4ea00000, size 16 MiB
[ 0.000000] Reserved memory: initialized node dma_pool1@4ea00000, compatible id shared-dma-pool
[ 0.000000] Memory policy: Data cache writealloc
[ 0.000000] psci: probing for conduit method from DT.
[ 0.000000] psci: PSCIv1.0 detected in firmware.
[ 0.000000] psci: Using standard PSCI v0.2 function IDs
[ 0.000000] psci: MIGRATE_INFO_TYPE not supported.
[ 0.000000] PERCPU: Embedded 11 pages/cpu @9eb62000 s14912 r8192 d21952 u45056
[ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 105636
[ 0.000000] Kernel command line: console=ttyMSM0,115200n8 ubi.mtd=rootfs root=mtd:ubi_rootfs rootfstype=squashfs rootwait swiotlb=1 coherent_pool=2M
[ 0.000000] PID hash table entries: 2048 (order: 1, 8192 bytes)
[ 0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
[ 0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
[ 0.000000] Memory: 411464K/427008K available (6304K kernel code, 353K rwdata, 1904K rodata, 1024K init, 432K bss, 15544K reserved, 0K cma-reserved, 0K highmem)
[ 0.000000] Virtual kernel memory layout:
[ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
[ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
[ 0.000000] vmalloc : 0x9f800000 - 0xff800000 (1536 MB)
[ 0.000000] lowmem : 0x80000000 - 0x9f000000 ( 496 MB)
[ 0.000000] pkmap : 0x7fe00000 - 0x80000000 ( 2 MB)
[ 0.000000] modules : 0x7f000000 - 0x7fe00000 ( 14 MB)
[ 0.000000] .text : 0x80208000 - 0x80b0434c (9201 kB)
[ 0.000000] .init : 0x80c00000 - 0x80d00000 (1024 kB)
[ 0.000000] .data : 0x80d00000 - 0x80d58418 ( 354 kB)
[ 0.000000] .bss : 0x80d5b000 - 0x80dc70d4 ( 433 kB)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[ 0.000000] Preemptible hierarchical RCU implementation.
[ 0.000000] Build-time adjustment of leaf fanout to 32.
[ 0.000000] RCU restricting CPUs from NR_CPUS=4 to nr_cpu_ids=2.
[ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=2
[ 0.000000] NR_IRQS:16 nr_irqs:16 16
[ 0.000000] Architected cp15 timer(s) running at 24.00MHz (virt).
[ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[ 0.000005] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[ 0.000018] Switching to timer-based delay loop, resolution 41ns
[ 0.000530] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[ 0.000547] pid_max: default: 32768 minimum: 301
[ 0.000662] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.000674] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
[ 0.001337] Initializing cgroup subsys io
[ 0.001363] Initializing cgroup subsys memory
[ 0.001398] Initializing cgroup subsys devices
[ 0.001412] Initializing cgroup subsys freezer
[ 0.001423] Initializing cgroup subsys net_cls
[ 0.001434] Initializing cgroup subsys pids
[ 0.001475] CPU: Testing write buffer coherency: ok
[ 0.001929] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[ 0.002000] Setting up static identity map for 0x41300000 - 0x41300058
[ 0.052894] MSM Memory Dump base table set up
[ 0.052925] MSM Memory Dump apps data table set up
[ 0.090475] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[ 0.090614] Brought up 2 CPUs
[ 0.090631] SMP: Total of 2 processors activated (96.00 BogoMIPS).
[ 0.090640] CPU: All CPU(s) started in SVC mode.
[ 0.104180] VFP support v0.3: implementor 51 architecture 3 part 40 variant 3 rev 4
[ 0.104571] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[ 0.104602] futex hash table entries: 512 (order: 3, 32768 bytes)
[ 0.105140] pinctrl core: initialized pinctrl subsystem
[ 0.106360] NET: Registered protocol family 16
[ 0.107739] DMA: preallocated 2048 KiB pool for atomic coherent allocations
[ 0.130269] cpuidle: using governor ladder
[ 0.160290] cpuidle: using governor menu
[ 0.160586] NET: Registered protocol family 42
[ 0.165583] qcom,gcc-ipq5018 1800000.gcc: Registered ipq5018 GCC clocks provider
[ 0.171399] irq: no irq domain found for /soc/smp2p-wcss/slave-kernel !
[ 0.182474] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[ 0.182491] hw-breakpoint: maximum watchpoint size is 8 bytes.
[ 0.184264] CPU: IPQ5018, SoC Version: 1.1
[ 0.186097] IPC logging disabled
[ 0.186110] IPC logging disabled
[ 0.186115] IPC logging disabled
[ 0.186119] IPC logging disabled
[ 0.186124] IPC logging disabled
[ 0.186404] sps:sps is ready.
[ 0.222667] pps_core: LinuxPPS API ver. 1 registered
[ 0.222681] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.222714] PTP clock support registered
[ 0.224720] Advanced Linux Sound Architecture Driver Initialized.
[ 0.225661] clocksource: Switched to clocksource arch_sys_counter
[ 0.228244] NET: Registered protocol family 2
[ 0.229177] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
[ 0.229235] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.229311] TCP: Hash tables configured (established 4096 bind 4096)
[ 0.229374] UDP hash table entries: 256 (order: 1, 8192 bytes)
[ 0.229401] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
[ 0.229617] NET: Registered protocol family 1
[ 0.230889] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 7 counters available
[ 0.240096] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.240123] jffs2: version 2.2 (NAND) (SUMMARY) (LZMA) (RTIME) (CMODE_PRIORITY) (c) 2001-2006 Red Hat, Inc.
[ 0.245480] Key type asymmetric registered
[ 0.245501] Asymmetric key parser 'x509' registered
[ 0.245547] io scheduler noop registered
[ 0.245560] io scheduler deadline registered (default)
[ 0.249003] a0000000.pci supply vdda not found, using dummy regulator
[ 0.249079] a0000000.pci supply vdda_phy not found, using dummy regulator
[ 0.249141] a0000000.pci supply vdda_refclk not found, using dummy regulator
[ 0.249896] PCI host bridge /soc/pci@a0000000 ranges:
[ 0.249928] IO 0xa0200000..0xa02fffff -> 0xa0200000
[ 0.249945] MEM 0xa0300000..0xb02fffff -> 0xa0300000
[ 0.585664] qcom-pcie a0000000.pci: link up
[ 0.585892] qcom-pcie a0000000.pci: PCI host bridge to bus 0001:00
[ 0.585911] pci_bus 0001:00: root bus resource [bus 00-ff]
[ 0.585927] pci_bus 0001:00: root bus resource [io 0x0000-0xfffff] (bus address [0xa0200000-0xa02fffff])
[ 0.585938] pci_bus 0001:00: root bus resource [mem 0xa0300000-0xb02fffff]
[ 0.586351] PCI: bus0: Fast back to back transfers disabled
[ 0.586368] pci 0001:00:00.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[ 0.587388] PCI: bus1: Fast back to back transfers disabled
[ 0.587469] pci 0001:00:00.0: BAR 8: assigned [mem 0xa0400000-0xa05fffff]
[ 0.587485] pci 0001:00:00.0: BAR 9: assigned [mem 0xa0600000-0xa07fffff 64bit pref]
[ 0.587498] pci 0001:00:00.0: BAR 0: assigned [mem 0xa0300000-0xa0300fff 64bit]
[ 0.587516] pci 0001:00:00.0: BAR 7: assigned [io 0x1000-0x1fff]
[ 0.587532] pci 0001:01:00.0: BAR 0: assigned [mem 0xa0400000-0xa05fffff 64bit]
[ 0.587580] pci 0001:00:00.0: PCI bridge to [bus 01]
[ 0.587591] pci 0001:00:00.0: bridge window [io 0x1000-0x1fff]
[ 0.587604] pci 0001:00:00.0: bridge window [mem 0xa0400000-0xa05fffff]
[ 0.587616] pci 0001:00:00.0: bridge window [mem 0xa0600000-0xa07fffff 64bit pref]
[ 0.587684] PCIe: RC0 enabled during bootup
[ 0.594553] TZ Log : Will warn on Access Violation, as paniconaccessviolation is not set
[ 0.595071] bt_driver 1943008.bt: bt_parse_ipc
[ 0.595132] bt_driver 1943008.bt: bt_parse_mem
[ 0.595181] bt_driver 1943008.bt: bt_parse_dt operating in secure mode
[ 0.596492] 58000.qcom,msm-eud: ttyEUD0 at MMIO 0x0 (irq = 123, base_baud = 0) is a EUD UART
[ 0.597104] Registered Sucessfully
[ 0.597709] msm_serial 78af000.serial: msm_serial: detected port #0
[ 0.597765] msm_serial 78af000.serial: uartclk = 1843199
[ 0.597823] 78af000.serial: ttyMSM0 at MMIO 0x78af000 (irq = 20, base_baud = 115199) is a MSM
[ 0.597856] msm_serial: console setup on port #0
[ 1.404922] console [ttyMSM0] enabled
[ 1.410136] msm_serial: driver initialized
[ 1.413553] msm_serial_hsl_init: driver initialized
[ 1.725503] brd: module loaded
[ 1.846293] loop: module loaded
[ 1.866263] spi_qup 78b5000.spi: IN:block:16, fifo:64, OUT:block:16, fifo:64
[ 1.868389] m25p80 spi32766.0: unrecognized JEDEC id bytes: 00, 0, 0
[ 1.873359] phase not found in dts, falling to 50MHz
[ 1.878788] QPIC platform data not populated
[ 1.883887] QPIC controller hw version Major:2, Minor:1
[ 1.888105] QPIC controller support serial nand.
[ 1.893342] nand: device found, Manufacturer ID: 0xc8, Chip ID: 0x22
[ 1.897924] nand: GigaDevice GD5F2GQ5REYIH SPI NAND 2G
[ 1.904228] nand: 256 MiB, SLC, erase size: 128 KiB, page size: 2048, OOB size: 64
[ 1.909730] 18 ofpart partitions found on MTD device qcom_nand.0
[ 1.916763] Creating 18 MTD partitions on "qcom_nand.0":
[ 1.922894] 0x000000000000-0x000000080000 : "0:SBL1"
[ 1.946321] 0x000000080000-0x000000100000 : "0:MIBIB"
[ 1.966323] 0x000000100000-0x000000200000 : "0:QSEE"
[ 1.968276] 0x000000200000-0x000000240000 : "0:DEVCFG"
[ 1.986257] 0x000000240000-0x000000280000 : "0:CDT"
[ 2.006256] 0x000000280000-0x000000300000 : "0:APPSBLENV"
[ 2.026282] 0x000000300000-0x000000440000 : "0:APPSBL"
[ 2.028415] 0x000000440000-0x000000540000 : "0:ART"
[ 2.046333] 0x000000540000-0x0000005c0000 : "0:TRAINING"
[ 2.066318] 0x0000005c0000-0x000000640000 : "u_env"
[ 2.086316] 0x000000640000-0x000000680000 : "s_env"
[ 2.087695] 0x000000680000-0x0000006c0000 : "devinfo"
[ 2.106250] 0x0000006c0000-0x0000058c0000 : "kernel"
[ 2.167758] 0x000000ec0000-0x0000058c0000 : "rootfs"
[ 2.236282] mtd: device 13 (rootfs) set to be root filesystem
[ 2.236555] mtdsplit: no squashfs found in "rootfs"
[ 2.241021] 0x0000058c0000-0x00000aac0000 : "alt_kernel"
[ 2.306991] 0x0000060c0000-0x00000aac0000 : "alt_rootfs"
[ 2.376314] 0x00000aac0000-0x00000acc0000 : "sysdiag"
[ 2.396277] 0x00000acc0000-0x00000f0c0000 : "syscfg"
[ 2.448290] libphy: Fixed MDIO Bus: probed
[ 2.665695] qca-mdio 88000.mdio: Could not find phy-reset-gpio
[ 2.665894] libphy: qca_mdio: probed
[ 2.686123] qca-mdio 88000.mdio: qca-mdio driver was registered
[ 3.125718] qca-mdio 90000.mdio: Could not find phy-reset-gpio
[ 3.125914] libphy: qca_mdio: probed
[ 3.132570] qca-mdio 90000.mdio: qca-mdio driver was registered
[ 3.235974] Unable to create IPC log context!
[ 3.236488] cnss[27]: INFO: Platform driver probed successfully. plat 9df50010 tgt 0x1104
[ 3.239841] cnss[2]: INFO: Platform driver probed successfully. plat 9df60010 tgt 0xfffc
[ 3.247959] i2c /dev entries driver
[ 3.256976] qcom-tsens 4a8000.thermal-sensor: tsens calibration failed
[ 3.286392] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
[ 3.286985] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 799999 KHz
[ 3.293946] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 1008000 KHz
[ 3.301189] sdhci: Secure Digital Host Controller Interface driver
[ 3.309635] sdhci: Copyright(c) Pierre Ossman
[ 3.315695] sdhci-pltfm: SDHCI platform and OF driver helper
[ 3.330137]
[ 3.330137] Version Rollback Feature Disabled
[ 3.330941] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x08b04000
[ 3.334863] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x08b04000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x08b04000
[ 3.355689] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x08b04000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x08b04000
[ 3.369164] sps:BAM 0x08b04000 is registered.[ 3.377983] qcom-q6v5-wcss-pil cd00000.qcom_q6v5_wcss: ssr registeration success qcom_q6v5_wcss
[ 3.379938] remoteproc remoteproc0: cd00000.qcom_q6v5_wcss is available
[ 3.389051] of_graph_get_next_endpoint(): no port node found in /soc/csr@6001000
[ 3.395222] coresight-csr 6001000.csr: CSR initialized
[ 3.403014] of_graph_get_next_endpoint(): no port node found in /soc/cti@6010000
[ 3.407950] of_graph_get_next_endpoint(): no port node found in /soc/cti@6011000
[ 3.415441] of_graph_get_next_endpoint(): no port node found in /soc/cti@6012000
[ 3.422861] of_graph_get_next_endpoint(): no port node found in /soc/cti@6013000
[ 3.430229] of_graph_get_next_endpoint(): no port node found in /soc/cti@6014000
[ 3.437608] of_graph_get_next_endpoint(): no port node found in /soc/cti@6015000
[ 3.444933] of_graph_get_next_endpoint(): no port node found in /soc/cti@6016000
[ 3.452378] of_graph_get_next_endpoint(): no port node found in /soc/cti@6017000
[ 3.459731] of_graph_get_next_endpoint(): no port node found in /soc/cti@6018000
[ 3.467116] of_graph_get_next_endpoint(): no port node found in /soc/cti@6019000
[ 3.474446] of_graph_get_next_endpoint(): no port node found in /soc/cti@601a000
[ 3.481892] of_graph_get_next_endpoint(): no port node found in /soc/cti@601b000
[ 3.489256] of_graph_get_next_endpoint(): no port node found in /soc/cti@601c000
[ 3.496648] of_graph_get_next_endpoint(): no port node found in /soc/cti@601d000
[ 3.503983] of_graph_get_next_endpoint(): no port node found in /soc/cti@601e000
[ 3.511400] of_graph_get_next_endpoint(): no port node found in /soc/cti@601f000
[ 3.518782] of_graph_get_next_endpoint(): no port node found in /soc/cti@6198000
[ 3.526290] of_graph_get_next_endpoint(): no port node found in /soc/cti@6199000
[ 3.533623] of_graph_get_next_endpoint(): no port node found in /soc/cti@610c000
[ 3.541122] sps_register_bam_device : unable to create IPC Logging 0 for bam 0x06064000
[ 3.548089] sps_register_bam_device : unable to create IPC Logging 1 for bam 0x06064000sps_register_bam_device : unable to create IPC Logging 2 for bam 0x06064000
[ 3.563765] sps_register_bam_device : unable to create IPC Logging 3 for bam 0x06064000sps_register_bam_device : unable to create IPC Logging 4 for bam 0x06064000
[ 3.578271] sps:BAM 0x06064000 is registered.[ 3.585447] coresight-tmc 6048000.tmc: TMC initialized
[ 3.589587] coresight-tmc 6047000.tmc: TMC initialized
[ 3.594701] coresight-funnel 6041000.funnel: FUNNEL initialized
[ 3.599732] coresight-funnel 6100000.funnel: FUNNEL initialized
[ 3.605495] coresight-funnel 6120000.funnel: FUNNEL initialized
[ 3.611447] coresight-funnel 6130000.funnel: FUNNEL initialized
[ 3.617342] coresight-funnel 61a1000.funnel: FUNNEL initialized
[ 3.623939] coresight-etm4x 619c000.etm: ETM 4.0 initialized
[ 3.629508] coresight-etm4x 619d000.etm: ETM 4.0 initialized
[ 3.635068] coresight-replicator-qcom 6046000.replicator: REPLICATOR 1.0 initialized
[ 3.640885] coresight-stm 6002000.stm: STM initialized
[ 3.649682] of_graph_get_next_endpoint(): no port node found in /soc/hwevent@6101000
[ 3.653062] coresight-hwevent 6101000.hwevent: Hardware Event driver initialized
[ 3.665046] NET: Registered protocol family 10
[ 3.669187] NET: Registered protocol family 17
[ 3.672506] bridge: automatic filtering via arp/ip/ip6tables has been deprecated. Update your scripts to load br_netfilter if you need this.
[ 3.676963] Bridge firewalling registered
[ 3.689668] 8021q: 802.1Q VLAN Support v1.8
[ 3.693827] Registering SWP/SWPB emulation handler
[ 3.700376] ubi0: attaching mtd13
[ 3.748144] random: nonblocking pool is initialized
[ 3.967050] ubi0: scanning is finished
[ 3.972019] ubi0: attached mtd13 (name "rootfs", size 74 MiB)
[ 3.972043] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes
[ 3.976773] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048
[ 3.983507] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096
[ 3.990376] ubi0: good PEBs: 592, bad PEBs: 0, corrupted PEBs: 0
[ 3.997141] ubi0: user volume: 5, internal volumes: 1, max. volumes count: 128
[ 4.003386] ubi0: max/mean erase counter: 12/4, WL threshold: 4096, image sequence number: 222949656
[ 4.010427] ubi0: available PEBs: 0, total reserved PEBs: 592, PEBs reserved for bad PEB handling: 40
[ 4.019790] ubi0: background thread "ubi_bgt0d" started, PID 112
[ 4.033030] hctosys: unable to open rtc device (rtc0)
[ 4.041826] ALSA device list:
[ 4.041845] No soundcards found.
[ 4.046920] VFS: Mounted root (squashfs filesystem) readonly on device 31:21.
[ 4.048513] Freeing unused kernel memory: 1024K (80c00000 - 80d00000)
[ 4.494884] init: Console is alive
[ 4.495125] init: - watchdog -
[ 6.267102] usbcore: registered new interface driver usbfs
[ 6.267176] usbcore: registered new interface driver hub
[ 6.271601] usbcore: registered new device driver usb
[ 6.279396] Button Hotplug driver version 0.4.1
[ 6.291999] SCSI subsystem initialized
[ 6.307483] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 6.308378] ehci-platform: EHCI generic platform driver
[ 6.318194] remoteproc remoteproc1: bt_rproc_driver is available
[ 6.318261] bt_rproc_driver bt_rproc_driver: Probed
[ 6.343312] usbcore: registered new interface driver usb-storage
[ 6.344602] usbcore: registered new interface driver uas
[ 6.515860] init: - preinit -
Press the [f] key and hit [enter] to enter failsafe mode
Press the [1], [2], [3] or [4] key and hit [enter] to select the debug level
Before mount_root
[ 8.829305] UBIFS (ubi0:4): background thread "ubifs_bgt0_4" started, PID 147
[ 8.845451] UBIFS (ubi0:4): recovery needed
[ 8.924549] UBIFS (ubi0:4): recovery completed
[ 8.924672] UBIFS (ubi0:4): UBIFS: mounted UBI device 0, volume 4, name "rootfs_data"
[ 8.927925] UBIFS (ubi0:4): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes
[ 8.935803] UBIFS (ubi0:4): FS size: 29966336 bytes (28 MiB, 236 LEBs), journal size 1523712 bytes (1 MiB, 12 LEBs)
[ 8.945693] UBIFS (ubi0:4): reserved for root: 1415383 bytes (1382 KiB)
[ 8.955933] UBIFS (ubi0:4): media format: w4/r0 (latest is w4/r0), UUID 79B07C04-538B-4D06-9FA9-7790E9F0C361, small LPT model
[ 8.965761] mount_root: switching to jffs2 overlay
After mount_root
131072+0 records in
131072+0 records out
131072 bytes (128.0KB) copied, 0.519963 seconds, 246.2KB/s
131072+0 records in
131072+0 records out
131072 bytes (128.0KB) copied, 0.550979 seconds, 232.3KB/s
ln: /lib/firmware/IPQ5018/caldata.bin: File exists
ln: /lib/firmware/qcn9000/caldata_1.bin: File exists
[ 10.329041] procd: - early -
[ 10.329148] procd: - watchdog -
[ 10.965937] procd: - ubus -
[ 11.976980] procd: - init -
Please press Enter to activate this console.
[ 12.792447] ubi: mtd13 is already attached to ubi0BT FW mount is successful
cp /lib/firmware/IPQ5018/BT_FW/mpnv10.bin
[ 13.017851] ubi: mtd13 is already attached to ubi0 WIFI FW mount is successful
[ 14.910595] ntfs: driver 2.1.32 [Flags: R/O MODULE].
[ 14.919098] Initializing XFRM netlink socket
[ 14.920483] NET: Registered protocol family 15
[ 15.221200] ssdk_switch_device_num_init[1159]:INFO:ess-switch dts node number: 2
[ 15.221242] ssdk_dt_get_switch_node[970]:INFO:ess-switch DT exist!
[ 15.227688] ssdk_dt_parse_access_mode[856]:INFO:switch_access_mode: local bus
[ 15.233645] ssdk_dt_parse_access_mode[869]:INFO:switchreg_base_addr: 0x39c00000
[ 15.240861] ssdk_dt_parse_access_mode[870]:INFO:switchreg_size: 0x200000
[ 15.247977] ssdk_dt_parse_mac_mode[295]:INFO:mac mode = 0xf
[ 15.254910] ssdk_dt_parse_mac_mode[301]:INFO:mac mode1 doesn't exit!
[ 15.260216] ssdk_dt_parse_mac_mode[310]:INFO:mac mode2 doesn't exit!
[ 15.266826] ssdk_dt_parse_port_bmp[757]:INFO:port_bmp doesn't exist!
[ 15.273155] ssdk_dt_parse_uniphy[332]:INFO:ess-uniphy DT exist!
[ 15.279495] ssdk_dt_parse_led[943]:INFO:current dts led_source_num is 1
[ 15.285136] ssdk_plat_init start
[ 17.695683] ssdk_mp_reset_init[739]:INFO:MP reset successfully!1
[ 17.695747] ssdk_gcc_clock_init[1011]:INFO:SSDK gcc clock init successfully!
[ 17.701448] mpge_phy_api_ops_init[1089]:INFO:qca probe mpge phy driver succeeded!
[ 17.708189] regi_init[3564]:INFO:Initializing SCOMPHY!
[ 18.839687] _adpt_mp_uniphy_clk_output_ctrl_set[236]:INFO:uniphy will output clock as 25000000Hz
[ 18.839796] ssdk_led_init[152]:INFO:ssdk_led_mode:3, ssdk_led_map:ffc, ssdk_led_src_id:0
[ 18.847659] ssdk_switch_register[1683]:INFO:Chip version 0xee
[ 18.855621] qca_link_polling_select[1307]:INFO:link-polling-required node does not exist
[ 18.861262] ssdk_switch_register[1717]:INFO:polling is selected
[ 18.869416] regi_init[3574]:INFO:Initializing SCOMPHY Done!!
[ 18.875067] ssdk_dt_get_switch_node[970]:INFO:ess-switch DT exist!
[ 18.880965] ssdk_dt_parse_access_mode[856]:INFO:switch_access_mode: mdio
[ 18.886951] ssdk_dt_parse_mac_mode[292]:INFO:mac mode doesn't exit!
[ 18.893796] ssdk_dt_parse_mac_mode[301]:INFO:mac mode1 doesn't exit!
[ 18.899797] ssdk_dt_parse_mac_mode[310]:INFO:mac mode2 doesn't exit!
[ 18.906426] ssdk_dt_parse[1061]:INFO:switch node is qca83xx!
[ 18.912718] ssdk_plat_init start
[ 18.982085] f1_phy_api_ops_init[1517]:INFO:qca probe f1 phy driver succeeded!
[ 18.982107] regi_init[3515]:INFO:Initializing ISISC!!
[ 19.195662] qca_ar8327_gpio_reset[3448]:INFO:GPIO39 reset switch done
[ 19.195841] ssdk_switch_register[1691]:INFO:Chip version 0x1302
[ 19.201089] qca_link_polling_select[1307]:INFO:link-polling-required node does not exist
[ 19.206820] ssdk_switch_register[1717]:INFO:polling is selected
[ 20.855657] regi_init[3525]:INFO:Power-off port 2 of ISISC!
[ 20.855706] regi_init[3527]:INFO:Initializing ISISC Done!!
[ 20.860123] regi_init[3597]:INFO:qca-ssdk module init succeeded!
[ 20.875310] tun: Universal TUN/TAP device driver, 1.6
[ 20.875334] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[ 20.887152] **********************************************************
[ 20.887181] * NSS Data Plane driver
[ 20.892582] **********************************************************
[ 20.920499] l2tp_core: L2TP core driver, V2.0
[ 20.921586] l2tp_netlink: L2TP netlink interface
[ 21.179340] nss_driver - fw of size 711728 bytes copied to load addr: 40000000, nss_id : 0
[ 21.180806] Supported Frequencies -
[ 21.186566] 850 MHz 1 GHz
[ 21.192134]
[ 21.193096] 7f587540: set sdma 9d63f500
[ 21.194793] node size 2 # items 4
[ 21.198131] memory: 40000000 536870912 (avl 444841984) items 4 active_cores 1
[ 21.201533] addr/size storage words 2 2 # words 4 in DTS, ddr size 1000000
[ 21.210005] 7f587540: NSS core 0 DDR from 40000000 to 41000000
[ 21.215515] 7f587540: meminfo init succeed
[ 21.269485] sit: IPv6 over IPv4 tunneling driver
[ 21.276588] nat46: module (version 8ff2ae59ec9840a7b8b45f976c51cae80abe0226) loaded.
[ 21.277546] node size 2 # items 4
[ 21.283407] memory: 40000000 536870912 (avl 444841984) items 4 active_cores 1
[ 21.286685] addr/size storage words 2 2 # words 4 in DTS, ddr size 1000000
[ 21.293767] 7f587540: nss core 0 booted successfully
[ 21.318746] gre: GRE over IPv4 demultiplexor driver
[ 21.320345] ip_gre: GRE over IPv4 tunneling driver
[ 21.326339] ip6_gre: GRE over IPv6 tunneling driver
[ 21.344738] Ethernet Channel Bonding Driver: v3.7.1 (April 27, 2011)
[ 21.377100] ip6_tables: (C) 2000-2006 Netfilter Core Team
[ 21.386477] rmnet_nss_init(): initializing rmnet_nss
[ 21.396496] nf_conntrack version 0.5.0 (6445 buckets, 25780 max)
[ 21.416490] QCA Hy-Fi multicast installation successfully
[ 21.428858] PPP generic driver version 2.4.2
[ 21.433385] nss_lag_init[352]:LAG Manager Installed
[ 21.442081] NET: Registered protocol family 24
[ 21.448623] PPTP driver version 0.8.5
[ 21.468452] diag: IPC Logging disabled
[ 21.546051] TRACK: P[0] PMask[4]
[ 21.546075] TRACK: P[1] PMask[4]
[ 21.548387] TRACK: P[2] PMask[4]
[ 21.605766] TRACK: P[3] PMask[4]
[ 21.605998] nik 4097 info->svc_id
[ 21.649365] QCA multicast snooping installed successfully
[ 21.652431] <NSS-CRYPTO>:module loaded Build_ID - 05/28/21, 17:02:01 SoC=ipq50xx
[ 21.699849] hidraw: raw HID events driver (C) Jiri Kosina
[ 21.713643] u32 classifier
[ 21.713669] input device check on
[ 21.715291] Actions configured
[ 21.721386] Mirror/redirect action on
[ 21.763817] fuse init (API version 7.23)
[ 21.770632] arp_tables: (C) 2002 David S. Miller
[ 21.825991] Bluetooth: Core ver 2.21
[ 21.826270] NET: Registered protocol family 31
[ 21.828635] Bluetooth: HCI device and connection manager initialized
[ 21.832920] Bluetooth: HCI socket layer initialized
[ 21.840303] Bluetooth: L2CAP socket layer initialized
[ 21.844067] Bluetooth: SCO socket layer initialized
[ 21.851237] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 21.853901] Bluetooth: BNEP filters: protocol multicast
[ 21.859623] Bluetooth: BNEP socket layer initialized
[ 21.872283] usbcore: registered new interface driver btusb
[ 21.874086] Bluetooth: HCI UART driver ver 2.3
[ 21.876766] Bluetooth: HCI UART protocol H4 registered
[ 21.881097] Bluetooth: HCI UART protocol BCSP registered
[ 21.886334] Bluetooth: HCI UART protocol ATH3K registered
[ 21.894232] Bluetooth: HIDP (Human Interface Emulation) ver 1.2
[ 21.897088] Bluetooth: HIDP socket layer initialized
[ 21.905929] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 21.918226] l2tp_ppp: PPPoL2TP kernel driver, V2.0
[ 22.011514] nf_conntrack_rtsp v0.6.21 loading
[ 22.153211] nf_nat_rtsp v0.6.21 loading
[ 22.164035] PPP MPPE Compression module registered
[ 22.167705] Bluetooth: RFCOMM TTY layer initialized
[ 22.167755] Bluetooth: RFCOMM socket layer initialized
[ 22.172510] Bluetooth: RFCOMM ver 1.11
[ 22.246235] xt_time: kernel timezone is -0000
qcawifi configuration is disable
[ 27.147826] configuring additional NSS pbufs
[ 27.160979] additional pbufs of size 3100672 got added to NSS
[ 27.215132] mem_manager: module license 'Proprietary' taints kernel.
[ 27.215160] Disabling lock debugging due to kernel taint
[ 31.463843] vmap allocation for size 2871296 failed: use vmalloc=<size> to increase size.
[ 31.657947] wlan: [1192:I:RPTR] qca_multi_link_init_module:
[ 31.657947] ******QCA Repeater Initialization Done***********
[ 31.657947]
***** starting cnssdaemon -i integrated -i pci0 *****
*****cnssdaemon pid=1259*********
[ 32.985087] cnss[27]: INFO: Setting daemon_support=1 for instance_id 0x27
[ 33.075928] cnss[2]: INFO: Setting daemon_support=1 for instance_id 0x2
[ 33.103496] cnss[27]: INFO: Setting cold_boot_support=1 for instance_id 0x27
[ 33.194999] cnss[2]: INFO: Setting cold_boot_support=1 for instance_id 0x2
*********initiating cold boot calibration*************
[ 34.101352] vmap allocation for size 1433600 failed: use vmalloc=<size> to increase size.
[ 34.859546] vmap allocation for size 929792 failed: use vmalloc=<size> to increase size.
[ 34.877909] wlan: [1341:I:ANY] =======ol_if_register_wifi3_0==========
[ 34.877909]
[ 34.877955] wlan: [1341:I:ANY] osif_nss_register_module: NSS wifi ops registered for target_type:1 with soc_ops:a254fc90
[ 34.884795] wlan: [1341:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 2 bus_type 1
[ 34.896001] remoteproc remoteproc0: powering up cd00000.qcom_q6v5_wcss
[ 34.926181] remoteproc remoteproc0: Booting fw image IPQ5018/q6_fw.mdt, size 1052
[ 35.822475] Subsystem error monitoring/handling services are up
[ 35.823155] remoteproc remoteproc0: remote processor cd00000.qcom_q6v5_wcss is now up
[ 35.823769] rpmsg_dev_probe: No pm domain
[ 35.824325] rpmsg_dev_probe: No pm domain
[ 35.827128] cnss[2]: INFO: QMI WLFW service connected, state: 0x1
[ 35.828263] cnss[2]: INFO: device_id : 65532 mem mode : [1]
[ 35.832249] cnss[2]: INFO: platform name: Qualcomm Technologies, Inc. IPQ5018/AP-MP03.1
[ 35.832250] diag: Receiving feature mask length more than Apps support
[ 35.832306] diag: In diag_send_feature_mask_update, control channel is not open, p: 2, 7f7a1dc4
[ 35.866087] cnss[2]: INFO: Target capability: chip_id: 0x0, chip_family: 0x4, board_id: 0xff, soc_id: 0xffffffff, fw_version: 0x240b7fff, fw_build_timestamp: 2021-02-22 23:05, otp_version: 0x0 eeprom_caldata_read_timeout 0s
[ 35.866105] cnss[2]: INFO: Boardid from dts:24,FW:ff
[ 35.866481] cnss[2]: INFO: BDF location : 0x4ba00000
[ 35.866485] cnss[2]: INFO: BDF IPQ5018/bdwlan.b24 size 131072
[ 35.867326] cnss[2]: INFO: per device BDF location : 0x4ba20000
[ 35.867452] cnss[2]: INFO: CALDATA IPQ5018/caldata.bin size 131072 offset 0x20000
[ 35.919255] wlan: [1341:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 3 bus_type 1
[ 35.926819] cnss[2]: INFO: Waiting for FW ready. Device: 0xfffc, FW ready timeout: 15 seconds
[ 35.934592] cnss[2]: INFO: FW ready received for device 0xfffc
[ 35.945218] wlan: [1341:I:ANY] pld_ahb_wlan_enable: cnss_mode: Cold boot calibration
[ 35.949045] cnss[2]: INFO: Sending mode message, mode: COLDBOOT CALIBRATION(7), state: 0xf
[ 35.986093] wlan: [1341:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 2 bus_type 0
[ 35.986198] cnss_pci 0001:01:00.0: BAR 0: assigned [mem 0xa0400000-0xa05fffff 64bit]
[ 35.992986] cnss_pci 0001:01:00.0: enabling device (0140 -> 0142)
[ 36.001566] cnss[27]: ERR: Unable to create CNSS MHI IPC log context
[ 36.996586] wlan: [1341:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 3 bus_type 0
[ 36.996640] cnss[27]: INFO: Waiting for FW ready. Device: 0x1104, FW ready timeout: 15 seconds
[ 37.009081] cnss[27]: INFO: QMI WLFW service connected, state: 0x11
[ 37.018438] cnss[27]: INFO: device_id : 4356 mem mode : [1]
[ 37.018505] cnss[27]: INFO: platform name: Qualcomm Technologies, Inc. IPQ5018/AP-MP03.1
[ 37.146395] cnss[27]: INFO: Target capability: chip_id: 0x0, chip_family: 0x0, board_id: 0xff, soc_id: 0xffffffff, fw_version: 0x240b7fff, fw_build_timestamp: 2021-02-22 22:43, otp_version: 0x0 eeprom_caldata_read_timeout 0s
[ 37.146858] cnss[27]: INFO: Downloading BDF: qcn9000/bdwlan.ba0, size: 131072
[ 37.186277] cnss[27]: INFO: Downloading BDF: qcn9000/caldata_1.bin, size: 131072
[ 37.325672] cnss[27]: INFO: FW ready received for device 0x1104
[ 37.325730] wlan: [1341:I:ANY] pld_pcie_wlan_enable: pld_pcie_wlan_enable: Invalid wlan_cfg config
[ 37.330398] cnss[27]: INFO: Sending mode message, mode: COLDBOOT CALIBRATION(7), state: 0x1f
[ 37.447108] wlan: [1341:I:ANY] init_ath_pci_3_0: 6ath_ol_pci_wifi3.0 : (Atheros/multi-bss)
[ 37.455337] wlan: [1353:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 0 bus_type 1
[ 37.455384] cnss[2]: INFO: Coldboot Calbration wait started for Device: 0xfffc, timeout: 60 seconds
[ 37.568666] cnss[2]: INFO: Coldboot Calibration completed successfully for device 0xfffc
[ 37.675706] cnss[2]: INFO: Coldboot Calibration wait ended for device 0xfffc
[ 37.675748] cnss[2]: INFO: Sending mode message, mode: OFF(4), state: 0x7
[ 37.684254] cnss[2]: INFO: QMI WLFW service disconnected, state: 0x6
[ 37.704821] remoteproc remoteproc0: stopped remote processor cd00000.qcom_q6v5_wcss
[ 37.705005] wlan: [1353:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 1 bus_type 1
[ 37.735765] wlan: [1353:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 0 bus_type 0
[ 37.735813] cnss[27]: INFO: Coldboot Calbration wait started for Device: 0x1104, timeout: 60 seconds
[ 56.612098] cnss[27]: INFO: Coldboot Calibration completed successfully for device 0x1104
[ 56.655688] cnss[27]: INFO: Coldboot Calibration wait ended for device 0x1104
[ 56.655724] cnss[27]: INFO: Sending mode message, mode: OFF(4), state: 0x127
[ 56.664144] cnss[27]: INFO: QMI WLFW service disconnected, state: 0x126
[ 56.669091] cnss[27]: INFO: Shutting down QCN9000
[ 56.675927] Removing device for chan:LOOPBACK
[ 56.680112] mhi_reset_data_chan rp (null) wp (null)
[ 56.684456] mhi_reset_data_chan rp (null) wp (null)
[ 56.689774] Removing device for chan:DIAG
[ 56.694709] mhi_reset_data_chan rp 9fb7e000 wp 9fb7e120
[ 56.699218] mhi_reset_data_chan rp 9fb7a000 wp 9fb7a000
[ 56.704370] Removing device for chan:IPCR
[ 56.709370] mhi_reset_data_chan rp a00551b0 wp a00551a0
[ 56.713524] mhi_reset_data_chan rp a0008150 wp a0008150
[ 56.745820] wlan: [1353:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 1 bus_type 0
[ 57.738492] vmap allocation for size 1433600 failed: use vmalloc=<size> to increase size.
[ 58.390744] vmap allocation for size 929792 failed: use vmalloc=<size> to increase size.
[ 58.409210] wlan: [1366:I:ANY] =======ol_if_register_wifi3_0==========
[ 58.409210]
[ 58.409254] wlan: [1366:I:ANY] osif_nss_register_module: NSS wifi ops registered for target_type:1 with soc_ops:a254fc90
[ 58.416205] wlan: [1366:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 2 bus_type 1
[ 58.427242] remoteproc remoteproc0: powering up cd00000.qcom_q6v5_wcss
[ 58.435014] remoteproc remoteproc0: Booting fw image IPQ5018/q6_fw.mdt, size 1052
[ 58.502402] Subsystem error monitoring/handling services are up
[ 58.503175] remoteproc remoteproc0: remote processor cd00000.qcom_q6v5_wcss is now up
[ 58.507482] rpmsg_dev_probe: No pm domain
[ 58.515512] wlan: [1366:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 3 bus_type 1
[ 58.519246] cnss[2]: INFO: Waiting for FW ready. Device: 0xfffc, FW ready timeout: 15 seconds
[ 58.527555] rpmsg_dev_probe: No pm domain
[ 58.537298] cnss[2]: INFO: QMI WLFW service connected, state: 0x1
[ 58.539957] diag: Receiving feature mask length more than Apps support
[ 58.547322] cnss[2]: INFO: device_id : 65532 mem mode : [1]
[ 58.552384] cnss[2]: INFO: platform name: Qualcomm Technologies, Inc. IPQ5018/AP-MP03.1
[ 58.560956] cnss[2]: INFO: Target capability: chip_id: 0x0, chip_family: 0x4, board_id: 0xff, soc_id: 0xffffffff, fw_version: 0x240b7fff, fw_build_timestamp: 2021-02-22 23:05, otp_version: 0x0 eeprom_caldata_read_timeout 0s
[ 58.565844] cnss[2]: INFO: Boardid from dts:24,FW:ff
[ 58.585831] cnss[2]: INFO: BDF location : 0x4ba00000
[ 58.590564] cnss[2]: INFO: BDF IPQ5018/bdwlan.b24 size 131072
[ 58.597415] cnss[2]: INFO: per device BDF location : 0x4ba20000
[ 58.601276] cnss[2]: INFO: CALDATA IPQ5018/caldata.bin size 131072 offset 0x20000
[ 58.635678] cnss[2]: INFO: FW ready received for device 0xfffc
[ 58.636038] wlan: [1366:I:ANY] pld_ahb_wlan_enable: cnss_mode: Mission mode
[ 58.640779] cnss[2]: INFO: Sending mode message, mode: MISSION(0), state: 0x7
[ 58.652411] wlan: [1366:I:ANY] qca_napi_create: qca_napi_create: napi instance 0 created on pipe 4
[ 58.654893] wlan: [1366:I:ANY] __ol_ath_attach: Allocated soc 9a080500
[ 58.663663] wlan: [1366:D:dfs] WLAN_DEBUG_DFS1 : dfs_psoc_obj_create_notification: DFS obj attach to psoc successfully
[ 58.682553] wlan: [1366:I:ANY] osif_nss_wifi_soc_setup: nss-wifili:#1 register wifili function for soc
[ 58.682596] wlan: [1366:I:ANY] osif_nss_wifi_soc_setup: nss register id -1 nss config 3 Target Type 1d
[ 58.690814] wlan: [1366:I:ANY] __ol_ath_attach: dev name soc0
[ 58.700544] wlan: [1366:I:ANY] ol_ath_soc_attach: WMI attached. wmi_handle 9ae66400
[ 58.710908] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.713849] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.723690] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.733744] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.743810] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.753877] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.763946] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.774035] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 58.784211] wlan: [1366:I:ANY] htc_wmi_init: HT Create . 9ae8d000
[ 58.794165] wlan: [1366:I:ANY] htc_wmi_init: Skipping BMI Done
[ 58.800405] wlan: [1366:I:ANY] htc_wmi_init: host_enable 0 nss_nwifi_offload 0
[ 58.817647] wlan: [1366:I:ANY] ol_target_init_complete: CDP soc attach success
[ 58.817685] wlan: [1366:I:ANY] ol_target_init_complete: Soc attach success NSS config 0
[ 58.823904] wlan: [1366:I:ANY] htc_set_async_ep: htc_set_async_ep: htc_handle 9ae8d000, ep 2, value 1
[ 58.833075] wlan: [101:I:TIF] HE_CAP Info = 9a08010d
[ 58.841159] wlan: [101:I:TIF] Num HW modes = 1
[ 58.846169] wlan: [101:I:TIF] Num PHY = 1
[ 58.850408] wlan: [101:I:TIF] FW Build Version (Ext.) = 0
[ 58.854488] wlan: [101:I:TIF] HDL Version: MajorVersion.MinorVersion = 0.0
[ 58.859888] wlan: [101:I:TIF] Preferred HW Mode = 0 Num Radios = 1
[ 58.866708] wlan: [101:W:TIF] add_11ax_mode_flags: 11AX wireless modes are not populated by the target in reg capabilities, adding 11AX wireless modes
[ 58.872816] wlan: [101:I:TIF] init_deinit_add_11ax_modes: hw_mode_id = 0 phy_id = 0 wireless modes = 0
[ 58.887708] wlan: [101:I:TIF] init_deinit_alloc_pdevs: CDP PDEV ATTACH success
[ 58.895561] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 58.902810] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 58.909981] wlan: [101:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 58.917981] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 58.925409] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 58.932644] wlan: [101:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 58.940625] wlan: [101:I:TIF] init_deinit_get_total_beaconing_vdevs_for_soc: beacon_tx_offload_max_vdev: 9
[ 58.948001] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 58.957717] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 58.964910] wlan: [101:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 58.972909] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 58.980285] wlan: [101:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 58.987580] wlan: [101:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 58.995557] wlan: [101:I:ANY] init_deinit_update_pdev_tgt_info: pdev id:0 wmi_handle:9ae66400
[ 59.003345] wlan: [101:F:DP] dp_rx_enable_mon_dest_frag: Feature DP_RX_MON_MEM_FRAG for mon_dest is enabled
[ 59.015270] wlan: [101:I:ANY] init_deinit_update_pdev_tgt_info: Pdev = 0 Number of peers = 137 vdevs = 9
[ 59.021247] wlan: [101:I:TIF] init_deinit_update_pdev_tgt_info: CDP PDEV INIT success
[ 59.131344] wlan: [101:I:ANY] copy_fw_abi_version_tlv: copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0
[ 59.176888] wlan: [101:I:ANY] ready_extract_init_status_tlv: ready_extract_init_status_tlv:0
[ 59.176927] wlan: [101:I:ANY] dp_peer_map_attach_wifi3: dp_peer_map_attach_wifi3 max_peers 163, max_ast_index: 528
[ 59.176927]
[ 59.184510] wlan: [1366:I:ANY] ol_ath_connect_htc: WMI is ready
[ 59.211651] wlan: [1366:I:ANY] ath_get_radio_index: Error: Could not match the device name : wifi%d
[ 59.211695] wlan: [1366:E:NSS] [nss-wifili]: pdev:98760500 radio_ifnum:28 scheme_id:1 radio_priority:0
[ 59.224664] wlan: [1366:E:TIF] target_if_lro_hash_config: pdev with id 0 is NULL
[ 59.229568] wlan: [1366:I:ANY] ol_ath_soc_attach: connect HTC
[ 59.236552] wlan: [1366:I:ANY] ol_ath_soc_attach: bypasswmi : 0
[ 59.242198] wlan: [1366:I:MSCS] qca_mscs_module_init:
[ 59.242198] ****QCA MSCS Initialization Done**** SoC 9a080500
[ 59.247909] wlan: [1366:I:ANY] ol_ath_soc_attach: UMAC attach
[ 59.259113] wlan: [1366:I:ANY] __ol_ath_attach: pdev_netdev name wifi0
[ 59.264659] wlan: [1366:I:ANY] __ol_ath_attach: Skip txrx_pdev_attach_target
[ 59.271092] wlan: [1366:I:ANY] __ol_ath_attach: BURSTING enabled by default
[ 59.278437] wlan: [1366:I:ANY] ol_ath_pdev_attach: interface_id 0
[ 59.284968] wlan: [1366:I:TIF] ol_ath_pdev_regdmn_init: phy id = 0 Modes supported
[ 59.291232] wlan: [1366:I:TIF] ol_ath_pdev_regdmn_init: 11b = 1 11g = 1 11a = 0 11n = 1 11ac = 1 11ax = 1
[ 59.298694] wlan: [1366:I:TIF] ol_ath_pdev_regdmn_init: Reg cap - phy_id = 0 supp_bnd = 1, modes = 680680c, lo_2g = 2312, hi_2g = 2732 lo_g5 = 0, hi_5g = 0
[ 59.308414] wlan: [1366:I:ANY] ol_ath_update_wireless_modes: wireless_modes = 680680c before update
[ 59.322572] wlan: [1366:I:ANY] ol_ath_update_wireless_modes: Wireless_modes = 680680c after update
[ 59.331332] wlan: [1366:I:ANY] ol_ath_update_ext_caps: 11ax 2G supported case
[ 59.340516] wlan: [1366:I:MBSSIE] ol_ath_assign_mbssid_ref_bssid: MBSSID reference bssid is 02:03:7f:12:13:1c soc: soc0 pdev: wifi0
[ 59.347829] wlan: [1366:I:MBSSIE] ieee80211_mbss_attach: :>
[ 59.359198] wlan: [1366:I:MBSSIE] ieee80211_mbss_attach: :<
[ 59.364729] wlan: [1366:I:ANY] ol_resmgr_create: OL Resmgr Init-ed
[ 59.370597] wlan: [1366:I:ANY] acfg_attach: acfg_attach: 3288: Netlink socket created:99cb8c00
[ 59.376580] wlan: [1366:I:ANY] ol_ath_stats_attach: periodic_chan_stats: 1
[ 59.385592] wlan: [1366:I:ANY] wlan_scan_update_channel_list: num_chan: 11
[ 59.392111] wlan: [0:I:ANY] ol_ath_pdev_attach: Set global_ic[1], ptr:a30840e8
[ 59.398866] wlan: [0:I:ANY] dp_lag_soc_enable: pdev(99cf4804) Enabling DBDC Repeater 0
[ 59.406112] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: pdev(99cf4804) is_primary 0
[ 59.406125] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed
[ 59.422239] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: twt enabled
[ 59.425854] wlan: [1366:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: cfg block channel list is empty
[ 59.425878] wlan: [1366:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: pdev_idx = 0 tx_desc_limit = 8192
[ 59.425933] wlan: [1366:I:ANY] osif_wrap_attach: osif wrap attached
[ 59.425933]
[ 59.425944] wlan: [1366:I:ANY] osif_wrap_devt_init: osif wrap dev table init done
[ 59.425944]
[ 59.425962] wlan: [1366:I:ANY] osif_wrap_attach: Wrap Attached: Wrap_com =9612c000 ic->ic_wrap_com=9612c000 &wrap_com->wc_devt=9612c000
[ 59.425962]
[ 59.426021] wlan: [1366:I:ANY] __ol_ath_attach: needed_headroom reservation 60
[ 59.426049] wlan: [1366:I:ANY] ol_ath_enable_fraglist: Enabled Fraglist bit for the radio wifi0 features 41
[ 59.426088] wlan: [1366:I:ANY] wlan_cfg80211_init: Number of 2G channels: 11
[ 59.426450] wlan: [1366:I:ANY] ieee80211_cfg80211_radio_attach: ic: 0x98760500, wdev: 0x98777d38, wiphy: 0x96a8b160, netdev: 0x98760000
[ 59.427558] wlan: [1366:I:Dynamic Mode Change] ol_ath_check_and_reconfig_hw_mode: Running with HW mode = 0
[ 59.428280] wlan: [1366:E:QLD] qld_register: Handle or address is NULL
[ 59.428348] wlan: [1366:I:ANY] wlan_pdev_operation: num_radios=1, wifi_radios[0].sc = 98760500_radio_type = 2
[ 59.428696] wlan: [1366:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 2 bus_type 0
[ 59.428758] cnss_pci 0001:01:00.0: BAR 0: assigned [mem 0xa0400000-0xa05fffff 64bit]
[ 59.429309] cnss[27]: ERR: Unable to create CNSS MHI IPC log context
[ 59.811103] wlan: [1366:I:ANY] ol_ath_wifi_ssr: ol_ath_wifi_ssr: SSR event 3 bus_type 0
[ 59.811157] cnss[27]: INFO: Waiting for FW ready. Device: 0x1104, FW ready timeout: 15 seconds
[ 59.823667] cnss[27]: INFO: QMI WLFW service connected, state: 0x11
[ 59.828096] cnss[27]: INFO: device_id : 4356 mem mode : [1]
[ 59.832797] cnss[27]: INFO: platform name: Qualcomm Technologies, Inc. IPQ5018/AP-MP03.1
[ 59.844718] cnss[27]: INFO: Target capability: chip_id: 0x0, chip_family: 0x0, board_id: 0xff, soc_id: 0xffffffff, fw_version: 0x240b7fff, fw_build_timestamp: 2021-02-22 22:43, otp_version: 0x0 eeprom_caldata_read_timeout 0s
[ 59.847322] cnss[27]: INFO: Downloading BDF: qcn9000/bdwlan.ba0, size: 131072
[ 59.890091] cnss[27]: INFO: Downloading BDF: qcn9000/caldata_1.bin, size: 131072
[ 59.925758] cnss[27]: INFO: FW ready received for device 0x1104
[ 59.926928] cnss[27]: INFO: Sending mode message, mode: MISSION(0), state: 0x17
[ 59.958391] wlan: [1366:I:ANY] qca_napi_create: qca_napi_create: napi instance 0 created on pipe 4
[ 59.958673] wlan: [1366:I:ANY] __ol_ath_attach: Allocated soc 96280500
[ 59.966431] wlan: [1366:D:dfs] WLAN_DEBUG_DFS1 : dfs_psoc_obj_create_notification: DFS obj attach to psoc successfully
[ 59.973620] wlan: [1366:E:QDF] CONFIG creation failed
[ 59.983530] wlan: [1366:I:ANY] osif_nss_wifi_soc_setup: nss-wifili:#1 register wifili function for soc
[ 59.988600] wlan: [1366:I:ANY] osif_nss_wifi_soc_setup: nss register id -1 nss config 3 Target Type 1a
[ 59.997806] wlan: [1366:I:ANY] __ol_ath_attach: dev name soc1
[ 60.007565] wlan: [1366:I:ANY] ol_ath_soc_attach: WMI attached. wmi_handle 96154800
[ 60.018441] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.020860] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.030778] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.040765] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.050814] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.060876] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.070953] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.081018] wlan: [1366:I:MBSSIE] ol_ath_sanitize_ema_vendor_ie_config: vendor_ie_size: 0 ven_ie_size_nibble: 3
[ 60.091146] wlan: [1366:I:ANY] htc_wmi_init: HT Create . 95498000
[ 60.101199] wlan: [1366:I:ANY] htc_wmi_init: Skipping BMI Done
[ 60.107405] wlan: [1366:I:ANY] htc_wmi_init: host_enable 0 nss_nwifi_offload 0
[ 60.116620] wlan: [1366:F:ANY] dp_config_full_mon_mode: Configure full monitor mode val: 1
[ 60.129002] wlan: [1366:E:QDF] HTT_SOC_LOGGER creation failed
[ 60.129403] wlan: [1366:I:ANY] ol_target_init_complete: CDP soc attach success
[ 60.134473] wlan: [1366:I:ANY] ol_target_init_complete: Soc attach success NSS config 0
[ 60.141762] wlan: [1366:I:ANY] htc_set_async_ep: htc_set_async_ep: htc_handle 95498000, ep 2, value 1
[ 60.151778] wlan: [1344:I:TIF] HE_CAP Info = 9a08010d
[ 60.159015] wlan: [1344:I:TIF] Num HW modes = 1
[ 60.163981] wlan: [1344:I:TIF] Num PHY = 1
[ 60.168384] wlan: [1344:I:TIF] FW Build Version (Ext.) = 135
[ 60.172609] wlan: [1344:I:TIF] HDL Version: MajorVersion.MinorVersion = 7.2
[ 60.178335] wlan: [1344:I:TIF] Preferred HW Mode = 0 Num Radios = 1
[ 60.185057] wlan: [1344:W:TIF] add_11ax_mode_flags: 11AX wireless modes are not populated by the target in reg capabilities, adding 11AX wireless modes
[ 60.191295] wlan: [1344:I:TIF] init_deinit_add_11ax_modes: hw_mode_id = 0 phy_id = 0 wireless modes = 0
[ 60.206428] wlan: [1344:I:TIF] init_deinit_alloc_pdevs: CDP PDEV ATTACH success
[ 60.214168] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 60.221490] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 60.229110] wlan: [1344:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 60.236839] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 60.244627] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 60.252025] wlan: [1344:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 60.259750] wlan: [1344:I:TIF] init_deinit_get_total_beaconing_vdevs_for_soc: beacon_tx_offload_max_vdev: 9
[ 60.267590] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 60.277019] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 60.284646] wlan: [1344:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 60.292396] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: num_radios: 1
[ 60.300198] wlan: [1344:I:TIF] init_deinit_get_total_num_ema_vaps: ema_max_vap_cnt: 0
[ 60.307586] wlan: [1344:I:TIF] init_deinit_get_total_num_vdevs_for_soc: num_vdevs: 9
[ 60.315435] wlan: [1344:I:ANY] init_deinit_update_pdev_tgt_info: pdev id:0 wmi_handle:96154800
[ 60.323826] wlan: [1344:F:DP] dp_rx_enable_mon_dest_frag: Feature DP_RX_MON_MEM_FRAG for mon_dest is enabled
[ 60.335429] wlan: [1344:I:ANY] init_deinit_update_pdev_tgt_info: Pdev = 0 Number of peers = 137 vdevs = 9
[ 60.341541] wlan: [1344:I:TIF] init_deinit_update_pdev_tgt_info: CDP PDEV INIT success
[ 60.451338] wlan: [1344:I:ANY] copy_fw_abi_version_tlv: copy_fw_abi_version_tlv: INIT_CMD version: 1, 0, 0x5f414351, 0x4c4d, 0x0, 0x0
[ 60.768793] wlan: [1344:I:ANY] ready_extract_init_status_tlv: ready_extract_init_status_tlv:0
[ 60.768834] wlan: [1344:I:ANY] dp_peer_map_attach_wifi3: dp_peer_map_attach_wifi3 max_peers 163, max_ast_index: 528
[ 60.768834]
[ 60.776435] wlan: [1366:I:ANY] ol_ath_connect_htc: WMI is ready
[ 60.804041] wlan: [1366:I:ANY] ath_get_radio_index: Error: Could not match the device name : wifi%d
[ 60.804084] wlan: [1366:E:NSS] [nss-wifili]: pdev:95180500 radio_ifnum:29 scheme_id:0 radio_priority:1
[ 60.817514] wlan: [1366:E:TIF] target_if_lro_hash_config: pdev with id 0 is NULL
[ 60.821738] wlan: [1366:I:ANY] ol_ath_soc_attach: connect HTC
[ 60.828950] wlan: [1366:I:ANY] ol_ath_soc_attach: bypasswmi : 0
[ 60.834589] wlan: [1366:I:MSCS] qca_mscs_module_init:
[ 60.834589] ****QCA MSCS Initialization Done**** SoC 96280500
[ 60.840307] wlan: [1366:I:ANY] ol_ath_soc_attach: UMAC attach
[ 60.851451] wlan: [1366:I:ANY] __ol_ath_attach: pdev_netdev name wifi1
[ 60.857079] wlan: [1366:I:ANY] __ol_ath_attach: Skip txrx_pdev_attach_target
[ 60.863545] wlan: [1366:I:ANY] __ol_ath_attach: BURSTING enabled by default
[ 60.870920] wlan: [1366:I:ANY] ol_ath_pdev_attach: interface_id 1
[ 60.877384] wlan: [1366:I:TIF] ol_ath_pdev_regdmn_init: phy id = 0 Modes supported
[ 60.883596] wlan: [1366:I:TIF] ol_ath_pdev_regdmn_init: 11b = 0 11g = 0 11a = 1 11n = 1 11ac = 1 11ax = 1
[ 60.891085] wlan: [1366:I:TIF] ol_ath_pdev_regdmn_init: Reg cap - phy_id = 0 supp_bnd = 2, modes = f97f9001, lo_2g = 0, hi_2g = 0 lo_g5 = 4900, hi_5g = 5920
[ 60.900802] wlan: [1366:I:ANY] ol_ath_update_wireless_modes: wireless_modes = f97f9001 before update
[ 60.914946] wlan: [1366:I:ANY] ol_ath_update_wireless_modes: Wireless_modes = f97f9001 after update
[ 60.924152] wlan: [1366:I:ANY] ol_ath_update_ext_caps: 11ax 5G supported case
[ 60.933083] wlan: [1366:I:MBSSIE] ol_ath_assign_mbssid_ref_bssid: MBSSID reference bssid is 02:03:7f:12:cd:16 soc: soc1 pdev: wifi1
[ 60.940417] wlan: [1366:I:MBSSIE] ieee80211_mbss_attach: :>
[ 60.951858] wlan: [1366:I:MBSSIE] ieee80211_mbss_attach: :<
[ 60.957396] wlan: [1366:I:ANY] ol_resmgr_create: OL Resmgr Init-ed
[ 60.963190] wlan: [1366:I:ANY] acfg_attach: acfg_attach: Offload using existing sock 99cb8c00
[ 60.969212] wlan: [1366:I:ANY] acfg_attach: Offload using existing sock 99cb8c00
[ 60.969212]
[ 60.977810] wlan: [1366:I:ANY] ol_ath_stats_attach: periodic_chan_stats: 1
[ 60.988318] wlan: [1366:I:ANY] wlan_scan_update_channel_list: num_chan: 25
[ 60.993506] wlan: [0:I:ANY] ol_ath_pdev_attach: Set global_ic[2], ptr:a30840e8
[ 61.000317] wlan: [0:I:ANY] dp_lag_soc_enable: pdev(9596ce04) Enabling DBDC Repeater 0
[ 61.007682] wlan: [0:I:ANY] dp_lag_pdev_set_primary_radio: pdev(9596ce04) is_primary 0
[ 61.007692] wlan: [0:E:NSS] [nss-wifili]: NSS Wifili DBDC Repeater enable message passed
[ 61.024240] wlan: [0:I:ANY] ol_ath_twt_enable_complete_event_handler: twt enabled
[ 61.029723] wlan: [1366:I:ANY] ol_ath_pri20_cfg_blockchanlist_parse: cfg block channel list is empty
[ 61.029753] wlan: [1366:I:ANY] ol_ath_configure_cong_ctrl_max_msdus: pdev_idx = 0 tx_desc_limit = 8192
[ 61.029807] wlan: [1366:I:ANY] osif_wrap_attach: osif wrap attached
[ 61.029807]
[ 61.029819] wlan: [1366:I:ANY] osif_wrap_devt_init: osif wrap dev table init done
[ 61.029819]
[ 61.029833] wlan: [1366:I:ANY] osif_wrap_attach: Wrap Attached: Wrap_com =938a0000 ic->ic_wrap_com=938a0000 &wrap_com->wc_devt=938a0000
[ 61.029833]
[ 61.029880] wlan: [1366:I:ANY] __ol_ath_attach: needed_headroom reservation 60
[ 61.029895] wlan: [1366:I:ANY] ol_ath_enable_fraglist: Enabled Fraglist bit for the radio wifi1 features 41
[ 61.030385] wlan: [1366:I:ANY] ieee80211_cfg80211_radio_attach: ic: 0x95180500, wdev: 0x95197d38, wiphy: 0x9400a960, netdev: 0x95180000
[ 61.031527] wlan: [1366:I:Dynamic Mode Change] ol_ath_check_and_reconfig_hw_mode: Running with HW mode = 0
[ 61.032231] wlan: [1366:E:QLD] qld_register: Handle or address is NULL
[ 61.032305] wlan: [1366:I:ANY] wlan_pdev_operation: num_radios=2, wifi_radios[1].sc = 95180500_radio_type = 2
[ 61.032340] Event 0x3 is registered for RC 0
[ 61.032407] wlan: [1366:I:ANY] init_ath_pci_3_0: 6ath_ol_pci_wifi3.0 : (Atheros/multi-bss)
[ 61.132051] vmap allocation for size 573440 failed: use vmalloc=<size> to increase size.
[ 61.154541] wlan: [1405:I:ANY] osif_nss_register_module: NSS wifi ops registered for target_type:0 with soc_ops:a1bb5070
[ 61.155051] wlan: [1405:I:ANY] init_ath_pci_2_0: 6ath_ol_pci_2_0: (Atheros/multi-bss)
No Direct-Attach chipsets found.
acfg_tool: Issuing blocking call to wait for events
acfg_tool: Issuing blocking call to wait for events
[ 65.632725] vmap allocation for size 1081344 failed: use vmalloc=<size> to increase size.
[ 65.721502] ECM init
[ 65.721574] ECM database jhash random seed: 0x4e30eb29
[ 65.735775] ECM init complete
lbd: stopping daemon
[ 67.333921] device eth0.2 entered promiscuous mode
[ 67.333951] device eth0 entered promiscuous mode
[ 67.348765] br-lan: port 1(eth0.2) entered forwarding state
[ 67.348884] br-lan: port 1(eth0.2) entered forwarding state
lbd: stopping daemon
[ 69.345889] br-lan: port 1(eth0.2) entered forwarding state
qcawifi qcawificfg80211 disable radio wifi0
qcawifi qcawificfg80211 disable radio wifi1
qcawifi qcawificfg80211 disable radio wifi0
qcawifi qcawificfg80211 disable radio wifi1
[ 71.865429] mc_attach: enabled snooping on br-lan.
[ 72.860364] coresight-funnel 6130000.funnel: FUNNEL inport 5 enabled
[ 72.860659] coresight-funnel 6041000.funnel: FUNNEL inport 7 enabled
[ 72.868205] coresight-tmc 6048000.tmc: TMC enabled
[ 72.872170] coresight-replicator-qcom 6046000.replicator: REPLICATOR enabled
[ 72.905811] coresight-tmc 6047000.tmc: TMC enabled
[ 72.905851] coresight-funnel 6041000.funnel: FUNNEL inport 7 enabled
[ 72.909598] coresight-stm 6002000.stm: STM tracing enabled
***** QDSS Tracing Configuration completed *******
****** Starting QDSS for Integrated ********
[ 73.475784] remoteproc remoteproc1: powering up bt_rproc_driver
[ 73.476107] remoteproc remoteproc1: Booting fw image IPQ5018/bt_fw_patch.mdt, size 284
[ 73.516655] bt_rproc_driver bt_rproc_driver: m0_btss_load
[ 73.575861] bt_rproc_driver bt_rproc_driver: m0_btss_start
[ 73.575934] remoteproc remoteproc1: remote processor bt_rproc_driver is now up
[ 73.580431] bt_driver 1943008.bt: BT IPC Started, starting APSS IPC
[ 73.712574] bt_driver 1943008.bt: BT IPC Stopped, gracefully stopping APSS IPC
[ 73.718283] bt_driver 1943008.bt: BT IPC Started, starting APSS IPC
[ 77.085776] device eth0 left promiscuous mode
[ 77.087094] br-lan: port 1(eth0.2) entered disabled state
[ 77.174622] device eth0 entered promiscuous mode
[ 77.175594] br-lan: port 1(eth0.2) entered forwarding state
[ 77.178493] br-lan: port 1(eth0.2) entered forwarding state
[ 77.881718] sh (3091): drop_caches: 3
**** Platform Name: ap-mp03.1 *****
Copy ART caldata from /dev/mtdblock7 to /tmp/virtual_art.bin
[ 79.175710] br-lan: port 1(eth0.2) entered forwarding state
+
Blockquote