Skip to content

Commit 3a89b6d

Browse files
tj90241kvalo
authored andcommitted
wifi: ath11k: Fix QCN9074 firmware boot on x86
The 2.7.0 series of QCN9074's firmware requests 5 segments of memory instead of 3 (as in the 2.5.0 series). The first segment (11M) is too large to be kalloc'd in one go on x86 and requires piecemeal 1MB allocations, as was the case with the prior public firmware (2.5.0, 15M). Since f6f9296, ath11k will break the memory requests, but only if there were fewer than 3 segments requested by the firmware. It seems that 5 segments works fine and allows QCN9074 to boot on x86 with firmware 2.7.0, so change things accordingly. Tested-on: QCN9074 hw1.0 PCI WLAN.HK.2.7.0.1-01744-QCAHKSWPL_SILICONZ-1 Tested-on: QCN9074 hw1.0 PCI WLAN.HK.2.5.0.1-01208-QCAHKSWPL_SILICONZ-1 Tested-on: WCN6855 hw2.0 PCI WLAN.HSP.1.1-03125-QCAHSPSWPL_V1_V2_SILICONZ_LITE-3.6510.16 Signed-off-by: Tyler J. Stachecki <[email protected]> Signed-off-by: Kalle Valo <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 30ac96f commit 3a89b6d

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/ath/ath11k

1 file changed

+1
-1
lines changed

drivers/net/wireless/ath/ath11k/qmi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define ATH11K_QMI_WLANFW_MAX_NUM_MEM_SEG_V01 52
2828
#define ATH11K_QMI_CALDB_SIZE 0x480000
2929
#define ATH11K_QMI_BDF_EXT_STR_LENGTH 0x20
30-
#define ATH11K_QMI_FW_MEM_REQ_SEGMENT_CNT 3
30+
#define ATH11K_QMI_FW_MEM_REQ_SEGMENT_CNT 5
3131

3232
#define QMI_WLFW_REQUEST_MEM_IND_V01 0x0035
3333
#define QMI_WLFW_FW_MEM_READY_IND_V01 0x0037

0 commit comments

Comments
 (0)