libertas: fix cmdpendingq locking
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / net / wireless / libertas / cmd.c
blobb9b0a0cec7966620fe4d27da6a6b743559b524a6
1 /**
2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
4 */
6 #include <linux/kfifo.h>
7 #include <linux/sched.h>
8 #include <linux/slab.h>
9 #include <linux/if_arp.h>
11 #include "decl.h"
12 #include "cfg.h"
13 #include "cmd.h"
15 #define CAL_NF(nf) ((s32)(-(s32)(nf)))
16 #define CAL_RSSI(snr, nf) ((s32)((s32)(snr) + CAL_NF(nf)))
18 /**
19 * @brief Simple callback that copies response back into command
21 * @param priv A pointer to struct lbs_private structure
22 * @param extra A pointer to the original command structure for which
23 * 'resp' is a response
24 * @param resp A pointer to the command response
26 * @return 0 on success, error on failure
28 int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra,
29 struct cmd_header *resp)
31 struct cmd_header *buf = (void *)extra;
32 uint16_t copy_len;
34 copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size));
35 memcpy(buf, resp, copy_len);
36 return 0;
38 EXPORT_SYMBOL_GPL(lbs_cmd_copyback);
40 /**
41 * @brief Simple callback that ignores the result. Use this if
42 * you just want to send a command to the hardware, but don't
43 * care for the result.
45 * @param priv ignored
46 * @param extra ignored
47 * @param resp ignored
49 * @return 0 for success
51 static int lbs_cmd_async_callback(struct lbs_private *priv, unsigned long extra,
52 struct cmd_header *resp)
54 return 0;
58 /**
59 * @brief Checks whether a command is allowed in Power Save mode
61 * @param command the command ID
62 * @return 1 if allowed, 0 if not allowed
64 static u8 is_command_allowed_in_ps(u16 cmd)
66 switch (cmd) {
67 case CMD_802_11_RSSI:
68 return 1;
69 case CMD_802_11_HOST_SLEEP_CFG:
70 return 1;
71 default:
72 break;
74 return 0;
77 /**
78 * @brief Updates the hardware details like MAC address and regulatory region
80 * @param priv A pointer to struct lbs_private structure
82 * @return 0 on success, error on failure
84 int lbs_update_hw_spec(struct lbs_private *priv)
86 struct cmd_ds_get_hw_spec cmd;
87 int ret = -1;
88 u32 i;
90 lbs_deb_enter(LBS_DEB_CMD);
92 memset(&cmd, 0, sizeof(cmd));
93 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
94 memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN);
95 ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd);
96 if (ret)
97 goto out;
99 priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo);
101 /* The firmware release is in an interesting format: the patch
102 * level is in the most significant nibble ... so fix that: */
103 priv->fwrelease = le32_to_cpu(cmd.fwrelease);
104 priv->fwrelease = (priv->fwrelease << 8) |
105 (priv->fwrelease >> 24 & 0xff);
107 /* Some firmware capabilities:
108 * CF card firmware 5.0.16p0: cap 0x00000303
109 * USB dongle firmware 5.110.17p2: cap 0x00000303
111 lbs_pr_info("%pM, fw %u.%u.%up%u, cap 0x%08x\n",
112 cmd.permanentaddr,
113 priv->fwrelease >> 24 & 0xff,
114 priv->fwrelease >> 16 & 0xff,
115 priv->fwrelease >> 8 & 0xff,
116 priv->fwrelease & 0xff,
117 priv->fwcapinfo);
118 lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n",
119 cmd.hwifversion, cmd.version);
121 /* Clamp region code to 8-bit since FW spec indicates that it should
122 * only ever be 8-bit, even though the field size is 16-bit. Some firmware
123 * returns non-zero high 8 bits here.
125 * Firmware version 4.0.102 used in CF8381 has region code shifted. We
126 * need to check for this problem and handle it properly.
128 if (MRVL_FW_MAJOR_REV(priv->fwrelease) == MRVL_FW_V4)
129 priv->regioncode = (le16_to_cpu(cmd.regioncode) >> 8) & 0xFF;
130 else
131 priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF;
133 for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) {
134 /* use the region code to search for the index */
135 if (priv->regioncode == lbs_region_code_to_index[i])
136 break;
139 /* if it's unidentified region code, use the default (USA) */
140 if (i >= MRVDRV_MAX_REGION_CODE) {
141 priv->regioncode = 0x10;
142 lbs_pr_info("unidentified region code; using the default (USA)\n");
145 if (priv->current_addr[0] == 0xff)
146 memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN);
148 memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN);
149 if (priv->mesh_dev)
150 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
152 out:
153 lbs_deb_leave(LBS_DEB_CMD);
154 return ret;
157 static int lbs_ret_host_sleep_cfg(struct lbs_private *priv, unsigned long dummy,
158 struct cmd_header *resp)
160 lbs_deb_enter(LBS_DEB_CMD);
161 if (priv->is_host_sleep_activated) {
162 priv->is_host_sleep_configured = 0;
163 if (priv->psstate == PS_STATE_FULL_POWER) {
164 priv->is_host_sleep_activated = 0;
165 wake_up_interruptible(&priv->host_sleep_q);
167 } else {
168 priv->is_host_sleep_configured = 1;
170 lbs_deb_leave(LBS_DEB_CMD);
171 return 0;
174 int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria,
175 struct wol_config *p_wol_config)
177 struct cmd_ds_host_sleep cmd_config;
178 int ret;
181 * Certain firmware versions do not support EHS_REMOVE_WAKEUP command
182 * and the card will return a failure. Since we need to be
183 * able to reset the mask, in those cases we set a 0 mask instead.
185 if (criteria == EHS_REMOVE_WAKEUP && !priv->ehs_remove_supported)
186 criteria = 0;
188 cmd_config.hdr.size = cpu_to_le16(sizeof(cmd_config));
189 cmd_config.criteria = cpu_to_le32(criteria);
190 cmd_config.gpio = priv->wol_gpio;
191 cmd_config.gap = priv->wol_gap;
193 if (p_wol_config != NULL)
194 memcpy((uint8_t *)&cmd_config.wol_conf, (uint8_t *)p_wol_config,
195 sizeof(struct wol_config));
196 else
197 cmd_config.wol_conf.action = CMD_ACT_ACTION_NONE;
199 ret = __lbs_cmd(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config.hdr,
200 le16_to_cpu(cmd_config.hdr.size),
201 lbs_ret_host_sleep_cfg, 0);
202 if (!ret) {
203 if (p_wol_config)
204 memcpy((uint8_t *) p_wol_config,
205 (uint8_t *)&cmd_config.wol_conf,
206 sizeof(struct wol_config));
207 } else {
208 lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret);
211 return ret;
213 EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg);
216 * @brief Sets the Power Save mode
218 * @param priv A pointer to struct lbs_private structure
219 * @param cmd_action The Power Save operation (PS_MODE_ACTION_ENTER_PS or
220 * PS_MODE_ACTION_EXIT_PS)
221 * @param block Whether to block on a response or not
223 * @return 0 on success, error on failure
225 int lbs_set_ps_mode(struct lbs_private *priv, u16 cmd_action, bool block)
227 struct cmd_ds_802_11_ps_mode cmd;
228 int ret = 0;
230 lbs_deb_enter(LBS_DEB_CMD);
232 memset(&cmd, 0, sizeof(cmd));
233 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
234 cmd.action = cpu_to_le16(cmd_action);
236 if (cmd_action == PS_MODE_ACTION_ENTER_PS) {
237 lbs_deb_cmd("PS_MODE: action ENTER_PS\n");
238 cmd.multipledtim = cpu_to_le16(1); /* Default DTIM multiple */
239 } else if (cmd_action == PS_MODE_ACTION_EXIT_PS) {
240 lbs_deb_cmd("PS_MODE: action EXIT_PS\n");
241 } else {
242 /* We don't handle CONFIRM_SLEEP here because it needs to
243 * be fastpathed to the firmware.
245 lbs_deb_cmd("PS_MODE: unknown action 0x%X\n", cmd_action);
246 ret = -EOPNOTSUPP;
247 goto out;
250 if (block)
251 ret = lbs_cmd_with_response(priv, CMD_802_11_PS_MODE, &cmd);
252 else
253 lbs_cmd_async(priv, CMD_802_11_PS_MODE, &cmd.hdr, sizeof (cmd));
255 out:
256 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
257 return ret;
260 int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, uint16_t cmd_action,
261 struct sleep_params *sp)
263 struct cmd_ds_802_11_sleep_params cmd;
264 int ret;
266 lbs_deb_enter(LBS_DEB_CMD);
268 if (cmd_action == CMD_ACT_GET) {
269 memset(&cmd, 0, sizeof(cmd));
270 } else {
271 cmd.error = cpu_to_le16(sp->sp_error);
272 cmd.offset = cpu_to_le16(sp->sp_offset);
273 cmd.stabletime = cpu_to_le16(sp->sp_stabletime);
274 cmd.calcontrol = sp->sp_calcontrol;
275 cmd.externalsleepclk = sp->sp_extsleepclk;
276 cmd.reserved = cpu_to_le16(sp->sp_reserved);
278 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
279 cmd.action = cpu_to_le16(cmd_action);
281 ret = lbs_cmd_with_response(priv, CMD_802_11_SLEEP_PARAMS, &cmd);
283 if (!ret) {
284 lbs_deb_cmd("error 0x%x, offset 0x%x, stabletime 0x%x, "
285 "calcontrol 0x%x extsleepclk 0x%x\n",
286 le16_to_cpu(cmd.error), le16_to_cpu(cmd.offset),
287 le16_to_cpu(cmd.stabletime), cmd.calcontrol,
288 cmd.externalsleepclk);
290 sp->sp_error = le16_to_cpu(cmd.error);
291 sp->sp_offset = le16_to_cpu(cmd.offset);
292 sp->sp_stabletime = le16_to_cpu(cmd.stabletime);
293 sp->sp_calcontrol = cmd.calcontrol;
294 sp->sp_extsleepclk = cmd.externalsleepclk;
295 sp->sp_reserved = le16_to_cpu(cmd.reserved);
298 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
299 return 0;
302 static int lbs_wait_for_ds_awake(struct lbs_private *priv)
304 int ret = 0;
306 lbs_deb_enter(LBS_DEB_CMD);
308 if (priv->is_deep_sleep) {
309 if (!wait_event_interruptible_timeout(priv->ds_awake_q,
310 !priv->is_deep_sleep, (10 * HZ))) {
311 lbs_pr_err("ds_awake_q: timer expired\n");
312 ret = -1;
316 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
317 return ret;
320 int lbs_set_deep_sleep(struct lbs_private *priv, int deep_sleep)
322 int ret = 0;
324 lbs_deb_enter(LBS_DEB_CMD);
326 if (deep_sleep) {
327 if (priv->is_deep_sleep != 1) {
328 lbs_deb_cmd("deep sleep: sleep\n");
329 BUG_ON(!priv->enter_deep_sleep);
330 ret = priv->enter_deep_sleep(priv);
331 if (!ret) {
332 netif_stop_queue(priv->dev);
333 netif_carrier_off(priv->dev);
335 } else {
336 lbs_pr_err("deep sleep: already enabled\n");
338 } else {
339 if (priv->is_deep_sleep) {
340 lbs_deb_cmd("deep sleep: wakeup\n");
341 BUG_ON(!priv->exit_deep_sleep);
342 ret = priv->exit_deep_sleep(priv);
343 if (!ret) {
344 ret = lbs_wait_for_ds_awake(priv);
345 if (ret)
346 lbs_pr_err("deep sleep: wakeup"
347 "failed\n");
352 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
353 return ret;
356 static int lbs_ret_host_sleep_activate(struct lbs_private *priv,
357 unsigned long dummy,
358 struct cmd_header *cmd)
360 lbs_deb_enter(LBS_DEB_FW);
361 priv->is_host_sleep_activated = 1;
362 wake_up_interruptible(&priv->host_sleep_q);
363 lbs_deb_leave(LBS_DEB_FW);
364 return 0;
367 int lbs_set_host_sleep(struct lbs_private *priv, int host_sleep)
369 struct cmd_header cmd;
370 int ret = 0;
371 uint32_t criteria = EHS_REMOVE_WAKEUP;
373 lbs_deb_enter(LBS_DEB_CMD);
375 if (host_sleep) {
376 if (priv->is_host_sleep_activated != 1) {
377 memset(&cmd, 0, sizeof(cmd));
378 ret = lbs_host_sleep_cfg(priv, priv->wol_criteria,
379 (struct wol_config *)NULL);
380 if (ret) {
381 lbs_pr_info("Host sleep configuration failed: "
382 "%d\n", ret);
383 return ret;
385 if (priv->psstate == PS_STATE_FULL_POWER) {
386 ret = __lbs_cmd(priv,
387 CMD_802_11_HOST_SLEEP_ACTIVATE,
388 &cmd,
389 sizeof(cmd),
390 lbs_ret_host_sleep_activate, 0);
391 if (ret)
392 lbs_pr_info("HOST_SLEEP_ACTIVATE "
393 "failed: %d\n", ret);
396 if (!wait_event_interruptible_timeout(
397 priv->host_sleep_q,
398 priv->is_host_sleep_activated,
399 (10 * HZ))) {
400 lbs_pr_err("host_sleep_q: timer expired\n");
401 ret = -1;
403 } else {
404 lbs_pr_err("host sleep: already enabled\n");
406 } else {
407 if (priv->is_host_sleep_activated)
408 ret = lbs_host_sleep_cfg(priv, criteria,
409 (struct wol_config *)NULL);
412 return ret;
416 * @brief Set an SNMP MIB value
418 * @param priv A pointer to struct lbs_private structure
419 * @param oid The OID to set in the firmware
420 * @param val Value to set the OID to
422 * @return 0 on success, error on failure
424 int lbs_set_snmp_mib(struct lbs_private *priv, u32 oid, u16 val)
426 struct cmd_ds_802_11_snmp_mib cmd;
427 int ret;
429 lbs_deb_enter(LBS_DEB_CMD);
431 memset(&cmd, 0, sizeof (cmd));
432 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
433 cmd.action = cpu_to_le16(CMD_ACT_SET);
434 cmd.oid = cpu_to_le16((u16) oid);
436 switch (oid) {
437 case SNMP_MIB_OID_BSS_TYPE:
438 cmd.bufsize = cpu_to_le16(sizeof(u8));
439 cmd.value[0] = val;
440 break;
441 case SNMP_MIB_OID_11D_ENABLE:
442 case SNMP_MIB_OID_FRAG_THRESHOLD:
443 case SNMP_MIB_OID_RTS_THRESHOLD:
444 case SNMP_MIB_OID_SHORT_RETRY_LIMIT:
445 case SNMP_MIB_OID_LONG_RETRY_LIMIT:
446 cmd.bufsize = cpu_to_le16(sizeof(u16));
447 *((__le16 *)(&cmd.value)) = cpu_to_le16(val);
448 break;
449 default:
450 lbs_deb_cmd("SNMP_CMD: (set) unhandled OID 0x%x\n", oid);
451 ret = -EINVAL;
452 goto out;
455 lbs_deb_cmd("SNMP_CMD: (set) oid 0x%x, oid size 0x%x, value 0x%x\n",
456 le16_to_cpu(cmd.oid), le16_to_cpu(cmd.bufsize), val);
458 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
460 out:
461 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
462 return ret;
466 * @brief Get an SNMP MIB value
468 * @param priv A pointer to struct lbs_private structure
469 * @param oid The OID to retrieve from the firmware
470 * @param out_val Location for the returned value
472 * @return 0 on success, error on failure
474 int lbs_get_snmp_mib(struct lbs_private *priv, u32 oid, u16 *out_val)
476 struct cmd_ds_802_11_snmp_mib cmd;
477 int ret;
479 lbs_deb_enter(LBS_DEB_CMD);
481 memset(&cmd, 0, sizeof (cmd));
482 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
483 cmd.action = cpu_to_le16(CMD_ACT_GET);
484 cmd.oid = cpu_to_le16(oid);
486 ret = lbs_cmd_with_response(priv, CMD_802_11_SNMP_MIB, &cmd);
487 if (ret)
488 goto out;
490 switch (le16_to_cpu(cmd.bufsize)) {
491 case sizeof(u8):
492 *out_val = cmd.value[0];
493 break;
494 case sizeof(u16):
495 *out_val = le16_to_cpu(*((__le16 *)(&cmd.value)));
496 break;
497 default:
498 lbs_deb_cmd("SNMP_CMD: (get) unhandled OID 0x%x size %d\n",
499 oid, le16_to_cpu(cmd.bufsize));
500 break;
503 out:
504 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
505 return ret;
509 * @brief Get the min, max, and current TX power
511 * @param priv A pointer to struct lbs_private structure
512 * @param curlevel Current power level in dBm
513 * @param minlevel Minimum supported power level in dBm (optional)
514 * @param maxlevel Maximum supported power level in dBm (optional)
516 * @return 0 on success, error on failure
518 int lbs_get_tx_power(struct lbs_private *priv, s16 *curlevel, s16 *minlevel,
519 s16 *maxlevel)
521 struct cmd_ds_802_11_rf_tx_power cmd;
522 int ret;
524 lbs_deb_enter(LBS_DEB_CMD);
526 memset(&cmd, 0, sizeof(cmd));
527 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
528 cmd.action = cpu_to_le16(CMD_ACT_GET);
530 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
531 if (ret == 0) {
532 *curlevel = le16_to_cpu(cmd.curlevel);
533 if (minlevel)
534 *minlevel = cmd.minlevel;
535 if (maxlevel)
536 *maxlevel = cmd.maxlevel;
539 lbs_deb_leave(LBS_DEB_CMD);
540 return ret;
544 * @brief Set the TX power
546 * @param priv A pointer to struct lbs_private structure
547 * @param dbm The desired power level in dBm
549 * @return 0 on success, error on failure
551 int lbs_set_tx_power(struct lbs_private *priv, s16 dbm)
553 struct cmd_ds_802_11_rf_tx_power cmd;
554 int ret;
556 lbs_deb_enter(LBS_DEB_CMD);
558 memset(&cmd, 0, sizeof(cmd));
559 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
560 cmd.action = cpu_to_le16(CMD_ACT_SET);
561 cmd.curlevel = cpu_to_le16(dbm);
563 lbs_deb_cmd("SET_RF_TX_POWER: %d dBm\n", dbm);
565 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_TX_POWER, &cmd);
567 lbs_deb_leave(LBS_DEB_CMD);
568 return ret;
572 * @brief Enable or disable monitor mode (only implemented on OLPC usb8388 FW)
574 * @param priv A pointer to struct lbs_private structure
575 * @param enable 1 to enable monitor mode, 0 to disable
577 * @return 0 on success, error on failure
579 int lbs_set_monitor_mode(struct lbs_private *priv, int enable)
581 struct cmd_ds_802_11_monitor_mode cmd;
582 int ret;
584 memset(&cmd, 0, sizeof(cmd));
585 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
586 cmd.action = cpu_to_le16(CMD_ACT_SET);
587 if (enable)
588 cmd.mode = cpu_to_le16(0x1);
590 lbs_deb_cmd("SET_MONITOR_MODE: %d\n", enable);
592 ret = lbs_cmd_with_response(priv, CMD_802_11_MONITOR_MODE, &cmd);
593 if (ret == 0) {
594 priv->dev->type = enable ? ARPHRD_IEEE80211_RADIOTAP :
595 ARPHRD_ETHER;
598 lbs_deb_leave(LBS_DEB_CMD);
599 return ret;
603 * @brief Get the radio channel
605 * @param priv A pointer to struct lbs_private structure
607 * @return The channel on success, error on failure
609 static int lbs_get_channel(struct lbs_private *priv)
611 struct cmd_ds_802_11_rf_channel cmd;
612 int ret = 0;
614 lbs_deb_enter(LBS_DEB_CMD);
616 memset(&cmd, 0, sizeof(cmd));
617 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
618 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET);
620 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
621 if (ret)
622 goto out;
624 ret = le16_to_cpu(cmd.channel);
625 lbs_deb_cmd("current radio channel is %d\n", ret);
627 out:
628 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
629 return ret;
632 int lbs_update_channel(struct lbs_private *priv)
634 int ret;
636 /* the channel in f/w could be out of sync; get the current channel */
637 lbs_deb_enter(LBS_DEB_ASSOC);
639 ret = lbs_get_channel(priv);
640 if (ret > 0) {
641 priv->channel = ret;
642 ret = 0;
644 lbs_deb_leave_args(LBS_DEB_ASSOC, "ret %d", ret);
645 return ret;
649 * @brief Set the radio channel
651 * @param priv A pointer to struct lbs_private structure
652 * @param channel The desired channel, or 0 to clear a locked channel
654 * @return 0 on success, error on failure
656 int lbs_set_channel(struct lbs_private *priv, u8 channel)
658 struct cmd_ds_802_11_rf_channel cmd;
659 #ifdef DEBUG
660 u8 old_channel = priv->channel;
661 #endif
662 int ret = 0;
664 lbs_deb_enter(LBS_DEB_CMD);
666 memset(&cmd, 0, sizeof(cmd));
667 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
668 cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET);
669 cmd.channel = cpu_to_le16(channel);
671 ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd);
672 if (ret)
673 goto out;
675 priv->channel = (uint8_t) le16_to_cpu(cmd.channel);
676 lbs_deb_cmd("channel switch from %d to %d\n", old_channel,
677 priv->channel);
679 out:
680 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
681 return ret;
685 * @brief Get current RSSI and noise floor
687 * @param priv A pointer to struct lbs_private structure
688 * @param rssi On successful return, signal level in mBm
690 * @return The channel on success, error on failure
692 int lbs_get_rssi(struct lbs_private *priv, s8 *rssi, s8 *nf)
694 struct cmd_ds_802_11_rssi cmd;
695 int ret = 0;
697 lbs_deb_enter(LBS_DEB_CMD);
699 BUG_ON(rssi == NULL);
700 BUG_ON(nf == NULL);
702 memset(&cmd, 0, sizeof(cmd));
703 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
704 /* Average SNR over last 8 beacons */
705 cmd.n_or_snr = cpu_to_le16(8);
707 ret = lbs_cmd_with_response(priv, CMD_802_11_RSSI, &cmd);
708 if (ret == 0) {
709 *nf = CAL_NF(le16_to_cpu(cmd.nf));
710 *rssi = CAL_RSSI(le16_to_cpu(cmd.n_or_snr), le16_to_cpu(cmd.nf));
713 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
714 return ret;
718 * @brief Send regulatory and 802.11d domain information to the firmware
720 * @param priv pointer to struct lbs_private
721 * @param request cfg80211 regulatory request structure
722 * @param bands the device's supported bands and channels
724 * @return 0 on success, error code on failure
726 int lbs_set_11d_domain_info(struct lbs_private *priv,
727 struct regulatory_request *request,
728 struct ieee80211_supported_band **bands)
730 struct cmd_ds_802_11d_domain_info cmd;
731 struct mrvl_ie_domain_param_set *domain = &cmd.domain;
732 struct ieee80211_country_ie_triplet *t;
733 enum ieee80211_band band;
734 struct ieee80211_channel *ch;
735 u8 num_triplet = 0;
736 u8 num_parsed_chan = 0;
737 u8 first_channel = 0, next_chan = 0, max_pwr = 0;
738 u8 i, flag = 0;
739 size_t triplet_size;
740 int ret;
742 lbs_deb_enter(LBS_DEB_11D);
744 memset(&cmd, 0, sizeof(cmd));
745 cmd.action = cpu_to_le16(CMD_ACT_SET);
747 lbs_deb_11d("Setting country code '%c%c'\n",
748 request->alpha2[0], request->alpha2[1]);
750 domain->header.type = cpu_to_le16(TLV_TYPE_DOMAIN);
752 /* Set country code */
753 domain->country_code[0] = request->alpha2[0];
754 domain->country_code[1] = request->alpha2[1];
755 domain->country_code[2] = ' ';
757 /* Now set up the channel triplets; firmware is somewhat picky here
758 * and doesn't validate channel numbers and spans; hence it would
759 * interpret a triplet of (36, 4, 20) as channels 36, 37, 38, 39. Since
760 * the last 3 aren't valid channels, the driver is responsible for
761 * splitting that up into 4 triplet pairs of (36, 1, 20) + (40, 1, 20)
762 * etc.
764 for (band = 0;
765 (band < IEEE80211_NUM_BANDS) && (num_triplet < MAX_11D_TRIPLETS);
766 band++) {
768 if (!bands[band])
769 continue;
771 for (i = 0;
772 (i < bands[band]->n_channels) && (num_triplet < MAX_11D_TRIPLETS);
773 i++) {
774 ch = &bands[band]->channels[i];
775 if (ch->flags & IEEE80211_CHAN_DISABLED)
776 continue;
778 if (!flag) {
779 flag = 1;
780 next_chan = first_channel = (u32) ch->hw_value;
781 max_pwr = ch->max_power;
782 num_parsed_chan = 1;
783 continue;
786 if ((ch->hw_value == next_chan + 1) &&
787 (ch->max_power == max_pwr)) {
788 /* Consolidate adjacent channels */
789 next_chan++;
790 num_parsed_chan++;
791 } else {
792 /* Add this triplet */
793 lbs_deb_11d("11D triplet (%d, %d, %d)\n",
794 first_channel, num_parsed_chan,
795 max_pwr);
796 t = &domain->triplet[num_triplet];
797 t->chans.first_channel = first_channel;
798 t->chans.num_channels = num_parsed_chan;
799 t->chans.max_power = max_pwr;
800 num_triplet++;
801 flag = 0;
805 if (flag) {
806 /* Add last triplet */
807 lbs_deb_11d("11D triplet (%d, %d, %d)\n", first_channel,
808 num_parsed_chan, max_pwr);
809 t = &domain->triplet[num_triplet];
810 t->chans.first_channel = first_channel;
811 t->chans.num_channels = num_parsed_chan;
812 t->chans.max_power = max_pwr;
813 num_triplet++;
817 lbs_deb_11d("# triplets %d\n", num_triplet);
819 /* Set command header sizes */
820 triplet_size = num_triplet * sizeof(struct ieee80211_country_ie_triplet);
821 domain->header.len = cpu_to_le16(sizeof(domain->country_code) +
822 triplet_size);
824 lbs_deb_hex(LBS_DEB_11D, "802.11D domain param set",
825 (u8 *) &cmd.domain.country_code,
826 le16_to_cpu(domain->header.len));
828 cmd.hdr.size = cpu_to_le16(sizeof(cmd.hdr) +
829 sizeof(cmd.action) +
830 sizeof(cmd.domain.header) +
831 sizeof(cmd.domain.country_code) +
832 triplet_size);
834 ret = lbs_cmd_with_response(priv, CMD_802_11D_DOMAIN_INFO, &cmd);
836 lbs_deb_leave_args(LBS_DEB_11D, "ret %d", ret);
837 return ret;
841 * @brief Read a MAC, Baseband, or RF register
843 * @param priv pointer to struct lbs_private
844 * @param cmd register command, one of CMD_MAC_REG_ACCESS,
845 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
846 * @param offset byte offset of the register to get
847 * @param value on success, the value of the register at 'offset'
849 * @return 0 on success, error code on failure
851 int lbs_get_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 *value)
853 struct cmd_ds_reg_access cmd;
854 int ret = 0;
856 lbs_deb_enter(LBS_DEB_CMD);
858 BUG_ON(value == NULL);
860 memset(&cmd, 0, sizeof(cmd));
861 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
862 cmd.action = cpu_to_le16(CMD_ACT_GET);
864 if (reg != CMD_MAC_REG_ACCESS &&
865 reg != CMD_BBP_REG_ACCESS &&
866 reg != CMD_RF_REG_ACCESS) {
867 ret = -EINVAL;
868 goto out;
871 ret = lbs_cmd_with_response(priv, reg, &cmd);
872 if (ret) {
873 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
874 *value = cmd.value.bbp_rf;
875 else if (reg == CMD_MAC_REG_ACCESS)
876 *value = le32_to_cpu(cmd.value.mac);
879 out:
880 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
881 return ret;
885 * @brief Write a MAC, Baseband, or RF register
887 * @param priv pointer to struct lbs_private
888 * @param cmd register command, one of CMD_MAC_REG_ACCESS,
889 * CMD_BBP_REG_ACCESS, or CMD_RF_REG_ACCESS
890 * @param offset byte offset of the register to set
891 * @param value the value to write to the register at 'offset'
893 * @return 0 on success, error code on failure
895 int lbs_set_reg(struct lbs_private *priv, u16 reg, u16 offset, u32 value)
897 struct cmd_ds_reg_access cmd;
898 int ret = 0;
900 lbs_deb_enter(LBS_DEB_CMD);
902 memset(&cmd, 0, sizeof(cmd));
903 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
904 cmd.action = cpu_to_le16(CMD_ACT_SET);
906 if (reg == CMD_BBP_REG_ACCESS || reg == CMD_RF_REG_ACCESS)
907 cmd.value.bbp_rf = (u8) (value & 0xFF);
908 else if (reg == CMD_MAC_REG_ACCESS)
909 cmd.value.mac = cpu_to_le32(value);
910 else {
911 ret = -EINVAL;
912 goto out;
915 ret = lbs_cmd_with_response(priv, reg, &cmd);
917 out:
918 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
919 return ret;
922 static void lbs_queue_cmd(struct lbs_private *priv,
923 struct cmd_ctrl_node *cmdnode)
925 unsigned long flags;
926 int addtail = 1;
928 lbs_deb_enter(LBS_DEB_HOST);
930 if (!cmdnode) {
931 lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n");
932 goto done;
934 if (!cmdnode->cmdbuf->size) {
935 lbs_deb_host("DNLD_CMD: cmd size is zero\n");
936 goto done;
938 cmdnode->result = 0;
940 /* Exit_PS command needs to be queued in the header always. */
941 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) {
942 struct cmd_ds_802_11_ps_mode *psm = (void *) &cmdnode->cmdbuf;
944 if (psm->action == cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
945 if (priv->psstate != PS_STATE_FULL_POWER)
946 addtail = 0;
950 if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_WAKEUP_CONFIRM)
951 addtail = 0;
953 spin_lock_irqsave(&priv->driver_lock, flags);
955 if (addtail)
956 list_add_tail(&cmdnode->list, &priv->cmdpendingq);
957 else
958 list_add(&cmdnode->list, &priv->cmdpendingq);
960 spin_unlock_irqrestore(&priv->driver_lock, flags);
962 lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n",
963 le16_to_cpu(cmdnode->cmdbuf->command));
965 done:
966 lbs_deb_leave(LBS_DEB_HOST);
969 static void lbs_submit_command(struct lbs_private *priv,
970 struct cmd_ctrl_node *cmdnode)
972 unsigned long flags;
973 struct cmd_header *cmd;
974 uint16_t cmdsize;
975 uint16_t command;
976 int timeo = 3 * HZ;
977 int ret;
979 lbs_deb_enter(LBS_DEB_HOST);
981 cmd = cmdnode->cmdbuf;
983 spin_lock_irqsave(&priv->driver_lock, flags);
984 priv->cur_cmd = cmdnode;
985 spin_unlock_irqrestore(&priv->driver_lock, flags);
987 cmdsize = le16_to_cpu(cmd->size);
988 command = le16_to_cpu(cmd->command);
990 /* These commands take longer */
991 if (command == CMD_802_11_SCAN || command == CMD_802_11_ASSOCIATE)
992 timeo = 5 * HZ;
994 lbs_deb_cmd("DNLD_CMD: command 0x%04x, seq %d, size %d\n",
995 command, le16_to_cpu(cmd->seqnum), cmdsize);
996 lbs_deb_hex(LBS_DEB_CMD, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize);
998 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize);
1000 if (ret) {
1001 lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret);
1002 /* Let the timer kick in and retry, and potentially reset
1003 the whole thing if the condition persists */
1004 timeo = HZ/4;
1007 if (command == CMD_802_11_DEEP_SLEEP) {
1008 if (priv->is_auto_deep_sleep_enabled) {
1009 priv->wakeup_dev_required = 1;
1010 priv->dnld_sent = 0;
1012 priv->is_deep_sleep = 1;
1013 lbs_complete_command(priv, cmdnode, 0);
1014 } else {
1015 /* Setup the timer after transmit command */
1016 mod_timer(&priv->command_timer, jiffies + timeo);
1019 lbs_deb_leave(LBS_DEB_HOST);
1023 * This function inserts command node to cmdfreeq
1024 * after cleans it. Requires priv->driver_lock held.
1026 static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1027 struct cmd_ctrl_node *cmdnode)
1029 lbs_deb_enter(LBS_DEB_HOST);
1031 if (!cmdnode)
1032 goto out;
1034 cmdnode->callback = NULL;
1035 cmdnode->callback_arg = 0;
1037 memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE);
1039 list_add_tail(&cmdnode->list, &priv->cmdfreeq);
1040 out:
1041 lbs_deb_leave(LBS_DEB_HOST);
1044 static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv,
1045 struct cmd_ctrl_node *ptempcmd)
1047 unsigned long flags;
1049 spin_lock_irqsave(&priv->driver_lock, flags);
1050 __lbs_cleanup_and_insert_cmd(priv, ptempcmd);
1051 spin_unlock_irqrestore(&priv->driver_lock, flags);
1054 void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd,
1055 int result)
1057 cmd->result = result;
1058 cmd->cmdwaitqwoken = 1;
1059 wake_up_interruptible(&cmd->cmdwait_q);
1061 if (!cmd->callback || cmd->callback == lbs_cmd_async_callback)
1062 __lbs_cleanup_and_insert_cmd(priv, cmd);
1063 priv->cur_cmd = NULL;
1066 int lbs_set_radio(struct lbs_private *priv, u8 preamble, u8 radio_on)
1068 struct cmd_ds_802_11_radio_control cmd;
1069 int ret = -EINVAL;
1071 lbs_deb_enter(LBS_DEB_CMD);
1073 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1074 cmd.action = cpu_to_le16(CMD_ACT_SET);
1076 /* Only v8 and below support setting the preamble */
1077 if (priv->fwrelease < 0x09000000) {
1078 switch (preamble) {
1079 case RADIO_PREAMBLE_SHORT:
1080 case RADIO_PREAMBLE_AUTO:
1081 case RADIO_PREAMBLE_LONG:
1082 cmd.control = cpu_to_le16(preamble);
1083 break;
1084 default:
1085 goto out;
1089 if (radio_on)
1090 cmd.control |= cpu_to_le16(0x1);
1091 else {
1092 cmd.control &= cpu_to_le16(~0x1);
1093 priv->txpower_cur = 0;
1096 lbs_deb_cmd("RADIO_CONTROL: radio %s, preamble %d\n",
1097 radio_on ? "ON" : "OFF", preamble);
1099 priv->radio_on = radio_on;
1101 ret = lbs_cmd_with_response(priv, CMD_802_11_RADIO_CONTROL, &cmd);
1103 out:
1104 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1105 return ret;
1108 void lbs_set_mac_control(struct lbs_private *priv)
1110 struct cmd_ds_mac_control cmd;
1112 lbs_deb_enter(LBS_DEB_CMD);
1114 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1115 cmd.action = cpu_to_le16(priv->mac_control);
1116 cmd.reserved = 0;
1118 lbs_cmd_async(priv, CMD_MAC_CONTROL, &cmd.hdr, sizeof(cmd));
1120 lbs_deb_leave(LBS_DEB_CMD);
1124 * @brief This function allocates the command buffer and link
1125 * it to command free queue.
1127 * @param priv A pointer to struct lbs_private structure
1128 * @return 0 or -1
1130 int lbs_allocate_cmd_buffer(struct lbs_private *priv)
1132 int ret = 0;
1133 u32 bufsize;
1134 u32 i;
1135 struct cmd_ctrl_node *cmdarray;
1137 lbs_deb_enter(LBS_DEB_HOST);
1139 /* Allocate and initialize the command array */
1140 bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS;
1141 if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) {
1142 lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n");
1143 ret = -1;
1144 goto done;
1146 priv->cmd_array = cmdarray;
1148 /* Allocate and initialize each command buffer in the command array */
1149 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1150 cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL);
1151 if (!cmdarray[i].cmdbuf) {
1152 lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n");
1153 ret = -1;
1154 goto done;
1158 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1159 init_waitqueue_head(&cmdarray[i].cmdwait_q);
1160 lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]);
1162 ret = 0;
1164 done:
1165 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1166 return ret;
1170 * @brief This function frees the command buffer.
1172 * @param priv A pointer to struct lbs_private structure
1173 * @return 0 or -1
1175 int lbs_free_cmd_buffer(struct lbs_private *priv)
1177 struct cmd_ctrl_node *cmdarray;
1178 unsigned int i;
1180 lbs_deb_enter(LBS_DEB_HOST);
1182 /* need to check if cmd array is allocated or not */
1183 if (priv->cmd_array == NULL) {
1184 lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n");
1185 goto done;
1188 cmdarray = priv->cmd_array;
1190 /* Release shared memory buffers */
1191 for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) {
1192 if (cmdarray[i].cmdbuf) {
1193 kfree(cmdarray[i].cmdbuf);
1194 cmdarray[i].cmdbuf = NULL;
1198 /* Release cmd_ctrl_node */
1199 if (priv->cmd_array) {
1200 kfree(priv->cmd_array);
1201 priv->cmd_array = NULL;
1204 done:
1205 lbs_deb_leave(LBS_DEB_HOST);
1206 return 0;
1210 * @brief This function gets a free command node if available in
1211 * command free queue.
1213 * @param priv A pointer to struct lbs_private structure
1214 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1216 static struct cmd_ctrl_node *lbs_get_free_cmd_node(struct lbs_private *priv)
1218 struct cmd_ctrl_node *tempnode;
1219 unsigned long flags;
1221 lbs_deb_enter(LBS_DEB_HOST);
1223 if (!priv)
1224 return NULL;
1226 spin_lock_irqsave(&priv->driver_lock, flags);
1228 if (!list_empty(&priv->cmdfreeq)) {
1229 tempnode = list_first_entry(&priv->cmdfreeq,
1230 struct cmd_ctrl_node, list);
1231 list_del(&tempnode->list);
1232 } else {
1233 lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n");
1234 tempnode = NULL;
1237 spin_unlock_irqrestore(&priv->driver_lock, flags);
1239 lbs_deb_leave(LBS_DEB_HOST);
1240 return tempnode;
1244 * @brief This function executes next command in command
1245 * pending queue. It will put firmware back to PS mode
1246 * if applicable.
1248 * @param priv A pointer to struct lbs_private structure
1249 * @return 0 or -1
1251 int lbs_execute_next_command(struct lbs_private *priv)
1253 struct cmd_ctrl_node *cmdnode = NULL;
1254 struct cmd_header *cmd;
1255 unsigned long flags;
1256 int ret = 0;
1258 /* Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the
1259 * only caller to us is lbs_thread() and we get even when a
1260 * data packet is received */
1261 lbs_deb_enter(LBS_DEB_THREAD);
1263 spin_lock_irqsave(&priv->driver_lock, flags);
1265 if (priv->cur_cmd) {
1266 lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n");
1267 spin_unlock_irqrestore(&priv->driver_lock, flags);
1268 ret = -1;
1269 goto done;
1272 if (!list_empty(&priv->cmdpendingq)) {
1273 cmdnode = list_first_entry(&priv->cmdpendingq,
1274 struct cmd_ctrl_node, list);
1277 spin_unlock_irqrestore(&priv->driver_lock, flags);
1279 if (cmdnode) {
1280 cmd = cmdnode->cmdbuf;
1282 if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) {
1283 if ((priv->psstate == PS_STATE_SLEEP) ||
1284 (priv->psstate == PS_STATE_PRE_SLEEP)) {
1285 lbs_deb_host(
1286 "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n",
1287 le16_to_cpu(cmd->command),
1288 priv->psstate);
1289 ret = -1;
1290 goto done;
1292 lbs_deb_host("EXEC_NEXT_CMD: OK to send command "
1293 "0x%04x in psstate %d\n",
1294 le16_to_cpu(cmd->command), priv->psstate);
1295 } else if (priv->psstate != PS_STATE_FULL_POWER) {
1297 * 1. Non-PS command:
1298 * Queue it. set needtowakeup to TRUE if current state
1299 * is SLEEP, otherwise call send EXIT_PS.
1300 * 2. PS command but not EXIT_PS:
1301 * Ignore it.
1302 * 3. PS command EXIT_PS:
1303 * Set needtowakeup to TRUE if current state is SLEEP,
1304 * otherwise send this command down to firmware
1305 * immediately.
1307 if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) {
1308 /* Prepare to send Exit PS,
1309 * this non PS command will be sent later */
1310 if ((priv->psstate == PS_STATE_SLEEP)
1311 || (priv->psstate == PS_STATE_PRE_SLEEP)
1313 /* w/ new scheme, it will not reach here.
1314 since it is blocked in main_thread. */
1315 priv->needtowakeup = 1;
1316 } else {
1317 lbs_set_ps_mode(priv,
1318 PS_MODE_ACTION_EXIT_PS,
1319 false);
1322 ret = 0;
1323 goto done;
1324 } else {
1326 * PS command. Ignore it if it is not Exit_PS.
1327 * otherwise send it down immediately.
1329 struct cmd_ds_802_11_ps_mode *psm = (void *)&cmd[1];
1331 lbs_deb_host(
1332 "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n",
1333 psm->action);
1334 if (psm->action !=
1335 cpu_to_le16(PS_MODE_ACTION_EXIT_PS)) {
1336 lbs_deb_host(
1337 "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n");
1338 spin_lock_irqsave(&priv->driver_lock, flags);
1339 list_del(&cmdnode->list);
1340 lbs_complete_command(priv, cmdnode, 0);
1341 spin_unlock_irqrestore(&priv->driver_lock, flags);
1343 ret = 0;
1344 goto done;
1347 if ((priv->psstate == PS_STATE_SLEEP) ||
1348 (priv->psstate == PS_STATE_PRE_SLEEP)) {
1349 lbs_deb_host(
1350 "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n");
1351 spin_lock_irqsave(&priv->driver_lock, flags);
1352 list_del(&cmdnode->list);
1353 lbs_complete_command(priv, cmdnode, 0);
1354 spin_unlock_irqrestore(&priv->driver_lock, flags);
1355 priv->needtowakeup = 1;
1357 ret = 0;
1358 goto done;
1361 lbs_deb_host(
1362 "EXEC_NEXT_CMD: sending EXIT_PS\n");
1365 spin_lock_irqsave(&priv->driver_lock, flags);
1366 list_del(&cmdnode->list);
1367 spin_unlock_irqrestore(&priv->driver_lock, flags);
1368 lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n",
1369 le16_to_cpu(cmd->command));
1370 lbs_submit_command(priv, cmdnode);
1371 } else {
1373 * check if in power save mode, if yes, put the device back
1374 * to PS mode
1376 #ifdef TODO
1378 * This was the old code for libertas+wext. Someone that
1379 * understands this beast should re-code it in a sane way.
1381 * I actually don't understand why this is related to WPA
1382 * and to connection status, shouldn't powering should be
1383 * independ of such things?
1385 if ((priv->psmode != LBS802_11POWERMODECAM) &&
1386 (priv->psstate == PS_STATE_FULL_POWER) &&
1387 ((priv->connect_status == LBS_CONNECTED) ||
1388 lbs_mesh_connected(priv))) {
1389 if (priv->secinfo.WPAenabled ||
1390 priv->secinfo.WPA2enabled) {
1391 /* check for valid WPA group keys */
1392 if (priv->wpa_mcast_key.len ||
1393 priv->wpa_unicast_key.len) {
1394 lbs_deb_host(
1395 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1396 " go back to PS_SLEEP");
1397 lbs_set_ps_mode(priv,
1398 PS_MODE_ACTION_ENTER_PS,
1399 false);
1401 } else {
1402 lbs_deb_host(
1403 "EXEC_NEXT_CMD: cmdpendingq empty, "
1404 "go back to PS_SLEEP");
1405 lbs_set_ps_mode(priv, PS_MODE_ACTION_ENTER_PS,
1406 false);
1409 #endif
1412 ret = 0;
1413 done:
1414 lbs_deb_leave(LBS_DEB_THREAD);
1415 return ret;
1418 static void lbs_send_confirmsleep(struct lbs_private *priv)
1420 unsigned long flags;
1421 int ret;
1423 lbs_deb_enter(LBS_DEB_HOST);
1424 lbs_deb_hex(LBS_DEB_HOST, "sleep confirm", (u8 *) &confirm_sleep,
1425 sizeof(confirm_sleep));
1427 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) &confirm_sleep,
1428 sizeof(confirm_sleep));
1429 if (ret) {
1430 lbs_pr_alert("confirm_sleep failed\n");
1431 goto out;
1434 spin_lock_irqsave(&priv->driver_lock, flags);
1436 /* We don't get a response on the sleep-confirmation */
1437 priv->dnld_sent = DNLD_RES_RECEIVED;
1439 if (priv->is_host_sleep_configured) {
1440 priv->is_host_sleep_activated = 1;
1441 wake_up_interruptible(&priv->host_sleep_q);
1444 /* If nothing to do, go back to sleep (?) */
1445 if (!kfifo_len(&priv->event_fifo) && !priv->resp_len[priv->resp_idx])
1446 priv->psstate = PS_STATE_SLEEP;
1448 spin_unlock_irqrestore(&priv->driver_lock, flags);
1450 out:
1451 lbs_deb_leave(LBS_DEB_HOST);
1455 * @brief This function checks condition and prepares to
1456 * send sleep confirm command to firmware if ok.
1458 * @param priv A pointer to struct lbs_private structure
1459 * @param psmode Power Saving mode
1460 * @return n/a
1462 void lbs_ps_confirm_sleep(struct lbs_private *priv)
1464 unsigned long flags =0;
1465 int allowed = 1;
1467 lbs_deb_enter(LBS_DEB_HOST);
1469 spin_lock_irqsave(&priv->driver_lock, flags);
1470 if (priv->dnld_sent) {
1471 allowed = 0;
1472 lbs_deb_host("dnld_sent was set\n");
1475 /* In-progress command? */
1476 if (priv->cur_cmd) {
1477 allowed = 0;
1478 lbs_deb_host("cur_cmd was set\n");
1481 /* Pending events or command responses? */
1482 if (kfifo_len(&priv->event_fifo) || priv->resp_len[priv->resp_idx]) {
1483 allowed = 0;
1484 lbs_deb_host("pending events or command responses\n");
1486 spin_unlock_irqrestore(&priv->driver_lock, flags);
1488 if (allowed) {
1489 lbs_deb_host("sending lbs_ps_confirm_sleep\n");
1490 lbs_send_confirmsleep(priv);
1491 } else {
1492 lbs_deb_host("sleep confirm has been delayed\n");
1495 lbs_deb_leave(LBS_DEB_HOST);
1500 * @brief Configures the transmission power control functionality.
1502 * @param priv A pointer to struct lbs_private structure
1503 * @param enable Transmission power control enable
1504 * @param p0 Power level when link quality is good (dBm).
1505 * @param p1 Power level when link quality is fair (dBm).
1506 * @param p2 Power level when link quality is poor (dBm).
1507 * @param usesnr Use Signal to Noise Ratio in TPC
1509 * @return 0 on success
1511 int lbs_set_tpc_cfg(struct lbs_private *priv, int enable, int8_t p0, int8_t p1,
1512 int8_t p2, int usesnr)
1514 struct cmd_ds_802_11_tpc_cfg cmd;
1515 int ret;
1517 memset(&cmd, 0, sizeof(cmd));
1518 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1519 cmd.action = cpu_to_le16(CMD_ACT_SET);
1520 cmd.enable = !!enable;
1521 cmd.usesnr = !!usesnr;
1522 cmd.P0 = p0;
1523 cmd.P1 = p1;
1524 cmd.P2 = p2;
1526 ret = lbs_cmd_with_response(priv, CMD_802_11_TPC_CFG, &cmd);
1528 return ret;
1532 * @brief Configures the power adaptation settings.
1534 * @param priv A pointer to struct lbs_private structure
1535 * @param enable Power adaptation enable
1536 * @param p0 Power level for 1, 2, 5.5 and 11 Mbps (dBm).
1537 * @param p1 Power level for 6, 9, 12, 18, 22, 24 and 36 Mbps (dBm).
1538 * @param p2 Power level for 48 and 54 Mbps (dBm).
1540 * @return 0 on Success
1543 int lbs_set_power_adapt_cfg(struct lbs_private *priv, int enable, int8_t p0,
1544 int8_t p1, int8_t p2)
1546 struct cmd_ds_802_11_pa_cfg cmd;
1547 int ret;
1549 memset(&cmd, 0, sizeof(cmd));
1550 cmd.hdr.size = cpu_to_le16(sizeof(cmd));
1551 cmd.action = cpu_to_le16(CMD_ACT_SET);
1552 cmd.enable = !!enable;
1553 cmd.P0 = p0;
1554 cmd.P1 = p1;
1555 cmd.P2 = p2;
1557 ret = lbs_cmd_with_response(priv, CMD_802_11_PA_CFG , &cmd);
1559 return ret;
1563 struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv,
1564 uint16_t command, struct cmd_header *in_cmd, int in_cmd_size,
1565 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1566 unsigned long callback_arg)
1568 struct cmd_ctrl_node *cmdnode;
1570 lbs_deb_enter(LBS_DEB_HOST);
1572 if (priv->surpriseremoved) {
1573 lbs_deb_host("PREP_CMD: card removed\n");
1574 cmdnode = ERR_PTR(-ENOENT);
1575 goto done;
1578 /* No commands are allowed in Deep Sleep until we toggle the GPIO
1579 * to wake up the card and it has signaled that it's ready.
1581 if (!priv->is_auto_deep_sleep_enabled) {
1582 if (priv->is_deep_sleep) {
1583 lbs_deb_cmd("command not allowed in deep sleep\n");
1584 cmdnode = ERR_PTR(-EBUSY);
1585 goto done;
1589 cmdnode = lbs_get_free_cmd_node(priv);
1590 if (cmdnode == NULL) {
1591 lbs_deb_host("PREP_CMD: cmdnode is NULL\n");
1593 /* Wake up main thread to execute next command */
1594 wake_up_interruptible(&priv->waitq);
1595 cmdnode = ERR_PTR(-ENOBUFS);
1596 goto done;
1599 cmdnode->callback = callback;
1600 cmdnode->callback_arg = callback_arg;
1602 /* Copy the incoming command to the buffer */
1603 memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size);
1605 /* Set sequence number, clean result, move to buffer */
1606 priv->seqnum++;
1607 cmdnode->cmdbuf->command = cpu_to_le16(command);
1608 cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size);
1609 cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum);
1610 cmdnode->cmdbuf->result = 0;
1612 lbs_deb_host("PREP_CMD: command 0x%04x\n", command);
1614 cmdnode->cmdwaitqwoken = 0;
1615 lbs_queue_cmd(priv, cmdnode);
1616 wake_up_interruptible(&priv->waitq);
1618 done:
1619 lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode);
1620 return cmdnode;
1623 void lbs_cmd_async(struct lbs_private *priv, uint16_t command,
1624 struct cmd_header *in_cmd, int in_cmd_size)
1626 lbs_deb_enter(LBS_DEB_CMD);
1627 __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1628 lbs_cmd_async_callback, 0);
1629 lbs_deb_leave(LBS_DEB_CMD);
1632 int __lbs_cmd(struct lbs_private *priv, uint16_t command,
1633 struct cmd_header *in_cmd, int in_cmd_size,
1634 int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *),
1635 unsigned long callback_arg)
1637 struct cmd_ctrl_node *cmdnode;
1638 unsigned long flags;
1639 int ret = 0;
1641 lbs_deb_enter(LBS_DEB_HOST);
1643 cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size,
1644 callback, callback_arg);
1645 if (IS_ERR(cmdnode)) {
1646 ret = PTR_ERR(cmdnode);
1647 goto done;
1650 might_sleep();
1651 wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken);
1653 spin_lock_irqsave(&priv->driver_lock, flags);
1654 ret = cmdnode->result;
1655 if (ret)
1656 lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n",
1657 command, ret);
1659 __lbs_cleanup_and_insert_cmd(priv, cmdnode);
1660 spin_unlock_irqrestore(&priv->driver_lock, flags);
1662 done:
1663 lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret);
1664 return ret;
1666 EXPORT_SYMBOL_GPL(__lbs_cmd);