dp_rx_mon_status.c 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035
  1. /*
  2. * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #include "hal_hw_headers.h"
  19. #include "dp_types.h"
  20. #include "dp_rx.h"
  21. #include "dp_peer.h"
  22. #include "hal_rx.h"
  23. #include "hal_api.h"
  24. #include "qdf_trace.h"
  25. #include "qdf_nbuf.h"
  26. #include "hal_api_mon.h"
  27. #include "dp_rx_mon.h"
  28. #include "dp_internal.h"
  29. #include "qdf_mem.h" /* qdf_mem_malloc,free */
  30. #ifdef FEATURE_PERPKT_INFO
  31. #include "dp_ratetable.h"
  32. #endif
  33. /**
  34. * dp_rx_populate_cdp_indication_ppdu() - Populate cdp rx indication structure
  35. * @pdev: pdev ctx
  36. * @ppdu_info: ppdu info structure from ppdu ring
  37. * @ppdu_nbuf: qdf nbuf abstraction for linux skb
  38. *
  39. * Return: none
  40. */
  41. #ifdef FEATURE_PERPKT_INFO
  42. static inline void
  43. dp_rx_populate_cdp_indication_ppdu(struct dp_pdev *pdev,
  44. struct hal_rx_ppdu_info *ppdu_info,
  45. qdf_nbuf_t ppdu_nbuf)
  46. {
  47. struct dp_peer *peer;
  48. struct dp_soc *soc = pdev->soc;
  49. struct dp_ast_entry *ast_entry;
  50. struct cdp_rx_indication_ppdu *cdp_rx_ppdu;
  51. uint32_t ast_index;
  52. cdp_rx_ppdu = (struct cdp_rx_indication_ppdu *)ppdu_nbuf->data;
  53. cdp_rx_ppdu->first_data_seq_ctrl =
  54. ppdu_info->rx_status.first_data_seq_ctrl;
  55. cdp_rx_ppdu->frame_ctrl =
  56. ppdu_info->rx_status.frame_control;
  57. cdp_rx_ppdu->ppdu_id = ppdu_info->com_info.ppdu_id;
  58. cdp_rx_ppdu->length = ppdu_info->rx_status.ppdu_len;
  59. cdp_rx_ppdu->duration = ppdu_info->rx_status.duration;
  60. cdp_rx_ppdu->u.bw = ppdu_info->rx_status.bw;
  61. cdp_rx_ppdu->tcp_msdu_count = ppdu_info->rx_status.tcp_msdu_count;
  62. cdp_rx_ppdu->udp_msdu_count = ppdu_info->rx_status.udp_msdu_count;
  63. cdp_rx_ppdu->other_msdu_count = ppdu_info->rx_status.other_msdu_count;
  64. cdp_rx_ppdu->u.nss = ppdu_info->rx_status.nss;
  65. cdp_rx_ppdu->u.mcs = ppdu_info->rx_status.mcs;
  66. if ((ppdu_info->rx_status.sgi == VHT_SGI_NYSM) &&
  67. (ppdu_info->rx_status.preamble_type == HAL_RX_PKT_TYPE_11AC))
  68. cdp_rx_ppdu->u.gi = CDP_SGI_0_4_US;
  69. else
  70. cdp_rx_ppdu->u.gi = ppdu_info->rx_status.sgi;
  71. cdp_rx_ppdu->u.ldpc = ppdu_info->rx_status.ldpc;
  72. cdp_rx_ppdu->u.preamble = ppdu_info->rx_status.preamble_type;
  73. cdp_rx_ppdu->u.ppdu_type = ppdu_info->rx_status.reception_type;
  74. cdp_rx_ppdu->rssi = ppdu_info->rx_status.rssi_comb;
  75. cdp_rx_ppdu->timestamp = ppdu_info->rx_status.tsft;
  76. cdp_rx_ppdu->channel = ppdu_info->rx_status.chan_num;
  77. cdp_rx_ppdu->beamformed = ppdu_info->rx_status.beamformed;
  78. cdp_rx_ppdu->num_msdu = (cdp_rx_ppdu->tcp_msdu_count +
  79. cdp_rx_ppdu->udp_msdu_count +
  80. cdp_rx_ppdu->other_msdu_count);
  81. cdp_rx_ppdu->num_mpdu = ppdu_info->com_info.mpdu_cnt_fcs_ok;
  82. if (ppdu_info->com_info.mpdu_cnt_fcs_ok > 1)
  83. cdp_rx_ppdu->is_ampdu = 1;
  84. else
  85. cdp_rx_ppdu->is_ampdu = 0;
  86. cdp_rx_ppdu->tid = ppdu_info->rx_status.tid;
  87. cdp_rx_ppdu->lsig_a = ppdu_info->rx_status.rate;
  88. ast_index = ppdu_info->rx_status.ast_index;
  89. if (ast_index >= (WLAN_UMAC_PSOC_MAX_PEERS * 2)) {
  90. cdp_rx_ppdu->peer_id = HTT_INVALID_PEER;
  91. return;
  92. }
  93. ast_entry = soc->ast_table[ast_index];
  94. if (!ast_entry) {
  95. cdp_rx_ppdu->peer_id = HTT_INVALID_PEER;
  96. return;
  97. }
  98. peer = ast_entry->peer;
  99. if (!peer || peer->peer_ids[0] == HTT_INVALID_PEER) {
  100. cdp_rx_ppdu->peer_id = HTT_INVALID_PEER;
  101. return;
  102. }
  103. qdf_mem_copy(cdp_rx_ppdu->mac_addr,
  104. peer->mac_addr.raw, DP_MAC_ADDR_LEN);
  105. cdp_rx_ppdu->peer_id = peer->peer_ids[0];
  106. cdp_rx_ppdu->vdev_id = peer->vdev->vdev_id;
  107. }
  108. #else
  109. static inline void
  110. dp_rx_populate_cdp_indication_ppdu(struct dp_pdev *pdev,
  111. struct hal_rx_ppdu_info *ppdu_info,
  112. qdf_nbuf_t ppdu_nbuf)
  113. {
  114. }
  115. #endif
  116. /**
  117. * dp_rx_stats_update() - Update per-peer statistics
  118. * @soc: Datapath SOC handle
  119. * @peer: Datapath peer handle
  120. * @ppdu: PPDU Descriptor
  121. *
  122. * Return: None
  123. */
  124. #ifdef FEATURE_PERPKT_INFO
  125. static inline void dp_rx_rate_stats_update(struct dp_peer *peer,
  126. struct cdp_rx_indication_ppdu *ppdu)
  127. {
  128. uint32_t ratekbps = 0;
  129. uint32_t ppdu_rx_rate = 0;
  130. uint32_t nss = 0;
  131. if (!peer || !ppdu)
  132. return;
  133. if (ppdu->u.nss == 0)
  134. nss = 0;
  135. else
  136. nss = ppdu->u.nss - 1;
  137. ratekbps = dp_getrateindex(ppdu->u.gi,
  138. ppdu->u.mcs,
  139. nss,
  140. ppdu->u.preamble,
  141. ppdu->u.bw);
  142. if (!ratekbps)
  143. return;
  144. DP_STATS_UPD(peer, rx.last_rx_rate, ratekbps);
  145. dp_ath_rate_lpf(peer->stats.rx.avg_rx_rate, ratekbps);
  146. ppdu_rx_rate = dp_ath_rate_out(peer->stats.rx.avg_rx_rate);
  147. DP_STATS_UPD(peer, rx.rnd_avg_rx_rate, ppdu_rx_rate);
  148. if (peer->vdev)
  149. peer->vdev->stats.rx.last_rx_rate = ratekbps;
  150. }
  151. static void dp_rx_stats_update(struct dp_pdev *pdev, struct dp_peer *peer,
  152. struct cdp_rx_indication_ppdu *ppdu)
  153. {
  154. struct dp_soc *soc = NULL;
  155. uint8_t mcs, preamble, ac = 0;
  156. uint16_t num_msdu;
  157. bool is_invalid_peer = false;
  158. mcs = ppdu->u.mcs;
  159. preamble = ppdu->u.preamble;
  160. num_msdu = ppdu->num_msdu;
  161. if (pdev)
  162. soc = pdev->soc;
  163. else
  164. return;
  165. if (!peer) {
  166. is_invalid_peer = true;
  167. peer = pdev->invalid_peer;
  168. }
  169. if (!soc || soc->process_rx_status)
  170. return;
  171. DP_STATS_UPD(peer, rx.rssi, ppdu->rssi);
  172. if ((preamble == DOT11_A) || (preamble == DOT11_B))
  173. ppdu->u.nss = 1;
  174. if (ppdu->u.nss)
  175. DP_STATS_INC(peer, rx.nss[ppdu->u.nss - 1], num_msdu);
  176. DP_STATS_INC(peer, rx.sgi_count[ppdu->u.gi], num_msdu);
  177. DP_STATS_INC(peer, rx.bw[ppdu->u.bw], num_msdu);
  178. DP_STATS_INC(peer, rx.reception_type[ppdu->u.ppdu_type], num_msdu);
  179. DP_STATS_INCC(peer, rx.ampdu_cnt, num_msdu, ppdu->is_ampdu);
  180. DP_STATS_INCC(peer, rx.non_ampdu_cnt, num_msdu, !(ppdu->is_ampdu));
  181. DP_STATS_UPD(peer, rx.rx_rate, mcs);
  182. DP_STATS_INCC(peer,
  183. rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
  184. ((mcs >= MAX_MCS_11A) && (preamble == DOT11_A)));
  185. DP_STATS_INCC(peer,
  186. rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  187. ((mcs < MAX_MCS_11A) && (preamble == DOT11_A)));
  188. DP_STATS_INCC(peer,
  189. rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
  190. ((mcs >= MAX_MCS_11B) && (preamble == DOT11_B)));
  191. DP_STATS_INCC(peer,
  192. rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  193. ((mcs < MAX_MCS_11B) && (preamble == DOT11_B)));
  194. DP_STATS_INCC(peer,
  195. rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
  196. ((mcs >= MAX_MCS_11A) && (preamble == DOT11_N)));
  197. DP_STATS_INCC(peer,
  198. rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  199. ((mcs < MAX_MCS_11A) && (preamble == DOT11_N)));
  200. DP_STATS_INCC(peer,
  201. rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
  202. ((mcs >= MAX_MCS_11AC) && (preamble == DOT11_AC)));
  203. DP_STATS_INCC(peer,
  204. rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  205. ((mcs < MAX_MCS_11AC) && (preamble == DOT11_AC)));
  206. DP_STATS_INCC(peer,
  207. rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
  208. ((mcs >= (MAX_MCS - 1)) && (preamble == DOT11_AX)));
  209. DP_STATS_INCC(peer,
  210. rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
  211. ((mcs < (MAX_MCS - 1)) && (preamble == DOT11_AX)));
  212. /*
  213. * If invalid TID, it could be a non-qos frame, hence do not update
  214. * any AC counters
  215. */
  216. ac = TID_TO_WME_AC(ppdu->tid);
  217. if (ppdu->tid != HAL_TID_INVALID)
  218. DP_STATS_INC(peer, rx.wme_ac_type[ac], num_msdu);
  219. dp_peer_stats_notify(peer);
  220. DP_STATS_UPD(peer, rx.last_rssi, ppdu->rssi);
  221. if (is_invalid_peer)
  222. return;
  223. dp_rx_rate_stats_update(peer, ppdu);
  224. #if defined(FEATURE_PERPKT_INFO) && WDI_EVENT_ENABLE
  225. dp_wdi_event_handler(WDI_EVENT_UPDATE_DP_STATS, pdev->soc,
  226. &peer->stats, ppdu->peer_id,
  227. UPDATE_PEER_STATS, pdev->pdev_id);
  228. #endif
  229. }
  230. #endif
  231. /**
  232. * dp_rx_handle_mcopy_mode() - Allocate and deliver first MSDU payload
  233. * @soc: core txrx main context
  234. * @pdev: pdev strcuture
  235. * @ppdu_info: structure for rx ppdu ring
  236. *
  237. * Return: QDF_STATUS_SUCCESS - If nbuf to be freed by caller
  238. * QDF_STATUS_E_ALREADY - If nbuf not to be freed by caller
  239. */
  240. #ifdef FEATURE_PERPKT_INFO
  241. static inline QDF_STATUS
  242. dp_rx_handle_mcopy_mode(struct dp_soc *soc, struct dp_pdev *pdev,
  243. struct hal_rx_ppdu_info *ppdu_info, qdf_nbuf_t nbuf)
  244. {
  245. uint8_t size = 0;
  246. struct ieee80211_frame *wh;
  247. uint32_t *nbuf_data;
  248. if (ppdu_info->msdu_info.first_msdu_payload == NULL)
  249. return QDF_STATUS_SUCCESS;
  250. if (pdev->m_copy_id.rx_ppdu_id == ppdu_info->com_info.ppdu_id)
  251. return QDF_STATUS_SUCCESS;
  252. pdev->m_copy_id.rx_ppdu_id = ppdu_info->com_info.ppdu_id;
  253. wh = (struct ieee80211_frame *)(ppdu_info->msdu_info.first_msdu_payload
  254. + 4);
  255. size = (ppdu_info->msdu_info.first_msdu_payload -
  256. qdf_nbuf_data(nbuf));
  257. ppdu_info->msdu_info.first_msdu_payload = NULL;
  258. if (qdf_nbuf_pull_head(nbuf, size) == NULL)
  259. return QDF_STATUS_SUCCESS;
  260. if (((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) ==
  261. IEEE80211_FC0_TYPE_MGT) ||
  262. ((wh->i_fc[0] & IEEE80211_FC0_TYPE_MASK) ==
  263. IEEE80211_FC0_TYPE_CTL)) {
  264. return QDF_STATUS_SUCCESS;
  265. }
  266. nbuf_data = (uint32_t *)qdf_nbuf_data(nbuf);
  267. *nbuf_data = pdev->ppdu_info.com_info.ppdu_id;
  268. /* only retain RX MSDU payload in the skb */
  269. qdf_nbuf_trim_tail(nbuf, qdf_nbuf_len(nbuf) -
  270. ppdu_info->msdu_info.payload_len);
  271. dp_wdi_event_handler(WDI_EVENT_RX_DATA, soc,
  272. nbuf, HTT_INVALID_PEER, WDI_NO_VAL, pdev->pdev_id);
  273. return QDF_STATUS_E_ALREADY;
  274. }
  275. #else
  276. static inline QDF_STATUS
  277. dp_rx_handle_mcopy_mode(struct dp_soc *soc, struct dp_pdev *pdev,
  278. struct hal_rx_ppdu_info *ppdu_info, qdf_nbuf_t nbuf)
  279. {
  280. return QDF_STATUS_SUCCESS;
  281. }
  282. #endif
  283. /**
  284. * dp_rx_handle_smart_mesh_mode() - Deliver header for smart mesh
  285. * @soc: Datapath SOC handle
  286. * @pdev: Datapath PDEV handle
  287. * @ppdu_info: Structure for rx ppdu info
  288. * @nbuf: Qdf nbuf abstraction for linux skb
  289. *
  290. * Return: 0 on success, 1 on failure
  291. */
  292. static inline int
  293. dp_rx_handle_smart_mesh_mode(struct dp_soc *soc, struct dp_pdev *pdev,
  294. struct hal_rx_ppdu_info *ppdu_info,
  295. qdf_nbuf_t nbuf)
  296. {
  297. uint8_t size = 0;
  298. if (!pdev->monitor_vdev) {
  299. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  300. "[%s]:[%d] Monitor vdev is NULL !!",
  301. __func__, __LINE__);
  302. return 1;
  303. }
  304. if (ppdu_info->msdu_info.first_msdu_payload == NULL) {
  305. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  306. "[%s]:[%d] First msdu payload not present",
  307. __func__, __LINE__);
  308. return 1;
  309. }
  310. /* Adding 4 bytes to get to start of 802.11 frame after phy_ppdu_id */
  311. size = (ppdu_info->msdu_info.first_msdu_payload -
  312. qdf_nbuf_data(nbuf)) + 4;
  313. ppdu_info->msdu_info.first_msdu_payload = NULL;
  314. if (qdf_nbuf_pull_head(nbuf, size) == NULL) {
  315. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  316. "[%s]:[%d] No header present",
  317. __func__, __LINE__);
  318. return 1;
  319. }
  320. /* Only retain RX MSDU payload in the skb */
  321. qdf_nbuf_trim_tail(nbuf, qdf_nbuf_len(nbuf) -
  322. ppdu_info->msdu_info.payload_len);
  323. qdf_nbuf_update_radiotap(&(pdev->ppdu_info.rx_status),
  324. nbuf, sizeof(struct rx_pkt_tlvs));
  325. pdev->monitor_vdev->osif_rx_mon(pdev->monitor_vdev->osif_vdev,
  326. nbuf, NULL);
  327. pdev->ppdu_info.rx_status.monitor_direct_used = 0;
  328. return 0;
  329. }
  330. /**
  331. * dp_rx_handle_ppdu_stats() - Allocate and deliver ppdu stats to cdp layer
  332. * @soc: core txrx main context
  333. * @pdev: pdev strcuture
  334. * @ppdu_info: structure for rx ppdu ring
  335. *
  336. * Return: none
  337. */
  338. #ifdef FEATURE_PERPKT_INFO
  339. static inline void
  340. dp_rx_handle_ppdu_stats(struct dp_soc *soc, struct dp_pdev *pdev,
  341. struct hal_rx_ppdu_info *ppdu_info)
  342. {
  343. qdf_nbuf_t ppdu_nbuf;
  344. struct dp_peer *peer;
  345. struct cdp_rx_indication_ppdu *cdp_rx_ppdu;
  346. /*
  347. * Do not allocate if fcs error,
  348. * ast idx invalid / fctl invalid
  349. */
  350. if (ppdu_info->com_info.mpdu_cnt_fcs_ok == 0)
  351. return;
  352. if (ppdu_info->nac_info.fc_valid &&
  353. ppdu_info->nac_info.to_ds_flag &&
  354. ppdu_info->nac_info.mac_addr2_valid) {
  355. struct dp_neighbour_peer *peer = NULL;
  356. uint8_t rssi = ppdu_info->rx_status.rssi_comb;
  357. qdf_spin_lock_bh(&pdev->neighbour_peer_mutex);
  358. if (pdev->neighbour_peers_added) {
  359. TAILQ_FOREACH(peer, &pdev->neighbour_peers_list,
  360. neighbour_peer_list_elem) {
  361. if (!qdf_mem_cmp(&peer->neighbour_peers_macaddr,
  362. &ppdu_info->nac_info.mac_addr2,
  363. DP_MAC_ADDR_LEN)) {
  364. peer->rssi = rssi;
  365. break;
  366. }
  367. }
  368. }
  369. qdf_spin_unlock_bh(&pdev->neighbour_peer_mutex);
  370. }
  371. /* need not generate wdi event when mcopy and
  372. * enhanced stats are not enabled
  373. */
  374. if (!pdev->mcopy_mode && !pdev->enhanced_stats_en)
  375. return;
  376. if (!pdev->mcopy_mode) {
  377. if (!ppdu_info->rx_status.frame_control_info_valid)
  378. return;
  379. if (ppdu_info->rx_status.ast_index == HAL_AST_IDX_INVALID)
  380. return;
  381. }
  382. ppdu_nbuf = qdf_nbuf_alloc(soc->osdev,
  383. sizeof(struct hal_rx_ppdu_info), 0, 0, FALSE);
  384. if (ppdu_nbuf) {
  385. dp_rx_populate_cdp_indication_ppdu(pdev, ppdu_info, ppdu_nbuf);
  386. qdf_nbuf_put_tail(ppdu_nbuf,
  387. sizeof(struct cdp_rx_indication_ppdu));
  388. cdp_rx_ppdu = (struct cdp_rx_indication_ppdu *)ppdu_nbuf->data;
  389. peer = dp_peer_find_by_id(soc, cdp_rx_ppdu->peer_id);
  390. if (peer) {
  391. dp_rx_stats_update(pdev, peer, cdp_rx_ppdu);
  392. dp_peer_unref_del_find_by_id(peer);
  393. }
  394. if (cdp_rx_ppdu->peer_id != HTT_INVALID_PEER) {
  395. dp_wdi_event_handler(WDI_EVENT_RX_PPDU_DESC,
  396. soc, ppdu_nbuf,
  397. cdp_rx_ppdu->peer_id,
  398. WDI_NO_VAL, pdev->pdev_id);
  399. } else if (pdev->mcopy_mode) {
  400. dp_wdi_event_handler(WDI_EVENT_RX_PPDU_DESC, soc,
  401. ppdu_nbuf, HTT_INVALID_PEER,
  402. WDI_NO_VAL, pdev->pdev_id);
  403. } else {
  404. qdf_nbuf_free(ppdu_nbuf);
  405. }
  406. }
  407. }
  408. #else
  409. static inline void
  410. dp_rx_handle_ppdu_stats(struct dp_soc *soc, struct dp_pdev *pdev,
  411. struct hal_rx_ppdu_info *ppdu_info)
  412. {
  413. }
  414. #endif
  415. /**
  416. * dp_rx_process_peer_based_pktlog() - Process Rx pktlog if peer based
  417. * filtering enabled
  418. * @soc: core txrx main context
  419. * @ppdu_info: Structure for rx ppdu info
  420. * @status_nbuf: Qdf nbuf abstraction for linux skb
  421. * @mac_id: mac_id/pdev_id correspondinggly for MCL and WIN
  422. *
  423. * Return: none
  424. */
  425. static inline void
  426. dp_rx_process_peer_based_pktlog(struct dp_soc *soc,
  427. struct hal_rx_ppdu_info *ppdu_info,
  428. qdf_nbuf_t status_nbuf, uint32_t mac_id)
  429. {
  430. struct dp_peer *peer;
  431. struct dp_ast_entry *ast_entry;
  432. uint32_t ast_index;
  433. ast_index = ppdu_info->rx_status.ast_index;
  434. if (ast_index < (WLAN_UMAC_PSOC_MAX_PEERS * 2)) {
  435. ast_entry = soc->ast_table[ast_index];
  436. if (ast_entry) {
  437. peer = ast_entry->peer;
  438. if (peer && (peer->peer_ids[0] != HTT_INVALID_PEER)) {
  439. if (peer->peer_based_pktlog_filter) {
  440. dp_wdi_event_handler(
  441. WDI_EVENT_RX_DESC, soc,
  442. status_nbuf,
  443. peer->peer_ids[0],
  444. WDI_NO_VAL, mac_id);
  445. }
  446. }
  447. }
  448. }
  449. }
  450. /**
  451. * dp_rx_mon_status_process_tlv() - Process status TLV in status
  452. * buffer on Rx status Queue posted by status SRNG processing.
  453. * @soc: core txrx main context
  454. * @mac_id: mac_id which is one of 3 mac_ids _ring
  455. *
  456. * Return: none
  457. */
  458. static inline void
  459. dp_rx_mon_status_process_tlv(struct dp_soc *soc, uint32_t mac_id,
  460. uint32_t quota)
  461. {
  462. struct dp_pdev *pdev = dp_get_pdev_for_mac_id(soc, mac_id);
  463. struct hal_rx_ppdu_info *ppdu_info;
  464. qdf_nbuf_t status_nbuf;
  465. uint8_t *rx_tlv;
  466. uint8_t *rx_tlv_start;
  467. uint32_t tlv_status = HAL_TLV_STATUS_BUF_DONE;
  468. QDF_STATUS m_copy_status = QDF_STATUS_SUCCESS;
  469. struct cdp_pdev_mon_stats *rx_mon_stats;
  470. int smart_mesh_status;
  471. ppdu_info = &pdev->ppdu_info;
  472. rx_mon_stats = &pdev->rx_mon_stats;
  473. if (pdev->mon_ppdu_status != DP_PPDU_STATUS_START)
  474. return;
  475. while (!qdf_nbuf_is_queue_empty(&pdev->rx_status_q)) {
  476. status_nbuf = qdf_nbuf_queue_remove(&pdev->rx_status_q);
  477. rx_tlv = qdf_nbuf_data(status_nbuf);
  478. rx_tlv_start = rx_tlv;
  479. if ((pdev->monitor_vdev != NULL) || (pdev->enhanced_stats_en) ||
  480. pdev->mcopy_mode) {
  481. do {
  482. tlv_status = hal_rx_status_get_tlv_info(rx_tlv,
  483. ppdu_info, pdev->soc->hal_soc);
  484. dp_rx_mon_update_dbg_ppdu_stats(ppdu_info,
  485. rx_mon_stats);
  486. rx_tlv = hal_rx_status_get_next_tlv(rx_tlv);
  487. if ((rx_tlv - rx_tlv_start) >= RX_BUFFER_SIZE)
  488. break;
  489. } while (tlv_status == HAL_TLV_STATUS_PPDU_NOT_DONE);
  490. }
  491. if (pdev->dp_peer_based_pktlog) {
  492. dp_rx_process_peer_based_pktlog(soc, ppdu_info,
  493. status_nbuf, mac_id);
  494. } else {
  495. dp_wdi_event_handler(WDI_EVENT_RX_DESC, soc,
  496. status_nbuf, HTT_INVALID_PEER,
  497. WDI_NO_VAL, mac_id);
  498. }
  499. /* smart monitor vap and m_copy cannot co-exist */
  500. if (ppdu_info->rx_status.monitor_direct_used && pdev->neighbour_peers_added
  501. && pdev->monitor_vdev) {
  502. smart_mesh_status = dp_rx_handle_smart_mesh_mode(soc,
  503. pdev, ppdu_info, status_nbuf);
  504. if (smart_mesh_status)
  505. qdf_nbuf_free(status_nbuf);
  506. } else if (pdev->mcopy_mode) {
  507. m_copy_status = dp_rx_handle_mcopy_mode(soc,
  508. pdev, ppdu_info, status_nbuf);
  509. if (m_copy_status == QDF_STATUS_SUCCESS)
  510. qdf_nbuf_free(status_nbuf);
  511. } else {
  512. qdf_nbuf_free(status_nbuf);
  513. }
  514. if (tlv_status == HAL_TLV_STATUS_PPDU_NON_STD_DONE) {
  515. dp_rx_mon_deliver_non_std(soc, mac_id);
  516. } else if (tlv_status == HAL_TLV_STATUS_PPDU_DONE) {
  517. rx_mon_stats->status_ppdu_done++;
  518. if (pdev->enhanced_stats_en ||
  519. pdev->mcopy_mode || pdev->neighbour_peers_added)
  520. dp_rx_handle_ppdu_stats(soc, pdev, ppdu_info);
  521. pdev->mon_ppdu_status = DP_PPDU_STATUS_DONE;
  522. dp_rx_mon_dest_process(soc, mac_id, quota);
  523. pdev->mon_ppdu_status = DP_PPDU_STATUS_START;
  524. }
  525. }
  526. return;
  527. }
  528. /*
  529. * dp_rx_mon_status_srng_process() - Process monitor status ring
  530. * post the status ring buffer to Rx status Queue for later
  531. * processing when status ring is filled with status TLV.
  532. * Allocate a new buffer to status ring if the filled buffer
  533. * is posted.
  534. *
  535. * @soc: core txrx main context
  536. * @mac_id: mac_id which is one of 3 mac_ids
  537. * @quota: No. of ring entry that can be serviced in one shot.
  538. * Return: uint32_t: No. of ring entry that is processed.
  539. */
  540. static inline uint32_t
  541. dp_rx_mon_status_srng_process(struct dp_soc *soc, uint32_t mac_id,
  542. uint32_t quota)
  543. {
  544. struct dp_pdev *pdev = dp_get_pdev_for_mac_id(soc, mac_id);
  545. void *hal_soc;
  546. void *mon_status_srng;
  547. void *rxdma_mon_status_ring_entry;
  548. QDF_STATUS status;
  549. uint32_t work_done = 0;
  550. int mac_for_pdev = dp_get_mac_id_for_mac(soc, mac_id);
  551. mon_status_srng = pdev->rxdma_mon_status_ring[mac_for_pdev].hal_srng;
  552. qdf_assert(mon_status_srng);
  553. if (!mon_status_srng || !hal_srng_initialized(mon_status_srng)) {
  554. QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
  555. "%s %d : HAL Monitor Status Ring Init Failed -- %pK",
  556. __func__, __LINE__, mon_status_srng);
  557. return work_done;
  558. }
  559. hal_soc = soc->hal_soc;
  560. qdf_assert(hal_soc);
  561. if (qdf_unlikely(hal_srng_access_start(hal_soc, mon_status_srng)))
  562. goto done;
  563. /* mon_status_ring_desc => WBM_BUFFER_RING STRUCT =>
  564. * BUFFER_ADDR_INFO STRUCT
  565. */
  566. while (qdf_likely((rxdma_mon_status_ring_entry =
  567. hal_srng_src_peek(hal_soc, mon_status_srng))
  568. && quota--)) {
  569. uint32_t rx_buf_cookie;
  570. qdf_nbuf_t status_nbuf;
  571. struct dp_rx_desc *rx_desc;
  572. uint8_t *status_buf;
  573. qdf_dma_addr_t paddr;
  574. uint64_t buf_addr;
  575. buf_addr =
  576. (HAL_RX_BUFFER_ADDR_31_0_GET(
  577. rxdma_mon_status_ring_entry) |
  578. ((uint64_t)(HAL_RX_BUFFER_ADDR_39_32_GET(
  579. rxdma_mon_status_ring_entry)) << 32));
  580. if (qdf_likely(buf_addr)) {
  581. rx_buf_cookie =
  582. HAL_RX_BUF_COOKIE_GET(
  583. rxdma_mon_status_ring_entry);
  584. rx_desc = dp_rx_cookie_2_va_mon_status(soc,
  585. rx_buf_cookie);
  586. qdf_assert(rx_desc);
  587. status_nbuf = rx_desc->nbuf;
  588. qdf_nbuf_sync_for_cpu(soc->osdev, status_nbuf,
  589. QDF_DMA_FROM_DEVICE);
  590. status_buf = qdf_nbuf_data(status_nbuf);
  591. status = hal_get_rx_status_done(status_buf);
  592. if (status != QDF_STATUS_SUCCESS) {
  593. uint32_t hp, tp;
  594. hal_get_sw_hptp(hal_soc, mon_status_srng,
  595. &tp, &hp);
  596. QDF_TRACE(QDF_MODULE_ID_DP,
  597. QDF_TRACE_LEVEL_ERROR,
  598. "[%s][%d] status not done - hp:%u, tp:%u",
  599. __func__, __LINE__, hp, tp);
  600. /* WAR for missing status: Skip status entry */
  601. hal_srng_src_get_next(hal_soc, mon_status_srng);
  602. continue;
  603. }
  604. qdf_nbuf_set_pktlen(status_nbuf, RX_BUFFER_SIZE);
  605. qdf_nbuf_unmap_single(soc->osdev, status_nbuf,
  606. QDF_DMA_FROM_DEVICE);
  607. /* Put the status_nbuf to queue */
  608. qdf_nbuf_queue_add(&pdev->rx_status_q, status_nbuf);
  609. } else {
  610. union dp_rx_desc_list_elem_t *desc_list = NULL;
  611. union dp_rx_desc_list_elem_t *tail = NULL;
  612. struct rx_desc_pool *rx_desc_pool;
  613. uint32_t num_alloc_desc;
  614. rx_desc_pool = &soc->rx_desc_status[mac_id];
  615. num_alloc_desc = dp_rx_get_free_desc_list(soc, mac_id,
  616. rx_desc_pool,
  617. 1,
  618. &desc_list,
  619. &tail);
  620. rx_desc = &desc_list->rx_desc;
  621. }
  622. status_nbuf = dp_rx_nbuf_prepare(soc, pdev);
  623. /*
  624. * qdf_nbuf alloc or map failed,
  625. * free the dp rx desc to free list,
  626. * fill in NULL dma address at current HP entry,
  627. * keep HP in mon_status_ring unchanged,
  628. * wait next time dp_rx_mon_status_srng_process
  629. * to fill in buffer at current HP.
  630. */
  631. if (qdf_unlikely(status_nbuf == NULL)) {
  632. union dp_rx_desc_list_elem_t *desc_list = NULL;
  633. union dp_rx_desc_list_elem_t *tail = NULL;
  634. struct rx_desc_pool *rx_desc_pool;
  635. rx_desc_pool = &soc->rx_desc_status[mac_id];
  636. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  637. "%s: fail to allocate or map qdf_nbuf",
  638. __func__);
  639. dp_rx_add_to_free_desc_list(&desc_list,
  640. &tail, rx_desc);
  641. dp_rx_add_desc_list_to_free_list(soc, &desc_list,
  642. &tail, mac_id, rx_desc_pool);
  643. hal_rxdma_buff_addr_info_set(
  644. rxdma_mon_status_ring_entry,
  645. 0, 0, HAL_RX_BUF_RBM_SW3_BM);
  646. work_done++;
  647. break;
  648. }
  649. paddr = qdf_nbuf_get_frag_paddr(status_nbuf, 0);
  650. rx_desc->nbuf = status_nbuf;
  651. rx_desc->in_use = 1;
  652. hal_rxdma_buff_addr_info_set(rxdma_mon_status_ring_entry,
  653. paddr, rx_desc->cookie, HAL_RX_BUF_RBM_SW3_BM);
  654. hal_srng_src_get_next(hal_soc, mon_status_srng);
  655. work_done++;
  656. }
  657. done:
  658. hal_srng_access_end(hal_soc, mon_status_srng);
  659. return work_done;
  660. }
  661. /*
  662. * dp_rx_mon_status_process() - Process monitor status ring and
  663. * TLV in status ring.
  664. *
  665. * @soc: core txrx main context
  666. * @mac_id: mac_id which is one of 3 mac_ids
  667. * @quota: No. of ring entry that can be serviced in one shot.
  668. * Return: uint32_t: No. of ring entry that is processed.
  669. */
  670. static inline uint32_t
  671. dp_rx_mon_status_process(struct dp_soc *soc, uint32_t mac_id, uint32_t quota) {
  672. uint32_t work_done;
  673. work_done = dp_rx_mon_status_srng_process(soc, mac_id, quota);
  674. quota -= work_done;
  675. dp_rx_mon_status_process_tlv(soc, mac_id, quota);
  676. return work_done;
  677. }
  678. /**
  679. * dp_mon_process() - Main monitor mode processing roution.
  680. * This call monitor status ring process then monitor
  681. * destination ring process.
  682. * Called from the bottom half (tasklet/NET_RX_SOFTIRQ)
  683. * @soc: core txrx main context
  684. * @mac_id: mac_id which is one of 3 mac_ids
  685. * @quota: No. of status ring entry that can be serviced in one shot.
  686. * Return: uint32_t: No. of ring entry that is processed.
  687. */
  688. uint32_t
  689. dp_mon_process(struct dp_soc *soc, uint32_t mac_id, uint32_t quota) {
  690. return dp_rx_mon_status_process(soc, mac_id, quota);
  691. }
  692. /**
  693. * dp_rx_pdev_mon_status_detach() - detach dp rx for status ring
  694. * @pdev: core txrx pdev context
  695. * @mac_id: mac_id/pdev_id correspondinggly for MCL and WIN
  696. *
  697. * This function will detach DP RX status ring from
  698. * main device context. will free DP Rx resources for
  699. * status ring
  700. *
  701. * Return: QDF_STATUS_SUCCESS: success
  702. * QDF_STATUS_E_RESOURCES: Error return
  703. */
  704. QDF_STATUS
  705. dp_rx_pdev_mon_status_detach(struct dp_pdev *pdev, int mac_id)
  706. {
  707. struct dp_soc *soc = pdev->soc;
  708. struct rx_desc_pool *rx_desc_pool;
  709. rx_desc_pool = &soc->rx_desc_status[mac_id];
  710. if (rx_desc_pool->pool_size != 0)
  711. dp_rx_desc_pool_free(soc, mac_id, rx_desc_pool);
  712. return QDF_STATUS_SUCCESS;
  713. }
  714. /*
  715. * dp_rx_buffers_replenish() - replenish monitor status ring with
  716. * rx nbufs called during dp rx
  717. * monitor status ring initialization
  718. *
  719. * @soc: core txrx main context
  720. * @mac_id: mac_id which is one of 3 mac_ids
  721. * @dp_rxdma_srng: dp monitor status circular ring
  722. * @rx_desc_pool; Pointer to Rx descriptor pool
  723. * @num_req_buffers: number of buffer to be replenished
  724. * @desc_list: list of descs if called from dp rx monitor status
  725. * process or NULL during dp rx initialization or
  726. * out of buffer interrupt
  727. * @tail: tail of descs list
  728. * @owner: who owns the nbuf (host, NSS etc...)
  729. * Return: return success or failure
  730. */
  731. static inline
  732. QDF_STATUS dp_rx_mon_status_buffers_replenish(struct dp_soc *dp_soc,
  733. uint32_t mac_id,
  734. struct dp_srng *dp_rxdma_srng,
  735. struct rx_desc_pool *rx_desc_pool,
  736. uint32_t num_req_buffers,
  737. union dp_rx_desc_list_elem_t **desc_list,
  738. union dp_rx_desc_list_elem_t **tail,
  739. uint8_t owner)
  740. {
  741. uint32_t num_alloc_desc;
  742. uint16_t num_desc_to_free = 0;
  743. uint32_t num_entries_avail;
  744. uint32_t count = 0;
  745. int sync_hw_ptr = 1;
  746. qdf_dma_addr_t paddr;
  747. qdf_nbuf_t rx_netbuf;
  748. void *rxdma_ring_entry;
  749. union dp_rx_desc_list_elem_t *next;
  750. void *rxdma_srng;
  751. struct dp_pdev *dp_pdev = dp_get_pdev_for_mac_id(dp_soc, mac_id);
  752. rxdma_srng = dp_rxdma_srng->hal_srng;
  753. qdf_assert(rxdma_srng);
  754. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
  755. "[%s][%d] requested %d buffers for replenish",
  756. __func__, __LINE__, num_req_buffers);
  757. /*
  758. * if desc_list is NULL, allocate the descs from freelist
  759. */
  760. if (!(*desc_list)) {
  761. num_alloc_desc = dp_rx_get_free_desc_list(dp_soc, mac_id,
  762. rx_desc_pool,
  763. num_req_buffers,
  764. desc_list,
  765. tail);
  766. if (!num_alloc_desc) {
  767. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  768. "[%s][%d] no free rx_descs in freelist",
  769. __func__, __LINE__);
  770. return QDF_STATUS_E_NOMEM;
  771. }
  772. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
  773. "[%s][%d] %d rx desc allocated", __func__, __LINE__,
  774. num_alloc_desc);
  775. num_req_buffers = num_alloc_desc;
  776. }
  777. hal_srng_access_start(dp_soc->hal_soc, rxdma_srng);
  778. num_entries_avail = hal_srng_src_num_avail(dp_soc->hal_soc,
  779. rxdma_srng, sync_hw_ptr);
  780. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
  781. "[%s][%d] no of available entries in rxdma ring: %d",
  782. __func__, __LINE__, num_entries_avail);
  783. if (num_entries_avail < num_req_buffers) {
  784. num_desc_to_free = num_req_buffers - num_entries_avail;
  785. num_req_buffers = num_entries_avail;
  786. }
  787. while (count < num_req_buffers) {
  788. rx_netbuf = dp_rx_nbuf_prepare(dp_soc, dp_pdev);
  789. /*
  790. * qdf_nbuf alloc or map failed,
  791. * keep HP in mon_status_ring unchanged,
  792. * wait dp_rx_mon_status_srng_process
  793. * to fill in buffer at current HP.
  794. */
  795. if (qdf_unlikely(rx_netbuf == NULL)) {
  796. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  797. "%s: qdf_nbuf allocate or map fail, count %d",
  798. __func__, count);
  799. break;
  800. }
  801. paddr = qdf_nbuf_get_frag_paddr(rx_netbuf, 0);
  802. next = (*desc_list)->next;
  803. rxdma_ring_entry = hal_srng_src_get_next(dp_soc->hal_soc,
  804. rxdma_srng);
  805. if (qdf_unlikely(rxdma_ring_entry == NULL)) {
  806. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
  807. "[%s][%d] rxdma_ring_entry is NULL, count - %d",
  808. __func__, __LINE__, count);
  809. qdf_nbuf_unmap_single(dp_soc->osdev, rx_netbuf,
  810. QDF_DMA_BIDIRECTIONAL);
  811. qdf_nbuf_free(rx_netbuf);
  812. break;
  813. }
  814. (*desc_list)->rx_desc.nbuf = rx_netbuf;
  815. (*desc_list)->rx_desc.in_use = 1;
  816. count++;
  817. hal_rxdma_buff_addr_info_set(rxdma_ring_entry, paddr,
  818. (*desc_list)->rx_desc.cookie, owner);
  819. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
  820. "[%s][%d] rx_desc=%pK, cookie=%d, nbuf=%pK, \
  821. paddr=%pK",
  822. __func__, __LINE__, &(*desc_list)->rx_desc,
  823. (*desc_list)->rx_desc.cookie, rx_netbuf,
  824. (void *)paddr);
  825. *desc_list = next;
  826. }
  827. hal_srng_access_end(dp_soc->hal_soc, rxdma_srng);
  828. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
  829. "successfully replenished %d buffers", num_req_buffers);
  830. QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
  831. "%d rx desc added back to free list", num_desc_to_free);
  832. /*
  833. * add any available free desc back to the free list
  834. */
  835. if (*desc_list) {
  836. dp_rx_add_desc_list_to_free_list(dp_soc, desc_list, tail,
  837. mac_id, rx_desc_pool);
  838. }
  839. return QDF_STATUS_SUCCESS;
  840. }
  841. /**
  842. * dp_rx_pdev_mon_status_attach() - attach DP RX monitor status ring
  843. * @pdev: core txrx pdev context
  844. * @ring_id: ring number
  845. * This function will attach a DP RX monitor status ring into pDEV
  846. * and replenish monitor status ring with buffer.
  847. *
  848. * Return: QDF_STATUS_SUCCESS: success
  849. * QDF_STATUS_E_RESOURCES: Error return
  850. */
  851. QDF_STATUS
  852. dp_rx_pdev_mon_status_attach(struct dp_pdev *pdev, int ring_id) {
  853. struct dp_soc *soc = pdev->soc;
  854. union dp_rx_desc_list_elem_t *desc_list = NULL;
  855. union dp_rx_desc_list_elem_t *tail = NULL;
  856. struct dp_srng *mon_status_ring;
  857. uint32_t num_entries;
  858. struct rx_desc_pool *rx_desc_pool;
  859. QDF_STATUS status;
  860. int mac_for_pdev = dp_get_mac_id_for_mac(soc, ring_id);
  861. mon_status_ring = &pdev->rxdma_mon_status_ring[mac_for_pdev];
  862. num_entries = mon_status_ring->num_entries;
  863. rx_desc_pool = &soc->rx_desc_status[ring_id];
  864. dp_info("Mon RX Status Pool[%d] entries=%d",
  865. ring_id, num_entries);
  866. status = dp_rx_desc_pool_alloc(soc, ring_id, num_entries + 1,
  867. rx_desc_pool);
  868. if (!QDF_IS_STATUS_SUCCESS(status))
  869. return status;
  870. dp_debug("Mon RX Status Buffers Replenish ring_id=%d", ring_id);
  871. status = dp_rx_mon_status_buffers_replenish(soc, ring_id,
  872. mon_status_ring,
  873. rx_desc_pool,
  874. num_entries,
  875. &desc_list, &tail,
  876. HAL_RX_BUF_RBM_SW3_BM);
  877. if (!QDF_IS_STATUS_SUCCESS(status))
  878. return status;
  879. qdf_nbuf_queue_init(&pdev->rx_status_q);
  880. pdev->mon_ppdu_status = DP_PPDU_STATUS_START;
  881. qdf_mem_zero(&(pdev->ppdu_info.rx_status),
  882. sizeof(pdev->ppdu_info.rx_status));
  883. qdf_mem_zero(&pdev->rx_mon_stats,
  884. sizeof(pdev->rx_mon_stats));
  885. dp_rx_mon_init_dbg_ppdu_stats(&pdev->ppdu_info,
  886. &pdev->rx_mon_stats);
  887. return QDF_STATUS_SUCCESS;
  888. }