Ver Fonte

qcacld-3.0: Add support for HTT_T2H_MSG_TYPE_CFR_DUMP_COMPL_IND msg

Add support to parse the HTT_T2H_MSG_TYPE_CFR_DUMP_COMPL_IND
message. This target to host message is received when CFR feature
is enabled.

Change-Id: I592cd5ca663018f2958550e6e3e383bb796ee168
CRs-Fixed: 2680730
Surabhi Vishnoi há 5 anos atrás
pai
commit
c25f24b8d8
3 ficheiros alterados com 89 adições e 1 exclusões
  1. 17 0
      core/dp/htt/htt_t2h.c
  2. 16 1
      core/dp/ol/inc/ol_txrx_htt_api.h
  3. 56 0
      core/dp/txrx/ol_rx.c

+ 17 - 0
core/dp/htt/htt_t2h.c

@@ -209,6 +209,7 @@ static int htt_t2h_adjust_bus_target_delta(struct htt_pdev_t *pdev,
 #endif
 
 #define MAX_TARGET_TX_CREDIT    204800
+#define HTT_CFR_DUMP_COMPL_HEAD_SZ	4
 
 /* Target to host Msg/event  handler  for low priority messages*/
 static void htt_t2h_lp_msg_handler(void *context, qdf_nbuf_t htt_t2h_msg,
@@ -706,7 +707,23 @@ static void htt_t2h_lp_msg_handler(void *context, qdf_nbuf_t htt_t2h_msg,
 		}
 		}
 	}
+#ifdef WLAN_CFR_ENABLE
+	case HTT_T2H_MSG_TYPE_CFR_DUMP_COMPL_IND:
+	{
+		int expected_len;
+		int msg_len = qdf_nbuf_len(htt_t2h_msg);
+
+		expected_len = HTT_CFR_DUMP_COMPL_HEAD_SZ +
+				sizeof(struct htt_cfr_dump_compl_ind);
+		if (msg_len < expected_len) {
+			qdf_print("Invalid length of CFR capture event");
+			break;
+		}
 
+		ol_rx_cfr_capture_msg_handler(htt_t2h_msg);
+		break;
+	}
+#endif
 	default:
 		break;
 	};

+ 16 - 1
core/dp/ol/inc/ol_txrx_htt_api.h

@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2011-2019 The Linux Foundation. All rights reserved.
+ * Copyright (c) 2011-2020 The Linux Foundation. All rights reserved.
  *
  * Permission to use, copy, modify, and/or distribute this software for
  * any purpose with or without fee is hereby granted, provided that the
@@ -785,4 +785,19 @@ static inline int ol_txrx_distribute_group_credits(struct ol_txrx_pdev_t *pdev,
 	* FEATURE_HL_GROUP_CREDIT_FLOW_CONTROL &&
 	* FEATURE_HL_DBS_GROUP_CREDIT_SHARING
 	*/
+
+#ifdef WLAN_CFR_ENABLE
+/**
+ * ol_rx_cfr_capture_msg_handler() - handler for HTT_PEER_CFR_CAPTURE_MSG_TYPE_1
+ * @htt_t2h_msg: htt msg data
+ *
+ * Return: None
+ */
+void ol_rx_cfr_capture_msg_handler(qdf_nbuf_t htt_t2h_msg);
+#else
+static inline void ol_rx_cfr_capture_msg_handler(qdf_nbuf_t htt_t2h_msg)
+{
+}
+#endif
+
 #endif /* _OL_TXRX_HTT_API__H_ */

+ 56 - 0
core/dp/txrx/ol_rx.c

@@ -1997,3 +1997,59 @@ void ol_ath_add_vow_extstats(htt_pdev_handle pdev, qdf_nbuf_t msdu)
 }
 
 #endif
+
+#ifdef WLAN_CFR_ENABLE
+void ol_rx_cfr_capture_msg_handler(qdf_nbuf_t htt_t2h_msg)
+{
+	HTT_PEER_CFR_CAPTURE_MSG_TYPE cfr_type;
+	struct htt_cfr_dump_compl_ind *cfr_dump;
+	struct htt_cfr_dump_ind_type_1 cfr_ind;
+	struct csi_cfr_header cfr_hdr = {};
+	uint32_t mem_index, vdev_id;
+	uint32_t *msg_word;
+	uint8_t *mac_addr;
+
+	msg_word = (uint32_t *)qdf_nbuf_data(htt_t2h_msg);
+
+	/* First payload word */
+	msg_word++;
+	cfr_dump = (struct htt_cfr_dump_compl_ind *)msg_word;
+	cfr_type = cfr_dump->msg_type;
+	if (cfr_type != HTT_PEER_CFR_CAPTURE_MSG_TYPE_1) {
+		ol_txrx_err("Unsupported cfr msg type 0x%x", cfr_type);
+		return;
+	}
+
+	/* Second payload word */
+	msg_word++;
+	cfr_hdr.start_magic_num = 0xDEADBEAF;
+	cfr_hdr.u.meta_v1.status = HTT_T2H_CFR_DUMP_TYPE1_STATUS_GET(
+					*msg_word);
+	cfr_hdr.u.meta_v1.capture_bw = HTT_T2H_CFR_DUMP_TYPE1_CAP_BW_GET(
+					*msg_word);
+	cfr_hdr.u.meta_v1.capture_mode = HTT_T2H_CFR_DUMP_TYPE1_MODE_GET(
+					*msg_word);
+	cfr_hdr.u.meta_v1.sts_count = HTT_T2H_CFR_DUMP_TYPE1_STS_GET(
+					*msg_word);
+	cfr_hdr.u.meta_v1.channel_bw = HTT_T2H_CFR_DUMP_TYPE1_CHAN_BW_GET(
+					*msg_word);
+	cfr_hdr.u.meta_v1.capture_type = HTT_T2H_CFR_DUMP_TYPE1_CAP_TYPE_GET(
+					*msg_word);
+
+	vdev_id = HTT_T2H_CFR_DUMP_TYPE1_VDEV_ID_GET(*msg_word);
+
+	mac_addr = (uint8_t *)(msg_word + 1);
+	qdf_mem_copy(cfr_hdr.u.meta_v1.peer_addr, mac_addr, QDF_MAC_ADDR_SIZE);
+
+	cfr_ind = cfr_dump->htt_cfr_dump_compl_ind_type_1;
+
+	cfr_hdr.u.meta_v1.prim20_chan = cfr_ind.chan.chan_mhz;
+	cfr_hdr.u.meta_v1.center_freq1 = cfr_ind.chan.band_center_freq1;
+	cfr_hdr.u.meta_v1.center_freq2 = cfr_ind.chan.band_center_freq2;
+	cfr_hdr.u.meta_v1.phy_mode = cfr_ind.chan.chan_mode;
+	cfr_hdr.u.meta_v1.length = cfr_ind.length;
+	cfr_hdr.u.meta_v1.timestamp = cfr_ind.timestamp;
+
+	mem_index = cfr_ind.index;
+}
+#endif