Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1 | /** |
| 2 | * This file contains the handling of command. |
| 3 | * It prepares command and sends it to firmware when it is ready. |
| 4 | */ |
| 5 | |
| 6 | #include <net/iw_handler.h> |
| 7 | #include "host.h" |
| 8 | #include "hostcmd.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 9 | #include "decl.h" |
| 10 | #include "defs.h" |
| 11 | #include "dev.h" |
| 12 | #include "join.h" |
| 13 | #include "wext.h" |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 14 | #include "cmd.h" |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 15 | |
David Woodhouse | 2fd6cfe | 2007-12-11 17:44:10 -0500 | [diff] [blame] | 16 | static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv); |
| 17 | static void lbs_set_cmd_ctrl_node(struct lbs_private *priv, |
Holger Schurig | 0d61d04 | 2007-12-05 17:58:06 +0100 | [diff] [blame] | 18 | struct cmd_ctrl_node *ptempnode, |
David Woodhouse | 8e5b6b2d | 2007-12-14 23:08:13 -0500 | [diff] [blame] | 19 | void *pdata_buf); |
Holger Schurig | 0d61d04 | 2007-12-05 17:58:06 +0100 | [diff] [blame] | 20 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 21 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 22 | /** |
Dan Williams | 852e1f2 | 2007-12-10 15:24:47 -0500 | [diff] [blame] | 23 | * @brief Checks whether a command is allowed in Power Save mode |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 24 | * |
| 25 | * @param command the command ID |
Dan Williams | 852e1f2 | 2007-12-10 15:24:47 -0500 | [diff] [blame] | 26 | * @return 1 if allowed, 0 if not allowed |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 27 | */ |
Dan Williams | 852e1f2 | 2007-12-10 15:24:47 -0500 | [diff] [blame] | 28 | static u8 is_command_allowed_in_ps(u16 cmd) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 29 | { |
Dan Williams | 852e1f2 | 2007-12-10 15:24:47 -0500 | [diff] [blame] | 30 | switch (cmd) { |
| 31 | case CMD_802_11_RSSI: |
| 32 | return 1; |
| 33 | default: |
| 34 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 35 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 36 | return 0; |
| 37 | } |
| 38 | |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 39 | /** |
| 40 | * @brief Updates the hardware details like MAC address and regulatory region |
| 41 | * |
| 42 | * @param priv A pointer to struct lbs_private structure |
| 43 | * |
| 44 | * @return 0 on success, error on failure |
| 45 | */ |
| 46 | int lbs_update_hw_spec(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 47 | { |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 48 | struct cmd_ds_get_hw_spec cmd; |
| 49 | int ret = -1; |
| 50 | u32 i; |
| 51 | DECLARE_MAC_BUF(mac); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 52 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 53 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 54 | |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 55 | memset(&cmd, 0, sizeof(cmd)); |
| 56 | cmd.hdr.size = cpu_to_le16(sizeof(cmd)); |
| 57 | memcpy(cmd.permanentaddr, priv->current_addr, ETH_ALEN); |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 58 | ret = lbs_cmd_with_response(priv, CMD_GET_HW_SPEC, &cmd); |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 59 | if (ret) |
| 60 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 61 | |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 62 | priv->fwcapinfo = le32_to_cpu(cmd.fwcapinfo); |
| 63 | memcpy(priv->fwreleasenumber, cmd.fwreleasenumber, 4); |
| 64 | |
| 65 | lbs_deb_cmd("GET_HW_SPEC: firmware release %u.%u.%up%u\n", |
| 66 | priv->fwreleasenumber[2], priv->fwreleasenumber[1], |
| 67 | priv->fwreleasenumber[0], priv->fwreleasenumber[3]); |
| 68 | lbs_deb_cmd("GET_HW_SPEC: MAC addr %s\n", |
| 69 | print_mac(mac, cmd.permanentaddr)); |
| 70 | lbs_deb_cmd("GET_HW_SPEC: hardware interface 0x%x, hardware spec 0x%04x\n", |
| 71 | cmd.hwifversion, cmd.version); |
| 72 | |
| 73 | /* Clamp region code to 8-bit since FW spec indicates that it should |
| 74 | * only ever be 8-bit, even though the field size is 16-bit. Some firmware |
| 75 | * returns non-zero high 8 bits here. |
| 76 | */ |
| 77 | priv->regioncode = le16_to_cpu(cmd.regioncode) & 0xFF; |
| 78 | |
| 79 | for (i = 0; i < MRVDRV_MAX_REGION_CODE; i++) { |
| 80 | /* use the region code to search for the index */ |
| 81 | if (priv->regioncode == lbs_region_code_to_index[i]) |
| 82 | break; |
| 83 | } |
| 84 | |
| 85 | /* if it's unidentified region code, use the default (USA) */ |
| 86 | if (i >= MRVDRV_MAX_REGION_CODE) { |
| 87 | priv->regioncode = 0x10; |
| 88 | lbs_pr_info("unidentified region code; using the default (USA)\n"); |
| 89 | } |
| 90 | |
| 91 | if (priv->current_addr[0] == 0xff) |
| 92 | memmove(priv->current_addr, cmd.permanentaddr, ETH_ALEN); |
| 93 | |
| 94 | memcpy(priv->dev->dev_addr, priv->current_addr, ETH_ALEN); |
| 95 | if (priv->mesh_dev) |
| 96 | memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN); |
| 97 | |
| 98 | if (lbs_set_regiontable(priv, priv->regioncode, 0)) { |
| 99 | ret = -1; |
| 100 | goto out; |
| 101 | } |
| 102 | |
| 103 | if (lbs_set_universaltable(priv, 0)) { |
| 104 | ret = -1; |
| 105 | goto out; |
| 106 | } |
| 107 | |
| 108 | out: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 109 | lbs_deb_leave(LBS_DEB_CMD); |
Dan Williams | 6e66f03 | 2007-12-11 12:42:16 -0500 | [diff] [blame] | 110 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 111 | } |
| 112 | |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 113 | int lbs_host_sleep_cfg(struct lbs_private *priv, uint32_t criteria) |
David Woodhouse | 6ce4fd2 | 2007-12-12 15:19:29 -0500 | [diff] [blame] | 114 | { |
| 115 | struct cmd_ds_host_sleep cmd_config; |
| 116 | int ret; |
| 117 | |
| 118 | cmd_config.criteria = cpu_to_le32(criteria); |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 119 | cmd_config.gpio = priv->wol_gpio; |
| 120 | cmd_config.gap = priv->wol_gap; |
David Woodhouse | 6ce4fd2 | 2007-12-12 15:19:29 -0500 | [diff] [blame] | 121 | |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 122 | ret = lbs_cmd_with_response(priv, CMD_802_11_HOST_SLEEP_CFG, &cmd_config); |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 123 | if (!ret) { |
| 124 | lbs_deb_cmd("Set WOL criteria to %x\n", criteria); |
| 125 | priv->wol_criteria = criteria; |
| 126 | } else { |
David Woodhouse | 6ce4fd2 | 2007-12-12 15:19:29 -0500 | [diff] [blame] | 127 | lbs_pr_info("HOST_SLEEP_CFG failed %d\n", ret); |
David Woodhouse | 6ce4fd2 | 2007-12-12 15:19:29 -0500 | [diff] [blame] | 128 | } |
David Woodhouse | 506e902 | 2007-12-12 20:06:06 -0500 | [diff] [blame] | 129 | |
David Woodhouse | 6ce4fd2 | 2007-12-12 15:19:29 -0500 | [diff] [blame] | 130 | return ret; |
| 131 | } |
| 132 | EXPORT_SYMBOL_GPL(lbs_host_sleep_cfg); |
| 133 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 134 | static int lbs_cmd_802_11_ps_mode(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 135 | struct cmd_ds_command *cmd, |
| 136 | u16 cmd_action) |
| 137 | { |
| 138 | struct cmd_ds_802_11_ps_mode *psm = &cmd->params.psmode; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 139 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 140 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 141 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 142 | cmd->command = cpu_to_le16(CMD_802_11_PS_MODE); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 143 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_ps_mode) + |
| 144 | S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 145 | psm->action = cpu_to_le16(cmd_action); |
| 146 | psm->multipledtim = 0; |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 147 | switch (cmd_action) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 148 | case CMD_SUBCMD_ENTER_PS: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 149 | lbs_deb_cmd("PS command:" "SubCode- Enter PS\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 150 | |
Holger Schurig | 252cf0d | 2007-08-02 13:09:34 -0400 | [diff] [blame] | 151 | psm->locallisteninterval = 0; |
Holger Schurig | 97605c3 | 2007-08-02 13:09:15 -0400 | [diff] [blame] | 152 | psm->nullpktinterval = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 153 | psm->multipledtim = |
Holger Schurig | 56c4656 | 2007-08-02 13:09:49 -0400 | [diff] [blame] | 154 | cpu_to_le16(MRVDRV_DEFAULT_MULTIPLE_DTIM); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 155 | break; |
| 156 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 157 | case CMD_SUBCMD_EXIT_PS: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 158 | lbs_deb_cmd("PS command:" "SubCode- Exit PS\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 159 | break; |
| 160 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 161 | case CMD_SUBCMD_SLEEP_CONFIRMED: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 162 | lbs_deb_cmd("PS command: SubCode- sleep confirm\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 163 | break; |
| 164 | |
| 165 | default: |
| 166 | break; |
| 167 | } |
| 168 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 169 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 170 | return 0; |
| 171 | } |
| 172 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 173 | static int lbs_cmd_802_11_inactivity_timeout(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 174 | struct cmd_ds_command *cmd, |
| 175 | u16 cmd_action, void *pdata_buf) |
| 176 | { |
| 177 | u16 *timeout = pdata_buf; |
| 178 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 179 | lbs_deb_enter(LBS_DEB_CMD); |
| 180 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 181 | cmd->command = cpu_to_le16(CMD_802_11_INACTIVITY_TIMEOUT); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 182 | cmd->size = |
| 183 | cpu_to_le16(sizeof(struct cmd_ds_802_11_inactivity_timeout) |
| 184 | + S_DS_GEN); |
| 185 | |
| 186 | cmd->params.inactivity_timeout.action = cpu_to_le16(cmd_action); |
| 187 | |
| 188 | if (cmd_action) |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 189 | cmd->params.inactivity_timeout.timeout = cpu_to_le16(*timeout); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 190 | else |
| 191 | cmd->params.inactivity_timeout.timeout = 0; |
| 192 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 193 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 194 | return 0; |
| 195 | } |
| 196 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 197 | static int lbs_cmd_802_11_sleep_params(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 198 | struct cmd_ds_command *cmd, |
| 199 | u16 cmd_action) |
| 200 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 201 | struct cmd_ds_802_11_sleep_params *sp = &cmd->params.sleep_params; |
| 202 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 203 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 204 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 205 | cmd->size = cpu_to_le16((sizeof(struct cmd_ds_802_11_sleep_params)) + |
| 206 | S_DS_GEN); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 207 | cmd->command = cpu_to_le16(CMD_802_11_SLEEP_PARAMS); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 208 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 209 | if (cmd_action == CMD_ACT_GET) { |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 210 | memset(&priv->sp, 0, sizeof(struct sleep_params)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 211 | memset(sp, 0, sizeof(struct cmd_ds_802_11_sleep_params)); |
| 212 | sp->action = cpu_to_le16(cmd_action); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 213 | } else if (cmd_action == CMD_ACT_SET) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 214 | sp->action = cpu_to_le16(cmd_action); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 215 | sp->error = cpu_to_le16(priv->sp.sp_error); |
| 216 | sp->offset = cpu_to_le16(priv->sp.sp_offset); |
| 217 | sp->stabletime = cpu_to_le16(priv->sp.sp_stabletime); |
| 218 | sp->calcontrol = (u8) priv->sp.sp_calcontrol; |
| 219 | sp->externalsleepclk = (u8) priv->sp.sp_extsleepclk; |
| 220 | sp->reserved = cpu_to_le16(priv->sp.sp_reserved); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 221 | } |
| 222 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 223 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 224 | return 0; |
| 225 | } |
| 226 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 227 | static int lbs_cmd_802_11_set_wep(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 228 | struct cmd_ds_command *cmd, |
| 229 | u32 cmd_act, |
| 230 | void * pdata_buf) |
| 231 | { |
| 232 | struct cmd_ds_802_11_set_wep *wep = &cmd->params.wep; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 233 | int ret = 0; |
| 234 | struct assoc_request * assoc_req = pdata_buf; |
| 235 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 236 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 237 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 238 | cmd->command = cpu_to_le16(CMD_802_11_SET_WEP); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 239 | cmd->size = cpu_to_le16(sizeof(*wep) + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 240 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 241 | if (cmd_act == CMD_ACT_ADD) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 242 | int i; |
| 243 | |
| 244 | if (!assoc_req) { |
David Woodhouse | 23d36ee | 2007-12-12 00:14:21 -0500 | [diff] [blame] | 245 | lbs_deb_cmd("Invalid association request!\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 246 | ret = -1; |
| 247 | goto done; |
| 248 | } |
| 249 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 250 | wep->action = cpu_to_le16(CMD_ACT_ADD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 251 | |
| 252 | /* default tx key index */ |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 253 | wep->keyindex = cpu_to_le16((u16)(assoc_req->wep_tx_keyidx & |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 254 | (u32)CMD_WEP_KEY_INDEX_MASK)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 255 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 256 | /* Copy key types and material to host command structure */ |
| 257 | for (i = 0; i < 4; i++) { |
Dan Williams | 1443b65 | 2007-08-02 10:45:55 -0400 | [diff] [blame] | 258 | struct enc_key * pkey = &assoc_req->wep_keys[i]; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 259 | |
| 260 | switch (pkey->len) { |
| 261 | case KEY_LEN_WEP_40: |
Holger Schurig | 6470a89 | 2007-10-08 11:07:27 +0200 | [diff] [blame] | 262 | wep->keytype[i] = CMD_TYPE_WEP_40_BIT; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 263 | memmove(&wep->keymaterial[i], pkey->key, |
| 264 | pkey->len); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 265 | lbs_deb_cmd("SET_WEP: add key %d (40 bit)\n", i); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 266 | break; |
| 267 | case KEY_LEN_WEP_104: |
Holger Schurig | 6470a89 | 2007-10-08 11:07:27 +0200 | [diff] [blame] | 268 | wep->keytype[i] = CMD_TYPE_WEP_104_BIT; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 269 | memmove(&wep->keymaterial[i], pkey->key, |
| 270 | pkey->len); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 271 | lbs_deb_cmd("SET_WEP: add key %d (104 bit)\n", i); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 272 | break; |
| 273 | case 0: |
| 274 | break; |
| 275 | default: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 276 | lbs_deb_cmd("SET_WEP: invalid key %d, length %d\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 277 | i, pkey->len); |
| 278 | ret = -1; |
| 279 | goto done; |
| 280 | break; |
| 281 | } |
| 282 | } |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 283 | } else if (cmd_act == CMD_ACT_REMOVE) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 284 | /* ACT_REMOVE clears _all_ WEP keys */ |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 285 | wep->action = cpu_to_le16(CMD_ACT_REMOVE); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 286 | |
| 287 | /* default tx key index */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 288 | wep->keyindex = cpu_to_le16((u16)(priv->wep_tx_keyidx & |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 289 | (u32)CMD_WEP_KEY_INDEX_MASK)); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 290 | lbs_deb_cmd("SET_WEP: remove key %d\n", priv->wep_tx_keyidx); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 291 | } |
| 292 | |
| 293 | ret = 0; |
| 294 | |
| 295 | done: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 296 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 297 | return ret; |
| 298 | } |
| 299 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 300 | static int lbs_cmd_802_11_enable_rsn(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 301 | struct cmd_ds_command *cmd, |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 302 | u16 cmd_action, |
| 303 | void * pdata_buf) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 304 | { |
| 305 | struct cmd_ds_802_11_enable_rsn *penableRSN = &cmd->params.enbrsn; |
Dan Williams | 18c96c34 | 2007-06-18 12:01:12 -0400 | [diff] [blame] | 306 | u32 * enable = pdata_buf; |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 307 | |
| 308 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 309 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 310 | cmd->command = cpu_to_le16(CMD_802_11_ENABLE_RSN); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 311 | cmd->size = cpu_to_le16(sizeof(*penableRSN) + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 312 | penableRSN->action = cpu_to_le16(cmd_action); |
Dan Williams | 18c96c34 | 2007-06-18 12:01:12 -0400 | [diff] [blame] | 313 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 314 | if (cmd_action == CMD_ACT_SET) { |
Dan Williams | 18c96c34 | 2007-06-18 12:01:12 -0400 | [diff] [blame] | 315 | if (*enable) |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 316 | penableRSN->enable = cpu_to_le16(CMD_ENABLE_RSN); |
Dan Williams | 18c96c34 | 2007-06-18 12:01:12 -0400 | [diff] [blame] | 317 | else |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 318 | penableRSN->enable = cpu_to_le16(CMD_DISABLE_RSN); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 319 | lbs_deb_cmd("ENABLE_RSN: %d\n", *enable); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 320 | } |
| 321 | |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 322 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 323 | return 0; |
| 324 | } |
| 325 | |
| 326 | |
Holger Schurig | 3a18864 | 2007-11-26 10:07:14 +0100 | [diff] [blame] | 327 | static ssize_t lbs_tlv_size(const u8 *tlv, u16 size) |
| 328 | { |
| 329 | ssize_t pos = 0; |
| 330 | struct mrvlietypesheader *tlv_h; |
| 331 | while (pos < size) { |
| 332 | u16 length; |
| 333 | tlv_h = (struct mrvlietypesheader *) tlv; |
| 334 | if (tlv_h->len == 0) |
| 335 | return pos; |
| 336 | length = le16_to_cpu(tlv_h->len) + |
| 337 | sizeof(struct mrvlietypesheader); |
| 338 | pos += length; |
| 339 | tlv += length; |
| 340 | } |
| 341 | return pos; |
| 342 | } |
| 343 | |
| 344 | |
| 345 | static void lbs_cmd_802_11_subscribe_event(struct lbs_private *priv, |
| 346 | struct cmd_ds_command *cmd, u16 cmd_action, |
| 347 | void *pdata_buf) |
| 348 | { |
| 349 | struct cmd_ds_802_11_subscribe_event *events = |
| 350 | (struct cmd_ds_802_11_subscribe_event *) pdata_buf; |
| 351 | |
| 352 | /* pdata_buf points to a struct cmd_ds_802_11_subscribe_event and room |
| 353 | * for various Marvell TLVs */ |
| 354 | |
| 355 | lbs_deb_enter(LBS_DEB_CMD); |
| 356 | |
| 357 | cmd->size = cpu_to_le16(sizeof(*events) |
| 358 | - sizeof(events->tlv) |
| 359 | + S_DS_GEN); |
| 360 | cmd->params.subscribe_event.action = cpu_to_le16(cmd_action); |
| 361 | if (cmd_action == CMD_ACT_GET) { |
| 362 | cmd->params.subscribe_event.events = 0; |
| 363 | } else { |
| 364 | ssize_t sz = lbs_tlv_size(events->tlv, sizeof(events->tlv)); |
| 365 | cmd->size = cpu_to_le16(le16_to_cpu(cmd->size) + sz); |
| 366 | cmd->params.subscribe_event.events = events->events; |
| 367 | memcpy(cmd->params.subscribe_event.tlv, events->tlv, sz); |
| 368 | } |
| 369 | |
| 370 | lbs_deb_leave(LBS_DEB_CMD); |
| 371 | } |
| 372 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 373 | static void set_one_wpa_key(struct MrvlIEtype_keyParamSet * pkeyparamset, |
Dan Williams | 1443b65 | 2007-08-02 10:45:55 -0400 | [diff] [blame] | 374 | struct enc_key * pkey) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 375 | { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 376 | lbs_deb_enter(LBS_DEB_CMD); |
| 377 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 378 | if (pkey->flags & KEY_INFO_WPA_ENABLED) { |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 379 | pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_ENABLED); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 380 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 381 | if (pkey->flags & KEY_INFO_WPA_UNICAST) { |
| 382 | pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_UNICAST); |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 383 | } |
| 384 | if (pkey->flags & KEY_INFO_WPA_MCAST) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 385 | pkeyparamset->keyinfo |= cpu_to_le16(KEY_INFO_WPA_MCAST); |
| 386 | } |
| 387 | |
| 388 | pkeyparamset->type = cpu_to_le16(TLV_TYPE_KEY_MATERIAL); |
Dan Williams | 1443b65 | 2007-08-02 10:45:55 -0400 | [diff] [blame] | 389 | pkeyparamset->keytypeid = cpu_to_le16(pkey->type); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 390 | pkeyparamset->keylen = cpu_to_le16(pkey->len); |
| 391 | memcpy(pkeyparamset->key, pkey->key, pkey->len); |
| 392 | pkeyparamset->length = cpu_to_le16( sizeof(pkeyparamset->keytypeid) |
| 393 | + sizeof(pkeyparamset->keyinfo) |
| 394 | + sizeof(pkeyparamset->keylen) |
| 395 | + sizeof(pkeyparamset->key)); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 396 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 397 | } |
| 398 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 399 | static int lbs_cmd_802_11_key_material(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 400 | struct cmd_ds_command *cmd, |
| 401 | u16 cmd_action, |
| 402 | u32 cmd_oid, void *pdata_buf) |
| 403 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 404 | struct cmd_ds_802_11_key_material *pkeymaterial = |
| 405 | &cmd->params.keymaterial; |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 406 | struct assoc_request * assoc_req = pdata_buf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 407 | int ret = 0; |
| 408 | int index = 0; |
| 409 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 410 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 411 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 412 | cmd->command = cpu_to_le16(CMD_802_11_KEY_MATERIAL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 413 | pkeymaterial->action = cpu_to_le16(cmd_action); |
| 414 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 415 | if (cmd_action == CMD_ACT_GET) { |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 416 | cmd->size = cpu_to_le16(S_DS_GEN + sizeof (pkeymaterial->action)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 417 | ret = 0; |
| 418 | goto done; |
| 419 | } |
| 420 | |
| 421 | memset(&pkeymaterial->keyParamSet, 0, sizeof(pkeymaterial->keyParamSet)); |
| 422 | |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 423 | if (test_bit(ASSOC_FLAG_WPA_UCAST_KEY, &assoc_req->flags)) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 424 | set_one_wpa_key(&pkeymaterial->keyParamSet[index], |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 425 | &assoc_req->wpa_unicast_key); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 426 | index++; |
| 427 | } |
| 428 | |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 429 | if (test_bit(ASSOC_FLAG_WPA_MCAST_KEY, &assoc_req->flags)) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 430 | set_one_wpa_key(&pkeymaterial->keyParamSet[index], |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 431 | &assoc_req->wpa_mcast_key); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 432 | index++; |
| 433 | } |
| 434 | |
| 435 | cmd->size = cpu_to_le16( S_DS_GEN |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 436 | + sizeof (pkeymaterial->action) |
| 437 | + (index * sizeof(struct MrvlIEtype_keyParamSet))); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 438 | |
| 439 | ret = 0; |
| 440 | |
| 441 | done: |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 442 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 443 | return ret; |
| 444 | } |
| 445 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 446 | static int lbs_cmd_802_11_reset(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 447 | struct cmd_ds_command *cmd, int cmd_action) |
| 448 | { |
| 449 | struct cmd_ds_802_11_reset *reset = &cmd->params.reset; |
| 450 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 451 | lbs_deb_enter(LBS_DEB_CMD); |
| 452 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 453 | cmd->command = cpu_to_le16(CMD_802_11_RESET); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 454 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_reset) + S_DS_GEN); |
| 455 | reset->action = cpu_to_le16(cmd_action); |
| 456 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 457 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 458 | return 0; |
| 459 | } |
| 460 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 461 | static int lbs_cmd_802_11_get_log(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 462 | struct cmd_ds_command *cmd) |
| 463 | { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 464 | lbs_deb_enter(LBS_DEB_CMD); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 465 | cmd->command = cpu_to_le16(CMD_802_11_GET_LOG); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 466 | cmd->size = |
| 467 | cpu_to_le16(sizeof(struct cmd_ds_802_11_get_log) + S_DS_GEN); |
| 468 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 469 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 470 | return 0; |
| 471 | } |
| 472 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 473 | static int lbs_cmd_802_11_get_stat(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 474 | struct cmd_ds_command *cmd) |
| 475 | { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 476 | lbs_deb_enter(LBS_DEB_CMD); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 477 | cmd->command = cpu_to_le16(CMD_802_11_GET_STAT); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 478 | cmd->size = |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 479 | cpu_to_le16(sizeof(struct cmd_ds_802_11_get_stat) + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 480 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 481 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 482 | return 0; |
| 483 | } |
| 484 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 485 | static int lbs_cmd_802_11_snmp_mib(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 486 | struct cmd_ds_command *cmd, |
| 487 | int cmd_action, |
| 488 | int cmd_oid, void *pdata_buf) |
| 489 | { |
| 490 | struct cmd_ds_802_11_snmp_mib *pSNMPMIB = &cmd->params.smib; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 491 | u8 ucTemp; |
| 492 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 493 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 494 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 495 | lbs_deb_cmd("SNMP_CMD: cmd_oid = 0x%x\n", cmd_oid); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 496 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 497 | cmd->command = cpu_to_le16(CMD_802_11_SNMP_MIB); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 498 | cmd->size = cpu_to_le16(sizeof(*pSNMPMIB) + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 499 | |
| 500 | switch (cmd_oid) { |
| 501 | case OID_802_11_INFRASTRUCTURE_MODE: |
| 502 | { |
Dan Williams | 0dc5a29 | 2007-05-10 22:58:02 -0400 | [diff] [blame] | 503 | u8 mode = (u8) (size_t) pdata_buf; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 504 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET); |
| 505 | pSNMPMIB->oid = cpu_to_le16((u16) DESIRED_BSSTYPE_I); |
Holger Schurig | c2df2ef | 2007-12-07 15:30:44 +0000 | [diff] [blame] | 506 | pSNMPMIB->bufsize = cpu_to_le16(sizeof(u8)); |
Dan Williams | 0dc5a29 | 2007-05-10 22:58:02 -0400 | [diff] [blame] | 507 | if (mode == IW_MODE_ADHOC) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 508 | ucTemp = SNMP_MIB_VALUE_ADHOC; |
Dan Williams | 0dc5a29 | 2007-05-10 22:58:02 -0400 | [diff] [blame] | 509 | } else { |
| 510 | /* Infra and Auto modes */ |
| 511 | ucTemp = SNMP_MIB_VALUE_INFRA; |
| 512 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 513 | |
| 514 | memmove(pSNMPMIB->value, &ucTemp, sizeof(u8)); |
| 515 | |
| 516 | break; |
| 517 | } |
| 518 | |
| 519 | case OID_802_11D_ENABLE: |
| 520 | { |
| 521 | u32 ulTemp; |
| 522 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 523 | pSNMPMIB->oid = cpu_to_le16((u16) DOT11D_I); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 524 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 525 | if (cmd_action == CMD_ACT_SET) { |
Holger Schurig | c2df2ef | 2007-12-07 15:30:44 +0000 | [diff] [blame] | 526 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET); |
| 527 | pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 528 | ulTemp = *(u32 *)pdata_buf; |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 529 | *((__le16 *)(pSNMPMIB->value)) = |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 530 | cpu_to_le16((u16) ulTemp); |
| 531 | } |
| 532 | break; |
| 533 | } |
| 534 | |
| 535 | case OID_802_11_FRAGMENTATION_THRESHOLD: |
| 536 | { |
| 537 | u32 ulTemp; |
| 538 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 539 | pSNMPMIB->oid = cpu_to_le16((u16) FRAGTHRESH_I); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 540 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 541 | if (cmd_action == CMD_ACT_GET) { |
| 542 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET); |
| 543 | } else if (cmd_action == CMD_ACT_SET) { |
| 544 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 545 | pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 546 | ulTemp = *((u32 *) pdata_buf); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 547 | *((__le16 *)(pSNMPMIB->value)) = |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 548 | cpu_to_le16((u16) ulTemp); |
| 549 | |
| 550 | } |
| 551 | |
| 552 | break; |
| 553 | } |
| 554 | |
| 555 | case OID_802_11_RTS_THRESHOLD: |
| 556 | { |
| 557 | |
| 558 | u32 ulTemp; |
Holger Schurig | c2df2ef | 2007-12-07 15:30:44 +0000 | [diff] [blame] | 559 | pSNMPMIB->oid = cpu_to_le16(RTSTHRESH_I); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 560 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 561 | if (cmd_action == CMD_ACT_GET) { |
| 562 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET); |
| 563 | } else if (cmd_action == CMD_ACT_SET) { |
| 564 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 565 | pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16)); |
| 566 | ulTemp = *((u32 *)pdata_buf); |
| 567 | *(__le16 *)(pSNMPMIB->value) = |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 568 | cpu_to_le16((u16) ulTemp); |
| 569 | |
| 570 | } |
| 571 | break; |
| 572 | } |
| 573 | case OID_802_11_TX_RETRYCOUNT: |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 574 | pSNMPMIB->oid = cpu_to_le16((u16) SHORT_RETRYLIM_I); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 575 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 576 | if (cmd_action == CMD_ACT_GET) { |
| 577 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_GET); |
| 578 | } else if (cmd_action == CMD_ACT_SET) { |
| 579 | pSNMPMIB->querytype = cpu_to_le16(CMD_ACT_SET); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 580 | pSNMPMIB->bufsize = cpu_to_le16(sizeof(u16)); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 581 | *((__le16 *)(pSNMPMIB->value)) = |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 582 | cpu_to_le16((u16) priv->txretrycount); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 583 | } |
| 584 | |
| 585 | break; |
| 586 | default: |
| 587 | break; |
| 588 | } |
| 589 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 590 | lbs_deb_cmd( |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 591 | "SNMP_CMD: command=0x%x, size=0x%x, seqnum=0x%x, result=0x%x\n", |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 592 | le16_to_cpu(cmd->command), le16_to_cpu(cmd->size), |
| 593 | le16_to_cpu(cmd->seqnum), le16_to_cpu(cmd->result)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 594 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 595 | lbs_deb_cmd( |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 596 | "SNMP_CMD: action 0x%x, oid 0x%x, oidsize 0x%x, value 0x%x\n", |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 597 | le16_to_cpu(pSNMPMIB->querytype), le16_to_cpu(pSNMPMIB->oid), |
| 598 | le16_to_cpu(pSNMPMIB->bufsize), |
| 599 | le16_to_cpu(*(__le16 *) pSNMPMIB->value)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 600 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 601 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 602 | return 0; |
| 603 | } |
| 604 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 605 | static int lbs_cmd_802_11_radio_control(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 606 | struct cmd_ds_command *cmd, |
| 607 | int cmd_action) |
| 608 | { |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 609 | struct cmd_ds_802_11_radio_control *pradiocontrol = &cmd->params.radio; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 610 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 611 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 612 | |
| 613 | cmd->size = |
| 614 | cpu_to_le16((sizeof(struct cmd_ds_802_11_radio_control)) + |
| 615 | S_DS_GEN); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 616 | cmd->command = cpu_to_le16(CMD_802_11_RADIO_CONTROL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 617 | |
| 618 | pradiocontrol->action = cpu_to_le16(cmd_action); |
| 619 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 620 | switch (priv->preamble) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 621 | case CMD_TYPE_SHORT_PREAMBLE: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 622 | pradiocontrol->control = cpu_to_le16(SET_SHORT_PREAMBLE); |
| 623 | break; |
| 624 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 625 | case CMD_TYPE_LONG_PREAMBLE: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 626 | pradiocontrol->control = cpu_to_le16(SET_LONG_PREAMBLE); |
| 627 | break; |
| 628 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 629 | case CMD_TYPE_AUTO_PREAMBLE: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 630 | default: |
| 631 | pradiocontrol->control = cpu_to_le16(SET_AUTO_PREAMBLE); |
| 632 | break; |
| 633 | } |
| 634 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 635 | if (priv->radioon) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 636 | pradiocontrol->control |= cpu_to_le16(TURN_ON_RF); |
| 637 | else |
| 638 | pradiocontrol->control &= cpu_to_le16(~TURN_ON_RF); |
| 639 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 640 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 641 | return 0; |
| 642 | } |
| 643 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 644 | static int lbs_cmd_802_11_rf_tx_power(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 645 | struct cmd_ds_command *cmd, |
| 646 | u16 cmd_action, void *pdata_buf) |
| 647 | { |
| 648 | |
| 649 | struct cmd_ds_802_11_rf_tx_power *prtp = &cmd->params.txp; |
| 650 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 651 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 652 | |
| 653 | cmd->size = |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 654 | cpu_to_le16((sizeof(struct cmd_ds_802_11_rf_tx_power)) + S_DS_GEN); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 655 | cmd->command = cpu_to_le16(CMD_802_11_RF_TX_POWER); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 656 | prtp->action = cpu_to_le16(cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 657 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 658 | lbs_deb_cmd("RF_TX_POWER_CMD: size:%d cmd:0x%x Act:%d\n", |
| 659 | le16_to_cpu(cmd->size), le16_to_cpu(cmd->command), |
| 660 | le16_to_cpu(prtp->action)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 661 | |
| 662 | switch (cmd_action) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 663 | case CMD_ACT_TX_POWER_OPT_GET: |
| 664 | prtp->action = cpu_to_le16(CMD_ACT_GET); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 665 | prtp->currentlevel = 0; |
| 666 | break; |
| 667 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 668 | case CMD_ACT_TX_POWER_OPT_SET_HIGH: |
| 669 | prtp->action = cpu_to_le16(CMD_ACT_SET); |
| 670 | prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_HIGH); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 671 | break; |
| 672 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 673 | case CMD_ACT_TX_POWER_OPT_SET_MID: |
| 674 | prtp->action = cpu_to_le16(CMD_ACT_SET); |
| 675 | prtp->currentlevel = cpu_to_le16(CMD_ACT_TX_POWER_INDEX_MID); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 676 | break; |
| 677 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 678 | case CMD_ACT_TX_POWER_OPT_SET_LOW: |
| 679 | prtp->action = cpu_to_le16(CMD_ACT_SET); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 680 | prtp->currentlevel = cpu_to_le16(*((u16 *) pdata_buf)); |
| 681 | break; |
| 682 | } |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 683 | |
| 684 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 685 | return 0; |
| 686 | } |
| 687 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 688 | static int lbs_cmd_802_11_monitor_mode(struct lbs_private *priv, |
Luis Carlos Cobo | 965f8bb | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 689 | struct cmd_ds_command *cmd, |
| 690 | u16 cmd_action, void *pdata_buf) |
| 691 | { |
| 692 | struct cmd_ds_802_11_monitor_mode *monitor = &cmd->params.monitor; |
| 693 | |
| 694 | cmd->command = cpu_to_le16(CMD_802_11_MONITOR_MODE); |
| 695 | cmd->size = |
| 696 | cpu_to_le16(sizeof(struct cmd_ds_802_11_monitor_mode) + |
| 697 | S_DS_GEN); |
| 698 | |
| 699 | monitor->action = cpu_to_le16(cmd_action); |
| 700 | if (cmd_action == CMD_ACT_SET) { |
| 701 | monitor->mode = |
| 702 | cpu_to_le16((u16) (*(u32 *) pdata_buf)); |
| 703 | } |
| 704 | |
| 705 | return 0; |
| 706 | } |
| 707 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 708 | static int lbs_cmd_802_11_rate_adapt_rateset(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 709 | struct cmd_ds_command *cmd, |
| 710 | u16 cmd_action) |
| 711 | { |
| 712 | struct cmd_ds_802_11_rate_adapt_rateset |
| 713 | *rateadapt = &cmd->params.rateset; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 714 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 715 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 716 | cmd->size = |
| 717 | cpu_to_le16(sizeof(struct cmd_ds_802_11_rate_adapt_rateset) |
| 718 | + S_DS_GEN); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 719 | cmd->command = cpu_to_le16(CMD_802_11_RATE_ADAPT_RATESET); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 720 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 721 | rateadapt->action = cpu_to_le16(cmd_action); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 722 | rateadapt->enablehwauto = cpu_to_le16(priv->enablehwauto); |
| 723 | rateadapt->bitmap = cpu_to_le16(priv->ratebitmap); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 724 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 725 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 726 | return 0; |
| 727 | } |
| 728 | |
Dan Williams | 8e3c91b | 2007-12-11 15:50:59 -0500 | [diff] [blame] | 729 | /** |
| 730 | * @brief Get the current data rate |
| 731 | * |
| 732 | * @param priv A pointer to struct lbs_private structure |
| 733 | * |
| 734 | * @return The data rate on success, error on failure |
| 735 | */ |
| 736 | int lbs_get_data_rate(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 737 | { |
Dan Williams | 8e3c91b | 2007-12-11 15:50:59 -0500 | [diff] [blame] | 738 | struct cmd_ds_802_11_data_rate cmd; |
| 739 | int ret = -1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 740 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 741 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 742 | |
Dan Williams | 8e3c91b | 2007-12-11 15:50:59 -0500 | [diff] [blame] | 743 | memset(&cmd, 0, sizeof(cmd)); |
| 744 | cmd.hdr.size = cpu_to_le16(sizeof(cmd)); |
| 745 | cmd.action = cpu_to_le16(CMD_ACT_GET_TX_RATE); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 746 | |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 747 | ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd); |
Dan Williams | 8e3c91b | 2007-12-11 15:50:59 -0500 | [diff] [blame] | 748 | if (ret) |
| 749 | goto out; |
| 750 | |
| 751 | lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd)); |
| 752 | |
| 753 | ret = (int) lbs_fw_index_to_data_rate(cmd.rates[0]); |
| 754 | lbs_deb_cmd("DATA_RATE: current rate 0x%02x\n", ret); |
| 755 | |
| 756 | out: |
| 757 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
| 758 | return ret; |
| 759 | } |
| 760 | |
| 761 | /** |
| 762 | * @brief Set the data rate |
| 763 | * |
| 764 | * @param priv A pointer to struct lbs_private structure |
| 765 | * @param rate The desired data rate, or 0 to clear a locked rate |
| 766 | * |
| 767 | * @return 0 on success, error on failure |
| 768 | */ |
| 769 | int lbs_set_data_rate(struct lbs_private *priv, u8 rate) |
| 770 | { |
| 771 | struct cmd_ds_802_11_data_rate cmd; |
| 772 | int ret = 0; |
| 773 | |
| 774 | lbs_deb_enter(LBS_DEB_CMD); |
| 775 | |
| 776 | memset(&cmd, 0, sizeof(cmd)); |
| 777 | cmd.hdr.size = cpu_to_le16(sizeof(cmd)); |
| 778 | |
| 779 | if (rate > 0) { |
| 780 | cmd.action = cpu_to_le16(CMD_ACT_SET_TX_FIX_RATE); |
| 781 | cmd.rates[0] = lbs_data_rate_to_fw_index(rate); |
| 782 | if (cmd.rates[0] == 0) { |
| 783 | lbs_deb_cmd("DATA_RATE: invalid requested rate of" |
| 784 | " 0x%02X\n", rate); |
| 785 | ret = 0; |
| 786 | goto out; |
| 787 | } |
| 788 | lbs_deb_cmd("DATA_RATE: set fixed 0x%02X\n", cmd.rates[0]); |
| 789 | } else { |
| 790 | cmd.action = cpu_to_le16(CMD_ACT_SET_TX_AUTO); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 791 | lbs_deb_cmd("DATA_RATE: setting auto\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 792 | } |
| 793 | |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 794 | ret = lbs_cmd_with_response(priv, CMD_802_11_DATA_RATE, &cmd); |
Dan Williams | 8e3c91b | 2007-12-11 15:50:59 -0500 | [diff] [blame] | 795 | if (ret) |
| 796 | goto out; |
| 797 | |
| 798 | lbs_deb_hex(LBS_DEB_CMD, "DATA_RATE_RESP", (u8 *) &cmd, sizeof (cmd)); |
| 799 | |
| 800 | /* FIXME: get actual rates FW can do if this command actually returns |
| 801 | * all data rates supported. |
| 802 | */ |
| 803 | priv->cur_rate = lbs_fw_index_to_data_rate(cmd.rates[0]); |
| 804 | lbs_deb_cmd("DATA_RATE: current rate is 0x%02x\n", priv->cur_rate); |
| 805 | |
| 806 | out: |
| 807 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
| 808 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 809 | } |
| 810 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 811 | static int lbs_cmd_mac_multicast_adr(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 812 | struct cmd_ds_command *cmd, |
| 813 | u16 cmd_action) |
| 814 | { |
| 815 | struct cmd_ds_mac_multicast_adr *pMCastAdr = &cmd->params.madr; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 816 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 817 | lbs_deb_enter(LBS_DEB_CMD); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 818 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_multicast_adr) + |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 819 | S_DS_GEN); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 820 | cmd->command = cpu_to_le16(CMD_MAC_MULTICAST_ADR); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 821 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 822 | lbs_deb_cmd("MULTICAST_ADR: setting %d addresses\n", pMCastAdr->nr_of_adrs); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 823 | pMCastAdr->action = cpu_to_le16(cmd_action); |
| 824 | pMCastAdr->nr_of_adrs = |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 825 | cpu_to_le16((u16) priv->nr_of_multicastmacaddr); |
| 826 | memcpy(pMCastAdr->maclist, priv->multicastlist, |
| 827 | priv->nr_of_multicastmacaddr * ETH_ALEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 828 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 829 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 830 | return 0; |
| 831 | } |
| 832 | |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 833 | /** |
| 834 | * @brief Get the radio channel |
| 835 | * |
| 836 | * @param priv A pointer to struct lbs_private structure |
| 837 | * |
| 838 | * @return The channel on success, error on failure |
| 839 | */ |
| 840 | int lbs_get_channel(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 841 | { |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 842 | struct cmd_ds_802_11_rf_channel cmd; |
| 843 | int ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 844 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 845 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 846 | |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 847 | cmd.hdr.size = cpu_to_le16(sizeof(cmd)); |
| 848 | cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_GET); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 849 | |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 850 | ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd); |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 851 | if (ret) |
| 852 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 853 | |
Dan Williams | cb182a6 | 2007-12-11 17:35:51 -0500 | [diff] [blame] | 854 | ret = le16_to_cpu(cmd.channel); |
| 855 | lbs_deb_cmd("current radio channel is %d\n", ret); |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 856 | |
| 857 | out: |
| 858 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
| 859 | return ret; |
| 860 | } |
| 861 | |
| 862 | /** |
| 863 | * @brief Set the radio channel |
| 864 | * |
| 865 | * @param priv A pointer to struct lbs_private structure |
| 866 | * @param channel The desired channel, or 0 to clear a locked channel |
| 867 | * |
| 868 | * @return 0 on success, error on failure |
| 869 | */ |
| 870 | int lbs_set_channel(struct lbs_private *priv, u8 channel) |
| 871 | { |
| 872 | struct cmd_ds_802_11_rf_channel cmd; |
| 873 | u8 old_channel = priv->curbssparams.channel; |
| 874 | int ret = 0; |
| 875 | |
| 876 | lbs_deb_enter(LBS_DEB_CMD); |
| 877 | |
| 878 | cmd.hdr.size = cpu_to_le16(sizeof(cmd)); |
| 879 | cmd.action = cpu_to_le16(CMD_OPT_802_11_RF_CHANNEL_SET); |
| 880 | cmd.channel = cpu_to_le16(channel); |
| 881 | |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 882 | ret = lbs_cmd_with_response(priv, CMD_802_11_RF_CHANNEL, &cmd); |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 883 | if (ret) |
| 884 | goto out; |
| 885 | |
Dan Williams | cb182a6 | 2007-12-11 17:35:51 -0500 | [diff] [blame] | 886 | priv->curbssparams.channel = (uint8_t) le16_to_cpu(cmd.channel); |
| 887 | lbs_deb_cmd("channel switch from %d to %d\n", old_channel, |
| 888 | priv->curbssparams.channel); |
Dan Williams | 2dd4b26 | 2007-12-11 16:54:15 -0500 | [diff] [blame] | 889 | |
| 890 | out: |
| 891 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
| 892 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 893 | } |
| 894 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 895 | static int lbs_cmd_802_11_rssi(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 896 | struct cmd_ds_command *cmd) |
| 897 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 898 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 899 | lbs_deb_enter(LBS_DEB_CMD); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 900 | cmd->command = cpu_to_le16(CMD_802_11_RSSI); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 901 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_rssi) + S_DS_GEN); |
Holger Schurig | a783f1e | 2007-08-02 13:08:24 -0400 | [diff] [blame] | 902 | cmd->params.rssi.N = cpu_to_le16(DEFAULT_BCN_AVG_FACTOR); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 903 | |
| 904 | /* reset Beacon SNR/NF/RSSI values */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 905 | priv->SNR[TYPE_BEACON][TYPE_NOAVG] = 0; |
| 906 | priv->SNR[TYPE_BEACON][TYPE_AVG] = 0; |
| 907 | priv->NF[TYPE_BEACON][TYPE_NOAVG] = 0; |
| 908 | priv->NF[TYPE_BEACON][TYPE_AVG] = 0; |
| 909 | priv->RSSI[TYPE_BEACON][TYPE_NOAVG] = 0; |
| 910 | priv->RSSI[TYPE_BEACON][TYPE_AVG] = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 911 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 912 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 913 | return 0; |
| 914 | } |
| 915 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 916 | static int lbs_cmd_reg_access(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 917 | struct cmd_ds_command *cmdptr, |
| 918 | u8 cmd_action, void *pdata_buf) |
| 919 | { |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 920 | struct lbs_offset_value *offval; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 921 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 922 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 923 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 924 | offval = (struct lbs_offset_value *)pdata_buf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 925 | |
Holger Schurig | c2df2ef | 2007-12-07 15:30:44 +0000 | [diff] [blame] | 926 | switch (le16_to_cpu(cmdptr->command)) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 927 | case CMD_MAC_REG_ACCESS: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 928 | { |
| 929 | struct cmd_ds_mac_reg_access *macreg; |
| 930 | |
| 931 | cmdptr->size = |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 932 | cpu_to_le16(sizeof (struct cmd_ds_mac_reg_access) |
| 933 | + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 934 | macreg = |
| 935 | (struct cmd_ds_mac_reg_access *)&cmdptr->params. |
| 936 | macreg; |
| 937 | |
| 938 | macreg->action = cpu_to_le16(cmd_action); |
| 939 | macreg->offset = cpu_to_le16((u16) offval->offset); |
| 940 | macreg->value = cpu_to_le32(offval->value); |
| 941 | |
| 942 | break; |
| 943 | } |
| 944 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 945 | case CMD_BBP_REG_ACCESS: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 946 | { |
| 947 | struct cmd_ds_bbp_reg_access *bbpreg; |
| 948 | |
| 949 | cmdptr->size = |
| 950 | cpu_to_le16(sizeof |
| 951 | (struct cmd_ds_bbp_reg_access) |
| 952 | + S_DS_GEN); |
| 953 | bbpreg = |
| 954 | (struct cmd_ds_bbp_reg_access *)&cmdptr->params. |
| 955 | bbpreg; |
| 956 | |
| 957 | bbpreg->action = cpu_to_le16(cmd_action); |
| 958 | bbpreg->offset = cpu_to_le16((u16) offval->offset); |
| 959 | bbpreg->value = (u8) offval->value; |
| 960 | |
| 961 | break; |
| 962 | } |
| 963 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 964 | case CMD_RF_REG_ACCESS: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 965 | { |
| 966 | struct cmd_ds_rf_reg_access *rfreg; |
| 967 | |
| 968 | cmdptr->size = |
| 969 | cpu_to_le16(sizeof |
| 970 | (struct cmd_ds_rf_reg_access) + |
| 971 | S_DS_GEN); |
| 972 | rfreg = |
| 973 | (struct cmd_ds_rf_reg_access *)&cmdptr->params. |
| 974 | rfreg; |
| 975 | |
| 976 | rfreg->action = cpu_to_le16(cmd_action); |
| 977 | rfreg->offset = cpu_to_le16((u16) offval->offset); |
| 978 | rfreg->value = (u8) offval->value; |
| 979 | |
| 980 | break; |
| 981 | } |
| 982 | |
| 983 | default: |
| 984 | break; |
| 985 | } |
| 986 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 987 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 988 | return 0; |
| 989 | } |
| 990 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 991 | static int lbs_cmd_802_11_mac_address(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 992 | struct cmd_ds_command *cmd, |
| 993 | u16 cmd_action) |
| 994 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 995 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 996 | lbs_deb_enter(LBS_DEB_CMD); |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 997 | cmd->command = cpu_to_le16(CMD_802_11_MAC_ADDRESS); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 998 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_mac_address) + |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 999 | S_DS_GEN); |
| 1000 | cmd->result = 0; |
| 1001 | |
| 1002 | cmd->params.macadd.action = cpu_to_le16(cmd_action); |
| 1003 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1004 | if (cmd_action == CMD_ACT_SET) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1005 | memcpy(cmd->params.macadd.macadd, |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1006 | priv->current_addr, ETH_ALEN); |
| 1007 | lbs_deb_hex(LBS_DEB_CMD, "SET_CMD: MAC addr", priv->current_addr, 6); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1008 | } |
| 1009 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1010 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1011 | return 0; |
| 1012 | } |
| 1013 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1014 | static int lbs_cmd_802_11_eeprom_access(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1015 | struct cmd_ds_command *cmd, |
| 1016 | int cmd_action, void *pdata_buf) |
| 1017 | { |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1018 | struct lbs_ioctl_regrdwr *ea = pdata_buf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1019 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1020 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1021 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1022 | cmd->command = cpu_to_le16(CMD_802_11_EEPROM_ACCESS); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1023 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_eeprom_access) + |
| 1024 | S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1025 | cmd->result = 0; |
| 1026 | |
| 1027 | cmd->params.rdeeprom.action = cpu_to_le16(ea->action); |
| 1028 | cmd->params.rdeeprom.offset = cpu_to_le16(ea->offset); |
| 1029 | cmd->params.rdeeprom.bytecount = cpu_to_le16(ea->NOB); |
| 1030 | cmd->params.rdeeprom.value = 0; |
| 1031 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1032 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1033 | return 0; |
| 1034 | } |
| 1035 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1036 | static int lbs_cmd_bt_access(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1037 | struct cmd_ds_command *cmd, |
| 1038 | u16 cmd_action, void *pdata_buf) |
| 1039 | { |
| 1040 | struct cmd_ds_bt_access *bt_access = &cmd->params.bt; |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1041 | lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1042 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1043 | cmd->command = cpu_to_le16(CMD_BT_ACCESS); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1044 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_bt_access) + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1045 | cmd->result = 0; |
| 1046 | bt_access->action = cpu_to_le16(cmd_action); |
| 1047 | |
| 1048 | switch (cmd_action) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1049 | case CMD_ACT_BT_ACCESS_ADD: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1050 | memcpy(bt_access->addr1, pdata_buf, 2 * ETH_ALEN); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 1051 | lbs_deb_hex(LBS_DEB_MESH, "BT_ADD: blinded MAC addr", bt_access->addr1, 6); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1052 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1053 | case CMD_ACT_BT_ACCESS_DEL: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1054 | memcpy(bt_access->addr1, pdata_buf, 1 * ETH_ALEN); |
Holger Schurig | ece5619 | 2007-08-02 11:53:06 -0400 | [diff] [blame] | 1055 | lbs_deb_hex(LBS_DEB_MESH, "BT_DEL: blinded MAC addr", bt_access->addr1, 6); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1056 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1057 | case CMD_ACT_BT_ACCESS_LIST: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1058 | bt_access->id = cpu_to_le32(*(u32 *) pdata_buf); |
| 1059 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1060 | case CMD_ACT_BT_ACCESS_RESET: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1061 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1062 | case CMD_ACT_BT_ACCESS_SET_INVERT: |
Luis Carlos Cobo | 90e8eaf | 2007-05-25 13:53:26 -0400 | [diff] [blame] | 1063 | bt_access->id = cpu_to_le32(*(u32 *) pdata_buf); |
| 1064 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1065 | case CMD_ACT_BT_ACCESS_GET_INVERT: |
Luis Carlos Cobo | 90e8eaf | 2007-05-25 13:53:26 -0400 | [diff] [blame] | 1066 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1067 | default: |
| 1068 | break; |
| 1069 | } |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1070 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1071 | return 0; |
| 1072 | } |
| 1073 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1074 | static int lbs_cmd_fwt_access(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1075 | struct cmd_ds_command *cmd, |
| 1076 | u16 cmd_action, void *pdata_buf) |
| 1077 | { |
| 1078 | struct cmd_ds_fwt_access *fwt_access = &cmd->params.fwt; |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1079 | lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1080 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1081 | cmd->command = cpu_to_le16(CMD_FWT_ACCESS); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1082 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_fwt_access) + S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1083 | cmd->result = 0; |
| 1084 | |
| 1085 | if (pdata_buf) |
| 1086 | memcpy(fwt_access, pdata_buf, sizeof(*fwt_access)); |
| 1087 | else |
| 1088 | memset(fwt_access, 0, sizeof(*fwt_access)); |
| 1089 | |
| 1090 | fwt_access->action = cpu_to_le16(cmd_action); |
| 1091 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1092 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1093 | return 0; |
| 1094 | } |
| 1095 | |
David Woodhouse | 301eacb | 2007-12-11 15:23:59 -0500 | [diff] [blame] | 1096 | int lbs_mesh_access(struct lbs_private *priv, uint16_t cmd_action, |
| 1097 | struct cmd_ds_mesh_access *cmd) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1098 | { |
David Woodhouse | 301eacb | 2007-12-11 15:23:59 -0500 | [diff] [blame] | 1099 | int ret; |
| 1100 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1101 | lbs_deb_enter_args(LBS_DEB_CMD, "action %d", cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1102 | |
David Woodhouse | 301eacb | 2007-12-11 15:23:59 -0500 | [diff] [blame] | 1103 | cmd->hdr.command = cpu_to_le16(CMD_MESH_ACCESS); |
| 1104 | cmd->hdr.size = cpu_to_le16(sizeof(struct cmd_ds_mesh_access) + S_DS_GEN); |
| 1105 | cmd->hdr.result = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1106 | |
David Woodhouse | 301eacb | 2007-12-11 15:23:59 -0500 | [diff] [blame] | 1107 | cmd->action = cpu_to_le16(cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1108 | |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 1109 | ret = lbs_cmd_with_response(priv, CMD_MESH_ACCESS, cmd); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1110 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1111 | lbs_deb_leave(LBS_DEB_CMD); |
David Woodhouse | 301eacb | 2007-12-11 15:23:59 -0500 | [diff] [blame] | 1112 | return ret; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1113 | } |
David Woodhouse | 301eacb | 2007-12-11 15:23:59 -0500 | [diff] [blame] | 1114 | EXPORT_SYMBOL_GPL(lbs_mesh_access); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1115 | |
David Woodhouse | 8606213 | 2007-12-13 00:32:36 -0500 | [diff] [blame] | 1116 | int lbs_mesh_config(struct lbs_private *priv, uint16_t enable, uint16_t chan) |
David Woodhouse | 23a397a | 2007-12-11 18:56:42 -0500 | [diff] [blame] | 1117 | { |
| 1118 | struct cmd_ds_mesh_config cmd; |
| 1119 | |
| 1120 | memset(&cmd, 0, sizeof(cmd)); |
| 1121 | cmd.action = cpu_to_le16(enable); |
David Woodhouse | 8606213 | 2007-12-13 00:32:36 -0500 | [diff] [blame] | 1122 | cmd.channel = cpu_to_le16(chan); |
David Woodhouse | 020f3d0 | 2007-12-12 23:29:13 -0500 | [diff] [blame] | 1123 | cmd.type = cpu_to_le16(priv->mesh_tlv); |
David Woodhouse | 7e22627 | 2007-12-14 22:53:41 -0500 | [diff] [blame] | 1124 | |
David Woodhouse | 23a397a | 2007-12-11 18:56:42 -0500 | [diff] [blame] | 1125 | if (enable) { |
| 1126 | cmd.length = cpu_to_le16(priv->mesh_ssid_len); |
| 1127 | memcpy(cmd.data, priv->mesh_ssid, priv->mesh_ssid_len); |
| 1128 | } |
David Woodhouse | 020f3d0 | 2007-12-12 23:29:13 -0500 | [diff] [blame] | 1129 | lbs_deb_cmd("mesh config enable %d TLV %x channel %d SSID %s\n", |
David Woodhouse | 8606213 | 2007-12-13 00:32:36 -0500 | [diff] [blame] | 1130 | enable, priv->mesh_tlv, chan, |
David Woodhouse | 06113c1 | 2007-12-11 22:52:03 -0500 | [diff] [blame] | 1131 | escape_essid(priv->mesh_ssid, priv->mesh_ssid_len)); |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 1132 | return lbs_cmd_with_response(priv, CMD_MESH_CONFIG, &cmd); |
David Woodhouse | 23a397a | 2007-12-11 18:56:42 -0500 | [diff] [blame] | 1133 | } |
| 1134 | |
Brajesh Dave | 96287ac | 2007-11-20 17:44:28 -0500 | [diff] [blame] | 1135 | static int lbs_cmd_bcn_ctrl(struct lbs_private * priv, |
| 1136 | struct cmd_ds_command *cmd, |
| 1137 | u16 cmd_action) |
| 1138 | { |
| 1139 | struct cmd_ds_802_11_beacon_control |
| 1140 | *bcn_ctrl = &cmd->params.bcn_ctrl; |
Brajesh Dave | 96287ac | 2007-11-20 17:44:28 -0500 | [diff] [blame] | 1141 | |
| 1142 | lbs_deb_enter(LBS_DEB_CMD); |
| 1143 | cmd->size = |
| 1144 | cpu_to_le16(sizeof(struct cmd_ds_802_11_beacon_control) |
| 1145 | + S_DS_GEN); |
| 1146 | cmd->command = cpu_to_le16(CMD_802_11_BEACON_CTRL); |
| 1147 | |
| 1148 | bcn_ctrl->action = cpu_to_le16(cmd_action); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1149 | bcn_ctrl->beacon_enable = cpu_to_le16(priv->beacon_enable); |
| 1150 | bcn_ctrl->beacon_period = cpu_to_le16(priv->beacon_period); |
Brajesh Dave | 96287ac | 2007-11-20 17:44:28 -0500 | [diff] [blame] | 1151 | |
| 1152 | lbs_deb_leave(LBS_DEB_CMD); |
| 1153 | return 0; |
| 1154 | } |
| 1155 | |
Marcelo Tosatti | 29f5f2a | 2007-10-30 10:52:46 -0400 | [diff] [blame] | 1156 | /* |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1157 | * Note: NEVER use lbs_queue_cmd() with addtail==0 other than for |
Marcelo Tosatti | 29f5f2a | 2007-10-30 10:52:46 -0400 | [diff] [blame] | 1158 | * the command timer, because it does not account for queued commands. |
| 1159 | */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1160 | void lbs_queue_cmd(struct lbs_private *priv, |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1161 | struct cmd_ctrl_node *cmdnode, |
| 1162 | u8 addtail) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1163 | { |
| 1164 | unsigned long flags; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1165 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1166 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1167 | |
David Woodhouse | c4ab412 | 2007-12-15 00:41:51 -0500 | [diff] [blame] | 1168 | if (!cmdnode) { |
| 1169 | lbs_deb_host("QUEUE_CMD: cmdnode is NULL\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1170 | goto done; |
| 1171 | } |
David Woodhouse | d9896ee | 2007-12-15 00:09:25 -0500 | [diff] [blame] | 1172 | if (!cmdnode->cmdbuf->size) { |
| 1173 | lbs_deb_host("DNLD_CMD: cmd size is zero\n"); |
| 1174 | goto done; |
| 1175 | } |
David Woodhouse | ae125bf | 2007-12-15 04:22:52 -0500 | [diff] [blame] | 1176 | cmdnode->result = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1177 | |
| 1178 | /* Exit_PS command needs to be queued in the header always. */ |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1179 | if (le16_to_cpu(cmdnode->cmdbuf->command) == CMD_802_11_PS_MODE) { |
| 1180 | struct cmd_ds_802_11_ps_mode *psm = (void *) cmdnode->cmdbuf; |
| 1181 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1182 | if (psm->action == cpu_to_le16(CMD_SUBCMD_EXIT_PS)) { |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1183 | if (priv->psstate != PS_STATE_FULL_POWER) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1184 | addtail = 0; |
| 1185 | } |
| 1186 | } |
| 1187 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1188 | spin_lock_irqsave(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1189 | |
David Woodhouse | ac47246 | 2007-12-08 00:35:00 +0000 | [diff] [blame] | 1190 | if (addtail) |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1191 | list_add_tail(&cmdnode->list, &priv->cmdpendingq); |
David Woodhouse | ac47246 | 2007-12-08 00:35:00 +0000 | [diff] [blame] | 1192 | else |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1193 | list_add(&cmdnode->list, &priv->cmdpendingq); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1194 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1195 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1196 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1197 | lbs_deb_host("QUEUE_CMD: inserted command 0x%04x into cmdpendingq\n", |
David Woodhouse | c4ab412 | 2007-12-15 00:41:51 -0500 | [diff] [blame] | 1198 | le16_to_cpu(cmdnode->cmdbuf->command)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1199 | |
| 1200 | done: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1201 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1202 | } |
| 1203 | |
David Woodhouse | d9896ee | 2007-12-15 00:09:25 -0500 | [diff] [blame] | 1204 | static int lbs_submit_command(struct lbs_private *priv, |
| 1205 | struct cmd_ctrl_node *cmdnode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1206 | { |
| 1207 | unsigned long flags; |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1208 | struct cmd_header *cmd; |
Eugene Teo | b031ac1 | 2007-08-02 13:18:07 -0400 | [diff] [blame] | 1209 | int ret = -1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1210 | u16 cmdsize; |
| 1211 | u16 command; |
| 1212 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1213 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1214 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1215 | cmd = cmdnode->cmdbuf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1216 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1217 | spin_lock_irqsave(&priv->driver_lock, flags); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1218 | priv->cur_cmd = cmdnode; |
| 1219 | priv->cur_cmd_retcode = 0; |
| 1220 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1221 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1222 | cmdsize = le16_to_cpu(cmd->size); |
| 1223 | command = le16_to_cpu(cmd->command); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1224 | |
David Woodhouse | e125817 | 2007-12-11 23:42:49 -0500 | [diff] [blame] | 1225 | lbs_deb_host("DNLD_CMD: command 0x%04x, seq %d, size %d, jiffies %lu\n", |
| 1226 | command, le16_to_cpu(cmd->seqnum), cmdsize, jiffies); |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1227 | lbs_deb_hex(LBS_DEB_HOST, "DNLD_CMD", (void *) cmdnode->cmdbuf, cmdsize); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1228 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1229 | ret = priv->hw_host_to_card(priv, MVMS_CMD, (u8 *) cmd, cmdsize); |
David Woodhouse | d9896ee | 2007-12-15 00:09:25 -0500 | [diff] [blame] | 1230 | if (ret) { |
| 1231 | lbs_pr_info("DNLD_CMD: hw_host_to_card failed: %d\n", ret); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1232 | spin_lock_irqsave(&priv->driver_lock, flags); |
David Woodhouse | 183aeac | 2007-12-15 01:52:54 -0500 | [diff] [blame] | 1233 | lbs_complete_command(priv, priv->cur_cmd, ret); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1234 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1235 | goto done; |
| 1236 | } |
| 1237 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1238 | lbs_deb_cmd("DNLD_CMD: sent command 0x%04x, jiffies %lu\n", command, jiffies); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1239 | |
| 1240 | /* Setup the timer after transmit command */ |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1241 | if (command == CMD_802_11_SCAN || command == CMD_802_11_AUTHENTICATE |
| 1242 | || command == CMD_802_11_ASSOCIATE) |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1243 | mod_timer(&priv->command_timer, jiffies + (10*HZ)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1244 | else |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1245 | mod_timer(&priv->command_timer, jiffies + (5*HZ)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1246 | |
| 1247 | ret = 0; |
| 1248 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1249 | done: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1250 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1251 | return ret; |
| 1252 | } |
| 1253 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1254 | static int lbs_cmd_mac_control(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1255 | struct cmd_ds_command *cmd) |
| 1256 | { |
| 1257 | struct cmd_ds_mac_control *mac = &cmd->params.macctrl; |
| 1258 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1259 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1260 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1261 | cmd->command = cpu_to_le16(CMD_MAC_CONTROL); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1262 | cmd->size = cpu_to_le16(sizeof(struct cmd_ds_mac_control) + S_DS_GEN); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1263 | mac->action = cpu_to_le16(priv->currentpacketfilter); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1264 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1265 | lbs_deb_cmd("MAC_CONTROL: action 0x%x, size %d\n", |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1266 | le16_to_cpu(mac->action), le16_to_cpu(cmd->size)); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1267 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1268 | lbs_deb_leave(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1269 | return 0; |
| 1270 | } |
| 1271 | |
| 1272 | /** |
| 1273 | * This function inserts command node to cmdfreeq |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1274 | * after cleans it. Requires priv->driver_lock held. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1275 | */ |
David Woodhouse | 183aeac | 2007-12-15 01:52:54 -0500 | [diff] [blame] | 1276 | static void __lbs_cleanup_and_insert_cmd(struct lbs_private *priv, |
David Woodhouse | 5ba2f8a | 2007-12-15 02:02:56 -0500 | [diff] [blame] | 1277 | struct cmd_ctrl_node *cmdnode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1278 | { |
David Woodhouse | 5ba2f8a | 2007-12-15 02:02:56 -0500 | [diff] [blame] | 1279 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1280 | |
David Woodhouse | 5ba2f8a | 2007-12-15 02:02:56 -0500 | [diff] [blame] | 1281 | if (!cmdnode) |
| 1282 | goto out; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1283 | |
David Woodhouse | 5ba2f8a | 2007-12-15 02:02:56 -0500 | [diff] [blame] | 1284 | cmdnode->callback = NULL; |
| 1285 | cmdnode->callback_arg = 0; |
| 1286 | |
| 1287 | memset(cmdnode->cmdbuf, 0, LBS_CMD_BUFFER_SIZE); |
| 1288 | |
| 1289 | list_add_tail(&cmdnode->list, &priv->cmdfreeq); |
| 1290 | out: |
| 1291 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1292 | } |
| 1293 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1294 | static void lbs_cleanup_and_insert_cmd(struct lbs_private *priv, |
| 1295 | struct cmd_ctrl_node *ptempcmd) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1296 | { |
| 1297 | unsigned long flags; |
| 1298 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1299 | spin_lock_irqsave(&priv->driver_lock, flags); |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1300 | __lbs_cleanup_and_insert_cmd(priv, ptempcmd); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1301 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1302 | } |
| 1303 | |
David Woodhouse | 183aeac | 2007-12-15 01:52:54 -0500 | [diff] [blame] | 1304 | void lbs_complete_command(struct lbs_private *priv, struct cmd_ctrl_node *cmd, |
| 1305 | int result) |
| 1306 | { |
| 1307 | if (cmd == priv->cur_cmd) |
| 1308 | priv->cur_cmd_retcode = result; |
David Woodhouse | 5ba2f8a | 2007-12-15 02:02:56 -0500 | [diff] [blame] | 1309 | |
David Woodhouse | ae125bf | 2007-12-15 04:22:52 -0500 | [diff] [blame] | 1310 | cmd->result = result; |
David Woodhouse | 5ba2f8a | 2007-12-15 02:02:56 -0500 | [diff] [blame] | 1311 | cmd->cmdwaitqwoken = 1; |
| 1312 | wake_up_interruptible(&cmd->cmdwait_q); |
| 1313 | |
David Woodhouse | ad12d0f | 2007-12-15 02:06:16 -0500 | [diff] [blame] | 1314 | if (!cmd->callback) |
| 1315 | __lbs_cleanup_and_insert_cmd(priv, cmd); |
David Woodhouse | 183aeac | 2007-12-15 01:52:54 -0500 | [diff] [blame] | 1316 | priv->cur_cmd = NULL; |
| 1317 | } |
| 1318 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1319 | int lbs_set_radio_control(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1320 | { |
| 1321 | int ret = 0; |
| 1322 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1323 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1324 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1325 | ret = lbs_prepare_and_send_command(priv, |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1326 | CMD_802_11_RADIO_CONTROL, |
| 1327 | CMD_ACT_SET, |
| 1328 | CMD_OPTION_WAITFORRSP, 0, NULL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1329 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1330 | lbs_deb_cmd("RADIO_SET: radio %d, preamble %d\n", |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1331 | priv->radioon, priv->preamble); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1332 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1333 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1334 | return ret; |
| 1335 | } |
| 1336 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1337 | int lbs_set_mac_packet_filter(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1338 | { |
| 1339 | int ret = 0; |
| 1340 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1341 | lbs_deb_enter(LBS_DEB_CMD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1342 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1343 | /* Send MAC control command to station */ |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1344 | ret = lbs_prepare_and_send_command(priv, |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1345 | CMD_MAC_CONTROL, 0, 0, 0, NULL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1346 | |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1347 | lbs_deb_leave_args(LBS_DEB_CMD, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1348 | return ret; |
| 1349 | } |
| 1350 | |
| 1351 | /** |
| 1352 | * @brief This function prepare the command before send to firmware. |
| 1353 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1354 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1355 | * @param cmd_no command number |
| 1356 | * @param cmd_action command action: GET or SET |
| 1357 | * @param wait_option wait option: wait response or not |
| 1358 | * @param cmd_oid cmd oid: treated as sub command |
| 1359 | * @param pdata_buf A pointer to informaion buffer |
| 1360 | * @return 0 or -1 |
| 1361 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1362 | int lbs_prepare_and_send_command(struct lbs_private *priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1363 | u16 cmd_no, |
| 1364 | u16 cmd_action, |
| 1365 | u16 wait_option, u32 cmd_oid, void *pdata_buf) |
| 1366 | { |
| 1367 | int ret = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1368 | struct cmd_ctrl_node *cmdnode; |
| 1369 | struct cmd_ds_command *cmdptr; |
| 1370 | unsigned long flags; |
| 1371 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1372 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1373 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1374 | if (!priv) { |
| 1375 | lbs_deb_host("PREP_CMD: priv is NULL\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1376 | ret = -1; |
| 1377 | goto done; |
| 1378 | } |
| 1379 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1380 | if (priv->surpriseremoved) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1381 | lbs_deb_host("PREP_CMD: card removed\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1382 | ret = -1; |
| 1383 | goto done; |
| 1384 | } |
| 1385 | |
Holger Schurig | 0d61d04 | 2007-12-05 17:58:06 +0100 | [diff] [blame] | 1386 | cmdnode = lbs_get_cmd_ctrl_node(priv); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1387 | |
| 1388 | if (cmdnode == NULL) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1389 | lbs_deb_host("PREP_CMD: cmdnode is NULL\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1390 | |
| 1391 | /* Wake up main thread to execute next command */ |
Dan Williams | fe33615 | 2007-08-02 11:32:25 -0400 | [diff] [blame] | 1392 | wake_up_interruptible(&priv->waitq); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1393 | ret = -1; |
| 1394 | goto done; |
| 1395 | } |
| 1396 | |
David Woodhouse | 8e5b6b2d | 2007-12-14 23:08:13 -0500 | [diff] [blame] | 1397 | lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1398 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1399 | cmdptr = (struct cmd_ds_command *)cmdnode->cmdbuf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1400 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1401 | lbs_deb_host("PREP_CMD: command 0x%04x\n", cmd_no); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1402 | |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1403 | /* Set sequence number, command and INT option */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1404 | priv->seqnum++; |
| 1405 | cmdptr->seqnum = cpu_to_le16(priv->seqnum); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1406 | |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1407 | cmdptr->command = cpu_to_le16(cmd_no); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1408 | cmdptr->result = 0; |
| 1409 | |
| 1410 | switch (cmd_no) { |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1411 | case CMD_802_11_PS_MODE: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1412 | ret = lbs_cmd_802_11_ps_mode(priv, cmdptr, cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1413 | break; |
| 1414 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1415 | case CMD_802_11_SCAN: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1416 | ret = lbs_cmd_80211_scan(priv, cmdptr, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1417 | break; |
| 1418 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1419 | case CMD_MAC_CONTROL: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1420 | ret = lbs_cmd_mac_control(priv, cmdptr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1421 | break; |
| 1422 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1423 | case CMD_802_11_ASSOCIATE: |
| 1424 | case CMD_802_11_REASSOCIATE: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1425 | ret = lbs_cmd_80211_associate(priv, cmdptr, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1426 | break; |
| 1427 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1428 | case CMD_802_11_DEAUTHENTICATE: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1429 | ret = lbs_cmd_80211_deauthenticate(priv, cmdptr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1430 | break; |
| 1431 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1432 | case CMD_802_11_SET_WEP: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1433 | ret = lbs_cmd_802_11_set_wep(priv, cmdptr, cmd_action, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1434 | break; |
| 1435 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1436 | case CMD_802_11_AD_HOC_START: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1437 | ret = lbs_cmd_80211_ad_hoc_start(priv, cmdptr, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1438 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1439 | case CMD_CODE_DNLD: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1440 | break; |
| 1441 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1442 | case CMD_802_11_RESET: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1443 | ret = lbs_cmd_802_11_reset(priv, cmdptr, cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1444 | break; |
| 1445 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1446 | case CMD_802_11_GET_LOG: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1447 | ret = lbs_cmd_802_11_get_log(priv, cmdptr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1448 | break; |
| 1449 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1450 | case CMD_802_11_AUTHENTICATE: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1451 | ret = lbs_cmd_80211_authenticate(priv, cmdptr, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1452 | break; |
| 1453 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1454 | case CMD_802_11_GET_STAT: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1455 | ret = lbs_cmd_802_11_get_stat(priv, cmdptr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1456 | break; |
| 1457 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1458 | case CMD_802_11_SNMP_MIB: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1459 | ret = lbs_cmd_802_11_snmp_mib(priv, cmdptr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1460 | cmd_action, cmd_oid, pdata_buf); |
| 1461 | break; |
| 1462 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1463 | case CMD_MAC_REG_ACCESS: |
| 1464 | case CMD_BBP_REG_ACCESS: |
| 1465 | case CMD_RF_REG_ACCESS: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1466 | ret = lbs_cmd_reg_access(priv, cmdptr, cmd_action, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1467 | break; |
| 1468 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1469 | case CMD_802_11_RF_TX_POWER: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1470 | ret = lbs_cmd_802_11_rf_tx_power(priv, cmdptr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1471 | cmd_action, pdata_buf); |
| 1472 | break; |
| 1473 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1474 | case CMD_802_11_RADIO_CONTROL: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1475 | ret = lbs_cmd_802_11_radio_control(priv, cmdptr, cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1476 | break; |
| 1477 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1478 | case CMD_802_11_RATE_ADAPT_RATESET: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1479 | ret = lbs_cmd_802_11_rate_adapt_rateset(priv, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1480 | cmdptr, cmd_action); |
| 1481 | break; |
| 1482 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1483 | case CMD_MAC_MULTICAST_ADR: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1484 | ret = lbs_cmd_mac_multicast_adr(priv, cmdptr, cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1485 | break; |
| 1486 | |
Luis Carlos Cobo | 965f8bb | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 1487 | case CMD_802_11_MONITOR_MODE: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1488 | ret = lbs_cmd_802_11_monitor_mode(priv, cmdptr, |
Luis Carlos Cobo | 965f8bb | 2007-08-02 13:16:55 -0400 | [diff] [blame] | 1489 | cmd_action, pdata_buf); |
| 1490 | break; |
| 1491 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1492 | case CMD_802_11_AD_HOC_JOIN: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1493 | ret = lbs_cmd_80211_ad_hoc_join(priv, cmdptr, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1494 | break; |
| 1495 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1496 | case CMD_802_11_RSSI: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1497 | ret = lbs_cmd_802_11_rssi(priv, cmdptr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1498 | break; |
| 1499 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1500 | case CMD_802_11_AD_HOC_STOP: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1501 | ret = lbs_cmd_80211_ad_hoc_stop(priv, cmdptr); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1502 | break; |
| 1503 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1504 | case CMD_802_11_ENABLE_RSN: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1505 | ret = lbs_cmd_802_11_enable_rsn(priv, cmdptr, cmd_action, |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 1506 | pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1507 | break; |
| 1508 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1509 | case CMD_802_11_KEY_MATERIAL: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1510 | ret = lbs_cmd_802_11_key_material(priv, cmdptr, cmd_action, |
Dan Williams | 90a4221 | 2007-05-25 23:01:24 -0400 | [diff] [blame] | 1511 | cmd_oid, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1512 | break; |
| 1513 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1514 | case CMD_802_11_PAIRWISE_TSC: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1515 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1516 | case CMD_802_11_GROUP_TSC: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1517 | break; |
| 1518 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1519 | case CMD_802_11_MAC_ADDRESS: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1520 | ret = lbs_cmd_802_11_mac_address(priv, cmdptr, cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1521 | break; |
| 1522 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1523 | case CMD_802_11_EEPROM_ACCESS: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1524 | ret = lbs_cmd_802_11_eeprom_access(priv, cmdptr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1525 | cmd_action, pdata_buf); |
| 1526 | break; |
| 1527 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1528 | case CMD_802_11_SET_AFC: |
| 1529 | case CMD_802_11_GET_AFC: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1530 | |
| 1531 | cmdptr->command = cpu_to_le16(cmd_no); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1532 | cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_802_11_afc) + |
| 1533 | S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1534 | |
| 1535 | memmove(&cmdptr->params.afc, |
| 1536 | pdata_buf, sizeof(struct cmd_ds_802_11_afc)); |
| 1537 | |
| 1538 | ret = 0; |
| 1539 | goto done; |
| 1540 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1541 | case CMD_802_11D_DOMAIN_INFO: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1542 | ret = lbs_cmd_802_11d_domain_info(priv, cmdptr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1543 | cmd_no, cmd_action); |
| 1544 | break; |
| 1545 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1546 | case CMD_802_11_SLEEP_PARAMS: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1547 | ret = lbs_cmd_802_11_sleep_params(priv, cmdptr, cmd_action); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1548 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1549 | case CMD_802_11_INACTIVITY_TIMEOUT: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1550 | ret = lbs_cmd_802_11_inactivity_timeout(priv, cmdptr, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1551 | cmd_action, pdata_buf); |
David Woodhouse | 8e5b6b2d | 2007-12-14 23:08:13 -0500 | [diff] [blame] | 1552 | lbs_set_cmd_ctrl_node(priv, cmdnode, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1553 | break; |
| 1554 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1555 | case CMD_802_11_TPC_CFG: |
| 1556 | cmdptr->command = cpu_to_le16(CMD_802_11_TPC_CFG); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1557 | cmdptr->size = |
| 1558 | cpu_to_le16(sizeof(struct cmd_ds_802_11_tpc_cfg) + |
| 1559 | S_DS_GEN); |
| 1560 | |
| 1561 | memmove(&cmdptr->params.tpccfg, |
| 1562 | pdata_buf, sizeof(struct cmd_ds_802_11_tpc_cfg)); |
| 1563 | |
| 1564 | ret = 0; |
| 1565 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1566 | case CMD_802_11_LED_GPIO_CTRL: |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1567 | { |
| 1568 | struct mrvlietypes_ledgpio *gpio = |
| 1569 | (struct mrvlietypes_ledgpio*) |
| 1570 | cmdptr->params.ledgpio.data; |
| 1571 | |
| 1572 | memmove(&cmdptr->params.ledgpio, |
| 1573 | pdata_buf, |
| 1574 | sizeof(struct cmd_ds_802_11_led_ctrl)); |
| 1575 | |
| 1576 | cmdptr->command = |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1577 | cpu_to_le16(CMD_802_11_LED_GPIO_CTRL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1578 | |
| 1579 | #define ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN 8 |
| 1580 | cmdptr->size = |
Holger Schurig | c2df2ef | 2007-12-07 15:30:44 +0000 | [diff] [blame] | 1581 | cpu_to_le16(le16_to_cpu(gpio->header.len) |
| 1582 | + S_DS_GEN |
| 1583 | + ACTION_NUMLED_TLVTYPE_LEN_FIELDS_LEN); |
| 1584 | gpio->header.len = gpio->header.len; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1585 | |
| 1586 | ret = 0; |
| 1587 | break; |
| 1588 | } |
Holger Schurig | 3a18864 | 2007-11-26 10:07:14 +0100 | [diff] [blame] | 1589 | case CMD_802_11_SUBSCRIBE_EVENT: |
| 1590 | lbs_cmd_802_11_subscribe_event(priv, cmdptr, |
| 1591 | cmd_action, pdata_buf); |
| 1592 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1593 | case CMD_802_11_PWR_CFG: |
| 1594 | cmdptr->command = cpu_to_le16(CMD_802_11_PWR_CFG); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1595 | cmdptr->size = |
| 1596 | cpu_to_le16(sizeof(struct cmd_ds_802_11_pwr_cfg) + |
| 1597 | S_DS_GEN); |
| 1598 | memmove(&cmdptr->params.pwrcfg, pdata_buf, |
| 1599 | sizeof(struct cmd_ds_802_11_pwr_cfg)); |
| 1600 | |
| 1601 | ret = 0; |
| 1602 | break; |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1603 | case CMD_BT_ACCESS: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1604 | ret = lbs_cmd_bt_access(priv, cmdptr, cmd_action, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1605 | break; |
| 1606 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1607 | case CMD_FWT_ACCESS: |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1608 | ret = lbs_cmd_fwt_access(priv, cmdptr, cmd_action, pdata_buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1609 | break; |
| 1610 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1611 | case CMD_GET_TSF: |
| 1612 | cmdptr->command = cpu_to_le16(CMD_GET_TSF); |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 1613 | cmdptr->size = cpu_to_le16(sizeof(struct cmd_ds_get_tsf) + |
| 1614 | S_DS_GEN); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1615 | ret = 0; |
| 1616 | break; |
Brajesh Dave | 96287ac | 2007-11-20 17:44:28 -0500 | [diff] [blame] | 1617 | case CMD_802_11_BEACON_CTRL: |
| 1618 | ret = lbs_cmd_bcn_ctrl(priv, cmdptr, cmd_action); |
| 1619 | break; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1620 | default: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1621 | lbs_deb_host("PREP_CMD: unknown command 0x%04x\n", cmd_no); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1622 | ret = -1; |
| 1623 | break; |
| 1624 | } |
| 1625 | |
| 1626 | /* return error, since the command preparation failed */ |
| 1627 | if (ret != 0) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1628 | lbs_deb_host("PREP_CMD: command preparation failed\n"); |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1629 | lbs_cleanup_and_insert_cmd(priv, cmdnode); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1630 | ret = -1; |
| 1631 | goto done; |
| 1632 | } |
| 1633 | |
| 1634 | cmdnode->cmdwaitqwoken = 0; |
| 1635 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1636 | lbs_queue_cmd(priv, cmdnode, 1); |
Dan Williams | fe33615 | 2007-08-02 11:32:25 -0400 | [diff] [blame] | 1637 | wake_up_interruptible(&priv->waitq); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1638 | |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1639 | if (wait_option & CMD_OPTION_WAITFORRSP) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1640 | lbs_deb_host("PREP_CMD: wait for response\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1641 | might_sleep(); |
| 1642 | wait_event_interruptible(cmdnode->cmdwait_q, |
| 1643 | cmdnode->cmdwaitqwoken); |
| 1644 | } |
| 1645 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1646 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 1647 | if (priv->cur_cmd_retcode) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1648 | lbs_deb_host("PREP_CMD: command failed with return code %d\n", |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1649 | priv->cur_cmd_retcode); |
| 1650 | priv->cur_cmd_retcode = 0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1651 | ret = -1; |
| 1652 | } |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1653 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1654 | |
| 1655 | done: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1656 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1657 | return ret; |
| 1658 | } |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1659 | EXPORT_SYMBOL_GPL(lbs_prepare_and_send_command); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1660 | |
| 1661 | /** |
| 1662 | * @brief This function allocates the command buffer and link |
| 1663 | * it to command free queue. |
| 1664 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1665 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1666 | * @return 0 or -1 |
| 1667 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1668 | int lbs_allocate_cmd_buffer(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1669 | { |
| 1670 | int ret = 0; |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1671 | u32 bufsize; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1672 | u32 i; |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1673 | struct cmd_ctrl_node *cmdarray; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1674 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1675 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1676 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1677 | /* Allocate and initialize the command array */ |
| 1678 | bufsize = sizeof(struct cmd_ctrl_node) * LBS_NUM_CMD_BUFFERS; |
| 1679 | if (!(cmdarray = kzalloc(bufsize, GFP_KERNEL))) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1680 | lbs_deb_host("ALLOC_CMD_BUF: tempcmd_array is NULL\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1681 | ret = -1; |
| 1682 | goto done; |
| 1683 | } |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1684 | priv->cmd_array = cmdarray; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1685 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1686 | /* Allocate and initialize each command buffer in the command array */ |
| 1687 | for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) { |
| 1688 | cmdarray[i].cmdbuf = kzalloc(LBS_CMD_BUFFER_SIZE, GFP_KERNEL); |
| 1689 | if (!cmdarray[i].cmdbuf) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1690 | lbs_deb_host("ALLOC_CMD_BUF: ptempvirtualaddr is NULL\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1691 | ret = -1; |
| 1692 | goto done; |
| 1693 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1694 | } |
| 1695 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1696 | for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) { |
| 1697 | init_waitqueue_head(&cmdarray[i].cmdwait_q); |
| 1698 | lbs_cleanup_and_insert_cmd(priv, &cmdarray[i]); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1699 | } |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1700 | ret = 0; |
Holger Schurig | 9012b28 | 2007-05-25 11:27:16 -0400 | [diff] [blame] | 1701 | |
| 1702 | done: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1703 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1704 | return ret; |
| 1705 | } |
| 1706 | |
| 1707 | /** |
| 1708 | * @brief This function frees the command buffer. |
| 1709 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1710 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1711 | * @return 0 or -1 |
| 1712 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1713 | int lbs_free_cmd_buffer(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1714 | { |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1715 | struct cmd_ctrl_node *cmdarray; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1716 | unsigned int i; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1717 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1718 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1719 | |
| 1720 | /* need to check if cmd array is allocated or not */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1721 | if (priv->cmd_array == NULL) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1722 | lbs_deb_host("FREE_CMD_BUF: cmd_array is NULL\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1723 | goto done; |
| 1724 | } |
| 1725 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1726 | cmdarray = priv->cmd_array; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1727 | |
| 1728 | /* Release shared memory buffers */ |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1729 | for (i = 0; i < LBS_NUM_CMD_BUFFERS; i++) { |
| 1730 | if (cmdarray[i].cmdbuf) { |
| 1731 | kfree(cmdarray[i].cmdbuf); |
| 1732 | cmdarray[i].cmdbuf = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1733 | } |
| 1734 | } |
| 1735 | |
| 1736 | /* Release cmd_ctrl_node */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1737 | if (priv->cmd_array) { |
| 1738 | kfree(priv->cmd_array); |
| 1739 | priv->cmd_array = NULL; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1740 | } |
| 1741 | |
| 1742 | done: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1743 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1744 | return 0; |
| 1745 | } |
| 1746 | |
| 1747 | /** |
| 1748 | * @brief This function gets a free command node if available in |
| 1749 | * command free queue. |
| 1750 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1751 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1752 | * @return cmd_ctrl_node A pointer to cmd_ctrl_node structure or NULL |
| 1753 | */ |
David Woodhouse | 2fd6cfe | 2007-12-11 17:44:10 -0500 | [diff] [blame] | 1754 | static struct cmd_ctrl_node *lbs_get_cmd_ctrl_node(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1755 | { |
| 1756 | struct cmd_ctrl_node *tempnode; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1757 | unsigned long flags; |
| 1758 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1759 | lbs_deb_enter(LBS_DEB_HOST); |
| 1760 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1761 | if (!priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1762 | return NULL; |
| 1763 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1764 | spin_lock_irqsave(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1765 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1766 | if (!list_empty(&priv->cmdfreeq)) { |
| 1767 | tempnode = list_first_entry(&priv->cmdfreeq, |
Li Zefan | abe3ed1 | 2007-12-06 13:01:21 +0100 | [diff] [blame] | 1768 | struct cmd_ctrl_node, list); |
| 1769 | list_del(&tempnode->list); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1770 | } else { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1771 | lbs_deb_host("GET_CMD_NODE: cmd_ctrl_node is not available\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1772 | tempnode = NULL; |
| 1773 | } |
| 1774 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1775 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1776 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1777 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1778 | return tempnode; |
| 1779 | } |
| 1780 | |
| 1781 | /** |
| 1782 | * @brief This function cleans command node. |
| 1783 | * |
| 1784 | * @param ptempnode A pointer to cmdCtrlNode structure |
| 1785 | * @return n/a |
| 1786 | */ |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1787 | |
| 1788 | /** |
| 1789 | * @brief This function initializes the command node. |
| 1790 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1791 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1792 | * @param ptempnode A pointer to cmd_ctrl_node structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1793 | * @param pdata_buf A pointer to informaion buffer |
| 1794 | * @return 0 or -1 |
| 1795 | */ |
David Woodhouse | 2fd6cfe | 2007-12-11 17:44:10 -0500 | [diff] [blame] | 1796 | static void lbs_set_cmd_ctrl_node(struct lbs_private *priv, |
| 1797 | struct cmd_ctrl_node *ptempnode, |
David Woodhouse | 8e5b6b2d | 2007-12-14 23:08:13 -0500 | [diff] [blame] | 1798 | void *pdata_buf) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1799 | { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1800 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1801 | |
| 1802 | if (!ptempnode) |
| 1803 | return; |
| 1804 | |
David Woodhouse | 1723047 | 2007-12-07 15:13:05 +0000 | [diff] [blame] | 1805 | ptempnode->callback = NULL; |
David Woodhouse | 7556767 | 2007-12-15 02:38:17 -0500 | [diff] [blame] | 1806 | ptempnode->callback_arg = (unsigned long)pdata_buf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1807 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1808 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1809 | } |
| 1810 | |
| 1811 | /** |
| 1812 | * @brief This function executes next command in command |
| 1813 | * pending queue. It will put fimware back to PS mode |
| 1814 | * if applicable. |
| 1815 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1816 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1817 | * @return 0 or -1 |
| 1818 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1819 | int lbs_execute_next_command(struct lbs_private *priv) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1820 | { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1821 | struct cmd_ctrl_node *cmdnode = NULL; |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1822 | struct cmd_header *cmd; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1823 | unsigned long flags; |
| 1824 | int ret = 0; |
| 1825 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1826 | // Debug group is LBS_DEB_THREAD and not LBS_DEB_HOST, because the |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1827 | // only caller to us is lbs_thread() and we get even when a |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1828 | // data packet is received |
| 1829 | lbs_deb_enter(LBS_DEB_THREAD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1830 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1831 | spin_lock_irqsave(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1832 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1833 | if (priv->cur_cmd) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1834 | lbs_pr_alert( "EXEC_NEXT_CMD: already processing command!\n"); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1835 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1836 | ret = -1; |
| 1837 | goto done; |
| 1838 | } |
| 1839 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1840 | if (!list_empty(&priv->cmdpendingq)) { |
| 1841 | cmdnode = list_first_entry(&priv->cmdpendingq, |
Li Zefan | abe3ed1 | 2007-12-06 13:01:21 +0100 | [diff] [blame] | 1842 | struct cmd_ctrl_node, list); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1843 | } |
| 1844 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1845 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1846 | |
| 1847 | if (cmdnode) { |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1848 | cmd = cmdnode->cmdbuf; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1849 | |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1850 | if (is_command_allowed_in_ps(le16_to_cpu(cmd->command))) { |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1851 | if ((priv->psstate == PS_STATE_SLEEP) || |
| 1852 | (priv->psstate == PS_STATE_PRE_SLEEP)) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1853 | lbs_deb_host( |
| 1854 | "EXEC_NEXT_CMD: cannot send cmd 0x%04x in psstate %d\n", |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1855 | le16_to_cpu(cmd->command), |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1856 | priv->psstate); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1857 | ret = -1; |
| 1858 | goto done; |
| 1859 | } |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1860 | lbs_deb_host("EXEC_NEXT_CMD: OK to send command " |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1861 | "0x%04x in psstate %d\n", |
| 1862 | le16_to_cpu(cmd->command), priv->psstate); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1863 | } else if (priv->psstate != PS_STATE_FULL_POWER) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1864 | /* |
| 1865 | * 1. Non-PS command: |
| 1866 | * Queue it. set needtowakeup to TRUE if current state |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1867 | * is SLEEP, otherwise call lbs_ps_wakeup to send Exit_PS. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1868 | * 2. PS command but not Exit_PS: |
| 1869 | * Ignore it. |
| 1870 | * 3. PS command Exit_PS: |
| 1871 | * Set needtowakeup to TRUE if current state is SLEEP, |
| 1872 | * otherwise send this command down to firmware |
| 1873 | * immediately. |
| 1874 | */ |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1875 | if (cmd->command != cpu_to_le16(CMD_802_11_PS_MODE)) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1876 | /* Prepare to send Exit PS, |
| 1877 | * this non PS command will be sent later */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1878 | if ((priv->psstate == PS_STATE_SLEEP) |
| 1879 | || (priv->psstate == PS_STATE_PRE_SLEEP) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1880 | ) { |
| 1881 | /* w/ new scheme, it will not reach here. |
| 1882 | since it is blocked in main_thread. */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1883 | priv->needtowakeup = 1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1884 | } else |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1885 | lbs_ps_wakeup(priv, 0); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1886 | |
| 1887 | ret = 0; |
| 1888 | goto done; |
| 1889 | } else { |
| 1890 | /* |
| 1891 | * PS command. Ignore it if it is not Exit_PS. |
| 1892 | * otherwise send it down immediately. |
| 1893 | */ |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1894 | struct cmd_ds_802_11_ps_mode *psm = (void *)cmd; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1895 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1896 | lbs_deb_host( |
| 1897 | "EXEC_NEXT_CMD: PS cmd, action 0x%02x\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1898 | psm->action); |
| 1899 | if (psm->action != |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 1900 | cpu_to_le16(CMD_SUBCMD_EXIT_PS)) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1901 | lbs_deb_host( |
| 1902 | "EXEC_NEXT_CMD: ignore ENTER_PS cmd\n"); |
Li Zefan | abe3ed1 | 2007-12-06 13:01:21 +0100 | [diff] [blame] | 1903 | list_del(&cmdnode->list); |
David Woodhouse | 183aeac | 2007-12-15 01:52:54 -0500 | [diff] [blame] | 1904 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 1905 | lbs_complete_command(priv, cmdnode, 0); |
| 1906 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1907 | |
| 1908 | ret = 0; |
| 1909 | goto done; |
| 1910 | } |
| 1911 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1912 | if ((priv->psstate == PS_STATE_SLEEP) || |
| 1913 | (priv->psstate == PS_STATE_PRE_SLEEP)) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1914 | lbs_deb_host( |
| 1915 | "EXEC_NEXT_CMD: ignore EXIT_PS cmd in sleep\n"); |
Li Zefan | abe3ed1 | 2007-12-06 13:01:21 +0100 | [diff] [blame] | 1916 | list_del(&cmdnode->list); |
David Woodhouse | 183aeac | 2007-12-15 01:52:54 -0500 | [diff] [blame] | 1917 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 1918 | lbs_complete_command(priv, cmdnode, 0); |
| 1919 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1920 | priv->needtowakeup = 1; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1921 | |
| 1922 | ret = 0; |
| 1923 | goto done; |
| 1924 | } |
| 1925 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1926 | lbs_deb_host( |
| 1927 | "EXEC_NEXT_CMD: sending EXIT_PS\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1928 | } |
| 1929 | } |
Li Zefan | abe3ed1 | 2007-12-06 13:01:21 +0100 | [diff] [blame] | 1930 | list_del(&cmdnode->list); |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1931 | lbs_deb_host("EXEC_NEXT_CMD: sending command 0x%04x\n", |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 1932 | le16_to_cpu(cmd->command)); |
David Woodhouse | d9896ee | 2007-12-15 00:09:25 -0500 | [diff] [blame] | 1933 | lbs_submit_command(priv, cmdnode); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1934 | } else { |
| 1935 | /* |
| 1936 | * check if in power save mode, if yes, put the device back |
| 1937 | * to PS mode |
| 1938 | */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1939 | if ((priv->psmode != LBS802_11POWERMODECAM) && |
| 1940 | (priv->psstate == PS_STATE_FULL_POWER) && |
| 1941 | ((priv->connect_status == LBS_CONNECTED) || |
| 1942 | (priv->mesh_connect_status == LBS_CONNECTED))) { |
| 1943 | if (priv->secinfo.WPAenabled || |
| 1944 | priv->secinfo.WPA2enabled) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1945 | /* check for valid WPA group keys */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 1946 | if (priv->wpa_mcast_key.len || |
| 1947 | priv->wpa_unicast_key.len) { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1948 | lbs_deb_host( |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1949 | "EXEC_NEXT_CMD: WPA enabled and GTK_SET" |
| 1950 | " go back to PS_SLEEP"); |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1951 | lbs_ps_sleep(priv, 0); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1952 | } |
| 1953 | } else { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1954 | lbs_deb_host( |
| 1955 | "EXEC_NEXT_CMD: cmdpendingq empty, " |
| 1956 | "go back to PS_SLEEP"); |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 1957 | lbs_ps_sleep(priv, 0); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1958 | } |
| 1959 | } |
| 1960 | } |
| 1961 | |
| 1962 | ret = 0; |
| 1963 | done: |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1964 | lbs_deb_leave(LBS_DEB_THREAD); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1965 | return ret; |
| 1966 | } |
| 1967 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1968 | void lbs_send_iwevcustom_event(struct lbs_private *priv, s8 *str) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1969 | { |
| 1970 | union iwreq_data iwrq; |
| 1971 | u8 buf[50]; |
| 1972 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1973 | lbs_deb_enter(LBS_DEB_WEXT); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1974 | |
| 1975 | memset(&iwrq, 0, sizeof(union iwreq_data)); |
| 1976 | memset(buf, 0, sizeof(buf)); |
| 1977 | |
| 1978 | snprintf(buf, sizeof(buf) - 1, "%s", str); |
| 1979 | |
| 1980 | iwrq.data.length = strlen(buf) + 1 + IW_EV_LCP_LEN; |
| 1981 | |
| 1982 | /* Send Event to upper layer */ |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1983 | lbs_deb_wext("event indication string %s\n", (char *)buf); |
| 1984 | lbs_deb_wext("event indication length %d\n", iwrq.data.length); |
| 1985 | lbs_deb_wext("sending wireless event IWEVCUSTOM for %s\n", str); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1986 | |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 1987 | wireless_send_event(priv->dev, IWEVCUSTOM, &iwrq, buf); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1988 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1989 | lbs_deb_leave(LBS_DEB_WEXT); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1990 | } |
| 1991 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 1992 | static int sendconfirmsleep(struct lbs_private *priv, u8 *cmdptr, u16 size) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1993 | { |
| 1994 | unsigned long flags; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1995 | int ret = 0; |
| 1996 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1997 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 1998 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 1999 | lbs_deb_host("SEND_SLEEPC_CMD: before download, cmd size %d\n", |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2000 | size); |
| 2001 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2002 | lbs_deb_hex(LBS_DEB_HOST, "sleep confirm command", cmdptr, size); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2003 | |
Holger Schurig | 208fdd2 | 2007-05-25 12:17:06 -0400 | [diff] [blame] | 2004 | ret = priv->hw_host_to_card(priv, MVMS_CMD, cmdptr, size); |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 2005 | priv->dnld_sent = DNLD_RES_RECEIVED; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2006 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2007 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 2008 | if (priv->intcounter || priv->currenttxskb) |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2009 | lbs_deb_host("SEND_SLEEPC_CMD: intcounter %d, currenttxskb %p\n", |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2010 | priv->intcounter, priv->currenttxskb); |
| 2011 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2012 | |
| 2013 | if (ret) { |
| 2014 | lbs_pr_alert( |
| 2015 | "SEND_SLEEPC_CMD: Host to Card failed for Confirm Sleep\n"); |
| 2016 | } else { |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2017 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 2018 | if (!priv->intcounter) { |
| 2019 | priv->psstate = PS_STATE_SLEEP; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2020 | } else { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2021 | lbs_deb_host("SEND_SLEEPC_CMD: after sent, intcounter %d\n", |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2022 | priv->intcounter); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2023 | } |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2024 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2025 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2026 | lbs_deb_host("SEND_SLEEPC_CMD: sent confirm sleep\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2027 | } |
| 2028 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2029 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2030 | return ret; |
| 2031 | } |
| 2032 | |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 2033 | void lbs_ps_sleep(struct lbs_private *priv, int wait_option) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2034 | { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2035 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2036 | |
| 2037 | /* |
| 2038 | * PS is currently supported only in Infrastructure mode |
| 2039 | * Remove this check if it is to be supported in IBSS mode also |
| 2040 | */ |
| 2041 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 2042 | lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE, |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 2043 | CMD_SUBCMD_ENTER_PS, wait_option, 0, NULL); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2044 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2045 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2046 | } |
| 2047 | |
| 2048 | /** |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2049 | * @brief This function sends Exit_PS command to firmware. |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2050 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 2051 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2052 | * @param wait_option wait response or not |
| 2053 | * @return n/a |
| 2054 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 2055 | void lbs_ps_wakeup(struct lbs_private *priv, int wait_option) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2056 | { |
David Woodhouse | 981f187 | 2007-05-25 23:36:54 -0400 | [diff] [blame] | 2057 | __le32 Localpsmode; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2058 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2059 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2060 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 2061 | Localpsmode = cpu_to_le32(LBS802_11POWERMODECAM); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2062 | |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 2063 | lbs_prepare_and_send_command(priv, CMD_802_11_PS_MODE, |
Dan Williams | 0aef64d | 2007-08-02 11:31:18 -0400 | [diff] [blame] | 2064 | CMD_SUBCMD_EXIT_PS, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2065 | wait_option, 0, &Localpsmode); |
| 2066 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2067 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2068 | } |
| 2069 | |
| 2070 | /** |
| 2071 | * @brief This function checks condition and prepares to |
| 2072 | * send sleep confirm command to firmware if ok. |
| 2073 | * |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 2074 | * @param priv A pointer to struct lbs_private structure |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2075 | * @param psmode Power Saving mode |
| 2076 | * @return n/a |
| 2077 | */ |
Holger Schurig | 69f9032 | 2007-11-23 15:43:44 +0100 | [diff] [blame] | 2078 | void lbs_ps_confirm_sleep(struct lbs_private *priv, u16 psmode) |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2079 | { |
| 2080 | unsigned long flags =0; |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2081 | u8 allowed = 1; |
| 2082 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2083 | lbs_deb_enter(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2084 | |
Holger Schurig | 634b8f4 | 2007-05-25 13:05:16 -0400 | [diff] [blame] | 2085 | if (priv->dnld_sent) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2086 | allowed = 0; |
David Woodhouse | 23d36ee | 2007-12-12 00:14:21 -0500 | [diff] [blame] | 2087 | lbs_deb_host("dnld_sent was set\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2088 | } |
| 2089 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2090 | spin_lock_irqsave(&priv->driver_lock, flags); |
| 2091 | if (priv->cur_cmd) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2092 | allowed = 0; |
David Woodhouse | 23d36ee | 2007-12-12 00:14:21 -0500 | [diff] [blame] | 2093 | lbs_deb_host("cur_cmd was set\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2094 | } |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2095 | if (priv->intcounter > 0) { |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2096 | allowed = 0; |
David Woodhouse | 23d36ee | 2007-12-12 00:14:21 -0500 | [diff] [blame] | 2097 | lbs_deb_host("intcounter %d\n", priv->intcounter); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2098 | } |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2099 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2100 | |
| 2101 | if (allowed) { |
Holger Schurig | 1007832 | 2007-11-15 18:05:47 -0500 | [diff] [blame] | 2102 | lbs_deb_host("sending lbs_ps_confirm_sleep\n"); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2103 | sendconfirmsleep(priv, (u8 *) & priv->lbs_ps_confirm_sleep, |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2104 | sizeof(struct PS_CMD_ConfirmSleep)); |
| 2105 | } else { |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2106 | lbs_deb_host("sleep confirm has been delayed\n"); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2107 | } |
| 2108 | |
Holger Schurig | 8ff12da | 2007-08-02 11:54:31 -0400 | [diff] [blame] | 2109 | lbs_deb_leave(LBS_DEB_HOST); |
Marcelo Tosatti | 876c9d3 | 2007-02-10 12:25:27 -0200 | [diff] [blame] | 2110 | } |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2111 | |
| 2112 | |
| 2113 | /** |
Dan Williams | a8bdcd7 | 2007-12-11 12:40:35 -0500 | [diff] [blame] | 2114 | * @brief Simple callback that copies response back into command |
| 2115 | * |
| 2116 | * @param priv A pointer to struct lbs_private structure |
| 2117 | * @param extra A pointer to the original command structure for which |
| 2118 | * 'resp' is a response |
| 2119 | * @param resp A pointer to the command response |
| 2120 | * |
| 2121 | * @return 0 on success, error on failure |
| 2122 | */ |
| 2123 | int lbs_cmd_copyback(struct lbs_private *priv, unsigned long extra, |
David Woodhouse | ad9d7a7 | 2007-12-11 15:22:27 -0500 | [diff] [blame] | 2124 | struct cmd_header *resp) |
Dan Williams | a8bdcd7 | 2007-12-11 12:40:35 -0500 | [diff] [blame] | 2125 | { |
| 2126 | struct cmd_header *buf = (void *)extra; |
| 2127 | uint16_t copy_len; |
| 2128 | |
| 2129 | lbs_deb_enter(LBS_DEB_CMD); |
| 2130 | |
| 2131 | copy_len = min(le16_to_cpu(buf->size), le16_to_cpu(resp->size)); |
| 2132 | lbs_deb_cmd("Copying back %u bytes; command response was %u bytes, " |
David Woodhouse | ad9d7a7 | 2007-12-11 15:22:27 -0500 | [diff] [blame] | 2133 | "copy back buffer was %u bytes\n", copy_len, |
| 2134 | le16_to_cpu(resp->size), le16_to_cpu(buf->size)); |
Dan Williams | a8bdcd7 | 2007-12-11 12:40:35 -0500 | [diff] [blame] | 2135 | memcpy(buf, resp, copy_len); |
| 2136 | |
| 2137 | lbs_deb_leave(LBS_DEB_CMD); |
| 2138 | return 0; |
| 2139 | } |
David Woodhouse | 689442d | 2007-12-12 16:00:42 -0500 | [diff] [blame] | 2140 | EXPORT_SYMBOL_GPL(lbs_cmd_copyback); |
Dan Williams | a8bdcd7 | 2007-12-11 12:40:35 -0500 | [diff] [blame] | 2141 | |
David Woodhouse | 3399ea5 | 2007-12-15 03:09:33 -0500 | [diff] [blame^] | 2142 | struct cmd_ctrl_node *__lbs_cmd_async(struct lbs_private *priv, uint16_t command, |
| 2143 | struct cmd_header *in_cmd, int in_cmd_size, |
| 2144 | int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *), |
| 2145 | unsigned long callback_arg) |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2146 | { |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2147 | struct cmd_ctrl_node *cmdnode; |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2148 | |
| 2149 | lbs_deb_enter(LBS_DEB_HOST); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2150 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2151 | if (priv->surpriseremoved) { |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2152 | lbs_deb_host("PREP_CMD: card removed\n"); |
David Woodhouse | 3399ea5 | 2007-12-15 03:09:33 -0500 | [diff] [blame^] | 2153 | cmdnode = ERR_PTR(-ENOENT); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2154 | goto done; |
| 2155 | } |
| 2156 | |
| 2157 | cmdnode = lbs_get_cmd_ctrl_node(priv); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2158 | if (cmdnode == NULL) { |
| 2159 | lbs_deb_host("PREP_CMD: cmdnode is NULL\n"); |
| 2160 | |
| 2161 | /* Wake up main thread to execute next command */ |
| 2162 | wake_up_interruptible(&priv->waitq); |
David Woodhouse | 3399ea5 | 2007-12-15 03:09:33 -0500 | [diff] [blame^] | 2163 | cmdnode = ERR_PTR(-ENOBUFS); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2164 | goto done; |
| 2165 | } |
| 2166 | |
David Woodhouse | 448a51a | 2007-12-08 00:59:54 +0000 | [diff] [blame] | 2167 | cmdnode->callback = callback; |
David Woodhouse | 1309b55 | 2007-12-10 13:36:10 -0500 | [diff] [blame] | 2168 | cmdnode->callback_arg = callback_arg; |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2169 | |
Dan Williams | 7ad994d | 2007-12-11 12:33:30 -0500 | [diff] [blame] | 2170 | /* Copy the incoming command to the buffer */ |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 2171 | memcpy(cmdnode->cmdbuf, in_cmd, in_cmd_size); |
Dan Williams | 7ad994d | 2007-12-11 12:33:30 -0500 | [diff] [blame] | 2172 | |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2173 | /* Set sequence number, clean result, move to buffer */ |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2174 | priv->seqnum++; |
Dan Williams | ddac452 | 2007-12-11 13:49:39 -0500 | [diff] [blame] | 2175 | cmdnode->cmdbuf->command = cpu_to_le16(command); |
| 2176 | cmdnode->cmdbuf->size = cpu_to_le16(in_cmd_size); |
| 2177 | cmdnode->cmdbuf->seqnum = cpu_to_le16(priv->seqnum); |
| 2178 | cmdnode->cmdbuf->result = 0; |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2179 | |
| 2180 | lbs_deb_host("PREP_CMD: command 0x%04x\n", command); |
| 2181 | |
| 2182 | /* here was the big old switch() statement, which is now obsolete, |
| 2183 | * because the caller of lbs_cmd() sets up all of *cmd for us. */ |
| 2184 | |
| 2185 | cmdnode->cmdwaitqwoken = 0; |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2186 | lbs_queue_cmd(priv, cmdnode, 1); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2187 | wake_up_interruptible(&priv->waitq); |
| 2188 | |
David Woodhouse | 3399ea5 | 2007-12-15 03:09:33 -0500 | [diff] [blame^] | 2189 | done: |
| 2190 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %p", cmdnode); |
| 2191 | return cmdnode; |
| 2192 | } |
| 2193 | |
| 2194 | int __lbs_cmd(struct lbs_private *priv, uint16_t command, |
| 2195 | struct cmd_header *in_cmd, int in_cmd_size, |
| 2196 | int (*callback)(struct lbs_private *, unsigned long, struct cmd_header *), |
| 2197 | unsigned long callback_arg) |
| 2198 | { |
| 2199 | struct cmd_ctrl_node *cmdnode; |
| 2200 | unsigned long flags; |
| 2201 | int ret = 0; |
| 2202 | |
| 2203 | lbs_deb_enter(LBS_DEB_HOST); |
| 2204 | |
| 2205 | cmdnode = __lbs_cmd_async(priv, command, in_cmd, in_cmd_size, |
| 2206 | callback, callback_arg); |
| 2207 | if (IS_ERR(cmdnode)) { |
| 2208 | ret = PTR_ERR(cmdnode); |
| 2209 | goto done; |
| 2210 | } |
| 2211 | |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2212 | might_sleep(); |
| 2213 | wait_event_interruptible(cmdnode->cmdwait_q, cmdnode->cmdwaitqwoken); |
| 2214 | |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2215 | spin_lock_irqsave(&priv->driver_lock, flags); |
David Woodhouse | ae125bf | 2007-12-15 04:22:52 -0500 | [diff] [blame] | 2216 | ret = cmdnode->result; |
| 2217 | if (ret) |
| 2218 | lbs_pr_info("PREP_CMD: command 0x%04x failed: %d\n", |
| 2219 | command, ret); |
David Woodhouse | 3399ea5 | 2007-12-15 03:09:33 -0500 | [diff] [blame^] | 2220 | |
David Woodhouse | ad12d0f | 2007-12-15 02:06:16 -0500 | [diff] [blame] | 2221 | __lbs_cleanup_and_insert_cmd(priv, cmdnode); |
David Woodhouse | aa21c00 | 2007-12-08 20:04:36 +0000 | [diff] [blame] | 2222 | spin_unlock_irqrestore(&priv->driver_lock, flags); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2223 | |
| 2224 | done: |
| 2225 | lbs_deb_leave_args(LBS_DEB_HOST, "ret %d", ret); |
| 2226 | return ret; |
| 2227 | } |
Dan Williams | 14e865b | 2007-12-10 15:11:23 -0500 | [diff] [blame] | 2228 | EXPORT_SYMBOL_GPL(__lbs_cmd); |
Holger Schurig | 675787e | 2007-12-05 17:58:11 +0100 | [diff] [blame] | 2229 | |
| 2230 | |