1 // SPDX-License-Identifier: GPL-2.0-only
3 * WSM host interface (HI) implementation for
4 * ST-Ericsson CW1200 mac80211 drivers.
6 * Copyright (c) 2010, ST-Ericsson
7 * Author: Dmitry Tarnyagin <dmitry.tarnyagin@lockless.no>
10 #include <linux/skbuff.h>
11 #include <linux/wait.h>
12 #include <linux/delay.h>
13 #include <linux/sched.h>
14 #include <linux/random.h>
22 #define WSM_CMD_TIMEOUT (2 * HZ) /* With respect to interrupt loss */
23 #define WSM_CMD_START_TIMEOUT (7 * HZ)
24 #define WSM_CMD_RESET_TIMEOUT (3 * HZ) /* 2 sec. timeout was observed. */
25 #define WSM_CMD_MAX_TIMEOUT (3 * HZ)
27 #define WSM_SKIP(buf, size) \
29 if ((buf)->data + size > (buf)->end) \
31 (buf)->data += size; \
34 #define WSM_GET(buf, ptr, size) \
36 if ((buf)->data + size > (buf)->end) \
38 memcpy(ptr, (buf)->data, size); \
39 (buf)->data += size; \
42 #define __WSM_GET(buf, type, type2, cvt) \
45 if ((buf)->data + sizeof(type) > (buf)->end) \
47 val = cvt(*(type2 *)(buf)->data); \
48 (buf)->data += sizeof(type); \
52 #define WSM_GET8(buf) __WSM_GET(buf, u8, u8, (u8))
53 #define WSM_GET16(buf) __WSM_GET(buf, u16, __le16, __le16_to_cpu)
54 #define WSM_GET32(buf) __WSM_GET(buf, u32, __le32, __le32_to_cpu)
56 #define WSM_PUT(buf, ptr, size) \
58 if ((buf)->data + size > (buf)->end) \
59 if (wsm_buf_reserve((buf), size)) \
61 memcpy((buf)->data, ptr, size); \
62 (buf)->data += size; \
65 #define __WSM_PUT(buf, val, type, type2, cvt) \
67 if ((buf)->data + sizeof(type) > (buf)->end) \
68 if (wsm_buf_reserve((buf), sizeof(type))) \
70 *(type2 *)(buf)->data = cvt(val); \
71 (buf)->data += sizeof(type); \
74 #define WSM_PUT8(buf, val) __WSM_PUT(buf, val, u8, u8, (u8))
75 #define WSM_PUT16(buf, val) __WSM_PUT(buf, val, u16, __le16, __cpu_to_le16)
76 #define WSM_PUT32(buf, val) __WSM_PUT(buf, val, u32, __le32, __cpu_to_le32)
78 static void wsm_buf_reset(struct wsm_buf
*buf
);
79 static int wsm_buf_reserve(struct wsm_buf
*buf
, size_t extra_size
);
81 static int wsm_cmd_send(struct cw1200_common
*priv
,
83 void *arg
, u16 cmd
, long tmo
);
85 #define wsm_cmd_lock(__priv) mutex_lock(&((__priv)->wsm_cmd_mux))
86 #define wsm_cmd_unlock(__priv) mutex_unlock(&((__priv)->wsm_cmd_mux))
88 /* ******************************************************************** */
89 /* WSM API implementation */
91 static int wsm_generic_confirm(struct cw1200_common
*priv
,
95 u32 status
= WSM_GET32(buf
);
96 if (status
!= WSM_STATUS_SUCCESS
)
105 int wsm_configuration(struct cw1200_common
*priv
, struct wsm_configuration
*arg
)
108 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
112 WSM_PUT32(buf
, arg
->dot11MaxTransmitMsduLifeTime
);
113 WSM_PUT32(buf
, arg
->dot11MaxReceiveLifeTime
);
114 WSM_PUT32(buf
, arg
->dot11RtsThreshold
);
117 WSM_PUT16(buf
, arg
->dpdData_size
+ 12);
118 WSM_PUT16(buf
, 1); /* DPD version */
119 WSM_PUT(buf
, arg
->dot11StationId
, ETH_ALEN
);
120 WSM_PUT16(buf
, 5); /* DPD flags */
121 WSM_PUT(buf
, arg
->dpdData
, arg
->dpdData_size
);
123 ret
= wsm_cmd_send(priv
, buf
, arg
,
124 WSM_CONFIGURATION_REQ_ID
, WSM_CMD_TIMEOUT
);
126 wsm_cmd_unlock(priv
);
130 wsm_cmd_unlock(priv
);
134 static int wsm_configuration_confirm(struct cw1200_common
*priv
,
135 struct wsm_configuration
*arg
,
141 status
= WSM_GET32(buf
);
142 if (WARN_ON(status
!= WSM_STATUS_SUCCESS
))
145 WSM_GET(buf
, arg
->dot11StationId
, ETH_ALEN
);
146 arg
->dot11FrequencyBandsSupported
= WSM_GET8(buf
);
148 arg
->supportedRateMask
= WSM_GET32(buf
);
149 for (i
= 0; i
< 2; ++i
) {
150 arg
->txPowerRange
[i
].min_power_level
= WSM_GET32(buf
);
151 arg
->txPowerRange
[i
].max_power_level
= WSM_GET32(buf
);
152 arg
->txPowerRange
[i
].stepping
= WSM_GET32(buf
);
161 /* ******************************************************************** */
163 int wsm_reset(struct cw1200_common
*priv
, const struct wsm_reset
*arg
)
166 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
167 u16 cmd
= WSM_RESET_REQ_ID
| WSM_TX_LINK_ID(arg
->link_id
);
171 WSM_PUT32(buf
, arg
->reset_statistics
? 0 : 1);
172 ret
= wsm_cmd_send(priv
, buf
, NULL
, cmd
, WSM_CMD_RESET_TIMEOUT
);
173 wsm_cmd_unlock(priv
);
177 wsm_cmd_unlock(priv
);
181 /* ******************************************************************** */
189 int wsm_read_mib(struct cw1200_common
*priv
, u16 mib_id
, void *_buf
,
193 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
194 struct wsm_mib mib_buf
= {
197 .buf_size
= buf_size
,
201 WSM_PUT16(buf
, mib_id
);
204 ret
= wsm_cmd_send(priv
, buf
, &mib_buf
,
205 WSM_READ_MIB_REQ_ID
, WSM_CMD_TIMEOUT
);
206 wsm_cmd_unlock(priv
);
210 wsm_cmd_unlock(priv
);
214 static int wsm_read_mib_confirm(struct cw1200_common
*priv
,
219 if (WARN_ON(WSM_GET32(buf
) != WSM_STATUS_SUCCESS
))
222 if (WARN_ON(WSM_GET16(buf
) != arg
->mib_id
))
225 size
= WSM_GET16(buf
);
226 if (size
> arg
->buf_size
)
227 size
= arg
->buf_size
;
229 WSM_GET(buf
, arg
->buf
, size
);
230 arg
->buf_size
= size
;
238 /* ******************************************************************** */
240 int wsm_write_mib(struct cw1200_common
*priv
, u16 mib_id
, void *_buf
,
244 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
245 struct wsm_mib mib_buf
= {
248 .buf_size
= buf_size
,
253 WSM_PUT16(buf
, mib_id
);
254 WSM_PUT16(buf
, buf_size
);
255 WSM_PUT(buf
, _buf
, buf_size
);
257 ret
= wsm_cmd_send(priv
, buf
, &mib_buf
,
258 WSM_WRITE_MIB_REQ_ID
, WSM_CMD_TIMEOUT
);
259 wsm_cmd_unlock(priv
);
263 wsm_cmd_unlock(priv
);
267 static int wsm_write_mib_confirm(struct cw1200_common
*priv
,
273 ret
= wsm_generic_confirm(priv
, arg
, buf
);
277 if (arg
->mib_id
== WSM_MIB_ID_OPERATIONAL_POWER_MODE
) {
278 /* OperationalMode: update PM status. */
279 const char *p
= arg
->buf
;
280 cw1200_enable_powersave(priv
, (p
[0] & 0x0F) ? true : false);
285 /* ******************************************************************** */
287 int wsm_scan(struct cw1200_common
*priv
, const struct wsm_scan
*arg
)
291 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
293 if (arg
->num_channels
> 48)
296 if (arg
->num_ssids
> 2)
304 WSM_PUT8(buf
, arg
->band
);
305 WSM_PUT8(buf
, arg
->type
);
306 WSM_PUT8(buf
, arg
->flags
);
307 WSM_PUT8(buf
, arg
->max_tx_rate
);
308 WSM_PUT32(buf
, arg
->auto_scan_interval
);
309 WSM_PUT8(buf
, arg
->num_probes
);
310 WSM_PUT8(buf
, arg
->num_channels
);
311 WSM_PUT8(buf
, arg
->num_ssids
);
312 WSM_PUT8(buf
, arg
->probe_delay
);
314 for (i
= 0; i
< arg
->num_channels
; ++i
) {
315 WSM_PUT16(buf
, arg
->ch
[i
].number
);
317 WSM_PUT32(buf
, arg
->ch
[i
].min_chan_time
);
318 WSM_PUT32(buf
, arg
->ch
[i
].max_chan_time
);
322 for (i
= 0; i
< arg
->num_ssids
; ++i
) {
323 WSM_PUT32(buf
, arg
->ssids
[i
].length
);
324 WSM_PUT(buf
, &arg
->ssids
[i
].ssid
[0],
325 sizeof(arg
->ssids
[i
].ssid
));
328 ret
= wsm_cmd_send(priv
, buf
, NULL
,
329 WSM_START_SCAN_REQ_ID
, WSM_CMD_TIMEOUT
);
330 wsm_cmd_unlock(priv
);
334 wsm_cmd_unlock(priv
);
338 /* ******************************************************************** */
340 int wsm_stop_scan(struct cw1200_common
*priv
)
343 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
345 ret
= wsm_cmd_send(priv
, buf
, NULL
,
346 WSM_STOP_SCAN_REQ_ID
, WSM_CMD_TIMEOUT
);
347 wsm_cmd_unlock(priv
);
352 static int wsm_tx_confirm(struct cw1200_common
*priv
,
356 struct wsm_tx_confirm tx_confirm
;
358 tx_confirm
.packet_id
= WSM_GET32(buf
);
359 tx_confirm
.status
= WSM_GET32(buf
);
360 tx_confirm
.tx_rate
= WSM_GET8(buf
);
361 tx_confirm
.ack_failures
= WSM_GET8(buf
);
362 tx_confirm
.flags
= WSM_GET16(buf
);
363 tx_confirm
.media_delay
= WSM_GET32(buf
);
364 tx_confirm
.tx_queue_delay
= WSM_GET32(buf
);
366 cw1200_tx_confirm_cb(priv
, link_id
, &tx_confirm
);
374 static int wsm_multi_tx_confirm(struct cw1200_common
*priv
,
375 struct wsm_buf
*buf
, int link_id
)
380 count
= WSM_GET32(buf
);
381 if (WARN_ON(count
<= 0))
385 /* We already released one buffer, now for the rest */
386 ret
= wsm_release_tx_buffer(priv
, count
- 1);
390 cw1200_bh_wakeup(priv
);
393 cw1200_debug_txed_multi(priv
, count
);
395 ret
= wsm_tx_confirm(priv
, buf
, link_id
);
396 } while (!ret
&& --count
);
405 /* ******************************************************************** */
407 static int wsm_join_confirm(struct cw1200_common
*priv
,
408 struct wsm_join_cnf
*arg
,
411 arg
->status
= WSM_GET32(buf
);
412 if (WARN_ON(arg
->status
) != WSM_STATUS_SUCCESS
)
415 arg
->min_power_level
= WSM_GET32(buf
);
416 arg
->max_power_level
= WSM_GET32(buf
);
425 int wsm_join(struct cw1200_common
*priv
, struct wsm_join
*arg
)
428 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
429 struct wsm_join_cnf resp
;
432 WSM_PUT8(buf
, arg
->mode
);
433 WSM_PUT8(buf
, arg
->band
);
434 WSM_PUT16(buf
, arg
->channel_number
);
435 WSM_PUT(buf
, &arg
->bssid
[0], sizeof(arg
->bssid
));
436 WSM_PUT16(buf
, arg
->atim_window
);
437 WSM_PUT8(buf
, arg
->preamble_type
);
438 WSM_PUT8(buf
, arg
->probe_for_join
);
439 WSM_PUT8(buf
, arg
->dtim_period
);
440 WSM_PUT8(buf
, arg
->flags
);
441 WSM_PUT32(buf
, arg
->ssid_len
);
442 WSM_PUT(buf
, &arg
->ssid
[0], sizeof(arg
->ssid
));
443 WSM_PUT32(buf
, arg
->beacon_interval
);
444 WSM_PUT32(buf
, arg
->basic_rate_set
);
446 priv
->tx_burst_idx
= -1;
447 ret
= wsm_cmd_send(priv
, buf
, &resp
,
448 WSM_JOIN_REQ_ID
, WSM_CMD_TIMEOUT
);
449 /* TODO: Update state based on resp.min|max_power_level */
451 priv
->join_complete_status
= resp
.status
;
453 wsm_cmd_unlock(priv
);
457 wsm_cmd_unlock(priv
);
461 /* ******************************************************************** */
463 int wsm_set_bss_params(struct cw1200_common
*priv
,
464 const struct wsm_set_bss_params
*arg
)
467 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
471 WSM_PUT8(buf
, (arg
->reset_beacon_loss
? 0x1 : 0));
472 WSM_PUT8(buf
, arg
->beacon_lost_count
);
473 WSM_PUT16(buf
, arg
->aid
);
474 WSM_PUT32(buf
, arg
->operational_rate_set
);
476 ret
= wsm_cmd_send(priv
, buf
, NULL
,
477 WSM_SET_BSS_PARAMS_REQ_ID
, WSM_CMD_TIMEOUT
);
479 wsm_cmd_unlock(priv
);
483 wsm_cmd_unlock(priv
);
487 /* ******************************************************************** */
489 int wsm_add_key(struct cw1200_common
*priv
, const struct wsm_add_key
*arg
)
492 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
496 WSM_PUT(buf
, arg
, sizeof(*arg
));
498 ret
= wsm_cmd_send(priv
, buf
, NULL
,
499 WSM_ADD_KEY_REQ_ID
, WSM_CMD_TIMEOUT
);
501 wsm_cmd_unlock(priv
);
505 wsm_cmd_unlock(priv
);
509 /* ******************************************************************** */
511 int wsm_remove_key(struct cw1200_common
*priv
, const struct wsm_remove_key
*arg
)
514 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
518 WSM_PUT8(buf
, arg
->index
);
522 ret
= wsm_cmd_send(priv
, buf
, NULL
,
523 WSM_REMOVE_KEY_REQ_ID
, WSM_CMD_TIMEOUT
);
525 wsm_cmd_unlock(priv
);
529 wsm_cmd_unlock(priv
);
533 /* ******************************************************************** */
535 int wsm_set_tx_queue_params(struct cw1200_common
*priv
,
536 const struct wsm_set_tx_queue_params
*arg
, u8 id
)
539 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
540 u8 queue_id_to_wmm_aci
[] = {3, 2, 0, 1};
544 WSM_PUT8(buf
, queue_id_to_wmm_aci
[id
]);
546 WSM_PUT8(buf
, arg
->ackPolicy
);
548 WSM_PUT32(buf
, arg
->maxTransmitLifetime
);
549 WSM_PUT16(buf
, arg
->allowedMediumTime
);
552 ret
= wsm_cmd_send(priv
, buf
, NULL
, 0x0012, WSM_CMD_TIMEOUT
);
554 wsm_cmd_unlock(priv
);
558 wsm_cmd_unlock(priv
);
562 /* ******************************************************************** */
564 int wsm_set_edca_params(struct cw1200_common
*priv
,
565 const struct wsm_edca_params
*arg
)
568 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
572 /* Implemented according to specification. */
574 WSM_PUT16(buf
, arg
->params
[3].cwmin
);
575 WSM_PUT16(buf
, arg
->params
[2].cwmin
);
576 WSM_PUT16(buf
, arg
->params
[1].cwmin
);
577 WSM_PUT16(buf
, arg
->params
[0].cwmin
);
579 WSM_PUT16(buf
, arg
->params
[3].cwmax
);
580 WSM_PUT16(buf
, arg
->params
[2].cwmax
);
581 WSM_PUT16(buf
, arg
->params
[1].cwmax
);
582 WSM_PUT16(buf
, arg
->params
[0].cwmax
);
584 WSM_PUT8(buf
, arg
->params
[3].aifns
);
585 WSM_PUT8(buf
, arg
->params
[2].aifns
);
586 WSM_PUT8(buf
, arg
->params
[1].aifns
);
587 WSM_PUT8(buf
, arg
->params
[0].aifns
);
589 WSM_PUT16(buf
, arg
->params
[3].txop_limit
);
590 WSM_PUT16(buf
, arg
->params
[2].txop_limit
);
591 WSM_PUT16(buf
, arg
->params
[1].txop_limit
);
592 WSM_PUT16(buf
, arg
->params
[0].txop_limit
);
594 WSM_PUT32(buf
, arg
->params
[3].max_rx_lifetime
);
595 WSM_PUT32(buf
, arg
->params
[2].max_rx_lifetime
);
596 WSM_PUT32(buf
, arg
->params
[1].max_rx_lifetime
);
597 WSM_PUT32(buf
, arg
->params
[0].max_rx_lifetime
);
599 ret
= wsm_cmd_send(priv
, buf
, NULL
,
600 WSM_EDCA_PARAMS_REQ_ID
, WSM_CMD_TIMEOUT
);
601 wsm_cmd_unlock(priv
);
605 wsm_cmd_unlock(priv
);
609 /* ******************************************************************** */
611 int wsm_switch_channel(struct cw1200_common
*priv
,
612 const struct wsm_switch_channel
*arg
)
615 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
619 WSM_PUT8(buf
, arg
->mode
);
620 WSM_PUT8(buf
, arg
->switch_count
);
621 WSM_PUT16(buf
, arg
->channel_number
);
623 priv
->channel_switch_in_progress
= 1;
625 ret
= wsm_cmd_send(priv
, buf
, NULL
,
626 WSM_SWITCH_CHANNEL_REQ_ID
, WSM_CMD_TIMEOUT
);
628 priv
->channel_switch_in_progress
= 0;
630 wsm_cmd_unlock(priv
);
634 wsm_cmd_unlock(priv
);
638 /* ******************************************************************** */
640 int wsm_set_pm(struct cw1200_common
*priv
, const struct wsm_set_pm
*arg
)
643 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
644 priv
->ps_mode_switch_in_progress
= 1;
648 WSM_PUT8(buf
, arg
->mode
);
649 WSM_PUT8(buf
, arg
->fast_psm_idle_period
);
650 WSM_PUT8(buf
, arg
->ap_psm_change_period
);
651 WSM_PUT8(buf
, arg
->min_auto_pspoll_period
);
653 ret
= wsm_cmd_send(priv
, buf
, NULL
,
654 WSM_SET_PM_REQ_ID
, WSM_CMD_TIMEOUT
);
656 wsm_cmd_unlock(priv
);
660 wsm_cmd_unlock(priv
);
664 /* ******************************************************************** */
666 int wsm_start(struct cw1200_common
*priv
, const struct wsm_start
*arg
)
669 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
673 WSM_PUT8(buf
, arg
->mode
);
674 WSM_PUT8(buf
, arg
->band
);
675 WSM_PUT16(buf
, arg
->channel_number
);
676 WSM_PUT32(buf
, arg
->ct_window
);
677 WSM_PUT32(buf
, arg
->beacon_interval
);
678 WSM_PUT8(buf
, arg
->dtim_period
);
679 WSM_PUT8(buf
, arg
->preamble
);
680 WSM_PUT8(buf
, arg
->probe_delay
);
681 WSM_PUT8(buf
, arg
->ssid_len
);
682 WSM_PUT(buf
, arg
->ssid
, sizeof(arg
->ssid
));
683 WSM_PUT32(buf
, arg
->basic_rate_set
);
685 priv
->tx_burst_idx
= -1;
686 ret
= wsm_cmd_send(priv
, buf
, NULL
,
687 WSM_START_REQ_ID
, WSM_CMD_START_TIMEOUT
);
689 wsm_cmd_unlock(priv
);
693 wsm_cmd_unlock(priv
);
697 /* ******************************************************************** */
699 int wsm_beacon_transmit(struct cw1200_common
*priv
,
700 const struct wsm_beacon_transmit
*arg
)
703 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
707 WSM_PUT32(buf
, arg
->enable_beaconing
? 1 : 0);
709 ret
= wsm_cmd_send(priv
, buf
, NULL
,
710 WSM_BEACON_TRANSMIT_REQ_ID
, WSM_CMD_TIMEOUT
);
712 wsm_cmd_unlock(priv
);
716 wsm_cmd_unlock(priv
);
720 /* ******************************************************************** */
722 int wsm_start_find(struct cw1200_common
*priv
)
725 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
728 ret
= wsm_cmd_send(priv
, buf
, NULL
, 0x0019, WSM_CMD_TIMEOUT
);
729 wsm_cmd_unlock(priv
);
733 /* ******************************************************************** */
735 int wsm_stop_find(struct cw1200_common
*priv
)
738 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
741 ret
= wsm_cmd_send(priv
, buf
, NULL
, 0x001A, WSM_CMD_TIMEOUT
);
742 wsm_cmd_unlock(priv
);
746 /* ******************************************************************** */
748 int wsm_map_link(struct cw1200_common
*priv
, const struct wsm_map_link
*arg
)
751 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
752 u16 cmd
= 0x001C | WSM_TX_LINK_ID(arg
->link_id
);
756 WSM_PUT(buf
, &arg
->mac_addr
[0], sizeof(arg
->mac_addr
));
759 ret
= wsm_cmd_send(priv
, buf
, NULL
, cmd
, WSM_CMD_TIMEOUT
);
761 wsm_cmd_unlock(priv
);
765 wsm_cmd_unlock(priv
);
769 /* ******************************************************************** */
771 int wsm_update_ie(struct cw1200_common
*priv
,
772 const struct wsm_update_ie
*arg
)
775 struct wsm_buf
*buf
= &priv
->wsm_cmd_buf
;
779 WSM_PUT16(buf
, arg
->what
);
780 WSM_PUT16(buf
, arg
->count
);
781 WSM_PUT(buf
, arg
->ies
, arg
->length
);
783 ret
= wsm_cmd_send(priv
, buf
, NULL
, 0x001B, WSM_CMD_TIMEOUT
);
785 wsm_cmd_unlock(priv
);
789 wsm_cmd_unlock(priv
);
793 /* ******************************************************************** */
794 int wsm_set_probe_responder(struct cw1200_common
*priv
, bool enable
)
796 priv
->rx_filter
.probeResponder
= enable
;
797 return wsm_set_rx_filter(priv
, &priv
->rx_filter
);
800 /* ******************************************************************** */
801 /* WSM indication events implementation */
802 const char * const cw1200_fw_types
[] = {
810 static int wsm_startup_indication(struct cw1200_common
*priv
,
813 priv
->wsm_caps
.input_buffers
= WSM_GET16(buf
);
814 priv
->wsm_caps
.input_buffer_size
= WSM_GET16(buf
);
815 priv
->wsm_caps
.hw_id
= WSM_GET16(buf
);
816 priv
->wsm_caps
.hw_subid
= WSM_GET16(buf
);
817 priv
->wsm_caps
.status
= WSM_GET16(buf
);
818 priv
->wsm_caps
.fw_cap
= WSM_GET16(buf
);
819 priv
->wsm_caps
.fw_type
= WSM_GET16(buf
);
820 priv
->wsm_caps
.fw_api
= WSM_GET16(buf
);
821 priv
->wsm_caps
.fw_build
= WSM_GET16(buf
);
822 priv
->wsm_caps
.fw_ver
= WSM_GET16(buf
);
823 WSM_GET(buf
, priv
->wsm_caps
.fw_label
, sizeof(priv
->wsm_caps
.fw_label
));
824 priv
->wsm_caps
.fw_label
[sizeof(priv
->wsm_caps
.fw_label
) - 1] = 0; /* Do not trust FW too much... */
826 if (WARN_ON(priv
->wsm_caps
.status
))
829 if (WARN_ON(priv
->wsm_caps
.fw_type
> 4))
832 pr_info("CW1200 WSM init done.\n"
833 " Input buffers: %d x %d bytes\n"
835 " %s firmware [%s], ver: %d, build: %d,"
836 " api: %d, cap: 0x%.4X\n",
837 priv
->wsm_caps
.input_buffers
,
838 priv
->wsm_caps
.input_buffer_size
,
839 priv
->wsm_caps
.hw_id
, priv
->wsm_caps
.hw_subid
,
840 cw1200_fw_types
[priv
->wsm_caps
.fw_type
],
841 priv
->wsm_caps
.fw_label
, priv
->wsm_caps
.fw_ver
,
842 priv
->wsm_caps
.fw_build
,
843 priv
->wsm_caps
.fw_api
, priv
->wsm_caps
.fw_cap
);
845 /* Disable unsupported frequency bands */
846 if (!(priv
->wsm_caps
.fw_cap
& 0x1))
847 priv
->hw
->wiphy
->bands
[NL80211_BAND_2GHZ
] = NULL
;
848 if (!(priv
->wsm_caps
.fw_cap
& 0x2))
849 priv
->hw
->wiphy
->bands
[NL80211_BAND_5GHZ
] = NULL
;
851 priv
->firmware_ready
= 1;
852 wake_up(&priv
->wsm_startup_done
);
860 static int wsm_receive_indication(struct cw1200_common
*priv
,
863 struct sk_buff
**skb_p
)
866 struct ieee80211_hdr
*hdr
;
870 rx
.status
= WSM_GET32(buf
);
871 rx
.channel_number
= WSM_GET16(buf
);
872 rx
.rx_rate
= WSM_GET8(buf
);
873 rx
.rcpi_rssi
= WSM_GET8(buf
);
874 rx
.flags
= WSM_GET32(buf
);
876 /* FW Workaround: Drop probe resp or
877 beacon when RSSI is 0
879 hdr
= (struct ieee80211_hdr
*)(*skb_p
)->data
;
882 (ieee80211_is_probe_resp(hdr
->frame_control
) ||
883 ieee80211_is_beacon(hdr
->frame_control
)))
886 /* If no RSSI subscription has been made,
887 * convert RCPI to RSSI here
889 if (!priv
->cqm_use_rssi
)
890 rx
.rcpi_rssi
= rx
.rcpi_rssi
/ 2 - 110;
892 fctl
= *(__le16
*)buf
->data
;
893 hdr_len
= buf
->data
- buf
->begin
;
894 skb_pull(*skb_p
, hdr_len
);
895 if (!rx
.status
&& ieee80211_is_deauth(fctl
)) {
896 if (priv
->join_status
== CW1200_JOIN_STATUS_STA
) {
897 /* Shedule unjoin work */
898 pr_debug("[WSM] Issue unjoin command (RX).\n");
899 wsm_lock_tx_async(priv
);
900 if (queue_work(priv
->workqueue
,
901 &priv
->unjoin_work
) <= 0)
905 cw1200_rx_cb(priv
, &rx
, link_id
, skb_p
);
907 skb_push(*skb_p
, hdr_len
);
915 static int wsm_event_indication(struct cw1200_common
*priv
, struct wsm_buf
*buf
)
918 struct cw1200_wsm_event
*event
;
920 if (priv
->mode
== NL80211_IFTYPE_UNSPECIFIED
) {
921 /* STA is stopped. */
925 event
= kzalloc(sizeof(struct cw1200_wsm_event
), GFP_KERNEL
);
929 event
->evt
.id
= WSM_GET32(buf
);
930 event
->evt
.data
= WSM_GET32(buf
);
932 pr_debug("[WSM] Event: %d(%d)\n",
933 event
->evt
.id
, event
->evt
.data
);
935 spin_lock(&priv
->event_queue_lock
);
936 first
= list_empty(&priv
->event_queue
);
937 list_add_tail(&event
->link
, &priv
->event_queue
);
938 spin_unlock(&priv
->event_queue_lock
);
941 queue_work(priv
->workqueue
, &priv
->event_handler
);
950 static int wsm_channel_switch_indication(struct cw1200_common
*priv
,
953 WARN_ON(WSM_GET32(buf
));
955 priv
->channel_switch_in_progress
= 0;
956 wake_up(&priv
->channel_switch_done
);
966 static int wsm_set_pm_indication(struct cw1200_common
*priv
,
969 /* TODO: Check buf (struct wsm_set_pm_complete) for validity */
970 if (priv
->ps_mode_switch_in_progress
) {
971 priv
->ps_mode_switch_in_progress
= 0;
972 wake_up(&priv
->ps_mode_switch_done
);
977 static int wsm_scan_started(struct cw1200_common
*priv
, void *arg
,
980 u32 status
= WSM_GET32(buf
);
981 if (status
!= WSM_STATUS_SUCCESS
) {
982 cw1200_scan_failed_cb(priv
);
992 static int wsm_scan_complete_indication(struct cw1200_common
*priv
,
995 struct wsm_scan_complete arg
;
996 arg
.status
= WSM_GET32(buf
);
997 arg
.psm
= WSM_GET8(buf
);
998 arg
.num_channels
= WSM_GET8(buf
);
999 cw1200_scan_complete_cb(priv
, &arg
);
1007 static int wsm_join_complete_indication(struct cw1200_common
*priv
,
1008 struct wsm_buf
*buf
)
1010 struct wsm_join_complete arg
;
1011 arg
.status
= WSM_GET32(buf
);
1012 pr_debug("[WSM] Join complete indication, status: %d\n", arg
.status
);
1013 cw1200_join_complete_cb(priv
, &arg
);
1021 static int wsm_find_complete_indication(struct cw1200_common
*priv
,
1022 struct wsm_buf
*buf
)
1024 pr_warn("Implement find_complete_indication\n");
1028 static int wsm_ba_timeout_indication(struct cw1200_common
*priv
,
1029 struct wsm_buf
*buf
)
1036 dummy
= WSM_GET32(buf
);
1037 tid
= WSM_GET8(buf
);
1038 dummy2
= WSM_GET8(buf
);
1039 WSM_GET(buf
, addr
, ETH_ALEN
);
1041 pr_info("BlockACK timeout, tid %d, addr %pM\n",
1050 static int wsm_suspend_resume_indication(struct cw1200_common
*priv
,
1051 int link_id
, struct wsm_buf
*buf
)
1054 struct wsm_suspend_resume arg
;
1056 flags
= WSM_GET32(buf
);
1057 arg
.link_id
= link_id
;
1058 arg
.stop
= !(flags
& 1);
1059 arg
.multicast
= !!(flags
& 8);
1060 arg
.queue
= (flags
>> 1) & 3;
1062 cw1200_suspend_resume(priv
, &arg
);
1071 /* ******************************************************************** */
1074 static int wsm_cmd_send(struct cw1200_common
*priv
,
1075 struct wsm_buf
*buf
,
1076 void *arg
, u16 cmd
, long tmo
)
1078 size_t buf_len
= buf
->data
- buf
->begin
;
1081 /* Don't bother if we're dead. */
1082 if (priv
->bh_error
) {
1087 /* Block until the cmd buffer is completed. Tortuous. */
1088 spin_lock(&priv
->wsm_cmd
.lock
);
1089 while (!priv
->wsm_cmd
.done
) {
1090 spin_unlock(&priv
->wsm_cmd
.lock
);
1091 spin_lock(&priv
->wsm_cmd
.lock
);
1093 priv
->wsm_cmd
.done
= 0;
1094 spin_unlock(&priv
->wsm_cmd
.lock
);
1096 if (cmd
== WSM_WRITE_MIB_REQ_ID
||
1097 cmd
== WSM_READ_MIB_REQ_ID
)
1098 pr_debug("[WSM] >>> 0x%.4X [MIB: 0x%.4X] (%zu)\n",
1099 cmd
, __le16_to_cpu(((__le16
*)buf
->begin
)[2]),
1102 pr_debug("[WSM] >>> 0x%.4X (%zu)\n", cmd
, buf_len
);
1104 /* Due to buggy SPI on CW1200, we need to
1105 * pad the message by a few bytes to ensure
1106 * that it's completely received.
1110 /* Fill HI message header */
1111 /* BH will add sequence number */
1112 ((__le16
*)buf
->begin
)[0] = __cpu_to_le16(buf_len
);
1113 ((__le16
*)buf
->begin
)[1] = __cpu_to_le16(cmd
);
1115 spin_lock(&priv
->wsm_cmd
.lock
);
1116 BUG_ON(priv
->wsm_cmd
.ptr
);
1117 priv
->wsm_cmd
.ptr
= buf
->begin
;
1118 priv
->wsm_cmd
.len
= buf_len
;
1119 priv
->wsm_cmd
.arg
= arg
;
1120 priv
->wsm_cmd
.cmd
= cmd
;
1121 spin_unlock(&priv
->wsm_cmd
.lock
);
1123 cw1200_bh_wakeup(priv
);
1125 /* Wait for command completion */
1126 ret
= wait_event_timeout(priv
->wsm_cmd_wq
,
1127 priv
->wsm_cmd
.done
, tmo
);
1129 if (!ret
&& !priv
->wsm_cmd
.done
) {
1130 spin_lock(&priv
->wsm_cmd
.lock
);
1131 priv
->wsm_cmd
.done
= 1;
1132 priv
->wsm_cmd
.ptr
= NULL
;
1133 spin_unlock(&priv
->wsm_cmd
.lock
);
1134 if (priv
->bh_error
) {
1135 /* Return ok to help system cleanup */
1138 pr_err("CMD req (0x%04x) stuck in firmware, killing BH\n", priv
->wsm_cmd
.cmd
);
1139 print_hex_dump_bytes("REQDUMP: ", DUMP_PREFIX_NONE
,
1140 buf
->begin
, buf_len
);
1141 pr_err("Outstanding outgoing frames: %d\n", priv
->hw_bufs_used
);
1143 /* Kill BH thread to report the error to the top layer. */
1144 atomic_add(1, &priv
->bh_term
);
1145 wake_up(&priv
->bh_wq
);
1149 spin_lock(&priv
->wsm_cmd
.lock
);
1150 BUG_ON(!priv
->wsm_cmd
.done
);
1151 ret
= priv
->wsm_cmd
.ret
;
1152 spin_unlock(&priv
->wsm_cmd
.lock
);
1159 /* ******************************************************************** */
1160 /* WSM TX port control */
1162 void wsm_lock_tx(struct cw1200_common
*priv
)
1165 if (atomic_add_return(1, &priv
->tx_lock
) == 1) {
1166 if (wsm_flush_tx(priv
))
1167 pr_debug("[WSM] TX is locked.\n");
1169 wsm_cmd_unlock(priv
);
1172 void wsm_lock_tx_async(struct cw1200_common
*priv
)
1174 if (atomic_add_return(1, &priv
->tx_lock
) == 1)
1175 pr_debug("[WSM] TX is locked (async).\n");
1178 bool wsm_flush_tx(struct cw1200_common
*priv
)
1180 unsigned long timestamp
= jiffies
;
1181 bool pending
= false;
1185 /* Flush must be called with TX lock held. */
1186 BUG_ON(!atomic_read(&priv
->tx_lock
));
1188 /* First check if we really need to do something.
1189 * It is safe to use unprotected access, as hw_bufs_used
1190 * can only decrements.
1192 if (!priv
->hw_bufs_used
)
1195 if (priv
->bh_error
) {
1196 /* In case of failure do not wait for magic. */
1197 pr_err("[WSM] Fatal error occurred, will not flush TX.\n");
1200 /* Get a timestamp of "oldest" frame */
1201 for (i
= 0; i
< 4; ++i
)
1202 pending
|= cw1200_queue_get_xmit_timestamp(
1204 ×tamp
, 0xffffffff);
1205 /* If there's nothing pending, we're good */
1209 timeout
= timestamp
+ WSM_CMD_LAST_CHANCE_TIMEOUT
- jiffies
;
1210 if (timeout
< 0 || wait_event_timeout(priv
->bh_evt_wq
,
1211 !priv
->hw_bufs_used
,
1213 /* Hmmm... Not good. Frame had stuck in firmware. */
1215 wiphy_err(priv
->hw
->wiphy
, "[WSM] TX Frames (%d) stuck in firmware, killing BH\n", priv
->hw_bufs_used
);
1216 wake_up(&priv
->bh_wq
);
1220 /* Ok, everything is flushed. */
1225 void wsm_unlock_tx(struct cw1200_common
*priv
)
1228 tx_lock
= atomic_sub_return(1, &priv
->tx_lock
);
1229 BUG_ON(tx_lock
< 0);
1232 if (!priv
->bh_error
)
1233 cw1200_bh_wakeup(priv
);
1234 pr_debug("[WSM] TX is unlocked.\n");
1238 /* ******************************************************************** */
1241 int wsm_handle_exception(struct cw1200_common
*priv
, u8
*data
, size_t len
)
1249 static const char * const reason_str
[] = {
1250 "undefined instruction",
1256 buf
.begin
= buf
.data
= data
;
1257 buf
.end
= &buf
.begin
[len
];
1259 reason
= WSM_GET32(&buf
);
1260 for (i
= 0; i
< ARRAY_SIZE(reg
); ++i
)
1261 reg
[i
] = WSM_GET32(&buf
);
1262 WSM_GET(&buf
, fname
, sizeof(fname
));
1265 wiphy_err(priv
->hw
->wiphy
,
1266 "Firmware exception: %s.\n",
1267 reason_str
[reason
]);
1269 wiphy_err(priv
->hw
->wiphy
,
1270 "Firmware assert at %.*s, line %d\n",
1271 (int) sizeof(fname
), fname
, reg
[1]);
1273 for (i
= 0; i
< 12; i
+= 4)
1274 wiphy_err(priv
->hw
->wiphy
,
1275 "R%d: 0x%.8X, R%d: 0x%.8X, R%d: 0x%.8X, R%d: 0x%.8X,\n",
1276 i
+ 0, reg
[i
+ 0], i
+ 1, reg
[i
+ 1],
1277 i
+ 2, reg
[i
+ 2], i
+ 3, reg
[i
+ 3]);
1278 wiphy_err(priv
->hw
->wiphy
,
1279 "R12: 0x%.8X, SP: 0x%.8X, LR: 0x%.8X, PC: 0x%.8X,\n",
1280 reg
[i
+ 0], reg
[i
+ 1], reg
[i
+ 2], reg
[i
+ 3]);
1282 wiphy_err(priv
->hw
->wiphy
,
1283 "CPSR: 0x%.8X, SPSR: 0x%.8X\n",
1284 reg
[i
+ 0], reg
[i
+ 1]);
1286 print_hex_dump_bytes("R1: ", DUMP_PREFIX_NONE
,
1287 fname
, sizeof(fname
));
1291 wiphy_err(priv
->hw
->wiphy
, "Firmware exception.\n");
1292 print_hex_dump_bytes("Exception: ", DUMP_PREFIX_NONE
,
1297 int wsm_handle_rx(struct cw1200_common
*priv
, u16 id
,
1298 struct wsm_hdr
*wsm
, struct sk_buff
**skb_p
)
1301 struct wsm_buf wsm_buf
;
1302 int link_id
= (id
>> 6) & 0x0F;
1304 /* Strip link id. */
1305 id
&= ~WSM_TX_LINK_ID(WSM_TX_LINK_ID_MAX
);
1307 wsm_buf
.begin
= (u8
*)&wsm
[0];
1308 wsm_buf
.data
= (u8
*)&wsm
[1];
1309 wsm_buf
.end
= &wsm_buf
.begin
[__le16_to_cpu(wsm
->len
)];
1311 pr_debug("[WSM] <<< 0x%.4X (%td)\n", id
,
1312 wsm_buf
.end
- wsm_buf
.begin
);
1314 if (id
== WSM_TX_CONFIRM_IND_ID
) {
1315 ret
= wsm_tx_confirm(priv
, &wsm_buf
, link_id
);
1316 } else if (id
== WSM_MULTI_TX_CONFIRM_ID
) {
1317 ret
= wsm_multi_tx_confirm(priv
, &wsm_buf
, link_id
);
1318 } else if (id
& 0x0400) {
1322 /* Do not trust FW too much. Protection against repeated
1323 * response and race condition removal (see above).
1325 spin_lock(&priv
->wsm_cmd
.lock
);
1326 wsm_arg
= priv
->wsm_cmd
.arg
;
1327 wsm_cmd
= priv
->wsm_cmd
.cmd
&
1328 ~WSM_TX_LINK_ID(WSM_TX_LINK_ID_MAX
);
1329 priv
->wsm_cmd
.cmd
= 0xFFFF;
1330 spin_unlock(&priv
->wsm_cmd
.lock
);
1332 if (WARN_ON((id
& ~0x0400) != wsm_cmd
)) {
1333 /* Note that any non-zero is a fatal retcode. */
1338 /* Note that wsm_arg can be NULL in case of timeout in
1343 case WSM_READ_MIB_RESP_ID
:
1345 ret
= wsm_read_mib_confirm(priv
, wsm_arg
,
1348 case WSM_WRITE_MIB_RESP_ID
:
1350 ret
= wsm_write_mib_confirm(priv
, wsm_arg
,
1353 case WSM_START_SCAN_RESP_ID
:
1355 ret
= wsm_scan_started(priv
, wsm_arg
, &wsm_buf
);
1357 case WSM_CONFIGURATION_RESP_ID
:
1359 ret
= wsm_configuration_confirm(priv
, wsm_arg
,
1362 case WSM_JOIN_RESP_ID
:
1364 ret
= wsm_join_confirm(priv
, wsm_arg
, &wsm_buf
);
1366 case WSM_STOP_SCAN_RESP_ID
:
1367 case WSM_RESET_RESP_ID
:
1368 case WSM_ADD_KEY_RESP_ID
:
1369 case WSM_REMOVE_KEY_RESP_ID
:
1370 case WSM_SET_PM_RESP_ID
:
1371 case WSM_SET_BSS_PARAMS_RESP_ID
:
1372 case 0x0412: /* set_tx_queue_params */
1373 case WSM_EDCA_PARAMS_RESP_ID
:
1374 case WSM_SWITCH_CHANNEL_RESP_ID
:
1375 case WSM_START_RESP_ID
:
1376 case WSM_BEACON_TRANSMIT_RESP_ID
:
1377 case 0x0419: /* start_find */
1378 case 0x041A: /* stop_find */
1379 case 0x041B: /* update_ie */
1380 case 0x041C: /* map_link */
1381 WARN_ON(wsm_arg
!= NULL
);
1382 ret
= wsm_generic_confirm(priv
, wsm_arg
, &wsm_buf
);
1384 wiphy_warn(priv
->hw
->wiphy
,
1385 "wsm_generic_confirm failed for request 0x%04x.\n",
1388 /* often 0x407 and 0x410 occur, this means we're dead.. */
1389 if (priv
->join_status
>= CW1200_JOIN_STATUS_JOINING
) {
1391 if (queue_work(priv
->workqueue
, &priv
->unjoin_work
) <= 0)
1392 wsm_unlock_tx(priv
);
1397 wiphy_warn(priv
->hw
->wiphy
,
1398 "Unrecognized confirmation 0x%04x\n",
1402 spin_lock(&priv
->wsm_cmd
.lock
);
1403 priv
->wsm_cmd
.ret
= ret
;
1404 priv
->wsm_cmd
.done
= 1;
1405 spin_unlock(&priv
->wsm_cmd
.lock
);
1407 ret
= 0; /* Error response from device should ne stop BH. */
1409 wake_up(&priv
->wsm_cmd_wq
);
1410 } else if (id
& 0x0800) {
1412 case WSM_STARTUP_IND_ID
:
1413 ret
= wsm_startup_indication(priv
, &wsm_buf
);
1415 case WSM_RECEIVE_IND_ID
:
1416 ret
= wsm_receive_indication(priv
, link_id
,
1420 ret
= wsm_event_indication(priv
, &wsm_buf
);
1422 case WSM_SCAN_COMPLETE_IND_ID
:
1423 ret
= wsm_scan_complete_indication(priv
, &wsm_buf
);
1426 ret
= wsm_ba_timeout_indication(priv
, &wsm_buf
);
1429 ret
= wsm_set_pm_indication(priv
, &wsm_buf
);
1432 ret
= wsm_channel_switch_indication(priv
, &wsm_buf
);
1435 ret
= wsm_find_complete_indication(priv
, &wsm_buf
);
1438 ret
= wsm_suspend_resume_indication(priv
,
1442 ret
= wsm_join_complete_indication(priv
, &wsm_buf
);
1445 pr_warn("Unrecognised WSM ID %04x\n", id
);
1455 static bool wsm_handle_tx_data(struct cw1200_common
*priv
,
1457 const struct ieee80211_tx_info
*tx_info
,
1458 const struct cw1200_txpriv
*txpriv
,
1459 struct cw1200_queue
*queue
)
1461 bool handled
= false;
1462 const struct ieee80211_hdr
*frame
=
1463 (struct ieee80211_hdr
*)&((u8
*)wsm
)[txpriv
->offset
];
1464 __le16 fctl
= frame
->frame_control
;
1472 switch (priv
->mode
) {
1473 case NL80211_IFTYPE_STATION
:
1474 if (priv
->join_status
== CW1200_JOIN_STATUS_MONITOR
)
1476 else if (priv
->join_status
< CW1200_JOIN_STATUS_PRE_STA
)
1479 case NL80211_IFTYPE_AP
:
1480 if (!priv
->join_status
) {
1482 } else if (!(BIT(txpriv
->raw_link_id
) &
1483 (BIT(0) | priv
->link_id_map
))) {
1484 wiphy_warn(priv
->hw
->wiphy
,
1485 "A frame with expired link id is dropped.\n");
1488 if (cw1200_queue_get_generation(wsm
->packet_id
) >
1489 CW1200_MAX_REQUEUE_ATTEMPTS
) {
1490 /* HACK!!! WSM324 firmware has tendency to requeue
1491 * multicast frames in a loop, causing performance
1492 * drop and high power consumption of the driver.
1493 * In this situation it is better just to drop
1494 * the problematic frame.
1496 wiphy_warn(priv
->hw
->wiphy
,
1497 "Too many attempts to requeue a frame; dropped.\n");
1501 case NL80211_IFTYPE_ADHOC
:
1502 if (priv
->join_status
!= CW1200_JOIN_STATUS_IBSS
)
1505 case NL80211_IFTYPE_MESH_POINT
:
1506 action
= do_tx
; /* TODO: Test me! */
1508 case NL80211_IFTYPE_MONITOR
:
1514 if (action
== do_tx
) {
1515 if (ieee80211_is_nullfunc(fctl
)) {
1516 spin_lock(&priv
->bss_loss_lock
);
1517 if (priv
->bss_loss_state
) {
1518 priv
->bss_loss_confirm_id
= wsm
->packet_id
;
1519 wsm
->queue_id
= WSM_QUEUE_VOICE
;
1521 spin_unlock(&priv
->bss_loss_lock
);
1522 } else if (ieee80211_is_probe_req(fctl
)) {
1524 } else if (ieee80211_is_deauth(fctl
) &&
1525 priv
->mode
!= NL80211_IFTYPE_AP
) {
1526 pr_debug("[WSM] Issue unjoin command due to tx deauth.\n");
1527 wsm_lock_tx_async(priv
);
1528 if (queue_work(priv
->workqueue
,
1529 &priv
->unjoin_work
) <= 0)
1530 wsm_unlock_tx(priv
);
1531 } else if (ieee80211_has_protected(fctl
) &&
1532 tx_info
->control
.hw_key
&&
1533 tx_info
->control
.hw_key
->keyidx
!= priv
->wep_default_key_id
&&
1534 (tx_info
->control
.hw_key
->cipher
== WLAN_CIPHER_SUITE_WEP40
||
1535 tx_info
->control
.hw_key
->cipher
== WLAN_CIPHER_SUITE_WEP104
)) {
1542 /* An interesting FW "feature". Device filters probe responses.
1543 * The easiest way to get it back is to convert
1544 * probe request into WSM start_scan command.
1546 pr_debug("[WSM] Convert probe request to scan.\n");
1547 wsm_lock_tx_async(priv
);
1548 priv
->pending_frame_id
= wsm
->packet_id
;
1549 if (queue_delayed_work(priv
->workqueue
,
1550 &priv
->scan
.probe_work
, 0) <= 0)
1551 wsm_unlock_tx(priv
);
1555 pr_debug("[WSM] Drop frame (0x%.4X).\n", fctl
);
1556 BUG_ON(cw1200_queue_remove(queue
, wsm
->packet_id
));
1560 pr_debug("[WSM] Issue set_default_wep_key.\n");
1561 wsm_lock_tx_async(priv
);
1562 priv
->wep_default_key_id
= tx_info
->control
.hw_key
->keyidx
;
1563 priv
->pending_frame_id
= wsm
->packet_id
;
1564 if (queue_work(priv
->workqueue
, &priv
->wep_key_work
) <= 0)
1565 wsm_unlock_tx(priv
);
1569 pr_debug("[WSM] Transmit frame.\n");
1578 static int cw1200_get_prio_queue(struct cw1200_common
*priv
,
1579 u32 link_id_map
, int *total
)
1581 static const int urgent
= BIT(CW1200_LINK_ID_AFTER_DTIM
) |
1582 BIT(CW1200_LINK_ID_UAPSD
);
1583 struct wsm_edca_queue_params
*edca
;
1584 unsigned score
, best
= -1;
1589 /* search for a winner using edca params */
1590 for (i
= 0; i
< 4; ++i
) {
1591 queued
= cw1200_queue_get_num_queued(&priv
->tx_queue
[i
],
1596 edca
= &priv
->edca
.params
[i
];
1597 score
= ((edca
->aifns
+ edca
->cwmin
) << 16) +
1598 ((edca
->cwmax
- edca
->cwmin
) *
1599 (get_random_int() & 0xFFFF));
1600 if (score
< best
&& (winner
< 0 || i
!= 3)) {
1606 /* override winner if bursting */
1607 if (winner
>= 0 && priv
->tx_burst_idx
>= 0 &&
1608 winner
!= priv
->tx_burst_idx
&&
1609 !cw1200_queue_get_num_queued(
1610 &priv
->tx_queue
[winner
],
1611 link_id_map
& urgent
) &&
1612 cw1200_queue_get_num_queued(
1613 &priv
->tx_queue
[priv
->tx_burst_idx
],
1615 winner
= priv
->tx_burst_idx
;
1620 static int wsm_get_tx_queue_and_mask(struct cw1200_common
*priv
,
1621 struct cw1200_queue
**queue_p
,
1622 u32
*tx_allowed_mask_p
,
1626 u32 tx_allowed_mask
;
1629 /* Search for a queue with multicast frames buffered */
1630 if (priv
->tx_multicast
) {
1631 tx_allowed_mask
= BIT(CW1200_LINK_ID_AFTER_DTIM
);
1632 idx
= cw1200_get_prio_queue(priv
,
1633 tx_allowed_mask
, &total
);
1640 /* Search for unicast traffic */
1641 tx_allowed_mask
= ~priv
->sta_asleep_mask
;
1642 tx_allowed_mask
|= BIT(CW1200_LINK_ID_UAPSD
);
1643 if (priv
->sta_asleep_mask
) {
1644 tx_allowed_mask
|= priv
->pspoll_mask
;
1645 tx_allowed_mask
&= ~BIT(CW1200_LINK_ID_AFTER_DTIM
);
1647 tx_allowed_mask
|= BIT(CW1200_LINK_ID_AFTER_DTIM
);
1649 idx
= cw1200_get_prio_queue(priv
,
1650 tx_allowed_mask
, &total
);
1655 *queue_p
= &priv
->tx_queue
[idx
];
1656 *tx_allowed_mask_p
= tx_allowed_mask
;
1660 int wsm_get_tx(struct cw1200_common
*priv
, u8
**data
,
1661 size_t *tx_len
, int *burst
)
1663 struct wsm_tx
*wsm
= NULL
;
1664 struct ieee80211_tx_info
*tx_info
;
1665 struct cw1200_queue
*queue
= NULL
;
1667 u32 tx_allowed_mask
= 0;
1668 const struct cw1200_txpriv
*txpriv
= NULL
;
1671 /* More is used only for broadcasts. */
1674 if (priv
->wsm_cmd
.ptr
) { /* CMD request */
1676 spin_lock(&priv
->wsm_cmd
.lock
);
1677 BUG_ON(!priv
->wsm_cmd
.ptr
);
1678 *data
= priv
->wsm_cmd
.ptr
;
1679 *tx_len
= priv
->wsm_cmd
.len
;
1681 spin_unlock(&priv
->wsm_cmd
.lock
);
1686 if (atomic_add_return(0, &priv
->tx_lock
))
1689 spin_lock_bh(&priv
->ps_state_lock
);
1691 ret
= wsm_get_tx_queue_and_mask(priv
, &queue
,
1692 &tx_allowed_mask
, &more
);
1693 queue_num
= queue
- priv
->tx_queue
;
1695 if (priv
->buffered_multicasts
&&
1697 (priv
->tx_multicast
|| !priv
->sta_asleep_mask
)) {
1698 priv
->buffered_multicasts
= false;
1699 if (priv
->tx_multicast
) {
1700 priv
->tx_multicast
= false;
1701 queue_work(priv
->workqueue
,
1702 &priv
->multicast_stop_work
);
1706 spin_unlock_bh(&priv
->ps_state_lock
);
1711 if (cw1200_queue_get(queue
,
1713 &wsm
, &tx_info
, &txpriv
))
1716 if (wsm_handle_tx_data(priv
, wsm
,
1717 tx_info
, txpriv
, queue
))
1718 continue; /* Handled by WSM */
1720 wsm
->hdr
.id
&= __cpu_to_le16(
1721 ~WSM_TX_LINK_ID(WSM_TX_LINK_ID_MAX
));
1722 wsm
->hdr
.id
|= cpu_to_le16(
1723 WSM_TX_LINK_ID(txpriv
->raw_link_id
));
1724 priv
->pspoll_mask
&= ~BIT(txpriv
->raw_link_id
);
1727 *tx_len
= __le16_to_cpu(wsm
->hdr
.len
);
1729 /* allow bursting if txop is set */
1730 if (priv
->edca
.params
[queue_num
].txop_limit
)
1731 *burst
= min(*burst
,
1732 (int)cw1200_queue_get_num_queued(queue
, tx_allowed_mask
) + 1);
1736 /* store index of bursting queue */
1738 priv
->tx_burst_idx
= queue_num
;
1740 priv
->tx_burst_idx
= -1;
1743 struct ieee80211_hdr
*hdr
=
1744 (struct ieee80211_hdr
*)
1745 &((u8
*)wsm
)[txpriv
->offset
];
1746 /* more buffered multicast/broadcast frames
1747 * ==> set MoreData flag in IEEE 802.11 header
1750 hdr
->frame_control
|=
1751 cpu_to_le16(IEEE80211_FCTL_MOREDATA
);
1754 pr_debug("[WSM] >>> 0x%.4X (%zu) %p %c\n",
1755 0x0004, *tx_len
, *data
,
1756 wsm
->more
? 'M' : ' ');
1765 void wsm_txed(struct cw1200_common
*priv
, u8
*data
)
1767 if (data
== priv
->wsm_cmd
.ptr
) {
1768 spin_lock(&priv
->wsm_cmd
.lock
);
1769 priv
->wsm_cmd
.ptr
= NULL
;
1770 spin_unlock(&priv
->wsm_cmd
.lock
);
1774 /* ******************************************************************** */
1777 void wsm_buf_init(struct wsm_buf
*buf
)
1780 buf
->begin
= kmalloc(FWLOAD_BLOCK_SIZE
, GFP_KERNEL
| GFP_DMA
);
1781 buf
->end
= buf
->begin
? &buf
->begin
[FWLOAD_BLOCK_SIZE
] : buf
->begin
;
1785 void wsm_buf_deinit(struct wsm_buf
*buf
)
1788 buf
->begin
= buf
->data
= buf
->end
= NULL
;
1791 static void wsm_buf_reset(struct wsm_buf
*buf
)
1794 buf
->data
= &buf
->begin
[4];
1795 *(u32
*)buf
->begin
= 0;
1797 buf
->data
= buf
->begin
;
1801 static int wsm_buf_reserve(struct wsm_buf
*buf
, size_t extra_size
)
1803 size_t pos
= buf
->data
- buf
->begin
;
1804 size_t size
= pos
+ extra_size
;
1807 size
= round_up(size
, FWLOAD_BLOCK_SIZE
);
1809 tmp
= krealloc(buf
->begin
, size
, GFP_KERNEL
| GFP_DMA
);
1811 wsm_buf_deinit(buf
);
1816 buf
->data
= &buf
->begin
[pos
];
1817 buf
->end
= &buf
->begin
[size
];