blob: aaa297315c47102df73b6fd3948e4b8fd4cbba25 [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
Holger Schurig9012b282007-05-25 11:27:16 -040094 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020095
Dan Williams6e66f032007-12-11 12:42:16 -050096 memset(&cmd, 0, sizeof(cmd));
97 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
98 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050099 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -0500100 if (ret)
101 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200102
Dan Williams6e66f032007-12-11 12:42:16 -0500103 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500104
Holger Schurigdac10a92008-01-16 15:55:22 +0100105 /* The firmware release is in an interesting format: the patch
106 * level is in the most significant nibble ... so fix that: */
107 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
108 priv->fwrelease = (priv->fwrelease << 8) |
109 (priv->fwrelease >> 24 & 0xff);
110
111 /* Some firmware capabilities:
112 * CF card firmware 5.0.16p0: cap 0x00000303
113 * USB dongle firmware 5.110.17p2: cap 0x00000303
114 */
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700115 netdev_info(priv->dev, "%pM, fw %u.%u.%up%u, cap 0x%08x\n",
Johannes Berge1749612008-10-27 15:59:26 -0700116 cmd.permanentaddr,
Holger Schurigdac10a92008-01-16 15:55:22 +0100117 priv->fwrelease >> 24 & 0xff,
118 priv->fwrelease >> 16 & 0xff,
119 priv->fwrelease >> 8 & 0xff,
120 priv->fwrelease & 0xff,
121 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500122 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
123 cmd.hwifversion, cmd.version);
124
125 /* Clamp region code to 8-bit since FW spec indicates that it should
126 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
127 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200128 *
129 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
130 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500131 */
Marek Vasut15483992009-07-16 19:19:53 +0200132 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
133 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
134 else
135 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500136
137 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
138 /* use the region code to search for the index */
139 if (priv->regioncode == lbs_region_code_to_index[i])
140 break;
141 }
142
143 /* if it's unidentified region code, use the default (USA) */
144 if (i >= MRVDRV_MAX_REGION_CODE) {
145 priv->regioncode = 0x10;
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700146 netdev_info(priv->dev,
147 "unidentified region code; using the default (USA)\n");
Dan Williams6e66f032007-12-11 12:42:16 -0500148 }
149
150 if (priv->current_addr[0] == 0xff)
151 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
152
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200153 if (!priv->copied_hwaddr) {
154 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
155 if (priv->mesh_dev)
156 memcpy(priv->mesh_dev->dev_addr,
157 priv->current_addr, ETH_ALEN);
158 priv->copied_hwaddr = 1;
159 }
Dan Williams6e66f032007-12-11 12:42:16 -0500160
Dan Williams6e66f032007-12-11 12:42:16 -0500161out:
Holger Schurig9012b282007-05-25 11:27:16 -0400162 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500163 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200164}
165
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700166static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
167 struct cmd_header *resp)
168{
169 lbs_deb_enter(LBS_DEB_CMD);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530170 if (priv->is_host_sleep_activated) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700171 priv->is_host_sleep_configured = 0;
172 if (priv->psstate == PS_STATE_FULL_POWER) {
173 priv->is_host_sleep_activated = 0;
174 wake_up_interruptible(&priv->host_sleep_q);
175 }
176 } else {
177 priv->is_host_sleep_configured = 1;
178 }
179 lbs_deb_leave(LBS_DEB_CMD);
180 return 0;
181}
182
Anna Neal582c1b52008-10-20 16:46:56 -0700183int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
184 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500185{
186 struct cmd_ds_host_sleep cmd_config;
187 int ret;
188
Deepak Saxenaae63a332010-10-31 13:40:33 +0000189 /*
190 * Certain firmware versions do not support EHS_REMOVE_WAKEUP command
191 * and the card will return a failure. Since we need to be
192 * able to reset the mask, in those cases we set a 0 mask instead.
193 */
194 if (criteria == EHS_REMOVE_WAKEUP && !priv->ehs_remove_supported)
195 criteria = 0;
196
David Woodhouse9fae8992007-12-15 03:46:44 -0500197 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500198 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500199 cmd_config.gpio = priv->wol_gpio;
200 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500201
Anna Neal582c1b52008-10-20 16:46:56 -0700202 if (p_wol_config != NULL)
203 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
204 sizeof(struct wol_config));
205 else
206 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
207
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700208 ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
209 le16_to_cpu(cmd_config.hdr.size),
210 lbs_ret_host_sleep_cfg, 0);
David Woodhouse506e9022007-12-12 20:06:06 -0500211 if (!ret) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700212 if (p_wol_config)
Anna Neal582c1b52008-10-20 16:46:56 -0700213 memcpy((uint8_t *) p_wol_config,
214 (uint8_t *)&cmd_config.wol_conf,
215 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500216 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700217 netdev_info(priv->dev, "HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500218 }
David Woodhouse506e9022007-12-12 20:06:06 -0500219
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500220 return ret;
221}
222EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
223
Dan Williams0bb64082010-07-27 13:08:08 -0700224/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700225 * lbs_set_ps_mode - Sets the Power Save mode
Dan Williams0bb64082010-07-27 13:08:08 -0700226 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700227 * @priv: A pointer to &struct lbs_private structure
228 * @cmd_action: The Power Save operation (PS_MODE_ACTION_ENTER_PS or
Dan Williams0bb64082010-07-27 13:08:08 -0700229 * PS_MODE_ACTION_EXIT_PS)
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700230 * @block: Whether to block on a response or not
Dan Williams0bb64082010-07-27 13:08:08 -0700231 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700232 * returns: 0 on success, error on failure
Dan Williams0bb64082010-07-27 13:08:08 -0700233 */
234int lbs_set_ps_mode(struct lbs_private *priv, u16 cmd_action, bool block)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200235{
Dan Williams0bb64082010-07-27 13:08:08 -0700236 struct cmd_ds_802_11_ps_mode cmd;
237 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200238
Holger Schurig9012b282007-05-25 11:27:16 -0400239 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200240
Dan Williams0bb64082010-07-27 13:08:08 -0700241 memset(&cmd, 0, sizeof(cmd));
242 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
243 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200244
Dan Williams0bb64082010-07-27 13:08:08 -0700245 if (cmd_action == PS_MODE_ACTION_ENTER_PS) {
246 lbs_deb_cmd("PS_MODE: action ENTER_PS\n");
247 cmd.multipledtim = cpu_to_le16(1); /* Default DTIM multiple */
248 } else if (cmd_action == PS_MODE_ACTION_EXIT_PS) {
249 lbs_deb_cmd("PS_MODE: action EXIT_PS\n");
250 } else {
251 /* We don't handle CONFIRM_SLEEP here because it needs to
252 * be fastpathed to the firmware.
253 */
254 lbs_deb_cmd("PS_MODE: unknown action 0x%X\n", cmd_action);
255 ret = -EOPNOTSUPP;
256 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200257 }
258
Dan Williams0bb64082010-07-27 13:08:08 -0700259 if (block)
260 ret = lbs_cmd_with_response(priv, CMD_802_11_PS_MODE, &cmd);
261 else
262 lbs_cmd_async(priv, CMD_802_11_PS_MODE, &cmd.hdr, sizeof (cmd));
263
264out:
265 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
266 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200267}
268
David Woodhouse3fbe1042007-12-17 23:48:31 -0500269int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
270 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200271{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500272 struct cmd_ds_802_11_sleep_params cmd;
273 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200274
Holger Schurig9012b282007-05-25 11:27:16 -0400275 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200276
Dan Williams0aef64d2007-08-02 11:31:18 -0400277 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500278 memset(&cmd, 0, sizeof(cmd));
279 } else {
280 cmd.error = cpu_to_le16(sp->sp_error);
281 cmd.offset = cpu_to_le16(sp->sp_offset);
282 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
283 cmd.calcontrol = sp->sp_calcontrol;
284 cmd.externalsleepclk = sp->sp_extsleepclk;
285 cmd.reserved = cpu_to_le16(sp->sp_reserved);
286 }
287 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
288 cmd.action = cpu_to_le16(cmd_action);
289
290 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
291
292 if (!ret) {
293 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
294 "calcontrol 0x%x extsleepclk 0x%x\n",
295 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
296 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
297 cmd.externalsleepclk);
298
299 sp->sp_error = le16_to_cpu(cmd.error);
300 sp->sp_offset = le16_to_cpu(cmd.offset);
301 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
302 sp->sp_calcontrol = cmd.calcontrol;
303 sp->sp_extsleepclk = cmd.externalsleepclk;
304 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200305 }
306
David Woodhouse3fbe1042007-12-17 23:48:31 -0500307 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200308 return 0;
309}
310
Amitkumar Karwar49125452009-09-30 20:04:38 -0700311static int lbs_wait_for_ds_awake(struct lbs_private *priv)
312{
313 int ret = 0;
314
315 lbs_deb_enter(LBS_DEB_CMD);
316
317 if (priv->is_deep_sleep) {
318 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
319 !priv->is_deep_sleep, (10 * HZ))) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700320 netdev_err(priv->dev, "ds_awake_q: timer expired\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700321 ret = -1;
322 }
323 }
324
325 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
326 return ret;
327}
328
329int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
330{
331 int ret = 0;
332
333 lbs_deb_enter(LBS_DEB_CMD);
334
335 if (deep_sleep) {
336 if (priv->is_deep_sleep != 1) {
337 lbs_deb_cmd("deep sleep: sleep\n");
338 BUG_ON(!priv->enter_deep_sleep);
339 ret = priv->enter_deep_sleep(priv);
340 if (!ret) {
341 netif_stop_queue(priv->dev);
342 netif_carrier_off(priv->dev);
343 }
344 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700345 netdev_err(priv->dev, "deep sleep: already enabled\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700346 }
347 } else {
348 if (priv->is_deep_sleep) {
349 lbs_deb_cmd("deep sleep: wakeup\n");
350 BUG_ON(!priv->exit_deep_sleep);
351 ret = priv->exit_deep_sleep(priv);
352 if (!ret) {
353 ret = lbs_wait_for_ds_awake(priv);
354 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700355 netdev_err(priv->dev,
356 "deep sleep: wakeup failed\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700357 }
358 }
359 }
360
361 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
362 return ret;
363}
364
Amitkumar Karwar13118432010-07-08 06:43:48 +0530365static int lbs_ret_host_sleep_activate(struct lbs_private *priv,
366 unsigned long dummy,
367 struct cmd_header *cmd)
368{
369 lbs_deb_enter(LBS_DEB_FW);
370 priv->is_host_sleep_activated = 1;
371 wake_up_interruptible(&priv->host_sleep_q);
372 lbs_deb_leave(LBS_DEB_FW);
373 return 0;
374}
375
376int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep)
377{
378 struct cmd_header cmd;
379 int ret = 0;
380 uint32_t criteria = EHS_REMOVE_WAKEUP;
381
382 lbs_deb_enter(LBS_DEB_CMD);
383
384 if (host_sleep) {
385 if (priv->is_host_sleep_activated != 1) {
386 memset(&cmd, 0, sizeof(cmd));
387 ret = lbs_host_sleep_cfg(priv, priv->wol_criteria,
388 (struct wol_config *)NULL);
389 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700390 netdev_info(priv->dev,
391 "Host sleep configuration failed: %d\n",
392 ret);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530393 return ret;
394 }
395 if (priv->psstate == PS_STATE_FULL_POWER) {
396 ret = __lbs_cmd(priv,
397 CMD_802_11_HOST_SLEEP_ACTIVATE,
398 &cmd,
399 sizeof(cmd),
400 lbs_ret_host_sleep_activate, 0);
401 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700402 netdev_info(priv->dev,
403 "HOST_SLEEP_ACTIVATE failed: %d\n",
404 ret);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530405 }
406
407 if (!wait_event_interruptible_timeout(
408 priv->host_sleep_q,
409 priv->is_host_sleep_activated,
410 (10 * HZ))) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700411 netdev_err(priv->dev,
412 "host_sleep_q: timer expired\n");
Amitkumar Karwar13118432010-07-08 06:43:48 +0530413 ret = -1;
414 }
415 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700416 netdev_err(priv->dev, "host sleep: already enabled\n");
Amitkumar Karwar13118432010-07-08 06:43:48 +0530417 }
418 } else {
419 if (priv->is_host_sleep_activated)
420 ret = lbs_host_sleep_cfg(priv, criteria,
421 (struct wol_config *)NULL);
422 }
423
424 return ret;
425}
426
Dan Williams39fcf7a2008-09-10 12:49:00 -0400427/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700428 * lbs_set_snmp_mib - Set an SNMP MIB value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400429 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700430 * @priv: A pointer to &struct lbs_private structure
431 * @oid: The OID to set in the firmware
432 * @val: Value to set the OID to
Dan Williams39fcf7a2008-09-10 12:49:00 -0400433 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700434 * returns: 0 on success, error on failure
Dan Williams39fcf7a2008-09-10 12:49:00 -0400435 */
436int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200437{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400438 struct cmd_ds_802_11_snmp_mib cmd;
439 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440
Holger Schurig9012b282007-05-25 11:27:16 -0400441 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442
Dan Williams39fcf7a2008-09-10 12:49:00 -0400443 memset(&cmd, 0, sizeof (cmd));
444 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
445 cmd.action = cpu_to_le16(CMD_ACT_SET);
446 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200447
Dan Williams39fcf7a2008-09-10 12:49:00 -0400448 switch (oid) {
449 case SNMP_MIB_OID_BSS_TYPE:
450 cmd.bufsize = cpu_to_le16(sizeof(u8));
Holger Schurigfef06402009-10-22 15:30:59 +0200451 cmd.value[0] = val;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200452 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400453 case SNMP_MIB_OID_11D_ENABLE:
454 case SNMP_MIB_OID_FRAG_THRESHOLD:
455 case SNMP_MIB_OID_RTS_THRESHOLD:
456 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
457 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
458 cmd.bufsize = cpu_to_le16(sizeof(u16));
459 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200460 break;
461 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400462 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
463 ret = -EINVAL;
464 goto out;
465 }
466
467 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
468 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
469
470 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
471
472out:
473 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
474 return ret;
475}
476
477/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700478 * lbs_get_snmp_mib - Get an SNMP MIB value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400479 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700480 * @priv: A pointer to &struct lbs_private structure
481 * @oid: The OID to retrieve from the firmware
482 * @out_val: Location for the returned value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400483 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700484 * returns: 0 on success, error on failure
Dan Williams39fcf7a2008-09-10 12:49:00 -0400485 */
486int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
487{
488 struct cmd_ds_802_11_snmp_mib cmd;
489 int ret;
490
491 lbs_deb_enter(LBS_DEB_CMD);
492
493 memset(&cmd, 0, sizeof (cmd));
494 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
495 cmd.action = cpu_to_le16(CMD_ACT_GET);
496 cmd.oid = cpu_to_le16(oid);
497
498 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
499 if (ret)
500 goto out;
501
502 switch (le16_to_cpu(cmd.bufsize)) {
503 case sizeof(u8):
Holger Schurigfef06402009-10-22 15:30:59 +0200504 *out_val = cmd.value[0];
Dan Williams39fcf7a2008-09-10 12:49:00 -0400505 break;
506 case sizeof(u16):
507 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
508 break;
509 default:
510 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
511 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200512 break;
513 }
514
Dan Williams39fcf7a2008-09-10 12:49:00 -0400515out:
516 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
517 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200518}
519
Dan Williams87c8c722008-08-19 15:15:35 -0400520/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700521 * lbs_get_tx_power - Get the min, max, and current TX power
Dan Williams87c8c722008-08-19 15:15:35 -0400522 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700523 * @priv: A pointer to &struct lbs_private structure
524 * @curlevel: Current power level in dBm
525 * @minlevel: Minimum supported power level in dBm (optional)
526 * @maxlevel: Maximum supported power level in dBm (optional)
Dan Williams87c8c722008-08-19 15:15:35 -0400527 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700528 * returns: 0 on success, error on failure
Dan Williams87c8c722008-08-19 15:15:35 -0400529 */
530int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
531 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200532{
Dan Williams87c8c722008-08-19 15:15:35 -0400533 struct cmd_ds_802_11_rf_tx_power cmd;
534 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200535
Holger Schurig9012b282007-05-25 11:27:16 -0400536 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200537
Dan Williams87c8c722008-08-19 15:15:35 -0400538 memset(&cmd, 0, sizeof(cmd));
539 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
540 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200541
Dan Williams87c8c722008-08-19 15:15:35 -0400542 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
543 if (ret == 0) {
544 *curlevel = le16_to_cpu(cmd.curlevel);
545 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100546 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400547 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100548 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200549 }
Holger Schurig9012b282007-05-25 11:27:16 -0400550
551 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams87c8c722008-08-19 15:15:35 -0400552 return ret;
553}
554
555/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700556 * lbs_set_tx_power - Set the TX power
Dan Williams87c8c722008-08-19 15:15:35 -0400557 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700558 * @priv: A pointer to &struct lbs_private structure
559 * @dbm: The desired power level in dBm
Dan Williams87c8c722008-08-19 15:15:35 -0400560 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700561 * returns: 0 on success, error on failure
Dan Williams87c8c722008-08-19 15:15:35 -0400562 */
563int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
564{
565 struct cmd_ds_802_11_rf_tx_power cmd;
566 int ret;
567
568 lbs_deb_enter(LBS_DEB_CMD);
569
570 memset(&cmd, 0, sizeof(cmd));
571 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
572 cmd.action = cpu_to_le16(CMD_ACT_SET);
573 cmd.curlevel = cpu_to_le16(dbm);
574
575 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
576
577 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
578
579 lbs_deb_leave(LBS_DEB_CMD);
580 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200581}
582
Dan Williamsa45b6f42010-07-27 12:54:34 -0700583/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700584 * lbs_set_monitor_mode - Enable or disable monitor mode
585 * (only implemented on OLPC usb8388 FW)
Dan Williamsa45b6f42010-07-27 12:54:34 -0700586 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700587 * @priv: A pointer to &struct lbs_private structure
588 * @enable: 1 to enable monitor mode, 0 to disable
Dan Williamsa45b6f42010-07-27 12:54:34 -0700589 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700590 * returns: 0 on success, error on failure
Dan Williamsa45b6f42010-07-27 12:54:34 -0700591 */
592int lbs_set_monitor_mode(struct lbs_private *priv, int enable)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400593{
Dan Williamsa45b6f42010-07-27 12:54:34 -0700594 struct cmd_ds_802_11_monitor_mode cmd;
595 int ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400596
Dan Williamsa45b6f42010-07-27 12:54:34 -0700597 memset(&cmd, 0, sizeof(cmd));
598 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
599 cmd.action = cpu_to_le16(CMD_ACT_SET);
600 if (enable)
601 cmd.mode = cpu_to_le16(0x1);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400602
Dan Williamsa45b6f42010-07-27 12:54:34 -0700603 lbs_deb_cmd("SET_MONITOR_MODE: %d\n", enable);
604
605 ret = lbs_cmd_with_response(priv, CMD_802_11_MONITOR_MODE, &cmd);
606 if (ret == 0) {
607 priv->dev->type = enable ? ARPHRD_IEEE80211_RADIOTAP :
608 ARPHRD_ETHER;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400609 }
610
Dan Williamsa45b6f42010-07-27 12:54:34 -0700611 lbs_deb_leave(LBS_DEB_CMD);
612 return ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400613}
614
Dan Williams2dd4b262007-12-11 16:54:15 -0500615/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700616 * lbs_get_channel - Get the radio channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500617 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700618 * @priv: A pointer to &struct lbs_private structure
Dan Williams2dd4b262007-12-11 16:54:15 -0500619 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700620 * returns: The channel on success, error on failure
Dan Williams2dd4b262007-12-11 16:54:15 -0500621 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200622static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200623{
Dan Williams2dd4b262007-12-11 16:54:15 -0500624 struct cmd_ds_802_11_rf_channel cmd;
625 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200626
Holger Schurig8ff12da2007-08-02 11:54:31 -0400627 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200628
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200629 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500630 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
631 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
David Woodhouse689442d2007-12-12 16:00:42 -0500633 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500634 if (ret)
635 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200636
Dan Williamscb182a62007-12-11 17:35:51 -0500637 ret = le16_to_cpu(cmd.channel);
638 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500639
640out:
641 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
642 return ret;
643}
644
Holger Schurig73ab1f22008-04-02 16:52:19 +0200645int lbs_update_channel(struct lbs_private *priv)
646{
647 int ret;
648
649 /* the channel in f/w could be out of sync; get the current channel */
650 lbs_deb_enter(LBS_DEB_ASSOC);
651
652 ret = lbs_get_channel(priv);
653 if (ret > 0) {
Holger Schurigc14951f2009-10-22 15:30:50 +0200654 priv->channel = ret;
Holger Schurig73ab1f22008-04-02 16:52:19 +0200655 ret = 0;
656 }
657 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
658 return ret;
659}
660
Dan Williams2dd4b262007-12-11 16:54:15 -0500661/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700662 * lbs_set_channel - Set the radio channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500663 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700664 * @priv: A pointer to &struct lbs_private structure
665 * @channel: The desired channel, or 0 to clear a locked channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500666 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700667 * returns: 0 on success, error on failure
Dan Williams2dd4b262007-12-11 16:54:15 -0500668 */
669int lbs_set_channel(struct lbs_private *priv, u8 channel)
670{
671 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530672#ifdef DEBUG
Holger Schurigc14951f2009-10-22 15:30:50 +0200673 u8 old_channel = priv->channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530674#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500675 int ret = 0;
676
677 lbs_deb_enter(LBS_DEB_CMD);
678
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200679 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500680 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
681 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
682 cmd.channel = cpu_to_le16(channel);
683
David Woodhouse689442d2007-12-12 16:00:42 -0500684 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500685 if (ret)
686 goto out;
687
Holger Schurigc14951f2009-10-22 15:30:50 +0200688 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
Dan Williamscb182a62007-12-11 17:35:51 -0500689 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
Holger Schurigc14951f2009-10-22 15:30:50 +0200690 priv->channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500691
692out:
693 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
694 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200695}
696
Dan Williams9fb76632010-07-27 12:55:21 -0700697/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700698 * lbs_get_rssi - Get current RSSI and noise floor
Dan Williams9fb76632010-07-27 12:55:21 -0700699 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700700 * @priv: A pointer to &struct lbs_private structure
701 * @rssi: On successful return, signal level in mBm
702 * @nf: On successful return, Noise floor
Dan Williams9fb76632010-07-27 12:55:21 -0700703 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700704 * returns: The channel on success, error on failure
Dan Williams9fb76632010-07-27 12:55:21 -0700705 */
706int lbs_get_rssi(struct lbs_private *priv, s8 *rssi, s8 *nf)
707{
708 struct cmd_ds_802_11_rssi cmd;
709 int ret = 0;
710
711 lbs_deb_enter(LBS_DEB_CMD);
712
713 BUG_ON(rssi == NULL);
714 BUG_ON(nf == NULL);
715
716 memset(&cmd, 0, sizeof(cmd));
717 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
718 /* Average SNR over last 8 beacons */
719 cmd.n_or_snr = cpu_to_le16(8);
720
721 ret = lbs_cmd_with_response(priv, CMD_802_11_RSSI, &cmd);
722 if (ret == 0) {
723 *nf = CAL_NF(le16_to_cpu(cmd.nf));
724 *rssi = CAL_RSSI(le16_to_cpu(cmd.n_or_snr), le16_to_cpu(cmd.nf));
725 }
726
727 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
728 return ret;
729}
730
Dan Williamscc4b9d32010-07-27 12:56:05 -0700731/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700732 * lbs_set_11d_domain_info - Send regulatory and 802.11d domain information
733 * to the firmware
Dan Williamscc4b9d32010-07-27 12:56:05 -0700734 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700735 * @priv: pointer to &struct lbs_private
Dan Williamscc4b9d32010-07-27 12:56:05 -0700736 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700737 * returns: 0 on success, error code on failure
Dan Williamscc4b9d32010-07-27 12:56:05 -0700738*/
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100739int lbs_set_11d_domain_info(struct lbs_private *priv)
Dan Williamscc4b9d32010-07-27 12:56:05 -0700740{
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100741 struct wiphy *wiphy = priv->wdev->wiphy;
742 struct ieee80211_supported_band **bands = wiphy->bands;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700743 struct cmd_ds_802_11d_domain_info cmd;
744 struct mrvl_ie_domain_param_set *domain = &cmd.domain;
745 struct ieee80211_country_ie_triplet *t;
746 enum ieee80211_band band;
747 struct ieee80211_channel *ch;
748 u8 num_triplet = 0;
749 u8 num_parsed_chan = 0;
750 u8 first_channel = 0, next_chan = 0, max_pwr = 0;
751 u8 i, flag = 0;
752 size_t triplet_size;
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100753 int ret = 0;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700754
755 lbs_deb_enter(LBS_DEB_11D);
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100756 if (!priv->country_code[0])
757 goto out;
Dan Williamscc4b9d32010-07-27 12:56:05 -0700758
759 memset(&cmd, 0, sizeof(cmd));
760 cmd.action = cpu_to_le16(CMD_ACT_SET);
761
762 lbs_deb_11d("Setting country code '%c%c'\n",
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100763 priv->country_code[0], priv->country_code[1]);
Dan Williamscc4b9d32010-07-27 12:56:05 -0700764
765 domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);
766
767 /* Set country code */
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100768 domain->country_code[0] = priv->country_code[0];
769 domain->country_code[1] = priv->country_code[1];
Dan Williamscc4b9d32010-07-27 12:56:05 -0700770 domain->country_code[2] = ' ';
771
772 /* Now set up the channel triplets; firmware is somewhat picky here
773 * and doesn't validate channel numbers and spans; hence it would
774 * interpret a triplet of (36, 4, 20) as channels 36, 37, 38, 39. Since
775 * the last 3 aren't valid channels, the driver is responsible for
776 * splitting that up into 4 triplet pairs of (36, 1, 20) + (40, 1, 20)
777 * etc.
778 */
779 for (band = 0;
780 (band < IEEE80211_NUM_BANDS) && (num_triplet < MAX_11D_TRIPLETS);
781 band++) {
782
783 if (!bands[band])
784 continue;
785
786 for (i = 0;
787 (i < bands[band]->n_channels) && (num_triplet < MAX_11D_TRIPLETS);
788 i++) {
789 ch = &bands[band]->channels[i];
790 if (ch->flags & IEEE80211_CHAN_DISABLED)
791 continue;
792
793 if (!flag) {
794 flag = 1;
795 next_chan = first_channel = (u32) ch->hw_value;
796 max_pwr = ch->max_power;
797 num_parsed_chan = 1;
798 continue;
799 }
800
801 if ((ch->hw_value == next_chan + 1) &&
802 (ch->max_power == max_pwr)) {
803 /* Consolidate adjacent channels */
804 next_chan++;
805 num_parsed_chan++;
806 } else {
807 /* Add this triplet */
808 lbs_deb_11d("11D triplet (%d, %d, %d)\n",
809 first_channel, num_parsed_chan,
810 max_pwr);
811 t = &domain->triplet[num_triplet];
812 t->chans.first_channel = first_channel;
813 t->chans.num_channels = num_parsed_chan;
814 t->chans.max_power = max_pwr;
815 num_triplet++;
816 flag = 0;
817 }
818 }
819
820 if (flag) {
821 /* Add last triplet */
822 lbs_deb_11d("11D triplet (%d, %d, %d)\n", first_channel,
823 num_parsed_chan, max_pwr);
824 t = &domain->triplet[num_triplet];
825 t->chans.first_channel = first_channel;
826 t->chans.num_channels = num_parsed_chan;
827 t->chans.max_power = max_pwr;
828 num_triplet++;
829 }
830 }
831
832 lbs_deb_11d("# triplets %d\n", num_triplet);
833
834 /* Set command header sizes */
835 triplet_size = num_triplet * sizeof(struct ieee80211_country_ie_triplet);
836 domain->header.len = cpu_to_le16(sizeof(domain->country_code) +
837 triplet_size);
838
839 lbs_deb_hex(LBS_DEB_11D, "802.11D domain param set",
840 (u8 *) &cmd.domain.country_code,
841 le16_to_cpu(domain->header.len));
842
843 cmd.hdr.size = cpu_to_le16(sizeof(cmd.hdr) +
844 sizeof(cmd.action) +
845 sizeof(cmd.domain.header) +
846 sizeof(cmd.domain.country_code) +
847 triplet_size);
848
849 ret = lbs_cmd_with_response(priv, CMD_802_11D_DOMAIN_INFO, &cmd);
850
Daniel Drake20d2ebe2012-07-15 23:44:58 +0100851out:
Dan Williamscc4b9d32010-07-27 12:56:05 -0700852 lbs_deb_leave_args(LBS_DEB_11D, "ret %d", ret);
853 return ret;
854}
855
Dan Williams4c7c6e002010-07-27 13:01:07 -0700856/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700857 * lbs_get_reg - Read a MAC, Baseband, or RF register
Dan Williams4c7c6e002010-07-27 13:01:07 -0700858 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700859 * @priv: pointer to &struct lbs_private
860 * @reg: register command, one of CMD_MAC_REG_ACCESS,
861 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
862 * @offset: byte offset of the register to get
863 * @value: on success, the value of the register at 'offset'
Dan Williams4c7c6e002010-07-27 13:01:07 -0700864 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700865 * returns: 0 on success, error code on failure
Dan Williams4c7c6e002010-07-27 13:01:07 -0700866*/
867int lbs_get_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 *value)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200868{
Dan Williams4c7c6e002010-07-27 13:01:07 -0700869 struct cmd_ds_reg_access cmd;
870 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200871
Holger Schurig9012b282007-05-25 11:27:16 -0400872 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873
Dan Williams4c7c6e002010-07-27 13:01:07 -0700874 BUG_ON(value == NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200875
Dan Williams4c7c6e002010-07-27 13:01:07 -0700876 memset(&cmd, 0, sizeof(cmd));
877 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
878 cmd.action = cpu_to_le16(CMD_ACT_GET);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200879 cmd.offset = cpu_to_le16(offset);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200880
Dan Williams4c7c6e002010-07-27 13:01:07 -0700881 if (reg != CMD_MAC_REG_ACCESS &&
882 reg != CMD_BBP_REG_ACCESS &&
883 reg != CMD_RF_REG_ACCESS) {
884 ret = -EINVAL;
885 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200886 }
887
Dan Williams4c7c6e002010-07-27 13:01:07 -0700888 ret = lbs_cmd_with_response(priv, reg, &cmd);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200889 if (!ret) {
Dan Williams4c7c6e002010-07-27 13:01:07 -0700890 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
891 *value = cmd.value.bbp_rf;
892 else if (reg == CMD_MAC_REG_ACCESS)
893 *value = le32_to_cpu(cmd.value.mac);
894 }
895
896out:
897 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
898 return ret;
899}
900
901/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700902 * lbs_set_reg - Write a MAC, Baseband, or RF register
Dan Williams4c7c6e002010-07-27 13:01:07 -0700903 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700904 * @priv: pointer to &struct lbs_private
905 * @reg: register command, one of CMD_MAC_REG_ACCESS,
906 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
907 * @offset: byte offset of the register to set
908 * @value: the value to write to the register at 'offset'
Dan Williams4c7c6e002010-07-27 13:01:07 -0700909 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700910 * returns: 0 on success, error code on failure
Dan Williams4c7c6e002010-07-27 13:01:07 -0700911*/
912int lbs_set_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 value)
913{
914 struct cmd_ds_reg_access cmd;
915 int ret = 0;
916
917 lbs_deb_enter(LBS_DEB_CMD);
918
919 memset(&cmd, 0, sizeof(cmd));
920 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
921 cmd.action = cpu_to_le16(CMD_ACT_SET);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200922 cmd.offset = cpu_to_le16(offset);
Dan Williams4c7c6e002010-07-27 13:01:07 -0700923
924 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
925 cmd.value.bbp_rf = (u8) (value & 0xFF);
926 else if (reg == CMD_MAC_REG_ACCESS)
927 cmd.value.mac = cpu_to_le32(value);
928 else {
929 ret = -EINVAL;
930 goto out;
931 }
932
933 ret = lbs_cmd_with_response(priv, reg, &cmd);
934
935out:
936 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
937 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200938}
939
David Woodhouse681ffbb2007-12-15 20:04:54 -0500940static void lbs_queue_cmd(struct lbs_private *priv,
941 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200942{
943 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -0500944 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200945
Holger Schurig8ff12da2007-08-02 11:54:31 -0400946 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200947
David Woodhousec4ab4122007-12-15 00:41:51 -0500948 if (!cmdnode) {
949 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200950 goto done;
951 }
David Woodhoused9896ee2007-12-15 00:09:25 -0500952 if (!cmdnode->cmdbuf->size) {
953 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
954 goto done;
955 }
David Woodhouseae125bf2007-12-15 04:22:52 -0500956 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200957
958 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -0500959 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
Dan Williams0bb64082010-07-27 13:08:08 -0700960 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf;
Dan Williamsddac4522007-12-11 13:49:39 -0500961
Dan Williams0bb64082010-07-27 13:08:08 -0700962 if (psm->action == cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000963 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200964 addtail = 0;
965 }
966 }
967
Dan Williams0bb64082010-07-27 13:08:08 -0700968 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_WAKEUP_CONFIRM)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700969 addtail = 0;
970
David Woodhouseaa21c002007-12-08 20:04:36 +0000971 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200972
David Woodhouseac472462007-12-08 00:35:00 +0000973 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +0000974 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +0000975 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000976 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977
David Woodhouseaa21c002007-12-08 20:04:36 +0000978 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200979
Holger Schurig8ff12da2007-08-02 11:54:31 -0400980 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -0500981 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200982
983done:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400984 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200985}
986
David Woodhouse18c52e72007-12-17 16:03:58 -0500987static void lbs_submit_command(struct lbs_private *priv,
988 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200989{
990 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -0500991 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -0500992 uint16_t cmdsize;
993 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +0200994 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500995 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996
Holger Schurig8ff12da2007-08-02 11:54:31 -0400997 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998
Dan Williamsddac4522007-12-11 13:49:39 -0500999 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001000
David Woodhouseaa21c002007-12-08 20:04:36 +00001001 spin_lock_irqsave(&priv->driver_lock, flags);
Daniel Drake71005be2011-05-26 21:31:08 +01001002 priv->seqnum++;
1003 cmd->seqnum = cpu_to_le16(priv->seqnum);
David Woodhouseaa21c002007-12-08 20:04:36 +00001004 priv->cur_cmd = cmdnode;
David Woodhouseaa21c002007-12-08 20:04:36 +00001005 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001006
Dan Williamsddac4522007-12-11 13:49:39 -05001007 cmdsize = le16_to_cpu(cmd->size);
1008 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001009
David Woodhouse18c52e72007-12-17 16:03:58 -05001010 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -04001011 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +02001012 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -05001013
Holger Schurige5225b32008-03-26 10:04:44 +01001014 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
1015 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001016 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001017
Dan Williamsddac4522007-12-11 13:49:39 -05001018 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001019
David Woodhoused9896ee2007-12-15 00:09:25 -05001020 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001021 netdev_info(priv->dev, "DNLD_CMD: hw_host_to_card failed: %d\n",
1022 ret);
Daniel Drake9c3099f2012-07-15 23:47:51 +01001023 /* Reset dnld state machine, report failure */
1024 priv->dnld_sent = DNLD_RES_RECEIVED;
1025 lbs_complete_command(priv, cmdnode, ret);
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001026 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001027
Amitkumar Karwar49125452009-09-30 20:04:38 -07001028 if (command == CMD_802_11_DEEP_SLEEP) {
1029 if (priv->is_auto_deep_sleep_enabled) {
1030 priv->wakeup_dev_required = 1;
1031 priv->dnld_sent = 0;
1032 }
1033 priv->is_deep_sleep = 1;
1034 lbs_complete_command(priv, cmdnode, 0);
1035 } else {
1036 /* Setup the timer after transmit command */
1037 mod_timer(&priv->command_timer, jiffies + timeo);
1038 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001039
David Woodhouse18c52e72007-12-17 16:03:58 -05001040 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001041}
1042
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001043/*
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001045 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001047static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001048 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001049{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001050 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001051
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001052 if (!cmdnode)
1053 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001054
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001055 cmdnode->callback = NULL;
1056 cmdnode->callback_arg = 0;
1057
1058 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1059
1060 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1061 out:
1062 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001063}
1064
Holger Schurig69f90322007-11-23 15:43:44 +01001065static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1066 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067{
1068 unsigned long flags;
1069
David Woodhouseaa21c002007-12-08 20:04:36 +00001070 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001071 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001072 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001073}
1074
Daniel Drakedf90d842011-07-09 15:41:25 +01001075void __lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1076 int result)
David Woodhouse183aeac2007-12-15 01:52:54 -05001077{
Daniel Drakedf90d842011-07-09 15:41:25 +01001078 /*
1079 * Normally, commands are removed from cmdpendingq before being
1080 * submitted. However, we can arrive here on alternative codepaths
1081 * where the command is still pending. Make sure the command really
1082 * isn't part of a list at this point.
1083 */
1084 list_del_init(&cmd->list);
1085
David Woodhouseae125bf2007-12-15 04:22:52 -05001086 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001087 cmd->cmdwaitqwoken = 1;
Daniel Drakedf90d842011-07-09 15:41:25 +01001088 wake_up(&cmd->cmdwait_q);
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001089
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001090 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001091 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001092 priv->cur_cmd = NULL;
Daniel Draked2e7b342011-08-01 16:43:13 +01001093 wake_up(&priv->waitq);
Daniel Drakedf90d842011-07-09 15:41:25 +01001094}
1095
1096void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1097 int result)
1098{
1099 unsigned long flags;
1100 spin_lock_irqsave(&priv->driver_lock, flags);
1101 __lbs_complete_command(priv, cmd, result);
1102 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouse183aeac2007-12-15 01:52:54 -05001103}
1104
Dan Williamsd5db2df2008-08-21 17:51:07 -04001105int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001106{
David Woodhousea7c45892007-12-17 22:43:48 -05001107 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001108 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109
Holger Schurig9012b282007-05-25 11:27:16 -04001110 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001111
David Woodhousea7c45892007-12-17 22:43:48 -05001112 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1113 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001114
Dan Williamsd5db2df2008-08-21 17:51:07 -04001115 /* Only v8 and below support setting the preamble */
1116 if (priv->fwrelease < 0x09000000) {
1117 switch (preamble) {
1118 case RADIO_PREAMBLE_SHORT:
Dan Williamsd5db2df2008-08-21 17:51:07 -04001119 case RADIO_PREAMBLE_AUTO:
1120 case RADIO_PREAMBLE_LONG:
1121 cmd.control = cpu_to_le16(preamble);
1122 break;
1123 default:
1124 goto out;
1125 }
David Woodhousea7c45892007-12-17 22:43:48 -05001126 }
1127
Dan Williamsd5db2df2008-08-21 17:51:07 -04001128 if (radio_on)
1129 cmd.control |= cpu_to_le16(0x1);
1130 else {
1131 cmd.control &= cpu_to_le16(~0x1);
1132 priv->txpower_cur = 0;
1133 }
David Woodhousea7c45892007-12-17 22:43:48 -05001134
Dan Williamsd5db2df2008-08-21 17:51:07 -04001135 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1136 radio_on ? "ON" : "OFF", preamble);
1137
1138 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -05001139
1140 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001141
Dan Williamsd5db2df2008-08-21 17:51:07 -04001142out:
Holger Schurig9012b282007-05-25 11:27:16 -04001143 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001144 return ret;
1145}
1146
Holger Schurigc97329e2008-03-18 11:20:21 +01001147void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001149 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001150
Holger Schurig9012b282007-05-25 11:27:16 -04001151 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001152
Holger Schurig835d3ac2008-03-12 16:05:40 +01001153 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001154 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001155 cmd.reserved = 0;
1156
David Woodhouse75bf45a2008-05-20 13:32:45 +01001157 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158
Holger Schurigc97329e2008-03-18 11:20:21 +01001159 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001160}
1161
Daniel Drake871fc092012-09-11 11:38:11 -04001162int lbs_set_mac_control_sync(struct lbs_private *priv)
1163{
1164 struct cmd_ds_mac_control cmd;
1165 int ret = 0;
1166
1167 lbs_deb_enter(LBS_DEB_CMD);
1168
1169 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1170 cmd.action = cpu_to_le16(priv->mac_control);
1171 cmd.reserved = 0;
1172 ret = lbs_cmd_with_response(priv, CMD_MAC_CONTROL, &cmd);
1173
1174 lbs_deb_leave(LBS_DEB_CMD);
1175 return ret;
1176}
1177
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001179 * lbs_allocate_cmd_buffer - allocates the command buffer and links
1180 * it to command free queue
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001182 * @priv: A pointer to &struct lbs_private structure
1183 *
1184 * returns: 0 for success or -1 on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001185 */
Holger Schurig69f90322007-11-23 15:43:44 +01001186int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001187{
1188 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001189 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001190 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001191 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001192
Holger Schurig8ff12da2007-08-02 11:54:31 -04001193 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001194
Dan Williamsddac4522007-12-11 13:49:39 -05001195 /* Allocate and initialize the command array */
1196 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1197 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001198 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199 ret = -1;
1200 goto done;
1201 }
Dan Williamsddac4522007-12-11 13:49:39 -05001202 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001203
Dan Williamsddac4522007-12-11 13:49:39 -05001204 /* Allocate and initialize each command buffer in the command array */
1205 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1206 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1207 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001208 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209 ret = -1;
1210 goto done;
1211 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001212 }
1213
Dan Williamsddac4522007-12-11 13:49:39 -05001214 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1215 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1216 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001219
1220done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001221 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001222 return ret;
1223}
1224
1225/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001226 * lbs_free_cmd_buffer - free the command buffer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001227 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001228 * @priv: A pointer to &struct lbs_private structure
1229 *
1230 * returns: 0 for success
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001231 */
Holger Schurig69f90322007-11-23 15:43:44 +01001232int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001233{
Dan Williamsddac4522007-12-11 13:49:39 -05001234 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001235 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001236
Holger Schurig8ff12da2007-08-02 11:54:31 -04001237 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001238
1239 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001240 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001241 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001242 goto done;
1243 }
1244
Dan Williamsddac4522007-12-11 13:49:39 -05001245 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001246
1247 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001248 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1249 if (cmdarray[i].cmdbuf) {
1250 kfree(cmdarray[i].cmdbuf);
1251 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001252 }
1253 }
1254
1255 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001256 if (priv->cmd_array) {
1257 kfree(priv->cmd_array);
1258 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001259 }
1260
1261done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001262 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001263 return 0;
1264}
1265
1266/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001267 * lbs_get_free_cmd_node - gets a free command node if available in
1268 * command free queue
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001269 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001270 * @priv: A pointer to &struct lbs_private structure
1271 *
1272 * returns: A pointer to &cmd_ctrl_node structure on success
1273 * or %NULL on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001274 */
Dan Williamsd06956b2010-07-27 13:16:24 -07001275static struct cmd_ctrl_node *lbs_get_free_cmd_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001276{
1277 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001278 unsigned long flags;
1279
Holger Schurig8ff12da2007-08-02 11:54:31 -04001280 lbs_deb_enter(LBS_DEB_HOST);
1281
David Woodhouseaa21c002007-12-08 20:04:36 +00001282 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001283 return NULL;
1284
David Woodhouseaa21c002007-12-08 20:04:36 +00001285 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001286
David Woodhouseaa21c002007-12-08 20:04:36 +00001287 if (!list_empty(&priv->cmdfreeq)) {
1288 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001289 struct cmd_ctrl_node, list);
Daniel Drakedf90d842011-07-09 15:41:25 +01001290 list_del_init(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001291 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001292 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293 tempnode = NULL;
1294 }
1295
David Woodhouseaa21c002007-12-08 20:04:36 +00001296 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001297
Holger Schurig8ff12da2007-08-02 11:54:31 -04001298 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001299 return tempnode;
1300}
1301
1302/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001303 * lbs_execute_next_command - execute next command in command
1304 * pending queue. Will put firmware back to PS mode if applicable.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001305 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001306 * @priv: A pointer to &struct lbs_private structure
1307 *
1308 * returns: 0 on success or -1 on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001309 */
Holger Schurig69f90322007-11-23 15:43:44 +01001310int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001311{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001312 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001313 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001314 unsigned long flags;
1315 int ret = 0;
1316
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001317 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1318 * only caller to us is lbs_thread() and we get even when a
1319 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001320 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321
David Woodhouseaa21c002007-12-08 20:04:36 +00001322 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323
David Woodhouseaa21c002007-12-08 20:04:36 +00001324 if (priv->cur_cmd) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001325 netdev_alert(priv->dev,
1326 "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001327 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001328 ret = -1;
1329 goto done;
1330 }
1331
David Woodhouseaa21c002007-12-08 20:04:36 +00001332 if (!list_empty(&priv->cmdpendingq)) {
1333 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001334 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335 }
1336
David Woodhouseaa21c002007-12-08 20:04:36 +00001337 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001338
1339 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001340 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341
Dan Williamsddac4522007-12-11 13:49:39 -05001342 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001343 if ((priv->psstate == PS_STATE_SLEEP) ||
1344 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001345 lbs_deb_host(
1346 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001347 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001348 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001349 ret = -1;
1350 goto done;
1351 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001352 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001353 "0x%04x in psstate %d\n",
1354 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001355 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001356 /*
1357 * 1. Non-PS command:
1358 * Queue it. set needtowakeup to TRUE if current state
Dan Williams0bb64082010-07-27 13:08:08 -07001359 * is SLEEP, otherwise call send EXIT_PS.
1360 * 2. PS command but not EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001361 * Ignore it.
Dan Williams0bb64082010-07-27 13:08:08 -07001362 * 3. PS command EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363 * Set needtowakeup to TRUE if current state is SLEEP,
1364 * otherwise send this command down to firmware
1365 * immediately.
1366 */
Dan Williamsddac4522007-12-11 13:49:39 -05001367 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001368 /* Prepare to send Exit PS,
1369 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001370 if ((priv->psstate == PS_STATE_SLEEP)
1371 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001372 ) {
1373 /* w/ new scheme, it will not reach here.
1374 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001375 priv->needtowakeup = 1;
Dan Williams0bb64082010-07-27 13:08:08 -07001376 } else {
1377 lbs_set_ps_mode(priv,
1378 PS_MODE_ACTION_EXIT_PS,
1379 false);
1380 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381
1382 ret = 0;
1383 goto done;
1384 } else {
1385 /*
1386 * PS command. Ignore it if it is not Exit_PS.
1387 * otherwise send it down immediately.
1388 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001389 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390
Holger Schurig8ff12da2007-08-02 11:54:31 -04001391 lbs_deb_host(
1392 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001393 psm->action);
1394 if (psm->action !=
Dan Williams0bb64082010-07-27 13:08:08 -07001395 cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001396 lbs_deb_host(
1397 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
David Woodhouse183aeac2007-12-15 01:52:54 -05001398 lbs_complete_command(priv, cmdnode, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399
1400 ret = 0;
1401 goto done;
1402 }
1403
David Woodhouseaa21c002007-12-08 20:04:36 +00001404 if ((priv->psstate == PS_STATE_SLEEP) ||
1405 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001406 lbs_deb_host(
1407 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
David Woodhouse183aeac2007-12-15 01:52:54 -05001408 lbs_complete_command(priv, cmdnode, 0);
David Woodhouseaa21c002007-12-08 20:04:36 +00001409 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001410
1411 ret = 0;
1412 goto done;
1413 }
1414
Holger Schurig8ff12da2007-08-02 11:54:31 -04001415 lbs_deb_host(
1416 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417 }
1418 }
Paul Fox2ae1b8b32011-05-09 10:40:42 +01001419 spin_lock_irqsave(&priv->driver_lock, flags);
Daniel Drakedf90d842011-07-09 15:41:25 +01001420 list_del_init(&cmdnode->list);
Paul Fox2ae1b8b32011-05-09 10:40:42 +01001421 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001422 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001423 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001424 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001425 } else {
1426 /*
1427 * check if in power save mode, if yes, put the device back
1428 * to PS mode
1429 */
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301430#ifdef TODO
1431 /*
1432 * This was the old code for libertas+wext. Someone that
1433 * understands this beast should re-code it in a sane way.
1434 *
1435 * I actually don't understand why this is related to WPA
1436 * and to connection status, shouldn't powering should be
1437 * independ of such things?
1438 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001439 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1440 (priv->psstate == PS_STATE_FULL_POWER) &&
1441 ((priv->connect_status == LBS_CONNECTED) ||
Holger Schurig602114a2009-12-02 15:26:01 +01001442 lbs_mesh_connected(priv))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001443 if (priv->secinfo.WPAenabled ||
1444 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001445 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001446 if (priv->wpa_mcast_key.len ||
1447 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001448 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001449 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1450 " go back to PS_SLEEP");
Dan Williams0bb64082010-07-27 13:08:08 -07001451 lbs_set_ps_mode(priv,
1452 PS_MODE_ACTION_ENTER_PS,
1453 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001454 }
1455 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001456 lbs_deb_host(
1457 "EXEC_NEXT_CMD: cmdpendingq empty, "
1458 "go back to PS_SLEEP");
Dan Williams0bb64082010-07-27 13:08:08 -07001459 lbs_set_ps_mode(priv, PS_MODE_ACTION_ENTER_PS,
1460 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001461 }
1462 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301463#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001464 }
1465
1466 ret = 0;
1467done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001468 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001469 return ret;
1470}
1471
Holger Schurigf539f2e2008-03-26 13:22:11 +01001472static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001473{
1474 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001475 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001476
Holger Schurig8ff12da2007-08-02 11:54:31 -04001477 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001478 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1479 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001480
Holger Schurigf539f2e2008-03-26 13:22:11 +01001481 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1482 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001483 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001484 netdev_alert(priv->dev, "confirm_sleep failed\n");
Holger Schurig7919b892008-04-01 14:50:43 +02001485 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001486 }
Holger Schurig7919b892008-04-01 14:50:43 +02001487
1488 spin_lock_irqsave(&priv->driver_lock, flags);
1489
Holger Schuriga01f5452008-06-04 11:10:40 +02001490 /* We don't get a response on the sleep-confirmation */
1491 priv->dnld_sent = DNLD_RES_RECEIVED;
1492
Amitkumar Karwar66fceb62010-05-19 03:24:38 -07001493 if (priv->is_host_sleep_configured) {
1494 priv->is_host_sleep_activated = 1;
1495 wake_up_interruptible(&priv->host_sleep_q);
1496 }
1497
Holger Schurig7919b892008-04-01 14:50:43 +02001498 /* If nothing to do, go back to sleep (?) */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001499 if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
Holger Schurig7919b892008-04-01 14:50:43 +02001500 priv->psstate = PS_STATE_SLEEP;
1501
1502 spin_unlock_irqrestore(&priv->driver_lock, flags);
1503
1504out:
Holger Schurigf539f2e2008-03-26 13:22:11 +01001505 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001506}
1507
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001508/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001509 * lbs_ps_confirm_sleep - checks condition and prepares to
1510 * send sleep confirm command to firmware if ok
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001511 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001512 * @priv: A pointer to &struct lbs_private structure
1513 *
1514 * returns: n/a
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001515 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001516void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001517{
1518 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001519 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001520
Holger Schurig8ff12da2007-08-02 11:54:31 -04001521 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001522
Holger Schuriga01f5452008-06-04 11:10:40 +02001523 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f42007-05-25 13:05:16 -04001524 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001525 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001526 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001527 }
1528
Holger Schurig7919b892008-04-01 14:50:43 +02001529 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001530 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001531 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001532 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001533 }
Holger Schurig7919b892008-04-01 14:50:43 +02001534
1535 /* Pending events or command responses? */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001536 if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001537 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02001538 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001539 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001540 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001541
1542 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001543 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01001544 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001545 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001546 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001547 }
1548
Holger Schurig8ff12da2007-08-02 11:54:31 -04001549 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001550}
Holger Schurig675787e2007-12-05 17:58:11 +01001551
1552
Anna Neal0112c9e2008-09-11 11:17:25 -07001553/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001554 * lbs_set_tpc_cfg - Configures the transmission power control functionality
Anna Neal0112c9e2008-09-11 11:17:25 -07001555 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001556 * @priv: A pointer to &struct lbs_private structure
1557 * @enable: Transmission power control enable
1558 * @p0: Power level when link quality is good (dBm).
1559 * @p1: Power level when link quality is fair (dBm).
1560 * @p2: Power level when link quality is poor (dBm).
1561 * @usesnr: Use Signal to Noise Ratio in TPC
Anna Neal0112c9e2008-09-11 11:17:25 -07001562 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001563 * returns: 0 on success
Anna Neal0112c9e2008-09-11 11:17:25 -07001564 */
1565int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1566 int8_t p2, int usesnr)
1567{
1568 struct cmd_ds_802_11_tpc_cfg cmd;
1569 int ret;
1570
1571 memset(&cmd, 0, sizeof(cmd));
1572 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1573 cmd.action = cpu_to_le16(CMD_ACT_SET);
1574 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04001575 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07001576 cmd.P0 = p0;
1577 cmd.P1 = p1;
1578 cmd.P2 = p2;
1579
1580 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1581
1582 return ret;
1583}
1584
1585/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001586 * lbs_set_power_adapt_cfg - Configures the power adaptation settings
Anna Neal0112c9e2008-09-11 11:17:25 -07001587 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001588 * @priv: A pointer to &struct lbs_private structure
1589 * @enable: Power adaptation enable
1590 * @p0: Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1591 * @p1: Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1592 * @p2: Power level for 48 and 54 Mbps (dBm).
Anna Neal0112c9e2008-09-11 11:17:25 -07001593 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001594 * returns: 0 on Success
Anna Neal0112c9e2008-09-11 11:17:25 -07001595 */
1596
1597int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1598 int8_t p1, int8_t p2)
1599{
1600 struct cmd_ds_802_11_pa_cfg cmd;
1601 int ret;
1602
1603 memset(&cmd, 0, sizeof(cmd));
1604 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1605 cmd.action = cpu_to_le16(CMD_ACT_SET);
1606 cmd.enable = !!enable;
1607 cmd.P0 = p0;
1608 cmd.P1 = p1;
1609 cmd.P2 = p2;
1610
1611 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1612
1613 return ret;
1614}
1615
1616
Holger Schurig6d898b12009-10-14 16:49:53 +02001617struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001618 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1619 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1620 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01001621{
Holger Schurig675787e2007-12-05 17:58:11 +01001622 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01001623
1624 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01001625
David Woodhouseaa21c002007-12-08 20:04:36 +00001626 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01001627 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05001628 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01001629 goto done;
1630 }
1631
Dan Williams77ccdcf2010-07-27 13:15:45 -07001632 /* No commands are allowed in Deep Sleep until we toggle the GPIO
1633 * to wake up the card and it has signaled that it's ready.
1634 */
1635 if (!priv->is_auto_deep_sleep_enabled) {
1636 if (priv->is_deep_sleep) {
1637 lbs_deb_cmd("command not allowed in deep sleep\n");
1638 cmdnode = ERR_PTR(-EBUSY);
1639 goto done;
1640 }
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001641 }
1642
Dan Williamsd06956b2010-07-27 13:16:24 -07001643 cmdnode = lbs_get_free_cmd_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01001644 if (cmdnode == NULL) {
1645 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1646
1647 /* Wake up main thread to execute next command */
Daniel Draked2e7b342011-08-01 16:43:13 +01001648 wake_up(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05001649 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01001650 goto done;
1651 }
1652
David Woodhouse448a51a2007-12-08 00:59:54 +00001653 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05001654 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01001655
Dan Williams7ad994d2007-12-11 12:33:30 -05001656 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001657 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05001658
Daniel Drake71005be2011-05-26 21:31:08 +01001659 /* Set command, clean result, move to buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001660 cmdnode->cmdbuf->command = cpu_to_le16(command);
1661 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
Dan Williamsddac4522007-12-11 13:49:39 -05001662 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01001663
1664 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1665
Holger Schurig675787e2007-12-05 17:58:11 +01001666 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001667 lbs_queue_cmd(priv, cmdnode);
Daniel Draked2e7b342011-08-01 16:43:13 +01001668 wake_up(&priv->waitq);
Holger Schurig675787e2007-12-05 17:58:11 +01001669
David Woodhouse3399ea52007-12-15 03:09:33 -05001670 done:
1671 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
1672 return cmdnode;
1673}
1674
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001675void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1676 struct cmd_header *in_cmd, int in_cmd_size)
1677{
1678 lbs_deb_enter(LBS_DEB_CMD);
1679 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1680 lbs_cmd_async_callback, 0);
1681 lbs_deb_leave(LBS_DEB_CMD);
1682}
1683
David Woodhouse3399ea52007-12-15 03:09:33 -05001684int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1685 struct cmd_header *in_cmd, int in_cmd_size,
1686 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1687 unsigned long callback_arg)
1688{
1689 struct cmd_ctrl_node *cmdnode;
1690 unsigned long flags;
1691 int ret = 0;
1692
1693 lbs_deb_enter(LBS_DEB_HOST);
1694
1695 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1696 callback, callback_arg);
1697 if (IS_ERR(cmdnode)) {
1698 ret = PTR_ERR(cmdnode);
1699 goto done;
1700 }
1701
Holger Schurig675787e2007-12-05 17:58:11 +01001702 might_sleep();
Daniel Drakedf90d842011-07-09 15:41:25 +01001703
1704 /*
1705 * Be careful with signals here. A signal may be received as the system
1706 * goes into suspend or resume. We do not want this to interrupt the
1707 * command, so we perform an uninterruptible sleep.
1708 */
1709 wait_event(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
Holger Schurig675787e2007-12-05 17:58:11 +01001710
David Woodhouseaa21c002007-12-08 20:04:36 +00001711 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05001712 ret = cmdnode->result;
1713 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001714 netdev_info(priv->dev, "PREP_CMD: command 0x%04x failed: %d\n",
1715 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05001716
David Woodhousead12d0f2007-12-15 02:06:16 -05001717 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001718 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01001719
1720done:
1721 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1722 return ret;
1723}
Dan Williams14e865b2007-12-10 15:11:23 -05001724EXPORT_SYMBOL_GPL(__lbs_cmd);