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