blob: 8c6941b2049773c3af6e00e0bca0529fe8a5c08f [file] [log] [blame]
Kai Chen6eca1a62017-01-12 10:17:53 -08001/*
Pranita Solankeed0aba62018-01-12 19:14:31 +05302 * Copyright (c) 2017-2018 The Linux Foundation. All rights reserved.
Kai Chen6eca1a62017-01-12 10:17:53 -08003 *
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 */
Balamurugan Mahalingamd0159642018-07-11 15:02:29 +053018#include "hal_hw_headers.h"
Kai Chen6eca1a62017-01-12 10:17:53 -080019#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"
Kai Chen6eca1a62017-01-12 10:17:53 -080027#include "dp_rx_mon.h"
Keyur Parekhfad6d082017-05-07 08:54:47 -070028#include "dp_internal.h"
29#include "qdf_mem.h" /* qdf_mem_malloc,free */
Kai Chen6eca1a62017-01-12 10:17:53 -080030
ydb247452018-08-08 00:23:16 +053031#ifdef FEATURE_PERPKT_INFO
32#include "dp_ratetable.h"
33#endif
34
Kai Chen6eca1a62017-01-12 10:17:53 -080035/**
Anish Nataraj38a29562017-08-18 19:41:17 +053036* dp_rx_populate_cdp_indication_ppdu() - Populate cdp rx indication structure
Soumya Bhat560f90c2018-03-30 13:53:26 +053037* @pdev: pdev ctx
Anish Nataraj38a29562017-08-18 19:41:17 +053038* @ppdu_info: ppdu info structure from ppdu ring
39* @ppdu_nbuf: qdf nbuf abstraction for linux skb
40*
41* Return: none
42*/
43#ifdef FEATURE_PERPKT_INFO
44static inline void
Soumya Bhat560f90c2018-03-30 13:53:26 +053045dp_rx_populate_cdp_indication_ppdu(struct dp_pdev *pdev,
Anish Nataraj38a29562017-08-18 19:41:17 +053046 struct hal_rx_ppdu_info *ppdu_info,
47 qdf_nbuf_t ppdu_nbuf)
48{
49 struct dp_peer *peer;
Soumya Bhat560f90c2018-03-30 13:53:26 +053050 struct dp_soc *soc = pdev->soc;
Anish Nataraj38a29562017-08-18 19:41:17 +053051 struct dp_ast_entry *ast_entry;
52 struct cdp_rx_indication_ppdu *cdp_rx_ppdu;
53 uint32_t ast_index;
54
55 cdp_rx_ppdu = (struct cdp_rx_indication_ppdu *)ppdu_nbuf->data;
56
Pamidipati, Vijayd7eb83e2017-09-20 21:19:56 +053057 cdp_rx_ppdu->first_data_seq_ctrl =
58 ppdu_info->rx_status.first_data_seq_ctrl;
Anish Nataraj38a29562017-08-18 19:41:17 +053059 cdp_rx_ppdu->ppdu_id = ppdu_info->com_info.ppdu_id;
nobelj9ab76e22018-02-13 18:10:54 -080060 cdp_rx_ppdu->length = ppdu_info->rx_status.ppdu_len;
Anish Nataraj38a29562017-08-18 19:41:17 +053061 cdp_rx_ppdu->duration = ppdu_info->rx_status.duration;
62 cdp_rx_ppdu->u.bw = ppdu_info->rx_status.bw;
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +053063 cdp_rx_ppdu->tcp_msdu_count = ppdu_info->rx_status.tcp_msdu_count;
64 cdp_rx_ppdu->udp_msdu_count = ppdu_info->rx_status.udp_msdu_count;
65 cdp_rx_ppdu->other_msdu_count = ppdu_info->rx_status.other_msdu_count;
Anish Nataraj38a29562017-08-18 19:41:17 +053066 cdp_rx_ppdu->u.nss = ppdu_info->rx_status.nss;
67 cdp_rx_ppdu->u.mcs = ppdu_info->rx_status.mcs;
Keyur Parekh49cdc742018-05-09 10:59:03 -070068 if ((ppdu_info->rx_status.sgi == VHT_SGI_NYSM) &&
69 (ppdu_info->rx_status.preamble_type == HAL_RX_PKT_TYPE_11AC))
70 cdp_rx_ppdu->u.gi = CDP_SGI_0_4_US;
71 else
72 cdp_rx_ppdu->u.gi = ppdu_info->rx_status.sgi;
Anish Nataraj50347012018-03-06 21:12:45 +053073 cdp_rx_ppdu->u.ldpc = ppdu_info->rx_status.ldpc;
Anish Nataraj38a29562017-08-18 19:41:17 +053074 cdp_rx_ppdu->u.preamble = ppdu_info->rx_status.preamble_type;
Anish Nataraj28490c42018-01-19 19:34:54 +053075 cdp_rx_ppdu->u.ppdu_type = ppdu_info->rx_status.reception_type;
Anish Nataraj38a29562017-08-18 19:41:17 +053076 cdp_rx_ppdu->rssi = ppdu_info->rx_status.rssi_comb;
Anish Nataraj57614da2018-02-07 23:04:24 +053077 cdp_rx_ppdu->timestamp = ppdu_info->rx_status.tsft;
78 cdp_rx_ppdu->channel = ppdu_info->rx_status.chan_num;
nobeljd8039592018-03-13 16:59:42 -070079 cdp_rx_ppdu->beamformed = ppdu_info->rx_status.beamformed;
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +053080 cdp_rx_ppdu->num_msdu = (cdp_rx_ppdu->tcp_msdu_count +
81 cdp_rx_ppdu->udp_msdu_count +
82 cdp_rx_ppdu->other_msdu_count);
Pranita Solankeed0aba62018-01-12 19:14:31 +053083
Anish Nataraj57614da2018-02-07 23:04:24 +053084 cdp_rx_ppdu->num_mpdu = ppdu_info->com_info.mpdu_cnt_fcs_ok;
Pranita Solankeed0aba62018-01-12 19:14:31 +053085 if (ppdu_info->com_info.mpdu_cnt_fcs_ok > 1)
86 cdp_rx_ppdu->is_ampdu = 1;
87 else
88 cdp_rx_ppdu->is_ampdu = 0;
Anish Nataraj45d282c2017-12-30 01:03:38 +053089
90 cdp_rx_ppdu->tid = ppdu_info->rx_status.tid;
Anish Nataraj57614da2018-02-07 23:04:24 +053091 cdp_rx_ppdu->lsig_a = ppdu_info->rx_status.rate;
Soumya Bhat560f90c2018-03-30 13:53:26 +053092
93 ast_index = ppdu_info->rx_status.ast_index;
94 if (ast_index > (WLAN_UMAC_PSOC_MAX_PEERS * 2)) {
95 cdp_rx_ppdu->peer_id = HTT_INVALID_PEER;
96 return;
97 }
98
99 ast_entry = soc->ast_table[ast_index];
100 if (!ast_entry) {
101 cdp_rx_ppdu->peer_id = HTT_INVALID_PEER;
102 return;
103 }
104 peer = ast_entry->peer;
105 if (!peer || peer->peer_ids[0] == HTT_INVALID_PEER) {
106 cdp_rx_ppdu->peer_id = HTT_INVALID_PEER;
107 return;
108 }
109
110 qdf_mem_copy(cdp_rx_ppdu->mac_addr,
111 peer->mac_addr.raw, DP_MAC_ADDR_LEN);
112 cdp_rx_ppdu->peer_id = peer->peer_ids[0];
113 cdp_rx_ppdu->vdev_id = peer->vdev->vdev_id;
Anish Nataraj38a29562017-08-18 19:41:17 +0530114}
115#else
116static inline void
Soumya Bhat560f90c2018-03-30 13:53:26 +0530117dp_rx_populate_cdp_indication_ppdu(struct dp_pdev *pdev,
Anish Nataraj38a29562017-08-18 19:41:17 +0530118 struct hal_rx_ppdu_info *ppdu_info,
119 qdf_nbuf_t ppdu_nbuf)
120{
121}
122#endif
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530123/**
124 * dp_rx_stats_update() - Update per-peer statistics
125 * @soc: Datapath SOC handle
126 * @peer: Datapath peer handle
127 * @ppdu: PPDU Descriptor
128 *
129 * Return: None
130 */
131#ifdef FEATURE_PERPKT_INFO
ydb247452018-08-08 00:23:16 +0530132static inline void dp_rx_rate_stats_update(struct dp_peer *peer,
133 struct cdp_rx_indication_ppdu *ppdu)
134{
135 uint32_t ratekbps = 0;
136 uint32_t ppdu_rx_rate = 0;
137 uint32_t nss = 0;
138
139 if (!peer || !ppdu)
140 return;
141
142 if (ppdu->u.nss == 0)
143 nss = 0;
144 else
145 nss = ppdu->u.nss - 1;
146
Anish Nataraj376d9b12018-08-13 14:12:01 +0530147 ratekbps = dp_getrateindex(ppdu->u.gi,
148 ppdu->u.mcs,
ydb247452018-08-08 00:23:16 +0530149 nss,
150 ppdu->u.preamble,
151 ppdu->u.bw);
152
153 if (!ratekbps)
154 return;
155
156 DP_STATS_UPD(peer, rx.last_rx_rate, ratekbps);
157 dp_ath_rate_lpf(peer->stats.rx.avg_rx_rate, ratekbps);
158 ppdu_rx_rate = dp_ath_rate_out(peer->stats.rx.avg_rx_rate);
159 DP_STATS_UPD(peer, rx.rnd_avg_rx_rate, ppdu_rx_rate);
160
161 if (peer->vdev)
162 peer->vdev->stats.rx.last_rx_rate = ratekbps;
163}
164
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530165static void dp_rx_stats_update(struct dp_soc *soc, struct dp_peer *peer,
166 struct cdp_rx_indication_ppdu *ppdu)
167{
168 struct dp_pdev *pdev = NULL;
Anish Nataraj28490c42018-01-19 19:34:54 +0530169 uint8_t mcs, preamble, ac = 0;
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530170 uint16_t num_msdu;
171
172 mcs = ppdu->u.mcs;
173 preamble = ppdu->u.preamble;
174 num_msdu = ppdu->num_msdu;
175
176 if (!peer)
177 return;
178
179 pdev = peer->vdev->pdev;
180
Subhranil Choudhuryeea67382018-01-18 20:24:36 +0530181 dp_mark_peer_inact(peer, false);
182
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530183 if (soc->process_rx_status)
184 return;
Pranita Solankefc2ff392017-12-15 19:25:13 +0530185
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530186 DP_STATS_UPD(peer, rx.rssi, ppdu->rssi);
Pranita Solankeed0aba62018-01-12 19:14:31 +0530187
188 if ((preamble == DOT11_A) || (preamble == DOT11_B))
189 ppdu->u.nss = 1;
190
191 if (ppdu->u.nss)
192 DP_STATS_INC(peer, rx.nss[ppdu->u.nss - 1], num_msdu);
193
Pranita Solankea12b4b32017-11-20 23:04:14 +0530194 DP_STATS_INC(peer, rx.sgi_count[ppdu->u.gi], num_msdu);
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530195 DP_STATS_INC(peer, rx.bw[ppdu->u.bw], num_msdu);
Anish Nataraj28490c42018-01-19 19:34:54 +0530196 DP_STATS_INC(peer, rx.reception_type[ppdu->u.ppdu_type], num_msdu);
Pranita Solankea12b4b32017-11-20 23:04:14 +0530197 DP_STATS_INCC(peer, rx.ampdu_cnt, num_msdu, ppdu->is_ampdu);
198 DP_STATS_INCC(peer, rx.non_ampdu_cnt, num_msdu, !(ppdu->is_ampdu));
199 DP_STATS_UPD(peer, rx.rx_rate, mcs);
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530200 DP_STATS_INCC(peer,
Pranita Solankeed0aba62018-01-12 19:14:31 +0530201 rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530202 ((mcs >= MAX_MCS_11A) && (preamble == DOT11_A)));
203 DP_STATS_INCC(peer,
204 rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
Pranita Solankea12b4b32017-11-20 23:04:14 +0530205 ((mcs < MAX_MCS_11A) && (preamble == DOT11_A)));
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530206 DP_STATS_INCC(peer,
Pranita Solankeed0aba62018-01-12 19:14:31 +0530207 rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530208 ((mcs >= MAX_MCS_11B) && (preamble == DOT11_B)));
209 DP_STATS_INCC(peer,
210 rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
Pranita Solankea12b4b32017-11-20 23:04:14 +0530211 ((mcs < MAX_MCS_11B) && (preamble == DOT11_B)));
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530212 DP_STATS_INCC(peer,
Pranita Solankeed0aba62018-01-12 19:14:31 +0530213 rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530214 ((mcs >= MAX_MCS_11A) && (preamble == DOT11_N)));
215 DP_STATS_INCC(peer,
216 rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
Pranita Solankea12b4b32017-11-20 23:04:14 +0530217 ((mcs < MAX_MCS_11A) && (preamble == DOT11_N)));
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530218 DP_STATS_INCC(peer,
Pranita Solankeed0aba62018-01-12 19:14:31 +0530219 rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530220 ((mcs >= MAX_MCS_11AC) && (preamble == DOT11_AC)));
221 DP_STATS_INCC(peer,
222 rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
223 ((mcs < MAX_MCS_11AC) && (preamble == DOT11_AC)));
224 DP_STATS_INCC(peer,
Pranita Solankeed0aba62018-01-12 19:14:31 +0530225 rx.pkt_type[preamble].mcs_count[MAX_MCS - 1], num_msdu,
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530226 ((mcs >= (MAX_MCS - 1)) && (preamble == DOT11_AX)));
227 DP_STATS_INCC(peer,
228 rx.pkt_type[preamble].mcs_count[mcs], num_msdu,
229 ((mcs < (MAX_MCS - 1)) && (preamble == DOT11_AX)));
Anish Nataraj28490c42018-01-19 19:34:54 +0530230 /*
231 * If invalid TID, it could be a non-qos frame, hence do not update
232 * any AC counters
233 */
234 ac = TID_TO_WME_AC(ppdu->tid);
235 if (ppdu->tid != HAL_TID_INVALID)
236 DP_STATS_INC(peer, rx.wme_ac_type[ac], num_msdu);
Amir Patel52c6b732018-08-03 12:13:22 +0530237 dp_peer_stats_notify(peer);
238 DP_STATS_UPD(peer, rx.last_rssi, ppdu->rssi);
Anish Nataraj28490c42018-01-19 19:34:54 +0530239
ydb247452018-08-08 00:23:16 +0530240 dp_rx_rate_stats_update(peer, ppdu);
241
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530242 if (soc->cdp_soc.ol_ops->update_dp_stats) {
Akshay Kosigi1a9c6d12018-04-26 00:54:23 +0530243 soc->cdp_soc.ol_ops->update_dp_stats(pdev->ctrl_pdev,
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530244 &peer->stats, ppdu->peer_id,
245 UPDATE_PEER_STATS);
Pranita Solankefc2ff392017-12-15 19:25:13 +0530246
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530247 }
248}
249#endif
Anish Nataraj38a29562017-08-18 19:41:17 +0530250
251/**
Soumya Bhat7422db82017-12-15 13:48:53 +0530252 * dp_rx_handle_mcopy_mode() - Allocate and deliver first MSDU payload
Pranita Solankefc2ff392017-12-15 19:25:13 +0530253 * @soc: core txrx main context
254 * @pdev: pdev strcuture
255 * @ppdu_info: structure for rx ppdu ring
256 *
257 * Return: QDF_STATUS_SUCCESS - If nbuf to be freed by caller
258 * QDF_STATUS_E_ALREADY - If nbuf not to be freed by caller
Soumya Bhat7422db82017-12-15 13:48:53 +0530259 */
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530260#ifdef FEATURE_PERPKT_INFO
261static inline QDF_STATUS
Soumya Bhat7422db82017-12-15 13:48:53 +0530262dp_rx_handle_mcopy_mode(struct dp_soc *soc, struct dp_pdev *pdev,
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530263 struct hal_rx_ppdu_info *ppdu_info, qdf_nbuf_t nbuf)
264{
265 uint8_t size = 0;
266
Soumya Bhatdc8aca82018-03-13 14:10:24 +0530267 if (ppdu_info->msdu_info.first_msdu_payload == NULL)
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530268 return QDF_STATUS_SUCCESS;
269
Soumya Bhat2f54de22018-02-21 09:54:28 +0530270 if (pdev->m_copy_id.rx_ppdu_id == ppdu_info->com_info.ppdu_id)
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530271 return QDF_STATUS_SUCCESS;
272
Soumya Bhat2f54de22018-02-21 09:54:28 +0530273 pdev->m_copy_id.rx_ppdu_id = ppdu_info->com_info.ppdu_id;
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530274
Soumya Bhat2f54de22018-02-21 09:54:28 +0530275 /* Include 2 bytes of reserved space appended to the msdu payload */
Soumya Bhatdc8aca82018-03-13 14:10:24 +0530276 size = (ppdu_info->msdu_info.first_msdu_payload -
277 qdf_nbuf_data(nbuf)) + 2;
278 ppdu_info->msdu_info.first_msdu_payload = NULL;
Soumya Bhat7422db82017-12-15 13:48:53 +0530279
280 if (qdf_nbuf_pull_head(nbuf, size) == NULL)
281 return QDF_STATUS_SUCCESS;
282
Soumya Bhatdc8aca82018-03-13 14:10:24 +0530283 /* only retain RX MSDU payload in the skb */
284 qdf_nbuf_trim_tail(nbuf, qdf_nbuf_len(nbuf) -
285 ppdu_info->msdu_info.payload_len);
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530286 dp_wdi_event_handler(WDI_EVENT_RX_DATA, soc,
287 nbuf, HTT_INVALID_PEER, WDI_NO_VAL, pdev->pdev_id);
288 return QDF_STATUS_E_ALREADY;
289}
290#else
291static inline QDF_STATUS
Soumya Bhat7422db82017-12-15 13:48:53 +0530292dp_rx_handle_mcopy_mode(struct dp_soc *soc, struct dp_pdev *pdev,
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530293 struct hal_rx_ppdu_info *ppdu_info, qdf_nbuf_t nbuf)
294{
295 return QDF_STATUS_SUCCESS;
296}
297#endif
298
299
300/**
Anish Nataraj38a29562017-08-18 19:41:17 +0530301* dp_rx_handle_ppdu_stats() - Allocate and deliver ppdu stats to cdp layer
302* @soc: core txrx main context
303* @pdev: pdev strcuture
304* @ppdu_info: structure for rx ppdu ring
305*
306* Return: none
307*/
308#ifdef FEATURE_PERPKT_INFO
309static inline void
310dp_rx_handle_ppdu_stats(struct dp_soc *soc, struct dp_pdev *pdev,
311 struct hal_rx_ppdu_info *ppdu_info)
312{
313 qdf_nbuf_t ppdu_nbuf;
314 struct dp_peer *peer;
315 struct cdp_rx_indication_ppdu *cdp_rx_ppdu;
316
Anish Nataraj28490c42018-01-19 19:34:54 +0530317 /*
318 * Do not allocate if fcs error,
319 * ast idx invalid / fctl invalid
320 */
Anish Nataraj28490c42018-01-19 19:34:54 +0530321 if (ppdu_info->com_info.mpdu_cnt_fcs_ok == 0)
322 return;
323
Chaithanya Garrepalli95fc62f2018-07-24 18:52:27 +0530324 if (ppdu_info->nac_info.fc_valid &&
325 ppdu_info->nac_info.to_ds_flag &&
326 ppdu_info->nac_info.mac_addr2_valid) {
327 struct dp_neighbour_peer *peer = NULL;
328 uint8_t rssi = ppdu_info->rx_status.rssi_comb;
329
330 qdf_spin_lock_bh(&pdev->neighbour_peer_mutex);
331 if (pdev->neighbour_peers_added) {
332 TAILQ_FOREACH(peer, &pdev->neighbour_peers_list,
333 neighbour_peer_list_elem) {
334 if (!qdf_mem_cmp(&peer->neighbour_peers_macaddr,
335 &ppdu_info->nac_info.mac_addr2,
336 DP_MAC_ADDR_LEN)) {
337 peer->rssi = rssi;
338 break;
339 }
340 }
341 }
342 qdf_spin_unlock_bh(&pdev->neighbour_peer_mutex);
343 }
344
Soumya Bhat560f90c2018-03-30 13:53:26 +0530345 if (!pdev->mcopy_mode) {
346 if (!ppdu_info->rx_status.frame_control_info_valid)
347 return;
Anish Nataraj28490c42018-01-19 19:34:54 +0530348
Soumya Bhat560f90c2018-03-30 13:53:26 +0530349 if (ppdu_info->rx_status.ast_index == HAL_AST_IDX_INVALID)
350 return;
351 }
Tallapragada Kalyana867edf2017-11-14 12:26:41 +0530352 ppdu_nbuf = qdf_nbuf_alloc(soc->osdev,
Anish Nataraj38a29562017-08-18 19:41:17 +0530353 sizeof(struct hal_rx_ppdu_info), 0, 0, FALSE);
354 if (ppdu_nbuf) {
Soumya Bhat560f90c2018-03-30 13:53:26 +0530355 dp_rx_populate_cdp_indication_ppdu(pdev, ppdu_info, ppdu_nbuf);
Anish Nataraj38a29562017-08-18 19:41:17 +0530356 qdf_nbuf_put_tail(ppdu_nbuf,
357 sizeof(struct cdp_rx_indication_ppdu));
358 cdp_rx_ppdu = (struct cdp_rx_indication_ppdu *)ppdu_nbuf->data;
359
360 peer = dp_peer_find_by_id(soc, cdp_rx_ppdu->peer_id);
361 if (peer && cdp_rx_ppdu->peer_id != HTT_INVALID_PEER) {
Pamidipati, Vijay57a435a2017-10-17 11:03:39 +0530362 dp_rx_stats_update(soc, peer, cdp_rx_ppdu);
Anish Nataraj38a29562017-08-18 19:41:17 +0530363 dp_wdi_event_handler(WDI_EVENT_RX_PPDU_DESC, soc,
364 ppdu_nbuf, cdp_rx_ppdu->peer_id,
365 WDI_NO_VAL, pdev->pdev_id);
Soumya Bhat2f54de22018-02-21 09:54:28 +0530366 } else if (pdev->mcopy_mode) {
367 dp_wdi_event_handler(WDI_EVENT_RX_PPDU_DESC, soc,
368 ppdu_nbuf, HTT_INVALID_PEER,
369 WDI_NO_VAL, pdev->pdev_id);
370 } else {
Anish Nataraj38a29562017-08-18 19:41:17 +0530371 qdf_nbuf_free(ppdu_nbuf);
Soumya Bhat2f54de22018-02-21 09:54:28 +0530372 }
Anish Nataraj38a29562017-08-18 19:41:17 +0530373 }
374}
375#else
376static inline void
377dp_rx_handle_ppdu_stats(struct dp_soc *soc, struct dp_pdev *pdev,
378 struct hal_rx_ppdu_info *ppdu_info)
379{
380}
381#endif
382
383/**
Kai Chen6eca1a62017-01-12 10:17:53 -0800384* dp_rx_mon_status_process_tlv() - Process status TLV in status
385* buffer on Rx status Queue posted by status SRNG processing.
386* @soc: core txrx main context
387* @mac_id: mac_id which is one of 3 mac_ids _ring
388*
389* Return: none
390*/
391static inline void
Karunakar Dasineni40555682017-03-26 22:44:39 -0700392dp_rx_mon_status_process_tlv(struct dp_soc *soc, uint32_t mac_id,
393 uint32_t quota)
394{
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800395 struct dp_pdev *pdev = dp_get_pdev_for_mac_id(soc, mac_id);
Kai Chen6eca1a62017-01-12 10:17:53 -0800396 struct hal_rx_ppdu_info *ppdu_info;
397 qdf_nbuf_t status_nbuf;
398 uint8_t *rx_tlv;
399 uint8_t *rx_tlv_start;
Kai Chenad516ae2017-09-08 18:35:47 -0700400 uint32_t tlv_status = HAL_TLV_STATUS_BUF_DONE;
Soumya Bhat2f54de22018-02-21 09:54:28 +0530401 QDF_STATUS m_copy_status = QDF_STATUS_SUCCESS;
Kai Chen783e0382018-01-25 16:29:08 -0800402 struct cdp_pdev_mon_stats *rx_mon_stats;
Kai Chen6eca1a62017-01-12 10:17:53 -0800403
Kai Chen6eca1a62017-01-12 10:17:53 -0800404 ppdu_info = &pdev->ppdu_info;
Kai Chen783e0382018-01-25 16:29:08 -0800405 rx_mon_stats = &pdev->rx_mon_stats;
Kai Chen6eca1a62017-01-12 10:17:53 -0800406
407 if (pdev->mon_ppdu_status != DP_PPDU_STATUS_START)
408 return;
409
410 while (!qdf_nbuf_is_queue_empty(&pdev->rx_status_q)) {
411
412 status_nbuf = qdf_nbuf_queue_remove(&pdev->rx_status_q);
413 rx_tlv = qdf_nbuf_data(status_nbuf);
414 rx_tlv_start = rx_tlv;
Venkata Sharath Chandra Manchala5a6f4292017-11-03 14:57:41 -0700415
Keyur Parekhfad6d082017-05-07 08:54:47 -0700416#ifndef REMOVE_PKT_LOG
Venkata Sharath Chandra Manchala5a6f4292017-11-03 14:57:41 -0700417#if defined(WDI_EVENT_ENABLE)
Keyur Parekhfad6d082017-05-07 08:54:47 -0700418 dp_wdi_event_handler(WDI_EVENT_RX_DESC, soc,
Keyur Parekhdb0fa142017-07-13 19:40:22 -0700419 status_nbuf, HTT_INVALID_PEER, WDI_NO_VAL, mac_id);
Keyur Parekhfad6d082017-05-07 08:54:47 -0700420#endif
421#endif
Soumya Bhat2f54de22018-02-21 09:54:28 +0530422 if ((pdev->monitor_vdev != NULL) || (pdev->enhanced_stats_en) ||
423 pdev->mcopy_mode) {
Kai Chen6eca1a62017-01-12 10:17:53 -0800424
Keyur Parekhfad6d082017-05-07 08:54:47 -0700425 do {
426 tlv_status = hal_rx_status_get_tlv_info(rx_tlv,
Balamurugan Mahalingamd0159642018-07-11 15:02:29 +0530427 ppdu_info, pdev->soc->hal_soc);
Kai Chen783e0382018-01-25 16:29:08 -0800428
429 dp_rx_mon_update_dbg_ppdu_stats(ppdu_info,
430 rx_mon_stats);
431
Keyur Parekhfad6d082017-05-07 08:54:47 -0700432 rx_tlv = hal_rx_status_get_next_tlv(rx_tlv);
Kai Chen6eca1a62017-01-12 10:17:53 -0800433
Keyur Parekhfad6d082017-05-07 08:54:47 -0700434 if ((rx_tlv - rx_tlv_start) >= RX_BUFFER_SIZE)
435 break;
Kai Chen6eca1a62017-01-12 10:17:53 -0800436
Keyur Parekhfad6d082017-05-07 08:54:47 -0700437 } while (tlv_status == HAL_TLV_STATUS_PPDU_NOT_DONE);
438 }
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530439
Soumya Bhat7422db82017-12-15 13:48:53 +0530440 if (pdev->mcopy_mode) {
Soumya Bhat2f54de22018-02-21 09:54:28 +0530441 m_copy_status = dp_rx_handle_mcopy_mode(soc,
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530442 pdev, ppdu_info, status_nbuf);
Soumya Bhat2f54de22018-02-21 09:54:28 +0530443 if (m_copy_status == QDF_STATUS_SUCCESS)
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530444 qdf_nbuf_free(status_nbuf);
445 } else {
446 qdf_nbuf_free(status_nbuf);
447 }
Kai Chen6eca1a62017-01-12 10:17:53 -0800448
chenguo1b880462018-07-11 15:34:56 +0800449 if (tlv_status == HAL_TLV_STATUS_PPDU_NON_STD_DONE) {
450 dp_rx_mon_deliver_non_std(soc, mac_id);
451 } else if (tlv_status == HAL_TLV_STATUS_PPDU_DONE) {
Kai Chen783e0382018-01-25 16:29:08 -0800452 rx_mon_stats->status_ppdu_done++;
Soumya Bhat5c60deb2017-12-12 16:42:04 +0530453 if (pdev->enhanced_stats_en ||
Soumya Bhat7422db82017-12-15 13:48:53 +0530454 pdev->mcopy_mode)
Anish Nataraj38a29562017-08-18 19:41:17 +0530455 dp_rx_handle_ppdu_stats(soc, pdev, ppdu_info);
Soumya Bhat6fee59c2017-10-31 13:12:37 +0530456
nobelj1c31fee2018-03-21 11:47:05 -0700457 pdev->mon_ppdu_status = DP_PPDU_STATUS_DONE;
458 dp_rx_mon_dest_process(soc, mac_id, quota);
Kai Chencbe4c342017-06-12 20:06:35 -0700459 pdev->mon_ppdu_status = DP_PPDU_STATUS_START;
Kai Chen6eca1a62017-01-12 10:17:53 -0800460 }
461 }
462 return;
463}
464
465/*
466 * dp_rx_mon_status_srng_process() - Process monitor status ring
467 * post the status ring buffer to Rx status Queue for later
468 * processing when status ring is filled with status TLV.
469 * Allocate a new buffer to status ring if the filled buffer
470 * is posted.
471 *
472 * @soc: core txrx main context
473 * @mac_id: mac_id which is one of 3 mac_ids
474 * @quota: No. of ring entry that can be serviced in one shot.
475
476 * Return: uint32_t: No. of ring entry that is processed.
477 */
478static inline uint32_t
479dp_rx_mon_status_srng_process(struct dp_soc *soc, uint32_t mac_id,
480 uint32_t quota)
481{
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800482 struct dp_pdev *pdev = dp_get_pdev_for_mac_id(soc, mac_id);
Kai Chen6eca1a62017-01-12 10:17:53 -0800483 void *hal_soc;
484 void *mon_status_srng;
485 void *rxdma_mon_status_ring_entry;
486 QDF_STATUS status;
487 uint32_t work_done = 0;
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800488 int mac_for_pdev = dp_get_mac_id_for_mac(soc, mac_id);
Kai Chen6eca1a62017-01-12 10:17:53 -0800489
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800490 mon_status_srng = pdev->rxdma_mon_status_ring[mac_for_pdev].hal_srng;
Kai Chen6eca1a62017-01-12 10:17:53 -0800491
492 qdf_assert(mon_status_srng);
Houston Hoffman648a9182017-05-21 23:27:50 -0700493 if (!mon_status_srng || !hal_srng_initialized(mon_status_srng)) {
494
495 QDF_TRACE(QDF_MODULE_ID_TXRX, QDF_TRACE_LEVEL_ERROR,
Aditya Sathishded018e2018-07-02 16:25:21 +0530496 "%s %d : HAL Monitor Status Ring Init Failed -- %pK",
Houston Hoffman648a9182017-05-21 23:27:50 -0700497 __func__, __LINE__, mon_status_srng);
498 return work_done;
499 }
Kai Chen6eca1a62017-01-12 10:17:53 -0800500
501 hal_soc = soc->hal_soc;
502
503 qdf_assert(hal_soc);
504
505 if (qdf_unlikely(hal_srng_access_start(hal_soc, mon_status_srng)))
506 goto done;
507
508 /* mon_status_ring_desc => WBM_BUFFER_RING STRUCT =>
509 * BUFFER_ADDR_INFO STRUCT
510 */
511 while (qdf_likely((rxdma_mon_status_ring_entry =
512 hal_srng_src_peek(hal_soc, mon_status_srng))
513 && quota--)) {
514 uint32_t rx_buf_cookie;
515 qdf_nbuf_t status_nbuf;
516 struct dp_rx_desc *rx_desc;
517 uint8_t *status_buf;
518 qdf_dma_addr_t paddr;
519 uint64_t buf_addr;
520
521 buf_addr =
522 (HAL_RX_BUFFER_ADDR_31_0_GET(
523 rxdma_mon_status_ring_entry) |
524 ((uint64_t)(HAL_RX_BUFFER_ADDR_39_32_GET(
525 rxdma_mon_status_ring_entry)) << 32));
526
527 if (qdf_likely(buf_addr)) {
528
529 rx_buf_cookie =
530 HAL_RX_BUF_COOKIE_GET(
531 rxdma_mon_status_ring_entry);
532 rx_desc = dp_rx_cookie_2_va_mon_status(soc,
533 rx_buf_cookie);
534
535 qdf_assert(rx_desc);
536
537 status_nbuf = rx_desc->nbuf;
538
539 qdf_nbuf_sync_for_cpu(soc->osdev, status_nbuf,
540 QDF_DMA_FROM_DEVICE);
541
542 status_buf = qdf_nbuf_data(status_nbuf);
543
544 status = hal_get_rx_status_done(status_buf);
545
546 if (status != QDF_STATUS_SUCCESS) {
Karunakar Dasineni37995ac2018-02-06 12:37:30 -0800547 uint32_t hp, tp;
548 hal_api_get_tphp(hal_soc, mon_status_srng,
549 &tp, &hp);
Kai Chen6eca1a62017-01-12 10:17:53 -0800550 QDF_TRACE(QDF_MODULE_ID_DP,
Karunakar Dasineni37995ac2018-02-06 12:37:30 -0800551 QDF_TRACE_LEVEL_ERROR,
552 "[%s][%d] status not done - hp:%u, tp:%u",
553 __func__, __LINE__, hp, tp);
554 /* WAR for missing status: Skip status entry */
555 hal_srng_src_get_next(hal_soc, mon_status_srng);
556 continue;
Kai Chen6eca1a62017-01-12 10:17:53 -0800557 }
558 qdf_nbuf_set_pktlen(status_nbuf, RX_BUFFER_SIZE);
559
560 qdf_nbuf_unmap_single(soc->osdev, status_nbuf,
561 QDF_DMA_FROM_DEVICE);
562
563 /* Put the status_nbuf to queue */
564 qdf_nbuf_queue_add(&pdev->rx_status_q, status_nbuf);
565
566 } else {
567 union dp_rx_desc_list_elem_t *desc_list = NULL;
568 union dp_rx_desc_list_elem_t *tail = NULL;
569 struct rx_desc_pool *rx_desc_pool;
570 uint32_t num_alloc_desc;
571
572 rx_desc_pool = &soc->rx_desc_status[mac_id];
573
574 num_alloc_desc = dp_rx_get_free_desc_list(soc, mac_id,
575 rx_desc_pool,
576 1,
577 &desc_list,
578 &tail);
579
580 rx_desc = &desc_list->rx_desc;
581 }
582
jinweic chenc3546322018-02-02 15:03:41 +0800583 status_nbuf = dp_rx_nbuf_prepare(soc, pdev);
Kai Chen6eca1a62017-01-12 10:17:53 -0800584
jinweic chenc3546322018-02-02 15:03:41 +0800585 /*
586 * qdf_nbuf alloc or map failed,
587 * free the dp rx desc to free list,
588 * fill in NULL dma address at current HP entry,
589 * keep HP in mon_status_ring unchanged,
590 * wait next time dp_rx_mon_status_srng_process
591 * to fill in buffer at current HP.
592 */
593 if (qdf_unlikely(status_nbuf == NULL)) {
594 union dp_rx_desc_list_elem_t *desc_list = NULL;
595 union dp_rx_desc_list_elem_t *tail = NULL;
596 struct rx_desc_pool *rx_desc_pool;
Kai Chen6eca1a62017-01-12 10:17:53 -0800597
jinweic chenc3546322018-02-02 15:03:41 +0800598 rx_desc_pool = &soc->rx_desc_status[mac_id];
Kai Chen6eca1a62017-01-12 10:17:53 -0800599
jinweic chenc3546322018-02-02 15:03:41 +0800600 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
601 "%s: fail to allocate or map qdf_nbuf",
602 __func__);
603 dp_rx_add_to_free_desc_list(&desc_list,
604 &tail, rx_desc);
605 dp_rx_add_desc_list_to_free_list(soc, &desc_list,
606 &tail, mac_id, rx_desc_pool);
607
608 hal_rxdma_buff_addr_info_set(
609 rxdma_mon_status_ring_entry,
610 0, 0, HAL_RX_BUF_RBM_SW3_BM);
611 work_done++;
612 break;
613 }
614
Kai Chen6eca1a62017-01-12 10:17:53 -0800615 paddr = qdf_nbuf_get_frag_paddr(status_nbuf, 0);
616
617 rx_desc->nbuf = status_nbuf;
Pramod Simha59fcb312017-06-22 17:43:16 -0700618 rx_desc->in_use = 1;
Kai Chen6eca1a62017-01-12 10:17:53 -0800619
620 hal_rxdma_buff_addr_info_set(rxdma_mon_status_ring_entry,
621 paddr, rx_desc->cookie, HAL_RX_BUF_RBM_SW3_BM);
622
Karunakar Dasineni37995ac2018-02-06 12:37:30 -0800623 hal_srng_src_get_next(hal_soc, mon_status_srng);
Kai Chen6eca1a62017-01-12 10:17:53 -0800624 work_done++;
625 }
626done:
627
628 hal_srng_access_end(hal_soc, mon_status_srng);
629
630 return work_done;
631
632}
633/*
634 * dp_rx_mon_status_process() - Process monitor status ring and
635 * TLV in status ring.
636 *
637 * @soc: core txrx main context
638 * @mac_id: mac_id which is one of 3 mac_ids
639 * @quota: No. of ring entry that can be serviced in one shot.
640
641 * Return: uint32_t: No. of ring entry that is processed.
642 */
643static inline uint32_t
644dp_rx_mon_status_process(struct dp_soc *soc, uint32_t mac_id, uint32_t quota) {
645 uint32_t work_done;
646
647 work_done = dp_rx_mon_status_srng_process(soc, mac_id, quota);
Karunakar Dasineni40555682017-03-26 22:44:39 -0700648 quota -= work_done;
649 dp_rx_mon_status_process_tlv(soc, mac_id, quota);
Kai Chen6eca1a62017-01-12 10:17:53 -0800650
651 return work_done;
652}
653/**
654 * dp_mon_process() - Main monitor mode processing roution.
655 * This call monitor status ring process then monitor
656 * destination ring process.
657 * Called from the bottom half (tasklet/NET_RX_SOFTIRQ)
658 * @soc: core txrx main context
659 * @mac_id: mac_id which is one of 3 mac_ids
660 * @quota: No. of status ring entry that can be serviced in one shot.
661
662 * Return: uint32_t: No. of ring entry that is processed.
663 */
664uint32_t
665dp_mon_process(struct dp_soc *soc, uint32_t mac_id, uint32_t quota) {
Karunakar Dasineni40555682017-03-26 22:44:39 -0700666 return dp_rx_mon_status_process(soc, mac_id, quota);
Kai Chen6eca1a62017-01-12 10:17:53 -0800667}
Karunakar Dasineni40555682017-03-26 22:44:39 -0700668
Kai Chen6eca1a62017-01-12 10:17:53 -0800669/**
670 * dp_rx_pdev_mon_detach() - detach dp rx for status ring
671 * @pdev: core txrx pdev context
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800672 * @mac_id: mac_id/pdev_id correspondinggly for MCL and WIN
Kai Chen6eca1a62017-01-12 10:17:53 -0800673 *
674 * This function will detach DP RX status ring from
675 * main device context. will free DP Rx resources for
676 * status ring
677 *
678 * Return: QDF_STATUS_SUCCESS: success
679 * QDF_STATUS_E_RESOURCES: Error return
680 */
Venkata Sharath Chandra Manchala30e442b2018-06-26 12:29:24 -0700681#ifndef QCA_WIFI_QCA6390
Kai Chen6eca1a62017-01-12 10:17:53 -0800682QDF_STATUS
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800683dp_rx_pdev_mon_status_detach(struct dp_pdev *pdev, int mac_id)
Kai Chen6eca1a62017-01-12 10:17:53 -0800684{
Kai Chen6eca1a62017-01-12 10:17:53 -0800685 struct dp_soc *soc = pdev->soc;
686 struct rx_desc_pool *rx_desc_pool;
687
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800688 rx_desc_pool = &soc->rx_desc_status[mac_id];
689 if (rx_desc_pool->pool_size != 0)
690 dp_rx_desc_pool_free(soc, mac_id, rx_desc_pool);
Kai Chen6eca1a62017-01-12 10:17:53 -0800691
692 return QDF_STATUS_SUCCESS;
693}
Venkata Sharath Chandra Manchala30e442b2018-06-26 12:29:24 -0700694#endif
Kai Chen6eca1a62017-01-12 10:17:53 -0800695
696/*
697 * dp_rx_buffers_replenish() - replenish monitor status ring with
698 * rx nbufs called during dp rx
699 * monitor status ring initialization
700 *
701 * @soc: core txrx main context
702 * @mac_id: mac_id which is one of 3 mac_ids
703 * @dp_rxdma_srng: dp monitor status circular ring
704 * @rx_desc_pool; Pointer to Rx descriptor pool
705 * @num_req_buffers: number of buffer to be replenished
706 * @desc_list: list of descs if called from dp rx monitor status
707 * process or NULL during dp rx initialization or
708 * out of buffer interrupt
709 * @tail: tail of descs list
710 * @owner: who owns the nbuf (host, NSS etc...)
711 * Return: return success or failure
712 */
713static inline
714QDF_STATUS dp_rx_mon_status_buffers_replenish(struct dp_soc *dp_soc,
715 uint32_t mac_id,
716 struct dp_srng *dp_rxdma_srng,
717 struct rx_desc_pool *rx_desc_pool,
718 uint32_t num_req_buffers,
719 union dp_rx_desc_list_elem_t **desc_list,
720 union dp_rx_desc_list_elem_t **tail,
721 uint8_t owner)
722{
723 uint32_t num_alloc_desc;
724 uint16_t num_desc_to_free = 0;
725 uint32_t num_entries_avail;
jinweic chenc3546322018-02-02 15:03:41 +0800726 uint32_t count = 0;
Kai Chen6eca1a62017-01-12 10:17:53 -0800727 int sync_hw_ptr = 1;
728 qdf_dma_addr_t paddr;
729 qdf_nbuf_t rx_netbuf;
730 void *rxdma_ring_entry;
731 union dp_rx_desc_list_elem_t *next;
732 void *rxdma_srng;
jinweic chenc3546322018-02-02 15:03:41 +0800733 struct dp_pdev *dp_pdev = dp_get_pdev_for_mac_id(dp_soc, mac_id);
Kai Chen6eca1a62017-01-12 10:17:53 -0800734
735 rxdma_srng = dp_rxdma_srng->hal_srng;
736
737 qdf_assert(rxdma_srng);
738
Houston Hoffmanae850c62017-08-11 16:47:50 -0700739 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Aditya Sathishded018e2018-07-02 16:25:21 +0530740 "[%s][%d] requested %d buffers for replenish",
Kai Chen6eca1a62017-01-12 10:17:53 -0800741 __func__, __LINE__, num_req_buffers);
742
743 /*
744 * if desc_list is NULL, allocate the descs from freelist
745 */
746 if (!(*desc_list)) {
747
748 num_alloc_desc = dp_rx_get_free_desc_list(dp_soc, mac_id,
749 rx_desc_pool,
750 num_req_buffers,
751 desc_list,
752 tail);
753
754 if (!num_alloc_desc) {
755 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
Aditya Sathishded018e2018-07-02 16:25:21 +0530756 "[%s][%d] no free rx_descs in freelist",
Kai Chen6eca1a62017-01-12 10:17:53 -0800757 __func__, __LINE__);
758 return QDF_STATUS_E_NOMEM;
759 }
760
Houston Hoffmanae850c62017-08-11 16:47:50 -0700761 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Aditya Sathishded018e2018-07-02 16:25:21 +0530762 "[%s][%d] %d rx desc allocated", __func__, __LINE__,
Kai Chen6eca1a62017-01-12 10:17:53 -0800763 num_alloc_desc);
Houston Hoffmanae850c62017-08-11 16:47:50 -0700764
Kai Chen6eca1a62017-01-12 10:17:53 -0800765 num_req_buffers = num_alloc_desc;
766 }
767
768 hal_srng_access_start(dp_soc->hal_soc, rxdma_srng);
769 num_entries_avail = hal_srng_src_num_avail(dp_soc->hal_soc,
770 rxdma_srng, sync_hw_ptr);
771
Houston Hoffmanae850c62017-08-11 16:47:50 -0700772 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Aditya Sathishded018e2018-07-02 16:25:21 +0530773 "[%s][%d] no of available entries in rxdma ring: %d",
Kai Chen6eca1a62017-01-12 10:17:53 -0800774 __func__, __LINE__, num_entries_avail);
775
776 if (num_entries_avail < num_req_buffers) {
777 num_desc_to_free = num_req_buffers - num_entries_avail;
778 num_req_buffers = num_entries_avail;
779 }
780
jinweic chenc3546322018-02-02 15:03:41 +0800781 while (count < num_req_buffers) {
782 rx_netbuf = dp_rx_nbuf_prepare(dp_soc, dp_pdev);
Kai Chen6eca1a62017-01-12 10:17:53 -0800783
jinweic chenc3546322018-02-02 15:03:41 +0800784 /*
785 * qdf_nbuf alloc or map failed,
786 * keep HP in mon_status_ring unchanged,
787 * wait dp_rx_mon_status_srng_process
788 * to fill in buffer at current HP.
789 */
790 if (qdf_unlikely(rx_netbuf == NULL)) {
791 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
792 "%s: qdf_nbuf allocate or map fail, count %d",
793 __func__, count);
794 break;
795 }
Kai Chen6eca1a62017-01-12 10:17:53 -0800796
797 paddr = qdf_nbuf_get_frag_paddr(rx_netbuf, 0);
798
799 next = (*desc_list)->next;
sumedh baikadyeca2de62018-04-11 14:20:38 -0700800 rxdma_ring_entry = hal_srng_src_get_next(dp_soc->hal_soc,
801 rxdma_srng);
802
803 if (qdf_unlikely(rxdma_ring_entry == NULL)) {
804 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
Aditya Sathishded018e2018-07-02 16:25:21 +0530805 "[%s][%d] rxdma_ring_entry is NULL, count - %d",
sumedh baikadyeca2de62018-04-11 14:20:38 -0700806 __func__, __LINE__, count);
807 qdf_nbuf_unmap_single(dp_soc->osdev, rx_netbuf,
808 QDF_DMA_BIDIRECTIONAL);
809 qdf_nbuf_free(rx_netbuf);
810 break;
811 }
Kai Chen6eca1a62017-01-12 10:17:53 -0800812
813 (*desc_list)->rx_desc.nbuf = rx_netbuf;
Pramod Simha59fcb312017-06-22 17:43:16 -0700814 (*desc_list)->rx_desc.in_use = 1;
jinweic chenc3546322018-02-02 15:03:41 +0800815 count++;
jinweic chenc3546322018-02-02 15:03:41 +0800816
Kai Chen6eca1a62017-01-12 10:17:53 -0800817 hal_rxdma_buff_addr_info_set(rxdma_ring_entry, paddr,
818 (*desc_list)->rx_desc.cookie, owner);
819
Karunakar Dasineni40555682017-03-26 22:44:39 -0700820 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Jeff Johnson3f217e22017-09-18 10:13:35 -0700821 "[%s][%d] rx_desc=%pK, cookie=%d, nbuf=%pK, \
Aditya Sathishded018e2018-07-02 16:25:21 +0530822 paddr=%pK",
Kai Chen6eca1a62017-01-12 10:17:53 -0800823 __func__, __LINE__, &(*desc_list)->rx_desc,
824 (*desc_list)->rx_desc.cookie, rx_netbuf,
jinweic chenc3546322018-02-02 15:03:41 +0800825 (void *)paddr);
Kai Chen6eca1a62017-01-12 10:17:53 -0800826
827 *desc_list = next;
828 }
829
830 hal_srng_access_end(dp_soc->hal_soc, rxdma_srng);
831
Houston Hoffmanae850c62017-08-11 16:47:50 -0700832 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Aditya Sathishded018e2018-07-02 16:25:21 +0530833 "successfully replenished %d buffers", num_req_buffers);
Kai Chen6eca1a62017-01-12 10:17:53 -0800834
Houston Hoffmanae850c62017-08-11 16:47:50 -0700835 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Aditya Sathishded018e2018-07-02 16:25:21 +0530836 "%d rx desc added back to free list", num_desc_to_free);
Kai Chen6eca1a62017-01-12 10:17:53 -0800837
Houston Hoffmanae850c62017-08-11 16:47:50 -0700838 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_DEBUG,
Aditya Sathishded018e2018-07-02 16:25:21 +0530839 "[%s][%d] desc_list=%pK, tail=%pK rx_desc=%pK, cookie=%d",
Kai Chen6eca1a62017-01-12 10:17:53 -0800840 __func__, __LINE__, desc_list, tail, &(*desc_list)->rx_desc,
841 (*desc_list)->rx_desc.cookie);
842
843 /*
844 * add any available free desc back to the free list
845 */
846 if (*desc_list) {
847 dp_rx_add_desc_list_to_free_list(dp_soc, desc_list, tail,
848 mac_id, rx_desc_pool);
849 }
850
851 return QDF_STATUS_SUCCESS;
852}
853/**
854 * dp_rx_pdev_mon_status_attach() - attach DP RX monitor status ring
855 * @pdev: core txrx pdev context
856 *
857 * This function will attach a DP RX monitor status ring into pDEV
858 * and replenish monitor status ring with buffer.
859 *
860 * Return: QDF_STATUS_SUCCESS: success
861 * QDF_STATUS_E_RESOURCES: Error return
862 */
Venkata Sharath Chandra Manchala30e442b2018-06-26 12:29:24 -0700863#ifndef QCA_WIFI_QCA6390
Kai Chen6eca1a62017-01-12 10:17:53 -0800864QDF_STATUS
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800865dp_rx_pdev_mon_status_attach(struct dp_pdev *pdev, int ring_id) {
Kai Chen6eca1a62017-01-12 10:17:53 -0800866 struct dp_soc *soc = pdev->soc;
867 union dp_rx_desc_list_elem_t *desc_list = NULL;
868 union dp_rx_desc_list_elem_t *tail = NULL;
869 struct dp_srng *rxdma_srng;
870 uint32_t rxdma_entries;
871 struct rx_desc_pool *rx_desc_pool;
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700872 QDF_STATUS status;
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800873 int mac_for_pdev = dp_get_mac_id_for_mac(soc, ring_id);
Kai Chen6eca1a62017-01-12 10:17:53 -0800874
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800875 rxdma_srng = &pdev->rxdma_mon_status_ring[mac_for_pdev];
Kai Chen6eca1a62017-01-12 10:17:53 -0800876
877 rxdma_entries = rxdma_srng->alloc_size/hal_srng_get_entrysize(
878 soc->hal_soc, RXDMA_MONITOR_STATUS);
879
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800880 rx_desc_pool = &soc->rx_desc_status[ring_id];
Kai Chen6eca1a62017-01-12 10:17:53 -0800881
Houston Hoffman41b912c2017-08-30 14:27:51 -0700882 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_LOW,
Aditya Sathishded018e2018-07-02 16:25:21 +0530883 "%s: Mon RX Status Pool[%d] allocation size=%d",
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800884 __func__, ring_id, rxdma_entries);
Kai Chen6eca1a62017-01-12 10:17:53 -0800885
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800886 status = dp_rx_desc_pool_alloc(soc, ring_id, rxdma_entries+1,
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700887 rx_desc_pool);
Ravi Joshi73a05512017-07-10 13:53:32 -0700888 if (!QDF_IS_STATUS_SUCCESS(status)) {
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700889 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
Aditya Sathishded018e2018-07-02 16:25:21 +0530890 "%s: dp_rx_desc_pool_alloc() failed ", __func__);
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700891 return status;
892 }
Kai Chen6eca1a62017-01-12 10:17:53 -0800893
Houston Hoffman41b912c2017-08-30 14:27:51 -0700894 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_INFO_LOW,
Aditya Sathishded018e2018-07-02 16:25:21 +0530895 "%s: Mon RX Status Buffers Replenish ring_id=%d",
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800896 __func__, ring_id);
Kai Chen6eca1a62017-01-12 10:17:53 -0800897
Manjunathappa Prakashd9ce3502018-02-05 14:09:17 -0800898 status = dp_rx_mon_status_buffers_replenish(soc, ring_id, rxdma_srng,
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700899 rx_desc_pool, rxdma_entries, &desc_list, &tail,
900 HAL_RX_BUF_RBM_SW3_BM);
Ravi Joshi73a05512017-07-10 13:53:32 -0700901 if (!QDF_IS_STATUS_SUCCESS(status)) {
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700902 QDF_TRACE(QDF_MODULE_ID_DP, QDF_TRACE_LEVEL_ERROR,
Aditya Sathishded018e2018-07-02 16:25:21 +0530903 "%s: dp_rx_buffers_replenish() failed ", __func__);
Ravi Joshia9ebe0a2017-06-17 16:43:02 -0700904 return status;
905 }
Kai Chen6eca1a62017-01-12 10:17:53 -0800906
907 qdf_nbuf_queue_init(&pdev->rx_status_q);
908
909 pdev->mon_ppdu_status = DP_PPDU_STATUS_START;
Kai Chen783e0382018-01-25 16:29:08 -0800910
Karunakar Dasineni40555682017-03-26 22:44:39 -0700911 qdf_mem_zero(&(pdev->ppdu_info.rx_status),
912 sizeof(pdev->ppdu_info.rx_status));
Kai Chen6eca1a62017-01-12 10:17:53 -0800913
Kai Chen783e0382018-01-25 16:29:08 -0800914 qdf_mem_zero(&pdev->rx_mon_stats,
915 sizeof(pdev->rx_mon_stats));
916
917 dp_rx_mon_init_dbg_ppdu_stats(&pdev->ppdu_info,
918 &pdev->rx_mon_stats);
919
Kai Chen6eca1a62017-01-12 10:17:53 -0800920 return QDF_STATUS_SUCCESS;
921}
Venkata Sharath Chandra Manchala30e442b2018-06-26 12:29:24 -0700922#endif