blob: c1f42291873783cb8968a6075c158f348bd97b04 [file] [log] [blame]
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001/*
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02005
Alexey Dobriyana6b7a402011-06-06 10:43:46 +00006#include <linux/hardirq.h>
Holger Schurig7919b892008-04-01 14:50:43 +02007#include <linux/kfifo.h>
Holger Schurige93156e2009-10-22 15:30:58 +02008#include <linux/sched.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09009#include <linux/slab.h>
Dan Williamsa45b6f42010-07-27 12:54:34 -070010#include <linux/if_arp.h>
Paul Gortmakeree40fa02011-05-27 16:14:23 -040011#include <linux/export.h>
Holger Schurige93156e2009-10-22 15:30:58 +020012
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020013#include "decl.h"
Kiran Divekare86dc1c2010-06-14 22:01:26 +053014#include "cfg.h"
Dan Williams6e66f032007-12-11 12:42:16 -050015#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020016
Dan Williams9fb76632010-07-27 12:55:21 -070017#define CAL_NF(nf) ((s32)(-(s32)(nf)))
18#define CAL_RSSI(snr, nf) ((s32)((s32)(snr) + CAL_NF(nf)))
Holger Schurige93156e2009-10-22 15:30:58 +020019
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020020/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070021 * lbs_cmd_copyback - Simple callback that copies response back into command
Holger Schurig8db4a2b2008-03-19 10:11:00 +010022 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070023 * @priv: A pointer to &struct lbs_private structure
24 * @extra: A pointer to the original command structure for which
25 * 'resp' is a response
26 * @resp: A pointer to the command response
Holger Schurig8db4a2b2008-03-19 10:11:00 +010027 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070028 * returns: 0 on success, error on failure
Holger Schurig8db4a2b2008-03-19 10:11:00 +010029 */
30int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
31 struct cmd_header *resp)
32{
33 struct cmd_header *buf = (void *)extra;
34 uint16_t copy_len;
35
36 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
37 memcpy(buf, resp, copy_len);
38 return 0;
39}
40EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
41
42/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070043 * lbs_cmd_async_callback - Simple callback that ignores the result.
44 * Use this if you just want to send a command to the hardware, but don't
Holger Schurig8db4a2b2008-03-19 10:11:00 +010045 * care for the result.
46 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070047 * @priv: ignored
48 * @extra: ignored
49 * @resp: ignored
Holger Schurig8db4a2b2008-03-19 10:11:00 +010050 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070051 * returns: 0 for success
Holger Schurig8db4a2b2008-03-19 10:11:00 +010052 */
53static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
54 struct cmd_header *resp)
55{
56 return 0;
57}
58
59
60/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070061 * is_command_allowed_in_ps - tests if a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020062 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070063 * @cmd: the command ID
64 *
65 * returns: 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020066 */
Dan Williams852e1f22007-12-10 15:24:47 -050067static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020068{
Dan Williams852e1f22007-12-10 15:24:47 -050069 switch (cmd) {
70 case CMD_802_11_RSSI:
71 return 1;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070072 case CMD_802_11_HOST_SLEEP_CFG:
73 return 1;
Dan Williams852e1f22007-12-10 15:24:47 -050074 default:
75 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020077 return 0;
78}
79
Dan Williams6e66f032007-12-11 12:42:16 -050080/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070081 * lbs_update_hw_spec - Updates the hardware details like MAC address
82 * and regulatory region
Dan Williams6e66f032007-12-11 12:42:16 -050083 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070084 * @priv: A pointer to &struct lbs_private structure
Dan Williams6e66f032007-12-11 12:42:16 -050085 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070086 * returns: 0 on success, error on failure
Dan Williams6e66f032007-12-11 12:42:16 -050087 */
88int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020089{
Dan Williams6e66f032007-12-11 12:42:16 -050090 struct cmd_ds_get_hw_spec cmd;
91 int ret = -1;
92 u32 i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020093
Dan Williams6e66f032007-12-11 12:42:16 -050094 memset(&cmd, 0, sizeof(cmd));
95 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
96 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050097 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050098 if (ret)
99 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200100
Dan Williams6e66f032007-12-11 12:42:16 -0500101 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500102
Holger Schurigdac10a92008-01-16 15:55:22 +0100103 /* The firmware release is in an interesting format: the patch
104 * level is in the most significant nibble ... so fix that: */
105 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
106 priv->fwrelease = (priv->fwrelease << 8) |
107 (priv->fwrelease >> 24 & 0xff);
108
109 /* Some firmware capabilities:
110 * CF card firmware 5.0.16p0: cap 0x00000303
111 * USB dongle firmware 5.110.17p2: cap 0x00000303
112 */
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700113 netdev_info(priv->dev, "%pM, fw %u.%u.%up%u, cap 0x%08x\n",
Johannes Berge1749612008-10-27 15:59:26 -0700114 cmd.permanentaddr,
Holger Schurigdac10a92008-01-16 15:55:22 +0100115 priv->fwrelease >> 24 & 0xff,
116 priv->fwrelease >> 16 & 0xff,
117 priv->fwrelease >> 8 & 0xff,
118 priv->fwrelease & 0xff,
119 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500120 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
121 cmd.hwifversion, cmd.version);
122
123 /* Clamp region code to 8-bit since FW spec indicates that it should
124 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
125 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200126 *
127 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
128 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500129 */
Marek Vasut15483992009-07-16 19:19:53 +0200130 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
131 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
132 else
133 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500134
135 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
136 /* use the region code to search for the index */
137 if (priv->regioncode == lbs_region_code_to_index[i])
138 break;
139 }
140
141 /* if it's unidentified region code, use the default (USA) */
142 if (i >= MRVDRV_MAX_REGION_CODE) {
143 priv->regioncode = 0x10;
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700144 netdev_info(priv->dev,
145 "unidentified region code; using the default (USA)\n");
Dan Williams6e66f032007-12-11 12:42:16 -0500146 }
147
148 if (priv->current_addr[0] == 0xff)
149 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
150
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200151 if (!priv->copied_hwaddr) {
152 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
153 if (priv->mesh_dev)
154 memcpy(priv->mesh_dev->dev_addr,
155 priv->current_addr, ETH_ALEN);
156 priv->copied_hwaddr = 1;
157 }
Dan Williams6e66f032007-12-11 12:42:16 -0500158
Dan Williams6e66f032007-12-11 12:42:16 -0500159out:
Dan Williams6e66f032007-12-11 12:42:16 -0500160 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200161}
162
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700163static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
164 struct cmd_header *resp)
165{
Amitkumar Karwar13118432010-07-08 06:43:48 +0530166 if (priv->is_host_sleep_activated) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700167 priv->is_host_sleep_configured = 0;
168 if (priv->psstate == PS_STATE_FULL_POWER) {
169 priv->is_host_sleep_activated = 0;
170 wake_up_interruptible(&priv->host_sleep_q);
171 }
172 } else {
173 priv->is_host_sleep_configured = 1;
174 }
Kees Cook4bc606a2017-05-15 14:33:17 -0700175
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700176 return 0;
177}
178
Anna Neal582c1b52008-10-20 16:46:56 -0700179int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
180 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500181{
182 struct cmd_ds_host_sleep cmd_config;
183 int ret;
184
Deepak Saxenaae63a332010-10-31 13:40:33 +0000185 /*
186 * Certain firmware versions do not support EHS_REMOVE_WAKEUP command
187 * and the card will return a failure. Since we need to be
188 * able to reset the mask, in those cases we set a 0 mask instead.
189 */
190 if (criteria == EHS_REMOVE_WAKEUP && !priv->ehs_remove_supported)
191 criteria = 0;
192
David Woodhouse9fae8992007-12-15 03:46:44 -0500193 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500194 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500195 cmd_config.gpio = priv->wol_gpio;
196 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500197
Anna Neal582c1b52008-10-20 16:46:56 -0700198 if (p_wol_config != NULL)
199 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
200 sizeof(struct wol_config));
201 else
202 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
203
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700204 ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
205 le16_to_cpu(cmd_config.hdr.size),
206 lbs_ret_host_sleep_cfg, 0);
David Woodhouse506e9022007-12-12 20:06:06 -0500207 if (!ret) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700208 if (p_wol_config)
Anna Neal582c1b52008-10-20 16:46:56 -0700209 memcpy((uint8_t *) p_wol_config,
210 (uint8_t *)&cmd_config.wol_conf,
211 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500212 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700213 netdev_info(priv->dev, "HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500214 }
David Woodhouse506e9022007-12-12 20:06:06 -0500215
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500216 return ret;
217}
218EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
219
Dan Williams0bb64082010-07-27 13:08:08 -0700220/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700221 * lbs_set_ps_mode - Sets the Power Save mode
Dan Williams0bb64082010-07-27 13:08:08 -0700222 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700223 * @priv: A pointer to &struct lbs_private structure
224 * @cmd_action: The Power Save operation (PS_MODE_ACTION_ENTER_PS or
Dan Williams0bb64082010-07-27 13:08:08 -0700225 * PS_MODE_ACTION_EXIT_PS)
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700226 * @block: Whether to block on a response or not
Dan Williams0bb64082010-07-27 13:08:08 -0700227 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700228 * returns: 0 on success, error on failure
Dan Williams0bb64082010-07-27 13:08:08 -0700229 */
230int lbs_set_ps_mode(struct lbs_private *priv, u16 cmd_action, bool block)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200231{
Dan Williams0bb64082010-07-27 13:08:08 -0700232 struct cmd_ds_802_11_ps_mode cmd;
233 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200234
Dan Williams0bb64082010-07-27 13:08:08 -0700235 memset(&cmd, 0, sizeof(cmd));
236 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
237 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200238
Dan Williams0bb64082010-07-27 13:08:08 -0700239 if (cmd_action == PS_MODE_ACTION_ENTER_PS) {
240 lbs_deb_cmd("PS_MODE: action ENTER_PS\n");
241 cmd.multipledtim = cpu_to_le16(1); /* Default DTIM multiple */
242 } else if (cmd_action == PS_MODE_ACTION_EXIT_PS) {
243 lbs_deb_cmd("PS_MODE: action EXIT_PS\n");
244 } else {
245 /* We don't handle CONFIRM_SLEEP here because it needs to
246 * be fastpathed to the firmware.
247 */
248 lbs_deb_cmd("PS_MODE: unknown action 0x%X\n", cmd_action);
249 ret = -EOPNOTSUPP;
250 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200251 }
252
Dan Williams0bb64082010-07-27 13:08:08 -0700253 if (block)
254 ret = lbs_cmd_with_response(priv, CMD_802_11_PS_MODE, &cmd);
255 else
256 lbs_cmd_async(priv, CMD_802_11_PS_MODE, &cmd.hdr, sizeof (cmd));
257
258out:
Dan Williams0bb64082010-07-27 13:08:08 -0700259 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200260}
261
David Woodhouse3fbe1042007-12-17 23:48:31 -0500262int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
263 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200264{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500265 struct cmd_ds_802_11_sleep_params cmd;
266 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267
Dan Williams0aef64d2007-08-02 11:31:18 -0400268 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500269 memset(&cmd, 0, sizeof(cmd));
270 } else {
271 cmd.error = cpu_to_le16(sp->sp_error);
272 cmd.offset = cpu_to_le16(sp->sp_offset);
273 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
274 cmd.calcontrol = sp->sp_calcontrol;
275 cmd.externalsleepclk = sp->sp_extsleepclk;
276 cmd.reserved = cpu_to_le16(sp->sp_reserved);
277 }
278 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
279 cmd.action = cpu_to_le16(cmd_action);
280
281 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
282
283 if (!ret) {
284 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
285 "calcontrol 0x%x extsleepclk 0x%x\n",
286 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
287 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
288 cmd.externalsleepclk);
289
290 sp->sp_error = le16_to_cpu(cmd.error);
291 sp->sp_offset = le16_to_cpu(cmd.offset);
292 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
293 sp->sp_calcontrol = cmd.calcontrol;
294 sp->sp_extsleepclk = cmd.externalsleepclk;
295 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200296 }
297
Pan Bian259010c2016-12-03 18:27:37 +0800298 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200299}
300
Amitkumar Karwar49125452009-09-30 20:04:38 -0700301static int lbs_wait_for_ds_awake(struct lbs_private *priv)
302{
303 int ret = 0;
304
Amitkumar Karwar49125452009-09-30 20:04:38 -0700305 if (priv->is_deep_sleep) {
306 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
307 !priv->is_deep_sleep, (10 * HZ))) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700308 netdev_err(priv->dev, "ds_awake_q: timer expired\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700309 ret = -1;
310 }
311 }
312
Amitkumar Karwar49125452009-09-30 20:04:38 -0700313 return ret;
314}
315
316int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
317{
318 int ret = 0;
319
Amitkumar Karwar49125452009-09-30 20:04:38 -0700320 if (deep_sleep) {
321 if (priv->is_deep_sleep != 1) {
322 lbs_deb_cmd("deep sleep: sleep\n");
323 BUG_ON(!priv->enter_deep_sleep);
324 ret = priv->enter_deep_sleep(priv);
325 if (!ret) {
326 netif_stop_queue(priv->dev);
327 netif_carrier_off(priv->dev);
328 }
329 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700330 netdev_err(priv->dev, "deep sleep: already enabled\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700331 }
332 } else {
333 if (priv->is_deep_sleep) {
334 lbs_deb_cmd("deep sleep: wakeup\n");
335 BUG_ON(!priv->exit_deep_sleep);
336 ret = priv->exit_deep_sleep(priv);
337 if (!ret) {
338 ret = lbs_wait_for_ds_awake(priv);
339 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700340 netdev_err(priv->dev,
341 "deep sleep: wakeup failed\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700342 }
343 }
344 }
345
Amitkumar Karwar49125452009-09-30 20:04:38 -0700346 return ret;
347}
348
Amitkumar Karwar13118432010-07-08 06:43:48 +0530349static int lbs_ret_host_sleep_activate(struct lbs_private *priv,
350 unsigned long dummy,
351 struct cmd_header *cmd)
352{
Amitkumar Karwar13118432010-07-08 06:43:48 +0530353 priv->is_host_sleep_activated = 1;
354 wake_up_interruptible(&priv->host_sleep_q);
Kees Cook4bc606a2017-05-15 14:33:17 -0700355
Amitkumar Karwar13118432010-07-08 06:43:48 +0530356 return 0;
357}
358
359int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep)
360{
361 struct cmd_header cmd;
362 int ret = 0;
363 uint32_t criteria = EHS_REMOVE_WAKEUP;
364
Amitkumar Karwar13118432010-07-08 06:43:48 +0530365 if (host_sleep) {
366 if (priv->is_host_sleep_activated != 1) {
367 memset(&cmd, 0, sizeof(cmd));
368 ret = lbs_host_sleep_cfg(priv, priv->wol_criteria,
369 (struct wol_config *)NULL);
370 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700371 netdev_info(priv->dev,
372 "Host sleep configuration failed: %d\n",
373 ret);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530374 return ret;
375 }
376 if (priv->psstate == PS_STATE_FULL_POWER) {
377 ret = __lbs_cmd(priv,
378 CMD_802_11_HOST_SLEEP_ACTIVATE,
379 &cmd,
380 sizeof(cmd),
381 lbs_ret_host_sleep_activate, 0);
382 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700383 netdev_info(priv->dev,
384 "HOST_SLEEP_ACTIVATE failed: %d\n",
385 ret);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530386 }
387
388 if (!wait_event_interruptible_timeout(
389 priv->host_sleep_q,
390 priv->is_host_sleep_activated,
391 (10 * HZ))) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700392 netdev_err(priv->dev,
393 "host_sleep_q: timer expired\n");
Amitkumar Karwar13118432010-07-08 06:43:48 +0530394 ret = -1;
395 }
396 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700397 netdev_err(priv->dev, "host sleep: already enabled\n");
Amitkumar Karwar13118432010-07-08 06:43:48 +0530398 }
399 } else {
400 if (priv->is_host_sleep_activated)
401 ret = lbs_host_sleep_cfg(priv, criteria,
402 (struct wol_config *)NULL);
403 }
404
405 return ret;
406}
407
Dan Williams39fcf7a2008-09-10 12:49:00 -0400408/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700409 * lbs_set_snmp_mib - Set an SNMP MIB value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400410 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700411 * @priv: A pointer to &struct lbs_private structure
412 * @oid: The OID to set in the firmware
413 * @val: Value to set the OID to
Dan Williams39fcf7a2008-09-10 12:49:00 -0400414 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700415 * returns: 0 on success, error on failure
Dan Williams39fcf7a2008-09-10 12:49:00 -0400416 */
417int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200418{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400419 struct cmd_ds_802_11_snmp_mib cmd;
420 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200421
Dan Williams39fcf7a2008-09-10 12:49:00 -0400422 memset(&cmd, 0, sizeof (cmd));
423 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
424 cmd.action = cpu_to_le16(CMD_ACT_SET);
425 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200426
Dan Williams39fcf7a2008-09-10 12:49:00 -0400427 switch (oid) {
428 case SNMP_MIB_OID_BSS_TYPE:
429 cmd.bufsize = cpu_to_le16(sizeof(u8));
Holger Schurigfef06402009-10-22 15:30:59 +0200430 cmd.value[0] = val;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200431 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400432 case SNMP_MIB_OID_11D_ENABLE:
433 case SNMP_MIB_OID_FRAG_THRESHOLD:
434 case SNMP_MIB_OID_RTS_THRESHOLD:
435 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
436 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
437 cmd.bufsize = cpu_to_le16(sizeof(u16));
438 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200439 break;
440 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400441 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
442 ret = -EINVAL;
443 goto out;
444 }
445
446 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
447 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
448
449 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
450
451out:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400452 return ret;
453}
454
455/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700456 * lbs_get_snmp_mib - Get an SNMP MIB value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400457 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700458 * @priv: A pointer to &struct lbs_private structure
459 * @oid: The OID to retrieve from the firmware
460 * @out_val: Location for the returned value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400461 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700462 * returns: 0 on success, error on failure
Dan Williams39fcf7a2008-09-10 12:49:00 -0400463 */
464int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
465{
466 struct cmd_ds_802_11_snmp_mib cmd;
467 int ret;
468
Dan Williams39fcf7a2008-09-10 12:49:00 -0400469 memset(&cmd, 0, sizeof (cmd));
470 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
471 cmd.action = cpu_to_le16(CMD_ACT_GET);
472 cmd.oid = cpu_to_le16(oid);
473
474 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
475 if (ret)
476 goto out;
477
478 switch (le16_to_cpu(cmd.bufsize)) {
479 case sizeof(u8):
Holger Schurigfef06402009-10-22 15:30:59 +0200480 *out_val = cmd.value[0];
Dan Williams39fcf7a2008-09-10 12:49:00 -0400481 break;
482 case sizeof(u16):
483 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
484 break;
485 default:
486 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
487 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200488 break;
489 }
490
Dan Williams39fcf7a2008-09-10 12:49:00 -0400491out:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400492 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493}
494
Dan Williams87c8c722008-08-19 15:15:35 -0400495/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700496 * lbs_get_tx_power - Get the min, max, and current TX power
Dan Williams87c8c722008-08-19 15:15:35 -0400497 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700498 * @priv: A pointer to &struct lbs_private structure
499 * @curlevel: Current power level in dBm
500 * @minlevel: Minimum supported power level in dBm (optional)
501 * @maxlevel: Maximum supported power level in dBm (optional)
Dan Williams87c8c722008-08-19 15:15:35 -0400502 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700503 * returns: 0 on success, error on failure
Dan Williams87c8c722008-08-19 15:15:35 -0400504 */
505int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
506 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200507{
Dan Williams87c8c722008-08-19 15:15:35 -0400508 struct cmd_ds_802_11_rf_tx_power cmd;
509 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200510
Dan Williams87c8c722008-08-19 15:15:35 -0400511 memset(&cmd, 0, sizeof(cmd));
512 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
513 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200514
Dan Williams87c8c722008-08-19 15:15:35 -0400515 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
516 if (ret == 0) {
517 *curlevel = le16_to_cpu(cmd.curlevel);
518 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100519 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400520 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100521 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200522 }
Holger Schurig9012b282007-05-25 11:27:16 -0400523
Dan Williams87c8c722008-08-19 15:15:35 -0400524 return ret;
525}
526
527/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700528 * lbs_set_tx_power - Set the TX power
Dan Williams87c8c722008-08-19 15:15:35 -0400529 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700530 * @priv: A pointer to &struct lbs_private structure
531 * @dbm: The desired power level in dBm
Dan Williams87c8c722008-08-19 15:15:35 -0400532 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700533 * returns: 0 on success, error on failure
Dan Williams87c8c722008-08-19 15:15:35 -0400534 */
535int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
536{
537 struct cmd_ds_802_11_rf_tx_power cmd;
538 int ret;
539
Dan Williams87c8c722008-08-19 15:15:35 -0400540 memset(&cmd, 0, sizeof(cmd));
541 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
542 cmd.action = cpu_to_le16(CMD_ACT_SET);
543 cmd.curlevel = cpu_to_le16(dbm);
544
545 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
546
547 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
548
Dan Williams87c8c722008-08-19 15:15:35 -0400549 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550}
551
Dan Williamsa45b6f42010-07-27 12:54:34 -0700552/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700553 * lbs_set_monitor_mode - Enable or disable monitor mode
554 * (only implemented on OLPC usb8388 FW)
Dan Williamsa45b6f42010-07-27 12:54:34 -0700555 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700556 * @priv: A pointer to &struct lbs_private structure
557 * @enable: 1 to enable monitor mode, 0 to disable
Dan Williamsa45b6f42010-07-27 12:54:34 -0700558 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700559 * returns: 0 on success, error on failure
Dan Williamsa45b6f42010-07-27 12:54:34 -0700560 */
561int lbs_set_monitor_mode(struct lbs_private *priv, int enable)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400562{
Dan Williamsa45b6f42010-07-27 12:54:34 -0700563 struct cmd_ds_802_11_monitor_mode cmd;
564 int ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400565
Dan Williamsa45b6f42010-07-27 12:54:34 -0700566 memset(&cmd, 0, sizeof(cmd));
567 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
568 cmd.action = cpu_to_le16(CMD_ACT_SET);
569 if (enable)
570 cmd.mode = cpu_to_le16(0x1);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400571
Dan Williamsa45b6f42010-07-27 12:54:34 -0700572 lbs_deb_cmd("SET_MONITOR_MODE: %d\n", enable);
573
574 ret = lbs_cmd_with_response(priv, CMD_802_11_MONITOR_MODE, &cmd);
575 if (ret == 0) {
576 priv->dev->type = enable ? ARPHRD_IEEE80211_RADIOTAP :
577 ARPHRD_ETHER;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400578 }
579
Dan Williamsa45b6f42010-07-27 12:54:34 -0700580 return ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400581}
582
Dan Williams2dd4b262007-12-11 16:54:15 -0500583/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700584 * lbs_get_channel - Get the radio channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500585 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700586 * @priv: A pointer to &struct lbs_private structure
Dan Williams2dd4b262007-12-11 16:54:15 -0500587 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700588 * returns: The channel on success, error on failure
Dan Williams2dd4b262007-12-11 16:54:15 -0500589 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200590static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200591{
Dan Williams2dd4b262007-12-11 16:54:15 -0500592 struct cmd_ds_802_11_rf_channel cmd;
593 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200594
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200595 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500596 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
597 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200598
David Woodhouse689442d2007-12-12 16:00:42 -0500599 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500600 if (ret)
601 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200602
Dan Williamscb182a62007-12-11 17:35:51 -0500603 ret = le16_to_cpu(cmd.channel);
604 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500605
606out:
Dan Williams2dd4b262007-12-11 16:54:15 -0500607 return ret;
608}
609
Holger Schurig73ab1f22008-04-02 16:52:19 +0200610int lbs_update_channel(struct lbs_private *priv)
611{
612 int ret;
613
614 /* the channel in f/w could be out of sync; get the current channel */
Holger Schurig73ab1f22008-04-02 16:52:19 +0200615 ret = lbs_get_channel(priv);
616 if (ret > 0) {
Holger Schurigc14951f2009-10-22 15:30:50 +0200617 priv->channel = ret;
Holger Schurig73ab1f22008-04-02 16:52:19 +0200618 ret = 0;
619 }
Kees Cook4bc606a2017-05-15 14:33:17 -0700620
Holger Schurig73ab1f22008-04-02 16:52:19 +0200621 return ret;
622}
623
Dan Williams2dd4b262007-12-11 16:54:15 -0500624/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700625 * lbs_set_channel - Set the radio channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500626 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700627 * @priv: A pointer to &struct lbs_private structure
628 * @channel: The desired channel, or 0 to clear a locked channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500629 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700630 * returns: 0 on success, error on failure
Dan Williams2dd4b262007-12-11 16:54:15 -0500631 */
632int lbs_set_channel(struct lbs_private *priv, u8 channel)
633{
634 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530635#ifdef DEBUG
Holger Schurigc14951f2009-10-22 15:30:50 +0200636 u8 old_channel = priv->channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530637#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500638 int ret = 0;
639
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200640 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500641 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
642 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
643 cmd.channel = cpu_to_le16(channel);
644
David Woodhouse689442d2007-12-12 16:00:42 -0500645 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500646 if (ret)
647 goto out;
648
Holger Schurigc14951f2009-10-22 15:30:50 +0200649 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
Dan Williamscb182a62007-12-11 17:35:51 -0500650 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
Holger Schurigc14951f2009-10-22 15:30:50 +0200651 priv->channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500652
653out:
Dan Williams2dd4b262007-12-11 16:54:15 -0500654 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200655}
656
Dan Williams9fb76632010-07-27 12:55:21 -0700657/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700658 * lbs_get_rssi - Get current RSSI and noise floor
Dan Williams9fb76632010-07-27 12:55:21 -0700659 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700660 * @priv: A pointer to &struct lbs_private structure
661 * @rssi: On successful return, signal level in mBm
662 * @nf: On successful return, Noise floor
Dan Williams9fb76632010-07-27 12:55:21 -0700663 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700664 * returns: The channel on success, error on failure
Dan Williams9fb76632010-07-27 12:55:21 -0700665 */
666int lbs_get_rssi(struct lbs_private *priv, s8 *rssi, s8 *nf)
667{
668 struct cmd_ds_802_11_rssi cmd;
669 int ret = 0;
670
Dan Williams9fb76632010-07-27 12:55:21 -0700671 BUG_ON(rssi == NULL);
672 BUG_ON(nf == NULL);
673
674 memset(&cmd, 0, sizeof(cmd));
675 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
676 /* Average SNR over last 8 beacons */
677 cmd.n_or_snr = cpu_to_le16(8);
678
679 ret = lbs_cmd_with_response(priv, CMD_802_11_RSSI, &cmd);
680 if (ret == 0) {
681 *nf = CAL_NF(le16_to_cpu(cmd.nf));
682 *rssi = CAL_RSSI(le16_to_cpu(cmd.n_or_snr), le16_to_cpu(cmd.nf));
683 }
684
Dan Williams9fb76632010-07-27 12:55:21 -0700685 return ret;
686}
687
Dan Williamscc4b9d32010-07-27 12:56:05 -0700688/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700689 * lbs_set_11d_domain_info - Send regulatory and 802.11d domain information
690 * to the firmware
Dan Williamscc4b9d32010-07-27 12:56:05 -0700691 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700692 * @priv: pointer to &struct lbs_private
Dan Williamscc4b9d32010-07-27 12:56:05 -0700693 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700694 * returns: 0 on success, error code on failure
Dan Williamscc4b9d32010-07-27 12:56:05 -0700695*/
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100696int lbs_set_11d_domain_info(struct lbs_private *priv)
Dan Williamscc4b9d32010-07-27 12:56:05 -0700697{
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100698 struct wiphy *wiphy = priv->wdev->wiphy;
699 struct ieee80211_supported_band **bands = wiphy->bands;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700700 struct cmd_ds_802_11d_domain_info cmd;
701 struct mrvl_ie_domain_param_set *domain = &cmd.domain;
702 struct ieee80211_country_ie_triplet *t;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200703 enum nl80211_band band;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700704 struct ieee80211_channel *ch;
705 u8 num_triplet = 0;
706 u8 num_parsed_chan = 0;
707 u8 first_channel = 0, next_chan = 0, max_pwr = 0;
708 u8 i, flag = 0;
709 size_t triplet_size;
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100710 int ret = 0;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700711
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100712 if (!priv->country_code[0])
713 goto out;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700714
715 memset(&cmd, 0, sizeof(cmd));
716 cmd.action = cpu_to_le16(CMD_ACT_SET);
717
718 lbs_deb_11d("Setting country code '%c%c'\n",
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100719 priv->country_code[0], priv->country_code[1]);
Dan Williamscc4b9d32010-07-27 12:56:05 -0700720
721 domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);
722
723 /* Set country code */
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100724 domain->country_code[0] = priv->country_code[0];
725 domain->country_code[1] = priv->country_code[1];
Dan Williamscc4b9d32010-07-27 12:56:05 -0700726 domain->country_code[2] = ' ';
727
728 /* Now set up the channel triplets; firmware is somewhat picky here
729 * and doesn't validate channel numbers and spans; hence it would
730 * interpret a triplet of (36, 4, 20) as channels 36, 37, 38, 39. Since
731 * the last 3 aren't valid channels, the driver is responsible for
732 * splitting that up into 4 triplet pairs of (36, 1, 20) + (40, 1, 20)
733 * etc.
734 */
735 for (band = 0;
Johannes Berg57fbcce2016-04-12 15:56:15 +0200736 (band < NUM_NL80211_BANDS) && (num_triplet < MAX_11D_TRIPLETS);
Dan Williamscc4b9d32010-07-27 12:56:05 -0700737 band++) {
738
739 if (!bands[band])
740 continue;
741
742 for (i = 0;
743 (i < bands[band]->n_channels) && (num_triplet < MAX_11D_TRIPLETS);
744 i++) {
745 ch = &bands[band]->channels[i];
746 if (ch->flags & IEEE80211_CHAN_DISABLED)
747 continue;
748
749 if (!flag) {
750 flag = 1;
751 next_chan = first_channel = (u32) ch->hw_value;
752 max_pwr = ch->max_power;
753 num_parsed_chan = 1;
754 continue;
755 }
756
757 if ((ch->hw_value == next_chan + 1) &&
758 (ch->max_power == max_pwr)) {
759 /* Consolidate adjacent channels */
760 next_chan++;
761 num_parsed_chan++;
762 } else {
763 /* Add this triplet */
764 lbs_deb_11d("11D triplet (%d, %d, %d)\n",
765 first_channel, num_parsed_chan,
766 max_pwr);
767 t = &domain->triplet[num_triplet];
768 t->chans.first_channel = first_channel;
769 t->chans.num_channels = num_parsed_chan;
770 t->chans.max_power = max_pwr;
771 num_triplet++;
772 flag = 0;
773 }
774 }
775
776 if (flag) {
777 /* Add last triplet */
778 lbs_deb_11d("11D triplet (%d, %d, %d)\n", first_channel,
779 num_parsed_chan, max_pwr);
780 t = &domain->triplet[num_triplet];
781 t->chans.first_channel = first_channel;
782 t->chans.num_channels = num_parsed_chan;
783 t->chans.max_power = max_pwr;
784 num_triplet++;
785 }
786 }
787
788 lbs_deb_11d("# triplets %d\n", num_triplet);
789
790 /* Set command header sizes */
791 triplet_size = num_triplet * sizeof(struct ieee80211_country_ie_triplet);
792 domain->header.len = cpu_to_le16(sizeof(domain->country_code) +
793 triplet_size);
794
795 lbs_deb_hex(LBS_DEB_11D, "802.11D domain param set",
796 (u8 *) &cmd.domain.country_code,
797 le16_to_cpu(domain->header.len));
798
799 cmd.hdr.size = cpu_to_le16(sizeof(cmd.hdr) +
800 sizeof(cmd.action) +
801 sizeof(cmd.domain.header) +
802 sizeof(cmd.domain.country_code) +
803 triplet_size);
804
805 ret = lbs_cmd_with_response(priv, CMD_802_11D_DOMAIN_INFO, &cmd);
806
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100807out:
Dan Williamscc4b9d32010-07-27 12:56:05 -0700808 return ret;
809}
810
Dan Williams4c7c6e002010-07-27 13:01:07 -0700811/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700812 * lbs_get_reg - Read a MAC, Baseband, or RF register
Dan Williams4c7c6e002010-07-27 13:01:07 -0700813 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700814 * @priv: pointer to &struct lbs_private
815 * @reg: register command, one of CMD_MAC_REG_ACCESS,
816 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
817 * @offset: byte offset of the register to get
818 * @value: on success, the value of the register at 'offset'
Dan Williams4c7c6e002010-07-27 13:01:07 -0700819 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700820 * returns: 0 on success, error code on failure
Dan Williams4c7c6e002010-07-27 13:01:07 -0700821*/
822int lbs_get_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 *value)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200823{
Dan Williams4c7c6e002010-07-27 13:01:07 -0700824 struct cmd_ds_reg_access cmd;
825 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200826
Dan Williams4c7c6e002010-07-27 13:01:07 -0700827 BUG_ON(value == NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200828
Dan Williams4c7c6e002010-07-27 13:01:07 -0700829 memset(&cmd, 0, sizeof(cmd));
830 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
831 cmd.action = cpu_to_le16(CMD_ACT_GET);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200832 cmd.offset = cpu_to_le16(offset);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200833
Dan Williams4c7c6e002010-07-27 13:01:07 -0700834 if (reg != CMD_MAC_REG_ACCESS &&
835 reg != CMD_BBP_REG_ACCESS &&
836 reg != CMD_RF_REG_ACCESS) {
837 ret = -EINVAL;
838 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200839 }
840
Dan Williams4c7c6e002010-07-27 13:01:07 -0700841 ret = lbs_cmd_with_response(priv, reg, &cmd);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200842 if (!ret) {
Dan Williams4c7c6e002010-07-27 13:01:07 -0700843 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
844 *value = cmd.value.bbp_rf;
845 else if (reg == CMD_MAC_REG_ACCESS)
846 *value = le32_to_cpu(cmd.value.mac);
847 }
848
849out:
Dan Williams4c7c6e002010-07-27 13:01:07 -0700850 return ret;
851}
852
853/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700854 * lbs_set_reg - Write a MAC, Baseband, or RF register
Dan Williams4c7c6e002010-07-27 13:01:07 -0700855 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700856 * @priv: pointer to &struct lbs_private
857 * @reg: register command, one of CMD_MAC_REG_ACCESS,
858 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
859 * @offset: byte offset of the register to set
860 * @value: the value to write to the register at 'offset'
Dan Williams4c7c6e002010-07-27 13:01:07 -0700861 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700862 * returns: 0 on success, error code on failure
Dan Williams4c7c6e002010-07-27 13:01:07 -0700863*/
864int lbs_set_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 value)
865{
866 struct cmd_ds_reg_access cmd;
867 int ret = 0;
868
Dan Williams4c7c6e002010-07-27 13:01:07 -0700869 memset(&cmd, 0, sizeof(cmd));
870 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
871 cmd.action = cpu_to_le16(CMD_ACT_SET);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200872 cmd.offset = cpu_to_le16(offset);
Dan Williams4c7c6e002010-07-27 13:01:07 -0700873
874 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
875 cmd.value.bbp_rf = (u8) (value & 0xFF);
876 else if (reg == CMD_MAC_REG_ACCESS)
877 cmd.value.mac = cpu_to_le32(value);
878 else {
879 ret = -EINVAL;
880 goto out;
881 }
882
883 ret = lbs_cmd_with_response(priv, reg, &cmd);
884
885out:
Dan Williams4c7c6e002010-07-27 13:01:07 -0700886 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200887}
888
David Woodhouse681ffbb2007-12-15 20:04:54 -0500889static void lbs_queue_cmd(struct lbs_private *priv,
890 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200891{
892 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -0500893 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200894
David Woodhousec4ab4122007-12-15 00:41:51 -0500895 if (!cmdnode) {
896 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Kees Cook4bc606a2017-05-15 14:33:17 -0700897 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200898 }
David Woodhoused9896ee2007-12-15 00:09:25 -0500899 if (!cmdnode->cmdbuf->size) {
900 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
Kees Cook4bc606a2017-05-15 14:33:17 -0700901 return;
David Woodhoused9896ee2007-12-15 00:09:25 -0500902 }
David Woodhouseae125bf2007-12-15 04:22:52 -0500903 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200904
905 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -0500906 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
Andreas Kemnade0a7701b2016-01-30 18:01:51 +0100907 struct cmd_ds_802_11_ps_mode *psm = (void *)cmdnode->cmdbuf;
Dan Williamsddac4522007-12-11 13:49:39 -0500908
Dan Williams0bb64082010-07-27 13:08:08 -0700909 if (psm->action == cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000910 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200911 addtail = 0;
912 }
913 }
914
Dan Williams0bb64082010-07-27 13:08:08 -0700915 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_WAKEUP_CONFIRM)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700916 addtail = 0;
917
David Woodhouseaa21c002007-12-08 20:04:36 +0000918 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200919
David Woodhouseac472462007-12-08 00:35:00 +0000920 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +0000921 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +0000922 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000923 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200924
David Woodhouseaa21c002007-12-08 20:04:36 +0000925 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200926
Holger Schurig8ff12da2007-08-02 11:54:31 -0400927 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -0500928 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200929}
930
David Woodhouse18c52e72007-12-17 16:03:58 -0500931static void lbs_submit_command(struct lbs_private *priv,
932 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200933{
934 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -0500935 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -0500936 uint16_t cmdsize;
937 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +0200938 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500939 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200940
Dan Williamsddac4522007-12-11 13:49:39 -0500941 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200942
David Woodhouseaa21c002007-12-08 20:04:36 +0000943 spin_lock_irqsave(&priv->driver_lock, flags);
Daniel Drake71005be2011-05-26 21:31:08 +0100944 priv->seqnum++;
945 cmd->seqnum = cpu_to_le16(priv->seqnum);
David Woodhouseaa21c002007-12-08 20:04:36 +0000946 priv->cur_cmd = cmdnode;
David Woodhouseaa21c002007-12-08 20:04:36 +0000947 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200948
Dan Williamsddac4522007-12-11 13:49:39 -0500949 cmdsize = le16_to_cpu(cmd->size);
950 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200951
David Woodhouse18c52e72007-12-17 16:03:58 -0500952 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -0400953 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +0200954 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500955
Holger Schurige5225b32008-03-26 10:04:44 +0100956 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
957 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100958 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -0400959
Dan Williamsddac4522007-12-11 13:49:39 -0500960 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -0500961
David Woodhoused9896ee2007-12-15 00:09:25 -0500962 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700963 netdev_info(priv->dev, "DNLD_CMD: hw_host_to_card failed: %d\n",
964 ret);
Daniel Drake9c3099f2012-07-15 23:47:51 +0100965 /* Reset dnld state machine, report failure */
966 priv->dnld_sent = DNLD_RES_RECEIVED;
967 lbs_complete_command(priv, cmdnode, ret);
Holger Schurig1afc09ab2008-01-29 09:14:40 +0100968 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200969
Amitkumar Karwar49125452009-09-30 20:04:38 -0700970 if (command == CMD_802_11_DEEP_SLEEP) {
971 if (priv->is_auto_deep_sleep_enabled) {
972 priv->wakeup_dev_required = 1;
973 priv->dnld_sent = 0;
974 }
975 priv->is_deep_sleep = 1;
976 lbs_complete_command(priv, cmdnode, 0);
977 } else {
978 /* Setup the timer after transmit command */
979 mod_timer(&priv->command_timer, jiffies + timeo);
980 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200981}
982
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700983/*
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200984 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +0000985 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200986 */
David Woodhouse183aeac2007-12-15 01:52:54 -0500987static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500988 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500990 if (!cmdnode)
Kees Cook4bc606a2017-05-15 14:33:17 -0700991 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200992
David Woodhouse5ba2f8a2007-12-15 02:02:56 -0500993 cmdnode->callback = NULL;
994 cmdnode->callback_arg = 0;
995
996 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
997
998 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200999}
1000
Holger Schurig69f90322007-11-23 15:43:44 +01001001static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1002 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001003{
1004 unsigned long flags;
1005
David Woodhouseaa21c002007-12-08 20:04:36 +00001006 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001007 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001008 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001009}
1010
Daniel Drakedf90d842011-07-09 15:41:25 +01001011void __lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1012 int result)
David Woodhouse183aeac2007-12-15 01:52:54 -05001013{
Daniel Drakedf90d842011-07-09 15:41:25 +01001014 /*
1015 * Normally, commands are removed from cmdpendingq before being
1016 * submitted. However, we can arrive here on alternative codepaths
1017 * where the command is still pending. Make sure the command really
1018 * isn't part of a list at this point.
1019 */
1020 list_del_init(&cmd->list);
1021
David Woodhouseae125bf2007-12-15 04:22:52 -05001022 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001023 cmd->cmdwaitqwoken = 1;
Daniel Drakedf90d842011-07-09 15:41:25 +01001024 wake_up(&cmd->cmdwait_q);
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001025
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001026 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001027 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001028 priv->cur_cmd = NULL;
Daniel Draked2e7b342011-08-01 16:43:13 +01001029 wake_up(&priv->waitq);
Daniel Drakedf90d842011-07-09 15:41:25 +01001030}
1031
1032void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1033 int result)
1034{
1035 unsigned long flags;
1036 spin_lock_irqsave(&priv->driver_lock, flags);
1037 __lbs_complete_command(priv, cmd, result);
1038 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouse183aeac2007-12-15 01:52:54 -05001039}
1040
Dan Williamsd5db2df2008-08-21 17:51:07 -04001041int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001042{
David Woodhousea7c45892007-12-17 22:43:48 -05001043 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001044 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001045
David Woodhousea7c45892007-12-17 22:43:48 -05001046 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1047 cmd.action = cpu_to_le16(CMD_ACT_SET);
Rickard Strandqvistc0f36eb2014-06-01 14:39:20 +02001048 cmd.control = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001049
Dan Williamsd5db2df2008-08-21 17:51:07 -04001050 /* Only v8 and below support setting the preamble */
1051 if (priv->fwrelease < 0x09000000) {
1052 switch (preamble) {
1053 case RADIO_PREAMBLE_SHORT:
Dan Williamsd5db2df2008-08-21 17:51:07 -04001054 case RADIO_PREAMBLE_AUTO:
1055 case RADIO_PREAMBLE_LONG:
1056 cmd.control = cpu_to_le16(preamble);
1057 break;
1058 default:
1059 goto out;
1060 }
David Woodhousea7c45892007-12-17 22:43:48 -05001061 }
1062
Dan Williamsd5db2df2008-08-21 17:51:07 -04001063 if (radio_on)
1064 cmd.control |= cpu_to_le16(0x1);
1065 else {
1066 cmd.control &= cpu_to_le16(~0x1);
1067 priv->txpower_cur = 0;
1068 }
David Woodhousea7c45892007-12-17 22:43:48 -05001069
Dan Williamsd5db2df2008-08-21 17:51:07 -04001070 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1071 radio_on ? "ON" : "OFF", preamble);
1072
1073 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -05001074
1075 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076
Dan Williamsd5db2df2008-08-21 17:51:07 -04001077out:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078 return ret;
1079}
1080
Holger Schurigc97329e2008-03-18 11:20:21 +01001081void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001082{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001083 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001084
Holger Schurig835d3ac2008-03-12 16:05:40 +01001085 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001086 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001087 cmd.reserved = 0;
1088
David Woodhouse75bf45a2008-05-20 13:32:45 +01001089 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001090}
1091
Daniel Drake871fc092012-09-11 11:38:11 -04001092int lbs_set_mac_control_sync(struct lbs_private *priv)
1093{
1094 struct cmd_ds_mac_control cmd;
1095 int ret = 0;
1096
Daniel Drake871fc092012-09-11 11:38:11 -04001097 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1098 cmd.action = cpu_to_le16(priv->mac_control);
1099 cmd.reserved = 0;
1100 ret = lbs_cmd_with_response(priv, CMD_MAC_CONTROL, &cmd);
1101
Daniel Drake871fc092012-09-11 11:38:11 -04001102 return ret;
1103}
1104
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001105/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001106 * lbs_allocate_cmd_buffer - allocates the command buffer and links
1107 * it to command free queue
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001108 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001109 * @priv: A pointer to &struct lbs_private structure
1110 *
1111 * returns: 0 for success or -1 on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001112 */
Holger Schurig69f90322007-11-23 15:43:44 +01001113int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114{
1115 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001116 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001117 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001118 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001119
Dan Williamsddac4522007-12-11 13:49:39 -05001120 /* Allocate and initialize the command array */
1121 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1122 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001123 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001124 ret = -1;
1125 goto done;
1126 }
Dan Williamsddac4522007-12-11 13:49:39 -05001127 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001128
Dan Williamsddac4522007-12-11 13:49:39 -05001129 /* Allocate and initialize each command buffer in the command array */
1130 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1131 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1132 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001133 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001134 ret = -1;
1135 goto done;
1136 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001137 }
1138
Dan Williamsddac4522007-12-11 13:49:39 -05001139 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1140 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1141 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001142 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001143 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001144
1145done:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146 return ret;
1147}
1148
1149/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001150 * lbs_free_cmd_buffer - free the command buffer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001151 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001152 * @priv: A pointer to &struct lbs_private structure
1153 *
1154 * returns: 0 for success
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001155 */
Holger Schurig69f90322007-11-23 15:43:44 +01001156int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001157{
Dan Williamsddac4522007-12-11 13:49:39 -05001158 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001159 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001160
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001161 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001162 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001163 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001164 goto done;
1165 }
1166
Dan Williamsddac4522007-12-11 13:49:39 -05001167 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001168
1169 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001170 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1171 if (cmdarray[i].cmdbuf) {
1172 kfree(cmdarray[i].cmdbuf);
1173 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001174 }
1175 }
1176
1177 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001178 if (priv->cmd_array) {
1179 kfree(priv->cmd_array);
1180 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181 }
1182
1183done:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184 return 0;
1185}
1186
1187/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001188 * lbs_get_free_cmd_node - gets a free command node if available in
1189 * command free queue
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001190 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001191 * @priv: A pointer to &struct lbs_private structure
1192 *
1193 * returns: A pointer to &cmd_ctrl_node structure on success
1194 * or %NULL on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001195 */
Dan Williamsd06956b2010-07-27 13:16:24 -07001196static struct cmd_ctrl_node *lbs_get_free_cmd_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001197{
1198 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199 unsigned long flags;
1200
David Woodhouseaa21c002007-12-08 20:04:36 +00001201 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001202 return NULL;
1203
David Woodhouseaa21c002007-12-08 20:04:36 +00001204 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001205
David Woodhouseaa21c002007-12-08 20:04:36 +00001206 if (!list_empty(&priv->cmdfreeq)) {
1207 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001208 struct cmd_ctrl_node, list);
Daniel Drakedf90d842011-07-09 15:41:25 +01001209 list_del_init(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001210 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001211 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001212 tempnode = NULL;
1213 }
1214
David Woodhouseaa21c002007-12-08 20:04:36 +00001215 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001216
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217 return tempnode;
1218}
1219
1220/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001221 * lbs_execute_next_command - execute next command in command
1222 * pending queue. Will put firmware back to PS mode if applicable.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001223 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001224 * @priv: A pointer to &struct lbs_private structure
1225 *
1226 * returns: 0 on success or -1 on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227 */
Holger Schurig69f90322007-11-23 15:43:44 +01001228int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001229{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001230 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001231 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001232 unsigned long flags;
1233 int ret = 0;
1234
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001235 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1236 * only caller to us is lbs_thread() and we get even when a
1237 * data packet is received */
David Woodhouseaa21c002007-12-08 20:04:36 +00001238 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001239
David Woodhouseaa21c002007-12-08 20:04:36 +00001240 if (priv->cur_cmd) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001241 netdev_alert(priv->dev,
1242 "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001243 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001244 ret = -1;
1245 goto done;
1246 }
1247
David Woodhouseaa21c002007-12-08 20:04:36 +00001248 if (!list_empty(&priv->cmdpendingq)) {
1249 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001250 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251 }
1252
David Woodhouseaa21c002007-12-08 20:04:36 +00001253 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001254
1255 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001256 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001257
Dan Williamsddac4522007-12-11 13:49:39 -05001258 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001259 if ((priv->psstate == PS_STATE_SLEEP) ||
1260 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001261 lbs_deb_host(
1262 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001263 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001264 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001265 ret = -1;
1266 goto done;
1267 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001268 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001269 "0x%04x in psstate %d\n",
1270 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001271 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001272 /*
1273 * 1. Non-PS command:
1274 * Queue it. set needtowakeup to TRUE if current state
Dan Williams0bb64082010-07-27 13:08:08 -07001275 * is SLEEP, otherwise call send EXIT_PS.
1276 * 2. PS command but not EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001277 * Ignore it.
Dan Williams0bb64082010-07-27 13:08:08 -07001278 * 3. PS command EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001279 * Set needtowakeup to TRUE if current state is SLEEP,
1280 * otherwise send this command down to firmware
1281 * immediately.
1282 */
Dan Williamsddac4522007-12-11 13:49:39 -05001283 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001284 /* Prepare to send Exit PS,
1285 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001286 if ((priv->psstate == PS_STATE_SLEEP)
1287 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001288 ) {
1289 /* w/ new scheme, it will not reach here.
1290 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001291 priv->needtowakeup = 1;
Dan Williams0bb64082010-07-27 13:08:08 -07001292 } else {
1293 lbs_set_ps_mode(priv,
1294 PS_MODE_ACTION_EXIT_PS,
1295 false);
1296 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297
1298 ret = 0;
1299 goto done;
1300 } else {
1301 /*
1302 * PS command. Ignore it if it is not Exit_PS.
1303 * otherwise send it down immediately.
1304 */
Andreas Kemnade0a7701b2016-01-30 18:01:51 +01001305 struct cmd_ds_802_11_ps_mode *psm = (void *)cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001306
Holger Schurig8ff12da2007-08-02 11:54:31 -04001307 lbs_deb_host(
1308 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001309 psm->action);
1310 if (psm->action !=
Dan Williams0bb64082010-07-27 13:08:08 -07001311 cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001312 lbs_deb_host(
1313 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
David Woodhouse183aeac2007-12-15 01:52:54 -05001314 lbs_complete_command(priv, cmdnode, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001315
1316 ret = 0;
1317 goto done;
1318 }
1319
David Woodhouseaa21c002007-12-08 20:04:36 +00001320 if ((priv->psstate == PS_STATE_SLEEP) ||
1321 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001322 lbs_deb_host(
1323 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
David Woodhouse183aeac2007-12-15 01:52:54 -05001324 lbs_complete_command(priv, cmdnode, 0);
David Woodhouseaa21c002007-12-08 20:04:36 +00001325 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326
1327 ret = 0;
1328 goto done;
1329 }
1330
Holger Schurig8ff12da2007-08-02 11:54:31 -04001331 lbs_deb_host(
1332 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001333 }
1334 }
Paul Fox2ae1b8b2011-05-09 10:40:42 +01001335 spin_lock_irqsave(&priv->driver_lock, flags);
Daniel Drakedf90d842011-07-09 15:41:25 +01001336 list_del_init(&cmdnode->list);
Paul Fox2ae1b8b2011-05-09 10:40:42 +01001337 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001338 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001339 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001340 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341 } else {
1342 /*
1343 * check if in power save mode, if yes, put the device back
1344 * to PS mode
1345 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001346 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1347 (priv->psstate == PS_STATE_FULL_POWER) &&
Andreas Kemnadefada24a2016-01-30 18:01:54 +01001348 (priv->connect_status == LBS_CONNECTED)) {
1349 lbs_deb_host(
1350 "EXEC_NEXT_CMD: cmdpendingq empty, go back to PS_SLEEP");
1351 lbs_set_ps_mode(priv, PS_MODE_ACTION_ENTER_PS,
1352 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001353 }
1354 }
1355
1356 ret = 0;
1357done:
1358 return ret;
1359}
1360
Holger Schurigf539f2e2008-03-26 13:22:11 +01001361static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001362{
1363 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001364 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001365
Holger Schurigf539f2e2008-03-26 13:22:11 +01001366 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1367 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368
Holger Schurigf539f2e2008-03-26 13:22:11 +01001369 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1370 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001371 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001372 netdev_alert(priv->dev, "confirm_sleep failed\n");
Kees Cook4bc606a2017-05-15 14:33:17 -07001373 return;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001374 }
Holger Schurig7919b892008-04-01 14:50:43 +02001375
1376 spin_lock_irqsave(&priv->driver_lock, flags);
1377
Holger Schuriga01f5452008-06-04 11:10:40 +02001378 /* We don't get a response on the sleep-confirmation */
1379 priv->dnld_sent = DNLD_RES_RECEIVED;
1380
Amitkumar Karwar66fceb62010-05-19 03:24:38 -07001381 if (priv->is_host_sleep_configured) {
1382 priv->is_host_sleep_activated = 1;
1383 wake_up_interruptible(&priv->host_sleep_q);
1384 }
1385
Holger Schurig7919b892008-04-01 14:50:43 +02001386 /* If nothing to do, go back to sleep (?) */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001387 if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
Holger Schurig7919b892008-04-01 14:50:43 +02001388 priv->psstate = PS_STATE_SLEEP;
1389
1390 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001391}
1392
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001394 * lbs_ps_confirm_sleep - checks condition and prepares to
1395 * send sleep confirm command to firmware if ok
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001396 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001397 * @priv: A pointer to &struct lbs_private structure
1398 *
1399 * returns: n/a
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001400 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001401void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001402{
1403 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001404 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001405
Holger Schuriga01f5452008-06-04 11:10:40 +02001406 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f492007-05-25 13:05:16 -04001407 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001408 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001409 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001410 }
1411
Holger Schurig7919b892008-04-01 14:50:43 +02001412 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001413 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001414 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001415 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001416 }
Holger Schurig7919b892008-04-01 14:50:43 +02001417
1418 /* Pending events or command responses? */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001419 if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001420 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02001421 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001422 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001423 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001424
1425 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001426 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01001427 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001428 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001429 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001430 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001431}
Holger Schurig675787e2007-12-05 17:58:11 +01001432
1433
Anna Neal0112c9e2008-09-11 11:17:25 -07001434/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001435 * lbs_set_tpc_cfg - Configures the transmission power control functionality
Anna Neal0112c9e2008-09-11 11:17:25 -07001436 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001437 * @priv: A pointer to &struct lbs_private structure
1438 * @enable: Transmission power control enable
1439 * @p0: Power level when link quality is good (dBm).
1440 * @p1: Power level when link quality is fair (dBm).
1441 * @p2: Power level when link quality is poor (dBm).
1442 * @usesnr: Use Signal to Noise Ratio in TPC
Anna Neal0112c9e2008-09-11 11:17:25 -07001443 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001444 * returns: 0 on success
Anna Neal0112c9e2008-09-11 11:17:25 -07001445 */
1446int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1447 int8_t p2, int usesnr)
1448{
1449 struct cmd_ds_802_11_tpc_cfg cmd;
1450 int ret;
1451
1452 memset(&cmd, 0, sizeof(cmd));
1453 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1454 cmd.action = cpu_to_le16(CMD_ACT_SET);
1455 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04001456 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07001457 cmd.P0 = p0;
1458 cmd.P1 = p1;
1459 cmd.P2 = p2;
1460
1461 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1462
1463 return ret;
1464}
1465
1466/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001467 * lbs_set_power_adapt_cfg - Configures the power adaptation settings
Anna Neal0112c9e2008-09-11 11:17:25 -07001468 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001469 * @priv: A pointer to &struct lbs_private structure
1470 * @enable: Power adaptation enable
1471 * @p0: Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1472 * @p1: Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1473 * @p2: Power level for 48 and 54 Mbps (dBm).
Anna Neal0112c9e2008-09-11 11:17:25 -07001474 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001475 * returns: 0 on Success
Anna Neal0112c9e2008-09-11 11:17:25 -07001476 */
1477
1478int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1479 int8_t p1, int8_t p2)
1480{
1481 struct cmd_ds_802_11_pa_cfg cmd;
1482 int ret;
1483
1484 memset(&cmd, 0, sizeof(cmd));
1485 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1486 cmd.action = cpu_to_le16(CMD_ACT_SET);
1487 cmd.enable = !!enable;
1488 cmd.P0 = p0;
1489 cmd.P1 = p1;
1490 cmd.P2 = p2;
1491
1492 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1493
1494 return ret;
1495}
1496
1497
Holger Schurig6d898b12009-10-14 16:49:53 +02001498struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001499 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1500 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1501 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01001502{
Holger Schurig675787e2007-12-05 17:58:11 +01001503 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01001504
David Woodhouseaa21c002007-12-08 20:04:36 +00001505 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01001506 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05001507 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01001508 goto done;
1509 }
1510
Dan Williams77ccdcf2010-07-27 13:15:45 -07001511 /* No commands are allowed in Deep Sleep until we toggle the GPIO
1512 * to wake up the card and it has signaled that it's ready.
1513 */
1514 if (!priv->is_auto_deep_sleep_enabled) {
1515 if (priv->is_deep_sleep) {
1516 lbs_deb_cmd("command not allowed in deep sleep\n");
1517 cmdnode = ERR_PTR(-EBUSY);
1518 goto done;
1519 }
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001520 }
1521
Dan Williamsd06956b2010-07-27 13:16:24 -07001522 cmdnode = lbs_get_free_cmd_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01001523 if (cmdnode == NULL) {
1524 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1525
1526 /* Wake up main thread to execute next command */
Daniel Draked2e7b342011-08-01 16:43:13 +01001527 wake_up(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05001528 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01001529 goto done;
1530 }
1531
David Woodhouse448a51a2007-12-08 00:59:54 +00001532 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05001533 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01001534
Dan Williams7ad994d2007-12-11 12:33:30 -05001535 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001536 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05001537
Daniel Drake71005be2011-05-26 21:31:08 +01001538 /* Set command, clean result, move to buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001539 cmdnode->cmdbuf->command = cpu_to_le16(command);
1540 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
Dan Williamsddac4522007-12-11 13:49:39 -05001541 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01001542
1543 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1544
Holger Schurig675787e2007-12-05 17:58:11 +01001545 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001546 lbs_queue_cmd(priv, cmdnode);
Daniel Draked2e7b342011-08-01 16:43:13 +01001547 wake_up(&priv->waitq);
Holger Schurig675787e2007-12-05 17:58:11 +01001548
David Woodhouse3399ea52007-12-15 03:09:33 -05001549 done:
David Woodhouse3399ea52007-12-15 03:09:33 -05001550 return cmdnode;
1551}
1552
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001553void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1554 struct cmd_header *in_cmd, int in_cmd_size)
1555{
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001556 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1557 lbs_cmd_async_callback, 0);
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001558}
1559
David Woodhouse3399ea52007-12-15 03:09:33 -05001560int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1561 struct cmd_header *in_cmd, int in_cmd_size,
1562 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1563 unsigned long callback_arg)
1564{
1565 struct cmd_ctrl_node *cmdnode;
1566 unsigned long flags;
1567 int ret = 0;
1568
David Woodhouse3399ea52007-12-15 03:09:33 -05001569 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1570 callback, callback_arg);
1571 if (IS_ERR(cmdnode)) {
1572 ret = PTR_ERR(cmdnode);
1573 goto done;
1574 }
1575
Holger Schurig675787e2007-12-05 17:58:11 +01001576 might_sleep();
Daniel Drakedf90d842011-07-09 15:41:25 +01001577
1578 /*
1579 * Be careful with signals here. A signal may be received as the system
1580 * goes into suspend or resume. We do not want this to interrupt the
1581 * command, so we perform an uninterruptible sleep.
1582 */
1583 wait_event(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
Holger Schurig675787e2007-12-05 17:58:11 +01001584
David Woodhouseaa21c002007-12-08 20:04:36 +00001585 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05001586 ret = cmdnode->result;
1587 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001588 netdev_info(priv->dev, "PREP_CMD: command 0x%04x failed: %d\n",
1589 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05001590
David Woodhousead12d0f2007-12-15 02:06:16 -05001591 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001592 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01001593
1594done:
Holger Schurig675787e2007-12-05 17:58:11 +01001595 return ret;
1596}
Dan Williams14e865b2007-12-10 15:11:23 -05001597EXPORT_SYMBOL_GPL(__lbs_cmd);