소스 검색

qcacld-3.0: Fix disable puncture failed issue

When disable puncture, no bandwidth indication ie exists in channel switch
wrapper, only wide bandwidth ie exists, need reset puncture to 0 when
handle csa event.

Change-Id: I6d311b52c984f354fbc359c6f5b5122b2a612b91
CRs-Fixed: 3512000
Jianmin Zhu 1 년 전
부모
커밋
b17cf48a7d
1개의 변경된 파일20개의 추가작업 그리고 0개의 파일을 삭제
  1. 20 0
      core/mac/src/pe/lim/lim_send_sme_rsp_messages.c

+ 20 - 0
core/mac/src/pe/lim/lim_send_sme_rsp_messages.c

@@ -1803,6 +1803,17 @@ static void lim_set_chan_sw_puncture(tLimChannelSwitchInfo *lim_ch_switch,
 	lim_ch_switch->puncture_bitmap = ch_param->reg_punc_bitmap;
 }
 
+/**
+ * lim_reset_csa_puncture() - reset puncture of channel switch
+ * @lim_ch_switch: pointer to tLimChannelSwitchInfo
+ *
+ * Return: void
+ */
+static void lim_reset_csa_puncture(tLimChannelSwitchInfo *lim_ch_switch)
+{
+	lim_ch_switch->puncture_bitmap = 0;
+}
+
 /**
  * lim_is_puncture_same() - Check whether puncture changed
  * @lim_ch_switch: pointer to tLimChannelSwitchInfo
@@ -1813,6 +1824,9 @@ static void lim_set_chan_sw_puncture(tLimChannelSwitchInfo *lim_ch_switch,
 static bool lim_is_puncture_same(tLimChannelSwitchInfo *lim_ch_switch,
 				 struct pe_session *session)
 {
+	pe_debug("vdevid %d puncture, old: 0x%x, new: 0x%x", session->vdev_id,
+		 session->puncture_bitmap,
+		 lim_ch_switch->puncture_bitmap);
 	return lim_ch_switch->puncture_bitmap == session->puncture_bitmap;
 }
 
@@ -1828,6 +1842,10 @@ static void lim_set_chan_sw_puncture(tLimChannelSwitchInfo *lim_ch_switch,
 {
 }
 
+static void lim_reset_csa_puncture(tLimChannelSwitchInfo *lim_ch_switch)
+{
+}
+
 static bool lim_is_puncture_same(tLimChannelSwitchInfo *lim_ch_switch,
 				 struct pe_session *session)
 {
@@ -1901,6 +1919,8 @@ void lim_handle_sta_csa_param(struct mac_context *mac_ctx,
 	lim_ch_switch->state =
 		eLIM_CHANNEL_SWITCH_PRIMARY_ONLY;
 	lim_ch_switch->ch_width = CH_WIDTH_20MHZ;
+	lim_reset_csa_puncture(lim_ch_switch);
+
 	lim_ch_switch->sec_ch_offset =
 		session_entry->htSecondaryChannelOffset;
 	lim_ch_switch->ch_center_freq_seg0 = 0;