blob: c80b1631de7285fd40be40b32af6a14b8390cd02 [file] [log] [blame]
Bharath M Kumarcc666e92014-12-24 19:17:28 +05301/*
2 **************************************************************************
3 * Copyright (c) 2015, The Linux Foundation. All rights reserved.
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 copies.
7 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
8 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
10 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
11 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
12 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
13 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14 **************************************************************************
15 */
16
17#include "nss_tx_rx_common.h"
18
19/*
20 * nss_wifi_stats_sync()
21 * Handle the syncing of WIFI stats.
22 */
23void nss_wifi_stats_sync(struct nss_ctx_instance *nss_ctx,
24 struct nss_wifi_stats_sync_msg *stats, uint16_t interface)
25{
26 struct nss_top_instance *nss_top = nss_ctx->nss_top;
Radha krishna Simha Jiguru3a7439f2015-09-11 13:29:12 +053027 uint32_t radio_id = interface - NSS_WIFI_INTERFACE0;
28
29 if (radio_id >= NSS_MAX_WIFI_RADIO_INTERFACES) {
30 nss_warning("%p: invalid interface: %d", nss_ctx, interface);
31 return;
32 }
Bharath M Kumarcc666e92014-12-24 19:17:28 +053033
34 spin_lock_bh(&nss_top->stats_lock);
35
36 /*
37 * Tx/Rx stats
38 */
Radha krishna Simha Jiguru3a7439f2015-09-11 13:29:12 +053039 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_PKTS] += stats->node_stats.rx_packets;
40 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_DROPPED] += stats->node_stats.rx_dropped;
41 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_TX_PKTS] += stats->node_stats.tx_packets;
42 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_TX_DROPPED] += stats->tx_transmit_dropped;
43 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_TX_COMPLETED] += stats->tx_transmit_completions;
44 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_MGMT_RCV_CNT] += stats->tx_mgmt_rcv_cnt;
45 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_MGMT_TX_PKTS] += stats->tx_mgmt_pkts;
46 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_MGMT_TX_DROPPED] += stats->tx_mgmt_dropped;
47 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_MGMT_TX_COMPLETIONS] += stats->tx_mgmt_completions;
48 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_INV_PEER_ENQUEUE_CNT] += stats->tx_inv_peer_enq_cnt;
49 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_INV_PEER_RCV_CNT] += stats->rx_inv_peer_rcv_cnt;
50 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_PN_CHECK_FAILED] += stats->rx_pn_check_failed;
51 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_DELIVERED] += stats->rx_pkts_deliverd;
Ankit Dhanuka5a178192015-09-22 16:40:12 +053052 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_RX_BYTES_DELIVERED] += stats->rx_bytes_deliverd;
53 nss_top->stats_wifi[radio_id][NSS_STATS_WIFI_TX_BYTES_COMPLETED] += stats->tx_bytes_transmit_completions;
Bharath M Kumarcc666e92014-12-24 19:17:28 +053054
55 spin_unlock_bh(&nss_top->stats_lock);
56}
57
58
59/*
60 * nss_wifi_handler()
61 * Handle NSS -> HLOS messages for wifi
62 */
63static void nss_wifi_handler(struct nss_ctx_instance *nss_ctx, struct nss_cmn_msg *ncm, __attribute__((unused))void *app_data)
64{
65 struct nss_wifi_msg *ntm = (struct nss_wifi_msg *)ncm;
66 void *ctx;
67 nss_wifi_msg_callback_t cb;
68
69 nss_info("%p: NSS ->HLOS message for wifi\n", nss_ctx);
70
71 BUG_ON(((ncm->interface < NSS_WIFI_INTERFACE0) || (ncm->interface > NSS_WIFI_INTERFACE2)));
72
73 /*
74 * Is this a valid request/response packet?
75 */
76 if (ncm->type >= NSS_WIFI_MAX_MSG) {
77 nss_warning("%p: received invalid message %d for wifi interface", nss_ctx, ncm->type);
78 return;
79 }
80
81 if (ncm->len > sizeof(struct nss_wifi_msg)) {
82 nss_warning("%p: tx request for another interface: %d", nss_ctx, ncm->interface);
83 return;
84 }
85
86 /*
87 * Snoop messages for local driver and handle
88 */
89 switch (ntm->cm.type) {
90 case NSS_WIFI_STATS_MSG:
91 /*
92 * To create the old API gmac statistics, we use the new extended GMAC stats.
93 */
94 nss_wifi_stats_sync(nss_ctx, &ntm->msg.statsmsg, ncm->interface);
95 break;
96 }
97
98 /*
99 * Update the callback and app_data for NOTIFY messages, wifi sends all notify messages
100 * to the same callback/app_data.
101 */
102 if (ncm->response == NSS_CMM_RESPONSE_NOTIFY) {
103 ncm->cb = (uint32_t)nss_ctx->nss_top->wifi_msg_callback;
104 }
105
106 /*
107 * Log failures
108 */
109 nss_core_log_msg_failures(nss_ctx, ncm);
110
111 /*
112 * Do we have a call back
113 */
114 if (!ncm->cb) {
115 nss_info("%p: cb null for wifi interface %d", nss_ctx, ncm->interface);
116 return;
117 }
118
119 /*
120 * Get callback & context
121 */
122 cb = (nss_wifi_msg_callback_t)ncm->cb;
123 ctx = nss_ctx->nss_top->subsys_dp_register[ncm->interface].ndev;
124
125 /*
126 * call wifi msg callback
127 */
128 if (!ctx) {
129 nss_warning("%p: Event received for wifi interface %d before registration", nss_ctx, ncm->interface);
130 return;
131 }
132
133 cb(ctx, ntm);
134}
135
136/*
137 * nss_wifi_tx_msg
138 * Transmit a wifi message to NSS FW
139 */
140nss_tx_status_t nss_wifi_tx_msg(struct nss_ctx_instance *nss_ctx, struct nss_wifi_msg *msg)
141{
142 struct nss_wifi_msg *nm;
143 struct nss_cmn_msg *ncm = &msg->cm;
144 struct sk_buff *nbuf;
145 int32_t status;
146
147 NSS_VERIFY_CTX_MAGIC(nss_ctx);
148
149 if (unlikely(nss_ctx->state != NSS_CORE_STATE_INITIALIZED)) {
150 nss_warning("%p: wifi message dropped as core not ready", nss_ctx);
151 return NSS_TX_FAILURE_NOT_READY;
152 }
153
154 if (ncm->type > NSS_WIFI_MAX_MSG) {
155 nss_warning("%p: wifi message type out of range: %d", nss_ctx, ncm->type);
156 return NSS_TX_FAILURE;
157 }
158
159 if (ncm->len > sizeof(struct nss_wifi_msg)) {
160 nss_warning("%p: wifi message length is invalid: %d", nss_ctx, ncm->len);
161 return NSS_TX_FAILURE;
162 }
163
164 nbuf = dev_alloc_skb(NSS_NBUF_PAYLOAD_SIZE);
165 if (unlikely(!nbuf)) {
166 spin_lock_bh(&nss_ctx->nss_top->stats_lock);
167 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_NBUF_ALLOC_FAILS]);
168 spin_unlock_bh(&nss_ctx->nss_top->stats_lock);
169 nss_warning("%p: wifi message dropped as command allocation failed", nss_ctx);
170 return NSS_TX_FAILURE;
171 }
172
173 /*
174 * Copy the message to our skb
175 */
176 nm = (struct nss_wifi_msg *)skb_put(nbuf, sizeof(struct nss_wifi_msg));
177 memcpy(nm, msg, sizeof(struct nss_wifi_msg));
178
179 status = nss_core_send_buffer(nss_ctx, 0, nbuf, NSS_IF_CMD_QUEUE, H2N_BUFFER_CTRL, 0);
180 if (status != NSS_CORE_STATUS_SUCCESS) {
181 dev_kfree_skb_any(nbuf);
182 nss_warning("%p: Unable to enqueue 'wifi message'", nss_ctx);
183 return NSS_TX_FAILURE;
184 }
185
186 nss_hal_send_interrupt(nss_ctx->nmap, nss_ctx->h2n_desc_rings[NSS_IF_CMD_QUEUE].desc_ring.int_bit,
187 NSS_REGS_H2N_INTR_STATUS_DATA_COMMAND_QUEUE);
188
189 NSS_PKT_STATS_INCREMENT(nss_ctx, &nss_ctx->nss_top->stats_drv[NSS_STATS_DRV_TX_CMD_REQ]);
190
191 return NSS_TX_SUCCESS;
192}
193
194/*
195 ****************************************
196 * Register/Unregister/Miscellaneous APIs
197 ****************************************
198 */
199
200/*
201 * nss_register_wifi_if()
202 * Register Wifi with nss driver
203 */
204struct nss_ctx_instance *nss_register_wifi_if(uint32_t if_num, nss_wifi_callback_t wifi_callback,
Radha krishna Simha Jiguru427d6032015-07-07 19:06:07 +0530205 nss_wifi_callback_t wifi_ext_callback,
Bharath M Kumarcc666e92014-12-24 19:17:28 +0530206 nss_wifi_msg_callback_t event_callback, struct net_device *netdev, uint32_t features)
207{
208 nss_assert((if_num >= NSS_MAX_VIRTUAL_INTERFACES) && (if_num < NSS_MAX_NET_INTERFACES));
209
210 nss_info("nss_register_wifi_if if_num %d wifictx %p", if_num, netdev);
211
212 nss_top_main.subsys_dp_register[if_num].ndev = netdev;
213 nss_top_main.subsys_dp_register[if_num].cb = wifi_callback;
Radha krishna Simha Jiguru427d6032015-07-07 19:06:07 +0530214 nss_top_main.subsys_dp_register[if_num].ext_cb = wifi_ext_callback;
Bharath M Kumarcc666e92014-12-24 19:17:28 +0530215 nss_top_main.subsys_dp_register[if_num].app_data = NULL;
216 nss_top_main.subsys_dp_register[if_num].features = features;
217
218 nss_top_main.wifi_msg_callback = event_callback;
219
220 return (struct nss_ctx_instance *)&nss_top_main.nss[nss_top_main.wifi_handler_id];
221}
222
223/*
224 * nss_unregister_wifi_if()
225 * Unregister wifi with nss driver
226 */
227void nss_unregister_wifi_if(uint32_t if_num)
228{
229 nss_assert((if_num >= NSS_MAX_VIRTUAL_INTERFACES) && (if_num < NSS_MAX_NET_INTERFACES));
230
231 nss_top_main.subsys_dp_register[if_num].ndev = NULL;
232 nss_top_main.subsys_dp_register[if_num].cb = NULL;
Radha krishna Simha Jiguru427d6032015-07-07 19:06:07 +0530233 nss_top_main.subsys_dp_register[if_num].ext_cb = NULL;
Bharath M Kumarcc666e92014-12-24 19:17:28 +0530234 nss_top_main.subsys_dp_register[if_num].app_data = NULL;
235 nss_top_main.subsys_dp_register[if_num].features = 0;
236
237 nss_top_main.wifi_msg_callback = NULL;
238
239 nss_core_unregister_handler(if_num);
240}
241
242/*
243 * nss_wifi_register_handler()
244 * Register handle for notfication messages received on wifi interface
245 */
246void nss_wifi_register_handler(void )
247{
248 nss_info("nss_wifi_register_handler");
249
250 nss_core_register_handler(NSS_WIFI_INTERFACE0, nss_wifi_handler, NULL);
251 nss_core_register_handler(NSS_WIFI_INTERFACE1, nss_wifi_handler, NULL);
252 nss_core_register_handler(NSS_WIFI_INTERFACE2, nss_wifi_handler, NULL);
253}
254
255EXPORT_SYMBOL(nss_wifi_tx_msg);
256EXPORT_SYMBOL(nss_register_wifi_if);
257EXPORT_SYMBOL(nss_unregister_wifi_if);