blob: 1126160ff5d16d3ad31834fc389cf13c6b4ff377 [file] [log] [blame]
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001/*
Jeff Johnson441e1f72017-02-07 08:50:49 -08002 * Copyright (c) 2011-2017 The Linux Foundation. All rights reserved.
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08003 *
4 * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5 *
6 *
7 * Permission to use, copy, modify, and/or distribute this software for
8 * any purpose with or without fee is hereby granted, provided that the
9 * above copyright notice and this permission notice appear in all
10 * copies.
11 *
12 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13 * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15 * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19 * PERFORMANCE OF THIS SOFTWARE.
20 */
21
22/*
23 * This file was originally distributed by Qualcomm Atheros, Inc.
24 * under proprietary terms before Copyright ownership was assigned
25 * to the Linux Foundation.
26 */
27
28/**
29 * DOC: wlan_hdd_ocb.c
30 *
31 * WLAN Host Device Driver 802.11p OCB implementation
32 */
33
34#include "cds_sched.h"
35#include "wlan_hdd_assoc.h"
36#include "wlan_hdd_main.h"
37#include "wlan_hdd_ocb.h"
38#include "wlan_hdd_trace.h"
Jeff Johnson7af334b2017-02-01 13:03:43 -080039#include "wlan_hdd_request_manager.h"
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080040#include "wlan_tgt_def_config.h"
41#include "sch_api.h"
42#include "wma_api.h"
Leo Changfdb45c32016-10-28 11:09:23 -070043#include <cdp_txrx_cmn.h>
Manjunathappa Prakash3454fd62016-04-01 08:52:06 -070044#include <cdp_txrx_peer_ops.h>
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -080045#include <cdp_txrx_handle.h>
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080046/* Structure definitions for WLAN_SET_DOT11P_CHANNEL_SCHED */
47#define AIFSN_MIN (2)
48#define AIFSN_MAX (15)
49#define CW_MIN (1)
50#define CW_MAX (10)
51
52/* Maximum time(ms) to wait for OCB operations */
53#define WLAN_WAIT_TIME_OCB_CMD 1500
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080054
55/**
56 * hdd_set_dot11p_config() - Set 802.11p config flag
57 * @hdd_ctx: HDD Context pointer
58 *
59 * TODO-OCB: This has been temporarily added to ensure this paramter
60 * is set in CSR when we init the channel list. This should be removed
61 * once the 5.9 GHz channels are added to the regulatory domain.
62 */
Jeff Johnson7106aba2017-08-28 11:49:07 -070063void hdd_set_dot11p_config(struct hdd_context *hdd_ctx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080064{
65 sme_set_dot11p_config(hdd_ctx->hHal,
66 hdd_ctx->config->dot11p_mode !=
67 WLAN_HDD_11P_DISABLED);
68}
69
70/**
71 * dot11p_validate_qos_params() - Check if QoS parameters are valid
72 * @qos_params: Array of QoS parameters
73 *
74 * Return: 0 on success. error code on failure.
75 */
76static int dot11p_validate_qos_params(struct sir_qos_params qos_params[])
77{
78 int i;
79
80 for (i = 0; i < MAX_NUM_AC; i++) {
81 if ((!qos_params[i].aifsn) && (!qos_params[i].cwmin)
82 && (!qos_params[i].cwmax))
83 continue;
84
85 /* Validate AIFSN */
86 if ((qos_params[i].aifsn < AIFSN_MIN)
87 || (qos_params[i].aifsn > AIFSN_MAX)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -070088 hdd_err("Invalid QoS parameter aifsn %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080089 qos_params[i].aifsn);
90 return -EINVAL;
91 }
92
93 /* Validate CWMin */
94 if ((qos_params[i].cwmin < CW_MIN)
95 || (qos_params[i].cwmin > CW_MAX)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -070096 hdd_err("Invalid QoS parameter cwmin %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -080097 qos_params[i].cwmin);
98 return -EINVAL;
99 }
100
101 /* Validate CWMax */
102 if ((qos_params[i].cwmax < CW_MIN)
103 || (qos_params[i].cwmax > CW_MAX)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700104 hdd_err("Invalid QoS parameter cwmax %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800105 qos_params[i].cwmax);
106 return -EINVAL;
107 }
108 }
109
110 return 0;
111}
112
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800113/**
114 * dot11p_validate_channel() - validates a DSRC channel
115 * @center_freq: the channel's center frequency
116 * @bandwidth: the channel's bandwidth
117 * @tx_power: transmit power
118 * @reg_power: (output) the max tx power from the regulatory domain
119 * @antenna_max: (output) the max antenna gain from the regulatory domain
120 *
121 * Return: 0 if the channel is valid, error code otherwise.
122 */
123static int dot11p_validate_channel(struct wiphy *wiphy,
124 uint32_t channel_freq, uint32_t bandwidth,
125 uint32_t tx_power, uint8_t *reg_power,
126 uint8_t *antenna_max)
127{
128 int band_idx, channel_idx;
129 struct ieee80211_supported_band *current_band;
130 struct ieee80211_channel *current_channel;
131
Srinivas Girigowda5da651b2017-08-04 11:22:54 -0700132 for (band_idx = 0; band_idx < HDD_NUM_NL80211_BANDS; band_idx++) {
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800133 current_band = wiphy->bands[band_idx];
134 if (!current_band)
135 continue;
136
137 for (channel_idx = 0; channel_idx < current_band->n_channels;
138 channel_idx++) {
139 current_channel = &current_band->channels[channel_idx];
140
141 if (channel_freq == current_channel->center_freq) {
142 if (current_channel->flags &
143 IEEE80211_CHAN_DISABLED)
144 return -EINVAL;
145
146 if (reg_power)
147 *reg_power =
148 current_channel->max_reg_power;
149 if (antenna_max)
150 *antenna_max =
151 current_channel->
152 max_antenna_gain;
153
154 switch (bandwidth) {
155 case 0:
156 if (current_channel->flags &
157 IEEE80211_CHAN_NO_10MHZ)
158 bandwidth = 5;
159 else if (current_channel->flags &
160 IEEE80211_CHAN_NO_20MHZ)
161 bandwidth = 10;
162 else
163 bandwidth = 20;
164 break;
165 case 5:
166 break;
167 case 10:
168 if (current_channel->flags &
169 IEEE80211_CHAN_NO_10MHZ)
170 return -EINVAL;
171 break;
172 case 20:
173 if (current_channel->flags &
174 IEEE80211_CHAN_NO_20MHZ)
175 return -EINVAL;
176 break;
177 default:
178 return -EINVAL;
179 }
180
181 if (tx_power > current_channel->max_power)
182 return -EINVAL;
183
184 return 0;
185 }
186 }
187 }
188
Amar Singhalfda6eda2015-11-02 15:08:59 -0800189 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800190}
191
192/**
193 * hdd_ocb_validate_config() - Validates the config data
194 * @config: configuration to be validated
195 *
196 * Return: 0 on success.
197 */
Jeff Johnson7a1688a2017-08-29 14:27:19 -0700198static int hdd_ocb_validate_config(struct hdd_adapter *adapter,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800199 struct sir_ocb_config *config)
200{
201 int i;
Jeff Johnson7106aba2017-08-28 11:49:07 -0700202 struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800203
204 for (i = 0; i < config->channel_count; i++) {
205 if (dot11p_validate_channel(hdd_ctx->wiphy,
206 config->channels[i].chan_freq,
207 config->channels[i].bandwidth,
208 config->channels[i].max_pwr,
209 &config->channels[i].reg_pwr,
210 &config->channels[i].antenna_max)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700211 hdd_err("Invalid channel frequency %d",
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800212 config->channels[i].chan_freq);
213 return -EINVAL;
214 }
215 if (dot11p_validate_qos_params(config->channels[i].qos_params))
216 return -EINVAL;
217 }
218
219 return 0;
220}
221
222/**
223 * hdd_ocb_register_sta() - Register station with Transport Layer
224 * @adapter: Pointer to HDD Adapter
225 *
226 * This function should be invoked in the OCB Set Schedule callback
227 * to enable the data path in the TL by calling RegisterSTAClient
228 *
229 * Return: 0 on success. -1 on failure.
230 */
Jeff Johnson7a1688a2017-08-29 14:27:19 -0700231static int hdd_ocb_register_sta(struct hdd_adapter *adapter)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800232{
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530233 QDF_STATUS qdf_status = QDF_STATUS_E_FAILURE;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800234 struct ol_txrx_desc_type sta_desc = {0};
Jeff Johnson7106aba2017-08-28 11:49:07 -0700235 struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
Jeff Johnson40dae4e2017-08-29 14:00:25 -0700236 struct hdd_station_ctx *pHddStaCtx = WLAN_HDD_GET_STATION_CTX_PTR(adapter);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800237 uint8_t peer_id;
Dhanashri Atre182b0272016-02-17 15:35:07 -0800238 struct ol_txrx_ops txrx_ops;
Leo Changfdb45c32016-10-28 11:09:23 -0700239 void *soc = cds_get_context(QDF_MODULE_ID_SOC);
240 void *pdev = cds_get_context(QDF_MODULE_ID_TXRX);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800241
Jeff Johnson382bce02017-09-01 14:21:07 -0700242 qdf_status = cdp_peer_register_ocb_peer(soc,
Leo Changfdb45c32016-10-28 11:09:23 -0700243 adapter->macAddressCurrent.bytes,
244 &peer_id);
Anurag Chouhanfb54ab02016-02-18 18:00:46 +0530245 if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700246 hdd_err("Error registering OCB Self Peer!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800247 return -EINVAL;
248 }
249
250 hdd_ctx->sta_to_adapter[peer_id] = adapter;
251
252 sta_desc.sta_id = peer_id;
253 sta_desc.is_qos_enabled = 1;
254
Dhanashri Atre182b0272016-02-17 15:35:07 -0800255 /* Register the vdev transmit and receive functions */
256 qdf_mem_zero(&txrx_ops, sizeof(txrx_ops));
257 txrx_ops.rx.rx = hdd_rx_packet_cbk;
Leo Changfdb45c32016-10-28 11:09:23 -0700258 cdp_vdev_register(soc,
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -0800259 (struct cdp_vdev *)cdp_get_vdev_from_vdev_id(soc,
260 (struct cdp_pdev *)pdev, adapter->sessionId),
261 adapter, &txrx_ops);
Dhanashri Atre168d2b42016-02-22 14:43:06 -0800262 adapter->tx_fn = txrx_ops.tx.tx;
Dhanashri Atre182b0272016-02-17 15:35:07 -0800263
Venkata Sharath Chandra Manchala0d44d452016-11-23 17:48:15 -0800264 qdf_status = cdp_peer_register(soc,
265 (struct cdp_pdev *)pdev, &sta_desc);
Dhanashri Atre50141c52016-04-07 13:15:29 -0700266 if (!QDF_IS_STATUS_SUCCESS(qdf_status)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700267 hdd_err("Failed to register. Status= %d [0x%08X]",
Dhanashri Atre50141c52016-04-07 13:15:29 -0700268 qdf_status, qdf_status);
269 return -EINVAL;
270 }
271
Naveen Rawatac027cb2017-04-27 15:02:42 -0700272 if (pHddStaCtx->conn_info.staId[0] != HDD_WLAN_INVALID_STA_ID &&
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800273 pHddStaCtx->conn_info.staId[0] != peer_id) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700274 hdd_err("The ID for the OCB station has changed.");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800275 }
276
277 pHddStaCtx->conn_info.staId[0] = peer_id;
Anurag Chouhanc5548422016-02-24 18:33:27 +0530278 qdf_copy_macaddr(&pHddStaCtx->conn_info.peerMacAddress[0],
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800279 &adapter->macAddressCurrent);
280
281 return 0;
282}
283
284/**
285 * hdd_ocb_config_new() - Creates a new OCB configuration
286 * @num_channels: the number of channels
287 * @num_schedule: the schedule size
288 * @ndl_chan_list_len: length in bytes of the NDL chan blob
289 * @ndl_active_state_list_len: length in bytes of the active state blob
290 *
291 * Return: A pointer to the OCB configuration struct, NULL on failure.
292 */
Jeff Johnson929ad032016-10-19 07:34:42 -0700293static
294struct sir_ocb_config *hdd_ocb_config_new(uint32_t num_channels,
295 uint32_t num_schedule,
296 uint32_t ndl_chan_list_len,
297 uint32_t ndl_active_state_list_len)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800298{
299 struct sir_ocb_config *ret = 0;
300 uint32_t len;
301 void *cursor;
302
303 if (num_channels > CFG_TGT_NUM_OCB_CHANNELS ||
304 num_schedule > CFG_TGT_NUM_OCB_SCHEDULES)
305 return NULL;
306
307 len = sizeof(*ret) +
308 num_channels * sizeof(struct sir_ocb_config_channel) +
309 num_schedule * sizeof(struct sir_ocb_config_sched) +
310 ndl_chan_list_len +
311 ndl_active_state_list_len;
312
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530313 cursor = qdf_mem_malloc(len);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800314 if (!cursor)
315 goto fail;
316
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800317 ret = cursor;
318 cursor += sizeof(*ret);
319
320 ret->channel_count = num_channels;
321 ret->channels = cursor;
322 cursor += num_channels * sizeof(*ret->channels);
323
324 ret->schedule_size = num_schedule;
325 ret->schedule = cursor;
326 cursor += num_schedule * sizeof(*ret->schedule);
327
328 ret->dcc_ndl_chan_list = cursor;
329 cursor += ndl_chan_list_len;
330
331 ret->dcc_ndl_active_state_list = cursor;
332 cursor += ndl_active_state_list_len;
333
334 return ret;
335
336fail:
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530337 qdf_mem_free(ret);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800338 return NULL;
339}
340
Jeff Johnson7af334b2017-02-01 13:03:43 -0800341struct hdd_ocb_set_config_priv {
342 int status;
343};
344
345
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800346/**
347 * hdd_ocb_set_config_callback() - OCB set config callback function
348 * @context_ptr: OCB call context
349 * @response_ptr: Pointer to response structure
350 *
351 * This function is registered as a callback with the lower layers
352 * and is used to respond with the status of a OCB set config command.
353 */
354static void hdd_ocb_set_config_callback(void *context_ptr, void *response_ptr)
355{
Jeff Johnson7af334b2017-02-01 13:03:43 -0800356 struct hdd_request *hdd_request;
357 struct hdd_ocb_set_config_priv *priv;
358 struct sir_ocb_set_config_response *response = response_ptr;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800359
Jeff Johnson7af334b2017-02-01 13:03:43 -0800360 hdd_request = hdd_request_get(context_ptr);
361 if (!hdd_request) {
362 hdd_err("Obsolete request");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800363 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800364 }
Jeff Johnson7af334b2017-02-01 13:03:43 -0800365 priv = hdd_request_priv(hdd_request);
366
367 if (response && response->status)
Srinivas Girigowdaaaea4102017-03-25 11:02:52 -0700368 hdd_warn("Operation failed: %d", response->status);
Jeff Johnson7af334b2017-02-01 13:03:43 -0800369
370 if (response && (0 == response->status))
371 priv->status = 0;
372 else
373 priv->status = -EINVAL;
374
375 hdd_request_complete(hdd_request);
376 hdd_request_put(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800377}
378
379/**
380 * hdd_ocb_set_config_req() - Send an OCB set config request
381 * @adapter: a pointer to the adapter
382 * @config: a pointer to the OCB configuration
383 *
384 * Return: 0 on success.
385 */
Jeff Johnson7a1688a2017-08-29 14:27:19 -0700386static int hdd_ocb_set_config_req(struct hdd_adapter *adapter,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800387 struct sir_ocb_config *config)
388{
389 int rc;
Jeff Johnson7af334b2017-02-01 13:03:43 -0800390 QDF_STATUS status;
Jeff Johnson7106aba2017-08-28 11:49:07 -0700391 struct hdd_context *hdd_ctx = WLAN_HDD_GET_CTX(adapter);
Jeff Johnson7af334b2017-02-01 13:03:43 -0800392 void *cookie;
393 struct hdd_request *hdd_request;
394 struct hdd_ocb_set_config_priv *priv;
395 static const struct hdd_request_params params = {
396 .priv_size = sizeof(*priv),
397 .timeout_ms = WLAN_WAIT_TIME_OCB_CMD,
398 };
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800399
400 if (hdd_ocb_validate_config(adapter, config)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700401 hdd_err("The configuration is invalid");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800402 return -EINVAL;
403 }
404
Jeff Johnson7af334b2017-02-01 13:03:43 -0800405 hdd_request = hdd_request_alloc(&params);
406 if (!hdd_request) {
407 hdd_err("Request allocation failure");
408 return -ENOMEM;
409 }
410 cookie = hdd_request_cookie(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800411
Varun Reddy Yeturu8a5d3d42017-08-02 13:03:27 -0700412 hdd_debug("Disabling queues");
Himanshu Agarwal865201d2017-04-12 15:45:31 +0530413 wlan_hdd_netif_queue_control(adapter,
414 WLAN_STOP_ALL_NETIF_QUEUE_N_CARRIER,
415 WLAN_CONTROL_PATH);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800416
417 /* Call the SME API to set the config */
Jeff Johnson7af334b2017-02-01 13:03:43 -0800418 status = sme_ocb_set_config(hdd_ctx->hHal, cookie,
419 hdd_ocb_set_config_callback, config);
420 if (QDF_IS_STATUS_ERROR(status)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700421 hdd_err("Error calling SME function.");
Jeff Johnson7af334b2017-02-01 13:03:43 -0800422 rc = qdf_status_to_os_return(status);
423 goto end;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800424 }
425
426 /* Wait for the function to complete. */
Jeff Johnson7af334b2017-02-01 13:03:43 -0800427 rc = hdd_request_wait_for_response(hdd_request);
428 if (rc) {
429 hdd_err("Operation timed out");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800430 goto end;
431 }
432
Jeff Johnson7af334b2017-02-01 13:03:43 -0800433 priv = hdd_request_priv(hdd_request);
434 rc = priv->status;
435 if (rc) {
436 hdd_err("Operation failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800437 goto end;
438 }
439
Jeff Johnson7af334b2017-02-01 13:03:43 -0800440 /*
441 * OCB set config command successful.
442 * Open the TX data path
443 */
444 if (!hdd_ocb_register_sta(adapter))
445 wlan_hdd_netif_queue_control(adapter,
446 WLAN_START_ALL_NETIF_QUEUE_N_CARRIER,
447 WLAN_CONTROL_PATH);
448
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800449 /* fall through */
450end:
Jeff Johnson7af334b2017-02-01 13:03:43 -0800451 hdd_request_put(hdd_request);
452
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800453 return rc;
454}
455
456/**
457 * __iw_set_dot11p_channel_sched() - Handler for WLAN_SET_DOT11P_CHANNEL_SCHED
458 * ioctl
459 * @dev: Pointer to net_device structure
460 * @iw_request_info: IW Request Info
461 * @wrqu: IW Request Userspace Data Pointer
462 * @extra: IW Request Kernel Data Pointer
463 *
464 * Return: 0 on success
465 */
466static int __iw_set_dot11p_channel_sched(struct net_device *dev,
467 struct iw_request_info *info,
468 union iwreq_data *wrqu, char *extra)
469{
Jeff Johnson441e1f72017-02-07 08:50:49 -0800470 int rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800471 struct dot11p_channel_sched *sched;
Jeff Johnson7106aba2017-08-28 11:49:07 -0700472 struct hdd_context *hdd_ctx;
Jeff Johnson7a1688a2017-08-29 14:27:19 -0700473 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800474 struct sir_ocb_config *config = NULL;
475 uint8_t *mac_addr;
476 int i, j;
477 struct sir_ocb_config_channel *curr_chan;
478
Jeff Johnson6ee91ee2016-02-11 18:55:30 -0800479 ENTER_DEV(dev);
480
Jeff Johnson382bce02017-09-01 14:21:07 -0700481 hdd_ctx = WLAN_HDD_GET_CTX(adapter);
Jeff Johnson441e1f72017-02-07 08:50:49 -0800482 rc = wlan_hdd_validate_context(hdd_ctx);
483 if (0 != rc)
484 return rc;
485
486 rc = hdd_check_private_wext_control(hdd_ctx, info);
487 if (0 != rc)
488 return rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800489
Krunal Sonibe766b02016-03-10 13:00:44 -0800490 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700491 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800492 return -EINVAL;
493 }
494
495 sched = (struct dot11p_channel_sched *)extra;
496
497 /* Scheduled slots same as num channels for compatibility */
498 config = hdd_ocb_config_new(sched->num_channels, sched->num_channels,
499 0, 0);
500 if (config == NULL) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700501 hdd_err("Failed to allocate memory!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800502 return -ENOMEM;
503 }
504
505 /* Identify the vdev interface */
506 config->session_id = adapter->sessionId;
507
508 /* Release all the mac addresses used for OCB */
509 for (i = 0; i < adapter->ocb_mac_addr_count; i++) {
510 wlan_hdd_release_intf_addr(adapter->pHddCtx,
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800511 adapter->ocb_mac_address[i].bytes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800512 }
513 adapter->ocb_mac_addr_count = 0;
514
515 config->channel_count = 0;
516 for (i = 0; i < sched->num_channels; i++) {
517 if (0 == sched->channels[i].channel_freq)
518 continue;
519
520 curr_chan = &(config->channels[config->channel_count]);
521
522 curr_chan->chan_freq = sched->channels[i].channel_freq;
523 /*
524 * tx_power is divided by 2 because ocb_channel.tx_power is
525 * in half dB increments and sir_ocb_config_channel.max_pwr
526 * is in 1 dB increments.
527 */
528 curr_chan->max_pwr = sched->channels[i].tx_power / 2;
529 curr_chan->bandwidth = sched->channels[i].channel_bandwidth;
530 /* assume 10 as default if not provided */
531 if (curr_chan->bandwidth == 0)
532 curr_chan->bandwidth = 10;
533
534 /*
535 * Setup locally administered mac addresses for each channel.
536 * First channel uses the adapter's address.
537 */
538 if (i == 0) {
Anurag Chouhanc5548422016-02-24 18:33:27 +0530539 qdf_copy_macaddr(&curr_chan->mac_address,
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800540 &adapter->macAddressCurrent);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800541 } else {
542 mac_addr = wlan_hdd_get_intf_addr(adapter->pHddCtx);
543 if (mac_addr == NULL) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700544 hdd_err("Cannot obtain mac address");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800545 rc = -EINVAL;
546 goto fail;
547 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530548 qdf_mem_copy(config->channels[
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800549 config->channel_count].mac_address.bytes,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800550 mac_addr, sizeof(tSirMacAddr));
551 /* Save the mac address to release later */
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530552 qdf_mem_copy(adapter->ocb_mac_address[
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800553 adapter->ocb_mac_addr_count].bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530554 mac_addr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800555 adapter->ocb_mac_addr_count++;
556 }
557
558 for (j = 0; j < MAX_NUM_AC; j++) {
559 curr_chan->qos_params[j].aifsn =
560 sched->channels[i].qos_params[j].aifsn;
561 curr_chan->qos_params[j].cwmin =
562 sched->channels[i].qos_params[j].cwmin;
563 curr_chan->qos_params[j].cwmax =
564 sched->channels[i].qos_params[j].cwmax;
565 }
566
567 config->channel_count++;
568 }
569
570 /*
571 * Scheduled slots same as num channels for compatibility with
572 * legacy use.
573 */
574 for (i = 0; i < sched->num_channels; i++) {
575 config->schedule[i].chan_freq = sched->channels[i].channel_freq;
576 config->schedule[i].guard_interval =
577 sched->channels[i].start_guard_interval;
578 config->schedule[i].total_duration =
579 sched->channels[i].duration;
580 }
581
582 rc = hdd_ocb_set_config_req(adapter, config);
583 if (rc) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700584 hdd_err("Error while setting OCB config");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800585 goto fail;
586 }
587
588 rc = 0;
589
590fail:
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530591 qdf_mem_free(config);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800592 return rc;
593}
594
595/**
596 * iw_set_dot11p_channel_sched() - IOCTL interface for setting channel schedule
597 * @dev: Pointer to net_device structure
598 * @iw_request_info: IW Request Info
599 * @wrqu: IW Request Userspace Data Pointer
600 * @extra: IW Request Kernel Data Pointer
601 *
602 * Return: 0 on success.
603 */
604int iw_set_dot11p_channel_sched(struct net_device *dev,
605 struct iw_request_info *info,
606 union iwreq_data *wrqu, char *extra)
607{
608 int ret;
609
610 cds_ssr_protect(__func__);
611 ret = __iw_set_dot11p_channel_sched(dev, info, wrqu, extra);
612 cds_ssr_unprotect(__func__);
613
614 return ret;
615}
616
617static const struct nla_policy qca_wlan_vendor_ocb_set_config_policy[
618 QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_MAX + 1] = {
619 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_COUNT] = {
620 .type = NLA_U32
621 },
622 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_SIZE] = {
623 .type = NLA_U32
624 },
625 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_ARRAY] = {
626 .type = NLA_BINARY
627 },
628 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_ARRAY] = {
629 .type = NLA_BINARY
630 },
631 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_CHANNEL_ARRAY] = {
632 .type = NLA_BINARY
633 },
634 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_ACTIVE_STATE_ARRAY] = {
635 .type = NLA_BINARY
636 },
637 [QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_FLAGS] = {
638 .type = NLA_U32
639 },
640};
641
642static const struct nla_policy qca_wlan_vendor_ocb_set_utc_time_policy[
643 QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_MAX + 1] = {
644 [QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_VALUE] = {
645 .type = NLA_BINARY, .len = SIZE_UTC_TIME
646 },
647 [QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_ERROR] = {
648 .type = NLA_BINARY, .len = SIZE_UTC_TIME_ERROR
649 },
650};
651
652static const struct nla_policy qca_wlan_vendor_ocb_start_timing_advert_policy[
653 QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_MAX + 1] = {
654 [QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_CHANNEL_FREQ] = {
655 .type = NLA_U32
656 },
657 [QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_REPEAT_RATE] = {
658 .type = NLA_U32
659 },
660};
661
662static const struct nla_policy qca_wlan_vendor_ocb_stop_timing_advert_policy[
663 QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_MAX + 1] = {
664 [QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_CHANNEL_FREQ] = {
665 .type = NLA_U32
666 },
667};
668
669static const struct nla_policy qca_wlan_vendor_ocb_get_tsf_timer_resp[] = {
670 [QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_HIGH] = {
671 .type = NLA_U32
672 },
673 [QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_LOW] = {
674 .type = NLA_U32
675 },
676};
677
678static const struct nla_policy qca_wlan_vendor_dcc_get_stats[] = {
679 [QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_CHANNEL_COUNT] = {
680 .type = NLA_U32
681 },
682 [QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_REQUEST_ARRAY] = {
683 .type = NLA_BINARY
684 },
685};
686
687static const struct nla_policy qca_wlan_vendor_dcc_get_stats_resp[] = {
688 [QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_RESP_CHANNEL_COUNT] = {
689 .type = NLA_U32
690 },
691 [QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_RESP_STATS_ARRAY] = {
692 .type = NLA_BINARY
693 },
694};
695
696static const struct nla_policy qca_wlan_vendor_dcc_clear_stats[] = {
697 [QCA_WLAN_VENDOR_ATTR_DCC_CLEAR_STATS_BITMAP] = {
698 .type = NLA_U32
699 },
700};
701
702static const struct nla_policy qca_wlan_vendor_dcc_update_ndl[
703 QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_MAX + 1] = {
704 [QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_COUNT] = {
705 .type = NLA_U32
706 },
707 [QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_ARRAY] = {
708 .type = NLA_BINARY
709 },
710 [QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_ACTIVE_STATE_ARRAY] = {
711 .type = NLA_BINARY
712 },
713};
714
715/**
716 * struct wlan_hdd_ocb_config_channel
717 * @chan_freq: frequency of the channel
718 * @bandwidth: bandwidth of the channel, either 10 or 20 MHz
719 * @mac_address: MAC address assigned to this channel
720 * @qos_params: QoS parameters
721 * @max_pwr: maximum transmit power of the channel (1/2 dBm)
722 * @min_pwr: minimum transmit power of the channel (1/2 dBm)
723 */
724struct wlan_hdd_ocb_config_channel {
725 uint32_t chan_freq;
726 uint32_t bandwidth;
727 uint16_t flags;
728 uint8_t reserved[4];
729 struct sir_qos_params qos_params[MAX_NUM_AC];
730 uint32_t max_pwr;
731 uint32_t min_pwr;
732};
733
734static void wlan_hdd_ocb_config_channel_to_sir_ocb_config_channel(
735 struct sir_ocb_config_channel *dest,
736 struct wlan_hdd_ocb_config_channel *src,
737 uint32_t channel_count)
738{
739 uint32_t i;
740
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530741 qdf_mem_zero(dest, channel_count * sizeof(*dest));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800742
743 for (i = 0; i < channel_count; i++) {
744 dest[i].chan_freq = src[i].chan_freq;
745 dest[i].bandwidth = src[i].bandwidth;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530746 qdf_mem_copy(dest[i].qos_params, src[i].qos_params,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800747 sizeof(dest[i].qos_params));
748 /*
749 * max_pwr and min_pwr are divided by 2 because
750 * wlan_hdd_ocb_config_channel.max_pwr and min_pwr
751 * are in 1/2 dB increments and
752 * sir_ocb_config_channel.max_pwr and min_pwr are in
753 * 1 dB increments.
754 */
755 dest[i].max_pwr = src[i].max_pwr / 2;
756 dest[i].min_pwr = (src[i].min_pwr + 1) / 2;
757 dest[i].flags = src[i].flags;
758 }
759}
760
761/**
762 * __wlan_hdd_cfg80211_ocb_set_config() - Interface for set config command
763 * @wiphy: pointer to the wiphy
764 * @wdev: pointer to the wdev
765 * @data: The netlink data
766 * @data_len: The length of the netlink data in bytes
767 *
768 * Return: 0 on success.
769 */
770static int __wlan_hdd_cfg80211_ocb_set_config(struct wiphy *wiphy,
771 struct wireless_dev *wdev,
772 const void *data,
773 int data_len)
774{
Jeff Johnson7106aba2017-08-28 11:49:07 -0700775 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800776 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -0700777 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800778 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_MAX + 1];
779 struct nlattr *channel_array;
780 struct nlattr *sched_array;
781 struct nlattr *ndl_chan_list;
782 uint32_t ndl_chan_list_len;
783 struct nlattr *ndl_active_state_list;
784 uint32_t ndl_active_state_list_len;
785 uint32_t flags = 0;
786 int i;
Jeff Johnson929ad032016-10-19 07:34:42 -0700787 uint32_t channel_count, schedule_size;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800788 struct sir_ocb_config *config;
789 int rc = -EINVAL;
790 uint8_t *mac_addr;
791
Jeff Johnson1f61b612016-02-12 16:28:33 -0800792 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800793
Abhishek Singh23edd1c2016-05-05 11:56:06 +0530794 if (wlan_hdd_validate_context(hdd_ctx))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800795 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800796
Krunal Sonibe766b02016-03-10 13:00:44 -0800797 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700798 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800799 return -EINVAL;
800 }
801
802 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -0700803 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_MAX, data,
804 data_len, qca_wlan_vendor_ocb_set_config_policy)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700805 hdd_err("Invalid ATTR");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800806 return -EINVAL;
807 }
808
809 /* Get the number of channels in the schedule */
810 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_COUNT]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700811 hdd_err("CHANNEL_COUNT is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800812 return -EINVAL;
813 }
814 channel_count = nla_get_u32(
815 tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_COUNT]);
816
817 /* Get the size of the channel schedule */
818 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_SIZE]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700819 hdd_err("SCHEDULE_SIZE is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800820 return -EINVAL;
821 }
822 schedule_size = nla_get_u32(
823 tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_SIZE]);
824
825 /* Get the ndl chan array and the ndl active state array. */
SaidiReddy Yenuga3db38772017-03-28 15:18:56 +0530826 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_CHANNEL_ARRAY]) {
827 hdd_err("NDL_CHANNEL_ARRAY is not present");
828 return -EINVAL;
829 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800830 ndl_chan_list =
831 tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_CHANNEL_ARRAY];
832 ndl_chan_list_len = (ndl_chan_list ? nla_len(ndl_chan_list) : 0);
833
SaidiReddy Yenuga3db38772017-03-28 15:18:56 +0530834 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_ACTIVE_STATE_ARRAY]) {
835 hdd_err("NDL_ACTIVE_STATE_ARRAY is not present");
836 return -EINVAL;
837 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800838 ndl_active_state_list =
839 tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_NDL_ACTIVE_STATE_ARRAY];
840 ndl_active_state_list_len = (ndl_active_state_list ?
841 nla_len(ndl_active_state_list) : 0);
842
843 /* Get the flags */
844 if (tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_FLAGS])
845 flags = nla_get_u32(tb[
846 QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_FLAGS]);
847
848 config = hdd_ocb_config_new(channel_count, schedule_size,
849 ndl_chan_list_len,
850 ndl_active_state_list_len);
851 if (config == NULL) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700852 hdd_err("Failed to allocate memory!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800853 return -ENOMEM;
854 }
855
856 config->channel_count = channel_count;
857 config->schedule_size = schedule_size;
858 config->flags = flags;
859
860 /* Read the channel array */
SaidiReddy Yenuga3db38772017-03-28 15:18:56 +0530861 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_ARRAY]) {
862 hdd_err("CHANNEL_ARRAY is not present");
863 return -EINVAL;
864 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800865 channel_array = tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_CHANNEL_ARRAY];
866 if (!channel_array) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700867 hdd_err("No channel present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800868 goto fail;
869 }
870 if (nla_len(channel_array) != channel_count *
871 sizeof(struct wlan_hdd_ocb_config_channel)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700872 hdd_err("CHANNEL_ARRAY is not the correct size");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800873 goto fail;
874 }
875 wlan_hdd_ocb_config_channel_to_sir_ocb_config_channel(
876 config->channels, nla_data(channel_array), channel_count);
877
878 /* Identify the vdev interface */
879 config->session_id = adapter->sessionId;
880
881 /* Release all the mac addresses used for OCB */
882 for (i = 0; i < adapter->ocb_mac_addr_count; i++) {
883 wlan_hdd_release_intf_addr(adapter->pHddCtx,
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800884 adapter->ocb_mac_address[i].bytes);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800885 }
886 adapter->ocb_mac_addr_count = 0;
887
888 /*
889 * Setup locally administered mac addresses for each channel.
890 * First channel uses the adapter's address.
891 */
892 for (i = 0; i < config->channel_count; i++) {
893 if (i == 0) {
Anurag Chouhanc5548422016-02-24 18:33:27 +0530894 qdf_copy_macaddr(&config->channels[i].mac_address,
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800895 &adapter->macAddressCurrent);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800896 } else {
897 mac_addr = wlan_hdd_get_intf_addr(adapter->pHddCtx);
898 if (mac_addr == NULL) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700899 hdd_err("Cannot obtain mac address");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800900 goto fail;
901 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530902 qdf_mem_copy(config->channels[i].mac_address.bytes,
Anurag Chouhan6d760662016-02-20 16:05:43 +0530903 mac_addr, QDF_MAC_ADDR_SIZE);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800904 /* Save the mac address to release later */
Anurag Chouhanc5548422016-02-24 18:33:27 +0530905 qdf_copy_macaddr(&adapter->ocb_mac_address[
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800906 adapter->ocb_mac_addr_count],
Srinivas Girigowda117e7fb2015-11-16 12:33:45 -0800907 &config->channels[i].mac_address);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800908 adapter->ocb_mac_addr_count++;
909 }
910 }
911
912 /* Read the schedule array */
913 sched_array = tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_CONFIG_SCHEDULE_ARRAY];
914 if (!sched_array) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700915 hdd_err("No channel present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800916 goto fail;
917 }
918 if (nla_len(sched_array) != schedule_size * sizeof(*config->schedule)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -0700919 hdd_err("SCHEDULE_ARRAY is not the correct size");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800920 goto fail;
921 }
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530922 qdf_mem_copy(config->schedule, nla_data(sched_array),
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800923 nla_len(sched_array));
924
925 /* Copy the NDL chan array */
926 if (ndl_chan_list_len) {
927 config->dcc_ndl_chan_list_len = ndl_chan_list_len;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530928 qdf_mem_copy(config->dcc_ndl_chan_list, nla_data(ndl_chan_list),
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800929 nla_len(ndl_chan_list));
930 }
931
932 /* Copy the NDL active state array */
933 if (ndl_active_state_list_len) {
934 config->dcc_ndl_active_state_list_len =
935 ndl_active_state_list_len;
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530936 qdf_mem_copy(config->dcc_ndl_active_state_list,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800937 nla_data(ndl_active_state_list),
938 nla_len(ndl_active_state_list));
939 }
940
941 rc = hdd_ocb_set_config_req(adapter, config);
942 if (rc)
Jeff Johnson5f735d52016-07-06 15:14:45 -0700943 hdd_err("Error while setting OCB config: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800944
945fail:
Anurag Chouhan600c3a02016-03-01 10:33:54 +0530946 qdf_mem_free(config);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800947 return rc;
948}
949
950/**
951 * wlan_hdd_cfg80211_ocb_set_config() - Interface for set config command
952 * @wiphy: pointer to the wiphy
953 * @wdev: pointer to the wdev
954 * @data: The netlink data
955 * @data_len: The length of the netlink data in bytes
956 *
957 * Return: 0 on success.
958 */
959int wlan_hdd_cfg80211_ocb_set_config(struct wiphy *wiphy,
960 struct wireless_dev *wdev,
961 const void *data,
962 int data_len)
963{
964 int ret;
965
966 cds_ssr_protect(__func__);
967 ret = __wlan_hdd_cfg80211_ocb_set_config(wiphy, wdev, data, data_len);
968 cds_ssr_unprotect(__func__);
969
970 return ret;
971}
972
973/**
974 * __wlan_hdd_cfg80211_ocb_set_utc_time() - Interface for set UTC time command
975 * @wiphy: pointer to the wiphy
976 * @wdev: pointer to the wdev
977 * @data: The netlink data
978 * @data_len: The length of the netlink data in bytes
979 *
980 * Return: 0 on success.
981 */
982static int __wlan_hdd_cfg80211_ocb_set_utc_time(struct wiphy *wiphy,
983 struct wireless_dev *wdev,
984 const void *data,
985 int data_len)
986{
Jeff Johnson7106aba2017-08-28 11:49:07 -0700987 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800988 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -0700989 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800990 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_MAX + 1];
991 struct nlattr *utc_attr;
992 struct nlattr *time_error_attr;
993 struct sir_ocb_utc *utc;
994 int rc = -EINVAL;
995
Jeff Johnson1f61b612016-02-12 16:28:33 -0800996 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800997
Abhishek Singh23edd1c2016-05-05 11:56:06 +0530998 if (wlan_hdd_validate_context(hdd_ctx))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -0800999 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001000
Krunal Sonibe766b02016-03-10 13:00:44 -08001001 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001002 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001003 return -EINVAL;
1004 }
1005
1006 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001007 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001008 return -EINVAL;
1009 }
1010
1011 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -07001012 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_MAX, data,
1013 data_len, qca_wlan_vendor_ocb_set_utc_time_policy)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001014 hdd_err("Invalid ATTR");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001015 return -EINVAL;
1016 }
1017
1018 /* Read the UTC time */
1019 utc_attr = tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_VALUE];
1020 if (!utc_attr) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001021 hdd_err("UTC_TIME is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001022 return -EINVAL;
1023 }
1024 if (nla_len(utc_attr) != SIZE_UTC_TIME) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001025 hdd_err("UTC_TIME is not the correct size");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001026 return -EINVAL;
1027 }
1028
1029 /* Read the time error */
1030 time_error_attr = tb[QCA_WLAN_VENDOR_ATTR_OCB_SET_UTC_TIME_ERROR];
1031 if (!time_error_attr) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001032 hdd_err("UTC_TIME is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001033 return -EINVAL;
1034 }
1035 if (nla_len(time_error_attr) != SIZE_UTC_TIME_ERROR) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001036 hdd_err("UTC_TIME is not the correct size");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001037 return -EINVAL;
1038 }
1039
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301040 utc = qdf_mem_malloc(sizeof(*utc));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001041 if (!utc) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001042 hdd_err("qdf_mem_malloc failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001043 return -ENOMEM;
1044 }
1045 utc->vdev_id = adapter->sessionId;
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301046 qdf_mem_copy(utc->utc_time, nla_data(utc_attr), SIZE_UTC_TIME);
1047 qdf_mem_copy(utc->time_error, nla_data(time_error_attr),
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001048 SIZE_UTC_TIME_ERROR);
1049
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301050 if (sme_ocb_set_utc_time(hdd_ctx->hHal, utc) != QDF_STATUS_SUCCESS) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001051 hdd_err("Error while setting UTC time");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001052 rc = -EINVAL;
1053 } else {
1054 rc = 0;
1055 }
1056
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301057 qdf_mem_free(utc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001058 return rc;
1059}
1060
1061/**
1062 * wlan_hdd_cfg80211_ocb_set_utc_time() - Interface for the set UTC time command
1063 * @wiphy: pointer to the wiphy
1064 * @wdev: pointer to the wdev
1065 * @data: The netlink data
1066 * @data_len: The length of the netlink data in bytes
1067 *
1068 * Return: 0 on success.
1069 */
1070int wlan_hdd_cfg80211_ocb_set_utc_time(struct wiphy *wiphy,
1071 struct wireless_dev *wdev,
1072 const void *data,
1073 int data_len)
1074{
1075 int ret;
1076
1077 cds_ssr_protect(__func__);
1078 ret = __wlan_hdd_cfg80211_ocb_set_utc_time(wiphy, wdev, data, data_len);
1079 cds_ssr_unprotect(__func__);
1080
1081 return ret;
1082}
1083
1084/**
1085 * __wlan_hdd_cfg80211_ocb_start_timing_advert() - Interface for start TA cmd
1086 * @wiphy: pointer to the wiphy
1087 * @wdev: pointer to the wdev
1088 * @data: The netlink data
1089 * @data_len: The length of the netlink data in bytes
1090 *
1091 * Return: 0 on success.
1092 */
1093static int
1094__wlan_hdd_cfg80211_ocb_start_timing_advert(struct wiphy *wiphy,
1095 struct wireless_dev *wdev,
1096 const void *data,
1097 int data_len)
1098{
Jeff Johnson7106aba2017-08-28 11:49:07 -07001099 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001100 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -07001101 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001102 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_MAX + 1];
1103 struct sir_ocb_timing_advert *timing_advert;
1104 int rc = -EINVAL;
1105
Jeff Johnson1f61b612016-02-12 16:28:33 -08001106 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001107
Abhishek Singh23edd1c2016-05-05 11:56:06 +05301108 if (wlan_hdd_validate_context(hdd_ctx))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001109 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001110
Krunal Sonibe766b02016-03-10 13:00:44 -08001111 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001112 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001113 return -EINVAL;
1114 }
1115
1116 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001117 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001118 return -EINVAL;
1119 }
1120
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301121 timing_advert = qdf_mem_malloc(sizeof(*timing_advert));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001122 if (!timing_advert) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001123 hdd_err("qdf_mem_malloc failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001124 return -ENOMEM;
1125 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001126 timing_advert->vdev_id = adapter->sessionId;
1127
1128 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -07001129 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_MAX,
1130 data, data_len,
1131 qca_wlan_vendor_ocb_start_timing_advert_policy)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001132 hdd_err("Invalid ATTR");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001133 goto fail;
1134 }
1135
1136 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_CHANNEL_FREQ]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001137 hdd_err("CHANNEL_FREQ is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001138 goto fail;
1139 }
1140 timing_advert->chan_freq = nla_get_u32(
1141 tb[QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_CHANNEL_FREQ]);
1142
1143 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_REPEAT_RATE]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001144 hdd_err("REPEAT_RATE is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001145 goto fail;
1146 }
1147 timing_advert->repeat_rate = nla_get_u32(
1148 tb[QCA_WLAN_VENDOR_ATTR_OCB_START_TIMING_ADVERT_REPEAT_RATE]);
1149
1150 timing_advert->template_length =
Naveen Rawatb4d37622015-11-13 16:15:25 -08001151 sme_ocb_gen_timing_advert_frame(hdd_ctx->hHal,
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001152 *(tSirMacAddr *)&adapter->macAddressCurrent.bytes,
1153 &timing_advert->template_value,
1154 &timing_advert->timestamp_offset,
1155 &timing_advert->time_value_offset);
1156 if (timing_advert->template_length <= 0) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001157 hdd_err("Error while generating the TA frame");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001158 goto fail;
1159 }
1160
1161 if (sme_ocb_start_timing_advert(hdd_ctx->hHal, timing_advert) !=
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301162 QDF_STATUS_SUCCESS) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001163 hdd_err("Error while starting timing advert");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001164 rc = -EINVAL;
1165 } else {
1166 rc = 0;
1167 }
1168
1169fail:
1170 if (timing_advert->template_value)
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301171 qdf_mem_free(timing_advert->template_value);
1172 qdf_mem_free(timing_advert);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001173 return rc;
1174}
1175
1176/**
1177 * wlan_hdd_cfg80211_ocb_start_timing_advert() - Interface for the start TA cmd
1178 * @wiphy: pointer to the wiphy
1179 * @wdev: pointer to the wdev
1180 * @data: The netlink data
1181 * @data_len: The length of the netlink data in bytes
1182 *
1183 * Return: 0 on success.
1184 */
1185int wlan_hdd_cfg80211_ocb_start_timing_advert(struct wiphy *wiphy,
1186 struct wireless_dev *wdev,
1187 const void *data,
1188 int data_len)
1189{
1190 int ret;
1191
1192 cds_ssr_protect(__func__);
1193 ret = __wlan_hdd_cfg80211_ocb_start_timing_advert(wiphy, wdev,
1194 data, data_len);
1195 cds_ssr_unprotect(__func__);
1196
1197 return ret;
1198}
1199
1200/**
1201 * __wlan_hdd_cfg80211_ocb_stop_timing_advert() - Interface for the stop TA cmd
1202 * @wiphy: pointer to the wiphy
1203 * @wdev: pointer to the wdev
1204 * @data: The netlink data
1205 * @data_len: The length of the netlink data in bytes
1206 *
1207 * Return: 0 on success.
1208 */
1209static int
1210__wlan_hdd_cfg80211_ocb_stop_timing_advert(struct wiphy *wiphy,
1211 struct wireless_dev *wdev,
1212 const void *data,
1213 int data_len)
1214{
Jeff Johnson7106aba2017-08-28 11:49:07 -07001215 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001216 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -07001217 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001218 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_MAX + 1];
1219 struct sir_ocb_timing_advert *timing_advert;
1220 int rc = -EINVAL;
1221
Jeff Johnson1f61b612016-02-12 16:28:33 -08001222 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001223
Abhishek Singh23edd1c2016-05-05 11:56:06 +05301224 if (wlan_hdd_validate_context(hdd_ctx))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001225 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001226
Krunal Sonibe766b02016-03-10 13:00:44 -08001227 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001228 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001229 return -EINVAL;
1230 }
1231
1232 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001233 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001234 return -EINVAL;
1235 }
1236
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301237 timing_advert = qdf_mem_malloc(sizeof(*timing_advert));
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001238 if (!timing_advert) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001239 hdd_err("qdf_mem_malloc failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001240 return -ENOMEM;
1241 }
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001242 timing_advert->vdev_id = adapter->sessionId;
1243
1244 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -07001245 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_MAX,
1246 data, data_len,
1247 qca_wlan_vendor_ocb_stop_timing_advert_policy)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001248 hdd_err("Invalid ATTR");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001249 goto fail;
1250 }
1251
1252 if (!tb[QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_CHANNEL_FREQ]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001253 hdd_err("CHANNEL_FREQ is not present");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001254 goto fail;
1255 }
1256 timing_advert->chan_freq = nla_get_u32(
1257 tb[QCA_WLAN_VENDOR_ATTR_OCB_STOP_TIMING_ADVERT_CHANNEL_FREQ]);
1258
1259 if (sme_ocb_stop_timing_advert(hdd_ctx->hHal, timing_advert) !=
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301260 QDF_STATUS_SUCCESS) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001261 hdd_err("Error while stopping timing advert");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001262 rc = -EINVAL;
1263 } else {
1264 rc = 0;
1265 }
1266
1267fail:
Anurag Chouhan600c3a02016-03-01 10:33:54 +05301268 qdf_mem_free(timing_advert);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001269 return rc;
1270}
1271
1272/**
1273 * wlan_hdd_cfg80211_ocb_stop_timing_advert() - Interface for the stop TA cmd
1274 * @wiphy: pointer to the wiphy
1275 * @wdev: pointer to the wdev
1276 * @data: The netlink data
1277 * @data_len: The length of the netlink data in bytes
1278 *
1279 * Return: 0 on success.
1280 */
1281int wlan_hdd_cfg80211_ocb_stop_timing_advert(struct wiphy *wiphy,
1282 struct wireless_dev *wdev,
1283 const void *data,
1284 int data_len)
1285{
1286 int ret;
1287
1288 cds_ssr_protect(__func__);
1289 ret = __wlan_hdd_cfg80211_ocb_stop_timing_advert(wiphy, wdev,
1290 data, data_len);
1291 cds_ssr_unprotect(__func__);
1292
1293 return ret;
1294}
1295
Jeff Johnson7af334b2017-02-01 13:03:43 -08001296struct hdd_ocb_get_tsf_timer_priv {
1297 struct sir_ocb_get_tsf_timer_response response;
1298 int status;
1299};
1300
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001301/**
1302 * hdd_ocb_get_tsf_timer_callback() - Callback to get TSF command
1303 * @context_ptr: request context
1304 * @response_ptr: response data
1305 */
1306static void hdd_ocb_get_tsf_timer_callback(void *context_ptr,
1307 void *response_ptr)
1308{
Jeff Johnson7af334b2017-02-01 13:03:43 -08001309 struct hdd_request *hdd_request;
1310 struct hdd_ocb_get_tsf_timer_priv *priv;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001311 struct sir_ocb_get_tsf_timer_response *response = response_ptr;
1312
Jeff Johnson7af334b2017-02-01 13:03:43 -08001313 hdd_request = hdd_request_get(context_ptr);
1314 if (!hdd_request) {
1315 hdd_err("Obsolete request");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001316 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001317 }
Jeff Johnson7af334b2017-02-01 13:03:43 -08001318
1319 if (response) {
1320 priv->response = *response;
1321 priv->status = 0;
1322 } else {
1323 priv->status = -EINVAL;
1324 }
1325 hdd_request_complete(hdd_request);
1326 hdd_request_put(hdd_request);
1327}
1328
1329static int
1330hdd_ocb_get_tsf_timer_reply(struct wiphy *wiphy,
1331 struct sir_ocb_get_tsf_timer_response *response)
1332{
1333 uint32_t nl_buf_len;
1334 struct sk_buff *nl_resp;
1335 int rc;
1336
1337 /* Allocate the buffer for the response. */
1338 nl_buf_len = NLMSG_HDRLEN;
1339 nl_buf_len += 2 * (NLA_HDRLEN + sizeof(uint32_t));
1340 nl_resp = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, nl_buf_len);
1341 if (!nl_resp) {
1342 hdd_err("cfg80211_vendor_cmd_alloc_reply_skb failed");
1343 return -ENOMEM;
1344 }
1345
1346 /* Populate the response. */
1347 rc = nla_put_u32(nl_resp,
1348 QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_HIGH,
1349 response->timer_high);
1350 if (rc)
1351 goto end;
1352 rc = nla_put_u32(nl_resp,
1353 QCA_WLAN_VENDOR_ATTR_OCB_GET_TSF_RESP_TIMER_LOW,
1354 response->timer_low);
1355 if (rc)
1356 goto end;
1357
1358 /* Send the response. */
1359 rc = cfg80211_vendor_cmd_reply(nl_resp);
1360 nl_resp = NULL;
1361 if (rc) {
1362 hdd_err("cfg80211_vendor_cmd_reply failed: %d", rc);
1363 goto end;
1364 }
1365end:
1366 if (nl_resp)
1367 kfree_skb(nl_resp);
1368
1369 return rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001370}
1371
1372/**
1373 * __wlan_hdd_cfg80211_ocb_get_tsf_timer() - Interface for get TSF timer cmd
1374 * @wiphy: pointer to the wiphy
1375 * @wdev: pointer to the wdev
1376 * @data: The netlink data
1377 * @data_len: The length of the netlink data in bytes
1378 *
1379 * Return: 0 on success.
1380 */
1381static int
1382__wlan_hdd_cfg80211_ocb_get_tsf_timer(struct wiphy *wiphy,
1383 struct wireless_dev *wdev,
1384 const void *data,
1385 int data_len)
1386{
Jeff Johnson7106aba2017-08-28 11:49:07 -07001387 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001388 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -07001389 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Jeff Johnson7af334b2017-02-01 13:03:43 -08001390 int rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001391 struct sir_ocb_get_tsf_timer request = {0};
Jeff Johnson7af334b2017-02-01 13:03:43 -08001392 QDF_STATUS status;
1393 void *cookie;
1394 struct hdd_request *hdd_request;
1395 struct hdd_ocb_get_tsf_timer_priv *priv;
1396 static const struct hdd_request_params params = {
1397 .priv_size = sizeof(*priv),
1398 .timeout_ms = WLAN_WAIT_TIME_OCB_CMD,
1399 };
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001400
Jeff Johnson1f61b612016-02-12 16:28:33 -08001401 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001402
Jeff Johnson7af334b2017-02-01 13:03:43 -08001403 rc = wlan_hdd_validate_context(hdd_ctx);
1404 if (rc)
1405 return rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001406
Krunal Sonibe766b02016-03-10 13:00:44 -08001407 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001408 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001409 return -EINVAL;
1410 }
1411
1412 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001413 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001414 return -EINVAL;
1415 }
1416
Jeff Johnson7af334b2017-02-01 13:03:43 -08001417 hdd_request = hdd_request_alloc(&params);
1418 if (!hdd_request) {
1419 hdd_err("Request allocation failure");
1420 return -ENOMEM;
1421 }
1422 cookie = hdd_request_cookie(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001423
1424 request.vdev_id = adapter->sessionId;
1425 /* Call the SME function */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001426 status = sme_ocb_get_tsf_timer(hdd_ctx->hHal, cookie,
1427 hdd_ocb_get_tsf_timer_callback,
1428 &request);
1429 if (QDF_IS_STATUS_ERROR(status)) {
1430 hdd_err("Error calling SME function.");
1431 rc = qdf_status_to_os_return(status);
1432 goto end;
1433 }
1434
1435 rc = hdd_request_wait_for_response(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001436 if (rc) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001437 hdd_err("Operation timed out");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001438 goto end;
1439 }
1440
Jeff Johnson7af334b2017-02-01 13:03:43 -08001441 priv = hdd_request_priv(hdd_request);
1442 rc = priv->status;
1443 if (rc) {
1444 hdd_err("Operation failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001445 goto end;
1446 }
1447
Varun Reddy Yeturu8a5d3d42017-08-02 13:03:27 -07001448 hdd_debug("Got TSF timer response, high=%d, low=%d",
Jeff Johnson7af334b2017-02-01 13:03:43 -08001449 priv->response.timer_high,
1450 priv->response.timer_low);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001451
1452 /* Send the response. */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001453 rc = hdd_ocb_get_tsf_timer_reply(wiphy, &priv->response);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001454 if (rc) {
Jeff Johnson7af334b2017-02-01 13:03:43 -08001455 hdd_err("hdd_ocb_get_tsf_timer_reply failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001456 goto end;
1457 }
1458
Jeff Johnson7af334b2017-02-01 13:03:43 -08001459 /* fall through */
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001460end:
Jeff Johnson7af334b2017-02-01 13:03:43 -08001461 hdd_request_put(hdd_request);
1462
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001463 return rc;
1464}
1465
1466/**
1467 * wlan_hdd_cfg80211_ocb_get_tsf_timer() - Interface for get TSF timer cmd
1468 * @wiphy: pointer to the wiphy
1469 * @wdev: pointer to the wdev
1470 * @data: The netlink data
1471 * @data_len: The length of the netlink data in bytes
1472 *
1473 * Return: 0 on success.
1474 */
1475int wlan_hdd_cfg80211_ocb_get_tsf_timer(struct wiphy *wiphy,
1476 struct wireless_dev *wdev,
1477 const void *data,
1478 int data_len)
1479{
1480 int ret;
1481
1482 cds_ssr_protect(__func__);
1483 ret = __wlan_hdd_cfg80211_ocb_get_tsf_timer(wiphy, wdev,
1484 data, data_len);
1485 cds_ssr_unprotect(__func__);
1486
1487 return ret;
1488}
1489
Jeff Johnson7af334b2017-02-01 13:03:43 -08001490struct hdd_dcc_stats_priv {
1491 struct sir_dcc_get_stats_response *response;
1492 int status;
1493};
1494
1495static void hdd_dcc_get_stats_dealloc(void *context_ptr)
1496{
1497 struct hdd_dcc_stats_priv *priv = context_ptr;
1498
1499 qdf_mem_free(priv->response);
1500 priv->response = NULL;
1501}
1502
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001503/**
1504 * hdd_dcc_get_stats_callback() - Callback to get stats command
1505 * @context_ptr: request context
1506 * @response_ptr: response data
1507 */
1508static void hdd_dcc_get_stats_callback(void *context_ptr, void *response_ptr)
1509{
Jeff Johnson7af334b2017-02-01 13:03:43 -08001510 struct hdd_request *hdd_request;
1511 struct hdd_dcc_stats_priv *priv;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001512 struct sir_dcc_get_stats_response *response = response_ptr;
1513 struct sir_dcc_get_stats_response *hdd_resp;
1514
Jeff Johnson7af334b2017-02-01 13:03:43 -08001515 hdd_request = hdd_request_get(context_ptr);
1516 if (!hdd_request) {
1517 hdd_err("Obsolete request");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001518 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001519 }
Jeff Johnson7af334b2017-02-01 13:03:43 -08001520
1521 priv = hdd_request_priv(hdd_request);
1522 if (!response) {
1523 priv->status = -EINVAL;
1524 goto end;
1525 }
1526
1527 priv->response = qdf_mem_malloc(sizeof(*response) +
1528 response->channel_stats_array_len);
1529 if (!priv->response) {
1530 priv->status = -ENOMEM;
1531 goto end;
1532 }
1533
1534 hdd_resp = priv->response;
1535 *hdd_resp = *response;
1536 hdd_resp->channel_stats_array = (void *)hdd_resp + sizeof(*hdd_resp);
1537 qdf_mem_copy(hdd_resp->channel_stats_array,
1538 response->channel_stats_array,
1539 response->channel_stats_array_len);
1540 priv->status = 0;
1541
1542end:
1543 hdd_request_complete(hdd_request);
1544 hdd_request_put(hdd_request);
1545}
1546
1547static int
1548hdd_dcc_get_stats_send_reply(struct wiphy *wiphy,
1549 struct sir_dcc_get_stats_response *response)
1550{
1551 uint32_t nl_buf_len;
1552 struct sk_buff *nl_resp;
1553 int rc;
1554
1555 /* Allocate the buffer for the response. */
1556 nl_buf_len = NLMSG_HDRLEN;
1557 nl_buf_len += NLA_HDRLEN + sizeof(uint32_t);
1558 nl_buf_len += NLA_HDRLEN + response->channel_stats_array_len;
1559 nl_resp = cfg80211_vendor_cmd_alloc_reply_skb(wiphy, nl_buf_len);
1560 if (!nl_resp) {
1561 hdd_err("cfg80211_vendor_cmd_alloc_reply_skb failed");
1562 return -ENOMEM;
1563 }
1564
1565 /* Populate the response. */
1566 rc = nla_put_u32(nl_resp,
1567 QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_RESP_CHANNEL_COUNT,
1568 response->num_channels);
1569 if (rc)
1570 goto end;
1571 rc = nla_put(nl_resp,
1572 QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_RESP_STATS_ARRAY,
1573 response->channel_stats_array_len,
1574 response->channel_stats_array);
1575 if (rc)
1576 goto end;
1577
1578 /* Send the response. */
1579 rc = cfg80211_vendor_cmd_reply(nl_resp);
1580 nl_resp = NULL;
1581 if (rc) {
1582 hdd_err("cfg80211_vendor_cmd_reply failed: %d", rc);
1583 goto end;
1584 }
1585end:
1586 if (nl_resp)
1587 kfree_skb(nl_resp);
1588
1589 return rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001590}
1591
1592/**
1593 * __wlan_hdd_cfg80211_dcc_get_stats() - Interface for get dcc stats
1594 * @wiphy: pointer to the wiphy
1595 * @wdev: pointer to the wdev
1596 * @data: The netlink data
1597 * @data_len: The length of the netlink data in bytes
1598 *
1599 * Return: 0 on success.
1600 */
1601static int __wlan_hdd_cfg80211_dcc_get_stats(struct wiphy *wiphy,
1602 struct wireless_dev *wdev,
1603 const void *data,
1604 int data_len)
1605{
1606 uint32_t channel_count = 0;
1607 uint32_t request_array_len = 0;
1608 void *request_array = 0;
Jeff Johnson7106aba2017-08-28 11:49:07 -07001609 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001610 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -07001611 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001612 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_MAX + 1];
Jeff Johnson7af334b2017-02-01 13:03:43 -08001613 int rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001614 struct sir_dcc_get_stats request = {0};
Jeff Johnson7af334b2017-02-01 13:03:43 -08001615 QDF_STATUS status;
1616 void *cookie;
1617 struct hdd_request *hdd_request;
1618 struct hdd_dcc_stats_priv *priv;
1619 static const struct hdd_request_params params = {
1620 .priv_size = sizeof(*priv),
1621 .timeout_ms = WLAN_WAIT_TIME_OCB_CMD,
1622 .dealloc = hdd_dcc_get_stats_dealloc,
1623 };
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001624
Jeff Johnson1f61b612016-02-12 16:28:33 -08001625 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001626
Jeff Johnson7af334b2017-02-01 13:03:43 -08001627 rc = wlan_hdd_validate_context(hdd_ctx);
1628 if (rc)
1629 return rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001630
Krunal Sonibe766b02016-03-10 13:00:44 -08001631 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001632 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001633 return -EINVAL;
1634 }
1635
1636 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001637 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001638 return -EINVAL;
1639 }
1640
1641 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -07001642 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_MAX, data,
1643 data_len, qca_wlan_vendor_dcc_get_stats)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001644 hdd_err("Invalid ATTR");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001645 return -EINVAL;
1646 }
1647
1648 /* Validate all the parameters are present */
1649 if (!tb[QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_CHANNEL_COUNT] ||
1650 !tb[QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_REQUEST_ARRAY]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001651 hdd_err("Parameters are not present.");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001652 return -EINVAL;
1653 }
1654
1655 channel_count = nla_get_u32(
1656 tb[QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_CHANNEL_COUNT]);
1657 request_array_len = nla_len(
1658 tb[QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_REQUEST_ARRAY]);
1659 request_array = nla_data(
1660 tb[QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_REQUEST_ARRAY]);
1661
Jeff Johnson7af334b2017-02-01 13:03:43 -08001662 hdd_request = hdd_request_alloc(&params);
1663 if (!hdd_request) {
1664 hdd_err("Request allocation failure");
1665 return -ENOMEM;
1666 }
1667 cookie = hdd_request_cookie(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001668
1669 request.vdev_id = adapter->sessionId;
1670 request.channel_count = channel_count;
1671 request.request_array_len = request_array_len;
1672 request.request_array = request_array;
1673
1674 /* Call the SME function. */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001675 status = sme_dcc_get_stats(hdd_ctx->hHal, cookie,
1676 hdd_dcc_get_stats_callback,
1677 &request);
1678 if (QDF_IS_STATUS_ERROR(status)) {
1679 hdd_err("Error calling SME function.");
1680 rc = qdf_status_to_os_return(status);
1681 goto end;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001682 }
1683
1684 /* Wait for the function to complete. */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001685 rc = hdd_request_wait_for_response(hdd_request);
1686 if (rc) {
1687 hdd_err("Operation timed out");
1688 goto end;
1689 }
1690
1691 priv = hdd_request_priv(hdd_request);
1692 rc = priv->status;
1693 if (rc) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001694 hdd_err("Operation failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001695 goto end;
1696 }
1697
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001698 /* Send the response. */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001699 rc = hdd_dcc_get_stats_send_reply(wiphy, priv->response);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001700 if (rc) {
Jeff Johnson7af334b2017-02-01 13:03:43 -08001701 hdd_err("hdd_dcc_get_stats_send_reply failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001702 goto end;
1703 }
1704
1705 /* fall through */
1706end:
Jeff Johnson7af334b2017-02-01 13:03:43 -08001707 hdd_request_put(hdd_request);
1708
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001709 return rc;
1710}
1711
1712/**
1713 * wlan_hdd_cfg80211_dcc_get_stats() - Interface for get dcc stats
1714 * @wiphy: pointer to the wiphy
1715 * @wdev: pointer to the wdev
1716 * @data: The netlink data
1717 * @data_len: The length of the netlink data in bytes
1718 *
1719 * Return: 0 on success.
1720 */
1721int wlan_hdd_cfg80211_dcc_get_stats(struct wiphy *wiphy,
1722 struct wireless_dev *wdev,
1723 const void *data,
1724 int data_len)
1725{
1726 int ret;
1727
1728 cds_ssr_protect(__func__);
1729 ret = __wlan_hdd_cfg80211_dcc_get_stats(wiphy, wdev,
1730 data, data_len);
1731 cds_ssr_unprotect(__func__);
1732
1733 return ret;
1734}
1735
1736/**
1737 * __wlan_hdd_cfg80211_dcc_clear_stats() - Interface for clear dcc stats cmd
1738 * @wiphy: pointer to the wiphy
1739 * @wdev: pointer to the wdev
1740 * @data: The netlink data
1741 * @data_len: The length of the netlink data in bytes
1742 *
1743 * Return: 0 on success.
1744 */
1745static int __wlan_hdd_cfg80211_dcc_clear_stats(struct wiphy *wiphy,
1746 struct wireless_dev *wdev,
1747 const void *data,
1748 int data_len)
1749{
Jeff Johnson7106aba2017-08-28 11:49:07 -07001750 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001751 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -07001752 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001753 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_DCC_CLEAR_STATS_MAX + 1];
1754
Jeff Johnson1f61b612016-02-12 16:28:33 -08001755 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001756
Abhishek Singh23edd1c2016-05-05 11:56:06 +05301757 if (wlan_hdd_validate_context(hdd_ctx))
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001758 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001759
Krunal Sonibe766b02016-03-10 13:00:44 -08001760 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001761 hdd_err("Device not in OCB mode!");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001762 return -EINVAL;
1763 }
1764
1765 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001766 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001767 return -EINVAL;
1768 }
1769
1770 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -07001771 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_DCC_CLEAR_STATS_MAX, data,
1772 data_len, qca_wlan_vendor_dcc_clear_stats)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001773 hdd_err("Invalid ATTR");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001774 return -EINVAL;
1775 }
1776
1777 /* Verify that the parameter is present */
1778 if (!tb[QCA_WLAN_VENDOR_ATTR_DCC_CLEAR_STATS_BITMAP]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001779 hdd_err("Parameters are not present.");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001780 return -EINVAL;
1781 }
1782
1783 /* Call the SME function */
1784 if (sme_dcc_clear_stats(hdd_ctx->hHal, adapter->sessionId,
1785 nla_get_u32(
1786 tb[QCA_WLAN_VENDOR_ATTR_DCC_CLEAR_STATS_BITMAP])) !=
Anurag Chouhanfb54ab02016-02-18 18:00:46 +05301787 QDF_STATUS_SUCCESS) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001788 hdd_err("Error calling SME function.");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001789 return -EINVAL;
1790 }
1791
1792 return 0;
1793}
1794
1795/**
1796 * wlan_hdd_cfg80211_dcc_clear_stats() - Interface for clear dcc stats cmd
1797 * @wiphy: pointer to the wiphy
1798 * @wdev: pointer to the wdev
1799 * @data: The netlink data
1800 * @data_len: The length of the netlink data in bytes
1801 *
1802 * Return: 0 on success.
1803 */
1804int wlan_hdd_cfg80211_dcc_clear_stats(struct wiphy *wiphy,
1805 struct wireless_dev *wdev,
1806 const void *data,
1807 int data_len)
1808{
1809 int ret;
1810
1811 cds_ssr_protect(__func__);
1812 ret = __wlan_hdd_cfg80211_dcc_clear_stats(wiphy, wdev,
1813 data, data_len);
1814 cds_ssr_unprotect(__func__);
1815
1816 return ret;
1817}
1818
Jeff Johnson7af334b2017-02-01 13:03:43 -08001819struct hdd_dcc_update_ndl_priv {
1820 int status;
1821};
1822
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001823/**
1824 * hdd_dcc_update_ndl_callback() - Callback to update NDL command
1825 * @context_ptr: request context
1826 * @response_ptr: response data
1827 */
1828static void hdd_dcc_update_ndl_callback(void *context_ptr, void *response_ptr)
1829{
Jeff Johnson7af334b2017-02-01 13:03:43 -08001830 struct hdd_request *hdd_request;
1831 struct hdd_dcc_update_ndl_priv *priv;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001832 struct sir_dcc_update_ndl_response *response = response_ptr;
1833
Jeff Johnson7af334b2017-02-01 13:03:43 -08001834 hdd_request = hdd_request_get(context_ptr);
1835 if (!hdd_request) {
1836 hdd_err("Obsolete request");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001837 return;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001838 }
Jeff Johnson7af334b2017-02-01 13:03:43 -08001839 priv = hdd_request_priv(hdd_request);
1840 if (response && (0 == response->status)) {
1841 priv->status = 0;
1842 } else {
1843 priv->status = -EINVAL;
1844 }
1845 hdd_request_complete(hdd_request);
1846 hdd_request_put(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001847}
1848
1849/**
1850 * __wlan_hdd_cfg80211_dcc_update_ndl() - Interface for update dcc cmd
1851 * @wiphy: pointer to the wiphy
1852 * @wdev: pointer to the wdev
1853 * @data: The netlink data
1854 * @data_len: The length of the netlink data in bytes
1855 *
1856 * Return: 0 on success.
1857 */
1858static int __wlan_hdd_cfg80211_dcc_update_ndl(struct wiphy *wiphy,
1859 struct wireless_dev *wdev,
1860 const void *data,
1861 int data_len)
1862{
Jeff Johnson7106aba2017-08-28 11:49:07 -07001863 struct hdd_context *hdd_ctx = wiphy_priv(wiphy);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001864 struct net_device *dev = wdev->netdev;
Jeff Johnson7a1688a2017-08-29 14:27:19 -07001865 struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001866 struct nlattr *tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_MAX + 1];
1867 struct sir_dcc_update_ndl request;
1868 uint32_t channel_count;
1869 uint32_t ndl_channel_array_len;
1870 void *ndl_channel_array;
1871 uint32_t ndl_active_state_array_len;
1872 void *ndl_active_state_array;
Jeff Johnson7af334b2017-02-01 13:03:43 -08001873 int rc;
1874 QDF_STATUS status;
1875 void *cookie;
1876 struct hdd_request *hdd_request;
1877 struct hdd_dcc_update_ndl_priv *priv;
1878 static const struct hdd_request_params params = {
1879 .priv_size = sizeof(*priv),
1880 .timeout_ms = WLAN_WAIT_TIME_OCB_CMD,
1881 };
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001882
Jeff Johnson1f61b612016-02-12 16:28:33 -08001883 ENTER_DEV(dev);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001884
Jeff Johnson7af334b2017-02-01 13:03:43 -08001885 rc = wlan_hdd_validate_context(hdd_ctx);
1886 if (rc)
1887 return rc;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001888
Krunal Sonibe766b02016-03-10 13:00:44 -08001889 if (adapter->device_mode != QDF_OCB_MODE) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001890 hdd_err("Device not in OCB mode!");
Jeff Johnson7af334b2017-02-01 13:03:43 -08001891 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001892 }
1893
1894 if (!wma_is_vdev_up(adapter->sessionId)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001895 hdd_err("The device has not been started");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001896 return -EINVAL;
1897 }
1898
1899 /* Parse the netlink message */
Dustin Brown3fb15042017-08-15 15:54:49 -07001900 if (hdd_nla_parse(tb, QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_MAX, data,
1901 data_len, qca_wlan_vendor_dcc_update_ndl)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001902 hdd_err("Invalid ATTR");
Jeff Johnson7af334b2017-02-01 13:03:43 -08001903 return -EINVAL;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001904 }
1905
1906 /* Verify that the parameter is present */
1907 if (!tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_COUNT] ||
1908 !tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_ARRAY] ||
1909 !tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_ACTIVE_STATE_ARRAY]) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001910 hdd_err("Parameters are not present.");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001911 return -EINVAL;
1912 }
1913
1914 channel_count = nla_get_u32(
1915 tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_COUNT]);
1916 ndl_channel_array_len = nla_len(
1917 tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_ARRAY]);
1918 ndl_channel_array = nla_data(
1919 tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_CHANNEL_ARRAY]);
1920 ndl_active_state_array_len = nla_len(
1921 tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_ACTIVE_STATE_ARRAY]);
1922 ndl_active_state_array = nla_data(
1923 tb[QCA_WLAN_VENDOR_ATTR_DCC_UPDATE_NDL_ACTIVE_STATE_ARRAY]);
1924
Jeff Johnson7af334b2017-02-01 13:03:43 -08001925 hdd_request = hdd_request_alloc(&params);
1926 if (!hdd_request) {
1927 hdd_err("Request allocation failure");
1928 return -ENOMEM;
1929 }
1930 cookie = hdd_request_cookie(hdd_request);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001931
1932 /* Copy the parameters to the request structure. */
1933 request.vdev_id = adapter->sessionId;
1934 request.channel_count = channel_count;
1935 request.dcc_ndl_chan_list_len = ndl_channel_array_len;
1936 request.dcc_ndl_chan_list = ndl_channel_array;
1937 request.dcc_ndl_active_state_list_len = ndl_active_state_array_len;
1938 request.dcc_ndl_active_state_list = ndl_active_state_array;
1939
1940 /* Call the SME function */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001941 status = sme_dcc_update_ndl(hdd_ctx->hHal, cookie,
1942 hdd_dcc_update_ndl_callback,
1943 &request);
1944 if (QDF_IS_STATUS_ERROR(status)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001945 hdd_err("Error calling SME function.");
Jeff Johnson7af334b2017-02-01 13:03:43 -08001946 rc = qdf_status_to_os_return(status);
1947 goto end;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001948 }
1949
1950 /* Wait for the function to complete. */
Jeff Johnson7af334b2017-02-01 13:03:43 -08001951 rc = hdd_request_wait_for_response(hdd_request);
1952 if (rc) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07001953 hdd_err("Operation timed out");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001954 goto end;
1955 }
1956
Jeff Johnson7af334b2017-02-01 13:03:43 -08001957 priv = hdd_request_priv(hdd_request);
1958 rc = priv->status;
1959 if (rc) {
1960 hdd_err("Operation failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001961 goto end;
1962 }
1963
1964 /* fall through */
1965end:
Jeff Johnson7af334b2017-02-01 13:03:43 -08001966 hdd_request_put(hdd_request);
1967
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08001968 return rc;
1969}
1970
1971/**
1972 * wlan_hdd_cfg80211_dcc_update_ndl() - Interface for update dcc cmd
1973 * @wiphy: pointer to the wiphy
1974 * @wdev: pointer to the wdev
1975 * @data: The netlink data
1976 * @data_len: The length of the netlink data in bytes
1977 *
1978 * Return: 0 on success.
1979 */
1980int wlan_hdd_cfg80211_dcc_update_ndl(struct wiphy *wiphy,
1981 struct wireless_dev *wdev,
1982 const void *data,
1983 int data_len)
1984{
1985 int ret;
1986
1987 cds_ssr_protect(__func__);
1988 ret = __wlan_hdd_cfg80211_dcc_update_ndl(wiphy, wdev,
1989 data, data_len);
1990 cds_ssr_unprotect(__func__);
1991
1992 return ret;
1993}
1994
1995/**
1996 * wlan_hdd_dcc_stats_event_callback() - Callback to get stats event
1997 * @context_ptr: request context
1998 * @response_ptr: response data
1999 */
2000static void wlan_hdd_dcc_stats_event_callback(void *context_ptr,
2001 void *response_ptr)
2002{
Jeff Johnson7106aba2017-08-28 11:49:07 -07002003 struct hdd_context *hdd_ctx = (struct hdd_context *)context_ptr;
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002004 struct sir_dcc_get_stats_response *resp = response_ptr;
2005 struct sk_buff *vendor_event;
2006
2007 ENTER();
2008
2009 vendor_event =
2010 cfg80211_vendor_event_alloc(hdd_ctx->wiphy,
2011 NULL, sizeof(uint32_t) + resp->channel_stats_array_len +
2012 NLMSG_HDRLEN,
2013 QCA_NL80211_VENDOR_SUBCMD_DCC_STATS_EVENT_INDEX,
2014 GFP_KERNEL);
2015
2016 if (!vendor_event) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07002017 hdd_err("cfg80211_vendor_event_alloc failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002018 return;
2019 }
2020
2021 if (nla_put_u32(vendor_event,
2022 QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_RESP_CHANNEL_COUNT,
2023 resp->num_channels) ||
2024 nla_put(vendor_event,
2025 QCA_WLAN_VENDOR_ATTR_DCC_GET_STATS_RESP_STATS_ARRAY,
2026 resp->channel_stats_array_len,
2027 resp->channel_stats_array)) {
Jeff Johnson5f735d52016-07-06 15:14:45 -07002028 hdd_err("nla put failed");
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002029 kfree_skb(vendor_event);
2030 return;
2031 }
2032
2033 cfg80211_vendor_event(vendor_event, GFP_KERNEL);
2034}
2035
2036/**
2037 * wlan_hdd_dcc_register_for_dcc_stats_event() - Register for dcc stats events
2038 * @hdd_ctx: hdd context
2039 */
Jeff Johnson7106aba2017-08-28 11:49:07 -07002040void wlan_hdd_dcc_register_for_dcc_stats_event(struct hdd_context *hdd_ctx)
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002041{
2042 int rc;
2043
2044 rc = sme_register_for_dcc_stats_event(hdd_ctx->hHal, hdd_ctx,
Arun Khandavalli4b55da72016-07-19 19:55:01 +05302045 wlan_hdd_dcc_stats_event_callback);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002046 if (rc)
Jeff Johnson5f735d52016-07-06 15:14:45 -07002047 hdd_err("Register callback failed: %d", rc);
Prakash Dhavali7090c5f2015-11-02 17:55:19 -08002048}