ath11k: Add wmi peer create conf event in wmi_tlv_event_id
authorP Praneesh <ppranees@codeaurora.org>
Tue, 28 Sep 2021 09:05:41 +0000 (12:05 +0300)
committerKalle Valo <kvalo@codeaurora.org>
Tue, 28 Sep 2021 10:57:35 +0000 (13:57 +0300)
When the driver sends a peer create cmd, the firmware responds with
WMI_PEER_CREATE_CONF_EVENTID to confirm the firmware received
WMI_PEER_CREATE_CMDID. Since the peer create conf event is not handled
in ath11k_wmi_tlv_op_rx, we are getting unknown event id warning prints
during peer creation.

Add WMI_PEER_CREATE_CONF_EVENTID in wmi_tlv_event_id and handle
the same as unsupported event id under wmi logs.

warning prints:
[ 4382.230817] ath11k_pci 0000:01:00.0: Unknown eventid: 0x601a

Tested-on: IPQ8074 hw2.0 AHB WLAN.HK.2.4.0.1-01695-QCAHKSWPL_SILICONZ-1

Signed-off-by: P Praneesh <ppranees@codeaurora.org>
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
Signed-off-by: Kalle Valo <kvalo@codeaurora.org>
Link: https://lore.kernel.org/r/20210721212029.142388-9-jouni@codeaurora.org
drivers/net/wireless/ath/ath11k/wmi.c
drivers/net/wireless/ath/ath11k/wmi.h

index 88a8606..0c8feb7 100644 (file)
@@ -7130,6 +7130,7 @@ static void ath11k_wmi_tlv_op_rx(struct ath11k_base *ab, struct sk_buff *skb)
        case WMI_TWT_ENABLE_EVENTID:
        case WMI_TWT_DISABLE_EVENTID:
        case WMI_PDEV_DMA_RING_CFG_RSP_EVENTID:
+       case WMI_PEER_CREATE_CONF_EVENTID:
                ath11k_dbg(ab, ATH11K_DBG_WMI,
                           "ignoring unsupported event 0x%x\n", id);
                break;
index b579923..0584e68 100644 (file)
@@ -663,6 +663,9 @@ enum wmi_tlv_event_id {
        WMI_PEER_RESERVED9_EVENTID,
        WMI_PEER_RESERVED10_EVENTID,
        WMI_PEER_OPER_MODE_CHANGE_EVENTID,
+       WMI_PEER_TX_PN_RESPONSE_EVENTID,
+       WMI_PEER_CFR_CAPTURE_EVENTID,
+       WMI_PEER_CREATE_CONF_EVENTID,
        WMI_MGMT_RX_EVENTID = WMI_TLV_CMD(WMI_GRP_MGMT),
        WMI_HOST_SWBA_EVENTID,
        WMI_TBTTOFFSET_UPDATE_EVENTID,