blob: e08ab1de3d9d3bd126eb0a0c821bd46d82cee903 [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>
Holger Schurige93156e2009-10-22 15:30:58 +020011
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020012#include "decl.h"
Kiran Divekare86dc1c2010-06-14 22:01:26 +053013#include "cfg.h"
Dan Williams6e66f032007-12-11 12:42:16 -050014#include "cmd.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020015
Dan Williams9fb76632010-07-27 12:55:21 -070016#define CAL_NF(nf) ((s32)(-(s32)(nf)))
17#define CAL_RSSI(snr, nf) ((s32)((s32)(snr) + CAL_NF(nf)))
Holger Schurige93156e2009-10-22 15:30:58 +020018
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070020 * lbs_cmd_copyback - Simple callback that copies response back into command
Holger Schurig8db4a2b2008-03-19 10:11:00 +010021 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070022 * @priv: A pointer to &struct lbs_private structure
23 * @extra: A pointer to the original command structure for which
24 * 'resp' is a response
25 * @resp: A pointer to the command response
Holger Schurig8db4a2b2008-03-19 10:11:00 +010026 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070027 * returns: 0 on success, error on failure
Holger Schurig8db4a2b2008-03-19 10:11:00 +010028 */
29int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
30 struct cmd_header *resp)
31{
32 struct cmd_header *buf = (void *)extra;
33 uint16_t copy_len;
34
35 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
36 memcpy(buf, resp, copy_len);
37 return 0;
38}
39EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
40
41/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070042 * lbs_cmd_async_callback - Simple callback that ignores the result.
43 * Use this if you just want to send a command to the hardware, but don't
Holger Schurig8db4a2b2008-03-19 10:11:00 +010044 * care for the result.
45 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070046 * @priv: ignored
47 * @extra: ignored
48 * @resp: ignored
Holger Schurig8db4a2b2008-03-19 10:11:00 +010049 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070050 * returns: 0 for success
Holger Schurig8db4a2b2008-03-19 10:11:00 +010051 */
52static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
53 struct cmd_header *resp)
54{
55 return 0;
56}
57
58
59/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070060 * is_command_allowed_in_ps - tests if a command is allowed in Power Save mode
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020061 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070062 * @cmd: the command ID
63 *
64 * returns: 1 if allowed, 0 if not allowed
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020065 */
Dan Williams852e1f22007-12-10 15:24:47 -050066static u8 is_command_allowed_in_ps(u16 cmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020067{
Dan Williams852e1f22007-12-10 15:24:47 -050068 switch (cmd) {
69 case CMD_802_11_RSSI:
70 return 1;
Amitkumar Karwar66fceb62010-05-19 03:24:38 -070071 case CMD_802_11_HOST_SLEEP_CFG:
72 return 1;
Dan Williams852e1f22007-12-10 15:24:47 -050073 default:
74 break;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020075 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020076 return 0;
77}
78
Dan Williams6e66f032007-12-11 12:42:16 -050079/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -070080 * lbs_update_hw_spec - Updates the hardware details like MAC address
81 * and regulatory region
Dan Williams6e66f032007-12-11 12:42:16 -050082 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070083 * @priv: A pointer to &struct lbs_private structure
Dan Williams6e66f032007-12-11 12:42:16 -050084 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -070085 * returns: 0 on success, error on failure
Dan Williams6e66f032007-12-11 12:42:16 -050086 */
87int lbs_update_hw_spec(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020088{
Dan Williams6e66f032007-12-11 12:42:16 -050089 struct cmd_ds_get_hw_spec cmd;
90 int ret = -1;
91 u32 i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020092
Holger Schurig9012b282007-05-25 11:27:16 -040093 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020094
Dan Williams6e66f032007-12-11 12:42:16 -050095 memset(&cmd, 0, sizeof(cmd));
96 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
97 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
David Woodhouse689442d2007-12-12 16:00:42 -050098 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
Dan Williams6e66f032007-12-11 12:42:16 -050099 if (ret)
100 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200101
Dan Williams6e66f032007-12-11 12:42:16 -0500102 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500103
Holger Schurigdac10a92008-01-16 15:55:22 +0100104 /* The firmware release is in an interesting format: the patch
105 * level is in the most significant nibble ... so fix that: */
106 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
107 priv->fwrelease = (priv->fwrelease << 8) |
108 (priv->fwrelease >> 24 & 0xff);
109
110 /* Some firmware capabilities:
111 * CF card firmware 5.0.16p0: cap 0x00000303
112 * USB dongle firmware 5.110.17p2: cap 0x00000303
113 */
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700114 netdev_info(priv->dev, "%pM, fw %u.%u.%up%u, cap 0x%08x\n",
Johannes Berge1749612008-10-27 15:59:26 -0700115 cmd.permanentaddr,
Holger Schurigdac10a92008-01-16 15:55:22 +0100116 priv->fwrelease >> 24 & 0xff,
117 priv->fwrelease >> 16 & 0xff,
118 priv->fwrelease >> 8 & 0xff,
119 priv->fwrelease & 0xff,
120 priv->fwcapinfo);
Dan Williams6e66f032007-12-11 12:42:16 -0500121 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
122 cmd.hwifversion, cmd.version);
123
124 /* Clamp region code to 8-bit since FW spec indicates that it should
125 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
126 * returns non-zero high 8 bits here.
Marek Vasut15483992009-07-16 19:19:53 +0200127 *
128 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
129 * need to check for this problem and handle it properly.
Dan Williams6e66f032007-12-11 12:42:16 -0500130 */
Marek Vasut15483992009-07-16 19:19:53 +0200131 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
132 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
133 else
134 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
Dan Williams6e66f032007-12-11 12:42:16 -0500135
136 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
137 /* use the region code to search for the index */
138 if (priv->regioncode == lbs_region_code_to_index[i])
139 break;
140 }
141
142 /* if it's unidentified region code, use the default (USA) */
143 if (i >= MRVDRV_MAX_REGION_CODE) {
144 priv->regioncode = 0x10;
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700145 netdev_info(priv->dev,
146 "unidentified region code; using the default (USA)\n");
Dan Williams6e66f032007-12-11 12:42:16 -0500147 }
148
149 if (priv->current_addr[0] == 0xff)
150 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
151
Vasily Khoruzhick75abde42011-01-21 22:44:49 +0200152 if (!priv->copied_hwaddr) {
153 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
154 if (priv->mesh_dev)
155 memcpy(priv->mesh_dev->dev_addr,
156 priv->current_addr, ETH_ALEN);
157 priv->copied_hwaddr = 1;
158 }
Dan Williams6e66f032007-12-11 12:42:16 -0500159
Dan Williams6e66f032007-12-11 12:42:16 -0500160out:
Holger Schurig9012b282007-05-25 11:27:16 -0400161 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams6e66f032007-12-11 12:42:16 -0500162 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200163}
164
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700165static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
166 struct cmd_header *resp)
167{
168 lbs_deb_enter(LBS_DEB_CMD);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530169 if (priv->is_host_sleep_activated) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700170 priv->is_host_sleep_configured = 0;
171 if (priv->psstate == PS_STATE_FULL_POWER) {
172 priv->is_host_sleep_activated = 0;
173 wake_up_interruptible(&priv->host_sleep_q);
174 }
175 } else {
176 priv->is_host_sleep_configured = 1;
177 }
178 lbs_deb_leave(LBS_DEB_CMD);
179 return 0;
180}
181
Anna Neal582c1b52008-10-20 16:46:56 -0700182int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
183 struct wol_config *p_wol_config)
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500184{
185 struct cmd_ds_host_sleep cmd_config;
186 int ret;
187
Deepak Saxenaae63a332010-10-31 13:40:33 +0000188 /*
189 * Certain firmware versions do not support EHS_REMOVE_WAKEUP command
190 * and the card will return a failure. Since we need to be
191 * able to reset the mask, in those cases we set a 0 mask instead.
192 */
193 if (criteria == EHS_REMOVE_WAKEUP && !priv->ehs_remove_supported)
194 criteria = 0;
195
David Woodhouse9fae8992007-12-15 03:46:44 -0500196 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500197 cmd_config.criteria = cpu_to_le32(criteria);
David Woodhouse506e9022007-12-12 20:06:06 -0500198 cmd_config.gpio = priv->wol_gpio;
199 cmd_config.gap = priv->wol_gap;
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500200
Anna Neal582c1b52008-10-20 16:46:56 -0700201 if (p_wol_config != NULL)
202 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
203 sizeof(struct wol_config));
204 else
205 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
206
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700207 ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
208 le16_to_cpu(cmd_config.hdr.size),
209 lbs_ret_host_sleep_cfg, 0);
David Woodhouse506e9022007-12-12 20:06:06 -0500210 if (!ret) {
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700211 if (p_wol_config)
Anna Neal582c1b52008-10-20 16:46:56 -0700212 memcpy((uint8_t *) p_wol_config,
213 (uint8_t *)&cmd_config.wol_conf,
214 sizeof(struct wol_config));
David Woodhouse506e9022007-12-12 20:06:06 -0500215 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700216 netdev_info(priv->dev, "HOST_SLEEP_CFG failed %d\n", ret);
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500217 }
David Woodhouse506e9022007-12-12 20:06:06 -0500218
David Woodhouse6ce4fd22007-12-12 15:19:29 -0500219 return ret;
220}
221EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
222
Dan Williams0bb64082010-07-27 13:08:08 -0700223/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700224 * lbs_set_ps_mode - Sets the Power Save mode
Dan Williams0bb64082010-07-27 13:08:08 -0700225 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700226 * @priv: A pointer to &struct lbs_private structure
227 * @cmd_action: The Power Save operation (PS_MODE_ACTION_ENTER_PS or
Dan Williams0bb64082010-07-27 13:08:08 -0700228 * PS_MODE_ACTION_EXIT_PS)
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700229 * @block: Whether to block on a response or not
Dan Williams0bb64082010-07-27 13:08:08 -0700230 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700231 * returns: 0 on success, error on failure
Dan Williams0bb64082010-07-27 13:08:08 -0700232 */
233int lbs_set_ps_mode(struct lbs_private *priv, u16 cmd_action, bool block)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200234{
Dan Williams0bb64082010-07-27 13:08:08 -0700235 struct cmd_ds_802_11_ps_mode cmd;
236 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200237
Holger Schurig9012b282007-05-25 11:27:16 -0400238 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239
Dan Williams0bb64082010-07-27 13:08:08 -0700240 memset(&cmd, 0, sizeof(cmd));
241 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
242 cmd.action = cpu_to_le16(cmd_action);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200243
Dan Williams0bb64082010-07-27 13:08:08 -0700244 if (cmd_action == PS_MODE_ACTION_ENTER_PS) {
245 lbs_deb_cmd("PS_MODE: action ENTER_PS\n");
246 cmd.multipledtim = cpu_to_le16(1); /* Default DTIM multiple */
247 } else if (cmd_action == PS_MODE_ACTION_EXIT_PS) {
248 lbs_deb_cmd("PS_MODE: action EXIT_PS\n");
249 } else {
250 /* We don't handle CONFIRM_SLEEP here because it needs to
251 * be fastpathed to the firmware.
252 */
253 lbs_deb_cmd("PS_MODE: unknown action 0x%X\n", cmd_action);
254 ret = -EOPNOTSUPP;
255 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200256 }
257
Dan Williams0bb64082010-07-27 13:08:08 -0700258 if (block)
259 ret = lbs_cmd_with_response(priv, CMD_802_11_PS_MODE, &cmd);
260 else
261 lbs_cmd_async(priv, CMD_802_11_PS_MODE, &cmd.hdr, sizeof (cmd));
262
263out:
264 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
265 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200266}
267
David Woodhouse3fbe1042007-12-17 23:48:31 -0500268int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
269 struct sleep_params *sp)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200270{
David Woodhouse3fbe1042007-12-17 23:48:31 -0500271 struct cmd_ds_802_11_sleep_params cmd;
272 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200273
Holger Schurig9012b282007-05-25 11:27:16 -0400274 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200275
Dan Williams0aef64d2007-08-02 11:31:18 -0400276 if (cmd_action == CMD_ACT_GET) {
David Woodhouse3fbe1042007-12-17 23:48:31 -0500277 memset(&cmd, 0, sizeof(cmd));
278 } else {
279 cmd.error = cpu_to_le16(sp->sp_error);
280 cmd.offset = cpu_to_le16(sp->sp_offset);
281 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
282 cmd.calcontrol = sp->sp_calcontrol;
283 cmd.externalsleepclk = sp->sp_extsleepclk;
284 cmd.reserved = cpu_to_le16(sp->sp_reserved);
285 }
286 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
287 cmd.action = cpu_to_le16(cmd_action);
288
289 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
290
291 if (!ret) {
292 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
293 "calcontrol 0x%x extsleepclk 0x%x\n",
294 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
295 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
296 cmd.externalsleepclk);
297
298 sp->sp_error = le16_to_cpu(cmd.error);
299 sp->sp_offset = le16_to_cpu(cmd.offset);
300 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
301 sp->sp_calcontrol = cmd.calcontrol;
302 sp->sp_extsleepclk = cmd.externalsleepclk;
303 sp->sp_reserved = le16_to_cpu(cmd.reserved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200304 }
305
David Woodhouse3fbe1042007-12-17 23:48:31 -0500306 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200307 return 0;
308}
309
Amitkumar Karwar49125452009-09-30 20:04:38 -0700310static int lbs_wait_for_ds_awake(struct lbs_private *priv)
311{
312 int ret = 0;
313
314 lbs_deb_enter(LBS_DEB_CMD);
315
316 if (priv->is_deep_sleep) {
317 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
318 !priv->is_deep_sleep, (10 * HZ))) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700319 netdev_err(priv->dev, "ds_awake_q: timer expired\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700320 ret = -1;
321 }
322 }
323
324 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
325 return ret;
326}
327
328int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
329{
330 int ret = 0;
331
332 lbs_deb_enter(LBS_DEB_CMD);
333
334 if (deep_sleep) {
335 if (priv->is_deep_sleep != 1) {
336 lbs_deb_cmd("deep sleep: sleep\n");
337 BUG_ON(!priv->enter_deep_sleep);
338 ret = priv->enter_deep_sleep(priv);
339 if (!ret) {
340 netif_stop_queue(priv->dev);
341 netif_carrier_off(priv->dev);
342 }
343 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700344 netdev_err(priv->dev, "deep sleep: already enabled\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700345 }
346 } else {
347 if (priv->is_deep_sleep) {
348 lbs_deb_cmd("deep sleep: wakeup\n");
349 BUG_ON(!priv->exit_deep_sleep);
350 ret = priv->exit_deep_sleep(priv);
351 if (!ret) {
352 ret = lbs_wait_for_ds_awake(priv);
353 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700354 netdev_err(priv->dev,
355 "deep sleep: wakeup failed\n");
Amitkumar Karwar49125452009-09-30 20:04:38 -0700356 }
357 }
358 }
359
360 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
361 return ret;
362}
363
Amitkumar Karwar13118432010-07-08 06:43:48 +0530364static int lbs_ret_host_sleep_activate(struct lbs_private *priv,
365 unsigned long dummy,
366 struct cmd_header *cmd)
367{
368 lbs_deb_enter(LBS_DEB_FW);
369 priv->is_host_sleep_activated = 1;
370 wake_up_interruptible(&priv->host_sleep_q);
371 lbs_deb_leave(LBS_DEB_FW);
372 return 0;
373}
374
375int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep)
376{
377 struct cmd_header cmd;
378 int ret = 0;
379 uint32_t criteria = EHS_REMOVE_WAKEUP;
380
381 lbs_deb_enter(LBS_DEB_CMD);
382
383 if (host_sleep) {
384 if (priv->is_host_sleep_activated != 1) {
385 memset(&cmd, 0, sizeof(cmd));
386 ret = lbs_host_sleep_cfg(priv, priv->wol_criteria,
387 (struct wol_config *)NULL);
388 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700389 netdev_info(priv->dev,
390 "Host sleep configuration failed: %d\n",
391 ret);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530392 return ret;
393 }
394 if (priv->psstate == PS_STATE_FULL_POWER) {
395 ret = __lbs_cmd(priv,
396 CMD_802_11_HOST_SLEEP_ACTIVATE,
397 &cmd,
398 sizeof(cmd),
399 lbs_ret_host_sleep_activate, 0);
400 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700401 netdev_info(priv->dev,
402 "HOST_SLEEP_ACTIVATE failed: %d\n",
403 ret);
Amitkumar Karwar13118432010-07-08 06:43:48 +0530404 }
405
406 if (!wait_event_interruptible_timeout(
407 priv->host_sleep_q,
408 priv->is_host_sleep_activated,
409 (10 * HZ))) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700410 netdev_err(priv->dev,
411 "host_sleep_q: timer expired\n");
Amitkumar Karwar13118432010-07-08 06:43:48 +0530412 ret = -1;
413 }
414 } else {
Joe Perchesf3a57fd2011-05-02 16:49:15 -0700415 netdev_err(priv->dev, "host sleep: already enabled\n");
Amitkumar Karwar13118432010-07-08 06:43:48 +0530416 }
417 } else {
418 if (priv->is_host_sleep_activated)
419 ret = lbs_host_sleep_cfg(priv, criteria,
420 (struct wol_config *)NULL);
421 }
422
423 return ret;
424}
425
Dan Williams39fcf7a2008-09-10 12:49:00 -0400426/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700427 * lbs_set_snmp_mib - Set an SNMP MIB value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400428 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700429 * @priv: A pointer to &struct lbs_private structure
430 * @oid: The OID to set in the firmware
431 * @val: Value to set the OID to
Dan Williams39fcf7a2008-09-10 12:49:00 -0400432 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700433 * returns: 0 on success, error on failure
Dan Williams39fcf7a2008-09-10 12:49:00 -0400434 */
435int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200436{
Dan Williams39fcf7a2008-09-10 12:49:00 -0400437 struct cmd_ds_802_11_snmp_mib cmd;
438 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200439
Holger Schurig9012b282007-05-25 11:27:16 -0400440 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200441
Dan Williams39fcf7a2008-09-10 12:49:00 -0400442 memset(&cmd, 0, sizeof (cmd));
443 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
444 cmd.action = cpu_to_le16(CMD_ACT_SET);
445 cmd.oid = cpu_to_le16((u16) oid);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200446
Dan Williams39fcf7a2008-09-10 12:49:00 -0400447 switch (oid) {
448 case SNMP_MIB_OID_BSS_TYPE:
449 cmd.bufsize = cpu_to_le16(sizeof(u8));
Holger Schurigfef06402009-10-22 15:30:59 +0200450 cmd.value[0] = val;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200451 break;
Dan Williams39fcf7a2008-09-10 12:49:00 -0400452 case SNMP_MIB_OID_11D_ENABLE:
453 case SNMP_MIB_OID_FRAG_THRESHOLD:
454 case SNMP_MIB_OID_RTS_THRESHOLD:
455 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
456 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
457 cmd.bufsize = cpu_to_le16(sizeof(u16));
458 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459 break;
460 default:
Dan Williams39fcf7a2008-09-10 12:49:00 -0400461 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
462 ret = -EINVAL;
463 goto out;
464 }
465
466 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
467 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
468
469 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
470
471out:
472 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
473 return ret;
474}
475
476/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700477 * lbs_get_snmp_mib - Get an SNMP MIB value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400478 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700479 * @priv: A pointer to &struct lbs_private structure
480 * @oid: The OID to retrieve from the firmware
481 * @out_val: Location for the returned value
Dan Williams39fcf7a2008-09-10 12:49:00 -0400482 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700483 * returns: 0 on success, error on failure
Dan Williams39fcf7a2008-09-10 12:49:00 -0400484 */
485int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
486{
487 struct cmd_ds_802_11_snmp_mib cmd;
488 int ret;
489
490 lbs_deb_enter(LBS_DEB_CMD);
491
492 memset(&cmd, 0, sizeof (cmd));
493 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
494 cmd.action = cpu_to_le16(CMD_ACT_GET);
495 cmd.oid = cpu_to_le16(oid);
496
497 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
498 if (ret)
499 goto out;
500
501 switch (le16_to_cpu(cmd.bufsize)) {
502 case sizeof(u8):
Holger Schurigfef06402009-10-22 15:30:59 +0200503 *out_val = cmd.value[0];
Dan Williams39fcf7a2008-09-10 12:49:00 -0400504 break;
505 case sizeof(u16):
506 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
507 break;
508 default:
509 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
510 oid, le16_to_cpu(cmd.bufsize));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200511 break;
512 }
513
Dan Williams39fcf7a2008-09-10 12:49:00 -0400514out:
515 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
516 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200517}
518
Dan Williams87c8c722008-08-19 15:15:35 -0400519/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700520 * lbs_get_tx_power - Get the min, max, and current TX power
Dan Williams87c8c722008-08-19 15:15:35 -0400521 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700522 * @priv: A pointer to &struct lbs_private structure
523 * @curlevel: Current power level in dBm
524 * @minlevel: Minimum supported power level in dBm (optional)
525 * @maxlevel: Maximum supported power level in dBm (optional)
Dan Williams87c8c722008-08-19 15:15:35 -0400526 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700527 * returns: 0 on success, error on failure
Dan Williams87c8c722008-08-19 15:15:35 -0400528 */
529int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
530 s16 *maxlevel)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200531{
Dan Williams87c8c722008-08-19 15:15:35 -0400532 struct cmd_ds_802_11_rf_tx_power cmd;
533 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200534
Holger Schurig9012b282007-05-25 11:27:16 -0400535 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200536
Dan Williams87c8c722008-08-19 15:15:35 -0400537 memset(&cmd, 0, sizeof(cmd));
538 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
539 cmd.action = cpu_to_le16(CMD_ACT_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200540
Dan Williams87c8c722008-08-19 15:15:35 -0400541 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
542 if (ret == 0) {
543 *curlevel = le16_to_cpu(cmd.curlevel);
544 if (minlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100545 *minlevel = cmd.minlevel;
Dan Williams87c8c722008-08-19 15:15:35 -0400546 if (maxlevel)
Holger Schurig87bf24f2008-10-29 10:35:02 +0100547 *maxlevel = cmd.maxlevel;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200548 }
Holger Schurig9012b282007-05-25 11:27:16 -0400549
550 lbs_deb_leave(LBS_DEB_CMD);
Dan Williams87c8c722008-08-19 15:15:35 -0400551 return ret;
552}
553
554/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700555 * lbs_set_tx_power - Set the TX power
Dan Williams87c8c722008-08-19 15:15:35 -0400556 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700557 * @priv: A pointer to &struct lbs_private structure
558 * @dbm: The desired power level in dBm
Dan Williams87c8c722008-08-19 15:15:35 -0400559 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700560 * returns: 0 on success, error on failure
Dan Williams87c8c722008-08-19 15:15:35 -0400561 */
562int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
563{
564 struct cmd_ds_802_11_rf_tx_power cmd;
565 int ret;
566
567 lbs_deb_enter(LBS_DEB_CMD);
568
569 memset(&cmd, 0, sizeof(cmd));
570 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
571 cmd.action = cpu_to_le16(CMD_ACT_SET);
572 cmd.curlevel = cpu_to_le16(dbm);
573
574 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
575
576 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
577
578 lbs_deb_leave(LBS_DEB_CMD);
579 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200580}
581
Dan Williamsa45b6f42010-07-27 12:54:34 -0700582/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700583 * lbs_set_monitor_mode - Enable or disable monitor mode
584 * (only implemented on OLPC usb8388 FW)
Dan Williamsa45b6f42010-07-27 12:54:34 -0700585 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700586 * @priv: A pointer to &struct lbs_private structure
587 * @enable: 1 to enable monitor mode, 0 to disable
Dan Williamsa45b6f42010-07-27 12:54:34 -0700588 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700589 * returns: 0 on success, error on failure
Dan Williamsa45b6f42010-07-27 12:54:34 -0700590 */
591int lbs_set_monitor_mode(struct lbs_private *priv, int enable)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400592{
Dan Williamsa45b6f42010-07-27 12:54:34 -0700593 struct cmd_ds_802_11_monitor_mode cmd;
594 int ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400595
Dan Williamsa45b6f42010-07-27 12:54:34 -0700596 memset(&cmd, 0, sizeof(cmd));
597 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
598 cmd.action = cpu_to_le16(CMD_ACT_SET);
599 if (enable)
600 cmd.mode = cpu_to_le16(0x1);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400601
Dan Williamsa45b6f42010-07-27 12:54:34 -0700602 lbs_deb_cmd("SET_MONITOR_MODE: %d\n", enable);
603
604 ret = lbs_cmd_with_response(priv, CMD_802_11_MONITOR_MODE, &cmd);
605 if (ret == 0) {
606 priv->dev->type = enable ? ARPHRD_IEEE80211_RADIOTAP :
607 ARPHRD_ETHER;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400608 }
609
Dan Williamsa45b6f42010-07-27 12:54:34 -0700610 lbs_deb_leave(LBS_DEB_CMD);
611 return ret;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400612}
613
Dan Williams2dd4b262007-12-11 16:54:15 -0500614/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700615 * lbs_get_channel - Get the radio channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500616 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700617 * @priv: A pointer to &struct lbs_private structure
Dan Williams2dd4b262007-12-11 16:54:15 -0500618 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700619 * returns: The channel on success, error on failure
Dan Williams2dd4b262007-12-11 16:54:15 -0500620 */
Holger Schuriga3cbfb02009-10-16 17:33:56 +0200621static int lbs_get_channel(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200622{
Dan Williams2dd4b262007-12-11 16:54:15 -0500623 struct cmd_ds_802_11_rf_channel cmd;
624 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200625
Holger Schurig8ff12da2007-08-02 11:54:31 -0400626 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200627
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200628 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500629 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
630 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200631
David Woodhouse689442d2007-12-12 16:00:42 -0500632 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500633 if (ret)
634 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200635
Dan Williamscb182a62007-12-11 17:35:51 -0500636 ret = le16_to_cpu(cmd.channel);
637 lbs_deb_cmd("current radio channel is %d\n", ret);
Dan Williams2dd4b262007-12-11 16:54:15 -0500638
639out:
640 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
641 return ret;
642}
643
Holger Schurig73ab1f22008-04-02 16:52:19 +0200644int lbs_update_channel(struct lbs_private *priv)
645{
646 int ret;
647
648 /* the channel in f/w could be out of sync; get the current channel */
649 lbs_deb_enter(LBS_DEB_ASSOC);
650
651 ret = lbs_get_channel(priv);
652 if (ret > 0) {
Holger Schurigc14951f2009-10-22 15:30:50 +0200653 priv->channel = ret;
Holger Schurig73ab1f22008-04-02 16:52:19 +0200654 ret = 0;
655 }
656 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
657 return ret;
658}
659
Dan Williams2dd4b262007-12-11 16:54:15 -0500660/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700661 * lbs_set_channel - Set the radio channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500662 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700663 * @priv: A pointer to &struct lbs_private structure
664 * @channel: The desired channel, or 0 to clear a locked channel
Dan Williams2dd4b262007-12-11 16:54:15 -0500665 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700666 * returns: 0 on success, error on failure
Dan Williams2dd4b262007-12-11 16:54:15 -0500667 */
668int lbs_set_channel(struct lbs_private *priv, u8 channel)
669{
670 struct cmd_ds_802_11_rf_channel cmd;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530671#ifdef DEBUG
Holger Schurigc14951f2009-10-22 15:30:50 +0200672 u8 old_channel = priv->channel;
Manish Katiyar96d46d52008-10-13 16:22:42 +0530673#endif
Dan Williams2dd4b262007-12-11 16:54:15 -0500674 int ret = 0;
675
676 lbs_deb_enter(LBS_DEB_CMD);
677
Holger Schurig8d0c7fa2008-04-09 10:23:31 +0200678 memset(&cmd, 0, sizeof(cmd));
Dan Williams2dd4b262007-12-11 16:54:15 -0500679 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
680 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
681 cmd.channel = cpu_to_le16(channel);
682
David Woodhouse689442d2007-12-12 16:00:42 -0500683 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
Dan Williams2dd4b262007-12-11 16:54:15 -0500684 if (ret)
685 goto out;
686
Holger Schurigc14951f2009-10-22 15:30:50 +0200687 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
Dan Williamscb182a62007-12-11 17:35:51 -0500688 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
Holger Schurigc14951f2009-10-22 15:30:50 +0200689 priv->channel);
Dan Williams2dd4b262007-12-11 16:54:15 -0500690
691out:
692 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
693 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200694}
695
Dan Williams9fb76632010-07-27 12:55:21 -0700696/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700697 * lbs_get_rssi - Get current RSSI and noise floor
Dan Williams9fb76632010-07-27 12:55:21 -0700698 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700699 * @priv: A pointer to &struct lbs_private structure
700 * @rssi: On successful return, signal level in mBm
701 * @nf: On successful return, Noise floor
Dan Williams9fb76632010-07-27 12:55:21 -0700702 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700703 * returns: The channel on success, error on failure
Dan Williams9fb76632010-07-27 12:55:21 -0700704 */
705int lbs_get_rssi(struct lbs_private *priv, s8 *rssi, s8 *nf)
706{
707 struct cmd_ds_802_11_rssi cmd;
708 int ret = 0;
709
710 lbs_deb_enter(LBS_DEB_CMD);
711
712 BUG_ON(rssi == NULL);
713 BUG_ON(nf == NULL);
714
715 memset(&cmd, 0, sizeof(cmd));
716 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
717 /* Average SNR over last 8 beacons */
718 cmd.n_or_snr = cpu_to_le16(8);
719
720 ret = lbs_cmd_with_response(priv, CMD_802_11_RSSI, &cmd);
721 if (ret == 0) {
722 *nf = CAL_NF(le16_to_cpu(cmd.nf));
723 *rssi = CAL_RSSI(le16_to_cpu(cmd.n_or_snr), le16_to_cpu(cmd.nf));
724 }
725
726 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
727 return ret;
728}
729
Dan Williamscc4b9d32010-07-27 12:56:05 -0700730/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700731 * lbs_set_11d_domain_info - Send regulatory and 802.11d domain information
732 * to the firmware
Dan Williamscc4b9d32010-07-27 12:56:05 -0700733 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700734 * @priv: pointer to &struct lbs_private
735 * @request: cfg80211 regulatory request structure
736 * @bands: the device's supported bands and channels
Dan Williamscc4b9d32010-07-27 12:56:05 -0700737 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700738 * returns: 0 on success, error code on failure
Dan Williamscc4b9d32010-07-27 12:56:05 -0700739*/
740int lbs_set_11d_domain_info(struct lbs_private *priv,
741 struct regulatory_request *request,
742 struct ieee80211_supported_band **bands)
743{
744 struct cmd_ds_802_11d_domain_info cmd;
745 struct mrvl_ie_domain_param_set *domain = &cmd.domain;
746 struct ieee80211_country_ie_triplet *t;
747 enum ieee80211_band band;
748 struct ieee80211_channel *ch;
749 u8 num_triplet = 0;
750 u8 num_parsed_chan = 0;
751 u8 first_channel = 0, next_chan = 0, max_pwr = 0;
752 u8 i, flag = 0;
753 size_t triplet_size;
754 int ret;
755
756 lbs_deb_enter(LBS_DEB_11D);
757
758 memset(&cmd, 0, sizeof(cmd));
759 cmd.action = cpu_to_le16(CMD_ACT_SET);
760
761 lbs_deb_11d("Setting country code '%c%c'\n",
762 request->alpha2[0], request->alpha2[1]);
763
764 domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);
765
766 /* Set country code */
767 domain->country_code[0] = request->alpha2[0];
768 domain->country_code[1] = request->alpha2[1];
769 domain->country_code[2] = ' ';
770
771 /* Now set up the channel triplets; firmware is somewhat picky here
772 * and doesn't validate channel numbers and spans; hence it would
773 * interpret a triplet of (36, 4, 20) as channels 36, 37, 38, 39. Since
774 * the last 3 aren't valid channels, the driver is responsible for
775 * splitting that up into 4 triplet pairs of (36, 1, 20) + (40, 1, 20)
776 * etc.
777 */
778 for (band = 0;
779 (band < IEEE80211_NUM_BANDS) && (num_triplet < MAX_11D_TRIPLETS);
780 band++) {
781
782 if (!bands[band])
783 continue;
784
785 for (i = 0;
786 (i < bands[band]->n_channels) && (num_triplet < MAX_11D_TRIPLETS);
787 i++) {
788 ch = &bands[band]->channels[i];
789 if (ch->flags & IEEE80211_CHAN_DISABLED)
790 continue;
791
792 if (!flag) {
793 flag = 1;
794 next_chan = first_channel = (u32) ch->hw_value;
795 max_pwr = ch->max_power;
796 num_parsed_chan = 1;
797 continue;
798 }
799
800 if ((ch->hw_value == next_chan + 1) &&
801 (ch->max_power == max_pwr)) {
802 /* Consolidate adjacent channels */
803 next_chan++;
804 num_parsed_chan++;
805 } else {
806 /* Add this triplet */
807 lbs_deb_11d("11D triplet (%d, %d, %d)\n",
808 first_channel, num_parsed_chan,
809 max_pwr);
810 t = &domain->triplet[num_triplet];
811 t->chans.first_channel = first_channel;
812 t->chans.num_channels = num_parsed_chan;
813 t->chans.max_power = max_pwr;
814 num_triplet++;
815 flag = 0;
816 }
817 }
818
819 if (flag) {
820 /* Add last triplet */
821 lbs_deb_11d("11D triplet (%d, %d, %d)\n", first_channel,
822 num_parsed_chan, max_pwr);
823 t = &domain->triplet[num_triplet];
824 t->chans.first_channel = first_channel;
825 t->chans.num_channels = num_parsed_chan;
826 t->chans.max_power = max_pwr;
827 num_triplet++;
828 }
829 }
830
831 lbs_deb_11d("# triplets %d\n", num_triplet);
832
833 /* Set command header sizes */
834 triplet_size = num_triplet * sizeof(struct ieee80211_country_ie_triplet);
835 domain->header.len = cpu_to_le16(sizeof(domain->country_code) +
836 triplet_size);
837
838 lbs_deb_hex(LBS_DEB_11D, "802.11D domain param set",
839 (u8 *) &cmd.domain.country_code,
840 le16_to_cpu(domain->header.len));
841
842 cmd.hdr.size = cpu_to_le16(sizeof(cmd.hdr) +
843 sizeof(cmd.action) +
844 sizeof(cmd.domain.header) +
845 sizeof(cmd.domain.country_code) +
846 triplet_size);
847
848 ret = lbs_cmd_with_response(priv, CMD_802_11D_DOMAIN_INFO, &cmd);
849
850 lbs_deb_leave_args(LBS_DEB_11D, "ret %d", ret);
851 return ret;
852}
853
Dan Williams4c7c6e002010-07-27 13:01:07 -0700854/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700855 * lbs_get_reg - Read a MAC, Baseband, or RF register
Dan Williams4c7c6e002010-07-27 13:01:07 -0700856 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700857 * @priv: pointer to &struct lbs_private
858 * @reg: register command, one of CMD_MAC_REG_ACCESS,
859 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
860 * @offset: byte offset of the register to get
861 * @value: on success, the value of the register at 'offset'
Dan Williams4c7c6e002010-07-27 13:01:07 -0700862 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700863 * returns: 0 on success, error code on failure
Dan Williams4c7c6e002010-07-27 13:01:07 -0700864*/
865int lbs_get_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 *value)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200866{
Dan Williams4c7c6e002010-07-27 13:01:07 -0700867 struct cmd_ds_reg_access cmd;
868 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200869
Holger Schurig9012b282007-05-25 11:27:16 -0400870 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200871
Dan Williams4c7c6e002010-07-27 13:01:07 -0700872 BUG_ON(value == NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200873
Dan Williams4c7c6e002010-07-27 13:01:07 -0700874 memset(&cmd, 0, sizeof(cmd));
875 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
876 cmd.action = cpu_to_le16(CMD_ACT_GET);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200877 cmd.offset = cpu_to_le16(offset);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200878
Dan Williams4c7c6e002010-07-27 13:01:07 -0700879 if (reg != CMD_MAC_REG_ACCESS &&
880 reg != CMD_BBP_REG_ACCESS &&
881 reg != CMD_RF_REG_ACCESS) {
882 ret = -EINVAL;
883 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200884 }
885
Dan Williams4c7c6e002010-07-27 13:01:07 -0700886 ret = lbs_cmd_with_response(priv, reg, &cmd);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200887 if (!ret) {
Dan Williams4c7c6e002010-07-27 13:01:07 -0700888 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
889 *value = cmd.value.bbp_rf;
890 else if (reg == CMD_MAC_REG_ACCESS)
891 *value = le32_to_cpu(cmd.value.mac);
892 }
893
894out:
895 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
896 return ret;
897}
898
899/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700900 * lbs_set_reg - Write a MAC, Baseband, or RF register
Dan Williams4c7c6e002010-07-27 13:01:07 -0700901 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700902 * @priv: pointer to &struct lbs_private
903 * @reg: register command, one of CMD_MAC_REG_ACCESS,
904 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
905 * @offset: byte offset of the register to set
906 * @value: the value to write to the register at 'offset'
Dan Williams4c7c6e002010-07-27 13:01:07 -0700907 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -0700908 * returns: 0 on success, error code on failure
Dan Williams4c7c6e002010-07-27 13:01:07 -0700909*/
910int lbs_set_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 value)
911{
912 struct cmd_ds_reg_access cmd;
913 int ret = 0;
914
915 lbs_deb_enter(LBS_DEB_CMD);
916
917 memset(&cmd, 0, sizeof(cmd));
918 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
919 cmd.action = cpu_to_le16(CMD_ACT_SET);
Olivier Sobrieedcc3602011-07-09 12:57:05 +0200920 cmd.offset = cpu_to_le16(offset);
Dan Williams4c7c6e002010-07-27 13:01:07 -0700921
922 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
923 cmd.value.bbp_rf = (u8) (value & 0xFF);
924 else if (reg == CMD_MAC_REG_ACCESS)
925 cmd.value.mac = cpu_to_le32(value);
926 else {
927 ret = -EINVAL;
928 goto out;
929 }
930
931 ret = lbs_cmd_with_response(priv, reg, &cmd);
932
933out:
934 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
935 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200936}
937
David Woodhouse681ffbb2007-12-15 20:04:54 -0500938static void lbs_queue_cmd(struct lbs_private *priv,
939 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200940{
941 unsigned long flags;
David Woodhouse681ffbb2007-12-15 20:04:54 -0500942 int addtail = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200943
Holger Schurig8ff12da2007-08-02 11:54:31 -0400944 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200945
David Woodhousec4ab4122007-12-15 00:41:51 -0500946 if (!cmdnode) {
947 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200948 goto done;
949 }
David Woodhoused9896ee2007-12-15 00:09:25 -0500950 if (!cmdnode->cmdbuf->size) {
951 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
952 goto done;
953 }
David Woodhouseae125bf2007-12-15 04:22:52 -0500954 cmdnode->result = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200955
956 /* Exit_PS command needs to be queued in the header always. */
Dan Williamsddac4522007-12-11 13:49:39 -0500957 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
Dan Williams0bb64082010-07-27 13:08:08 -0700958 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf;
Dan Williamsddac4522007-12-11 13:49:39 -0500959
Dan Williams0bb64082010-07-27 13:08:08 -0700960 if (psm->action == cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000961 if (priv->psstate != PS_STATE_FULL_POWER)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200962 addtail = 0;
963 }
964 }
965
Dan Williams0bb64082010-07-27 13:08:08 -0700966 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_WAKEUP_CONFIRM)
Amitkumar Karwar66fceb62010-05-19 03:24:38 -0700967 addtail = 0;
968
David Woodhouseaa21c002007-12-08 20:04:36 +0000969 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200970
David Woodhouseac472462007-12-08 00:35:00 +0000971 if (addtail)
David Woodhouseaa21c002007-12-08 20:04:36 +0000972 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
David Woodhouseac472462007-12-08 00:35:00 +0000973 else
David Woodhouseaa21c002007-12-08 20:04:36 +0000974 list_add(&cmdnode->list, &priv->cmdpendingq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200975
David Woodhouseaa21c002007-12-08 20:04:36 +0000976 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200977
Holger Schurig8ff12da2007-08-02 11:54:31 -0400978 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
David Woodhousec4ab4122007-12-15 00:41:51 -0500979 le16_to_cpu(cmdnode->cmdbuf->command));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200980
981done:
Holger Schurig8ff12da2007-08-02 11:54:31 -0400982 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200983}
984
David Woodhouse18c52e72007-12-17 16:03:58 -0500985static void lbs_submit_command(struct lbs_private *priv,
986 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200987{
988 unsigned long flags;
Dan Williamsddac4522007-12-11 13:49:39 -0500989 struct cmd_header *cmd;
David Woodhouse18c52e72007-12-17 16:03:58 -0500990 uint16_t cmdsize;
991 uint16_t command;
Holger Schurig57962f02008-05-14 16:30:28 +0200992 int timeo = 3 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -0500993 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200994
Holger Schurig8ff12da2007-08-02 11:54:31 -0400995 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200996
Dan Williamsddac4522007-12-11 13:49:39 -0500997 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200998
David Woodhouseaa21c002007-12-08 20:04:36 +0000999 spin_lock_irqsave(&priv->driver_lock, flags);
Daniel Drake71005be2011-05-26 21:31:08 +01001000 priv->seqnum++;
1001 cmd->seqnum = cpu_to_le16(priv->seqnum);
David Woodhouseaa21c002007-12-08 20:04:36 +00001002 priv->cur_cmd = cmdnode;
David Woodhouseaa21c002007-12-08 20:04:36 +00001003 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001004
Dan Williamsddac4522007-12-11 13:49:39 -05001005 cmdsize = le16_to_cpu(cmd->size);
1006 command = le16_to_cpu(cmd->command);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001007
David Woodhouse18c52e72007-12-17 16:03:58 -05001008 /* These commands take longer */
Dan Williamsbe0d76e2009-05-22 20:05:25 -04001009 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
Holger Schurig57962f02008-05-14 16:30:28 +02001010 timeo = 5 * HZ;
David Woodhouse18c52e72007-12-17 16:03:58 -05001011
Holger Schurige5225b32008-03-26 10:04:44 +01001012 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
1013 command, le16_to_cpu(cmd->seqnum), cmdsize);
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001014 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001015
Dan Williamsddac4522007-12-11 13:49:39 -05001016 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
David Woodhouse18c52e72007-12-17 16:03:58 -05001017
David Woodhoused9896ee2007-12-15 00:09:25 -05001018 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001019 netdev_info(priv->dev, "DNLD_CMD: hw_host_to_card failed: %d\n",
1020 ret);
David Woodhouse18c52e72007-12-17 16:03:58 -05001021 /* Let the timer kick in and retry, and potentially reset
1022 the whole thing if the condition persists */
Holger Schurig57962f02008-05-14 16:30:28 +02001023 timeo = HZ/4;
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001024 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001025
Amitkumar Karwar49125452009-09-30 20:04:38 -07001026 if (command == CMD_802_11_DEEP_SLEEP) {
1027 if (priv->is_auto_deep_sleep_enabled) {
1028 priv->wakeup_dev_required = 1;
1029 priv->dnld_sent = 0;
1030 }
1031 priv->is_deep_sleep = 1;
1032 lbs_complete_command(priv, cmdnode, 0);
1033 } else {
1034 /* Setup the timer after transmit command */
1035 mod_timer(&priv->command_timer, jiffies + timeo);
1036 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001037
David Woodhouse18c52e72007-12-17 16:03:58 -05001038 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001039}
1040
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001041/*
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001042 * This function inserts command node to cmdfreeq
David Woodhouseaa21c002007-12-08 20:04:36 +00001043 * after cleans it. Requires priv->driver_lock held.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001044 */
David Woodhouse183aeac2007-12-15 01:52:54 -05001045static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001046 struct cmd_ctrl_node *cmdnode)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001047{
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001048 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001049
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001050 if (!cmdnode)
1051 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001052
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001053 cmdnode->callback = NULL;
1054 cmdnode->callback_arg = 0;
1055
1056 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1057
1058 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1059 out:
1060 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001061}
1062
Holger Schurig69f90322007-11-23 15:43:44 +01001063static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1064 struct cmd_ctrl_node *ptempcmd)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001065{
1066 unsigned long flags;
1067
David Woodhouseaa21c002007-12-08 20:04:36 +00001068 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig10078322007-11-15 18:05:47 -05001069 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
David Woodhouseaa21c002007-12-08 20:04:36 +00001070 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001071}
1072
Daniel Drakedf90d842011-07-09 15:41:25 +01001073void __lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1074 int result)
David Woodhouse183aeac2007-12-15 01:52:54 -05001075{
Daniel Drakedf90d842011-07-09 15:41:25 +01001076 /*
1077 * Normally, commands are removed from cmdpendingq before being
1078 * submitted. However, we can arrive here on alternative codepaths
1079 * where the command is still pending. Make sure the command really
1080 * isn't part of a list at this point.
1081 */
1082 list_del_init(&cmd->list);
1083
David Woodhouseae125bf2007-12-15 04:22:52 -05001084 cmd->result = result;
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001085 cmd->cmdwaitqwoken = 1;
Daniel Drakedf90d842011-07-09 15:41:25 +01001086 wake_up(&cmd->cmdwait_q);
David Woodhouse5ba2f8a2007-12-15 02:02:56 -05001087
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001088 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
David Woodhousead12d0f2007-12-15 02:06:16 -05001089 __lbs_cleanup_and_insert_cmd(priv, cmd);
David Woodhouse183aeac2007-12-15 01:52:54 -05001090 priv->cur_cmd = NULL;
Daniel Draked2e7b342011-08-01 16:43:13 +01001091 wake_up(&priv->waitq);
Daniel Drakedf90d842011-07-09 15:41:25 +01001092}
1093
1094void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1095 int result)
1096{
1097 unsigned long flags;
1098 spin_lock_irqsave(&priv->driver_lock, flags);
1099 __lbs_complete_command(priv, cmd, result);
1100 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhouse183aeac2007-12-15 01:52:54 -05001101}
1102
Dan Williamsd5db2df2008-08-21 17:51:07 -04001103int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001104{
David Woodhousea7c45892007-12-17 22:43:48 -05001105 struct cmd_ds_802_11_radio_control cmd;
Dan Williamsd5db2df2008-08-21 17:51:07 -04001106 int ret = -EINVAL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001107
Holger Schurig9012b282007-05-25 11:27:16 -04001108 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001109
David Woodhousea7c45892007-12-17 22:43:48 -05001110 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1111 cmd.action = cpu_to_le16(CMD_ACT_SET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001112
Dan Williamsd5db2df2008-08-21 17:51:07 -04001113 /* Only v8 and below support setting the preamble */
1114 if (priv->fwrelease < 0x09000000) {
1115 switch (preamble) {
1116 case RADIO_PREAMBLE_SHORT:
Dan Williamsd5db2df2008-08-21 17:51:07 -04001117 case RADIO_PREAMBLE_AUTO:
1118 case RADIO_PREAMBLE_LONG:
1119 cmd.control = cpu_to_le16(preamble);
1120 break;
1121 default:
1122 goto out;
1123 }
David Woodhousea7c45892007-12-17 22:43:48 -05001124 }
1125
Dan Williamsd5db2df2008-08-21 17:51:07 -04001126 if (radio_on)
1127 cmd.control |= cpu_to_le16(0x1);
1128 else {
1129 cmd.control &= cpu_to_le16(~0x1);
1130 priv->txpower_cur = 0;
1131 }
David Woodhousea7c45892007-12-17 22:43:48 -05001132
Dan Williamsd5db2df2008-08-21 17:51:07 -04001133 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1134 radio_on ? "ON" : "OFF", preamble);
1135
1136 priv->radio_on = radio_on;
David Woodhousea7c45892007-12-17 22:43:48 -05001137
1138 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001139
Dan Williamsd5db2df2008-08-21 17:51:07 -04001140out:
Holger Schurig9012b282007-05-25 11:27:16 -04001141 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001142 return ret;
1143}
1144
Holger Schurigc97329e2008-03-18 11:20:21 +01001145void lbs_set_mac_control(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001146{
Holger Schurig835d3ac2008-03-12 16:05:40 +01001147 struct cmd_ds_mac_control cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001148
Holger Schurig9012b282007-05-25 11:27:16 -04001149 lbs_deb_enter(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001150
Holger Schurig835d3ac2008-03-12 16:05:40 +01001151 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
Holger Schurigd9e97782008-03-12 16:06:43 +01001152 cmd.action = cpu_to_le16(priv->mac_control);
Holger Schurig835d3ac2008-03-12 16:05:40 +01001153 cmd.reserved = 0;
1154
David Woodhouse75bf45a2008-05-20 13:32:45 +01001155 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001156
Holger Schurigc97329e2008-03-18 11:20:21 +01001157 lbs_deb_leave(LBS_DEB_CMD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001158}
1159
1160/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001161 * lbs_allocate_cmd_buffer - allocates the command buffer and links
1162 * it to command free queue
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001163 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001164 * @priv: A pointer to &struct lbs_private structure
1165 *
1166 * returns: 0 for success or -1 on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001167 */
Holger Schurig69f90322007-11-23 15:43:44 +01001168int lbs_allocate_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001169{
1170 int ret = 0;
Dan Williamsddac4522007-12-11 13:49:39 -05001171 u32 bufsize;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001172 u32 i;
Dan Williamsddac4522007-12-11 13:49:39 -05001173 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001174
Holger Schurig8ff12da2007-08-02 11:54:31 -04001175 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001176
Dan Williamsddac4522007-12-11 13:49:39 -05001177 /* Allocate and initialize the command array */
1178 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1179 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001180 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001181 ret = -1;
1182 goto done;
1183 }
Dan Williamsddac4522007-12-11 13:49:39 -05001184 priv->cmd_array = cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001185
Dan Williamsddac4522007-12-11 13:49:39 -05001186 /* Allocate and initialize each command buffer in the command array */
1187 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1188 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1189 if (!cmdarray[i].cmdbuf) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001190 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001191 ret = -1;
1192 goto done;
1193 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001194 }
1195
Dan Williamsddac4522007-12-11 13:49:39 -05001196 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1197 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1198 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001199 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001200 ret = 0;
Holger Schurig9012b282007-05-25 11:27:16 -04001201
1202done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001203 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001204 return ret;
1205}
1206
1207/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001208 * lbs_free_cmd_buffer - free the command buffer
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001209 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001210 * @priv: A pointer to &struct lbs_private structure
1211 *
1212 * returns: 0 for success
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001213 */
Holger Schurig69f90322007-11-23 15:43:44 +01001214int lbs_free_cmd_buffer(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001215{
Dan Williamsddac4522007-12-11 13:49:39 -05001216 struct cmd_ctrl_node *cmdarray;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217 unsigned int i;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001218
Holger Schurig8ff12da2007-08-02 11:54:31 -04001219 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001220
1221 /* need to check if cmd array is allocated or not */
David Woodhouseaa21c002007-12-08 20:04:36 +00001222 if (priv->cmd_array == NULL) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001223 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001224 goto done;
1225 }
1226
Dan Williamsddac4522007-12-11 13:49:39 -05001227 cmdarray = priv->cmd_array;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001228
1229 /* Release shared memory buffers */
Dan Williamsddac4522007-12-11 13:49:39 -05001230 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1231 if (cmdarray[i].cmdbuf) {
1232 kfree(cmdarray[i].cmdbuf);
1233 cmdarray[i].cmdbuf = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001234 }
1235 }
1236
1237 /* Release cmd_ctrl_node */
David Woodhouseaa21c002007-12-08 20:04:36 +00001238 if (priv->cmd_array) {
1239 kfree(priv->cmd_array);
1240 priv->cmd_array = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001241 }
1242
1243done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001244 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001245 return 0;
1246}
1247
1248/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001249 * lbs_get_free_cmd_node - gets a free command node if available in
1250 * command free queue
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001251 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001252 * @priv: A pointer to &struct lbs_private structure
1253 *
1254 * returns: A pointer to &cmd_ctrl_node structure on success
1255 * or %NULL on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001256 */
Dan Williamsd06956b2010-07-27 13:16:24 -07001257static struct cmd_ctrl_node *lbs_get_free_cmd_node(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001258{
1259 struct cmd_ctrl_node *tempnode;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001260 unsigned long flags;
1261
Holger Schurig8ff12da2007-08-02 11:54:31 -04001262 lbs_deb_enter(LBS_DEB_HOST);
1263
David Woodhouseaa21c002007-12-08 20:04:36 +00001264 if (!priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001265 return NULL;
1266
David Woodhouseaa21c002007-12-08 20:04:36 +00001267 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001268
David Woodhouseaa21c002007-12-08 20:04:36 +00001269 if (!list_empty(&priv->cmdfreeq)) {
1270 tempnode = list_first_entry(&priv->cmdfreeq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001271 struct cmd_ctrl_node, list);
Daniel Drakedf90d842011-07-09 15:41:25 +01001272 list_del_init(&tempnode->list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001273 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001274 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001275 tempnode = NULL;
1276 }
1277
David Woodhouseaa21c002007-12-08 20:04:36 +00001278 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001279
Holger Schurig8ff12da2007-08-02 11:54:31 -04001280 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001281 return tempnode;
1282}
1283
1284/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001285 * lbs_execute_next_command - execute next command in command
1286 * pending queue. Will put firmware back to PS mode if applicable.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001287 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001288 * @priv: A pointer to &struct lbs_private structure
1289 *
1290 * returns: 0 on success or -1 on error
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001291 */
Holger Schurig69f90322007-11-23 15:43:44 +01001292int lbs_execute_next_command(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001293{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001294 struct cmd_ctrl_node *cmdnode = NULL;
Dan Williamsddac4522007-12-11 13:49:39 -05001295 struct cmd_header *cmd;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001296 unsigned long flags;
1297 int ret = 0;
1298
Holger Schurig1afc09ab2008-01-29 09:14:40 +01001299 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1300 * only caller to us is lbs_thread() and we get even when a
1301 * data packet is received */
Holger Schurig8ff12da2007-08-02 11:54:31 -04001302 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001303
David Woodhouseaa21c002007-12-08 20:04:36 +00001304 spin_lock_irqsave(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001305
David Woodhouseaa21c002007-12-08 20:04:36 +00001306 if (priv->cur_cmd) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001307 netdev_alert(priv->dev,
1308 "EXEC_NEXT_CMD: already processing command!\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001309 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001310 ret = -1;
1311 goto done;
1312 }
1313
David Woodhouseaa21c002007-12-08 20:04:36 +00001314 if (!list_empty(&priv->cmdpendingq)) {
1315 cmdnode = list_first_entry(&priv->cmdpendingq,
Li Zefanabe3ed12007-12-06 13:01:21 +01001316 struct cmd_ctrl_node, list);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001317 }
1318
David Woodhouseaa21c002007-12-08 20:04:36 +00001319 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001320
1321 if (cmdnode) {
Dan Williamsddac4522007-12-11 13:49:39 -05001322 cmd = cmdnode->cmdbuf;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323
Dan Williamsddac4522007-12-11 13:49:39 -05001324 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001325 if ((priv->psstate == PS_STATE_SLEEP) ||
1326 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001327 lbs_deb_host(
1328 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001329 le16_to_cpu(cmd->command),
David Woodhouseaa21c002007-12-08 20:04:36 +00001330 priv->psstate);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001331 ret = -1;
1332 goto done;
1333 }
Holger Schurig8ff12da2007-08-02 11:54:31 -04001334 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
Dan Williamsddac4522007-12-11 13:49:39 -05001335 "0x%04x in psstate %d\n",
1336 le16_to_cpu(cmd->command), priv->psstate);
David Woodhouseaa21c002007-12-08 20:04:36 +00001337 } else if (priv->psstate != PS_STATE_FULL_POWER) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001338 /*
1339 * 1. Non-PS command:
1340 * Queue it. set needtowakeup to TRUE if current state
Dan Williams0bb64082010-07-27 13:08:08 -07001341 * is SLEEP, otherwise call send EXIT_PS.
1342 * 2. PS command but not EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001343 * Ignore it.
Dan Williams0bb64082010-07-27 13:08:08 -07001344 * 3. PS command EXIT_PS:
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001345 * Set needtowakeup to TRUE if current state is SLEEP,
1346 * otherwise send this command down to firmware
1347 * immediately.
1348 */
Dan Williamsddac4522007-12-11 13:49:39 -05001349 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001350 /* Prepare to send Exit PS,
1351 * this non PS command will be sent later */
David Woodhouseaa21c002007-12-08 20:04:36 +00001352 if ((priv->psstate == PS_STATE_SLEEP)
1353 || (priv->psstate == PS_STATE_PRE_SLEEP)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001354 ) {
1355 /* w/ new scheme, it will not reach here.
1356 since it is blocked in main_thread. */
David Woodhouseaa21c002007-12-08 20:04:36 +00001357 priv->needtowakeup = 1;
Dan Williams0bb64082010-07-27 13:08:08 -07001358 } else {
1359 lbs_set_ps_mode(priv,
1360 PS_MODE_ACTION_EXIT_PS,
1361 false);
1362 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001363
1364 ret = 0;
1365 goto done;
1366 } else {
1367 /*
1368 * PS command. Ignore it if it is not Exit_PS.
1369 * otherwise send it down immediately.
1370 */
David Woodhouse38bfab12007-12-16 23:26:54 -05001371 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001372
Holger Schurig8ff12da2007-08-02 11:54:31 -04001373 lbs_deb_host(
1374 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001375 psm->action);
1376 if (psm->action !=
Dan Williams0bb64082010-07-27 13:08:08 -07001377 cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001378 lbs_deb_host(
1379 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
David Woodhouse183aeac2007-12-15 01:52:54 -05001380 lbs_complete_command(priv, cmdnode, 0);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001381
1382 ret = 0;
1383 goto done;
1384 }
1385
David Woodhouseaa21c002007-12-08 20:04:36 +00001386 if ((priv->psstate == PS_STATE_SLEEP) ||
1387 (priv->psstate == PS_STATE_PRE_SLEEP)) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001388 lbs_deb_host(
1389 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
David Woodhouse183aeac2007-12-15 01:52:54 -05001390 lbs_complete_command(priv, cmdnode, 0);
David Woodhouseaa21c002007-12-08 20:04:36 +00001391 priv->needtowakeup = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001392
1393 ret = 0;
1394 goto done;
1395 }
1396
Holger Schurig8ff12da2007-08-02 11:54:31 -04001397 lbs_deb_host(
1398 "EXEC_NEXT_CMD: sending EXIT_PS\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399 }
1400 }
Paul Fox2ae1b8b2011-05-09 10:40:42 +01001401 spin_lock_irqsave(&priv->driver_lock, flags);
Daniel Drakedf90d842011-07-09 15:41:25 +01001402 list_del_init(&cmdnode->list);
Paul Fox2ae1b8b2011-05-09 10:40:42 +01001403 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig8ff12da2007-08-02 11:54:31 -04001404 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
Dan Williamsddac4522007-12-11 13:49:39 -05001405 le16_to_cpu(cmd->command));
David Woodhoused9896ee2007-12-15 00:09:25 -05001406 lbs_submit_command(priv, cmdnode);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001407 } else {
1408 /*
1409 * check if in power save mode, if yes, put the device back
1410 * to PS mode
1411 */
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301412#ifdef TODO
1413 /*
1414 * This was the old code for libertas+wext. Someone that
1415 * understands this beast should re-code it in a sane way.
1416 *
1417 * I actually don't understand why this is related to WPA
1418 * and to connection status, shouldn't powering should be
1419 * independ of such things?
1420 */
David Woodhouseaa21c002007-12-08 20:04:36 +00001421 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1422 (priv->psstate == PS_STATE_FULL_POWER) &&
1423 ((priv->connect_status == LBS_CONNECTED) ||
Holger Schurig602114a2009-12-02 15:26:01 +01001424 lbs_mesh_connected(priv))) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001425 if (priv->secinfo.WPAenabled ||
1426 priv->secinfo.WPA2enabled) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001427 /* check for valid WPA group keys */
David Woodhouseaa21c002007-12-08 20:04:36 +00001428 if (priv->wpa_mcast_key.len ||
1429 priv->wpa_unicast_key.len) {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001430 lbs_deb_host(
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001431 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1432 " go back to PS_SLEEP");
Dan Williams0bb64082010-07-27 13:08:08 -07001433 lbs_set_ps_mode(priv,
1434 PS_MODE_ACTION_ENTER_PS,
1435 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001436 }
1437 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001438 lbs_deb_host(
1439 "EXEC_NEXT_CMD: cmdpendingq empty, "
1440 "go back to PS_SLEEP");
Dan Williams0bb64082010-07-27 13:08:08 -07001441 lbs_set_ps_mode(priv, PS_MODE_ACTION_ENTER_PS,
1442 false);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001443 }
1444 }
Kiran Divekare86dc1c2010-06-14 22:01:26 +05301445#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001446 }
1447
1448 ret = 0;
1449done:
Holger Schurig8ff12da2007-08-02 11:54:31 -04001450 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001451 return ret;
1452}
1453
Holger Schurigf539f2e2008-03-26 13:22:11 +01001454static void lbs_send_confirmsleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001455{
1456 unsigned long flags;
Holger Schurigf539f2e2008-03-26 13:22:11 +01001457 int ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001458
Holger Schurig8ff12da2007-08-02 11:54:31 -04001459 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurigf539f2e2008-03-26 13:22:11 +01001460 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1461 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001462
Holger Schurigf539f2e2008-03-26 13:22:11 +01001463 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1464 sizeof(confirm_sleep));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001465 if (ret) {
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001466 netdev_alert(priv->dev, "confirm_sleep failed\n");
Holger Schurig7919b892008-04-01 14:50:43 +02001467 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001468 }
Holger Schurig7919b892008-04-01 14:50:43 +02001469
1470 spin_lock_irqsave(&priv->driver_lock, flags);
1471
Holger Schuriga01f5452008-06-04 11:10:40 +02001472 /* We don't get a response on the sleep-confirmation */
1473 priv->dnld_sent = DNLD_RES_RECEIVED;
1474
Amitkumar Karwar66fceb62010-05-19 03:24:38 -07001475 if (priv->is_host_sleep_configured) {
1476 priv->is_host_sleep_activated = 1;
1477 wake_up_interruptible(&priv->host_sleep_q);
1478 }
1479
Holger Schurig7919b892008-04-01 14:50:43 +02001480 /* If nothing to do, go back to sleep (?) */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001481 if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
Holger Schurig7919b892008-04-01 14:50:43 +02001482 priv->psstate = PS_STATE_SLEEP;
1483
1484 spin_unlock_irqrestore(&priv->driver_lock, flags);
1485
1486out:
Holger Schurigf539f2e2008-03-26 13:22:11 +01001487 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001488}
1489
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001490/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001491 * lbs_ps_confirm_sleep - checks condition and prepares to
1492 * send sleep confirm command to firmware if ok
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001493 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001494 * @priv: A pointer to &struct lbs_private structure
1495 *
1496 * returns: n/a
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001497 */
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001498void lbs_ps_confirm_sleep(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001499{
1500 unsigned long flags =0;
Holger Schurigd4ff0ef2008-03-19 14:25:18 +01001501 int allowed = 1;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001502
Holger Schurig8ff12da2007-08-02 11:54:31 -04001503 lbs_deb_enter(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001504
Holger Schuriga01f5452008-06-04 11:10:40 +02001505 spin_lock_irqsave(&priv->driver_lock, flags);
Holger Schurig634b8f492007-05-25 13:05:16 -04001506 if (priv->dnld_sent) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001508 lbs_deb_host("dnld_sent was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001509 }
1510
Holger Schurig7919b892008-04-01 14:50:43 +02001511 /* In-progress command? */
David Woodhouseaa21c002007-12-08 20:04:36 +00001512 if (priv->cur_cmd) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001513 allowed = 0;
David Woodhouse23d36ee2007-12-12 00:14:21 -05001514 lbs_deb_host("cur_cmd was set\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001515 }
Holger Schurig7919b892008-04-01 14:50:43 +02001516
1517 /* Pending events or command responses? */
Stefani Seibolde64c0262009-12-21 14:37:28 -08001518 if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001519 allowed = 0;
Holger Schurig7919b892008-04-01 14:50:43 +02001520 lbs_deb_host("pending events or command responses\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001521 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001522 spin_unlock_irqrestore(&priv->driver_lock, flags);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001523
1524 if (allowed) {
Holger Schurig10078322007-11-15 18:05:47 -05001525 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
Holger Schurigf539f2e2008-03-26 13:22:11 +01001526 lbs_send_confirmsleep(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001527 } else {
Holger Schurig8ff12da2007-08-02 11:54:31 -04001528 lbs_deb_host("sleep confirm has been delayed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001529 }
1530
Holger Schurig8ff12da2007-08-02 11:54:31 -04001531 lbs_deb_leave(LBS_DEB_HOST);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001532}
Holger Schurig675787e2007-12-05 17:58:11 +01001533
1534
Anna Neal0112c9e2008-09-11 11:17:25 -07001535/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001536 * lbs_set_tpc_cfg - Configures the transmission power control functionality
Anna Neal0112c9e2008-09-11 11:17:25 -07001537 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001538 * @priv: A pointer to &struct lbs_private structure
1539 * @enable: Transmission power control enable
1540 * @p0: Power level when link quality is good (dBm).
1541 * @p1: Power level when link quality is fair (dBm).
1542 * @p2: Power level when link quality is poor (dBm).
1543 * @usesnr: Use Signal to Noise Ratio in TPC
Anna Neal0112c9e2008-09-11 11:17:25 -07001544 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001545 * returns: 0 on success
Anna Neal0112c9e2008-09-11 11:17:25 -07001546 */
1547int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1548 int8_t p2, int usesnr)
1549{
1550 struct cmd_ds_802_11_tpc_cfg cmd;
1551 int ret;
1552
1553 memset(&cmd, 0, sizeof(cmd));
1554 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1555 cmd.action = cpu_to_le16(CMD_ACT_SET);
1556 cmd.enable = !!enable;
Anna Neal3ed6e082008-09-26 11:34:35 -04001557 cmd.usesnr = !!usesnr;
Anna Neal0112c9e2008-09-11 11:17:25 -07001558 cmd.P0 = p0;
1559 cmd.P1 = p1;
1560 cmd.P2 = p2;
1561
1562 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1563
1564 return ret;
1565}
1566
1567/**
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001568 * lbs_set_power_adapt_cfg - Configures the power adaptation settings
Anna Neal0112c9e2008-09-11 11:17:25 -07001569 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001570 * @priv: A pointer to &struct lbs_private structure
1571 * @enable: Power adaptation enable
1572 * @p0: Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1573 * @p1: Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1574 * @p2: Power level for 48 and 54 Mbps (dBm).
Anna Neal0112c9e2008-09-11 11:17:25 -07001575 *
Randy Dunlap8973a6e2011-04-26 15:25:29 -07001576 * returns: 0 on Success
Anna Neal0112c9e2008-09-11 11:17:25 -07001577 */
1578
1579int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1580 int8_t p1, int8_t p2)
1581{
1582 struct cmd_ds_802_11_pa_cfg cmd;
1583 int ret;
1584
1585 memset(&cmd, 0, sizeof(cmd));
1586 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1587 cmd.action = cpu_to_le16(CMD_ACT_SET);
1588 cmd.enable = !!enable;
1589 cmd.P0 = p0;
1590 cmd.P1 = p1;
1591 cmd.P2 = p2;
1592
1593 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1594
1595 return ret;
1596}
1597
1598
Holger Schurig6d898b12009-10-14 16:49:53 +02001599struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001600 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1601 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1602 unsigned long callback_arg)
Holger Schurig675787e2007-12-05 17:58:11 +01001603{
Holger Schurig675787e2007-12-05 17:58:11 +01001604 struct cmd_ctrl_node *cmdnode;
Holger Schurig675787e2007-12-05 17:58:11 +01001605
1606 lbs_deb_enter(LBS_DEB_HOST);
Holger Schurig675787e2007-12-05 17:58:11 +01001607
David Woodhouseaa21c002007-12-08 20:04:36 +00001608 if (priv->surpriseremoved) {
Holger Schurig675787e2007-12-05 17:58:11 +01001609 lbs_deb_host("PREP_CMD: card removed\n");
David Woodhouse3399ea52007-12-15 03:09:33 -05001610 cmdnode = ERR_PTR(-ENOENT);
Holger Schurig675787e2007-12-05 17:58:11 +01001611 goto done;
1612 }
1613
Dan Williams77ccdcf2010-07-27 13:15:45 -07001614 /* No commands are allowed in Deep Sleep until we toggle the GPIO
1615 * to wake up the card and it has signaled that it's ready.
1616 */
1617 if (!priv->is_auto_deep_sleep_enabled) {
1618 if (priv->is_deep_sleep) {
1619 lbs_deb_cmd("command not allowed in deep sleep\n");
1620 cmdnode = ERR_PTR(-EBUSY);
1621 goto done;
1622 }
Amitkumar Karwar63f275d2009-10-06 19:20:28 -07001623 }
1624
Dan Williamsd06956b2010-07-27 13:16:24 -07001625 cmdnode = lbs_get_free_cmd_node(priv);
Holger Schurig675787e2007-12-05 17:58:11 +01001626 if (cmdnode == NULL) {
1627 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1628
1629 /* Wake up main thread to execute next command */
Daniel Draked2e7b342011-08-01 16:43:13 +01001630 wake_up(&priv->waitq);
David Woodhouse3399ea52007-12-15 03:09:33 -05001631 cmdnode = ERR_PTR(-ENOBUFS);
Holger Schurig675787e2007-12-05 17:58:11 +01001632 goto done;
1633 }
1634
David Woodhouse448a51a2007-12-08 00:59:54 +00001635 cmdnode->callback = callback;
David Woodhouse1309b552007-12-10 13:36:10 -05001636 cmdnode->callback_arg = callback_arg;
Holger Schurig675787e2007-12-05 17:58:11 +01001637
Dan Williams7ad994d2007-12-11 12:33:30 -05001638 /* Copy the incoming command to the buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001639 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
Dan Williams7ad994d2007-12-11 12:33:30 -05001640
Daniel Drake71005be2011-05-26 21:31:08 +01001641 /* Set command, clean result, move to buffer */
Dan Williamsddac4522007-12-11 13:49:39 -05001642 cmdnode->cmdbuf->command = cpu_to_le16(command);
1643 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
Dan Williamsddac4522007-12-11 13:49:39 -05001644 cmdnode->cmdbuf->result = 0;
Holger Schurig675787e2007-12-05 17:58:11 +01001645
1646 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1647
Holger Schurig675787e2007-12-05 17:58:11 +01001648 cmdnode->cmdwaitqwoken = 0;
David Woodhouse681ffbb2007-12-15 20:04:54 -05001649 lbs_queue_cmd(priv, cmdnode);
Daniel Draked2e7b342011-08-01 16:43:13 +01001650 wake_up(&priv->waitq);
Holger Schurig675787e2007-12-05 17:58:11 +01001651
David Woodhouse3399ea52007-12-15 03:09:33 -05001652 done:
1653 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
1654 return cmdnode;
1655}
1656
Holger Schurig8db4a2b2008-03-19 10:11:00 +01001657void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1658 struct cmd_header *in_cmd, int in_cmd_size)
1659{
1660 lbs_deb_enter(LBS_DEB_CMD);
1661 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1662 lbs_cmd_async_callback, 0);
1663 lbs_deb_leave(LBS_DEB_CMD);
1664}
1665
David Woodhouse3399ea52007-12-15 03:09:33 -05001666int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1667 struct cmd_header *in_cmd, int in_cmd_size,
1668 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1669 unsigned long callback_arg)
1670{
1671 struct cmd_ctrl_node *cmdnode;
1672 unsigned long flags;
1673 int ret = 0;
1674
1675 lbs_deb_enter(LBS_DEB_HOST);
1676
1677 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1678 callback, callback_arg);
1679 if (IS_ERR(cmdnode)) {
1680 ret = PTR_ERR(cmdnode);
1681 goto done;
1682 }
1683
Holger Schurig675787e2007-12-05 17:58:11 +01001684 might_sleep();
Daniel Drakedf90d842011-07-09 15:41:25 +01001685
1686 /*
1687 * Be careful with signals here. A signal may be received as the system
1688 * goes into suspend or resume. We do not want this to interrupt the
1689 * command, so we perform an uninterruptible sleep.
1690 */
1691 wait_event(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
Holger Schurig675787e2007-12-05 17:58:11 +01001692
David Woodhouseaa21c002007-12-08 20:04:36 +00001693 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhouseae125bf2007-12-15 04:22:52 -05001694 ret = cmdnode->result;
1695 if (ret)
Joe Perchesf3a57fd2011-05-02 16:49:15 -07001696 netdev_info(priv->dev, "PREP_CMD: command 0x%04x failed: %d\n",
1697 command, ret);
David Woodhouse3399ea52007-12-15 03:09:33 -05001698
David Woodhousead12d0f2007-12-15 02:06:16 -05001699 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
David Woodhouseaa21c002007-12-08 20:04:36 +00001700 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig675787e2007-12-05 17:58:11 +01001701
1702done:
1703 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1704 return ret;
1705}
Dan Williams14e865b2007-12-10 15:11:23 -05001706EXPORT_SYMBOL_GPL(__lbs_cmd);