Solomon Peachy | a910e4a | 2013-05-24 20:04:38 -0400 | [diff] [blame] | 1 | /* |
| 2 | * WSM host interface (HI) implementation for |
| 3 | * ST-Ericsson CW1200 mac80211 drivers. |
| 4 | * |
| 5 | * Copyright (c) 2010, ST-Ericsson |
| 6 | * Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/skbuff.h> |
| 14 | #include <linux/wait.h> |
Solomon Peachy | a910e4a | 2013-05-24 20:04:38 -0400 | [diff] [blame] | 15 | #include <linux/delay.h> |
| 16 | #include <linux/sched.h> |
| 17 | #include <linux/random.h> |
| 18 | |
| 19 | #include "cw1200.h" |
| 20 | #include "wsm.h" |
| 21 | #include "bh.h" |
| 22 | #include "sta.h" |
| 23 | #include "debug.h" |
| 24 | #include "itp.h" |
| 25 | |
| 26 | #define WSM_CMD_TIMEOUT (2 * HZ) /* With respect to interrupt loss */ |
| 27 | #define WSM_CMD_START_TIMEOUT (7 * HZ) |
| 28 | #define WSM_CMD_RESET_TIMEOUT (3 * HZ) /* 2 sec. timeout was observed. */ |
| 29 | #define WSM_CMD_MAX_TIMEOUT (3 * HZ) |
| 30 | |
| 31 | #define WSM_SKIP(buf, size) \ |
| 32 | do { \ |
| 33 | if ((buf)->data + size > (buf)->end) \ |
| 34 | goto underflow; \ |
| 35 | (buf)->data += size; \ |
| 36 | } while (0) |
| 37 | |
| 38 | #define WSM_GET(buf, ptr, size) \ |
| 39 | do { \ |
| 40 | if ((buf)->data + size > (buf)->end) \ |
| 41 | goto underflow; \ |
| 42 | memcpy(ptr, (buf)->data, size); \ |
| 43 | (buf)->data += size; \ |
| 44 | } while (0) |
| 45 | |
| 46 | #define __WSM_GET(buf, type, cvt) \ |
| 47 | ({ \ |
| 48 | type val; \ |
| 49 | if ((buf)->data + sizeof(type) > (buf)->end) \ |
| 50 | goto underflow; \ |
| 51 | val = cvt(*(type *)(buf)->data); \ |
| 52 | (buf)->data += sizeof(type); \ |
| 53 | val; \ |
| 54 | }) |
| 55 | |
| 56 | #define WSM_GET8(buf) __WSM_GET(buf, u8, (u8)) |
| 57 | #define WSM_GET16(buf) __WSM_GET(buf, u16, __le16_to_cpu) |
| 58 | #define WSM_GET32(buf) __WSM_GET(buf, u32, __le32_to_cpu) |
| 59 | |
| 60 | #define WSM_PUT(buf, ptr, size) \ |
| 61 | do { \ |
| 62 | if ((buf)->data + size > (buf)->end) \ |
| 63 | if (wsm_buf_reserve((buf), size)) \ |
| 64 | goto nomem; \ |
| 65 | memcpy((buf)->data, ptr, size); \ |
| 66 | (buf)->data += size; \ |
| 67 | } while (0) |
| 68 | |
| 69 | #define __WSM_PUT(buf, val, type, cvt) \ |
| 70 | do { \ |
| 71 | if ((buf)->data + sizeof(type) > (buf)->end) \ |
| 72 | if (wsm_buf_reserve((buf), sizeof(type))) \ |
| 73 | goto nomem; \ |
| 74 | *(type *)(buf)->data = cvt(val); \ |
| 75 | (buf)->data += sizeof(type); \ |
| 76 | } while (0) |
| 77 | |
| 78 | #define WSM_PUT8(buf, val) __WSM_PUT(buf, val, u8, (u8)) |
| 79 | #define WSM_PUT16(buf, val) __WSM_PUT(buf, val, u16, __cpu_to_le16) |
| 80 | #define WSM_PUT32(buf, val) __WSM_PUT(buf, val, u32, __cpu_to_le32) |
| 81 | |
| 82 | static void wsm_buf_reset(struct wsm_buf *buf); |
| 83 | static int wsm_buf_reserve(struct wsm_buf *buf, size_t extra_size); |
| 84 | |
| 85 | static int wsm_cmd_send(struct cw1200_common *priv, |
| 86 | struct wsm_buf *buf, |
| 87 | void *arg, u16 cmd, long tmo); |
| 88 | |
| 89 | #define wsm_cmd_lock(__priv) mutex_lock(&((__priv)->wsm_cmd_mux)) |
| 90 | #define wsm_cmd_unlock(__priv) mutex_unlock(&((__priv)->wsm_cmd_mux)) |
| 91 | |
| 92 | /* ******************************************************************** */ |
| 93 | /* WSM API implementation */ |
| 94 | |
| 95 | static int wsm_generic_confirm(struct cw1200_common *priv, |
| 96 | void *arg, |
| 97 | struct wsm_buf *buf) |
| 98 | { |
| 99 | u32 status = WSM_GET32(buf); |
| 100 | if (status != WSM_STATUS_SUCCESS) |
| 101 | return -EINVAL; |
| 102 | return 0; |
| 103 | |
| 104 | underflow: |
| 105 | WARN_ON(1); |
| 106 | return -EINVAL; |
| 107 | } |
| 108 | |
| 109 | int wsm_configuration(struct cw1200_common *priv, struct wsm_configuration *arg) |
| 110 | { |
| 111 | int ret; |
| 112 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 113 | |
| 114 | wsm_cmd_lock(priv); |
| 115 | |
| 116 | WSM_PUT32(buf, arg->dot11MaxTransmitMsduLifeTime); |
| 117 | WSM_PUT32(buf, arg->dot11MaxReceiveLifeTime); |
| 118 | WSM_PUT32(buf, arg->dot11RtsThreshold); |
| 119 | |
| 120 | /* DPD block. */ |
| 121 | WSM_PUT16(buf, arg->dpdData_size + 12); |
| 122 | WSM_PUT16(buf, 1); /* DPD version */ |
| 123 | WSM_PUT(buf, arg->dot11StationId, ETH_ALEN); |
| 124 | WSM_PUT16(buf, 5); /* DPD flags */ |
| 125 | WSM_PUT(buf, arg->dpdData, arg->dpdData_size); |
| 126 | |
| 127 | ret = wsm_cmd_send(priv, buf, arg, |
| 128 | WSM_CONFIGURATION_REQ_ID, WSM_CMD_TIMEOUT); |
| 129 | |
| 130 | wsm_cmd_unlock(priv); |
| 131 | return ret; |
| 132 | |
| 133 | nomem: |
| 134 | wsm_cmd_unlock(priv); |
| 135 | return -ENOMEM; |
| 136 | } |
| 137 | |
| 138 | static int wsm_configuration_confirm(struct cw1200_common *priv, |
| 139 | struct wsm_configuration *arg, |
| 140 | struct wsm_buf *buf) |
| 141 | { |
| 142 | int i; |
| 143 | int status; |
| 144 | |
| 145 | status = WSM_GET32(buf); |
| 146 | if (WARN_ON(status != WSM_STATUS_SUCCESS)) |
| 147 | return -EINVAL; |
| 148 | |
| 149 | WSM_GET(buf, arg->dot11StationId, ETH_ALEN); |
| 150 | arg->dot11FrequencyBandsSupported = WSM_GET8(buf); |
| 151 | WSM_SKIP(buf, 1); |
| 152 | arg->supportedRateMask = WSM_GET32(buf); |
| 153 | for (i = 0; i < 2; ++i) { |
| 154 | arg->txPowerRange[i].min_power_level = WSM_GET32(buf); |
| 155 | arg->txPowerRange[i].max_power_level = WSM_GET32(buf); |
| 156 | arg->txPowerRange[i].stepping = WSM_GET32(buf); |
| 157 | } |
| 158 | return 0; |
| 159 | |
| 160 | underflow: |
| 161 | WARN_ON(1); |
| 162 | return -EINVAL; |
| 163 | } |
| 164 | |
| 165 | /* ******************************************************************** */ |
| 166 | |
| 167 | int wsm_reset(struct cw1200_common *priv, const struct wsm_reset *arg) |
| 168 | { |
| 169 | int ret; |
| 170 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 171 | u16 cmd = WSM_RESET_REQ_ID | WSM_TX_LINK_ID(arg->link_id); |
| 172 | |
| 173 | wsm_cmd_lock(priv); |
| 174 | |
| 175 | WSM_PUT32(buf, arg->reset_statistics ? 0 : 1); |
| 176 | ret = wsm_cmd_send(priv, buf, NULL, cmd, WSM_CMD_RESET_TIMEOUT); |
| 177 | wsm_cmd_unlock(priv); |
| 178 | return ret; |
| 179 | |
| 180 | nomem: |
| 181 | wsm_cmd_unlock(priv); |
| 182 | return -ENOMEM; |
| 183 | } |
| 184 | |
| 185 | /* ******************************************************************** */ |
| 186 | |
| 187 | struct wsm_mib { |
| 188 | u16 mib_id; |
| 189 | void *buf; |
| 190 | size_t buf_size; |
| 191 | }; |
| 192 | |
| 193 | int wsm_read_mib(struct cw1200_common *priv, u16 mib_id, void *_buf, |
| 194 | size_t buf_size) |
| 195 | { |
| 196 | int ret; |
| 197 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 198 | struct wsm_mib mib_buf = { |
| 199 | .mib_id = mib_id, |
| 200 | .buf = _buf, |
| 201 | .buf_size = buf_size, |
| 202 | }; |
| 203 | wsm_cmd_lock(priv); |
| 204 | |
| 205 | WSM_PUT16(buf, mib_id); |
| 206 | WSM_PUT16(buf, 0); |
| 207 | |
| 208 | ret = wsm_cmd_send(priv, buf, &mib_buf, |
| 209 | WSM_READ_MIB_REQ_ID, WSM_CMD_TIMEOUT); |
| 210 | wsm_cmd_unlock(priv); |
| 211 | return ret; |
| 212 | |
| 213 | nomem: |
| 214 | wsm_cmd_unlock(priv); |
| 215 | return -ENOMEM; |
| 216 | } |
| 217 | |
| 218 | static int wsm_read_mib_confirm(struct cw1200_common *priv, |
| 219 | struct wsm_mib *arg, |
| 220 | struct wsm_buf *buf) |
| 221 | { |
| 222 | u16 size; |
| 223 | if (WARN_ON(WSM_GET32(buf) != WSM_STATUS_SUCCESS)) |
| 224 | return -EINVAL; |
| 225 | |
| 226 | if (WARN_ON(WSM_GET16(buf) != arg->mib_id)) |
| 227 | return -EINVAL; |
| 228 | |
| 229 | size = WSM_GET16(buf); |
| 230 | if (size > arg->buf_size) |
| 231 | size = arg->buf_size; |
| 232 | |
| 233 | WSM_GET(buf, arg->buf, size); |
| 234 | arg->buf_size = size; |
| 235 | return 0; |
| 236 | |
| 237 | underflow: |
| 238 | WARN_ON(1); |
| 239 | return -EINVAL; |
| 240 | } |
| 241 | |
| 242 | /* ******************************************************************** */ |
| 243 | |
| 244 | int wsm_write_mib(struct cw1200_common *priv, u16 mib_id, void *_buf, |
| 245 | size_t buf_size) |
| 246 | { |
| 247 | int ret; |
| 248 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 249 | struct wsm_mib mib_buf = { |
| 250 | .mib_id = mib_id, |
| 251 | .buf = _buf, |
| 252 | .buf_size = buf_size, |
| 253 | }; |
| 254 | |
| 255 | wsm_cmd_lock(priv); |
| 256 | |
| 257 | WSM_PUT16(buf, mib_id); |
| 258 | WSM_PUT16(buf, buf_size); |
| 259 | WSM_PUT(buf, _buf, buf_size); |
| 260 | |
| 261 | ret = wsm_cmd_send(priv, buf, &mib_buf, |
| 262 | WSM_WRITE_MIB_REQ_ID, WSM_CMD_TIMEOUT); |
| 263 | wsm_cmd_unlock(priv); |
| 264 | return ret; |
| 265 | |
| 266 | nomem: |
| 267 | wsm_cmd_unlock(priv); |
| 268 | return -ENOMEM; |
| 269 | } |
| 270 | |
| 271 | static int wsm_write_mib_confirm(struct cw1200_common *priv, |
| 272 | struct wsm_mib *arg, |
| 273 | struct wsm_buf *buf) |
| 274 | { |
| 275 | int ret; |
| 276 | |
| 277 | ret = wsm_generic_confirm(priv, arg, buf); |
| 278 | if (ret) |
| 279 | return ret; |
| 280 | |
| 281 | if (arg->mib_id == WSM_MIB_ID_OPERATIONAL_POWER_MODE) { |
| 282 | /* OperationalMode: update PM status. */ |
| 283 | const char *p = arg->buf; |
| 284 | cw1200_enable_powersave(priv, (p[0] & 0x0F) ? true : false); |
| 285 | } |
| 286 | return 0; |
| 287 | } |
| 288 | |
| 289 | /* ******************************************************************** */ |
| 290 | |
| 291 | int wsm_scan(struct cw1200_common *priv, const struct wsm_scan *arg) |
| 292 | { |
| 293 | int i; |
| 294 | int ret; |
| 295 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 296 | |
| 297 | if (arg->num_channels > 48) |
| 298 | return -EINVAL; |
| 299 | |
| 300 | if (arg->num_ssids > 2) |
| 301 | return -EINVAL; |
| 302 | |
| 303 | if (arg->band > 1) |
| 304 | return -EINVAL; |
| 305 | |
| 306 | wsm_cmd_lock(priv); |
| 307 | |
| 308 | WSM_PUT8(buf, arg->band); |
| 309 | WSM_PUT8(buf, arg->type); |
| 310 | WSM_PUT8(buf, arg->flags); |
| 311 | WSM_PUT8(buf, arg->max_tx_rate); |
| 312 | WSM_PUT32(buf, arg->auto_scan_interval); |
| 313 | WSM_PUT8(buf, arg->num_probes); |
| 314 | WSM_PUT8(buf, arg->num_channels); |
| 315 | WSM_PUT8(buf, arg->num_ssids); |
| 316 | WSM_PUT8(buf, arg->probe_delay); |
| 317 | |
| 318 | for (i = 0; i < arg->num_channels; ++i) { |
| 319 | WSM_PUT16(buf, arg->ch[i].number); |
| 320 | WSM_PUT16(buf, 0); |
| 321 | WSM_PUT32(buf, arg->ch[i].min_chan_time); |
| 322 | WSM_PUT32(buf, arg->ch[i].max_chan_time); |
| 323 | WSM_PUT32(buf, 0); |
| 324 | } |
| 325 | |
| 326 | for (i = 0; i < arg->num_ssids; ++i) { |
| 327 | WSM_PUT32(buf, arg->ssids[i].length); |
| 328 | WSM_PUT(buf, &arg->ssids[i].ssid[0], |
| 329 | sizeof(arg->ssids[i].ssid)); |
| 330 | } |
| 331 | |
| 332 | ret = wsm_cmd_send(priv, buf, NULL, |
| 333 | WSM_START_SCAN_REQ_ID, WSM_CMD_TIMEOUT); |
| 334 | wsm_cmd_unlock(priv); |
| 335 | return ret; |
| 336 | |
| 337 | nomem: |
| 338 | wsm_cmd_unlock(priv); |
| 339 | return -ENOMEM; |
| 340 | } |
| 341 | |
| 342 | /* ******************************************************************** */ |
| 343 | |
| 344 | int wsm_stop_scan(struct cw1200_common *priv) |
| 345 | { |
| 346 | int ret; |
| 347 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 348 | wsm_cmd_lock(priv); |
| 349 | ret = wsm_cmd_send(priv, buf, NULL, |
| 350 | WSM_STOP_SCAN_REQ_ID, WSM_CMD_TIMEOUT); |
| 351 | wsm_cmd_unlock(priv); |
| 352 | return ret; |
| 353 | } |
| 354 | |
| 355 | |
| 356 | static int wsm_tx_confirm(struct cw1200_common *priv, |
| 357 | struct wsm_buf *buf, |
| 358 | int link_id) |
| 359 | { |
| 360 | struct wsm_tx_confirm tx_confirm; |
| 361 | |
| 362 | tx_confirm.packet_id = WSM_GET32(buf); |
| 363 | tx_confirm.status = WSM_GET32(buf); |
| 364 | tx_confirm.tx_rate = WSM_GET8(buf); |
| 365 | tx_confirm.ack_failures = WSM_GET8(buf); |
| 366 | tx_confirm.flags = WSM_GET16(buf); |
| 367 | tx_confirm.media_delay = WSM_GET32(buf); |
| 368 | tx_confirm.tx_queue_delay = WSM_GET32(buf); |
| 369 | |
| 370 | cw1200_tx_confirm_cb(priv, link_id, &tx_confirm); |
| 371 | return 0; |
| 372 | |
| 373 | underflow: |
| 374 | WARN_ON(1); |
| 375 | return -EINVAL; |
| 376 | } |
| 377 | |
| 378 | static int wsm_multi_tx_confirm(struct cw1200_common *priv, |
| 379 | struct wsm_buf *buf, int link_id) |
| 380 | { |
| 381 | int ret; |
| 382 | int count; |
| 383 | int i; |
| 384 | |
| 385 | count = WSM_GET32(buf); |
| 386 | if (WARN_ON(count <= 0)) |
| 387 | return -EINVAL; |
| 388 | |
| 389 | if (count > 1) { |
| 390 | /* We already released one buffer, now for the rest */ |
| 391 | ret = wsm_release_tx_buffer(priv, count - 1); |
| 392 | if (ret < 0) |
| 393 | return ret; |
| 394 | else if (ret > 0) |
| 395 | cw1200_bh_wakeup(priv); |
| 396 | } |
| 397 | |
| 398 | cw1200_debug_txed_multi(priv, count); |
| 399 | for (i = 0; i < count; ++i) { |
| 400 | ret = wsm_tx_confirm(priv, buf, link_id); |
| 401 | if (ret) |
| 402 | return ret; |
| 403 | } |
| 404 | return ret; |
| 405 | |
| 406 | underflow: |
| 407 | WARN_ON(1); |
| 408 | return -EINVAL; |
| 409 | } |
| 410 | |
| 411 | /* ******************************************************************** */ |
| 412 | |
| 413 | static int wsm_join_confirm(struct cw1200_common *priv, |
| 414 | struct wsm_join_cnf *arg, |
| 415 | struct wsm_buf *buf) |
| 416 | { |
| 417 | arg->status = WSM_GET32(buf); |
| 418 | if (WARN_ON(arg->status) != WSM_STATUS_SUCCESS) |
| 419 | return -EINVAL; |
| 420 | |
| 421 | arg->min_power_level = WSM_GET32(buf); |
| 422 | arg->max_power_level = WSM_GET32(buf); |
| 423 | |
| 424 | return 0; |
| 425 | |
| 426 | underflow: |
| 427 | WARN_ON(1); |
| 428 | return -EINVAL; |
| 429 | } |
| 430 | |
| 431 | int wsm_join(struct cw1200_common *priv, struct wsm_join *arg) |
| 432 | { |
| 433 | int ret; |
| 434 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 435 | struct wsm_join_cnf resp; |
| 436 | wsm_cmd_lock(priv); |
| 437 | |
| 438 | WSM_PUT8(buf, arg->mode); |
| 439 | WSM_PUT8(buf, arg->band); |
| 440 | WSM_PUT16(buf, arg->channel_number); |
| 441 | WSM_PUT(buf, &arg->bssid[0], sizeof(arg->bssid)); |
| 442 | WSM_PUT16(buf, arg->atim_window); |
| 443 | WSM_PUT8(buf, arg->preamble_type); |
| 444 | WSM_PUT8(buf, arg->probe_for_join); |
| 445 | WSM_PUT8(buf, arg->dtim_period); |
| 446 | WSM_PUT8(buf, arg->flags); |
| 447 | WSM_PUT32(buf, arg->ssid_len); |
| 448 | WSM_PUT(buf, &arg->ssid[0], sizeof(arg->ssid)); |
| 449 | WSM_PUT32(buf, arg->beacon_interval); |
| 450 | WSM_PUT32(buf, arg->basic_rate_set); |
| 451 | |
| 452 | priv->tx_burst_idx = -1; |
| 453 | ret = wsm_cmd_send(priv, buf, &resp, |
| 454 | WSM_JOIN_REQ_ID, WSM_CMD_TIMEOUT); |
| 455 | /* TODO: Update state based on resp.min|max_power_level */ |
| 456 | |
| 457 | priv->join_complete_status = resp.status; |
| 458 | |
| 459 | wsm_cmd_unlock(priv); |
| 460 | return ret; |
| 461 | |
| 462 | nomem: |
| 463 | wsm_cmd_unlock(priv); |
| 464 | return -ENOMEM; |
| 465 | } |
| 466 | |
| 467 | /* ******************************************************************** */ |
| 468 | |
| 469 | int wsm_set_bss_params(struct cw1200_common *priv, |
| 470 | const struct wsm_set_bss_params *arg) |
| 471 | { |
| 472 | int ret; |
| 473 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 474 | |
| 475 | wsm_cmd_lock(priv); |
| 476 | |
| 477 | WSM_PUT8(buf, (arg->reset_beacon_loss ? 0x1 : 0)); |
| 478 | WSM_PUT8(buf, arg->beacon_lost_count); |
| 479 | WSM_PUT16(buf, arg->aid); |
| 480 | WSM_PUT32(buf, arg->operational_rate_set); |
| 481 | |
| 482 | ret = wsm_cmd_send(priv, buf, NULL, |
| 483 | WSM_SET_BSS_PARAMS_REQ_ID, WSM_CMD_TIMEOUT); |
| 484 | |
| 485 | wsm_cmd_unlock(priv); |
| 486 | return ret; |
| 487 | |
| 488 | nomem: |
| 489 | wsm_cmd_unlock(priv); |
| 490 | return -ENOMEM; |
| 491 | } |
| 492 | |
| 493 | /* ******************************************************************** */ |
| 494 | |
| 495 | int wsm_add_key(struct cw1200_common *priv, const struct wsm_add_key *arg) |
| 496 | { |
| 497 | int ret; |
| 498 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 499 | |
| 500 | wsm_cmd_lock(priv); |
| 501 | |
| 502 | WSM_PUT(buf, arg, sizeof(*arg)); |
| 503 | |
| 504 | ret = wsm_cmd_send(priv, buf, NULL, |
| 505 | WSM_ADD_KEY_REQ_ID, WSM_CMD_TIMEOUT); |
| 506 | |
| 507 | wsm_cmd_unlock(priv); |
| 508 | return ret; |
| 509 | |
| 510 | nomem: |
| 511 | wsm_cmd_unlock(priv); |
| 512 | return -ENOMEM; |
| 513 | } |
| 514 | |
| 515 | /* ******************************************************************** */ |
| 516 | |
| 517 | int wsm_remove_key(struct cw1200_common *priv, const struct wsm_remove_key *arg) |
| 518 | { |
| 519 | int ret; |
| 520 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 521 | |
| 522 | wsm_cmd_lock(priv); |
| 523 | |
| 524 | WSM_PUT8(buf, arg->index); |
| 525 | WSM_PUT8(buf, 0); |
| 526 | WSM_PUT16(buf, 0); |
| 527 | |
| 528 | ret = wsm_cmd_send(priv, buf, NULL, |
| 529 | WSM_REMOVE_KEY_REQ_ID, WSM_CMD_TIMEOUT); |
| 530 | |
| 531 | wsm_cmd_unlock(priv); |
| 532 | return ret; |
| 533 | |
| 534 | nomem: |
| 535 | wsm_cmd_unlock(priv); |
| 536 | return -ENOMEM; |
| 537 | } |
| 538 | |
| 539 | /* ******************************************************************** */ |
| 540 | |
| 541 | int wsm_set_tx_queue_params(struct cw1200_common *priv, |
| 542 | const struct wsm_set_tx_queue_params *arg, u8 id) |
| 543 | { |
| 544 | int ret; |
| 545 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 546 | u8 queue_id_to_wmm_aci[] = {3, 2, 0, 1}; |
| 547 | |
| 548 | wsm_cmd_lock(priv); |
| 549 | |
| 550 | WSM_PUT8(buf, queue_id_to_wmm_aci[id]); |
| 551 | WSM_PUT8(buf, 0); |
| 552 | WSM_PUT8(buf, arg->ackPolicy); |
| 553 | WSM_PUT8(buf, 0); |
| 554 | WSM_PUT32(buf, arg->maxTransmitLifetime); |
| 555 | WSM_PUT16(buf, arg->allowedMediumTime); |
| 556 | WSM_PUT16(buf, 0); |
| 557 | |
| 558 | ret = wsm_cmd_send(priv, buf, NULL, 0x0012, WSM_CMD_TIMEOUT); |
| 559 | |
| 560 | wsm_cmd_unlock(priv); |
| 561 | return ret; |
| 562 | |
| 563 | nomem: |
| 564 | wsm_cmd_unlock(priv); |
| 565 | return -ENOMEM; |
| 566 | } |
| 567 | |
| 568 | /* ******************************************************************** */ |
| 569 | |
| 570 | int wsm_set_edca_params(struct cw1200_common *priv, |
| 571 | const struct wsm_edca_params *arg) |
| 572 | { |
| 573 | int ret; |
| 574 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 575 | |
| 576 | wsm_cmd_lock(priv); |
| 577 | |
| 578 | /* Implemented according to specification. */ |
| 579 | |
| 580 | WSM_PUT16(buf, arg->params[3].cwmin); |
| 581 | WSM_PUT16(buf, arg->params[2].cwmin); |
| 582 | WSM_PUT16(buf, arg->params[1].cwmin); |
| 583 | WSM_PUT16(buf, arg->params[0].cwmin); |
| 584 | |
| 585 | WSM_PUT16(buf, arg->params[3].cwmax); |
| 586 | WSM_PUT16(buf, arg->params[2].cwmax); |
| 587 | WSM_PUT16(buf, arg->params[1].cwmax); |
| 588 | WSM_PUT16(buf, arg->params[0].cwmax); |
| 589 | |
| 590 | WSM_PUT8(buf, arg->params[3].aifns); |
| 591 | WSM_PUT8(buf, arg->params[2].aifns); |
| 592 | WSM_PUT8(buf, arg->params[1].aifns); |
| 593 | WSM_PUT8(buf, arg->params[0].aifns); |
| 594 | |
| 595 | WSM_PUT16(buf, arg->params[3].txop_limit); |
| 596 | WSM_PUT16(buf, arg->params[2].txop_limit); |
| 597 | WSM_PUT16(buf, arg->params[1].txop_limit); |
| 598 | WSM_PUT16(buf, arg->params[0].txop_limit); |
| 599 | |
| 600 | WSM_PUT32(buf, arg->params[3].max_rx_lifetime); |
| 601 | WSM_PUT32(buf, arg->params[2].max_rx_lifetime); |
| 602 | WSM_PUT32(buf, arg->params[1].max_rx_lifetime); |
| 603 | WSM_PUT32(buf, arg->params[0].max_rx_lifetime); |
| 604 | |
| 605 | ret = wsm_cmd_send(priv, buf, NULL, |
| 606 | WSM_EDCA_PARAMS_REQ_ID, WSM_CMD_TIMEOUT); |
| 607 | wsm_cmd_unlock(priv); |
| 608 | return ret; |
| 609 | |
| 610 | nomem: |
| 611 | wsm_cmd_unlock(priv); |
| 612 | return -ENOMEM; |
| 613 | } |
| 614 | |
| 615 | /* ******************************************************************** */ |
| 616 | |
| 617 | int wsm_switch_channel(struct cw1200_common *priv, |
| 618 | const struct wsm_switch_channel *arg) |
| 619 | { |
| 620 | int ret; |
| 621 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 622 | |
| 623 | wsm_cmd_lock(priv); |
| 624 | |
| 625 | WSM_PUT8(buf, arg->mode); |
| 626 | WSM_PUT8(buf, arg->switch_count); |
| 627 | WSM_PUT16(buf, arg->channel_number); |
| 628 | |
| 629 | priv->channel_switch_in_progress = 1; |
| 630 | |
| 631 | ret = wsm_cmd_send(priv, buf, NULL, |
| 632 | WSM_SWITCH_CHANNEL_REQ_ID, WSM_CMD_TIMEOUT); |
| 633 | if (ret) |
| 634 | priv->channel_switch_in_progress = 0; |
| 635 | |
| 636 | wsm_cmd_unlock(priv); |
| 637 | return ret; |
| 638 | |
| 639 | nomem: |
| 640 | wsm_cmd_unlock(priv); |
| 641 | return -ENOMEM; |
| 642 | } |
| 643 | |
| 644 | /* ******************************************************************** */ |
| 645 | |
| 646 | int wsm_set_pm(struct cw1200_common *priv, const struct wsm_set_pm *arg) |
| 647 | { |
| 648 | int ret; |
| 649 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 650 | priv->ps_mode_switch_in_progress = 1; |
| 651 | |
| 652 | wsm_cmd_lock(priv); |
| 653 | |
| 654 | WSM_PUT8(buf, arg->mode); |
| 655 | WSM_PUT8(buf, arg->fast_psm_idle_period); |
| 656 | WSM_PUT8(buf, arg->ap_psm_change_period); |
| 657 | WSM_PUT8(buf, arg->min_auto_pspoll_period); |
| 658 | |
| 659 | ret = wsm_cmd_send(priv, buf, NULL, |
| 660 | WSM_SET_PM_REQ_ID, WSM_CMD_TIMEOUT); |
| 661 | |
| 662 | wsm_cmd_unlock(priv); |
| 663 | return ret; |
| 664 | |
| 665 | nomem: |
| 666 | wsm_cmd_unlock(priv); |
| 667 | return -ENOMEM; |
| 668 | } |
| 669 | |
| 670 | /* ******************************************************************** */ |
| 671 | |
| 672 | int wsm_start(struct cw1200_common *priv, const struct wsm_start *arg) |
| 673 | { |
| 674 | int ret; |
| 675 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 676 | |
| 677 | wsm_cmd_lock(priv); |
| 678 | |
| 679 | WSM_PUT8(buf, arg->mode); |
| 680 | WSM_PUT8(buf, arg->band); |
| 681 | WSM_PUT16(buf, arg->channel_number); |
| 682 | WSM_PUT32(buf, arg->ct_window); |
| 683 | WSM_PUT32(buf, arg->beacon_interval); |
| 684 | WSM_PUT8(buf, arg->dtim_period); |
| 685 | WSM_PUT8(buf, arg->preamble); |
| 686 | WSM_PUT8(buf, arg->probe_delay); |
| 687 | WSM_PUT8(buf, arg->ssid_len); |
| 688 | WSM_PUT(buf, arg->ssid, sizeof(arg->ssid)); |
| 689 | WSM_PUT32(buf, arg->basic_rate_set); |
| 690 | |
| 691 | priv->tx_burst_idx = -1; |
| 692 | ret = wsm_cmd_send(priv, buf, NULL, |
| 693 | WSM_START_REQ_ID, WSM_CMD_START_TIMEOUT); |
| 694 | |
| 695 | wsm_cmd_unlock(priv); |
| 696 | return ret; |
| 697 | |
| 698 | nomem: |
| 699 | wsm_cmd_unlock(priv); |
| 700 | return -ENOMEM; |
| 701 | } |
| 702 | |
| 703 | /* ******************************************************************** */ |
| 704 | |
| 705 | int wsm_beacon_transmit(struct cw1200_common *priv, |
| 706 | const struct wsm_beacon_transmit *arg) |
| 707 | { |
| 708 | int ret; |
| 709 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 710 | |
| 711 | wsm_cmd_lock(priv); |
| 712 | |
| 713 | WSM_PUT32(buf, arg->enable_beaconing ? 1 : 0); |
| 714 | |
| 715 | ret = wsm_cmd_send(priv, buf, NULL, |
| 716 | WSM_BEACON_TRANSMIT_REQ_ID, WSM_CMD_TIMEOUT); |
| 717 | |
| 718 | wsm_cmd_unlock(priv); |
| 719 | return ret; |
| 720 | |
| 721 | nomem: |
| 722 | wsm_cmd_unlock(priv); |
| 723 | return -ENOMEM; |
| 724 | } |
| 725 | |
| 726 | /* ******************************************************************** */ |
| 727 | |
| 728 | int wsm_start_find(struct cw1200_common *priv) |
| 729 | { |
| 730 | int ret; |
| 731 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 732 | |
| 733 | wsm_cmd_lock(priv); |
| 734 | ret = wsm_cmd_send(priv, buf, NULL, 0x0019, WSM_CMD_TIMEOUT); |
| 735 | wsm_cmd_unlock(priv); |
| 736 | return ret; |
| 737 | } |
| 738 | |
| 739 | /* ******************************************************************** */ |
| 740 | |
| 741 | int wsm_stop_find(struct cw1200_common *priv) |
| 742 | { |
| 743 | int ret; |
| 744 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 745 | |
| 746 | wsm_cmd_lock(priv); |
| 747 | ret = wsm_cmd_send(priv, buf, NULL, 0x001A, WSM_CMD_TIMEOUT); |
| 748 | wsm_cmd_unlock(priv); |
| 749 | return ret; |
| 750 | } |
| 751 | |
| 752 | /* ******************************************************************** */ |
| 753 | |
| 754 | int wsm_map_link(struct cw1200_common *priv, const struct wsm_map_link *arg) |
| 755 | { |
| 756 | int ret; |
| 757 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 758 | u16 cmd = 0x001C | WSM_TX_LINK_ID(arg->link_id); |
| 759 | |
| 760 | wsm_cmd_lock(priv); |
| 761 | |
| 762 | WSM_PUT(buf, &arg->mac_addr[0], sizeof(arg->mac_addr)); |
| 763 | WSM_PUT16(buf, 0); |
| 764 | |
| 765 | ret = wsm_cmd_send(priv, buf, NULL, cmd, WSM_CMD_TIMEOUT); |
| 766 | |
| 767 | wsm_cmd_unlock(priv); |
| 768 | return ret; |
| 769 | |
| 770 | nomem: |
| 771 | wsm_cmd_unlock(priv); |
| 772 | return -ENOMEM; |
| 773 | } |
| 774 | |
| 775 | /* ******************************************************************** */ |
| 776 | |
| 777 | int wsm_update_ie(struct cw1200_common *priv, |
| 778 | const struct wsm_update_ie *arg) |
| 779 | { |
| 780 | int ret; |
| 781 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 782 | |
| 783 | wsm_cmd_lock(priv); |
| 784 | |
| 785 | WSM_PUT16(buf, arg->what); |
| 786 | WSM_PUT16(buf, arg->count); |
| 787 | WSM_PUT(buf, arg->ies, arg->length); |
| 788 | |
| 789 | ret = wsm_cmd_send(priv, buf, NULL, 0x001B, WSM_CMD_TIMEOUT); |
| 790 | |
| 791 | wsm_cmd_unlock(priv); |
| 792 | return ret; |
| 793 | |
| 794 | nomem: |
| 795 | wsm_cmd_unlock(priv); |
| 796 | return -ENOMEM; |
| 797 | } |
| 798 | |
| 799 | /* ******************************************************************** */ |
| 800 | int wsm_set_probe_responder(struct cw1200_common *priv, bool enable) |
| 801 | { |
| 802 | priv->rx_filter.probeResponder = enable; |
| 803 | return wsm_set_rx_filter(priv, &priv->rx_filter); |
| 804 | } |
| 805 | |
| 806 | /* ******************************************************************** */ |
| 807 | /* WSM indication events implementation */ |
| 808 | const char * const cw1200_fw_types[] = { |
| 809 | "ETF", |
| 810 | "WFM", |
| 811 | "WSM", |
| 812 | "HI test", |
| 813 | "Platform test" |
| 814 | }; |
| 815 | |
| 816 | static int wsm_startup_indication(struct cw1200_common *priv, |
| 817 | struct wsm_buf *buf) |
| 818 | { |
| 819 | priv->wsm_caps.input_buffers = WSM_GET16(buf); |
| 820 | priv->wsm_caps.input_buffer_size = WSM_GET16(buf); |
| 821 | priv->wsm_caps.hw_id = WSM_GET16(buf); |
| 822 | priv->wsm_caps.hw_subid = WSM_GET16(buf); |
| 823 | priv->wsm_caps.status = WSM_GET16(buf); |
| 824 | priv->wsm_caps.fw_cap = WSM_GET16(buf); |
| 825 | priv->wsm_caps.fw_type = WSM_GET16(buf); |
| 826 | priv->wsm_caps.fw_api = WSM_GET16(buf); |
| 827 | priv->wsm_caps.fw_build = WSM_GET16(buf); |
| 828 | priv->wsm_caps.fw_ver = WSM_GET16(buf); |
| 829 | WSM_GET(buf, priv->wsm_caps.fw_label, sizeof(priv->wsm_caps.fw_label)); |
| 830 | priv->wsm_caps.fw_label[sizeof(priv->wsm_caps.fw_label) - 1] = 0; /* Do not trust FW too much... */ |
| 831 | |
| 832 | if (WARN_ON(priv->wsm_caps.status)) |
| 833 | return -EINVAL; |
| 834 | |
| 835 | if (WARN_ON(priv->wsm_caps.fw_type > 4)) |
| 836 | return -EINVAL; |
| 837 | |
| 838 | pr_info("CW1200 WSM init done.\n" |
| 839 | " Input buffers: %d x %d bytes\n" |
| 840 | " Hardware: %d.%d\n" |
| 841 | " %s firmware [%s], ver: %d, build: %d," |
| 842 | " api: %d, cap: 0x%.4X\n", |
| 843 | priv->wsm_caps.input_buffers, |
| 844 | priv->wsm_caps.input_buffer_size, |
| 845 | priv->wsm_caps.hw_id, priv->wsm_caps.hw_subid, |
| 846 | cw1200_fw_types[priv->wsm_caps.fw_type], |
| 847 | priv->wsm_caps.fw_label, priv->wsm_caps.fw_ver, |
| 848 | priv->wsm_caps.fw_build, |
| 849 | priv->wsm_caps.fw_api, priv->wsm_caps.fw_cap); |
| 850 | |
| 851 | /* Disable unsupported frequency bands */ |
| 852 | if (!(priv->wsm_caps.fw_cap & 0x1)) |
| 853 | priv->hw->wiphy->bands[IEEE80211_BAND_2GHZ] = NULL; |
| 854 | if (!(priv->wsm_caps.fw_cap & 0x2)) |
| 855 | priv->hw->wiphy->bands[IEEE80211_BAND_5GHZ] = NULL; |
| 856 | |
| 857 | priv->firmware_ready = 1; |
| 858 | wake_up(&priv->wsm_startup_done); |
| 859 | return 0; |
| 860 | |
| 861 | underflow: |
| 862 | WARN_ON(1); |
| 863 | return -EINVAL; |
| 864 | } |
| 865 | |
| 866 | static int wsm_receive_indication(struct cw1200_common *priv, |
| 867 | int link_id, |
| 868 | struct wsm_buf *buf, |
| 869 | struct sk_buff **skb_p) |
| 870 | { |
| 871 | struct wsm_rx rx; |
| 872 | struct ieee80211_hdr *hdr; |
| 873 | size_t hdr_len; |
| 874 | __le16 fctl; |
| 875 | |
| 876 | rx.status = WSM_GET32(buf); |
| 877 | rx.channel_number = WSM_GET16(buf); |
| 878 | rx.rx_rate = WSM_GET8(buf); |
| 879 | rx.rcpi_rssi = WSM_GET8(buf); |
| 880 | rx.flags = WSM_GET32(buf); |
| 881 | |
| 882 | /* FW Workaround: Drop probe resp or |
| 883 | beacon when RSSI is 0 |
| 884 | */ |
| 885 | hdr = (struct ieee80211_hdr *)(*skb_p)->data; |
| 886 | |
| 887 | if (!rx.rcpi_rssi && |
| 888 | (ieee80211_is_probe_resp(hdr->frame_control) || |
| 889 | ieee80211_is_beacon(hdr->frame_control))) |
| 890 | return 0; |
| 891 | |
| 892 | /* If no RSSI subscription has been made, |
| 893 | * convert RCPI to RSSI here |
| 894 | */ |
| 895 | if (!priv->cqm_use_rssi) |
| 896 | rx.rcpi_rssi = rx.rcpi_rssi / 2 - 110; |
| 897 | |
| 898 | fctl = *(__le16 *)buf->data; |
| 899 | hdr_len = buf->data - buf->begin; |
| 900 | skb_pull(*skb_p, hdr_len); |
| 901 | if (!rx.status && ieee80211_is_deauth(fctl)) { |
| 902 | if (priv->join_status == CW1200_JOIN_STATUS_STA) { |
| 903 | /* Shedule unjoin work */ |
| 904 | pr_debug("[WSM] Issue unjoin command (RX).\n"); |
| 905 | wsm_lock_tx_async(priv); |
| 906 | if (queue_work(priv->workqueue, |
| 907 | &priv->unjoin_work) <= 0) |
| 908 | wsm_unlock_tx(priv); |
| 909 | } |
| 910 | } |
| 911 | cw1200_rx_cb(priv, &rx, link_id, skb_p); |
| 912 | if (*skb_p) |
| 913 | skb_push(*skb_p, hdr_len); |
| 914 | |
| 915 | return 0; |
| 916 | |
| 917 | underflow: |
| 918 | return -EINVAL; |
| 919 | } |
| 920 | |
| 921 | static int wsm_event_indication(struct cw1200_common *priv, struct wsm_buf *buf) |
| 922 | { |
| 923 | int first; |
| 924 | struct cw1200_wsm_event *event; |
| 925 | |
| 926 | if (priv->mode == NL80211_IFTYPE_UNSPECIFIED) { |
| 927 | /* STA is stopped. */ |
| 928 | return 0; |
| 929 | } |
| 930 | |
| 931 | event = kzalloc(sizeof(struct cw1200_wsm_event), GFP_KERNEL); |
| 932 | |
| 933 | event->evt.id = __le32_to_cpu(WSM_GET32(buf)); |
| 934 | event->evt.data = __le32_to_cpu(WSM_GET32(buf)); |
| 935 | |
| 936 | pr_debug("[WSM] Event: %d(%d)\n", |
| 937 | event->evt.id, event->evt.data); |
| 938 | |
| 939 | spin_lock(&priv->event_queue_lock); |
| 940 | first = list_empty(&priv->event_queue); |
| 941 | list_add_tail(&event->link, &priv->event_queue); |
| 942 | spin_unlock(&priv->event_queue_lock); |
| 943 | |
| 944 | if (first) |
| 945 | queue_work(priv->workqueue, &priv->event_handler); |
| 946 | |
| 947 | return 0; |
| 948 | |
| 949 | underflow: |
| 950 | kfree(event); |
| 951 | return -EINVAL; |
| 952 | } |
| 953 | |
| 954 | static int wsm_channel_switch_indication(struct cw1200_common *priv, |
| 955 | struct wsm_buf *buf) |
| 956 | { |
| 957 | WARN_ON(WSM_GET32(buf)); |
| 958 | |
| 959 | priv->channel_switch_in_progress = 0; |
| 960 | wake_up(&priv->channel_switch_done); |
| 961 | |
| 962 | wsm_unlock_tx(priv); |
| 963 | |
| 964 | return 0; |
| 965 | |
| 966 | underflow: |
| 967 | return -EINVAL; |
| 968 | } |
| 969 | |
| 970 | static int wsm_set_pm_indication(struct cw1200_common *priv, |
| 971 | struct wsm_buf *buf) |
| 972 | { |
| 973 | /* TODO: Check buf (struct wsm_set_pm_complete) for validity */ |
| 974 | if (priv->ps_mode_switch_in_progress) { |
| 975 | priv->ps_mode_switch_in_progress = 0; |
| 976 | wake_up(&priv->ps_mode_switch_done); |
| 977 | } |
| 978 | return 0; |
| 979 | } |
| 980 | |
| 981 | static int wsm_scan_started(struct cw1200_common *priv, void *arg, |
| 982 | struct wsm_buf *buf) |
| 983 | { |
| 984 | u32 status = WSM_GET32(buf); |
| 985 | if (status != WSM_STATUS_SUCCESS) { |
| 986 | cw1200_scan_failed_cb(priv); |
| 987 | return -EINVAL; |
| 988 | } |
| 989 | return 0; |
| 990 | |
| 991 | underflow: |
| 992 | WARN_ON(1); |
| 993 | return -EINVAL; |
| 994 | } |
| 995 | |
| 996 | static int wsm_scan_complete_indication(struct cw1200_common *priv, |
| 997 | struct wsm_buf *buf) |
| 998 | { |
| 999 | struct wsm_scan_complete arg; |
| 1000 | arg.status = WSM_GET32(buf); |
| 1001 | arg.psm = WSM_GET8(buf); |
| 1002 | arg.num_channels = WSM_GET8(buf); |
| 1003 | cw1200_scan_complete_cb(priv, &arg); |
| 1004 | |
| 1005 | return 0; |
| 1006 | |
| 1007 | underflow: |
| 1008 | return -EINVAL; |
| 1009 | } |
| 1010 | |
| 1011 | static int wsm_join_complete_indication(struct cw1200_common *priv, |
| 1012 | struct wsm_buf *buf) |
| 1013 | { |
| 1014 | struct wsm_join_complete arg; |
| 1015 | arg.status = WSM_GET32(buf); |
| 1016 | pr_debug("[WSM] Join complete indication, status: %d\n", arg.status); |
| 1017 | cw1200_join_complete_cb(priv, &arg); |
| 1018 | |
| 1019 | return 0; |
| 1020 | |
| 1021 | underflow: |
| 1022 | return -EINVAL; |
| 1023 | } |
| 1024 | |
| 1025 | static int wsm_find_complete_indication(struct cw1200_common *priv, |
| 1026 | struct wsm_buf *buf) |
| 1027 | { |
| 1028 | pr_warn("Implement find_complete_indication\n"); |
| 1029 | return 0; |
| 1030 | } |
| 1031 | |
| 1032 | static int wsm_ba_timeout_indication(struct cw1200_common *priv, |
| 1033 | struct wsm_buf *buf) |
| 1034 | { |
| 1035 | u32 dummy; |
| 1036 | u8 tid; |
| 1037 | u8 dummy2; |
| 1038 | u8 addr[ETH_ALEN]; |
| 1039 | |
| 1040 | dummy = WSM_GET32(buf); |
| 1041 | tid = WSM_GET8(buf); |
| 1042 | dummy2 = WSM_GET8(buf); |
| 1043 | WSM_GET(buf, addr, ETH_ALEN); |
| 1044 | |
| 1045 | pr_info("BlockACK timeout, tid %d, addr %pM\n", |
| 1046 | tid, addr); |
| 1047 | |
| 1048 | return 0; |
| 1049 | |
| 1050 | underflow: |
| 1051 | return -EINVAL; |
| 1052 | } |
| 1053 | |
| 1054 | static int wsm_suspend_resume_indication(struct cw1200_common *priv, |
| 1055 | int link_id, struct wsm_buf *buf) |
| 1056 | { |
| 1057 | u32 flags; |
| 1058 | struct wsm_suspend_resume arg; |
| 1059 | |
| 1060 | flags = WSM_GET32(buf); |
| 1061 | arg.link_id = link_id; |
| 1062 | arg.stop = !(flags & 1); |
| 1063 | arg.multicast = !!(flags & 8); |
| 1064 | arg.queue = (flags >> 1) & 3; |
| 1065 | |
| 1066 | cw1200_suspend_resume(priv, &arg); |
| 1067 | |
| 1068 | return 0; |
| 1069 | |
| 1070 | underflow: |
| 1071 | return -EINVAL; |
| 1072 | } |
| 1073 | |
| 1074 | |
| 1075 | /* ******************************************************************** */ |
| 1076 | /* WSM TX */ |
| 1077 | |
| 1078 | static int wsm_cmd_send(struct cw1200_common *priv, |
| 1079 | struct wsm_buf *buf, |
| 1080 | void *arg, u16 cmd, long tmo) |
| 1081 | { |
| 1082 | size_t buf_len = buf->data - buf->begin; |
| 1083 | int ret; |
| 1084 | |
| 1085 | /* Don't bother if we're dead. */ |
| 1086 | if (priv->bh_error) { |
| 1087 | ret = 0; |
| 1088 | goto done; |
| 1089 | } |
| 1090 | |
| 1091 | /* Block until the cmd buffer is completed. Tortuous. */ |
| 1092 | spin_lock(&priv->wsm_cmd.lock); |
| 1093 | while (!priv->wsm_cmd.done) { |
| 1094 | spin_unlock(&priv->wsm_cmd.lock); |
| 1095 | spin_lock(&priv->wsm_cmd.lock); |
| 1096 | } |
| 1097 | priv->wsm_cmd.done = 0; |
| 1098 | spin_unlock(&priv->wsm_cmd.lock); |
| 1099 | |
| 1100 | if (cmd == WSM_WRITE_MIB_REQ_ID || |
| 1101 | cmd == WSM_READ_MIB_REQ_ID) |
| 1102 | pr_debug("[WSM] >>> 0x%.4X [MIB: 0x%.4X] (%zu)\n", |
| 1103 | cmd, __le16_to_cpu(((__le16 *)buf->begin)[2]), |
| 1104 | buf_len); |
| 1105 | else |
| 1106 | pr_debug("[WSM] >>> 0x%.4X (%zu)\n", cmd, buf_len); |
| 1107 | |
| 1108 | /* |
| 1109 | * Due to buggy SPI on CW1200, we need to |
| 1110 | * pad the message by a few bytes to ensure |
| 1111 | * that it's completely received. |
| 1112 | */ |
| 1113 | #ifdef CONFIG_CW1200_ETF |
| 1114 | if (!etf_mode) |
| 1115 | #endif |
| 1116 | buf_len += 4; |
| 1117 | |
| 1118 | /* Fill HI message header */ |
| 1119 | /* BH will add sequence number */ |
| 1120 | ((__le16 *)buf->begin)[0] = __cpu_to_le16(buf_len); |
| 1121 | ((__le16 *)buf->begin)[1] = __cpu_to_le16(cmd); |
| 1122 | |
| 1123 | spin_lock(&priv->wsm_cmd.lock); |
| 1124 | BUG_ON(priv->wsm_cmd.ptr); |
| 1125 | priv->wsm_cmd.ptr = buf->begin; |
| 1126 | priv->wsm_cmd.len = buf_len; |
| 1127 | priv->wsm_cmd.arg = arg; |
| 1128 | priv->wsm_cmd.cmd = cmd; |
| 1129 | spin_unlock(&priv->wsm_cmd.lock); |
| 1130 | |
| 1131 | cw1200_bh_wakeup(priv); |
| 1132 | |
| 1133 | /* Wait for command completion */ |
| 1134 | ret = wait_event_timeout(priv->wsm_cmd_wq, |
| 1135 | priv->wsm_cmd.done, tmo); |
| 1136 | |
| 1137 | if (!ret && !priv->wsm_cmd.done) { |
| 1138 | spin_lock(&priv->wsm_cmd.lock); |
| 1139 | priv->wsm_cmd.done = 1; |
| 1140 | priv->wsm_cmd.ptr = NULL; |
| 1141 | spin_unlock(&priv->wsm_cmd.lock); |
| 1142 | if (priv->bh_error) { |
| 1143 | /* Return ok to help system cleanup */ |
| 1144 | ret = 0; |
| 1145 | } else { |
| 1146 | pr_err("CMD req (0x%04x) stuck in firmware, killing BH\n", priv->wsm_cmd.cmd); |
| 1147 | print_hex_dump_bytes("REQDUMP: ", DUMP_PREFIX_NONE, |
| 1148 | buf->begin, buf_len); |
| 1149 | pr_err("Outstanding outgoing frames: %d\n", priv->hw_bufs_used); |
| 1150 | |
| 1151 | /* Kill BH thread to report the error to the top layer. */ |
| 1152 | atomic_add(1, &priv->bh_term); |
| 1153 | wake_up(&priv->bh_wq); |
| 1154 | ret = -ETIMEDOUT; |
| 1155 | } |
| 1156 | } else { |
| 1157 | spin_lock(&priv->wsm_cmd.lock); |
| 1158 | BUG_ON(!priv->wsm_cmd.done); |
| 1159 | ret = priv->wsm_cmd.ret; |
| 1160 | spin_unlock(&priv->wsm_cmd.lock); |
| 1161 | } |
| 1162 | done: |
| 1163 | wsm_buf_reset(buf); |
| 1164 | return ret; |
| 1165 | } |
| 1166 | |
| 1167 | #ifdef CONFIG_CW1200_ETF |
| 1168 | int wsm_raw_cmd(struct cw1200_common *priv, u8 *data, size_t len) |
| 1169 | { |
| 1170 | struct wsm_buf *buf = &priv->wsm_cmd_buf; |
| 1171 | int ret; |
| 1172 | |
| 1173 | u16 *cmd = (u16 *)(data + 2); |
| 1174 | |
| 1175 | wsm_cmd_lock(priv); |
| 1176 | |
| 1177 | WSM_PUT(buf, data + 4, len - 4); /* Skip over header (u16+u16) */ |
| 1178 | |
| 1179 | ret = wsm_cmd_send(priv, buf, NULL, __le16_to_cpu(*cmd), WSM_CMD_TIMEOUT); |
| 1180 | |
| 1181 | wsm_cmd_unlock(priv); |
| 1182 | return ret; |
| 1183 | |
| 1184 | nomem: |
| 1185 | wsm_cmd_unlock(priv); |
| 1186 | return -ENOMEM; |
| 1187 | } |
| 1188 | #endif /* CONFIG_CW1200_ETF */ |
| 1189 | |
| 1190 | /* ******************************************************************** */ |
| 1191 | /* WSM TX port control */ |
| 1192 | |
| 1193 | void wsm_lock_tx(struct cw1200_common *priv) |
| 1194 | { |
| 1195 | wsm_cmd_lock(priv); |
| 1196 | if (atomic_add_return(1, &priv->tx_lock) == 1) { |
| 1197 | if (wsm_flush_tx(priv)) |
| 1198 | pr_debug("[WSM] TX is locked.\n"); |
| 1199 | } |
| 1200 | wsm_cmd_unlock(priv); |
| 1201 | } |
| 1202 | |
| 1203 | void wsm_lock_tx_async(struct cw1200_common *priv) |
| 1204 | { |
| 1205 | if (atomic_add_return(1, &priv->tx_lock) == 1) |
| 1206 | pr_debug("[WSM] TX is locked (async).\n"); |
| 1207 | } |
| 1208 | |
| 1209 | bool wsm_flush_tx(struct cw1200_common *priv) |
| 1210 | { |
| 1211 | unsigned long timestamp = jiffies; |
| 1212 | bool pending = false; |
| 1213 | long timeout; |
| 1214 | int i; |
| 1215 | |
| 1216 | /* Flush must be called with TX lock held. */ |
| 1217 | BUG_ON(!atomic_read(&priv->tx_lock)); |
| 1218 | |
| 1219 | /* First check if we really need to do something. |
| 1220 | * It is safe to use unprotected access, as hw_bufs_used |
| 1221 | * can only decrements. |
| 1222 | */ |
| 1223 | if (!priv->hw_bufs_used) |
| 1224 | return true; |
| 1225 | |
| 1226 | if (priv->bh_error) { |
| 1227 | /* In case of failure do not wait for magic. */ |
| 1228 | pr_err("[WSM] Fatal error occured, will not flush TX.\n"); |
| 1229 | return false; |
| 1230 | } else { |
| 1231 | /* Get a timestamp of "oldest" frame */ |
| 1232 | for (i = 0; i < 4; ++i) |
| 1233 | pending |= cw1200_queue_get_xmit_timestamp( |
| 1234 | &priv->tx_queue[i], |
| 1235 | ×tamp, 0xffffffff); |
| 1236 | /* If there's nothing pending, we're good */ |
| 1237 | if (!pending) |
| 1238 | return true; |
| 1239 | |
| 1240 | timeout = timestamp + WSM_CMD_LAST_CHANCE_TIMEOUT - jiffies; |
| 1241 | if (timeout < 0 || wait_event_timeout(priv->bh_evt_wq, |
| 1242 | !priv->hw_bufs_used, |
| 1243 | timeout) <= 0) { |
| 1244 | /* Hmmm... Not good. Frame had stuck in firmware. */ |
| 1245 | priv->bh_error = 1; |
| 1246 | wiphy_err(priv->hw->wiphy, "[WSM] TX Frames (%d) stuck in firmware, killing BH\n", priv->hw_bufs_used); |
| 1247 | wake_up(&priv->bh_wq); |
| 1248 | return false; |
| 1249 | } |
| 1250 | |
| 1251 | /* Ok, everything is flushed. */ |
| 1252 | return true; |
| 1253 | } |
| 1254 | } |
| 1255 | |
| 1256 | void wsm_unlock_tx(struct cw1200_common *priv) |
| 1257 | { |
| 1258 | int tx_lock; |
| 1259 | tx_lock = atomic_sub_return(1, &priv->tx_lock); |
| 1260 | BUG_ON(tx_lock < 0); |
| 1261 | |
| 1262 | if (tx_lock == 0) { |
| 1263 | if (!priv->bh_error) |
| 1264 | cw1200_bh_wakeup(priv); |
| 1265 | pr_debug("[WSM] TX is unlocked.\n"); |
| 1266 | } |
| 1267 | } |
| 1268 | |
| 1269 | /* ******************************************************************** */ |
| 1270 | /* WSM RX */ |
| 1271 | |
| 1272 | int wsm_handle_exception(struct cw1200_common *priv, u8 *data, size_t len) |
| 1273 | { |
| 1274 | struct wsm_buf buf; |
| 1275 | u32 reason; |
| 1276 | u32 reg[18]; |
| 1277 | char fname[48]; |
| 1278 | unsigned int i; |
| 1279 | |
| 1280 | static const char * const reason_str[] = { |
| 1281 | "undefined instruction", |
| 1282 | "prefetch abort", |
| 1283 | "data abort", |
| 1284 | "unknown error", |
| 1285 | }; |
| 1286 | |
| 1287 | buf.begin = buf.data = data; |
| 1288 | buf.end = &buf.begin[len]; |
| 1289 | |
| 1290 | reason = WSM_GET32(&buf); |
| 1291 | for (i = 0; i < ARRAY_SIZE(reg); ++i) |
| 1292 | reg[i] = WSM_GET32(&buf); |
| 1293 | WSM_GET(&buf, fname, sizeof(fname)); |
| 1294 | |
| 1295 | if (reason < 4) |
| 1296 | wiphy_err(priv->hw->wiphy, |
| 1297 | "Firmware exception: %s.\n", |
| 1298 | reason_str[reason]); |
| 1299 | else |
| 1300 | wiphy_err(priv->hw->wiphy, |
| 1301 | "Firmware assert at %.*s, line %d\n", |
| 1302 | (int) sizeof(fname), fname, reg[1]); |
| 1303 | |
| 1304 | for (i = 0; i < 12; i += 4) |
| 1305 | wiphy_err(priv->hw->wiphy, |
| 1306 | "R%d: 0x%.8X, R%d: 0x%.8X, R%d: 0x%.8X, R%d: 0x%.8X,\n", |
| 1307 | i + 0, reg[i + 0], i + 1, reg[i + 1], |
| 1308 | i + 2, reg[i + 2], i + 3, reg[i + 3]); |
| 1309 | wiphy_err(priv->hw->wiphy, |
| 1310 | "R12: 0x%.8X, SP: 0x%.8X, LR: 0x%.8X, PC: 0x%.8X,\n", |
| 1311 | reg[i + 0], reg[i + 1], reg[i + 2], reg[i + 3]); |
| 1312 | i += 4; |
| 1313 | wiphy_err(priv->hw->wiphy, |
| 1314 | "CPSR: 0x%.8X, SPSR: 0x%.8X\n", |
| 1315 | reg[i + 0], reg[i + 1]); |
| 1316 | |
| 1317 | print_hex_dump_bytes("R1: ", DUMP_PREFIX_NONE, |
| 1318 | fname, sizeof(fname)); |
| 1319 | return 0; |
| 1320 | |
| 1321 | underflow: |
| 1322 | wiphy_err(priv->hw->wiphy, "Firmware exception.\n"); |
| 1323 | print_hex_dump_bytes("Exception: ", DUMP_PREFIX_NONE, |
| 1324 | data, len); |
| 1325 | return -EINVAL; |
| 1326 | } |
| 1327 | |
| 1328 | int wsm_handle_rx(struct cw1200_common *priv, u16 id, |
| 1329 | struct wsm_hdr *wsm, struct sk_buff **skb_p) |
| 1330 | { |
| 1331 | int ret = 0; |
| 1332 | struct wsm_buf wsm_buf; |
| 1333 | int link_id = (id >> 6) & 0x0F; |
| 1334 | |
| 1335 | /* Strip link id. */ |
| 1336 | id &= ~WSM_TX_LINK_ID(WSM_TX_LINK_ID_MAX); |
| 1337 | |
| 1338 | wsm_buf.begin = (u8 *)&wsm[0]; |
| 1339 | wsm_buf.data = (u8 *)&wsm[1]; |
| 1340 | wsm_buf.end = &wsm_buf.begin[__le32_to_cpu(wsm->len)]; |
| 1341 | |
| 1342 | pr_debug("[WSM] <<< 0x%.4X (%td)\n", id, |
| 1343 | wsm_buf.end - wsm_buf.begin); |
| 1344 | |
| 1345 | #ifdef CONFIG_CW1200_ETF |
| 1346 | if (etf_mode) { |
| 1347 | struct sk_buff *skb = alloc_skb(wsm_buf.end - wsm_buf.begin, GFP_KERNEL); |
| 1348 | |
| 1349 | /* Strip out Sequence num before passing up */ |
| 1350 | wsm->id = __le16_to_cpu(wsm->id); |
| 1351 | wsm->id &= 0x0FFF; |
| 1352 | wsm->id = __cpu_to_le16(wsm->id); |
| 1353 | |
| 1354 | memcpy(skb_put(skb, wsm_buf.end - wsm_buf.begin), |
| 1355 | wsm_buf.begin, |
| 1356 | wsm_buf.end - wsm_buf.begin); |
| 1357 | skb_queue_tail(&priv->etf_q, skb); |
| 1358 | |
| 1359 | /* Special case for startup */ |
| 1360 | if (id == WSM_STARTUP_IND_ID) { |
| 1361 | wsm_startup_indication(priv, &wsm_buf); |
| 1362 | } else if (id & 0x0400) { |
| 1363 | spin_lock(&priv->wsm_cmd.lock); |
| 1364 | priv->wsm_cmd.done = 1; |
| 1365 | spin_unlock(&priv->wsm_cmd.lock); |
| 1366 | wake_up(&priv->wsm_cmd_wq); |
| 1367 | } |
| 1368 | |
| 1369 | goto out; |
| 1370 | } |
| 1371 | #endif |
| 1372 | |
| 1373 | if (id == WSM_TX_CONFIRM_IND_ID) { |
| 1374 | ret = wsm_tx_confirm(priv, &wsm_buf, link_id); |
| 1375 | } else if (id == WSM_MULTI_TX_CONFIRM_ID) { |
| 1376 | ret = wsm_multi_tx_confirm(priv, &wsm_buf, link_id); |
| 1377 | } else if (id & 0x0400) { |
| 1378 | void *wsm_arg; |
| 1379 | u16 wsm_cmd; |
| 1380 | |
| 1381 | /* Do not trust FW too much. Protection against repeated |
| 1382 | * response and race condition removal (see above). |
| 1383 | */ |
| 1384 | spin_lock(&priv->wsm_cmd.lock); |
| 1385 | wsm_arg = priv->wsm_cmd.arg; |
| 1386 | wsm_cmd = priv->wsm_cmd.cmd & |
| 1387 | ~WSM_TX_LINK_ID(WSM_TX_LINK_ID_MAX); |
| 1388 | priv->wsm_cmd.cmd = 0xFFFF; |
| 1389 | spin_unlock(&priv->wsm_cmd.lock); |
| 1390 | |
| 1391 | if (WARN_ON((id & ~0x0400) != wsm_cmd)) { |
| 1392 | /* Note that any non-zero is a fatal retcode. */ |
| 1393 | ret = -EINVAL; |
| 1394 | goto out; |
| 1395 | } |
| 1396 | |
| 1397 | /* Note that wsm_arg can be NULL in case of timeout in |
| 1398 | * wsm_cmd_send(). |
| 1399 | */ |
| 1400 | |
| 1401 | switch (id) { |
| 1402 | case WSM_READ_MIB_RESP_ID: |
| 1403 | if (wsm_arg) |
| 1404 | ret = wsm_read_mib_confirm(priv, wsm_arg, |
| 1405 | &wsm_buf); |
| 1406 | break; |
| 1407 | case WSM_WRITE_MIB_RESP_ID: |
| 1408 | if (wsm_arg) |
| 1409 | ret = wsm_write_mib_confirm(priv, wsm_arg, |
| 1410 | &wsm_buf); |
| 1411 | break; |
| 1412 | case WSM_START_SCAN_RESP_ID: |
| 1413 | if (wsm_arg) |
| 1414 | ret = wsm_scan_started(priv, wsm_arg, &wsm_buf); |
| 1415 | break; |
| 1416 | case WSM_CONFIGURATION_RESP_ID: |
| 1417 | if (wsm_arg) |
| 1418 | ret = wsm_configuration_confirm(priv, wsm_arg, |
| 1419 | &wsm_buf); |
| 1420 | break; |
| 1421 | case WSM_JOIN_RESP_ID: |
| 1422 | if (wsm_arg) |
| 1423 | ret = wsm_join_confirm(priv, wsm_arg, &wsm_buf); |
| 1424 | break; |
| 1425 | case WSM_STOP_SCAN_RESP_ID: |
| 1426 | case WSM_RESET_RESP_ID: |
| 1427 | case WSM_ADD_KEY_RESP_ID: |
| 1428 | case WSM_REMOVE_KEY_RESP_ID: |
| 1429 | case WSM_SET_PM_RESP_ID: |
| 1430 | case WSM_SET_BSS_PARAMS_RESP_ID: |
| 1431 | case 0x0412: /* set_tx_queue_params */ |
| 1432 | case WSM_EDCA_PARAMS_RESP_ID: |
| 1433 | case WSM_SWITCH_CHANNEL_RESP_ID: |
| 1434 | case WSM_START_RESP_ID: |
| 1435 | case WSM_BEACON_TRANSMIT_RESP_ID: |
| 1436 | case 0x0419: /* start_find */ |
| 1437 | case 0x041A: /* stop_find */ |
| 1438 | case 0x041B: /* update_ie */ |
| 1439 | case 0x041C: /* map_link */ |
| 1440 | WARN_ON(wsm_arg != NULL); |
| 1441 | ret = wsm_generic_confirm(priv, wsm_arg, &wsm_buf); |
| 1442 | if (ret) { |
| 1443 | wiphy_warn(priv->hw->wiphy, |
| 1444 | "wsm_generic_confirm failed for request 0x%04x.\n", |
| 1445 | id & ~0x0400); |
| 1446 | |
| 1447 | /* often 0x407 and 0x410 occur, this means we're dead.. */ |
| 1448 | if (priv->join_status >= CW1200_JOIN_STATUS_JOINING) { |
| 1449 | wsm_lock_tx(priv); |
| 1450 | if (queue_work(priv->workqueue, &priv->unjoin_work) <= 0) |
| 1451 | wsm_unlock_tx(priv); |
| 1452 | } |
| 1453 | } |
| 1454 | break; |
| 1455 | default: |
| 1456 | wiphy_warn(priv->hw->wiphy, |
| 1457 | "Unrecognized confirmation 0x%04x\n", |
| 1458 | id & ~0x0400); |
| 1459 | } |
| 1460 | |
| 1461 | spin_lock(&priv->wsm_cmd.lock); |
| 1462 | priv->wsm_cmd.ret = ret; |
| 1463 | priv->wsm_cmd.done = 1; |
| 1464 | spin_unlock(&priv->wsm_cmd.lock); |
| 1465 | |
| 1466 | ret = 0; /* Error response from device should ne stop BH. */ |
| 1467 | |
| 1468 | wake_up(&priv->wsm_cmd_wq); |
| 1469 | } else if (id & 0x0800) { |
| 1470 | switch (id) { |
| 1471 | case WSM_STARTUP_IND_ID: |
| 1472 | ret = wsm_startup_indication(priv, &wsm_buf); |
| 1473 | break; |
| 1474 | case WSM_RECEIVE_IND_ID: |
| 1475 | ret = wsm_receive_indication(priv, link_id, |
| 1476 | &wsm_buf, skb_p); |
| 1477 | break; |
| 1478 | case 0x0805: |
| 1479 | ret = wsm_event_indication(priv, &wsm_buf); |
| 1480 | break; |
| 1481 | case WSM_SCAN_COMPLETE_IND_ID: |
| 1482 | ret = wsm_scan_complete_indication(priv, &wsm_buf); |
| 1483 | break; |
| 1484 | case 0x0808: |
| 1485 | ret = wsm_ba_timeout_indication(priv, &wsm_buf); |
| 1486 | break; |
| 1487 | case 0x0809: |
| 1488 | ret = wsm_set_pm_indication(priv, &wsm_buf); |
| 1489 | break; |
| 1490 | case 0x080A: |
| 1491 | ret = wsm_channel_switch_indication(priv, &wsm_buf); |
| 1492 | break; |
| 1493 | case 0x080B: |
| 1494 | ret = wsm_find_complete_indication(priv, &wsm_buf); |
| 1495 | break; |
| 1496 | case 0x080C: |
| 1497 | ret = wsm_suspend_resume_indication(priv, |
| 1498 | link_id, &wsm_buf); |
| 1499 | break; |
| 1500 | case 0x080F: |
| 1501 | ret = wsm_join_complete_indication(priv, &wsm_buf); |
| 1502 | break; |
| 1503 | default: |
| 1504 | pr_warn("Unrecognised WSM ID %04x\n", id); |
| 1505 | } |
| 1506 | } else { |
| 1507 | WARN_ON(1); |
| 1508 | ret = -EINVAL; |
| 1509 | } |
| 1510 | out: |
| 1511 | return ret; |
| 1512 | } |
| 1513 | |
| 1514 | static bool wsm_handle_tx_data(struct cw1200_common *priv, |
| 1515 | struct wsm_tx *wsm, |
| 1516 | const struct ieee80211_tx_info *tx_info, |
| 1517 | const struct cw1200_txpriv *txpriv, |
| 1518 | struct cw1200_queue *queue) |
| 1519 | { |
| 1520 | bool handled = false; |
| 1521 | const struct ieee80211_hdr *frame = |
| 1522 | (struct ieee80211_hdr *)&((u8 *)wsm)[txpriv->offset]; |
| 1523 | __le16 fctl = frame->frame_control; |
| 1524 | enum { |
| 1525 | do_probe, |
| 1526 | do_drop, |
| 1527 | do_wep, |
| 1528 | do_tx, |
| 1529 | } action = do_tx; |
| 1530 | |
| 1531 | switch (priv->mode) { |
| 1532 | case NL80211_IFTYPE_STATION: |
| 1533 | if (priv->join_status == CW1200_JOIN_STATUS_MONITOR) |
| 1534 | action = do_tx; |
| 1535 | else if (priv->join_status < CW1200_JOIN_STATUS_PRE_STA) |
| 1536 | action = do_drop; |
| 1537 | break; |
| 1538 | case NL80211_IFTYPE_AP: |
| 1539 | if (!priv->join_status) { |
| 1540 | action = do_drop; |
| 1541 | } else if (!(BIT(txpriv->raw_link_id) & |
| 1542 | (BIT(0) | priv->link_id_map))) { |
| 1543 | wiphy_warn(priv->hw->wiphy, |
| 1544 | "A frame with expired link id is dropped.\n"); |
| 1545 | action = do_drop; |
| 1546 | } |
| 1547 | if (cw1200_queue_get_generation(wsm->packet_id) > |
| 1548 | CW1200_MAX_REQUEUE_ATTEMPTS) { |
| 1549 | /* HACK!!! WSM324 firmware has tendency to requeue |
| 1550 | * multicast frames in a loop, causing performance |
| 1551 | * drop and high power consumption of the driver. |
| 1552 | * In this situation it is better just to drop |
| 1553 | * the problematic frame. |
| 1554 | */ |
| 1555 | wiphy_warn(priv->hw->wiphy, |
| 1556 | "Too many attempts to requeue a frame; dropped.\n"); |
| 1557 | action = do_drop; |
| 1558 | } |
| 1559 | break; |
| 1560 | case NL80211_IFTYPE_ADHOC: |
| 1561 | if (priv->join_status != CW1200_JOIN_STATUS_IBSS) |
| 1562 | action = do_drop; |
| 1563 | break; |
| 1564 | case NL80211_IFTYPE_MESH_POINT: |
| 1565 | action = do_tx; /* TODO: Test me! */ |
| 1566 | break; |
| 1567 | case NL80211_IFTYPE_MONITOR: |
| 1568 | default: |
| 1569 | action = do_drop; |
| 1570 | break; |
| 1571 | } |
| 1572 | |
| 1573 | if (action == do_tx) { |
| 1574 | if (ieee80211_is_nullfunc(fctl)) { |
| 1575 | spin_lock(&priv->bss_loss_lock); |
| 1576 | if (priv->bss_loss_state) { |
| 1577 | priv->bss_loss_confirm_id = wsm->packet_id; |
| 1578 | wsm->queue_id = WSM_QUEUE_VOICE; |
| 1579 | } |
| 1580 | spin_unlock(&priv->bss_loss_lock); |
| 1581 | } else if (ieee80211_is_probe_req(fctl)) { |
| 1582 | action = do_probe; |
| 1583 | } else if (ieee80211_is_deauth(fctl) && |
| 1584 | priv->mode != NL80211_IFTYPE_AP) { |
| 1585 | pr_debug("[WSM] Issue unjoin command due to tx deauth.\n"); |
| 1586 | wsm_lock_tx_async(priv); |
| 1587 | if (queue_work(priv->workqueue, |
| 1588 | &priv->unjoin_work) <= 0) |
| 1589 | wsm_unlock_tx(priv); |
| 1590 | } else if (ieee80211_has_protected(fctl) && |
| 1591 | tx_info->control.hw_key && |
| 1592 | tx_info->control.hw_key->keyidx != priv->wep_default_key_id && |
| 1593 | (tx_info->control.hw_key->cipher == WLAN_CIPHER_SUITE_WEP40 || |
| 1594 | tx_info->control.hw_key->cipher == WLAN_CIPHER_SUITE_WEP104)) { |
| 1595 | action = do_wep; |
| 1596 | } |
| 1597 | } |
| 1598 | |
| 1599 | switch (action) { |
| 1600 | case do_probe: |
| 1601 | /* An interesting FW "feature". Device filters probe responses. |
| 1602 | * The easiest way to get it back is to convert |
| 1603 | * probe request into WSM start_scan command. |
| 1604 | */ |
| 1605 | pr_debug("[WSM] Convert probe request to scan.\n"); |
| 1606 | wsm_lock_tx_async(priv); |
| 1607 | priv->pending_frame_id = __le32_to_cpu(wsm->packet_id); |
| 1608 | if (queue_delayed_work(priv->workqueue, |
| 1609 | &priv->scan.probe_work, 0) <= 0) |
| 1610 | wsm_unlock_tx(priv); |
| 1611 | handled = true; |
| 1612 | break; |
| 1613 | case do_drop: |
| 1614 | pr_debug("[WSM] Drop frame (0x%.4X).\n", fctl); |
| 1615 | BUG_ON(cw1200_queue_remove(queue, |
| 1616 | __le32_to_cpu(wsm->packet_id))); |
| 1617 | handled = true; |
| 1618 | break; |
| 1619 | case do_wep: |
| 1620 | pr_debug("[WSM] Issue set_default_wep_key.\n"); |
| 1621 | wsm_lock_tx_async(priv); |
| 1622 | priv->wep_default_key_id = tx_info->control.hw_key->keyidx; |
| 1623 | priv->pending_frame_id = __le32_to_cpu(wsm->packet_id); |
| 1624 | if (queue_work(priv->workqueue, &priv->wep_key_work) <= 0) |
| 1625 | wsm_unlock_tx(priv); |
| 1626 | handled = true; |
| 1627 | break; |
| 1628 | case do_tx: |
| 1629 | pr_debug("[WSM] Transmit frame.\n"); |
| 1630 | break; |
| 1631 | default: |
| 1632 | /* Do nothing */ |
| 1633 | break; |
| 1634 | } |
| 1635 | return handled; |
| 1636 | } |
| 1637 | |
| 1638 | static int cw1200_get_prio_queue(struct cw1200_common *priv, |
| 1639 | u32 link_id_map, int *total) |
| 1640 | { |
| 1641 | static const int urgent = BIT(CW1200_LINK_ID_AFTER_DTIM) | |
| 1642 | BIT(CW1200_LINK_ID_UAPSD); |
| 1643 | struct wsm_edca_queue_params *edca; |
| 1644 | unsigned score, best = -1; |
| 1645 | int winner = -1; |
| 1646 | int queued; |
| 1647 | int i; |
| 1648 | |
| 1649 | /* search for a winner using edca params */ |
| 1650 | for (i = 0; i < 4; ++i) { |
| 1651 | queued = cw1200_queue_get_num_queued(&priv->tx_queue[i], |
| 1652 | link_id_map); |
| 1653 | if (!queued) |
| 1654 | continue; |
| 1655 | *total += queued; |
| 1656 | edca = &priv->edca.params[i]; |
| 1657 | score = ((edca->aifns + edca->cwmin) << 16) + |
| 1658 | ((edca->cwmax - edca->cwmin) * |
| 1659 | (get_random_int() & 0xFFFF)); |
| 1660 | if (score < best && (winner < 0 || i != 3)) { |
| 1661 | best = score; |
| 1662 | winner = i; |
| 1663 | } |
| 1664 | } |
| 1665 | |
| 1666 | /* override winner if bursting */ |
| 1667 | if (winner >= 0 && priv->tx_burst_idx >= 0 && |
| 1668 | winner != priv->tx_burst_idx && |
| 1669 | !cw1200_queue_get_num_queued( |
| 1670 | &priv->tx_queue[winner], |
| 1671 | link_id_map & urgent) && |
| 1672 | cw1200_queue_get_num_queued( |
| 1673 | &priv->tx_queue[priv->tx_burst_idx], |
| 1674 | link_id_map)) |
| 1675 | winner = priv->tx_burst_idx; |
| 1676 | |
| 1677 | return winner; |
| 1678 | } |
| 1679 | |
| 1680 | static int wsm_get_tx_queue_and_mask(struct cw1200_common *priv, |
| 1681 | struct cw1200_queue **queue_p, |
| 1682 | u32 *tx_allowed_mask_p, |
| 1683 | bool *more) |
| 1684 | { |
| 1685 | int idx; |
| 1686 | u32 tx_allowed_mask; |
| 1687 | int total = 0; |
| 1688 | |
| 1689 | /* Search for a queue with multicast frames buffered */ |
| 1690 | if (priv->tx_multicast) { |
| 1691 | tx_allowed_mask = BIT(CW1200_LINK_ID_AFTER_DTIM); |
| 1692 | idx = cw1200_get_prio_queue(priv, |
| 1693 | tx_allowed_mask, &total); |
| 1694 | if (idx >= 0) { |
| 1695 | *more = total > 1; |
| 1696 | goto found; |
| 1697 | } |
| 1698 | } |
| 1699 | |
| 1700 | /* Search for unicast traffic */ |
| 1701 | tx_allowed_mask = ~priv->sta_asleep_mask; |
| 1702 | tx_allowed_mask |= BIT(CW1200_LINK_ID_UAPSD); |
| 1703 | if (priv->sta_asleep_mask) { |
| 1704 | tx_allowed_mask |= priv->pspoll_mask; |
| 1705 | tx_allowed_mask &= ~BIT(CW1200_LINK_ID_AFTER_DTIM); |
| 1706 | } else { |
| 1707 | tx_allowed_mask |= BIT(CW1200_LINK_ID_AFTER_DTIM); |
| 1708 | } |
| 1709 | idx = cw1200_get_prio_queue(priv, |
| 1710 | tx_allowed_mask, &total); |
| 1711 | if (idx < 0) |
| 1712 | return -ENOENT; |
| 1713 | |
| 1714 | found: |
| 1715 | *queue_p = &priv->tx_queue[idx]; |
| 1716 | *tx_allowed_mask_p = tx_allowed_mask; |
| 1717 | return 0; |
| 1718 | } |
| 1719 | |
| 1720 | int wsm_get_tx(struct cw1200_common *priv, u8 **data, |
| 1721 | size_t *tx_len, int *burst) |
| 1722 | { |
| 1723 | struct wsm_tx *wsm = NULL; |
| 1724 | struct ieee80211_tx_info *tx_info; |
| 1725 | struct cw1200_queue *queue = NULL; |
| 1726 | int queue_num; |
| 1727 | u32 tx_allowed_mask = 0; |
| 1728 | const struct cw1200_txpriv *txpriv = NULL; |
| 1729 | int count = 0; |
| 1730 | |
| 1731 | /* More is used only for broadcasts. */ |
| 1732 | bool more = false; |
| 1733 | |
| 1734 | #ifdef CONFIG_CW1200_ITP |
| 1735 | count = cw1200_itp_get_tx(priv, data, tx_len, burst); |
| 1736 | if (count) |
| 1737 | return count; |
| 1738 | #endif |
| 1739 | |
| 1740 | if (priv->wsm_cmd.ptr) { /* CMD request */ |
| 1741 | ++count; |
| 1742 | spin_lock(&priv->wsm_cmd.lock); |
| 1743 | BUG_ON(!priv->wsm_cmd.ptr); |
| 1744 | *data = priv->wsm_cmd.ptr; |
| 1745 | *tx_len = priv->wsm_cmd.len; |
| 1746 | *burst = 1; |
| 1747 | spin_unlock(&priv->wsm_cmd.lock); |
| 1748 | } else { |
| 1749 | for (;;) { |
| 1750 | int ret; |
| 1751 | |
| 1752 | if (atomic_add_return(0, &priv->tx_lock)) |
| 1753 | break; |
| 1754 | |
| 1755 | spin_lock_bh(&priv->ps_state_lock); |
| 1756 | |
| 1757 | ret = wsm_get_tx_queue_and_mask(priv, &queue, |
| 1758 | &tx_allowed_mask, &more); |
| 1759 | queue_num = queue - priv->tx_queue; |
| 1760 | |
| 1761 | if (priv->buffered_multicasts && |
| 1762 | (ret || !more) && |
| 1763 | (priv->tx_multicast || !priv->sta_asleep_mask)) { |
| 1764 | priv->buffered_multicasts = false; |
| 1765 | if (priv->tx_multicast) { |
| 1766 | priv->tx_multicast = false; |
| 1767 | queue_work(priv->workqueue, |
| 1768 | &priv->multicast_stop_work); |
| 1769 | } |
| 1770 | } |
| 1771 | |
| 1772 | spin_unlock_bh(&priv->ps_state_lock); |
| 1773 | |
| 1774 | if (ret) |
| 1775 | break; |
| 1776 | |
| 1777 | if (cw1200_queue_get(queue, |
| 1778 | tx_allowed_mask, |
| 1779 | &wsm, &tx_info, &txpriv)) |
| 1780 | continue; |
| 1781 | |
| 1782 | if (wsm_handle_tx_data(priv, wsm, |
| 1783 | tx_info, txpriv, queue)) |
| 1784 | continue; /* Handled by WSM */ |
| 1785 | |
| 1786 | wsm->hdr.id &= __cpu_to_le16( |
| 1787 | ~WSM_TX_LINK_ID(WSM_TX_LINK_ID_MAX)); |
| 1788 | wsm->hdr.id |= cpu_to_le16( |
| 1789 | WSM_TX_LINK_ID(txpriv->raw_link_id)); |
| 1790 | priv->pspoll_mask &= ~BIT(txpriv->raw_link_id); |
| 1791 | |
| 1792 | *data = (u8 *)wsm; |
| 1793 | *tx_len = __le16_to_cpu(wsm->hdr.len); |
| 1794 | |
| 1795 | /* allow bursting if txop is set */ |
| 1796 | if (priv->edca.params[queue_num].txop_limit) |
| 1797 | *burst = min(*burst, |
| 1798 | (int)cw1200_queue_get_num_queued(queue, tx_allowed_mask) + 1); |
| 1799 | else |
| 1800 | *burst = 1; |
| 1801 | |
| 1802 | /* store index of bursting queue */ |
| 1803 | if (*burst > 1) |
| 1804 | priv->tx_burst_idx = queue_num; |
| 1805 | else |
| 1806 | priv->tx_burst_idx = -1; |
| 1807 | |
| 1808 | if (more) { |
| 1809 | struct ieee80211_hdr *hdr = |
| 1810 | (struct ieee80211_hdr *) |
| 1811 | &((u8 *)wsm)[txpriv->offset]; |
| 1812 | /* more buffered multicast/broadcast frames |
| 1813 | * ==> set MoreData flag in IEEE 802.11 header |
| 1814 | * to inform PS STAs |
| 1815 | */ |
| 1816 | hdr->frame_control |= |
| 1817 | cpu_to_le16(IEEE80211_FCTL_MOREDATA); |
| 1818 | } |
| 1819 | |
| 1820 | pr_debug("[WSM] >>> 0x%.4X (%zu) %p %c\n", |
| 1821 | 0x0004, *tx_len, *data, |
| 1822 | wsm->more ? 'M' : ' '); |
| 1823 | ++count; |
| 1824 | break; |
| 1825 | } |
| 1826 | } |
| 1827 | |
| 1828 | return count; |
| 1829 | } |
| 1830 | |
| 1831 | void wsm_txed(struct cw1200_common *priv, u8 *data) |
| 1832 | { |
| 1833 | if (data == priv->wsm_cmd.ptr) { |
| 1834 | spin_lock(&priv->wsm_cmd.lock); |
| 1835 | priv->wsm_cmd.ptr = NULL; |
| 1836 | spin_unlock(&priv->wsm_cmd.lock); |
| 1837 | } |
| 1838 | } |
| 1839 | |
| 1840 | /* ******************************************************************** */ |
| 1841 | /* WSM buffer */ |
| 1842 | |
| 1843 | void wsm_buf_init(struct wsm_buf *buf) |
| 1844 | { |
| 1845 | BUG_ON(buf->begin); |
| 1846 | buf->begin = kmalloc(FWLOAD_BLOCK_SIZE, GFP_KERNEL | GFP_DMA); |
| 1847 | buf->end = buf->begin ? &buf->begin[FWLOAD_BLOCK_SIZE] : buf->begin; |
| 1848 | wsm_buf_reset(buf); |
| 1849 | } |
| 1850 | |
| 1851 | void wsm_buf_deinit(struct wsm_buf *buf) |
| 1852 | { |
| 1853 | kfree(buf->begin); |
| 1854 | buf->begin = buf->data = buf->end = NULL; |
| 1855 | } |
| 1856 | |
| 1857 | static void wsm_buf_reset(struct wsm_buf *buf) |
| 1858 | { |
| 1859 | if (buf->begin) { |
| 1860 | buf->data = &buf->begin[4]; |
| 1861 | *(u32 *)buf->begin = 0; |
| 1862 | } else { |
| 1863 | buf->data = buf->begin; |
| 1864 | } |
| 1865 | } |
| 1866 | |
| 1867 | static int wsm_buf_reserve(struct wsm_buf *buf, size_t extra_size) |
| 1868 | { |
| 1869 | size_t pos = buf->data - buf->begin; |
| 1870 | size_t size = pos + extra_size; |
| 1871 | |
| 1872 | size = round_up(size, FWLOAD_BLOCK_SIZE); |
| 1873 | |
| 1874 | buf->begin = krealloc(buf->begin, size, GFP_KERNEL | GFP_DMA); |
| 1875 | if (buf->begin) { |
| 1876 | buf->data = &buf->begin[pos]; |
| 1877 | buf->end = &buf->begin[size]; |
| 1878 | return 0; |
| 1879 | } else { |
| 1880 | buf->end = buf->data = buf->begin; |
| 1881 | return -ENOMEM; |
| 1882 | } |
| 1883 | } |