| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Marvell Wireless LAN device driver: station command response handling | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2014-06-19 21:38:57 -07:00
										 |  |  |  * Copyright (C) 2011-2014, Marvell International Ltd. | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This software file (the "File") is distributed by Marvell International | 
					
						
							|  |  |  |  * Ltd. under the terms of the GNU General Public License Version 2, June 1991 | 
					
						
							|  |  |  |  * (the "License").  You may use, redistribute and/or modify this File in | 
					
						
							|  |  |  |  * accordance with the terms and conditions of the License, a copy of which | 
					
						
							|  |  |  |  * is available by writing to the Free Software Foundation, Inc., | 
					
						
							|  |  |  |  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the | 
					
						
							|  |  |  |  * worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE | 
					
						
							|  |  |  |  * IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE | 
					
						
							|  |  |  |  * ARE EXPRESSLY DISCLAIMED.  The License provides additional details about | 
					
						
							|  |  |  |  * this warranty disclaimer. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "decl.h"
 | 
					
						
							|  |  |  | #include "ioctl.h"
 | 
					
						
							|  |  |  | #include "util.h"
 | 
					
						
							|  |  |  | #include "fw.h"
 | 
					
						
							|  |  |  | #include "main.h"
 | 
					
						
							|  |  |  | #include "wmm.h"
 | 
					
						
							|  |  |  | #include "11n.h"
 | 
					
						
							| 
									
										
										
										
											2013-02-15 21:44:30 -08:00
										 |  |  | #include "11ac.h"
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response error case. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * For scan response error, the function cancels all the pending | 
					
						
							|  |  |  |  * scan commands and generates an event to inform the applications | 
					
						
							|  |  |  |  * of the scan completion. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * For Power Save command failure, we do not retry enter PS | 
					
						
							|  |  |  |  * command in case of Ad-hoc mode. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * For all other response errors, the current command buffer is freed | 
					
						
							|  |  |  |  * and returned to the free command queue. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static void | 
					
						
							|  |  |  | mwifiex_process_cmdresp_error(struct mwifiex_private *priv, | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 			      struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-03 20:11:46 -07:00
										 |  |  | 	struct cmd_ctrl_node *cmd_node = NULL, *tmp_node; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	struct mwifiex_adapter *adapter = priv->adapter; | 
					
						
							| 
									
										
										
										
											2011-03-30 18:12:44 -07:00
										 |  |  | 	struct host_cmd_ds_802_11_ps_mode_enh *pm; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	unsigned long flags; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_err(adapter->dev, "CMD_RESP: cmd %#x error, result=%#x\n", | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 		resp->command, resp->result); | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->curr_cmd->wait_q_enabled) | 
					
						
							|  |  |  | 		adapter->cmd_wait_q.status = -1; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	switch (le16_to_cpu(resp->command)) { | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_PS_MODE_ENH: | 
					
						
							| 
									
										
										
										
											2011-03-30 18:12:44 -07:00
										 |  |  | 		pm = &resp->params.psmode_enh; | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 		dev_err(adapter->dev, | 
					
						
							|  |  |  | 			"PS_MODE_ENH cmd failed: result=0x%x action=0x%X\n", | 
					
						
							|  |  |  | 			resp->result, le16_to_cpu(pm->action)); | 
					
						
							| 
									
										
										
										
											2011-03-30 18:12:44 -07:00
										 |  |  | 		/* We do not re-try enter-ps command in ad-hoc mode. */ | 
					
						
							|  |  |  | 		if (le16_to_cpu(pm->action) == EN_AUTO_PS && | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 		    (le16_to_cpu(pm->params.ps_bitmap) & BITMAP_STA_PS) && | 
					
						
							|  |  |  | 		    priv->bss_mode == NL80211_IFTYPE_ADHOC) | 
					
						
							| 
									
										
										
										
											2011-03-30 18:12:44 -07:00
										 |  |  | 			adapter->ps_mode = MWIFIEX_802_11_POWER_MODE_CAM; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_SCAN: | 
					
						
							| 
									
										
										
										
											2014-02-11 18:39:56 -08:00
										 |  |  | 	case HostCmd_CMD_802_11_SCAN_EXT: | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		/* Cancel all pending scan command */ | 
					
						
							|  |  |  | 		spin_lock_irqsave(&adapter->scan_pending_q_lock, flags); | 
					
						
							|  |  |  | 		list_for_each_entry_safe(cmd_node, tmp_node, | 
					
						
							|  |  |  | 					 &adapter->scan_pending_q, list) { | 
					
						
							|  |  |  | 			list_del(&cmd_node->list); | 
					
						
							|  |  |  | 			spin_unlock_irqrestore(&adapter->scan_pending_q_lock, | 
					
						
							|  |  |  | 					       flags); | 
					
						
							|  |  |  | 			mwifiex_insert_cmd_to_free_q(adapter, cmd_node); | 
					
						
							|  |  |  | 			spin_lock_irqsave(&adapter->scan_pending_q_lock, flags); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		spin_unlock_irqrestore(&adapter->scan_pending_q_lock, flags); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags); | 
					
						
							|  |  |  | 		adapter->scan_processing = false; | 
					
						
							|  |  |  | 		spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	case HostCmd_CMD_MAC_CONTROL: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Handling errors here */ | 
					
						
							| 
									
										
										
										
											2013-04-01 12:44:46 -07:00
										 |  |  | 	mwifiex_recycle_cmd_node(adapter, adapter->curr_cmd); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	spin_lock_irqsave(&adapter->mwifiex_cmd_lock, flags); | 
					
						
							|  |  |  | 	adapter->curr_cmd = NULL; | 
					
						
							|  |  |  | 	spin_unlock_irqrestore(&adapter->mwifiex_cmd_lock, flags); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get RSSI info. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes changing the header fields into CPU format | 
					
						
							|  |  |  |  * and saving the following parameters in driver - | 
					
						
							|  |  |  |  *      - Last data and beacon RSSI value | 
					
						
							|  |  |  |  *      - Average data and beacon RSSI value | 
					
						
							|  |  |  |  *      - Last data and beacon NF value | 
					
						
							|  |  |  |  *      - Average data and beacon NF value | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The parameters are send to the application as well, along with | 
					
						
							|  |  |  |  * calculated SNR values. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_rssi_info(struct mwifiex_private *priv, | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:49 -07:00
										 |  |  | 					struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_rssi_info_rsp *rssi_info_rsp = | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 						&resp->params.rssi_info_rsp; | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 	struct mwifiex_ds_misc_subsc_evt *subsc_evt = | 
					
						
							|  |  |  | 						&priv->async_subsc_evt_storage; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	priv->data_rssi_last = le16_to_cpu(rssi_info_rsp->data_rssi_last); | 
					
						
							|  |  |  | 	priv->data_nf_last = le16_to_cpu(rssi_info_rsp->data_nf_last); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->data_rssi_avg = le16_to_cpu(rssi_info_rsp->data_rssi_avg); | 
					
						
							|  |  |  | 	priv->data_nf_avg = le16_to_cpu(rssi_info_rsp->data_nf_avg); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->bcn_rssi_last = le16_to_cpu(rssi_info_rsp->bcn_rssi_last); | 
					
						
							|  |  |  | 	priv->bcn_nf_last = le16_to_cpu(rssi_info_rsp->bcn_nf_last); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->bcn_rssi_avg = le16_to_cpu(rssi_info_rsp->bcn_rssi_avg); | 
					
						
							|  |  |  | 	priv->bcn_nf_avg = le16_to_cpu(rssi_info_rsp->bcn_nf_avg); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 	if (priv->subsc_evt_rssi_state == EVENT_HANDLED) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 	memset(subsc_evt, 0x00, sizeof(struct mwifiex_ds_misc_subsc_evt)); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 	/* Resubscribe low and high rssi events with new thresholds */ | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 	subsc_evt->events = BITMASK_BCN_RSSI_LOW | BITMASK_BCN_RSSI_HIGH; | 
					
						
							|  |  |  | 	subsc_evt->action = HostCmd_ACT_BITWISE_SET; | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 	if (priv->subsc_evt_rssi_state == RSSI_LOW_RECVD) { | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 		subsc_evt->bcn_l_rssi_cfg.abs_value = abs(priv->bcn_rssi_avg - | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 				priv->cqm_rssi_hyst); | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 		subsc_evt->bcn_h_rssi_cfg.abs_value = abs(priv->cqm_rssi_thold); | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 	} else if (priv->subsc_evt_rssi_state == RSSI_HIGH_RECVD) { | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 		subsc_evt->bcn_l_rssi_cfg.abs_value = abs(priv->cqm_rssi_thold); | 
					
						
							|  |  |  | 		subsc_evt->bcn_h_rssi_cfg.abs_value = abs(priv->bcn_rssi_avg + | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 				priv->cqm_rssi_hyst); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2012-08-30 18:20:55 -07:00
										 |  |  | 	subsc_evt->bcn_l_rssi_cfg.evt_freq = 1; | 
					
						
							|  |  |  | 	subsc_evt->bcn_h_rssi_cfg.evt_freq = 1; | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	priv->subsc_evt_rssi_state = EVENT_HANDLED; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-27 19:35:12 -08:00
										 |  |  | 	mwifiex_send_cmd(priv, HostCmd_CMD_802_11_SUBSCRIBE_EVENT, | 
					
						
							|  |  |  | 			 0, 0, subsc_evt, false); | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set/get SNMP | 
					
						
							|  |  |  |  * MIB parameters. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes changing the header fields into CPU format | 
					
						
							|  |  |  |  * and saving the parameter in driver. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The following parameters are supported - | 
					
						
							|  |  |  |  *      - Fragmentation threshold | 
					
						
							|  |  |  |  *      - RTS threshold | 
					
						
							|  |  |  |  *      - Short retry limit | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_snmp_mib(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 				       struct host_cmd_ds_command *resp, | 
					
						
							| 
									
										
										
										
											2011-06-24 16:33:35 +03:00
										 |  |  | 				       u32 *data_buf) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_snmp_mib *smib = &resp->params.smib; | 
					
						
							|  |  |  | 	u16 oid = le16_to_cpu(smib->oid); | 
					
						
							|  |  |  | 	u16 query_type = le16_to_cpu(smib->query_type); | 
					
						
							| 
									
										
										
										
											2011-06-24 16:33:35 +03:00
										 |  |  | 	u32 ul_temp; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	dev_dbg(priv->adapter->dev, "info: SNMP_RESP: oid value = %#x," | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 		" query_type = %#x, buf size = %#x\n", | 
					
						
							|  |  |  | 		oid, query_type, le16_to_cpu(smib->buf_size)); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	if (query_type == HostCmd_ACT_GEN_GET) { | 
					
						
							| 
									
										
										
										
											2011-06-24 16:33:35 +03:00
										 |  |  | 		ul_temp = le16_to_cpu(*((__le16 *) (smib->value))); | 
					
						
							|  |  |  | 		if (data_buf) | 
					
						
							|  |  |  | 			*data_buf = ul_temp; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		switch (oid) { | 
					
						
							|  |  |  | 		case FRAG_THRESH_I: | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							| 
									
										
										
										
											2011-06-24 16:33:35 +03:00
										 |  |  | 				"info: SNMP_RESP: FragThsd =%u\n", ul_temp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case RTS_THRESH_I: | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							| 
									
										
										
										
											2011-06-24 16:33:35 +03:00
										 |  |  | 				"info: SNMP_RESP: RTSThsd =%u\n", ul_temp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 		case SHORT_RETRY_LIM_I: | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							| 
									
										
										
										
											2011-06-24 16:33:35 +03:00
										 |  |  | 				"info: SNMP_RESP: TxRetryCount=%u\n", ul_temp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2012-02-02 20:48:58 -08:00
										 |  |  | 		case DTIM_PERIOD_I: | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 				"info: SNMP_RESP: DTIM period=%u\n", ul_temp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		default: | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get log request | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes changing the header fields into CPU format | 
					
						
							|  |  |  |  * and sending the received parameters to application. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_get_log(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 			       struct host_cmd_ds_command *resp, | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | 			       struct mwifiex_ds_get_stats *stats) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_get_log *get_log = | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		&resp->params.get_log; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | 	if (stats) { | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		stats->mcast_tx_frame = le32_to_cpu(get_log->mcast_tx_frame); | 
					
						
							|  |  |  | 		stats->failed = le32_to_cpu(get_log->failed); | 
					
						
							|  |  |  | 		stats->retry = le32_to_cpu(get_log->retry); | 
					
						
							|  |  |  | 		stats->multi_retry = le32_to_cpu(get_log->multi_retry); | 
					
						
							|  |  |  | 		stats->frame_dup = le32_to_cpu(get_log->frame_dup); | 
					
						
							|  |  |  | 		stats->rts_success = le32_to_cpu(get_log->rts_success); | 
					
						
							|  |  |  | 		stats->rts_failure = le32_to_cpu(get_log->rts_failure); | 
					
						
							|  |  |  | 		stats->ack_failure = le32_to_cpu(get_log->ack_failure); | 
					
						
							|  |  |  | 		stats->rx_frag = le32_to_cpu(get_log->rx_frag); | 
					
						
							|  |  |  | 		stats->mcast_rx_frame = le32_to_cpu(get_log->mcast_rx_frame); | 
					
						
							|  |  |  | 		stats->fcs_error = le32_to_cpu(get_log->fcs_error); | 
					
						
							|  |  |  | 		stats->tx_frame = le32_to_cpu(get_log->tx_frame); | 
					
						
							|  |  |  | 		stats->wep_icv_error[0] = | 
					
						
							|  |  |  | 			le32_to_cpu(get_log->wep_icv_err_cnt[0]); | 
					
						
							|  |  |  | 		stats->wep_icv_error[1] = | 
					
						
							|  |  |  | 			le32_to_cpu(get_log->wep_icv_err_cnt[1]); | 
					
						
							|  |  |  | 		stats->wep_icv_error[2] = | 
					
						
							|  |  |  | 			le32_to_cpu(get_log->wep_icv_err_cnt[2]); | 
					
						
							|  |  |  | 		stats->wep_icv_error[3] = | 
					
						
							|  |  |  | 			le32_to_cpu(get_log->wep_icv_err_cnt[3]); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set/get Tx rate | 
					
						
							|  |  |  |  * configurations. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes changing the header fields into CPU format | 
					
						
							|  |  |  |  * and saving the following parameters in driver - | 
					
						
							|  |  |  |  *      - DSSS rate bitmap | 
					
						
							|  |  |  |  *      - OFDM rate bitmap | 
					
						
							|  |  |  |  *      - HT MCS rate bitmaps | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Based on the new rate bitmaps, the function re-evaluates if | 
					
						
							|  |  |  |  * auto data rate has been activated. If not, it sends another | 
					
						
							| 
									
										
										
										
											2012-07-13 20:09:31 -07:00
										 |  |  |  * query to the firmware to get the current Tx data rate. | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_tx_rate_cfg(struct mwifiex_private *priv, | 
					
						
							| 
									
										
										
										
											2012-07-13 20:09:31 -07:00
										 |  |  | 				   struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_tx_rate_cfg *rate_cfg = &resp->params.tx_rate_cfg; | 
					
						
							|  |  |  | 	struct mwifiex_rate_scope *rate_scope; | 
					
						
							| 
									
										
										
										
											2011-05-03 20:11:46 -07:00
										 |  |  | 	struct mwifiex_ie_types_header *head; | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:45 -07:00
										 |  |  | 	u16 tlv, tlv_buf_len, tlv_buf_left; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	u8 *tlv_buf; | 
					
						
							|  |  |  | 	u32 i; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:45 -07:00
										 |  |  | 	tlv_buf = ((u8 *)rate_cfg) + sizeof(struct host_cmd_ds_tx_rate_cfg); | 
					
						
							|  |  |  | 	tlv_buf_left = le16_to_cpu(resp->size) - S_DS_GEN - sizeof(*rate_cfg); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:45 -07:00
										 |  |  | 	while (tlv_buf_left >= sizeof(*head)) { | 
					
						
							|  |  |  | 		head = (struct mwifiex_ie_types_header *)tlv_buf; | 
					
						
							|  |  |  | 		tlv = le16_to_cpu(head->type); | 
					
						
							|  |  |  | 		tlv_buf_len = le16_to_cpu(head->len); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (tlv_buf_left < (sizeof(*head) + tlv_buf_len)) | 
					
						
							|  |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		switch (tlv) { | 
					
						
							|  |  |  | 		case TLV_TYPE_RATE_SCOPE: | 
					
						
							|  |  |  | 			rate_scope = (struct mwifiex_rate_scope *) tlv_buf; | 
					
						
							|  |  |  | 			priv->bitmap_rates[0] = | 
					
						
							|  |  |  | 				le16_to_cpu(rate_scope->hr_dsss_rate_bitmap); | 
					
						
							|  |  |  | 			priv->bitmap_rates[1] = | 
					
						
							|  |  |  | 				le16_to_cpu(rate_scope->ofdm_rate_bitmap); | 
					
						
							|  |  |  | 			for (i = 0; | 
					
						
							|  |  |  | 			     i < | 
					
						
							|  |  |  | 			     sizeof(rate_scope->ht_mcs_rate_bitmap) / | 
					
						
							|  |  |  | 			     sizeof(u16); i++) | 
					
						
							|  |  |  | 				priv->bitmap_rates[2 + i] = | 
					
						
							|  |  |  | 					le16_to_cpu(rate_scope-> | 
					
						
							|  |  |  | 						    ht_mcs_rate_bitmap[i]); | 
					
						
							| 
									
										
										
										
											2014-03-07 19:41:27 -08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			if (priv->adapter->fw_api_ver == MWIFIEX_FW_V15) { | 
					
						
							|  |  |  | 				for (i = 0; i < ARRAY_SIZE(rate_scope-> | 
					
						
							|  |  |  | 							   vht_mcs_rate_bitmap); | 
					
						
							|  |  |  | 				     i++) | 
					
						
							|  |  |  | 					priv->bitmap_rates[10 + i] = | 
					
						
							|  |  |  | 					    le16_to_cpu(rate_scope-> | 
					
						
							|  |  |  | 							vht_mcs_rate_bitmap[i]); | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			break; | 
					
						
							|  |  |  | 			/* Add RATE_DROP tlv here */ | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:45 -07:00
										 |  |  | 		tlv_buf += (sizeof(*head) + tlv_buf_len); | 
					
						
							|  |  |  | 		tlv_buf_left -= (sizeof(*head) + tlv_buf_len); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->is_data_rate_auto = mwifiex_is_rate_auto(priv); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (priv->is_data_rate_auto) | 
					
						
							|  |  |  | 		priv->data_rate = 0; | 
					
						
							|  |  |  | 	else | 
					
						
							| 
									
										
										
										
											2014-02-27 19:35:12 -08:00
										 |  |  | 		return mwifiex_send_cmd(priv, HostCmd_CMD_802_11_TX_RATE_QUERY, | 
					
						
							|  |  |  | 					HostCmd_ACT_GEN_GET, 0, NULL, false); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-13 20:09:31 -07:00
										 |  |  | 	return 0; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get Tx power level. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes saving the maximum and minimum Tx power levels | 
					
						
							|  |  |  |  * in driver, as well as sending the values to user. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_get_power_level(struct mwifiex_private *priv, void *data_buf) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-03 20:11:46 -07:00
										 |  |  | 	int length, max_power = -1, min_power = -1; | 
					
						
							|  |  |  | 	struct mwifiex_types_power_group *pg_tlv_hdr; | 
					
						
							|  |  |  | 	struct mwifiex_power_group *pg; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:12 -07:00
										 |  |  | 	if (!data_buf) | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:47 -07:00
										 |  |  | 	pg_tlv_hdr = (struct mwifiex_types_power_group *)((u8 *)data_buf); | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:12 -07:00
										 |  |  | 	pg = (struct mwifiex_power_group *) | 
					
						
							|  |  |  | 		((u8 *) pg_tlv_hdr + sizeof(struct mwifiex_types_power_group)); | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:43 -07:00
										 |  |  | 	length = le16_to_cpu(pg_tlv_hdr->length); | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:44 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* At least one structure required to update power */ | 
					
						
							|  |  |  | 	if (length < sizeof(struct mwifiex_power_group)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	max_power = pg->power_max; | 
					
						
							|  |  |  | 	min_power = pg->power_min; | 
					
						
							|  |  |  | 	length -= sizeof(struct mwifiex_power_group); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	while (length >= sizeof(struct mwifiex_power_group)) { | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:12 -07:00
										 |  |  | 		pg++; | 
					
						
							|  |  |  | 		if (max_power < pg->power_max) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			max_power = pg->power_max; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:12 -07:00
										 |  |  | 		if (min_power > pg->power_min) | 
					
						
							|  |  |  | 			min_power = pg->power_min; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:12 -07:00
										 |  |  | 		length -= sizeof(struct mwifiex_power_group); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:44 -07:00
										 |  |  | 	priv->min_tx_power_level = (u8) min_power; | 
					
						
							|  |  |  | 	priv->max_tx_power_level = (u8) max_power; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set/get Tx power | 
					
						
							|  |  |  |  * configurations. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes changing the header fields into CPU format | 
					
						
							|  |  |  |  * and saving the current Tx power level in driver. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_tx_power_cfg(struct mwifiex_private *priv, | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | 				    struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct mwifiex_adapter *adapter = priv->adapter; | 
					
						
							|  |  |  | 	struct host_cmd_ds_txpwr_cfg *txp_cfg = &resp->params.txp_cfg; | 
					
						
							| 
									
										
										
										
											2011-05-03 20:11:46 -07:00
										 |  |  | 	struct mwifiex_types_power_group *pg_tlv_hdr; | 
					
						
							|  |  |  | 	struct mwifiex_power_group *pg; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	u16 action = le16_to_cpu(txp_cfg->action); | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:47 -07:00
										 |  |  | 	u16 tlv_buf_left; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:47 -07:00
										 |  |  | 	pg_tlv_hdr = (struct mwifiex_types_power_group *) | 
					
						
							|  |  |  | 		((u8 *)txp_cfg + | 
					
						
							|  |  |  | 		 sizeof(struct host_cmd_ds_txpwr_cfg)); | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:47 -07:00
										 |  |  | 	pg = (struct mwifiex_power_group *) | 
					
						
							|  |  |  | 		((u8 *)pg_tlv_hdr + | 
					
						
							|  |  |  | 		 sizeof(struct mwifiex_types_power_group)); | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:47 -07:00
										 |  |  | 	tlv_buf_left = le16_to_cpu(resp->size) - S_DS_GEN - sizeof(*txp_cfg); | 
					
						
							|  |  |  | 	if (tlv_buf_left < | 
					
						
							|  |  |  | 			le16_to_cpu(pg_tlv_hdr->length) + sizeof(*pg_tlv_hdr)) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (action) { | 
					
						
							|  |  |  | 	case HostCmd_ACT_GEN_GET: | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		if (adapter->hw_status == MWIFIEX_HW_STATUS_INITIALIZING) | 
					
						
							| 
									
										
										
										
											2013-10-22 15:24:47 -07:00
										 |  |  | 			mwifiex_get_power_level(priv, pg_tlv_hdr); | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		priv->tx_power_level = (u16) pg->power_min; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	case HostCmd_ACT_GEN_SET: | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		if (!le32_to_cpu(txp_cfg->mode)) | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (pg->power_max == pg->power_min) | 
					
						
							|  |  |  | 			priv->tx_power_level = (u16) pg->power_min; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		dev_err(adapter->dev, "CMD_RESP: unknown cmd action %d\n", | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 			action); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	dev_dbg(adapter->dev, | 
					
						
							|  |  |  | 		"info: Current TxPower Level = %d, Max Power=%d, Min Power=%d\n", | 
					
						
							|  |  |  | 	       priv->tx_power_level, priv->max_tx_power_level, | 
					
						
							|  |  |  | 	       priv->min_tx_power_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-27 19:57:57 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get RF Tx power. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_rf_tx_power(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 				   struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_rf_tx_pwr *txp = &resp->params.txp; | 
					
						
							|  |  |  | 	u16 action = le16_to_cpu(txp->action); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	priv->tx_power_level = le16_to_cpu(txp->cur_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (action == HostCmd_ACT_GEN_GET) { | 
					
						
							|  |  |  | 		priv->max_tx_power_level = txp->max_power; | 
					
						
							|  |  |  | 		priv->min_tx_power_level = txp->min_power; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 		"Current TxPower Level=%d, Max Power=%d, Min Power=%d\n", | 
					
						
							|  |  |  | 		priv->tx_power_level, priv->max_tx_power_level, | 
					
						
							|  |  |  | 		priv->min_tx_power_level); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-07-02 19:32:33 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set rf antenna | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_rf_antenna(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 				  struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_rf_ant_mimo *ant_mimo = &resp->params.ant_mimo; | 
					
						
							|  |  |  | 	struct host_cmd_ds_rf_ant_siso *ant_siso = &resp->params.ant_siso; | 
					
						
							|  |  |  | 	struct mwifiex_adapter *adapter = priv->adapter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (adapter->hw_dev_mcs_support == HT_STREAM_2X2) | 
					
						
							|  |  |  | 		dev_dbg(adapter->dev, | 
					
						
							|  |  |  | 			"RF_ANT_RESP: Tx action = 0x%x, Tx Mode = 0x%04x" | 
					
						
							|  |  |  | 			" Rx action = 0x%x, Rx Mode = 0x%04x\n", | 
					
						
							|  |  |  | 			le16_to_cpu(ant_mimo->action_tx), | 
					
						
							|  |  |  | 			le16_to_cpu(ant_mimo->tx_ant_mode), | 
					
						
							|  |  |  | 			le16_to_cpu(ant_mimo->action_rx), | 
					
						
							|  |  |  | 			le16_to_cpu(ant_mimo->rx_ant_mode)); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		dev_dbg(adapter->dev, | 
					
						
							|  |  |  | 			"RF_ANT_RESP: action = 0x%x, Mode = 0x%04x\n", | 
					
						
							|  |  |  | 			le16_to_cpu(ant_siso->action), | 
					
						
							|  |  |  | 			le16_to_cpu(ant_siso->ant_mode)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set/get MAC address. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes saving the MAC address in driver. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_mac_address(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					  struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_mac_address *cmd_mac_addr = | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 							&resp->params.mac_addr; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memcpy(priv->curr_addr, cmd_mac_addr->mac_addr, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 		"info: set mac address: %pM\n", priv->curr_addr); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set/get MAC multicast | 
					
						
							|  |  |  |  * address. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_mac_multicast_adr(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					 struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get Tx rate query. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes changing the header fields into CPU format | 
					
						
							|  |  |  |  * and saving the Tx rate and HT information parameters in driver. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Both rate configuration and current data rate can be retrieved | 
					
						
							|  |  |  |  * with this request. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_tx_rate_query(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					    struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	priv->tx_rate = resp->params.tx_rate.tx_rate; | 
					
						
							|  |  |  | 	priv->tx_htinfo = resp->params.tx_rate.ht_info; | 
					
						
							|  |  |  | 	if (!priv->is_data_rate_auto) | 
					
						
							|  |  |  | 		priv->data_rate = | 
					
						
							| 
									
										
										
										
											2011-11-16 20:40:35 -08:00
										 |  |  | 			mwifiex_index_to_data_rate(priv, priv->tx_rate, | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 						   priv->tx_htinfo); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of a deauthenticate | 
					
						
							|  |  |  |  * command. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If the deauthenticated MAC matches the current BSS MAC, the connection | 
					
						
							|  |  |  |  * state is reset. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_deauthenticate(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					     struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct mwifiex_adapter *adapter = priv->adapter; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	adapter->dbg.num_cmd_deauth++; | 
					
						
							|  |  |  | 	if (!memcmp(resp->params.deauth.mac_addr, | 
					
						
							|  |  |  | 		    &priv->curr_bss_params.bss_descriptor.mac_address, | 
					
						
							|  |  |  | 		    sizeof(resp->params.deauth.mac_addr))) | 
					
						
							| 
									
										
										
										
											2012-10-05 20:21:43 -07:00
										 |  |  | 		mwifiex_reset_connect_state(priv, WLAN_REASON_DEAUTH_LEAVING); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of ad-hoc stop. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The function resets the connection state in driver. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_ad_hoc_stop(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					  struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2012-10-05 20:21:43 -07:00
										 |  |  | 	mwifiex_reset_connect_state(priv, WLAN_REASON_DEAUTH_LEAVING); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							| 
									
										
										
										
											2014-02-07 16:32:35 -08:00
										 |  |  |  * This function handles the command response of set/get v1 key material. | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  |  * | 
					
						
							|  |  |  |  * Handling includes updating the driver parameters to reflect the | 
					
						
							|  |  |  |  * changes. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2014-02-07 16:32:35 -08:00
										 |  |  | static int mwifiex_ret_802_11_key_material_v1(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					      struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_key_material *key = | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 						&resp->params.key_material; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (le16_to_cpu(key->action) == HostCmd_ACT_GEN_SET) { | 
					
						
							| 
									
										
										
										
											2011-04-06 16:46:56 -07:00
										 |  |  | 		if ((le16_to_cpu(key->key_param_set.key_info) & KEY_MCAST)) { | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			dev_dbg(priv->adapter->dev, "info: key: GTK is set\n"); | 
					
						
							|  |  |  | 			priv->wpa_is_gtk_set = true; | 
					
						
							|  |  |  | 			priv->scan_block = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(priv->aes_key.key_param_set.key, 0, | 
					
						
							|  |  |  | 	       sizeof(key->key_param_set.key)); | 
					
						
							|  |  |  | 	priv->aes_key.key_param_set.key_len = key->key_param_set.key_len; | 
					
						
							|  |  |  | 	memcpy(priv->aes_key.key_param_set.key, key->key_param_set.key, | 
					
						
							|  |  |  | 	       le16_to_cpu(priv->aes_key.key_param_set.key_len)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 16:32:35 -08:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of set/get v2 key material. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes updating the driver parameters to reflect the | 
					
						
							|  |  |  |  * changes. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_key_material_v2(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					      struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_key_material_v2 *key_v2; | 
					
						
							|  |  |  | 	__le16 len; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	key_v2 = &resp->params.key_material_v2; | 
					
						
							|  |  |  | 	if (le16_to_cpu(key_v2->action) == HostCmd_ACT_GEN_SET) { | 
					
						
							|  |  |  | 		if ((le16_to_cpu(key_v2->key_param_set.key_info) & KEY_MCAST)) { | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, "info: key: GTK is set\n"); | 
					
						
							|  |  |  | 			priv->wpa_is_gtk_set = true; | 
					
						
							|  |  |  | 			priv->scan_block = false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (key_v2->key_param_set.key_type != KEY_TYPE_ID_AES) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	memset(priv->aes_key_v2.key_param_set.key_params.aes.key, 0, | 
					
						
							|  |  |  | 	       WLAN_KEY_LEN_CCMP); | 
					
						
							|  |  |  | 	priv->aes_key_v2.key_param_set.key_params.aes.key_len = | 
					
						
							|  |  |  | 				key_v2->key_param_set.key_params.aes.key_len; | 
					
						
							|  |  |  | 	len = priv->aes_key_v2.key_param_set.key_params.aes.key_len; | 
					
						
							|  |  |  | 	memcpy(priv->aes_key_v2.key_param_set.key_params.aes.key, | 
					
						
							|  |  |  | 	       key_v2->key_param_set.key_params.aes.key, le16_to_cpu(len)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Wrapper function for processing response of key material command */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11_key_material(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					   struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2014-08-19 08:24:25 -04:00
										 |  |  | 	if (priv->adapter->key_api_major_ver == KEY_API_VER_MAJOR_V2) | 
					
						
							| 
									
										
										
										
											2014-02-07 16:32:35 -08:00
										 |  |  | 		return mwifiex_ret_802_11_key_material_v2(priv, resp); | 
					
						
							|  |  |  | 	else | 
					
						
							|  |  |  | 		return mwifiex_ret_802_11_key_material_v1(priv, resp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get 11d domain information. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_802_11d_domain_info(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					   struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11d_domain_info_rsp *domain_info = | 
					
						
							|  |  |  | 		&resp->params.domain_info_resp; | 
					
						
							|  |  |  | 	struct mwifiex_ietypes_domain_param_set *domain = &domain_info->domain; | 
					
						
							|  |  |  | 	u16 action = le16_to_cpu(domain_info->action); | 
					
						
							| 
									
										
										
										
											2011-05-03 20:11:46 -07:00
										 |  |  | 	u8 no_of_triplet; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 	no_of_triplet = (u8) ((le16_to_cpu(domain->header.len) | 
					
						
							|  |  |  | 				- IEEE80211_COUNTRY_STRING_LEN) | 
					
						
							|  |  |  | 			      / sizeof(struct ieee80211_country_ie_triplet)); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 	dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 		"info: 11D Domain Info Resp: no_of_triplet=%d\n", | 
					
						
							|  |  |  | 		no_of_triplet); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (no_of_triplet > MWIFIEX_MAX_TRIPLET_802_11D) { | 
					
						
							|  |  |  | 		dev_warn(priv->adapter->dev, | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 			 "11D: invalid number of triplets %d returned\n", | 
					
						
							|  |  |  | 			 no_of_triplet); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	switch (action) { | 
					
						
							|  |  |  | 	case HostCmd_ACT_GEN_SET:  /* Proc Set Action */ | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_ACT_GEN_GET: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		dev_err(priv->adapter->dev, | 
					
						
							|  |  |  | 			"11D: invalid action:%d\n", domain_info->action); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get extended version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Handling includes forming the extended version string and sending it | 
					
						
							|  |  |  |  * to application. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_ver_ext(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 			       struct host_cmd_ds_command *resp, | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | 			       struct host_cmd_ds_version_ext *version_ext) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_version_ext *ver_ext = &resp->params.verext; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | 	if (version_ext) { | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		version_ext->version_str_sel = ver_ext->version_str_sel; | 
					
						
							|  |  |  | 		memcpy(version_ext->version_str, ver_ext->version_str, | 
					
						
							|  |  |  | 		       sizeof(char) * 128); | 
					
						
							|  |  |  | 		memcpy(priv->version_str, ver_ext->version_str, 128); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-25 20:23:36 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of remain on channel. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | mwifiex_ret_remain_on_chan(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 			   struct host_cmd_ds_command *resp, | 
					
						
							|  |  |  | 			   struct host_cmd_ds_remain_on_chan *roc_cfg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_remain_on_chan *resp_cfg = &resp->params.roc_cfg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (roc_cfg) | 
					
						
							|  |  |  | 		memcpy(roc_cfg, resp_cfg, sizeof(*roc_cfg)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-25 20:23:41 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of P2P mode cfg. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int | 
					
						
							|  |  |  | mwifiex_ret_p2p_mode_cfg(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 			 struct host_cmd_ds_command *resp, | 
					
						
							|  |  |  | 			 void *data_buf) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_p2p_mode_cfg *mode_cfg = &resp->params.mode_cfg; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (data_buf) | 
					
						
							|  |  |  | 		*((u16 *)data_buf) = le16_to_cpu(mode_cfg->mode); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of register access. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The register value and offset are returned to the user. For EEPROM | 
					
						
							|  |  |  |  * access, the byte count is also returned. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_reg_access(u16 type, struct host_cmd_ds_command *resp, | 
					
						
							|  |  |  | 				  void *data_buf) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2011-05-03 20:11:46 -07:00
										 |  |  | 	struct mwifiex_ds_reg_rw *reg_rw; | 
					
						
							|  |  |  | 	struct mwifiex_ds_read_eeprom *eeprom; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 	union reg { | 
					
						
							|  |  |  | 		struct host_cmd_ds_mac_reg_access *mac; | 
					
						
							|  |  |  | 		struct host_cmd_ds_bbp_reg_access *bbp; | 
					
						
							|  |  |  | 		struct host_cmd_ds_rf_reg_access *rf; | 
					
						
							|  |  |  | 		struct host_cmd_ds_pmic_reg_access *pmic; | 
					
						
							|  |  |  | 		struct host_cmd_ds_802_11_eeprom_access *eeprom; | 
					
						
							|  |  |  | 	} r; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!data_buf) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 	reg_rw = data_buf; | 
					
						
							|  |  |  | 	eeprom = data_buf; | 
					
						
							|  |  |  | 	switch (type) { | 
					
						
							|  |  |  | 	case HostCmd_CMD_MAC_REG_ACCESS: | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		r.mac = &resp->params.mac_reg; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.mac->offset)); | 
					
						
							|  |  |  | 		reg_rw->value = r.mac->value; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_BBP_REG_ACCESS: | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		r.bbp = &resp->params.bbp_reg; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.bbp->offset)); | 
					
						
							|  |  |  | 		reg_rw->value = cpu_to_le32((u32) r.bbp->value); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 	case HostCmd_CMD_RF_REG_ACCESS: | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		r.rf = &resp->params.rf_reg; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.rf->offset)); | 
					
						
							|  |  |  | 		reg_rw->value = cpu_to_le32((u32) r.bbp->value); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_PMIC_REG_ACCESS: | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		r.pmic = &resp->params.pmic_reg; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.pmic->offset)); | 
					
						
							|  |  |  | 		reg_rw->value = cpu_to_le32((u32) r.pmic->value); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_CAU_REG_ACCESS: | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		r.rf = &resp->params.rf_reg; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		reg_rw->offset = cpu_to_le32((u32) le16_to_cpu(r.rf->offset)); | 
					
						
							|  |  |  | 		reg_rw->value = cpu_to_le32((u32) r.rf->value); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_EEPROM_ACCESS: | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		r.eeprom = &resp->params.eeprom; | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		pr_debug("info: EEPROM read len=%x\n", r.eeprom->byte_count); | 
					
						
							|  |  |  | 		if (le16_to_cpu(eeprom->byte_count) < | 
					
						
							|  |  |  | 		    le16_to_cpu(r.eeprom->byte_count)) { | 
					
						
							|  |  |  | 			eeprom->byte_count = cpu_to_le16(0); | 
					
						
							|  |  |  | 			pr_debug("info: EEPROM read length is too big\n"); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 			return -1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2012-03-12 19:35:09 -07:00
										 |  |  | 		eeprom->offset = r.eeprom->offset; | 
					
						
							|  |  |  | 		eeprom->byte_count = r.eeprom->byte_count; | 
					
						
							|  |  |  | 		if (le16_to_cpu(eeprom->byte_count) > 0) | 
					
						
							|  |  |  | 			memcpy(&eeprom->value, &r.eeprom->value, | 
					
						
							|  |  |  | 			       le16_to_cpu(r.eeprom->byte_count)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		return -1; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response of get IBSS coalescing status. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * If the received BSSID is different than the current one, the current BSSID, | 
					
						
							|  |  |  |  * beacon interval, ATIM window and ERP information are updated, along with | 
					
						
							|  |  |  |  * changing the ad-hoc state accordingly. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_ibss_coalescing_status(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 					      struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_ibss_status *ibss_coal_resp = | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 					&(resp->params.ibss_coalescing); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (le16_to_cpu(ibss_coal_resp->action) == HostCmd_ACT_GEN_SET) | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 		"info: new BSSID %pM\n", ibss_coal_resp->bssid); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If rsp has NULL BSSID, Just return..... No Action */ | 
					
						
							| 
									
										
										
										
											2012-08-24 13:27:10 +08:00
										 |  |  | 	if (is_zero_ether_addr(ibss_coal_resp->bssid)) { | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		dev_warn(priv->adapter->dev, "new BSSID is NULL\n"); | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If BSSID is diff, modify current BSS parameters */ | 
					
						
							| 
									
										
										
										
											2013-12-26 19:41:27 +08:00
										 |  |  | 	if (!ether_addr_equal(priv->curr_bss_params.bss_descriptor.mac_address, ibss_coal_resp->bssid)) { | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		/* BSSID */ | 
					
						
							|  |  |  | 		memcpy(priv->curr_bss_params.bss_descriptor.mac_address, | 
					
						
							|  |  |  | 		       ibss_coal_resp->bssid, ETH_ALEN); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* Beacon Interval */ | 
					
						
							|  |  |  | 		priv->curr_bss_params.bss_descriptor.beacon_period | 
					
						
							|  |  |  | 			= le16_to_cpu(ibss_coal_resp->beacon_interval); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/* ERP Information */ | 
					
						
							|  |  |  | 		priv->curr_bss_params.bss_descriptor.erp_flags = | 
					
						
							|  |  |  | 			(u8) le16_to_cpu(ibss_coal_resp->use_g_rate_protect); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		priv->adhoc_state = ADHOC_COALESCED; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | static int mwifiex_ret_tdls_oper(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 				 struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_tdls_oper *cmd_tdls_oper = &resp->params.tdls_oper; | 
					
						
							|  |  |  | 	u16 reason = le16_to_cpu(cmd_tdls_oper->reason); | 
					
						
							|  |  |  | 	u16 action = le16_to_cpu(cmd_tdls_oper->tdls_action); | 
					
						
							| 
									
										
										
										
											2014-02-07 16:30:33 -08:00
										 |  |  | 	struct mwifiex_sta_node *node = | 
					
						
							|  |  |  | 			   mwifiex_get_sta_entry(priv, cmd_tdls_oper->peer_mac); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 	switch (action) { | 
					
						
							|  |  |  | 	case ACT_TDLS_DELETE: | 
					
						
							| 
									
										
										
										
											2014-05-21 22:02:28 -07:00
										 |  |  | 		if (reason) { | 
					
						
							|  |  |  | 			if (!node || reason == TDLS_ERR_LINK_NONEXISTENT) | 
					
						
							|  |  |  | 				dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 					"TDLS link delete for %pM failed: reason %d\n", | 
					
						
							|  |  |  | 					cmd_tdls_oper->peer_mac, reason); | 
					
						
							|  |  |  | 			else | 
					
						
							|  |  |  | 				dev_err(priv->adapter->dev, | 
					
						
							|  |  |  | 					"TDLS link delete for %pM failed: reason %d\n", | 
					
						
							|  |  |  | 					cmd_tdls_oper->peer_mac, reason); | 
					
						
							|  |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							| 
									
										
										
										
											2014-05-21 22:02:28 -07:00
										 |  |  | 				"TDLS link delete for %pM successful\n", | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 				cmd_tdls_oper->peer_mac); | 
					
						
							| 
									
										
										
										
											2014-05-21 22:02:28 -07:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2014-02-07 16:30:33 -08:00
										 |  |  | 	case ACT_TDLS_CREATE: | 
					
						
							|  |  |  | 		if (reason) { | 
					
						
							|  |  |  | 			dev_err(priv->adapter->dev, | 
					
						
							|  |  |  | 				"TDLS link creation for %pM failed: reason %d", | 
					
						
							|  |  |  | 				cmd_tdls_oper->peer_mac, reason); | 
					
						
							|  |  |  | 			if (node && reason != TDLS_ERR_LINK_EXISTS) | 
					
						
							|  |  |  | 				node->tdls_status = TDLS_SETUP_FAILURE; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 				"TDLS link creation for %pM successful", | 
					
						
							|  |  |  | 				cmd_tdls_oper->peer_mac); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2014-02-07 16:30:34 -08:00
										 |  |  | 	case ACT_TDLS_CONFIG: | 
					
						
							|  |  |  | 		if (reason) { | 
					
						
							|  |  |  | 			dev_err(priv->adapter->dev, | 
					
						
							|  |  |  | 				"TDLS link config for %pM failed, reason %d\n", | 
					
						
							|  |  |  | 				cmd_tdls_oper->peer_mac, reason); | 
					
						
							|  |  |  | 			if (node) | 
					
						
							|  |  |  | 				node->tdls_status = TDLS_SETUP_FAILURE; | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			dev_dbg(priv->adapter->dev, | 
					
						
							|  |  |  | 				"TDLS link config for %pM successful\n", | 
					
						
							|  |  |  | 				cmd_tdls_oper->peer_mac); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		dev_err(priv->adapter->dev, | 
					
						
							| 
									
										
										
										
											2014-07-11 20:57:15 -07:00
										 |  |  | 			"Unknown TDLS command action response %d", action); | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command response for subscribe event command. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | static int mwifiex_ret_subsc_evt(struct mwifiex_private *priv, | 
					
						
							| 
									
										
										
										
											2012-09-10 18:30:40 -07:00
										 |  |  | 				 struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	struct host_cmd_ds_802_11_subsc_evt *cmd_sub_event = | 
					
						
							| 
									
										
										
										
											2012-06-04 12:44:17 +00:00
										 |  |  | 		&resp->params.subsc_evt; | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	/* For every subscribe event command (Get/Set/Clear), FW reports the
 | 
					
						
							|  |  |  | 	 * current set of subscribed events*/ | 
					
						
							|  |  |  | 	dev_dbg(priv->adapter->dev, "Bitmap of currently subscribed events: %16x\n", | 
					
						
							|  |  |  | 		le16_to_cpu(cmd_sub_event->events)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-17 17:50:25 -07:00
										 |  |  | /* This function handles the command response of set_cfg_data */ | 
					
						
							|  |  |  | static int mwifiex_ret_cfg_data(struct mwifiex_private *priv, | 
					
						
							|  |  |  | 				struct host_cmd_ds_command *resp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (resp->result != HostCmd_RESULT_OK) { | 
					
						
							|  |  |  | 		dev_err(priv->adapter->dev, "Cal data cmd resp failed\n"); | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * This function handles the command responses. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This is a generic function, which calls command specific | 
					
						
							|  |  |  |  * response handlers based on the command ID. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | int mwifiex_process_sta_cmdresp(struct mwifiex_private *priv, u16 cmdresp_no, | 
					
						
							|  |  |  | 				struct host_cmd_ds_command *resp) | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | { | 
					
						
							|  |  |  | 	int ret = 0; | 
					
						
							|  |  |  | 	struct mwifiex_adapter *adapter = priv->adapter; | 
					
						
							|  |  |  | 	void *data_buf = adapter->curr_cmd->data_buf; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* If the command is not successful, cleanup and return failure */ | 
					
						
							|  |  |  | 	if (resp->result != HostCmd_RESULT_OK) { | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 		mwifiex_process_cmdresp_error(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Command successful, handle response */ | 
					
						
							|  |  |  | 	switch (cmdresp_no) { | 
					
						
							|  |  |  | 	case HostCmd_CMD_GET_HW_SPEC: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_get_hw_spec(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2013-05-17 17:50:25 -07:00
										 |  |  | 	case HostCmd_CMD_CFG_DATA: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_cfg_data(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	case HostCmd_CMD_MAC_CONTROL: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_MAC_ADDRESS: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_mac_address(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_MAC_MULTICAST_ADR: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_mac_multicast_adr(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_TX_RATE_CFG: | 
					
						
							| 
									
										
										
										
											2012-07-13 20:09:31 -07:00
										 |  |  | 		ret = mwifiex_ret_tx_rate_cfg(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_SCAN: | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 		ret = mwifiex_ret_802_11_scan(priv, resp); | 
					
						
							|  |  |  | 		adapter->curr_cmd->wait_q_enabled = false; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2014-02-11 18:39:56 -08:00
										 |  |  | 	case HostCmd_CMD_802_11_SCAN_EXT: | 
					
						
							| 
									
										
										
										
											2014-10-31 16:08:26 +05:30
										 |  |  | 		ret = mwifiex_ret_802_11_scan_ext(priv, resp); | 
					
						
							| 
									
										
										
										
											2014-02-11 18:39:56 -08:00
										 |  |  | 		adapter->curr_cmd->wait_q_enabled = false; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	case HostCmd_CMD_802_11_BG_SCAN_QUERY: | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 		ret = mwifiex_ret_802_11_scan(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		dev_dbg(adapter->dev, | 
					
						
							|  |  |  | 			"info: CMD_RESP: BG_SCAN result is ready!\n"); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_TXPWR_CFG: | 
					
						
							| 
									
										
										
										
											2011-06-20 15:21:48 -07:00
										 |  |  | 		ret = mwifiex_ret_tx_power_cfg(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-06-27 19:57:57 -07:00
										 |  |  | 	case HostCmd_CMD_RF_TX_PWR: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_rf_tx_power(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-07-02 19:32:33 -07:00
										 |  |  | 	case HostCmd_CMD_RF_ANTENNA: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_rf_antenna(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	case HostCmd_CMD_802_11_PS_MODE_ENH: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_enh_power_mode(priv, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_HS_CFG_ENH: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_hs_cfg(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_ASSOCIATE: | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 		ret = mwifiex_ret_802_11_associate(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_DEAUTHENTICATE: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_deauthenticate(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_AD_HOC_START: | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_AD_HOC_JOIN: | 
					
						
							| 
									
										
										
										
											2011-04-13 17:27:06 -07:00
										 |  |  | 		ret = mwifiex_ret_802_11_ad_hoc(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_AD_HOC_STOP: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_ad_hoc_stop(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_GET_LOG: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_get_log(priv, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_RSSI_INFO: | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:49 -07:00
										 |  |  | 		ret = mwifiex_ret_802_11_rssi_info(priv, resp); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_SNMP_MIB: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_snmp_mib(priv, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_TX_RATE_QUERY: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_tx_rate_query(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_VERSION_EXT: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_ver_ext(priv, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-09-25 20:23:36 -07:00
										 |  |  | 	case HostCmd_CMD_REMAIN_ON_CHAN: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_remain_on_chan(priv, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2013-03-18 20:06:03 -07:00
										 |  |  | 	case HostCmd_CMD_11AC_CFG: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-09-25 20:23:41 -07:00
										 |  |  | 	case HostCmd_CMD_P2P_MODE_CFG: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_p2p_mode_cfg(priv, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-09-25 20:23:34 -07:00
										 |  |  | 	case HostCmd_CMD_MGMT_FRAME_REG: | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	case HostCmd_CMD_FUNC_INIT: | 
					
						
							|  |  |  | 	case HostCmd_CMD_FUNC_SHUTDOWN: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_KEY_MATERIAL: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11_key_material(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11D_DOMAIN_INFO: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_802_11d_domain_info(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_11N_ADDBA_REQ: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_11n_addba_req(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_11N_DELBA: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_11n_delba(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_11N_ADDBA_RSP: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_11n_addba_resp(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_RECONFIGURE_TX_BUFF: | 
					
						
							|  |  |  | 		adapter->tx_buf_size = (u16) le16_to_cpu(resp->params. | 
					
						
							|  |  |  | 							     tx_buf.buff_size); | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 		adapter->tx_buf_size = (adapter->tx_buf_size | 
					
						
							|  |  |  | 					/ MWIFIEX_SDIO_BLOCK_SIZE) | 
					
						
							|  |  |  | 				       * MWIFIEX_SDIO_BLOCK_SIZE; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		adapter->curr_tx_buf_size = adapter->tx_buf_size; | 
					
						
							| 
									
										
										
										
											2013-01-30 19:56:02 -08:00
										 |  |  | 		dev_dbg(adapter->dev, "cmd: curr_tx_buf_size=%d\n", | 
					
						
							|  |  |  | 			adapter->curr_tx_buf_size); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		if (adapter->if_ops.update_mp_end_port) | 
					
						
							|  |  |  | 			adapter->if_ops.update_mp_end_port(adapter, | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 				le16_to_cpu(resp->params.tx_buf.mp_end_port)); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_AMSDU_AGGR_CTRL: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_WMM_GET_STATUS: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_wmm_get_status(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_IBSS_COALESCING_STATUS: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_ibss_coalescing_status(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_MAC_REG_ACCESS: | 
					
						
							|  |  |  | 	case HostCmd_CMD_BBP_REG_ACCESS: | 
					
						
							|  |  |  | 	case HostCmd_CMD_RF_REG_ACCESS: | 
					
						
							|  |  |  | 	case HostCmd_CMD_PMIC_REG_ACCESS: | 
					
						
							|  |  |  | 	case HostCmd_CMD_CAU_REG_ACCESS: | 
					
						
							|  |  |  | 	case HostCmd_CMD_802_11_EEPROM_ACCESS: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_reg_access(cmdresp_no, resp, data_buf); | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_SET_BSS_MODE: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_11N_CFG: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-10-11 17:41:21 -07:00
										 |  |  | 	case HostCmd_CMD_PCIE_DESC_DETAILS: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 	case HostCmd_CMD_802_11_SUBSCRIBE_EVENT: | 
					
						
							| 
									
										
										
										
											2012-09-10 18:30:40 -07:00
										 |  |  | 		ret = mwifiex_ret_subsc_evt(priv, resp); | 
					
						
							| 
									
										
										
										
											2012-03-15 20:51:51 -07:00
										 |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2012-05-08 18:30:19 -07:00
										 |  |  | 	case HostCmd_CMD_UAP_SYS_CONFIG: | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_UAP_BSS_START: | 
					
						
							|  |  |  | 		priv->bss_started = 1; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	case HostCmd_CMD_UAP_BSS_STOP: | 
					
						
							|  |  |  | 		priv->bss_started = 0; | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2013-05-17 17:50:23 -07:00
										 |  |  | 	case HostCmd_CMD_UAP_STA_DEAUTH: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2013-03-04 16:27:59 -08:00
										 |  |  | 	case HostCmd_CMD_MEF_CFG: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2013-08-05 18:52:00 -07:00
										 |  |  | 	case HostCmd_CMD_COALESCE_CFG: | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2014-02-07 16:27:34 -08:00
										 |  |  | 	case HostCmd_CMD_TDLS_OPER: | 
					
						
							|  |  |  | 		ret = mwifiex_ret_tdls_oper(priv, resp); | 
					
						
							|  |  |  | 		break; | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 	default: | 
					
						
							|  |  |  | 		dev_err(adapter->dev, "CMD_RESP: unknown cmd response %#x\n", | 
					
						
							| 
									
										
										
										
											2012-03-13 19:22:40 -07:00
										 |  |  | 			resp->command); | 
					
						
							| 
									
										
										
										
											2011-03-21 18:00:50 -07:00
										 |  |  | 		break; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ret; | 
					
						
							|  |  |  | } |