2 * This file contains the handling of command.
3 * It prepares command and sends it to firmware when it is ready.
6 #include <net/iw_handler.h>
15 static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode);
17 static u16 commands_allowed_in_ps[] = {
22 * @brief This function checks if the commans is allowed
25 * @param command the command ID
26 * @return TRUE or FALSE
28 static u8 is_command_allowed_in_ps(__le16 command)
32 for (i = 0; i < ARRAY_SIZE(commands_allowed_in_ps); i++) {
33 if (command == cpu_to_le16(commands_allowed_in_ps[i]))
40 static int wlan_cmd_hw_spec(wlan_private * priv, struct cmd_ds_command *cmd)
42 struct cmd_ds_get_hw_spec *hwspec = &cmd->params.hwspec;
44 lbs_deb_enter(LBS_DEB_CMD);
46 cmd->command = cpu_to_le16(cmd_get_hw_spec);
47 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_get_hw_spec) + S_DS_GEN);
48 memcpy(hwspec->permanentaddr, priv->adapter->current_addr, ETH_ALEN);
50 lbs_deb_leave(LBS_DEB_CMD);
54 static int wlan_cmd_802_11_ps_mode(wlan_private * priv,
55 struct cmd_ds_command *cmd,
58 struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode;
59 wlan_adapter *adapter = priv->adapter;
61 lbs_deb_enter(LBS_DEB_CMD);
63 cmd->command = cpu_to_le16(cmd_802_11_ps_mode);
64 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) +
66 psm->action = cpu_to_le16(cmd_action);
67 psm->multipledtim = 0;
69 case cmd_subcmd_enter_ps:
70 lbs_deb_cmd("PS command:" "SubCode- Enter PS\n");
71 lbs_deb_cmd("locallisteninterval = %d\n",
72 adapter->locallisteninterval);
74 psm->locallisteninterval =
75 cpu_to_le16(adapter->locallisteninterval);
76 psm->nullpktinterval =
77 cpu_to_le16(adapter->nullpktinterval);
79 cpu_to_le16(priv->adapter->multipledtim);
82 case cmd_subcmd_exit_ps:
83 lbs_deb_cmd("PS command:" "SubCode- Exit PS\n");
86 case cmd_subcmd_sleep_confirmed:
87 lbs_deb_cmd("PS command: SubCode- sleep confirm\n");
94 lbs_deb_leave(LBS_DEB_CMD);
98 static int wlan_cmd_802_11_inactivity_timeout(wlan_private * priv,
99 struct cmd_ds_command *cmd,
100 u16 cmd_action, void *pdata_buf)
102 u16 *timeout = pdata_buf;
104 cmd->command = cpu_to_le16(cmd_802_11_inactivity_timeout);
106 cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout)
109 cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action);
112 cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout);
114 cmd->params.inactivity_timeout.timeout = 0;
119 static int wlan_cmd_802_11_sleep_params(wlan_private * priv,
120 struct cmd_ds_command *cmd,
123 wlan_adapter *adapter = priv->adapter;
124 struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params;
126 lbs_deb_enter(LBS_DEB_CMD);
128 cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) +
130 cmd->command = cpu_to_le16(cmd_802_11_sleep_params);
132 if (cmd_action == cmd_act_get) {
133 memset(&adapter->sp, 0, sizeof(struct sleep_params));
134 memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params));
135 sp->action = cpu_to_le16(cmd_action);
136 } else if (cmd_action == cmd_act_set) {
137 sp->action = cpu_to_le16(cmd_action);
138 sp->error = cpu_to_le16(adapter->sp.sp_error);
139 sp->offset = cpu_to_le16(adapter->sp.sp_offset);
140 sp->stabletime = cpu_to_le16(adapter->sp.sp_stabletime);
141 sp->calcontrol = (u8) adapter->sp.sp_calcontrol;
142 sp->externalsleepclk = (u8) adapter->sp.sp_extsleepclk;
143 sp->reserved = cpu_to_le16(adapter->sp.sp_reserved);
146 lbs_deb_leave(LBS_DEB_CMD);
150 static int wlan_cmd_802_11_set_wep(wlan_private * priv,
151 struct cmd_ds_command *cmd,
155 struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep;
156 wlan_adapter *adapter = priv->adapter;
158 struct assoc_request * assoc_req = pdata_buf;
160 lbs_deb_enter(LBS_DEB_CMD);
162 cmd->command = cpu_to_le16(cmd_802_11_set_wep);
163 cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN);
165 if (cmd_act == cmd_act_add) {
169 lbs_deb_cmd("Invalid association request!");
174 wep->action = cpu_to_le16(cmd_act_add);
176 /* default tx key index */
177 wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx &
178 (u32)cmd_WEP_KEY_INDEX_MASK));
180 lbs_deb_cmd("Tx key Index: %u\n", le16_to_cpu(wep->keyindex));
182 /* Copy key types and material to host command structure */
183 for (i = 0; i < 4; i++) {
184 struct enc_key * pkey = &assoc_req->wep_keys[i];
189 cpu_to_le16(cmd_type_wep_40_bit);
190 memmove(&wep->keymaterial[i], pkey->key,
193 case KEY_LEN_WEP_104:
195 cpu_to_le16(cmd_type_wep_104_bit);
196 memmove(&wep->keymaterial[i], pkey->key,
202 lbs_deb_cmd("Invalid WEP key %d length of %d\n",
209 } else if (cmd_act == cmd_act_remove) {
210 /* ACT_REMOVE clears _all_ WEP keys */
211 wep->action = cpu_to_le16(cmd_act_remove);
213 /* default tx key index */
214 wep->keyindex = cpu_to_le16((u16)(adapter->wep_tx_keyidx &
215 (u32)cmd_WEP_KEY_INDEX_MASK));
221 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
225 static int wlan_cmd_802_11_enable_rsn(wlan_private * priv,
226 struct cmd_ds_command *cmd,
230 struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn;
231 u32 * enable = pdata_buf;
233 lbs_deb_enter(LBS_DEB_CMD);
235 cmd->command = cpu_to_le16(cmd_802_11_enable_rsn);
236 cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN);
237 penableRSN->action = cpu_to_le16(cmd_action);
239 if (cmd_action == cmd_act_set) {
241 penableRSN->enable = cpu_to_le16(cmd_enable_rsn);
243 penableRSN->enable = cpu_to_le16(cmd_disable_rsn);
246 lbs_deb_leave(LBS_DEB_CMD);
251 static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset,
252 struct enc_key * pkey)
254 if (pkey->flags & KEY_INFO_WPA_ENABLED) {
255 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED);
257 if (pkey->flags & KEY_INFO_WPA_UNICAST) {
258 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST);
260 if (pkey->flags & KEY_INFO_WPA_MCAST) {
261 pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST);
264 pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL);
265 pkeyparamset->keytypeid = cpu_to_le16(pkey->type);
266 pkeyparamset->keylen = cpu_to_le16(pkey->len);
267 memcpy(pkeyparamset->key, pkey->key, pkey->len);
268 pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid)
269 + sizeof(pkeyparamset->keyinfo)
270 + sizeof(pkeyparamset->keylen)
271 + sizeof(pkeyparamset->key));
274 static int wlan_cmd_802_11_key_material(wlan_private * priv,
275 struct cmd_ds_command *cmd,
277 u32 cmd_oid, void *pdata_buf)
279 struct cmd_ds_802_11_key_material *pkeymaterial =
280 &cmd->params.keymaterial;
281 struct assoc_request * assoc_req = pdata_buf;
285 lbs_deb_enter(LBS_DEB_CMD);
287 cmd->command = cpu_to_le16(cmd_802_11_key_material);
288 pkeymaterial->action = cpu_to_le16(cmd_action);
290 if (cmd_action == cmd_act_get) {
291 cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action));
296 memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet));
298 if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) {
299 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
300 &assoc_req->wpa_unicast_key);
304 if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) {
305 set_one_wpa_key(&pkeymaterial->keyParamSet[index],
306 &assoc_req->wpa_mcast_key);
310 cmd->size = cpu_to_le16( S_DS_GEN
311 + sizeof (pkeymaterial->action)
312 + (index * sizeof(struct MrvlIEtype_keyParamSet)));
317 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
321 static int wlan_cmd_802_11_reset(wlan_private * priv,
322 struct cmd_ds_command *cmd, int cmd_action)
324 struct cmd_ds_802_11_reset *reset = &cmd->params.reset;
326 cmd->command = cpu_to_le16(cmd_802_11_reset);
327 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN);
328 reset->action = cpu_to_le16(cmd_action);
333 static int wlan_cmd_802_11_get_log(wlan_private * priv,
334 struct cmd_ds_command *cmd)
336 cmd->command = cpu_to_le16(cmd_802_11_get_log);
338 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN);
343 static int wlan_cmd_802_11_get_stat(wlan_private * priv,
344 struct cmd_ds_command *cmd)
346 cmd->command = cpu_to_le16(cmd_802_11_get_stat);
348 cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN);
353 static int wlan_cmd_802_11_snmp_mib(wlan_private * priv,
354 struct cmd_ds_command *cmd,
356 int cmd_oid, void *pdata_buf)
358 struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib;
359 wlan_adapter *adapter = priv->adapter;
362 lbs_deb_enter(LBS_DEB_CMD);
364 lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid);
366 cmd->command = cpu_to_le16(cmd_802_11_snmp_mib);
367 cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN);
370 case OID_802_11_INFRASTRUCTURE_MODE:
372 u8 mode = (u8) (size_t) pdata_buf;
373 pSNMPMIB->querytype = cpu_to_le16(cmd_act_set);
374 pSNMPMIB->oid = cpu_to_le16((u16) desired_bsstype_i);
375 pSNMPMIB->bufsize = sizeof(u8);
376 if (mode == IW_MODE_ADHOC) {
377 ucTemp = SNMP_MIB_VALUE_ADHOC;
379 /* Infra and Auto modes */
380 ucTemp = SNMP_MIB_VALUE_INFRA;
383 memmove(pSNMPMIB->value, &ucTemp, sizeof(u8));
388 case OID_802_11D_ENABLE:
392 pSNMPMIB->oid = cpu_to_le16((u16) dot11d_i);
394 if (cmd_action == cmd_act_set) {
395 pSNMPMIB->querytype = cmd_act_set;
396 pSNMPMIB->bufsize = sizeof(u16);
397 ulTemp = *(u32 *)pdata_buf;
398 *((__le16 *)(pSNMPMIB->value)) =
399 cpu_to_le16((u16) ulTemp);
404 case OID_802_11_FRAGMENTATION_THRESHOLD:
408 pSNMPMIB->oid = cpu_to_le16((u16) fragthresh_i);
410 if (cmd_action == cmd_act_get) {
411 pSNMPMIB->querytype = cpu_to_le16(cmd_act_get);
412 } else if (cmd_action == cmd_act_set) {
413 pSNMPMIB->querytype = cpu_to_le16(cmd_act_set);
414 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
415 ulTemp = *((u32 *) pdata_buf);
416 *((__le16 *)(pSNMPMIB->value)) =
417 cpu_to_le16((u16) ulTemp);
424 case OID_802_11_RTS_THRESHOLD:
428 pSNMPMIB->oid = le16_to_cpu((u16) rtsthresh_i);
430 if (cmd_action == cmd_act_get) {
431 pSNMPMIB->querytype = cpu_to_le16(cmd_act_get);
432 } else if (cmd_action == cmd_act_set) {
433 pSNMPMIB->querytype = cpu_to_le16(cmd_act_set);
434 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
435 ulTemp = *((u32 *)pdata_buf);
436 *(__le16 *)(pSNMPMIB->value) =
437 cpu_to_le16((u16) ulTemp);
442 case OID_802_11_TX_RETRYCOUNT:
443 pSNMPMIB->oid = cpu_to_le16((u16) short_retrylim_i);
445 if (cmd_action == cmd_act_get) {
446 pSNMPMIB->querytype = cpu_to_le16(cmd_act_get);
447 } else if (cmd_action == cmd_act_set) {
448 pSNMPMIB->querytype = cpu_to_le16(cmd_act_set);
449 pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16));
450 *((__le16 *)(pSNMPMIB->value)) =
451 cpu_to_le16((u16) adapter->txretrycount);
460 "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n",
461 le16_to_cpu(cmd->command), le16_to_cpu(cmd->size),
462 le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result));
465 "SNMP_CMD: action=0x%x, oid=0x%x, oidsize=0x%x, value=0x%x\n",
466 le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid),
467 le16_to_cpu(pSNMPMIB->bufsize),
468 le16_to_cpu(*(__le16 *) pSNMPMIB->value));
470 lbs_deb_leave(LBS_DEB_CMD);
474 static int wlan_cmd_802_11_radio_control(wlan_private * priv,
475 struct cmd_ds_command *cmd,
478 wlan_adapter *adapter = priv->adapter;
479 struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio;
481 lbs_deb_enter(LBS_DEB_CMD);
484 cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) +
486 cmd->command = cpu_to_le16(cmd_802_11_radio_control);
488 pradiocontrol->action = cpu_to_le16(cmd_action);
490 switch (adapter->preamble) {
491 case cmd_type_short_preamble:
492 pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE);
495 case cmd_type_long_preamble:
496 pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE);
499 case cmd_type_auto_preamble:
501 pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE);
505 if (adapter->radioon)
506 pradiocontrol->control |= cpu_to_le16(TURN_ON_RF);
508 pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF);
510 lbs_deb_leave(LBS_DEB_CMD);
514 static int wlan_cmd_802_11_rf_tx_power(wlan_private * priv,
515 struct cmd_ds_command *cmd,
516 u16 cmd_action, void *pdata_buf)
519 struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp;
521 lbs_deb_enter(LBS_DEB_CMD);
524 cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN);
525 cmd->command = cpu_to_le16(cmd_802_11_rf_tx_power);
526 prtp->action = cpu_to_le16(cmd_action);
528 lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n",
529 le16_to_cpu(cmd->size), le16_to_cpu(cmd->command),
530 le16_to_cpu(prtp->action));
532 switch (cmd_action) {
533 case cmd_act_tx_power_opt_get:
534 prtp->action = cpu_to_le16(cmd_act_get);
535 prtp->currentlevel = 0;
538 case cmd_act_tx_power_opt_set_high:
539 prtp->action = cpu_to_le16(cmd_act_set);
540 prtp->currentlevel = cpu_to_le16(cmd_act_tx_power_index_high);
543 case cmd_act_tx_power_opt_set_mid:
544 prtp->action = cpu_to_le16(cmd_act_set);
545 prtp->currentlevel = cpu_to_le16(cmd_act_tx_power_index_mid);
548 case cmd_act_tx_power_opt_set_low:
549 prtp->action = cpu_to_le16(cmd_act_set);
550 prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf));
554 lbs_deb_leave(LBS_DEB_CMD);
558 static int wlan_cmd_802_11_rf_antenna(wlan_private * priv,
559 struct cmd_ds_command *cmd,
560 u16 cmd_action, void *pdata_buf)
562 struct cmd_ds_802_11_rf_antenna *rant = &cmd->params.rant;
564 cmd->command = cpu_to_le16(cmd_802_11_rf_antenna);
565 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rf_antenna) +
568 rant->action = cpu_to_le16(cmd_action);
569 if ((cmd_action == cmd_act_set_rx) || (cmd_action == cmd_act_set_tx)) {
570 rant->antennamode = cpu_to_le16((u16) (*(u32 *) pdata_buf));
576 static int wlan_cmd_802_11_rate_adapt_rateset(wlan_private * priv,
577 struct cmd_ds_command *cmd,
580 struct cmd_ds_802_11_rate_adapt_rateset
581 *rateadapt = &cmd->params.rateset;
582 wlan_adapter *adapter = priv->adapter;
585 cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset)
587 cmd->command = cpu_to_le16(cmd_802_11_rate_adapt_rateset);
589 lbs_deb_enter(LBS_DEB_CMD);
591 rateadapt->action = cpu_to_le16(cmd_action);
592 rateadapt->enablehwauto = cpu_to_le16(adapter->enablehwauto);
593 rateadapt->bitmap = cpu_to_le16(adapter->ratebitmap);
595 lbs_deb_leave(LBS_DEB_CMD);
599 static int wlan_cmd_802_11_data_rate(wlan_private * priv,
600 struct cmd_ds_command *cmd,
603 struct cmd_ds_802_11_data_rate *pdatarate = &cmd->params.drate;
604 wlan_adapter *adapter = priv->adapter;
606 lbs_deb_enter(LBS_DEB_CMD);
608 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_data_rate) +
611 cmd->command = cpu_to_le16(cmd_802_11_data_rate);
613 memset(pdatarate, 0, sizeof(struct cmd_ds_802_11_data_rate));
615 pdatarate->action = cpu_to_le16(cmd_action);
617 if (cmd_action == cmd_act_set_tx_fix_rate) {
618 pdatarate->datarate[0] = libertas_data_rate_to_index(adapter->datarate);
619 lbs_deb_cmd("Setting FW for fixed rate 0x%02X\n",
621 } else if (cmd_action == cmd_act_set_tx_auto) {
622 lbs_deb_cmd("Setting FW for AUTO rate\n");
625 lbs_deb_leave(LBS_DEB_CMD);
629 static int wlan_cmd_mac_multicast_adr(wlan_private * priv,
630 struct cmd_ds_command *cmd,
633 struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr;
634 wlan_adapter *adapter = priv->adapter;
636 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) +
638 cmd->command = cpu_to_le16(cmd_mac_multicast_adr);
640 pMCastAdr->action = cpu_to_le16(cmd_action);
641 pMCastAdr->nr_of_adrs =
642 cpu_to_le16((u16) adapter->nr_of_multicastmacaddr);
643 memcpy(pMCastAdr->maclist, adapter->multicastlist,
644 adapter->nr_of_multicastmacaddr * ETH_ALEN);
649 static int wlan_cmd_802_11_rf_channel(wlan_private * priv,
650 struct cmd_ds_command *cmd,
651 int option, void *pdata_buf)
653 struct cmd_ds_802_11_rf_channel *rfchan = &cmd->params.rfchannel;
655 cmd->command = cpu_to_le16(cmd_802_11_rf_channel);
656 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rf_channel) +
659 if (option == cmd_opt_802_11_rf_channel_set) {
660 rfchan->currentchannel = cpu_to_le16(*((u16 *) pdata_buf));
663 rfchan->action = cpu_to_le16(option);
668 static int wlan_cmd_802_11_rssi(wlan_private * priv,
669 struct cmd_ds_command *cmd)
671 wlan_adapter *adapter = priv->adapter;
673 cmd->command = cpu_to_le16(cmd_802_11_rssi);
674 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN);
675 cmd->params.rssi.N = cpu_to_le16(priv->adapter->bcn_avg_factor);
677 /* reset Beacon SNR/NF/RSSI values */
678 adapter->SNR[TYPE_BEACON][TYPE_NOAVG] = 0;
679 adapter->SNR[TYPE_BEACON][TYPE_AVG] = 0;
680 adapter->NF[TYPE_BEACON][TYPE_NOAVG] = 0;
681 adapter->NF[TYPE_BEACON][TYPE_AVG] = 0;
682 adapter->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0;
683 adapter->RSSI[TYPE_BEACON][TYPE_AVG] = 0;
688 static int wlan_cmd_reg_access(wlan_private * priv,
689 struct cmd_ds_command *cmdptr,
690 u8 cmd_action, void *pdata_buf)
692 struct wlan_offset_value *offval;
694 lbs_deb_enter(LBS_DEB_CMD);
696 offval = (struct wlan_offset_value *)pdata_buf;
698 switch (cmdptr->command) {
699 case cmd_mac_reg_access:
701 struct cmd_ds_mac_reg_access *macreg;
704 cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access)
707 (struct cmd_ds_mac_reg_access *)&cmdptr->params.
710 macreg->action = cpu_to_le16(cmd_action);
711 macreg->offset = cpu_to_le16((u16) offval->offset);
712 macreg->value = cpu_to_le32(offval->value);
717 case cmd_bbp_reg_access:
719 struct cmd_ds_bbp_reg_access *bbpreg;
723 (struct cmd_ds_bbp_reg_access)
726 (struct cmd_ds_bbp_reg_access *)&cmdptr->params.
729 bbpreg->action = cpu_to_le16(cmd_action);
730 bbpreg->offset = cpu_to_le16((u16) offval->offset);
731 bbpreg->value = (u8) offval->value;
736 case cmd_rf_reg_access:
738 struct cmd_ds_rf_reg_access *rfreg;
742 (struct cmd_ds_rf_reg_access) +
745 (struct cmd_ds_rf_reg_access *)&cmdptr->params.
748 rfreg->action = cpu_to_le16(cmd_action);
749 rfreg->offset = cpu_to_le16((u16) offval->offset);
750 rfreg->value = (u8) offval->value;
759 lbs_deb_leave(LBS_DEB_CMD);
763 static int wlan_cmd_802_11_mac_address(wlan_private * priv,
764 struct cmd_ds_command *cmd,
767 wlan_adapter *adapter = priv->adapter;
769 cmd->command = cpu_to_le16(cmd_802_11_mac_address);
770 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) +
774 cmd->params.macadd.action = cpu_to_le16(cmd_action);
776 if (cmd_action == cmd_act_set) {
777 memcpy(cmd->params.macadd.macadd,
778 adapter->current_addr, ETH_ALEN);
779 lbs_dbg_hex("SET_CMD: MAC ADDRESS-", adapter->current_addr, 6);
785 static int wlan_cmd_802_11_eeprom_access(wlan_private * priv,
786 struct cmd_ds_command *cmd,
787 int cmd_action, void *pdata_buf)
789 struct wlan_ioctl_regrdwr *ea = pdata_buf;
791 lbs_deb_enter(LBS_DEB_CMD);
793 cmd->command = cpu_to_le16(cmd_802_11_eeprom_access);
794 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) +
798 cmd->params.rdeeprom.action = cpu_to_le16(ea->action);
799 cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset);
800 cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB);
801 cmd->params.rdeeprom.value = 0;
806 static int wlan_cmd_bt_access(wlan_private * priv,
807 struct cmd_ds_command *cmd,
808 u16 cmd_action, void *pdata_buf)
810 struct cmd_ds_bt_access *bt_access = &cmd->params.bt;
811 lbs_deb_cmd("BT CMD(%d)\n", cmd_action);
813 cmd->command = cpu_to_le16(cmd_bt_access);
814 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN);
816 bt_access->action = cpu_to_le16(cmd_action);
818 switch (cmd_action) {
819 case cmd_act_bt_access_add:
820 memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN);
821 lbs_dbg_hex("BT_ADD: blinded mac address-", bt_access->addr1, 6);
823 case cmd_act_bt_access_del:
824 memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN);
825 lbs_dbg_hex("BT_DEL: blinded mac address-", bt_access->addr1, 6);
827 case cmd_act_bt_access_list:
828 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
830 case cmd_act_bt_access_reset:
832 case cmd_act_bt_access_set_invert:
833 bt_access->id = cpu_to_le32(*(u32 *) pdata_buf);
835 case cmd_act_bt_access_get_invert:
843 static int wlan_cmd_fwt_access(wlan_private * priv,
844 struct cmd_ds_command *cmd,
845 u16 cmd_action, void *pdata_buf)
847 struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt;
848 lbs_deb_cmd("FWT CMD(%d)\n", cmd_action);
850 cmd->command = cpu_to_le16(cmd_fwt_access);
851 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN);
855 memcpy(fwt_access, pdata_buf, sizeof(*fwt_access));
857 memset(fwt_access, 0, sizeof(*fwt_access));
859 fwt_access->action = cpu_to_le16(cmd_action);
864 static int wlan_cmd_mesh_access(wlan_private * priv,
865 struct cmd_ds_command *cmd,
866 u16 cmd_action, void *pdata_buf)
868 struct cmd_ds_mesh_access *mesh_access = &cmd->params.mesh;
869 lbs_deb_cmd("FWT CMD(%d)\n", cmd_action);
871 cmd->command = cpu_to_le16(cmd_mesh_access);
872 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN);
876 memcpy(mesh_access, pdata_buf, sizeof(*mesh_access));
878 memset(mesh_access, 0, sizeof(*mesh_access));
880 mesh_access->action = cpu_to_le16(cmd_action);
885 void libertas_queue_cmd(wlan_adapter * adapter, struct cmd_ctrl_node *cmdnode, u8 addtail)
888 struct cmd_ds_command *cmdptr;
890 lbs_deb_enter(LBS_DEB_CMD);
893 lbs_deb_cmd("QUEUE_CMD: cmdnode is NULL\n");
897 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
899 lbs_deb_cmd("QUEUE_CMD: cmdptr is NULL\n");
903 /* Exit_PS command needs to be queued in the header always. */
904 if (cmdptr->command == cmd_802_11_ps_mode) {
905 struct cmd_ds_802_11_ps_mode *psm = &cmdptr->params.psmode;
906 if (psm->action == cpu_to_le16(cmd_subcmd_exit_ps)) {
907 if (adapter->psstate != PS_STATE_FULL_POWER)
912 spin_lock_irqsave(&adapter->driver_lock, flags);
915 list_add_tail((struct list_head *)cmdnode,
916 &adapter->cmdpendingq);
918 list_add((struct list_head *)cmdnode, &adapter->cmdpendingq);
920 spin_unlock_irqrestore(&adapter->driver_lock, flags);
922 lbs_deb_cmd("QUEUE_CMD: Inserted node=%p, cmd=0x%x in cmdpendingq\n",
924 le16_to_cpu(((struct cmd_ds_gen*)cmdnode->bufvirtualaddr)->command));
927 lbs_deb_leave(LBS_DEB_CMD);
931 * TODO: Fix the issue when DownloadcommandToStation is being called the
932 * second time when the command timesout. All the cmdptr->xxx are in little
933 * endian and therefore all the comparissions will fail.
934 * For now - we are not performing the endian conversion the second time - but
935 * for PS and DEEP_SLEEP we need to worry
937 static int DownloadcommandToStation(wlan_private * priv,
938 struct cmd_ctrl_node *cmdnode)
941 struct cmd_ds_command *cmdptr;
942 wlan_adapter *adapter = priv->adapter;
947 lbs_deb_enter(LBS_DEB_CMD);
949 if (!adapter || !cmdnode) {
950 lbs_deb_cmd("DNLD_CMD: adapter = %p, cmdnode = %p\n",
953 spin_lock_irqsave(&adapter->driver_lock, flags);
954 __libertas_cleanup_and_insert_cmd(priv, cmdnode);
955 spin_unlock_irqrestore(&adapter->driver_lock, flags);
961 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
964 spin_lock_irqsave(&adapter->driver_lock, flags);
965 if (!cmdptr || !cmdptr->size) {
966 lbs_deb_cmd("DNLD_CMD: cmdptr is Null or cmd size is Zero, "
968 __libertas_cleanup_and_insert_cmd(priv, cmdnode);
969 spin_unlock_irqrestore(&adapter->driver_lock, flags);
974 adapter->cur_cmd = cmdnode;
975 adapter->cur_cmd_retcode = 0;
976 spin_unlock_irqrestore(&adapter->driver_lock, flags);
977 lbs_deb_cmd("DNLD_CMD:: Before download, size of cmd = %d\n",
978 le16_to_cpu(cmdptr->size));
980 cmdsize = cmdptr->size;
982 command = cpu_to_le16(cmdptr->command);
984 cmdnode->cmdwaitqwoken = 0;
985 cmdsize = cpu_to_le16(cmdsize);
987 ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmdptr, cmdsize);
990 lbs_deb_cmd("DNLD_CMD: Host to Card failed\n");
991 spin_lock_irqsave(&adapter->driver_lock, flags);
992 __libertas_cleanup_and_insert_cmd(priv, adapter->cur_cmd);
993 adapter->cur_cmd = NULL;
994 spin_unlock_irqrestore(&adapter->driver_lock, flags);
999 lbs_deb_cmd("DNLD_CMD: Sent command 0x%x @ %lu\n", command, jiffies);
1000 lbs_dbg_hex("DNLD_CMD: command", cmdnode->bufvirtualaddr, cmdsize);
1002 /* Setup the timer after transmit command */
1003 if (command == cmd_802_11_scan || command == cmd_802_11_authenticate
1004 || command == cmd_802_11_associate)
1005 mod_timer(&adapter->command_timer, jiffies + (10*HZ));
1007 mod_timer(&adapter->command_timer, jiffies + (5*HZ));
1012 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1016 static int wlan_cmd_mac_control(wlan_private * priv,
1017 struct cmd_ds_command *cmd)
1019 struct cmd_ds_mac_control *mac = &cmd->params.macctrl;
1021 lbs_deb_enter(LBS_DEB_CMD);
1023 cmd->command = cpu_to_le16(cmd_mac_control);
1024 cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN);
1025 mac->action = cpu_to_le16(priv->adapter->currentpacketfilter);
1027 lbs_deb_cmd("wlan_cmd_mac_control(): action=0x%X size=%d\n",
1028 le16_to_cpu(mac->action), le16_to_cpu(cmd->size));
1030 lbs_deb_leave(LBS_DEB_CMD);
1035 * This function inserts command node to cmdfreeq
1036 * after cleans it. Requires adapter->driver_lock held.
1038 void __libertas_cleanup_and_insert_cmd(wlan_private * priv, struct cmd_ctrl_node *ptempcmd)
1040 wlan_adapter *adapter = priv->adapter;
1045 cleanup_cmdnode(ptempcmd);
1046 list_add_tail((struct list_head *)ptempcmd, &adapter->cmdfreeq);
1051 void libertas_cleanup_and_insert_cmd(wlan_private * priv, struct cmd_ctrl_node *ptempcmd)
1053 unsigned long flags;
1055 spin_lock_irqsave(&priv->adapter->driver_lock, flags);
1056 __libertas_cleanup_and_insert_cmd(priv, ptempcmd);
1057 spin_unlock_irqrestore(&priv->adapter->driver_lock, flags);
1060 int libertas_set_radio_control(wlan_private * priv)
1064 lbs_deb_enter(LBS_DEB_CMD);
1066 ret = libertas_prepare_and_send_command(priv,
1067 cmd_802_11_radio_control,
1069 cmd_option_waitforrsp, 0, NULL);
1071 lbs_deb_cmd("RADIO_SET: on or off: 0x%X, preamble = 0x%X\n",
1072 priv->adapter->radioon, priv->adapter->preamble);
1074 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1078 int libertas_set_mac_packet_filter(wlan_private * priv)
1082 lbs_deb_enter(LBS_DEB_CMD);
1084 lbs_deb_cmd("libertas_set_mac_packet_filter value = %x\n",
1085 priv->adapter->currentpacketfilter);
1087 /* Send MAC control command to station */
1088 ret = libertas_prepare_and_send_command(priv,
1089 cmd_mac_control, 0, 0, 0, NULL);
1091 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1096 * @brief This function prepare the command before send to firmware.
1098 * @param priv A pointer to wlan_private structure
1099 * @param cmd_no command number
1100 * @param cmd_action command action: GET or SET
1101 * @param wait_option wait option: wait response or not
1102 * @param cmd_oid cmd oid: treated as sub command
1103 * @param pdata_buf A pointer to informaion buffer
1106 int libertas_prepare_and_send_command(wlan_private * priv,
1109 u16 wait_option, u32 cmd_oid, void *pdata_buf)
1112 wlan_adapter *adapter = priv->adapter;
1113 struct cmd_ctrl_node *cmdnode;
1114 struct cmd_ds_command *cmdptr;
1115 unsigned long flags;
1117 lbs_deb_enter(LBS_DEB_CMD);
1120 lbs_deb_cmd("PREP_CMD: adapter is Null\n");
1125 if (adapter->surpriseremoved) {
1126 lbs_deb_cmd("PREP_CMD: Card is Removed\n");
1131 cmdnode = libertas_get_free_cmd_ctrl_node(priv);
1133 if (cmdnode == NULL) {
1134 lbs_deb_cmd("PREP_CMD: No free cmdnode\n");
1136 /* Wake up main thread to execute next command */
1137 wake_up_interruptible(&priv->mainthread.waitq);
1142 libertas_set_cmd_ctrl_node(priv, cmdnode, cmd_oid, wait_option, pdata_buf);
1144 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1146 lbs_deb_cmd("PREP_CMD: Val of cmd ptr=%p, command=0x%X\n",
1150 lbs_deb_cmd("PREP_CMD: bufvirtualaddr of cmdnode is NULL\n");
1151 libertas_cleanup_and_insert_cmd(priv, cmdnode);
1156 /* Set sequence number, command and INT option */
1158 cmdptr->seqnum = cpu_to_le16(adapter->seqnum);
1160 cmdptr->command = cpu_to_le16(cmd_no);
1164 case cmd_get_hw_spec:
1165 ret = wlan_cmd_hw_spec(priv, cmdptr);
1167 case cmd_802_11_ps_mode:
1168 ret = wlan_cmd_802_11_ps_mode(priv, cmdptr, cmd_action);
1171 case cmd_802_11_scan:
1172 ret = libertas_cmd_80211_scan(priv, cmdptr, pdata_buf);
1175 case cmd_mac_control:
1176 ret = wlan_cmd_mac_control(priv, cmdptr);
1179 case cmd_802_11_associate:
1180 case cmd_802_11_reassociate:
1181 ret = libertas_cmd_80211_associate(priv, cmdptr, pdata_buf);
1184 case cmd_802_11_deauthenticate:
1185 ret = libertas_cmd_80211_deauthenticate(priv, cmdptr);
1188 case cmd_802_11_set_wep:
1189 ret = wlan_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf);
1192 case cmd_802_11_ad_hoc_start:
1193 ret = libertas_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf);
1198 case cmd_802_11_reset:
1199 ret = wlan_cmd_802_11_reset(priv, cmdptr, cmd_action);
1202 case cmd_802_11_get_log:
1203 ret = wlan_cmd_802_11_get_log(priv, cmdptr);
1206 case cmd_802_11_authenticate:
1207 ret = libertas_cmd_80211_authenticate(priv, cmdptr, pdata_buf);
1210 case cmd_802_11_get_stat:
1211 ret = wlan_cmd_802_11_get_stat(priv, cmdptr);
1214 case cmd_802_11_snmp_mib:
1215 ret = wlan_cmd_802_11_snmp_mib(priv, cmdptr,
1216 cmd_action, cmd_oid, pdata_buf);
1219 case cmd_mac_reg_access:
1220 case cmd_bbp_reg_access:
1221 case cmd_rf_reg_access:
1222 ret = wlan_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf);
1225 case cmd_802_11_rf_channel:
1226 ret = wlan_cmd_802_11_rf_channel(priv, cmdptr,
1227 cmd_action, pdata_buf);
1230 case cmd_802_11_rf_tx_power:
1231 ret = wlan_cmd_802_11_rf_tx_power(priv, cmdptr,
1232 cmd_action, pdata_buf);
1235 case cmd_802_11_radio_control:
1236 ret = wlan_cmd_802_11_radio_control(priv, cmdptr, cmd_action);
1239 case cmd_802_11_rf_antenna:
1240 ret = wlan_cmd_802_11_rf_antenna(priv, cmdptr,
1241 cmd_action, pdata_buf);
1244 case cmd_802_11_data_rate:
1245 ret = wlan_cmd_802_11_data_rate(priv, cmdptr, cmd_action);
1247 case cmd_802_11_rate_adapt_rateset:
1248 ret = wlan_cmd_802_11_rate_adapt_rateset(priv,
1249 cmdptr, cmd_action);
1252 case cmd_mac_multicast_adr:
1253 ret = wlan_cmd_mac_multicast_adr(priv, cmdptr, cmd_action);
1256 case cmd_802_11_ad_hoc_join:
1257 ret = libertas_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf);
1260 case cmd_802_11_rssi:
1261 ret = wlan_cmd_802_11_rssi(priv, cmdptr);
1264 case cmd_802_11_ad_hoc_stop:
1265 ret = libertas_cmd_80211_ad_hoc_stop(priv, cmdptr);
1268 case cmd_802_11_enable_rsn:
1269 ret = wlan_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action,
1273 case cmd_802_11_key_material:
1274 ret = wlan_cmd_802_11_key_material(priv, cmdptr, cmd_action,
1275 cmd_oid, pdata_buf);
1278 case cmd_802_11_pairwise_tsc:
1280 case cmd_802_11_group_tsc:
1283 case cmd_802_11_mac_address:
1284 ret = wlan_cmd_802_11_mac_address(priv, cmdptr, cmd_action);
1287 case cmd_802_11_eeprom_access:
1288 ret = wlan_cmd_802_11_eeprom_access(priv, cmdptr,
1289 cmd_action, pdata_buf);
1292 case cmd_802_11_set_afc:
1293 case cmd_802_11_get_afc:
1295 cmdptr->command = cpu_to_le16(cmd_no);
1296 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) +
1299 memmove(&cmdptr->params.afc,
1300 pdata_buf, sizeof(struct cmd_ds_802_11_afc));
1305 case cmd_802_11d_domain_info:
1306 ret = libertas_cmd_802_11d_domain_info(priv, cmdptr,
1307 cmd_no, cmd_action);
1310 case cmd_802_11_sleep_params:
1311 ret = wlan_cmd_802_11_sleep_params(priv, cmdptr, cmd_action);
1313 case cmd_802_11_inactivity_timeout:
1314 ret = wlan_cmd_802_11_inactivity_timeout(priv, cmdptr,
1315 cmd_action, pdata_buf);
1316 libertas_set_cmd_ctrl_node(priv, cmdnode, 0, 0, pdata_buf);
1319 case cmd_802_11_tpc_cfg:
1320 cmdptr->command = cpu_to_le16(cmd_802_11_tpc_cfg);
1322 cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) +
1325 memmove(&cmdptr->params.tpccfg,
1326 pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg));
1330 case cmd_802_11_led_gpio_ctrl:
1332 struct mrvlietypes_ledgpio *gpio =
1333 (struct mrvlietypes_ledgpio*)
1334 cmdptr->params.ledgpio.data;
1336 memmove(&cmdptr->params.ledgpio,
1338 sizeof(struct cmd_ds_802_11_led_ctrl));
1341 cpu_to_le16(cmd_802_11_led_gpio_ctrl);
1343 #define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8
1345 cpu_to_le16(gpio->header.len + S_DS_GEN +
1346 ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN);
1347 gpio->header.len = cpu_to_le16(gpio->header.len);
1352 case cmd_802_11_pwr_cfg:
1353 cmdptr->command = cpu_to_le16(cmd_802_11_pwr_cfg);
1355 cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) +
1357 memmove(&cmdptr->params.pwrcfg, pdata_buf,
1358 sizeof(struct cmd_ds_802_11_pwr_cfg));
1363 ret = wlan_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf);
1366 case cmd_fwt_access:
1367 ret = wlan_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf);
1370 case cmd_mesh_access:
1371 ret = wlan_cmd_mesh_access(priv, cmdptr, cmd_action, pdata_buf);
1375 cmdptr->command = cpu_to_le16(cmd_get_tsf);
1376 cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) +
1380 case cmd_802_11_tx_rate_query:
1381 cmdptr->command = cpu_to_le16(cmd_802_11_tx_rate_query);
1382 cmdptr->size = cpu_to_le16(sizeof(struct cmd_tx_rate_query) +
1384 adapter->txrate = 0;
1388 lbs_deb_cmd("PREP_CMD: unknown command- %#x\n", cmd_no);
1393 /* return error, since the command preparation failed */
1395 lbs_deb_cmd("PREP_CMD: command preparation failed\n");
1396 libertas_cleanup_and_insert_cmd(priv, cmdnode);
1401 cmdnode->cmdwaitqwoken = 0;
1403 libertas_queue_cmd(adapter, cmdnode, 1);
1404 adapter->nr_cmd_pending++;
1405 wake_up_interruptible(&priv->mainthread.waitq);
1407 if (wait_option & cmd_option_waitforrsp) {
1408 lbs_deb_cmd("PREP_CMD: Wait for CMD response\n");
1410 wait_event_interruptible(cmdnode->cmdwait_q,
1411 cmdnode->cmdwaitqwoken);
1414 spin_lock_irqsave(&adapter->driver_lock, flags);
1415 if (adapter->cur_cmd_retcode) {
1416 lbs_deb_cmd("PREP_CMD: command failed with return code=%d\n",
1417 adapter->cur_cmd_retcode);
1418 adapter->cur_cmd_retcode = 0;
1421 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1424 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1427 EXPORT_SYMBOL_GPL(libertas_prepare_and_send_command);
1430 * @brief This function allocates the command buffer and link
1431 * it to command free queue.
1433 * @param priv A pointer to wlan_private structure
1436 int libertas_allocate_cmd_buffer(wlan_private * priv)
1441 struct cmd_ctrl_node *tempcmd_array;
1442 u8 *ptempvirtualaddr;
1443 wlan_adapter *adapter = priv->adapter;
1445 lbs_deb_enter(LBS_DEB_CMD);
1447 /* Allocate and initialize cmdCtrlNode */
1448 ulbufsize = sizeof(struct cmd_ctrl_node) * MRVDRV_NUM_OF_CMD_BUFFER;
1450 if (!(tempcmd_array = kzalloc(ulbufsize, GFP_KERNEL))) {
1452 "ALLOC_CMD_BUF: failed to allocate tempcmd_array\n");
1456 adapter->cmd_array = tempcmd_array;
1458 /* Allocate and initialize command buffers */
1459 ulbufsize = MRVDRV_SIZE_OF_CMD_BUFFER;
1460 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1461 if (!(ptempvirtualaddr = kzalloc(ulbufsize, GFP_KERNEL))) {
1463 "ALLOC_CMD_BUF: ptempvirtualaddr: out of memory\n");
1468 /* Update command buffer virtual */
1469 tempcmd_array[i].bufvirtualaddr = ptempvirtualaddr;
1472 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1473 init_waitqueue_head(&tempcmd_array[i].cmdwait_q);
1474 libertas_cleanup_and_insert_cmd(priv, &tempcmd_array[i]);
1480 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1485 * @brief This function frees the command buffer.
1487 * @param priv A pointer to wlan_private structure
1490 int libertas_free_cmd_buffer(wlan_private * priv)
1492 u32 ulbufsize; /* Someone needs to die for this. Slowly and painfully */
1494 struct cmd_ctrl_node *tempcmd_array;
1495 wlan_adapter *adapter = priv->adapter;
1497 lbs_deb_enter(LBS_DEB_CMD);
1499 /* need to check if cmd array is allocated or not */
1500 if (adapter->cmd_array == NULL) {
1501 lbs_deb_cmd("FREE_CMD_BUF: cmd_array is Null\n");
1505 tempcmd_array = adapter->cmd_array;
1507 /* Release shared memory buffers */
1508 ulbufsize = MRVDRV_SIZE_OF_CMD_BUFFER;
1509 for (i = 0; i < MRVDRV_NUM_OF_CMD_BUFFER; i++) {
1510 if (tempcmd_array[i].bufvirtualaddr) {
1511 lbs_deb_cmd("Free all the array\n");
1512 kfree(tempcmd_array[i].bufvirtualaddr);
1513 tempcmd_array[i].bufvirtualaddr = NULL;
1517 /* Release cmd_ctrl_node */
1518 if (adapter->cmd_array) {
1519 lbs_deb_cmd("Free cmd_array\n");
1520 kfree(adapter->cmd_array);
1521 adapter->cmd_array = NULL;
1525 lbs_deb_leave(LBS_DEB_CMD);
1530 * @brief This function gets a free command node if available in
1531 * command free queue.
1533 * @param priv A pointer to wlan_private structure
1534 * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL
1536 struct cmd_ctrl_node *libertas_get_free_cmd_ctrl_node(wlan_private * priv)
1538 struct cmd_ctrl_node *tempnode;
1539 wlan_adapter *adapter = priv->adapter;
1540 unsigned long flags;
1545 spin_lock_irqsave(&adapter->driver_lock, flags);
1547 if (!list_empty(&adapter->cmdfreeq)) {
1548 tempnode = (struct cmd_ctrl_node *)adapter->cmdfreeq.next;
1549 list_del((struct list_head *)tempnode);
1551 lbs_deb_cmd("GET_CMD_NODE: cmd_ctrl_node is not available\n");
1555 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1559 lbs_pr_debug(3, "GET_CMD_NODE: cmdCtrlNode available\n");
1560 lbs_pr_debug(3, "GET_CMD_NODE: cmdCtrlNode Address = %p\n",
1563 cleanup_cmdnode(tempnode);
1570 * @brief This function cleans command node.
1572 * @param ptempnode A pointer to cmdCtrlNode structure
1575 static void cleanup_cmdnode(struct cmd_ctrl_node *ptempnode)
1579 ptempnode->cmdwaitqwoken = 1;
1580 wake_up_interruptible(&ptempnode->cmdwait_q);
1581 ptempnode->status = 0;
1582 ptempnode->cmd_oid = (u32) 0;
1583 ptempnode->wait_option = 0;
1584 ptempnode->pdata_buf = NULL;
1586 if (ptempnode->bufvirtualaddr != NULL)
1587 memset(ptempnode->bufvirtualaddr, 0, MRVDRV_SIZE_OF_CMD_BUFFER);
1592 * @brief This function initializes the command node.
1594 * @param priv A pointer to wlan_private structure
1595 * @param ptempnode A pointer to cmd_ctrl_node structure
1596 * @param cmd_oid cmd oid: treated as sub command
1597 * @param wait_option wait option: wait response or not
1598 * @param pdata_buf A pointer to informaion buffer
1601 void libertas_set_cmd_ctrl_node(wlan_private * priv,
1602 struct cmd_ctrl_node *ptempnode,
1603 u32 cmd_oid, u16 wait_option, void *pdata_buf)
1605 lbs_deb_enter(LBS_DEB_CMD);
1610 ptempnode->cmd_oid = cmd_oid;
1611 ptempnode->wait_option = wait_option;
1612 ptempnode->pdata_buf = pdata_buf;
1614 lbs_deb_leave(LBS_DEB_CMD);
1618 * @brief This function executes next command in command
1619 * pending queue. It will put fimware back to PS mode
1622 * @param priv A pointer to wlan_private structure
1625 int libertas_execute_next_command(wlan_private * priv)
1627 wlan_adapter *adapter = priv->adapter;
1628 struct cmd_ctrl_node *cmdnode = NULL;
1629 struct cmd_ds_command *cmdptr;
1630 unsigned long flags;
1633 lbs_deb_enter(LBS_DEB_CMD);
1635 spin_lock_irqsave(&adapter->driver_lock, flags);
1637 if (adapter->cur_cmd) {
1638 lbs_pr_alert( "EXEC_NEXT_CMD: there is command in processing!\n");
1639 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1644 if (!list_empty(&adapter->cmdpendingq)) {
1645 cmdnode = (struct cmd_ctrl_node *)
1646 adapter->cmdpendingq.next;
1649 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1653 "EXEC_NEXT_CMD: Got next command from cmdpendingq\n");
1654 cmdptr = (struct cmd_ds_command *)cmdnode->bufvirtualaddr;
1656 if (is_command_allowed_in_ps(cmdptr->command)) {
1657 if ((adapter->psstate == PS_STATE_SLEEP) ||
1658 (adapter->psstate == PS_STATE_PRE_SLEEP)) {
1660 "EXEC_NEXT_CMD: Cannot send cmd 0x%x in psstate %d\n",
1661 le16_to_cpu(cmdptr->command),
1666 lbs_deb_cmd("EXEC_NEXT_CMD: OK to send command "
1667 "0x%x in psstate %d\n",
1668 le16_to_cpu(cmdptr->command),
1670 } else if (adapter->psstate != PS_STATE_FULL_POWER) {
1672 * 1. Non-PS command:
1673 * Queue it. set needtowakeup to TRUE if current state
1674 * is SLEEP, otherwise call libertas_ps_wakeup to send Exit_PS.
1675 * 2. PS command but not Exit_PS:
1677 * 3. PS command Exit_PS:
1678 * Set needtowakeup to TRUE if current state is SLEEP,
1679 * otherwise send this command down to firmware
1682 if (cmdptr->command !=
1683 cpu_to_le16(cmd_802_11_ps_mode)) {
1684 /* Prepare to send Exit PS,
1685 * this non PS command will be sent later */
1686 if ((adapter->psstate == PS_STATE_SLEEP)
1687 || (adapter->psstate == PS_STATE_PRE_SLEEP)
1689 /* w/ new scheme, it will not reach here.
1690 since it is blocked in main_thread. */
1691 adapter->needtowakeup = 1;
1693 libertas_ps_wakeup(priv, 0);
1699 * PS command. Ignore it if it is not Exit_PS.
1700 * otherwise send it down immediately.
1702 struct cmd_ds_802_11_ps_mode *psm =
1703 &cmdptr->params.psmode;
1706 "EXEC_NEXT_CMD: PS cmd- action=0x%x\n",
1709 cpu_to_le16(cmd_subcmd_exit_ps)) {
1711 "EXEC_NEXT_CMD: Ignore Enter PS cmd\n");
1712 list_del((struct list_head *)cmdnode);
1713 libertas_cleanup_and_insert_cmd(priv, cmdnode);
1719 if ((adapter->psstate == PS_STATE_SLEEP) ||
1720 (adapter->psstate == PS_STATE_PRE_SLEEP)) {
1722 "EXEC_NEXT_CMD: Ignore ExitPS cmd in sleep\n");
1723 list_del((struct list_head *)cmdnode);
1724 libertas_cleanup_and_insert_cmd(priv, cmdnode);
1725 adapter->needtowakeup = 1;
1732 "EXEC_NEXT_CMD: Sending Exit_PS down...\n");
1735 list_del((struct list_head *)cmdnode);
1736 lbs_deb_cmd("EXEC_NEXT_CMD: Sending 0x%04X command\n",
1737 le16_to_cpu(cmdptr->command));
1738 DownloadcommandToStation(priv, cmdnode);
1741 * check if in power save mode, if yes, put the device back
1744 if ((adapter->psmode != wlan802_11powermodecam) &&
1745 (adapter->psstate == PS_STATE_FULL_POWER) &&
1746 (adapter->connect_status == libertas_connected)) {
1747 if (adapter->secinfo.WPAenabled ||
1748 adapter->secinfo.WPA2enabled) {
1749 /* check for valid WPA group keys */
1750 if (adapter->wpa_mcast_key.len ||
1751 adapter->wpa_unicast_key.len) {
1753 "EXEC_NEXT_CMD: WPA enabled and GTK_SET"
1754 " go back to PS_SLEEP");
1755 libertas_ps_sleep(priv, 0);
1759 "EXEC_NEXT_CMD: command PendQ is empty,"
1760 " go back to PS_SLEEP");
1761 libertas_ps_sleep(priv, 0);
1768 lbs_deb_leave(LBS_DEB_CMD);
1772 void libertas_send_iwevcustom_event(wlan_private * priv, s8 * str)
1774 union iwreq_data iwrq;
1777 lbs_deb_enter(LBS_DEB_CMD);
1779 memset(&iwrq, 0, sizeof(union iwreq_data));
1780 memset(buf, 0, sizeof(buf));
1782 snprintf(buf, sizeof(buf) - 1, "%s", str);
1784 iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN;
1786 /* Send Event to upper layer */
1787 lbs_deb_cmd("Event Indication string = %s\n", (char *)buf);
1788 lbs_deb_cmd("Event Indication String length = %d\n", iwrq.data.length);
1790 lbs_deb_cmd("Sending wireless event IWEVCUSTOM for %s\n", str);
1791 wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf);
1793 lbs_deb_leave(LBS_DEB_CMD);
1796 static int sendconfirmsleep(wlan_private * priv, u8 * cmdptr, u16 size)
1798 unsigned long flags;
1799 wlan_adapter *adapter = priv->adapter;
1802 lbs_deb_enter(LBS_DEB_CMD);
1804 lbs_deb_cmd("SEND_SLEEPC_CMD: Before download, size of cmd = %d\n",
1807 lbs_dbg_hex("SEND_SLEEPC_CMD: Sleep confirm command", cmdptr, size);
1809 ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size);
1810 priv->dnld_sent = DNLD_RES_RECEIVED;
1812 spin_lock_irqsave(&adapter->driver_lock, flags);
1813 if (adapter->intcounter || adapter->currenttxskb)
1814 lbs_deb_cmd("SEND_SLEEPC_CMD: intcounter=%d currenttxskb=%p\n",
1815 adapter->intcounter, adapter->currenttxskb);
1816 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1820 "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n");
1822 spin_lock_irqsave(&adapter->driver_lock, flags);
1823 if (!adapter->intcounter) {
1824 adapter->psstate = PS_STATE_SLEEP;
1826 lbs_deb_cmd("SEND_SLEEPC_CMD: After sent,IntC=%d\n",
1827 adapter->intcounter);
1829 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1831 lbs_deb_cmd("SEND_SLEEPC_CMD: Sent Confirm Sleep command\n");
1835 lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret);
1839 void libertas_ps_sleep(wlan_private * priv, int wait_option)
1841 lbs_deb_enter(LBS_DEB_CMD);
1844 * PS is currently supported only in Infrastructure mode
1845 * Remove this check if it is to be supported in IBSS mode also
1848 libertas_prepare_and_send_command(priv, cmd_802_11_ps_mode,
1849 cmd_subcmd_enter_ps, wait_option, 0, NULL);
1851 lbs_deb_leave(LBS_DEB_CMD);
1855 * @brief This function sends Eixt_PS command to firmware.
1857 * @param priv A pointer to wlan_private structure
1858 * @param wait_option wait response or not
1861 void libertas_ps_wakeup(wlan_private * priv, int wait_option)
1865 lbs_deb_enter(LBS_DEB_CMD);
1867 Localpsmode = cpu_to_le32(wlan802_11powermodecam);
1869 lbs_deb_cmd("Exit_PS: Localpsmode = %d\n", wlan802_11powermodecam);
1871 libertas_prepare_and_send_command(priv, cmd_802_11_ps_mode,
1873 wait_option, 0, &Localpsmode);
1875 lbs_deb_leave(LBS_DEB_CMD);
1879 * @brief This function checks condition and prepares to
1880 * send sleep confirm command to firmware if ok.
1882 * @param priv A pointer to wlan_private structure
1883 * @param psmode Power Saving mode
1886 void libertas_ps_confirm_sleep(wlan_private * priv, u16 psmode)
1888 unsigned long flags =0;
1889 wlan_adapter *adapter = priv->adapter;
1892 lbs_deb_enter(LBS_DEB_CMD);
1894 if (priv->dnld_sent) {
1899 spin_lock_irqsave(&adapter->driver_lock, flags);
1900 if (adapter->cur_cmd) {
1904 if (adapter->intcounter > 0) {
1906 lbs_deb_cmd("I%d", adapter->intcounter);
1908 spin_unlock_irqrestore(&adapter->driver_lock, flags);
1911 lbs_deb_cmd("Sending libertas_ps_confirm_sleep\n");
1912 sendconfirmsleep(priv, (u8 *) & adapter->libertas_ps_confirm_sleep,
1913 sizeof(struct PS_CMD_ConfirmSleep));
1915 lbs_deb_cmd("Sleep Confirm has been delayed\n");
1918 lbs_deb_leave(LBS_DEB_CMD);