Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 1 | /* |
| 2 | * This file is part of wl1271 |
| 3 | * |
Luciano Coelho | 2f826f5 | 2010-03-26 12:53:21 +0200 | [diff] [blame] | 4 | * Copyright (C) 2009-2010 Nokia Corporation |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 5 | * |
| 6 | * Contact: Luciano Coelho <luciano.coelho@nokia.com> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * version 2 as published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 20 | * 02110-1301 USA |
| 21 | * |
| 22 | */ |
| 23 | |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/platform_device.h> |
| 26 | #include <linux/crc7.h> |
| 27 | #include <linux/spi/spi.h> |
| 28 | #include <linux/etherdevice.h> |
Kalle Valo | 023e082 | 2010-03-18 12:26:36 +0200 | [diff] [blame] | 29 | #include <linux/ieee80211.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 30 | #include <linux/slab.h> |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 31 | |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 32 | #include "wl12xx.h" |
| 33 | #include "reg.h" |
| 34 | #include "io.h" |
| 35 | #include "acx.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 36 | #include "wl12xx_80211.h" |
Shahar Levi | 00d2010 | 2010-11-08 11:20:10 +0000 | [diff] [blame] | 37 | #include "cmd.h" |
| 38 | #include "event.h" |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 39 | #include "tx.h" |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 40 | |
Juuso Oikarinen | 16092b5 | 2010-04-28 09:49:59 +0300 | [diff] [blame] | 41 | #define WL1271_CMD_FAST_POLL_COUNT 50 |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 42 | |
| 43 | /* |
| 44 | * send command to firmware |
| 45 | * |
| 46 | * @wl: wl struct |
| 47 | * @id: command id |
| 48 | * @buf: buffer containing the command, must work with dma |
| 49 | * @len: length of the buffer |
| 50 | */ |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 51 | int wl1271_cmd_send(struct wl1271 *wl, u16 id, void *buf, size_t len, |
| 52 | size_t res_len) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 53 | { |
| 54 | struct wl1271_cmd_header *cmd; |
| 55 | unsigned long timeout; |
| 56 | u32 intr; |
| 57 | int ret = 0; |
Juuso Oikarinen | ad150e9 | 2009-11-02 20:22:12 +0200 | [diff] [blame] | 58 | u16 status; |
Saravanan Dhanabal | bc0f03e | 2010-03-26 12:53:33 +0200 | [diff] [blame] | 59 | u16 poll_count = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 60 | |
| 61 | cmd = buf; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 62 | cmd->id = cpu_to_le16(id); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 63 | cmd->status = 0; |
| 64 | |
| 65 | WARN_ON(len % 4 != 0); |
Arik Nemtsov | 24225b3 | 2011-03-01 12:27:26 +0200 | [diff] [blame] | 66 | WARN_ON(test_bit(WL1271_FLAG_IN_ELP, &wl->flags)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 67 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 68 | wl1271_write(wl, wl->cmd_box_addr, buf, len, false); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 69 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 70 | wl1271_write32(wl, ACX_REG_INTERRUPT_TRIG, INTR_TRIG_CMD); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 71 | |
| 72 | timeout = jiffies + msecs_to_jiffies(WL1271_COMMAND_TIMEOUT); |
| 73 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 74 | intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 75 | while (!(intr & WL1271_ACX_INTR_CMD_COMPLETE)) { |
| 76 | if (time_after(jiffies, timeout)) { |
| 77 | wl1271_error("command complete timeout"); |
| 78 | ret = -ETIMEDOUT; |
| 79 | goto out; |
| 80 | } |
| 81 | |
Saravanan Dhanabal | bc0f03e | 2010-03-26 12:53:33 +0200 | [diff] [blame] | 82 | poll_count++; |
Juuso Oikarinen | 16092b5 | 2010-04-28 09:49:59 +0300 | [diff] [blame] | 83 | if (poll_count < WL1271_CMD_FAST_POLL_COUNT) |
| 84 | udelay(10); |
| 85 | else |
| 86 | msleep(1); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 87 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 88 | intr = wl1271_read32(wl, ACX_REG_INTERRUPT_NO_CLEAR); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 89 | } |
| 90 | |
Juuso Oikarinen | 3b775b4 | 2009-11-02 20:22:10 +0200 | [diff] [blame] | 91 | /* read back the status code of the command */ |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 92 | if (res_len == 0) |
| 93 | res_len = sizeof(struct wl1271_cmd_header); |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 94 | wl1271_read(wl, wl->cmd_box_addr, cmd, res_len, false); |
Juuso Oikarinen | 3b775b4 | 2009-11-02 20:22:10 +0200 | [diff] [blame] | 95 | |
Juuso Oikarinen | ad150e9 | 2009-11-02 20:22:12 +0200 | [diff] [blame] | 96 | status = le16_to_cpu(cmd->status); |
| 97 | if (status != CMD_STATUS_SUCCESS) { |
| 98 | wl1271_error("command execute failure %d", status); |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 99 | ieee80211_queue_work(wl->hw, &wl->recovery_work); |
Juuso Oikarinen | 3b775b4 | 2009-11-02 20:22:10 +0200 | [diff] [blame] | 100 | ret = -EIO; |
| 101 | } |
| 102 | |
Teemu Paasikivi | 7b048c5 | 2010-02-18 13:25:55 +0200 | [diff] [blame] | 103 | wl1271_write32(wl, ACX_REG_INTERRUPT_ACK, |
| 104 | WL1271_ACX_INTR_CMD_COMPLETE); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 105 | |
| 106 | out: |
| 107 | return ret; |
| 108 | } |
| 109 | |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 110 | int wl1271_cmd_general_parms(struct wl1271 *wl) |
| 111 | { |
| 112 | struct wl1271_general_parms_cmd *gen_parms; |
Shahar Levi | 49d750ca | 2011-03-06 16:32:09 +0200 | [diff] [blame] | 113 | struct wl1271_ini_general_params *gp = |
| 114 | &((struct wl1271_nvs_file *)wl->nvs)->general_params; |
| 115 | bool answer = false; |
| 116 | int ret; |
| 117 | |
| 118 | if (!wl->nvs) |
| 119 | return -ENODEV; |
| 120 | |
| 121 | gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL); |
| 122 | if (!gen_parms) |
| 123 | return -ENOMEM; |
| 124 | |
| 125 | gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM; |
| 126 | |
| 127 | memcpy(&gen_parms->general_params, gp, sizeof(*gp)); |
| 128 | |
| 129 | if (gp->tx_bip_fem_auto_detect) |
| 130 | answer = true; |
| 131 | |
Shahar Levi | b03acad | 2011-04-03 13:54:54 +0300 | [diff] [blame] | 132 | /* Override the REF CLK from the NVS with the one from platform data */ |
| 133 | gen_parms->general_params.ref_clock = wl->ref_clock; |
| 134 | |
Shahar Levi | 49d750ca | 2011-03-06 16:32:09 +0200 | [diff] [blame] | 135 | ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer); |
| 136 | if (ret < 0) { |
| 137 | wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed"); |
| 138 | goto out; |
| 139 | } |
| 140 | |
| 141 | gp->tx_bip_fem_manufacturer = |
| 142 | gen_parms->general_params.tx_bip_fem_manufacturer; |
| 143 | |
| 144 | wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n", |
| 145 | answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer); |
| 146 | |
| 147 | out: |
| 148 | kfree(gen_parms); |
| 149 | return ret; |
| 150 | } |
| 151 | |
| 152 | int wl128x_cmd_general_parms(struct wl1271 *wl) |
| 153 | { |
| 154 | struct wl128x_general_parms_cmd *gen_parms; |
| 155 | struct wl128x_ini_general_params *gp = |
| 156 | &((struct wl128x_nvs_file *)wl->nvs)->general_params; |
Juuso Oikarinen | 4b34d43 | 2010-10-07 10:16:42 +0300 | [diff] [blame] | 157 | bool answer = false; |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 158 | int ret; |
| 159 | |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 160 | if (!wl->nvs) |
| 161 | return -ENODEV; |
| 162 | |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 163 | gen_parms = kzalloc(sizeof(*gen_parms), GFP_KERNEL); |
| 164 | if (!gen_parms) |
| 165 | return -ENOMEM; |
| 166 | |
| 167 | gen_parms->test.id = TEST_CMD_INI_FILE_GENERAL_PARAM; |
| 168 | |
Juuso Oikarinen | 4b34d43 | 2010-10-07 10:16:42 +0300 | [diff] [blame] | 169 | memcpy(&gen_parms->general_params, gp, sizeof(*gp)); |
Luciano Coelho | 76c0f8d | 2009-12-11 15:40:41 +0200 | [diff] [blame] | 170 | |
Juuso Oikarinen | 4b34d43 | 2010-10-07 10:16:42 +0300 | [diff] [blame] | 171 | if (gp->tx_bip_fem_auto_detect) |
| 172 | answer = true; |
| 173 | |
Shahar Levi | b03acad | 2011-04-03 13:54:54 +0300 | [diff] [blame] | 174 | /* Replace REF and TCXO CLKs with the ones from platform data */ |
| 175 | gen_parms->general_params.ref_clock = wl->ref_clock; |
| 176 | gen_parms->general_params.tcxo_ref_clock = wl->tcxo_clock; |
| 177 | |
Juuso Oikarinen | 4b34d43 | 2010-10-07 10:16:42 +0300 | [diff] [blame] | 178 | ret = wl1271_cmd_test(wl, gen_parms, sizeof(*gen_parms), answer); |
| 179 | if (ret < 0) { |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 180 | wl1271_warning("CMD_INI_FILE_GENERAL_PARAM failed"); |
Juuso Oikarinen | 4b34d43 | 2010-10-07 10:16:42 +0300 | [diff] [blame] | 181 | goto out; |
| 182 | } |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 183 | |
Juuso Oikarinen | 4b34d43 | 2010-10-07 10:16:42 +0300 | [diff] [blame] | 184 | gp->tx_bip_fem_manufacturer = |
| 185 | gen_parms->general_params.tx_bip_fem_manufacturer; |
| 186 | |
| 187 | wl1271_debug(DEBUG_CMD, "FEM autodetect: %s, manufacturer: %d\n", |
| 188 | answer ? "auto" : "manual", gp->tx_bip_fem_manufacturer); |
| 189 | |
| 190 | out: |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 191 | kfree(gen_parms); |
| 192 | return ret; |
| 193 | } |
| 194 | |
| 195 | int wl1271_cmd_radio_parms(struct wl1271 *wl) |
| 196 | { |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 197 | struct wl1271_nvs_file *nvs = (struct wl1271_nvs_file *)wl->nvs; |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 198 | struct wl1271_radio_parms_cmd *radio_parms; |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 199 | struct wl1271_ini_general_params *gp = &nvs->general_params; |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 200 | int ret; |
| 201 | |
| 202 | if (!wl->nvs) |
| 203 | return -ENODEV; |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 204 | |
| 205 | radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL); |
| 206 | if (!radio_parms) |
| 207 | return -ENOMEM; |
| 208 | |
| 209 | radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM; |
| 210 | |
Juuso Oikarinen | a7da74f | 2010-05-14 10:46:23 +0300 | [diff] [blame] | 211 | /* 2.4GHz parameters */ |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 212 | memcpy(&radio_parms->static_params_2, &nvs->stat_radio_params_2, |
Juuso Oikarinen | eb70eb7 | 2010-05-14 10:46:22 +0300 | [diff] [blame] | 213 | sizeof(struct wl1271_ini_band_params_2)); |
| 214 | memcpy(&radio_parms->dyn_params_2, |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 215 | &nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params, |
Juuso Oikarinen | eb70eb7 | 2010-05-14 10:46:22 +0300 | [diff] [blame] | 216 | sizeof(struct wl1271_ini_fem_params_2)); |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 217 | |
Juuso Oikarinen | a7da74f | 2010-05-14 10:46:23 +0300 | [diff] [blame] | 218 | /* 5GHz parameters */ |
| 219 | memcpy(&radio_parms->static_params_5, |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 220 | &nvs->stat_radio_params_5, |
Juuso Oikarinen | a7da74f | 2010-05-14 10:46:23 +0300 | [diff] [blame] | 221 | sizeof(struct wl1271_ini_band_params_5)); |
| 222 | memcpy(&radio_parms->dyn_params_5, |
Shahar Levi | bc765bf | 2011-03-06 16:32:10 +0200 | [diff] [blame] | 223 | &nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params, |
Juuso Oikarinen | a7da74f | 2010-05-14 10:46:23 +0300 | [diff] [blame] | 224 | sizeof(struct wl1271_ini_fem_params_5)); |
Luciano Coelho | 98b5dd5 | 2009-11-23 23:22:17 +0200 | [diff] [blame] | 225 | |
| 226 | wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ", |
| 227 | radio_parms, sizeof(*radio_parms)); |
| 228 | |
| 229 | ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0); |
| 230 | if (ret < 0) |
| 231 | wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed"); |
| 232 | |
| 233 | kfree(radio_parms); |
| 234 | return ret; |
| 235 | } |
| 236 | |
Shahar Levi | 49d750ca | 2011-03-06 16:32:09 +0200 | [diff] [blame] | 237 | int wl128x_cmd_radio_parms(struct wl1271 *wl) |
| 238 | { |
| 239 | struct wl128x_nvs_file *nvs = (struct wl128x_nvs_file *)wl->nvs; |
| 240 | struct wl128x_radio_parms_cmd *radio_parms; |
| 241 | struct wl128x_ini_general_params *gp = &nvs->general_params; |
| 242 | int ret; |
| 243 | |
| 244 | if (!wl->nvs) |
| 245 | return -ENODEV; |
| 246 | |
| 247 | radio_parms = kzalloc(sizeof(*radio_parms), GFP_KERNEL); |
| 248 | if (!radio_parms) |
| 249 | return -ENOMEM; |
| 250 | |
| 251 | radio_parms->test.id = TEST_CMD_INI_FILE_RADIO_PARAM; |
| 252 | |
| 253 | /* 2.4GHz parameters */ |
| 254 | memcpy(&radio_parms->static_params_2, &nvs->stat_radio_params_2, |
| 255 | sizeof(struct wl128x_ini_band_params_2)); |
| 256 | memcpy(&radio_parms->dyn_params_2, |
| 257 | &nvs->dyn_radio_params_2[gp->tx_bip_fem_manufacturer].params, |
| 258 | sizeof(struct wl128x_ini_fem_params_2)); |
| 259 | |
| 260 | /* 5GHz parameters */ |
| 261 | memcpy(&radio_parms->static_params_5, |
| 262 | &nvs->stat_radio_params_5, |
| 263 | sizeof(struct wl128x_ini_band_params_5)); |
| 264 | memcpy(&radio_parms->dyn_params_5, |
| 265 | &nvs->dyn_radio_params_5[gp->tx_bip_fem_manufacturer].params, |
| 266 | sizeof(struct wl128x_ini_fem_params_5)); |
| 267 | |
| 268 | radio_parms->fem_vendor_and_options = nvs->fem_vendor_and_options; |
| 269 | |
| 270 | wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_RADIO_PARAM: ", |
| 271 | radio_parms, sizeof(*radio_parms)); |
| 272 | |
| 273 | ret = wl1271_cmd_test(wl, radio_parms, sizeof(*radio_parms), 0); |
| 274 | if (ret < 0) |
| 275 | wl1271_warning("CMD_INI_FILE_RADIO_PARAM failed"); |
| 276 | |
| 277 | kfree(radio_parms); |
| 278 | return ret; |
| 279 | } |
| 280 | |
Juuso Oikarinen | 644a486 | 2010-10-05 13:11:56 +0200 | [diff] [blame] | 281 | int wl1271_cmd_ext_radio_parms(struct wl1271 *wl) |
| 282 | { |
| 283 | struct wl1271_ext_radio_parms_cmd *ext_radio_parms; |
| 284 | struct conf_rf_settings *rf = &wl->conf.rf; |
| 285 | int ret; |
| 286 | |
| 287 | if (!wl->nvs) |
| 288 | return -ENODEV; |
| 289 | |
| 290 | ext_radio_parms = kzalloc(sizeof(*ext_radio_parms), GFP_KERNEL); |
| 291 | if (!ext_radio_parms) |
| 292 | return -ENOMEM; |
| 293 | |
| 294 | ext_radio_parms->test.id = TEST_CMD_INI_FILE_RF_EXTENDED_PARAM; |
| 295 | |
| 296 | memcpy(ext_radio_parms->tx_per_channel_power_compensation_2, |
| 297 | rf->tx_per_channel_power_compensation_2, |
| 298 | CONF_TX_PWR_COMPENSATION_LEN_2); |
| 299 | memcpy(ext_radio_parms->tx_per_channel_power_compensation_5, |
| 300 | rf->tx_per_channel_power_compensation_5, |
| 301 | CONF_TX_PWR_COMPENSATION_LEN_5); |
| 302 | |
| 303 | wl1271_dump(DEBUG_CMD, "TEST_CMD_INI_FILE_EXT_RADIO_PARAM: ", |
| 304 | ext_radio_parms, sizeof(*ext_radio_parms)); |
| 305 | |
| 306 | ret = wl1271_cmd_test(wl, ext_radio_parms, sizeof(*ext_radio_parms), 0); |
| 307 | if (ret < 0) |
| 308 | wl1271_warning("TEST_CMD_INI_FILE_RF_EXTENDED_PARAM failed"); |
| 309 | |
| 310 | kfree(ext_radio_parms); |
| 311 | return ret; |
| 312 | } |
| 313 | |
Luciano Coelho | 99d84c1 | 2010-03-26 12:53:20 +0200 | [diff] [blame] | 314 | /* |
| 315 | * Poll the mailbox event field until any of the bits in the mask is set or a |
| 316 | * timeout occurs (WL1271_EVENT_TIMEOUT in msecs) |
| 317 | */ |
Arik Nemtsov | 05285cf | 2010-11-12 17:15:03 +0200 | [diff] [blame] | 318 | static int wl1271_cmd_wait_for_event_or_timeout(struct wl1271 *wl, u32 mask) |
Luciano Coelho | 99d84c1 | 2010-03-26 12:53:20 +0200 | [diff] [blame] | 319 | { |
| 320 | u32 events_vector, event; |
| 321 | unsigned long timeout; |
| 322 | |
| 323 | timeout = jiffies + msecs_to_jiffies(WL1271_EVENT_TIMEOUT); |
| 324 | |
| 325 | do { |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 326 | if (time_after(jiffies, timeout)) { |
Arik Nemtsov | 05285cf | 2010-11-12 17:15:03 +0200 | [diff] [blame] | 327 | wl1271_debug(DEBUG_CMD, "timeout waiting for event %d", |
| 328 | (int)mask); |
Luciano Coelho | 99d84c1 | 2010-03-26 12:53:20 +0200 | [diff] [blame] | 329 | return -ETIMEDOUT; |
Juuso Oikarinen | 52b0e7a | 2010-09-21 06:23:31 +0200 | [diff] [blame] | 330 | } |
Luciano Coelho | 99d84c1 | 2010-03-26 12:53:20 +0200 | [diff] [blame] | 331 | |
| 332 | msleep(1); |
| 333 | |
| 334 | /* read from both event fields */ |
| 335 | wl1271_read(wl, wl->mbox_ptr[0], &events_vector, |
| 336 | sizeof(events_vector), false); |
| 337 | event = events_vector & mask; |
| 338 | wl1271_read(wl, wl->mbox_ptr[1], &events_vector, |
| 339 | sizeof(events_vector), false); |
| 340 | event |= events_vector & mask; |
| 341 | } while (!event); |
| 342 | |
| 343 | return 0; |
| 344 | } |
| 345 | |
Arik Nemtsov | 05285cf | 2010-11-12 17:15:03 +0200 | [diff] [blame] | 346 | static int wl1271_cmd_wait_for_event(struct wl1271 *wl, u32 mask) |
| 347 | { |
| 348 | int ret; |
| 349 | |
| 350 | ret = wl1271_cmd_wait_for_event_or_timeout(wl, mask); |
| 351 | if (ret != 0) { |
| 352 | ieee80211_queue_work(wl->hw, &wl->recovery_work); |
| 353 | return ret; |
| 354 | } |
| 355 | |
| 356 | return 0; |
| 357 | } |
| 358 | |
Juuso Oikarinen | 1530549 | 2010-02-22 08:38:32 +0200 | [diff] [blame] | 359 | int wl1271_cmd_join(struct wl1271 *wl, u8 bss_type) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 360 | { |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 361 | struct wl1271_cmd_join *join; |
| 362 | int ret, i; |
| 363 | u8 *bssid; |
| 364 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 365 | join = kzalloc(sizeof(*join), GFP_KERNEL); |
| 366 | if (!join) { |
| 367 | ret = -ENOMEM; |
| 368 | goto out; |
| 369 | } |
| 370 | |
| 371 | wl1271_debug(DEBUG_CMD, "cmd join"); |
| 372 | |
| 373 | /* Reverse order BSSID */ |
| 374 | bssid = (u8 *) &join->bssid_lsb; |
| 375 | for (i = 0; i < ETH_ALEN; i++) |
| 376 | bssid[i] = wl->bssid[ETH_ALEN - i - 1]; |
| 377 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 378 | join->rx_config_options = cpu_to_le32(wl->rx_config); |
| 379 | join->rx_filter_options = cpu_to_le32(wl->rx_filter); |
Juuso Oikarinen | 1530549 | 2010-02-22 08:38:32 +0200 | [diff] [blame] | 380 | join->bss_type = bss_type; |
Luciano Coelho | 23a7a51 | 2010-04-28 09:50:02 +0300 | [diff] [blame] | 381 | join->basic_rate_set = cpu_to_le32(wl->basic_rate_set); |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 382 | join->supported_rate_set = cpu_to_le32(wl->rate_set); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 383 | |
Juuso Oikarinen | ebba60c | 2010-04-01 11:38:20 +0300 | [diff] [blame] | 384 | if (wl->band == IEEE80211_BAND_5GHZ) |
Teemu Paasikivi | a410264 | 2009-10-13 12:47:51 +0300 | [diff] [blame] | 385 | join->bss_type |= WL1271_JOIN_CMD_BSS_TYPE_5GHZ; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 386 | |
Juuso Oikarinen | 60e84c2 | 2010-03-26 12:53:25 +0200 | [diff] [blame] | 387 | join->beacon_interval = cpu_to_le16(wl->beacon_int); |
Luciano Coelho | ae751ba | 2009-10-12 15:08:57 +0300 | [diff] [blame] | 388 | join->dtim_interval = WL1271_DEFAULT_DTIM_PERIOD; |
Teemu Paasikivi | a410264 | 2009-10-13 12:47:51 +0300 | [diff] [blame] | 389 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 390 | join->channel = wl->channel; |
| 391 | join->ssid_len = wl->ssid_len; |
| 392 | memcpy(join->ssid, wl->ssid, wl->ssid_len); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 393 | |
| 394 | join->ctrl |= wl->session_counter << WL1271_JOIN_CMD_TX_SESSION_OFFSET; |
| 395 | |
Juuso Oikarinen | ac4e4ce | 2009-10-08 21:56:19 +0300 | [diff] [blame] | 396 | /* reset TX security counters */ |
| 397 | wl->tx_security_last_seq = 0; |
Juuso Oikarinen | 04e36fc | 2010-02-22 08:38:40 +0200 | [diff] [blame] | 398 | wl->tx_security_seq = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 399 | |
Eliad Peller | 72c2d9e | 2011-02-02 09:59:37 +0200 | [diff] [blame] | 400 | wl1271_debug(DEBUG_CMD, "cmd join: basic_rate_set=0x%x, rate_set=0x%x", |
| 401 | join->basic_rate_set, join->supported_rate_set); |
| 402 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 403 | ret = wl1271_cmd_send(wl, CMD_START_JOIN, join, sizeof(*join), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 404 | if (ret < 0) { |
| 405 | wl1271_error("failed to initiate cmd join"); |
| 406 | goto out_free; |
| 407 | } |
| 408 | |
Luciano Coelho | 99d84c1 | 2010-03-26 12:53:20 +0200 | [diff] [blame] | 409 | ret = wl1271_cmd_wait_for_event(wl, JOIN_EVENT_COMPLETE_ID); |
| 410 | if (ret < 0) |
| 411 | wl1271_error("cmd join event completion error"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 412 | |
| 413 | out_free: |
| 414 | kfree(join); |
| 415 | |
| 416 | out: |
| 417 | return ret; |
| 418 | } |
| 419 | |
| 420 | /** |
| 421 | * send test command to firmware |
| 422 | * |
| 423 | * @wl: wl struct |
| 424 | * @buf: buffer containing the command, with all headers, must work with dma |
| 425 | * @len: length of the buffer |
| 426 | * @answer: is answer needed |
| 427 | */ |
| 428 | int wl1271_cmd_test(struct wl1271 *wl, void *buf, size_t buf_len, u8 answer) |
| 429 | { |
| 430 | int ret; |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 431 | size_t res_len = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 432 | |
| 433 | wl1271_debug(DEBUG_CMD, "cmd test"); |
| 434 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 435 | if (answer) |
| 436 | res_len = buf_len; |
| 437 | |
| 438 | ret = wl1271_cmd_send(wl, CMD_TEST, buf, buf_len, res_len); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 439 | |
| 440 | if (ret < 0) { |
| 441 | wl1271_warning("TEST command failed"); |
| 442 | return ret; |
| 443 | } |
| 444 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 445 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /** |
| 449 | * read acx from firmware |
| 450 | * |
| 451 | * @wl: wl struct |
| 452 | * @id: acx id |
| 453 | * @buf: buffer for the response, including all headers, must work with dma |
| 454 | * @len: lenght of buf |
| 455 | */ |
| 456 | int wl1271_cmd_interrogate(struct wl1271 *wl, u16 id, void *buf, size_t len) |
| 457 | { |
| 458 | struct acx_header *acx = buf; |
| 459 | int ret; |
| 460 | |
| 461 | wl1271_debug(DEBUG_CMD, "cmd interrogate"); |
| 462 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 463 | acx->id = cpu_to_le16(id); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 464 | |
| 465 | /* payload length, does not include any headers */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 466 | acx->len = cpu_to_le16(len - sizeof(*acx)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 467 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 468 | ret = wl1271_cmd_send(wl, CMD_INTERROGATE, acx, sizeof(*acx), len); |
| 469 | if (ret < 0) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 470 | wl1271_error("INTERROGATE command failed"); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 471 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 472 | return ret; |
| 473 | } |
| 474 | |
| 475 | /** |
| 476 | * write acx value to firmware |
| 477 | * |
| 478 | * @wl: wl struct |
| 479 | * @id: acx id |
| 480 | * @buf: buffer containing acx, including all headers, must work with dma |
| 481 | * @len: length of buf |
| 482 | */ |
| 483 | int wl1271_cmd_configure(struct wl1271 *wl, u16 id, void *buf, size_t len) |
| 484 | { |
| 485 | struct acx_header *acx = buf; |
| 486 | int ret; |
| 487 | |
| 488 | wl1271_debug(DEBUG_CMD, "cmd configure"); |
| 489 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 490 | acx->id = cpu_to_le16(id); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 491 | |
| 492 | /* payload length, does not include any headers */ |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 493 | acx->len = cpu_to_le16(len - sizeof(*acx)); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 494 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 495 | ret = wl1271_cmd_send(wl, CMD_CONFIGURE, acx, len, 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 496 | if (ret < 0) { |
| 497 | wl1271_warning("CONFIGURE command NOK"); |
| 498 | return ret; |
| 499 | } |
| 500 | |
| 501 | return 0; |
| 502 | } |
| 503 | |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 504 | int wl1271_cmd_data_path(struct wl1271 *wl, bool enable) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 505 | { |
| 506 | struct cmd_enabledisable_path *cmd; |
| 507 | int ret; |
| 508 | u16 cmd_rx, cmd_tx; |
| 509 | |
| 510 | wl1271_debug(DEBUG_CMD, "cmd data path"); |
| 511 | |
| 512 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 513 | if (!cmd) { |
| 514 | ret = -ENOMEM; |
| 515 | goto out; |
| 516 | } |
| 517 | |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 518 | /* the channel here is only used for calibration, so hardcoded to 1 */ |
| 519 | cmd->channel = 1; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 520 | |
| 521 | if (enable) { |
| 522 | cmd_rx = CMD_ENABLE_RX; |
| 523 | cmd_tx = CMD_ENABLE_TX; |
| 524 | } else { |
| 525 | cmd_rx = CMD_DISABLE_RX; |
| 526 | cmd_tx = CMD_DISABLE_TX; |
| 527 | } |
| 528 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 529 | ret = wl1271_cmd_send(wl, cmd_rx, cmd, sizeof(*cmd), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 530 | if (ret < 0) { |
| 531 | wl1271_error("rx %s cmd for channel %d failed", |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 532 | enable ? "start" : "stop", cmd->channel); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 533 | goto out; |
| 534 | } |
| 535 | |
| 536 | wl1271_debug(DEBUG_BOOT, "rx %s cmd channel %d", |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 537 | enable ? "start" : "stop", cmd->channel); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 538 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 539 | ret = wl1271_cmd_send(wl, cmd_tx, cmd, sizeof(*cmd), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 540 | if (ret < 0) { |
| 541 | wl1271_error("tx %s cmd for channel %d failed", |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 542 | enable ? "start" : "stop", cmd->channel); |
Juuso Oikarinen | 1b00f2b | 2010-03-26 12:53:17 +0200 | [diff] [blame] | 543 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 544 | } |
| 545 | |
| 546 | wl1271_debug(DEBUG_BOOT, "tx %s cmd channel %d", |
Luciano Coelho | 9421089 | 2009-12-11 15:40:55 +0200 | [diff] [blame] | 547 | enable ? "start" : "stop", cmd->channel); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 548 | |
| 549 | out: |
| 550 | kfree(cmd); |
| 551 | return ret; |
| 552 | } |
| 553 | |
Eliad Peller | c8bde24 | 2011-02-02 09:59:35 +0200 | [diff] [blame] | 554 | int wl1271_cmd_ps_mode(struct wl1271 *wl, u8 ps_mode) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 555 | { |
| 556 | struct wl1271_cmd_ps_params *ps_params = NULL; |
| 557 | int ret = 0; |
| 558 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 559 | wl1271_debug(DEBUG_CMD, "cmd set ps mode"); |
| 560 | |
| 561 | ps_params = kzalloc(sizeof(*ps_params), GFP_KERNEL); |
| 562 | if (!ps_params) { |
| 563 | ret = -ENOMEM; |
| 564 | goto out; |
| 565 | } |
| 566 | |
| 567 | ps_params->ps_mode = ps_mode; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 568 | |
| 569 | ret = wl1271_cmd_send(wl, CMD_SET_PS_MODE, ps_params, |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 570 | sizeof(*ps_params), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 571 | if (ret < 0) { |
| 572 | wl1271_error("cmd set_ps_mode failed"); |
| 573 | goto out; |
| 574 | } |
| 575 | |
| 576 | out: |
| 577 | kfree(ps_params); |
| 578 | return ret; |
| 579 | } |
| 580 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 581 | int wl1271_cmd_template_set(struct wl1271 *wl, u16 template_id, |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 582 | void *buf, size_t buf_len, int index, u32 rates) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 583 | { |
| 584 | struct wl1271_cmd_template_set *cmd; |
| 585 | int ret = 0; |
| 586 | |
| 587 | wl1271_debug(DEBUG_CMD, "cmd template_set %d", template_id); |
| 588 | |
| 589 | WARN_ON(buf_len > WL1271_CMD_TEMPL_MAX_SIZE); |
| 590 | buf_len = min_t(size_t, buf_len, WL1271_CMD_TEMPL_MAX_SIZE); |
| 591 | |
| 592 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 593 | if (!cmd) { |
| 594 | ret = -ENOMEM; |
| 595 | goto out; |
| 596 | } |
| 597 | |
| 598 | cmd->len = cpu_to_le16(buf_len); |
| 599 | cmd->template_type = template_id; |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 600 | cmd->enabled_rates = cpu_to_le32(rates); |
Arik Nemtsov | 1e05a81 | 2010-10-16 17:44:51 +0200 | [diff] [blame] | 601 | cmd->short_retry_limit = wl->conf.tx.tmpl_short_retry_limit; |
| 602 | cmd->long_retry_limit = wl->conf.tx.tmpl_long_retry_limit; |
Juuso Oikarinen | bfb24c9 | 2010-03-26 12:53:31 +0200 | [diff] [blame] | 603 | cmd->index = index; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 604 | |
| 605 | if (buf) |
| 606 | memcpy(cmd->template_data, buf, buf_len); |
| 607 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 608 | ret = wl1271_cmd_send(wl, CMD_SET_TEMPLATE, cmd, sizeof(*cmd), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 609 | if (ret < 0) { |
| 610 | wl1271_warning("cmd set_template failed: %d", ret); |
| 611 | goto out_free; |
| 612 | } |
| 613 | |
| 614 | out_free: |
| 615 | kfree(cmd); |
| 616 | |
| 617 | out: |
| 618 | return ret; |
| 619 | } |
| 620 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 621 | int wl1271_cmd_build_null_data(struct wl1271 *wl) |
| 622 | { |
Juuso Oikarinen | a0cb7be | 2010-03-18 12:26:44 +0200 | [diff] [blame] | 623 | struct sk_buff *skb = NULL; |
| 624 | int size; |
| 625 | void *ptr; |
| 626 | int ret = -ENOMEM; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 627 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 628 | |
Juuso Oikarinen | a0cb7be | 2010-03-18 12:26:44 +0200 | [diff] [blame] | 629 | if (wl->bss_type == BSS_TYPE_IBSS) { |
| 630 | size = sizeof(struct wl12xx_null_data_template); |
| 631 | ptr = NULL; |
| 632 | } else { |
| 633 | skb = ieee80211_nullfunc_get(wl->hw, wl->vif); |
| 634 | if (!skb) |
| 635 | goto out; |
| 636 | size = skb->len; |
| 637 | ptr = skb->data; |
| 638 | } |
| 639 | |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 640 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_NULL_DATA, ptr, size, 0, |
Juuso Oikarinen | 8eab7b4 | 2010-09-24 03:10:11 +0200 | [diff] [blame] | 641 | wl->basic_rate); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 642 | |
Kalle Valo | 899e6e6 | 2010-03-18 12:26:34 +0200 | [diff] [blame] | 643 | out: |
| 644 | dev_kfree_skb(skb); |
Juuso Oikarinen | a0cb7be | 2010-03-18 12:26:44 +0200 | [diff] [blame] | 645 | if (ret) |
| 646 | wl1271_warning("cmd buld null data failed %d", ret); |
| 647 | |
Kalle Valo | 899e6e6 | 2010-03-18 12:26:34 +0200 | [diff] [blame] | 648 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 649 | |
| 650 | } |
| 651 | |
Juuso Oikarinen | bfb24c9 | 2010-03-26 12:53:31 +0200 | [diff] [blame] | 652 | int wl1271_cmd_build_klv_null_data(struct wl1271 *wl) |
| 653 | { |
| 654 | struct sk_buff *skb = NULL; |
| 655 | int ret = -ENOMEM; |
| 656 | |
| 657 | skb = ieee80211_nullfunc_get(wl->hw, wl->vif); |
| 658 | if (!skb) |
| 659 | goto out; |
| 660 | |
| 661 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_KLV, |
| 662 | skb->data, skb->len, |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 663 | CMD_TEMPL_KLV_IDX_NULL_DATA, |
Juuso Oikarinen | 8eab7b4 | 2010-09-24 03:10:11 +0200 | [diff] [blame] | 664 | wl->basic_rate); |
Juuso Oikarinen | bfb24c9 | 2010-03-26 12:53:31 +0200 | [diff] [blame] | 665 | |
| 666 | out: |
| 667 | dev_kfree_skb(skb); |
| 668 | if (ret) |
| 669 | wl1271_warning("cmd build klv null data failed %d", ret); |
| 670 | |
| 671 | return ret; |
| 672 | |
| 673 | } |
| 674 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 675 | int wl1271_cmd_build_ps_poll(struct wl1271 *wl, u16 aid) |
| 676 | { |
Kalle Valo | 899e6e6 | 2010-03-18 12:26:34 +0200 | [diff] [blame] | 677 | struct sk_buff *skb; |
| 678 | int ret = 0; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 679 | |
Kalle Valo | 899e6e6 | 2010-03-18 12:26:34 +0200 | [diff] [blame] | 680 | skb = ieee80211_pspoll_get(wl->hw, wl->vif); |
| 681 | if (!skb) |
| 682 | goto out; |
Juuso Oikarinen | c3fea19 | 2009-10-08 21:56:22 +0300 | [diff] [blame] | 683 | |
Kalle Valo | 899e6e6 | 2010-03-18 12:26:34 +0200 | [diff] [blame] | 684 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_PS_POLL, skb->data, |
Juuso Oikarinen | 849923f | 2010-07-08 17:49:59 +0300 | [diff] [blame] | 685 | skb->len, 0, wl->basic_rate_set); |
Juuso Oikarinen | c3fea19 | 2009-10-08 21:56:22 +0300 | [diff] [blame] | 686 | |
Kalle Valo | 899e6e6 | 2010-03-18 12:26:34 +0200 | [diff] [blame] | 687 | out: |
| 688 | dev_kfree_skb(skb); |
| 689 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 690 | } |
| 691 | |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 692 | int wl1271_cmd_build_probe_req(struct wl1271 *wl, |
| 693 | const u8 *ssid, size_t ssid_len, |
| 694 | const u8 *ie, size_t ie_len, u8 band) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 695 | { |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 696 | struct sk_buff *skb; |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 697 | int ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 698 | |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 699 | skb = ieee80211_probereq_get(wl->hw, wl->vif, ssid, ssid_len, |
| 700 | ie, ie_len); |
| 701 | if (!skb) { |
| 702 | ret = -ENOMEM; |
| 703 | goto out; |
| 704 | } |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 705 | |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 706 | wl1271_dump(DEBUG_SCAN, "PROBE REQ: ", skb->data, skb->len); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 707 | |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 708 | if (band == IEEE80211_BAND_2GHZ) |
| 709 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4, |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 710 | skb->data, skb->len, 0, |
| 711 | wl->conf.tx.basic_rate); |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 712 | else |
| 713 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5, |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 714 | skb->data, skb->len, 0, |
| 715 | wl->conf.tx.basic_rate_5); |
Kalle Valo | 818e306 | 2010-03-18 12:26:35 +0200 | [diff] [blame] | 716 | |
| 717 | out: |
| 718 | dev_kfree_skb(skb); |
Teemu Paasikivi | abb0b3b | 2009-10-13 12:47:50 +0300 | [diff] [blame] | 719 | return ret; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 720 | } |
| 721 | |
Juuso Oikarinen | 2f6724b | 2010-11-24 08:16:57 +0200 | [diff] [blame] | 722 | struct sk_buff *wl1271_cmd_build_ap_probe_req(struct wl1271 *wl, |
| 723 | struct sk_buff *skb) |
| 724 | { |
| 725 | int ret; |
| 726 | |
| 727 | if (!skb) |
| 728 | skb = ieee80211_ap_probereq_get(wl->hw, wl->vif); |
| 729 | if (!skb) |
| 730 | goto out; |
| 731 | |
| 732 | wl1271_dump(DEBUG_SCAN, "AP PROBE REQ: ", skb->data, skb->len); |
| 733 | |
| 734 | if (wl->band == IEEE80211_BAND_2GHZ) |
| 735 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_2_4, |
| 736 | skb->data, skb->len, 0, |
| 737 | wl->conf.tx.basic_rate); |
| 738 | else |
| 739 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_CFG_PROBE_REQ_5, |
| 740 | skb->data, skb->len, 0, |
| 741 | wl->conf.tx.basic_rate_5); |
| 742 | |
| 743 | if (ret < 0) |
| 744 | wl1271_error("Unable to set ap probe request template."); |
| 745 | |
| 746 | out: |
| 747 | return skb; |
| 748 | } |
| 749 | |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 750 | int wl1271_cmd_build_arp_rsp(struct wl1271 *wl, __be32 ip_addr) |
| 751 | { |
| 752 | int ret; |
| 753 | struct wl12xx_arp_rsp_template tmpl; |
| 754 | struct ieee80211_hdr_3addr *hdr; |
| 755 | struct arphdr *arp_hdr; |
| 756 | |
| 757 | memset(&tmpl, 0, sizeof(tmpl)); |
| 758 | |
| 759 | /* mac80211 header */ |
| 760 | hdr = &tmpl.hdr; |
| 761 | hdr->frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 762 | IEEE80211_STYPE_DATA | |
| 763 | IEEE80211_FCTL_TODS); |
| 764 | memcpy(hdr->addr1, wl->vif->bss_conf.bssid, ETH_ALEN); |
| 765 | memcpy(hdr->addr2, wl->vif->addr, ETH_ALEN); |
| 766 | memset(hdr->addr3, 0xff, ETH_ALEN); |
| 767 | |
| 768 | /* llc layer */ |
| 769 | memcpy(tmpl.llc_hdr, rfc1042_header, sizeof(rfc1042_header)); |
Eliad Peller | 6177eae | 2010-12-22 12:38:52 +0100 | [diff] [blame] | 770 | tmpl.llc_type = cpu_to_be16(ETH_P_ARP); |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 771 | |
| 772 | /* arp header */ |
| 773 | arp_hdr = &tmpl.arp_hdr; |
Eliad Peller | 6177eae | 2010-12-22 12:38:52 +0100 | [diff] [blame] | 774 | arp_hdr->ar_hrd = cpu_to_be16(ARPHRD_ETHER); |
| 775 | arp_hdr->ar_pro = cpu_to_be16(ETH_P_IP); |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 776 | arp_hdr->ar_hln = ETH_ALEN; |
| 777 | arp_hdr->ar_pln = 4; |
Eliad Peller | 6177eae | 2010-12-22 12:38:52 +0100 | [diff] [blame] | 778 | arp_hdr->ar_op = cpu_to_be16(ARPOP_REPLY); |
Eliad Peller | c531277 | 2010-12-09 11:31:27 +0200 | [diff] [blame] | 779 | |
| 780 | /* arp payload */ |
| 781 | memcpy(tmpl.sender_hw, wl->vif->addr, ETH_ALEN); |
| 782 | tmpl.sender_ip = ip_addr; |
| 783 | |
| 784 | ret = wl1271_cmd_template_set(wl, CMD_TEMPL_ARP_RSP, |
| 785 | &tmpl, sizeof(tmpl), 0, |
| 786 | wl->basic_rate); |
| 787 | |
| 788 | return ret; |
| 789 | } |
| 790 | |
Kalle Valo | 023e082 | 2010-03-18 12:26:36 +0200 | [diff] [blame] | 791 | int wl1271_build_qos_null_data(struct wl1271 *wl) |
| 792 | { |
| 793 | struct ieee80211_qos_hdr template; |
| 794 | |
| 795 | memset(&template, 0, sizeof(template)); |
| 796 | |
| 797 | memcpy(template.addr1, wl->bssid, ETH_ALEN); |
| 798 | memcpy(template.addr2, wl->mac_addr, ETH_ALEN); |
| 799 | memcpy(template.addr3, wl->bssid, ETH_ALEN); |
| 800 | |
| 801 | template.frame_control = cpu_to_le16(IEEE80211_FTYPE_DATA | |
| 802 | IEEE80211_STYPE_QOS_NULLFUNC | |
| 803 | IEEE80211_FCTL_TODS); |
| 804 | |
| 805 | /* FIXME: not sure what priority to use here */ |
| 806 | template.qos_ctrl = cpu_to_le16(0); |
| 807 | |
| 808 | return wl1271_cmd_template_set(wl, CMD_TEMPL_QOS_NULL_DATA, &template, |
Juuso Oikarinen | 606c148 | 2010-04-01 11:38:21 +0300 | [diff] [blame] | 809 | sizeof(template), 0, |
Juuso Oikarinen | 8eab7b4 | 2010-09-24 03:10:11 +0200 | [diff] [blame] | 810 | wl->basic_rate); |
Kalle Valo | 023e082 | 2010-03-18 12:26:36 +0200 | [diff] [blame] | 811 | } |
| 812 | |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 813 | int wl1271_cmd_set_sta_default_wep_key(struct wl1271 *wl, u8 id) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 814 | { |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 815 | struct wl1271_cmd_set_sta_keys *cmd; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 816 | int ret = 0; |
| 817 | |
| 818 | wl1271_debug(DEBUG_CMD, "cmd set_default_wep_key %d", id); |
| 819 | |
| 820 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 821 | if (!cmd) { |
| 822 | ret = -ENOMEM; |
| 823 | goto out; |
| 824 | } |
| 825 | |
| 826 | cmd->id = id; |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 827 | cmd->key_action = cpu_to_le16(KEY_SET_ID); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 828 | cmd->key_type = KEY_WEP; |
| 829 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 830 | ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 831 | if (ret < 0) { |
| 832 | wl1271_warning("cmd set_default_wep_key failed: %d", ret); |
| 833 | goto out; |
| 834 | } |
| 835 | |
| 836 | out: |
| 837 | kfree(cmd); |
| 838 | |
| 839 | return ret; |
| 840 | } |
| 841 | |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 842 | int wl1271_cmd_set_ap_default_wep_key(struct wl1271 *wl, u8 id) |
| 843 | { |
| 844 | struct wl1271_cmd_set_ap_keys *cmd; |
| 845 | int ret = 0; |
| 846 | |
| 847 | wl1271_debug(DEBUG_CMD, "cmd set_ap_default_wep_key %d", id); |
| 848 | |
| 849 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 850 | if (!cmd) { |
| 851 | ret = -ENOMEM; |
| 852 | goto out; |
| 853 | } |
| 854 | |
| 855 | cmd->hlid = WL1271_AP_BROADCAST_HLID; |
| 856 | cmd->key_id = id; |
| 857 | cmd->lid_key_type = WEP_DEFAULT_LID_TYPE; |
| 858 | cmd->key_action = cpu_to_le16(KEY_SET_ID); |
| 859 | cmd->key_type = KEY_WEP; |
| 860 | |
| 861 | ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0); |
| 862 | if (ret < 0) { |
| 863 | wl1271_warning("cmd set_ap_default_wep_key failed: %d", ret); |
| 864 | goto out; |
| 865 | } |
| 866 | |
| 867 | out: |
| 868 | kfree(cmd); |
| 869 | |
| 870 | return ret; |
| 871 | } |
| 872 | |
| 873 | int wl1271_cmd_set_sta_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type, |
Juuso Oikarinen | ac4e4ce | 2009-10-08 21:56:19 +0300 | [diff] [blame] | 874 | u8 key_size, const u8 *key, const u8 *addr, |
| 875 | u32 tx_seq_32, u16 tx_seq_16) |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 876 | { |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 877 | struct wl1271_cmd_set_sta_keys *cmd; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 878 | int ret = 0; |
| 879 | |
| 880 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 881 | if (!cmd) { |
| 882 | ret = -ENOMEM; |
| 883 | goto out; |
| 884 | } |
| 885 | |
| 886 | if (key_type != KEY_WEP) |
| 887 | memcpy(cmd->addr, addr, ETH_ALEN); |
| 888 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 889 | cmd->key_action = cpu_to_le16(action); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 890 | cmd->key_size = key_size; |
| 891 | cmd->key_type = key_type; |
| 892 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 893 | cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16); |
| 894 | cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32); |
Juuso Oikarinen | ac4e4ce | 2009-10-08 21:56:19 +0300 | [diff] [blame] | 895 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 896 | /* we have only one SSID profile */ |
| 897 | cmd->ssid_profile = 0; |
| 898 | |
| 899 | cmd->id = id; |
| 900 | |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 901 | if (key_type == KEY_TKIP) { |
| 902 | /* |
| 903 | * We get the key in the following form: |
| 904 | * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes) |
| 905 | * but the target is expecting: |
| 906 | * TKIP - RX MIC - TX MIC |
| 907 | */ |
| 908 | memcpy(cmd->key, key, 16); |
| 909 | memcpy(cmd->key + 16, key + 24, 8); |
| 910 | memcpy(cmd->key + 24, key + 16, 8); |
| 911 | |
| 912 | } else { |
| 913 | memcpy(cmd->key, key, key_size); |
| 914 | } |
| 915 | |
| 916 | wl1271_dump(DEBUG_CRYPT, "TARGET KEY: ", cmd, sizeof(*cmd)); |
| 917 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 918 | ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0); |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 919 | if (ret < 0) { |
| 920 | wl1271_warning("could not set keys"); |
Juuso Oikarinen | 152ee6e | 2010-02-18 13:25:42 +0200 | [diff] [blame] | 921 | goto out; |
Luciano Coelho | f5fc0f8 | 2009-08-06 16:25:28 +0300 | [diff] [blame] | 922 | } |
| 923 | |
| 924 | out: |
| 925 | kfree(cmd); |
| 926 | |
| 927 | return ret; |
| 928 | } |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 929 | |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 930 | int wl1271_cmd_set_ap_key(struct wl1271 *wl, u16 action, u8 id, u8 key_type, |
| 931 | u8 key_size, const u8 *key, u8 hlid, u32 tx_seq_32, |
| 932 | u16 tx_seq_16) |
| 933 | { |
| 934 | struct wl1271_cmd_set_ap_keys *cmd; |
| 935 | int ret = 0; |
| 936 | u8 lid_type; |
| 937 | |
| 938 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 939 | if (!cmd) |
| 940 | return -ENOMEM; |
| 941 | |
| 942 | if (hlid == WL1271_AP_BROADCAST_HLID) { |
| 943 | if (key_type == KEY_WEP) |
| 944 | lid_type = WEP_DEFAULT_LID_TYPE; |
| 945 | else |
| 946 | lid_type = BROADCAST_LID_TYPE; |
| 947 | } else { |
| 948 | lid_type = UNICAST_LID_TYPE; |
| 949 | } |
| 950 | |
| 951 | wl1271_debug(DEBUG_CRYPT, "ap key action: %d id: %d lid: %d type: %d" |
| 952 | " hlid: %d", (int)action, (int)id, (int)lid_type, |
| 953 | (int)key_type, (int)hlid); |
| 954 | |
| 955 | cmd->lid_key_type = lid_type; |
| 956 | cmd->hlid = hlid; |
| 957 | cmd->key_action = cpu_to_le16(action); |
| 958 | cmd->key_size = key_size; |
| 959 | cmd->key_type = key_type; |
| 960 | cmd->key_id = id; |
| 961 | cmd->ac_seq_num16[0] = cpu_to_le16(tx_seq_16); |
| 962 | cmd->ac_seq_num32[0] = cpu_to_le32(tx_seq_32); |
| 963 | |
| 964 | if (key_type == KEY_TKIP) { |
| 965 | /* |
| 966 | * We get the key in the following form: |
| 967 | * TKIP (16 bytes) - TX MIC (8 bytes) - RX MIC (8 bytes) |
| 968 | * but the target is expecting: |
| 969 | * TKIP - RX MIC - TX MIC |
| 970 | */ |
| 971 | memcpy(cmd->key, key, 16); |
| 972 | memcpy(cmd->key + 16, key + 24, 8); |
| 973 | memcpy(cmd->key + 24, key + 16, 8); |
| 974 | } else { |
| 975 | memcpy(cmd->key, key, key_size); |
| 976 | } |
| 977 | |
| 978 | wl1271_dump(DEBUG_CRYPT, "TARGET AP KEY: ", cmd, sizeof(*cmd)); |
| 979 | |
| 980 | ret = wl1271_cmd_send(wl, CMD_SET_KEYS, cmd, sizeof(*cmd), 0); |
| 981 | if (ret < 0) { |
| 982 | wl1271_warning("could not set ap keys"); |
| 983 | goto out; |
| 984 | } |
| 985 | |
| 986 | out: |
| 987 | kfree(cmd); |
| 988 | return ret; |
| 989 | } |
| 990 | |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 991 | int wl1271_cmd_disconnect(struct wl1271 *wl) |
| 992 | { |
| 993 | struct wl1271_cmd_disconnect *cmd; |
| 994 | int ret = 0; |
| 995 | |
| 996 | wl1271_debug(DEBUG_CMD, "cmd disconnect"); |
| 997 | |
| 998 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 999 | if (!cmd) { |
| 1000 | ret = -ENOMEM; |
| 1001 | goto out; |
| 1002 | } |
| 1003 | |
Luciano Coelho | d0f63b2 | 2009-10-15 10:33:29 +0300 | [diff] [blame] | 1004 | cmd->rx_config_options = cpu_to_le32(wl->rx_config); |
| 1005 | cmd->rx_filter_options = cpu_to_le32(wl->rx_filter); |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 1006 | /* disconnect reason is not used in immediate disconnections */ |
| 1007 | cmd->type = DISCONNECT_IMMEDIATE; |
| 1008 | |
Juuso Oikarinen | fa867e7 | 2009-11-02 20:22:13 +0200 | [diff] [blame] | 1009 | ret = wl1271_cmd_send(wl, CMD_DISCONNECT, cmd, sizeof(*cmd), 0); |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 1010 | if (ret < 0) { |
| 1011 | wl1271_error("failed to send disconnect command"); |
| 1012 | goto out_free; |
| 1013 | } |
| 1014 | |
Luciano Coelho | 2f826f5 | 2010-03-26 12:53:21 +0200 | [diff] [blame] | 1015 | ret = wl1271_cmd_wait_for_event(wl, DISCONNECT_EVENT_COMPLETE_ID); |
| 1016 | if (ret < 0) |
| 1017 | wl1271_error("cmd disconnect event completion error"); |
| 1018 | |
Luciano Coelho | 25a7dc6 | 2009-10-12 15:08:42 +0300 | [diff] [blame] | 1019 | out_free: |
| 1020 | kfree(cmd); |
| 1021 | |
| 1022 | out: |
| 1023 | return ret; |
| 1024 | } |
Juuso Oikarinen | be86cbe | 2010-05-27 12:53:01 +0300 | [diff] [blame] | 1025 | |
| 1026 | int wl1271_cmd_set_sta_state(struct wl1271 *wl) |
| 1027 | { |
| 1028 | struct wl1271_cmd_set_sta_state *cmd; |
| 1029 | int ret = 0; |
| 1030 | |
| 1031 | wl1271_debug(DEBUG_CMD, "cmd set sta state"); |
| 1032 | |
| 1033 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1034 | if (!cmd) { |
| 1035 | ret = -ENOMEM; |
| 1036 | goto out; |
| 1037 | } |
| 1038 | |
| 1039 | cmd->state = WL1271_CMD_STA_STATE_CONNECTED; |
| 1040 | |
| 1041 | ret = wl1271_cmd_send(wl, CMD_SET_STA_STATE, cmd, sizeof(*cmd), 0); |
| 1042 | if (ret < 0) { |
| 1043 | wl1271_error("failed to send set STA state command"); |
| 1044 | goto out_free; |
| 1045 | } |
| 1046 | |
| 1047 | out_free: |
| 1048 | kfree(cmd); |
| 1049 | |
| 1050 | out: |
| 1051 | return ret; |
| 1052 | } |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 1053 | |
| 1054 | int wl1271_cmd_start_bss(struct wl1271 *wl) |
| 1055 | { |
| 1056 | struct wl1271_cmd_bss_start *cmd; |
| 1057 | struct ieee80211_bss_conf *bss_conf = &wl->vif->bss_conf; |
| 1058 | int ret; |
| 1059 | |
| 1060 | wl1271_debug(DEBUG_CMD, "cmd start bss"); |
| 1061 | |
| 1062 | /* |
| 1063 | * FIXME: We currently do not support hidden SSID. The real SSID |
| 1064 | * should be fetched from mac80211 first. |
| 1065 | */ |
| 1066 | if (wl->ssid_len == 0) { |
| 1067 | wl1271_warning("Hidden SSID currently not supported for AP"); |
| 1068 | ret = -EINVAL; |
| 1069 | goto out; |
| 1070 | } |
| 1071 | |
| 1072 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1073 | if (!cmd) { |
| 1074 | ret = -ENOMEM; |
| 1075 | goto out; |
| 1076 | } |
| 1077 | |
| 1078 | memcpy(cmd->bssid, bss_conf->bssid, ETH_ALEN); |
| 1079 | |
Arik Nemtsov | 4768480 | 2011-04-26 23:21:51 +0300 | [diff] [blame] | 1080 | cmd->aging_period = cpu_to_le16(wl->conf.tx.ap_aging_period); |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 1081 | cmd->bss_index = WL1271_AP_BSS_INDEX; |
| 1082 | cmd->global_hlid = WL1271_AP_GLOBAL_HLID; |
| 1083 | cmd->broadcast_hlid = WL1271_AP_BROADCAST_HLID; |
| 1084 | cmd->basic_rate_set = cpu_to_le32(wl->basic_rate_set); |
| 1085 | cmd->beacon_interval = cpu_to_le16(wl->beacon_int); |
| 1086 | cmd->dtim_interval = bss_conf->dtim_period; |
| 1087 | cmd->beacon_expiry = WL1271_AP_DEF_BEACON_EXP; |
| 1088 | cmd->channel = wl->channel; |
| 1089 | cmd->ssid_len = wl->ssid_len; |
| 1090 | cmd->ssid_type = SSID_TYPE_PUBLIC; |
| 1091 | memcpy(cmd->ssid, wl->ssid, wl->ssid_len); |
| 1092 | |
| 1093 | switch (wl->band) { |
| 1094 | case IEEE80211_BAND_2GHZ: |
| 1095 | cmd->band = RADIO_BAND_2_4GHZ; |
| 1096 | break; |
| 1097 | case IEEE80211_BAND_5GHZ: |
| 1098 | cmd->band = RADIO_BAND_5GHZ; |
| 1099 | break; |
| 1100 | default: |
| 1101 | wl1271_warning("bss start - unknown band: %d", (int)wl->band); |
| 1102 | cmd->band = RADIO_BAND_2_4GHZ; |
| 1103 | break; |
| 1104 | } |
| 1105 | |
| 1106 | ret = wl1271_cmd_send(wl, CMD_BSS_START, cmd, sizeof(*cmd), 0); |
| 1107 | if (ret < 0) { |
| 1108 | wl1271_error("failed to initiate cmd start bss"); |
| 1109 | goto out_free; |
| 1110 | } |
| 1111 | |
| 1112 | out_free: |
| 1113 | kfree(cmd); |
| 1114 | |
| 1115 | out: |
| 1116 | return ret; |
| 1117 | } |
| 1118 | |
| 1119 | int wl1271_cmd_stop_bss(struct wl1271 *wl) |
| 1120 | { |
| 1121 | struct wl1271_cmd_bss_start *cmd; |
| 1122 | int ret; |
| 1123 | |
| 1124 | wl1271_debug(DEBUG_CMD, "cmd stop bss"); |
| 1125 | |
| 1126 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1127 | if (!cmd) { |
| 1128 | ret = -ENOMEM; |
| 1129 | goto out; |
| 1130 | } |
| 1131 | |
| 1132 | cmd->bss_index = WL1271_AP_BSS_INDEX; |
| 1133 | |
| 1134 | ret = wl1271_cmd_send(wl, CMD_BSS_STOP, cmd, sizeof(*cmd), 0); |
| 1135 | if (ret < 0) { |
| 1136 | wl1271_error("failed to initiate cmd stop bss"); |
| 1137 | goto out_free; |
| 1138 | } |
| 1139 | |
| 1140 | out_free: |
| 1141 | kfree(cmd); |
| 1142 | |
| 1143 | out: |
| 1144 | return ret; |
| 1145 | } |
| 1146 | |
| 1147 | int wl1271_cmd_add_sta(struct wl1271 *wl, struct ieee80211_sta *sta, u8 hlid) |
| 1148 | { |
| 1149 | struct wl1271_cmd_add_sta *cmd; |
| 1150 | int ret; |
| 1151 | |
| 1152 | wl1271_debug(DEBUG_CMD, "cmd add sta %d", (int)hlid); |
| 1153 | |
| 1154 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1155 | if (!cmd) { |
| 1156 | ret = -ENOMEM; |
| 1157 | goto out; |
| 1158 | } |
| 1159 | |
| 1160 | /* currently we don't support UAPSD */ |
| 1161 | cmd->sp_len = 0; |
| 1162 | |
| 1163 | memcpy(cmd->addr, sta->addr, ETH_ALEN); |
| 1164 | cmd->bss_index = WL1271_AP_BSS_INDEX; |
| 1165 | cmd->aid = sta->aid; |
| 1166 | cmd->hlid = hlid; |
| 1167 | |
| 1168 | /* |
| 1169 | * FIXME: Does STA support QOS? We need to propagate this info from |
| 1170 | * hostapd. Currently not that important since this is only used for |
| 1171 | * sending the correct flavor of null-data packet in response to a |
| 1172 | * trigger. |
| 1173 | */ |
| 1174 | cmd->wmm = 0; |
| 1175 | |
| 1176 | cmd->supported_rates = cpu_to_le32(wl1271_tx_enabled_rates_get(wl, |
| 1177 | sta->supp_rates[wl->band])); |
| 1178 | |
| 1179 | wl1271_debug(DEBUG_CMD, "new sta rates: 0x%x", cmd->supported_rates); |
| 1180 | |
| 1181 | ret = wl1271_cmd_send(wl, CMD_ADD_STA, cmd, sizeof(*cmd), 0); |
| 1182 | if (ret < 0) { |
| 1183 | wl1271_error("failed to initiate cmd add sta"); |
| 1184 | goto out_free; |
| 1185 | } |
| 1186 | |
| 1187 | out_free: |
| 1188 | kfree(cmd); |
| 1189 | |
| 1190 | out: |
| 1191 | return ret; |
| 1192 | } |
| 1193 | |
| 1194 | int wl1271_cmd_remove_sta(struct wl1271 *wl, u8 hlid) |
| 1195 | { |
| 1196 | struct wl1271_cmd_remove_sta *cmd; |
| 1197 | int ret; |
| 1198 | |
| 1199 | wl1271_debug(DEBUG_CMD, "cmd remove sta %d", (int)hlid); |
| 1200 | |
| 1201 | cmd = kzalloc(sizeof(*cmd), GFP_KERNEL); |
| 1202 | if (!cmd) { |
| 1203 | ret = -ENOMEM; |
| 1204 | goto out; |
| 1205 | } |
| 1206 | |
| 1207 | cmd->hlid = hlid; |
| 1208 | /* We never send a deauth, mac80211 is in charge of this */ |
| 1209 | cmd->reason_opcode = 0; |
| 1210 | cmd->send_deauth_flag = 0; |
| 1211 | |
| 1212 | ret = wl1271_cmd_send(wl, CMD_REMOVE_STA, cmd, sizeof(*cmd), 0); |
| 1213 | if (ret < 0) { |
| 1214 | wl1271_error("failed to initiate cmd remove sta"); |
| 1215 | goto out_free; |
| 1216 | } |
| 1217 | |
Arik Nemtsov | 05285cf | 2010-11-12 17:15:03 +0200 | [diff] [blame] | 1218 | /* |
| 1219 | * We are ok with a timeout here. The event is sometimes not sent |
| 1220 | * due to a firmware bug. |
| 1221 | */ |
| 1222 | wl1271_cmd_wait_for_event_or_timeout(wl, STA_REMOVE_COMPLETE_EVENT_ID); |
Arik Nemtsov | 98bdaab | 2010-10-16 18:08:58 +0200 | [diff] [blame] | 1223 | |
| 1224 | out_free: |
| 1225 | kfree(cmd); |
| 1226 | |
| 1227 | out: |
| 1228 | return ret; |
| 1229 | } |