1 // SPDX-License-Identifier: GPL-2.0-only
3 * Common code for mac80211 Prism54 drivers
5 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
6 * Copyright (c) 2007-2009, Christian Lamparter <chunkeey@web.de>
7 * Copyright 2008, Johannes Berg <johannes@sipsolutions.net>
10 * - the islsm (softmac prism54) driver, which is:
11 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
13 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
16 #include <linux/export.h>
17 #include <linux/firmware.h>
18 #include <linux/etherdevice.h>
19 #include <asm/div64.h>
21 #include <net/mac80211.h>
27 static void p54_dump_tx_queue(struct p54_common
*priv
)
30 struct ieee80211_tx_info
*info
;
31 struct p54_tx_info
*range
;
36 u32 largest_hole
= 0, free
;
38 spin_lock_irqsave(&priv
->tx_queue
.lock
, flags
);
39 wiphy_debug(priv
->hw
->wiphy
, "/ --- tx queue dump (%d entries) ---\n",
40 skb_queue_len(&priv
->tx_queue
));
42 prev_addr
= priv
->rx_start
;
43 skb_queue_walk(&priv
->tx_queue
, skb
) {
44 info
= IEEE80211_SKB_CB(skb
);
45 range
= (void *) info
->rate_driver_data
;
46 hdr
= (void *) skb
->data
;
48 free
= range
->start_addr
- prev_addr
;
49 wiphy_debug(priv
->hw
->wiphy
,
50 "| [%02d] => [skb:%p skb_len:0x%04x "
51 "hdr:{flags:%02x len:%04x req_id:%04x type:%02x} "
52 "mem:{start:%04x end:%04x, free:%d}]\n",
54 le16_to_cpu(hdr
->flags
), le16_to_cpu(hdr
->len
),
55 le32_to_cpu(hdr
->req_id
), le16_to_cpu(hdr
->type
),
56 range
->start_addr
, range
->end_addr
, free
);
58 prev_addr
= range
->end_addr
;
59 largest_hole
= max(largest_hole
, free
);
61 free
= priv
->rx_end
- prev_addr
;
62 largest_hole
= max(largest_hole
, free
);
63 wiphy_debug(priv
->hw
->wiphy
,
64 "\\ --- [free: %d], largest free block: %d ---\n",
66 spin_unlock_irqrestore(&priv
->tx_queue
.lock
, flags
);
68 #endif /* P54_MM_DEBUG */
71 * So, the firmware is somewhat stupid and doesn't know what places in its
72 * memory incoming data should go to. By poking around in the firmware, we
73 * can find some unused memory to upload our packets to. However, data that we
74 * want the card to TX needs to stay intact until the card has told us that
75 * it is done with it. This function finds empty places we can upload to and
76 * marks allocated areas as reserved if necessary. p54_find_and_unlink_skb or
77 * p54_free_skb frees allocated areas.
79 static int p54_assign_address(struct p54_common
*priv
, struct sk_buff
*skb
)
81 struct sk_buff
*entry
, *target_skb
= NULL
;
82 struct ieee80211_tx_info
*info
;
83 struct p54_tx_info
*range
;
84 struct p54_hdr
*data
= (void *) skb
->data
;
86 u32 last_addr
= priv
->rx_start
;
87 u32 target_addr
= priv
->rx_start
;
88 u16 len
= priv
->headroom
+ skb
->len
+ priv
->tailroom
+ 3;
90 info
= IEEE80211_SKB_CB(skb
);
91 range
= (void *) info
->rate_driver_data
;
92 len
= (range
->extra_len
+ len
) & ~0x3;
94 spin_lock_irqsave(&priv
->tx_queue
.lock
, flags
);
95 if (unlikely(skb_queue_len(&priv
->tx_queue
) == 32)) {
97 * The tx_queue is now really full.
99 * TODO: check if the device has crashed and reset it.
101 spin_unlock_irqrestore(&priv
->tx_queue
.lock
, flags
);
105 skb_queue_walk(&priv
->tx_queue
, entry
) {
107 info
= IEEE80211_SKB_CB(entry
);
108 range
= (void *) info
->rate_driver_data
;
109 hole_size
= range
->start_addr
- last_addr
;
111 if (!target_skb
&& hole_size
>= len
) {
112 target_skb
= entry
->prev
;
114 target_addr
= last_addr
;
117 last_addr
= range
->end_addr
;
119 if (unlikely(!target_skb
)) {
120 if (priv
->rx_end
- last_addr
>= len
) {
121 target_skb
= skb_peek_tail(&priv
->tx_queue
);
123 info
= IEEE80211_SKB_CB(target_skb
);
124 range
= (void *)info
->rate_driver_data
;
125 target_addr
= range
->end_addr
;
128 spin_unlock_irqrestore(&priv
->tx_queue
.lock
, flags
);
133 info
= IEEE80211_SKB_CB(skb
);
134 range
= (void *) info
->rate_driver_data
;
135 range
->start_addr
= target_addr
;
136 range
->end_addr
= target_addr
+ len
;
137 data
->req_id
= cpu_to_le32(target_addr
+ priv
->headroom
);
138 if (IS_DATA_FRAME(skb
) &&
139 unlikely(GET_HW_QUEUE(skb
) == P54_QUEUE_BEACON
))
140 priv
->beacon_req_id
= data
->req_id
;
143 __skb_queue_after(&priv
->tx_queue
, target_skb
, skb
);
145 __skb_queue_head(&priv
->tx_queue
, skb
);
146 spin_unlock_irqrestore(&priv
->tx_queue
.lock
, flags
);
150 static void p54_tx_pending(struct p54_common
*priv
)
155 skb
= skb_dequeue(&priv
->tx_pending
);
159 ret
= p54_assign_address(priv
, skb
);
161 skb_queue_head(&priv
->tx_pending
, skb
);
163 priv
->tx(priv
->hw
, skb
);
166 static void p54_wake_queues(struct p54_common
*priv
)
171 if (unlikely(priv
->mode
== NL80211_IFTYPE_UNSPECIFIED
))
174 p54_tx_pending(priv
);
176 spin_lock_irqsave(&priv
->tx_stats_lock
, flags
);
177 for (i
= 0; i
< priv
->hw
->queues
; i
++) {
178 if (priv
->tx_stats
[i
+ P54_QUEUE_DATA
].len
<
179 priv
->tx_stats
[i
+ P54_QUEUE_DATA
].limit
)
180 ieee80211_wake_queue(priv
->hw
, i
);
182 spin_unlock_irqrestore(&priv
->tx_stats_lock
, flags
);
185 static int p54_tx_qos_accounting_alloc(struct p54_common
*priv
,
189 struct p54_tx_queue_stats
*queue
;
192 if (WARN_ON(p54_queue
>= P54_QUEUE_NUM
))
195 queue
= &priv
->tx_stats
[p54_queue
];
197 spin_lock_irqsave(&priv
->tx_stats_lock
, flags
);
198 if (unlikely(queue
->len
>= queue
->limit
&& IS_QOS_QUEUE(p54_queue
))) {
199 spin_unlock_irqrestore(&priv
->tx_stats_lock
, flags
);
206 if (unlikely(queue
->len
== queue
->limit
&& IS_QOS_QUEUE(p54_queue
))) {
207 u16 ac_queue
= p54_queue
- P54_QUEUE_DATA
;
208 ieee80211_stop_queue(priv
->hw
, ac_queue
);
211 spin_unlock_irqrestore(&priv
->tx_stats_lock
, flags
);
215 static void p54_tx_qos_accounting_free(struct p54_common
*priv
,
218 if (IS_DATA_FRAME(skb
)) {
221 spin_lock_irqsave(&priv
->tx_stats_lock
, flags
);
222 priv
->tx_stats
[GET_HW_QUEUE(skb
)].len
--;
223 spin_unlock_irqrestore(&priv
->tx_stats_lock
, flags
);
225 if (unlikely(GET_HW_QUEUE(skb
) == P54_QUEUE_BEACON
)) {
226 if (priv
->beacon_req_id
== GET_REQ_ID(skb
)) {
227 /* this is the active beacon set anymore */
228 priv
->beacon_req_id
= 0;
230 complete(&priv
->beacon_comp
);
233 p54_wake_queues(priv
);
236 void p54_free_skb(struct ieee80211_hw
*dev
, struct sk_buff
*skb
)
238 struct p54_common
*priv
= dev
->priv
;
242 skb_unlink(skb
, &priv
->tx_queue
);
243 p54_tx_qos_accounting_free(priv
, skb
);
244 ieee80211_free_txskb(dev
, skb
);
246 EXPORT_SYMBOL_GPL(p54_free_skb
);
248 static struct sk_buff
*p54_find_and_unlink_skb(struct p54_common
*priv
,
251 struct sk_buff
*entry
;
254 spin_lock_irqsave(&priv
->tx_queue
.lock
, flags
);
255 skb_queue_walk(&priv
->tx_queue
, entry
) {
256 struct p54_hdr
*hdr
= (struct p54_hdr
*) entry
->data
;
258 if (hdr
->req_id
== req_id
) {
259 __skb_unlink(entry
, &priv
->tx_queue
);
260 spin_unlock_irqrestore(&priv
->tx_queue
.lock
, flags
);
261 p54_tx_qos_accounting_free(priv
, entry
);
265 spin_unlock_irqrestore(&priv
->tx_queue
.lock
, flags
);
269 void p54_tx(struct p54_common
*priv
, struct sk_buff
*skb
)
271 skb_queue_tail(&priv
->tx_pending
, skb
);
272 p54_tx_pending(priv
);
275 static int p54_rssi_to_dbm(struct p54_common
*priv
, int rssi
)
277 if (priv
->rxhw
!= 5) {
278 return ((rssi
* priv
->cur_rssi
->mul
) / 64 +
279 priv
->cur_rssi
->add
) / 4;
282 * TODO: find the correct formula
284 return rssi
/ 2 - 110;
289 * Even if the firmware is capable of dealing with incoming traffic,
290 * while dozing, we have to prepared in case mac80211 uses PS-POLL
291 * to retrieve outstanding frames from our AP.
292 * (see comment in net/mac80211/mlme.c @ line 1993)
294 static void p54_pspoll_workaround(struct p54_common
*priv
, struct sk_buff
*skb
)
296 struct ieee80211_hdr
*hdr
= (void *) skb
->data
;
297 struct ieee80211_tim_ie
*tim_ie
;
302 /* only beacons have a TIM IE */
303 if (!ieee80211_is_beacon(hdr
->frame_control
))
309 /* only consider beacons from the associated BSSID */
310 if (!ether_addr_equal_64bits(hdr
->addr3
, priv
->bssid
))
313 tim
= p54_find_ie(skb
, WLAN_EID_TIM
);
318 tim_ie
= (struct ieee80211_tim_ie
*) &tim
[2];
320 new_psm
= ieee80211_check_tim(tim_ie
, tim_len
, priv
->aid
);
321 if (new_psm
!= priv
->powersave_override
) {
322 priv
->powersave_override
= new_psm
;
327 static int p54_rx_data(struct p54_common
*priv
, struct sk_buff
*skb
)
329 struct p54_rx_data
*hdr
= (struct p54_rx_data
*) skb
->data
;
330 struct ieee80211_rx_status
*rx_status
= IEEE80211_SKB_RXCB(skb
);
331 u16 freq
= le16_to_cpu(hdr
->freq
);
332 size_t header_len
= sizeof(*hdr
);
335 u8 rate
= hdr
->rate
& 0xf;
338 * If the device is in a unspecified state we have to
339 * ignore all data frames. Else we could end up with a
342 if (unlikely(priv
->mode
== NL80211_IFTYPE_UNSPECIFIED
))
345 if (!(hdr
->flags
& cpu_to_le16(P54_HDR_FLAG_DATA_IN_FCS_GOOD
)))
348 if (hdr
->decrypt_status
== P54_DECRYPT_OK
)
349 rx_status
->flag
|= RX_FLAG_DECRYPTED
;
350 if ((hdr
->decrypt_status
== P54_DECRYPT_FAIL_MICHAEL
) ||
351 (hdr
->decrypt_status
== P54_DECRYPT_FAIL_TKIP
))
352 rx_status
->flag
|= RX_FLAG_MMIC_ERROR
;
354 rx_status
->signal
= p54_rssi_to_dbm(priv
, hdr
->rssi
);
355 if (hdr
->rate
& 0x10)
356 rx_status
->enc_flags
|= RX_ENC_FLAG_SHORTPRE
;
357 if (priv
->hw
->conf
.chandef
.chan
->band
== NL80211_BAND_5GHZ
)
358 rx_status
->rate_idx
= (rate
< 4) ? 0 : rate
- 4;
360 rx_status
->rate_idx
= rate
;
362 rx_status
->freq
= freq
;
363 rx_status
->band
= priv
->hw
->conf
.chandef
.chan
->band
;
364 rx_status
->antenna
= hdr
->antenna
;
366 tsf32
= le32_to_cpu(hdr
->tsf32
);
367 if (tsf32
< priv
->tsf_low32
)
369 rx_status
->mactime
= ((u64
)priv
->tsf_high32
) << 32 | tsf32
;
370 priv
->tsf_low32
= tsf32
;
372 /* LMAC API Page 10/29 - s_lm_data_in - clock
373 * "usec accurate timestamp of hardware clock
374 * at end of frame (before OFDM SIFS EOF padding"
376 rx_status
->flag
|= RX_FLAG_MACTIME_END
;
378 if (hdr
->flags
& cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN
))
379 header_len
+= hdr
->align
[0];
381 skb_pull(skb
, header_len
);
382 skb_trim(skb
, le16_to_cpu(hdr
->len
));
384 fc
= ((struct ieee80211_hdr
*)skb
->data
)->frame_control
;
385 if (ieee80211_is_probe_resp(fc
) || ieee80211_is_beacon(fc
))
386 rx_status
->boottime_ns
= ktime_get_boottime_ns();
388 if (unlikely(priv
->hw
->conf
.flags
& IEEE80211_CONF_PS
))
389 p54_pspoll_workaround(priv
, skb
);
391 ieee80211_rx_irqsafe(priv
->hw
, skb
);
393 ieee80211_queue_delayed_work(priv
->hw
, &priv
->work
,
394 msecs_to_jiffies(P54_STATISTICS_UPDATE
));
399 static void p54_rx_frame_sent(struct p54_common
*priv
, struct sk_buff
*skb
)
401 struct p54_hdr
*hdr
= (struct p54_hdr
*) skb
->data
;
402 struct p54_frame_sent
*payload
= (struct p54_frame_sent
*) hdr
->data
;
403 struct ieee80211_tx_info
*info
;
404 struct p54_hdr
*entry_hdr
;
405 struct p54_tx_data
*entry_data
;
406 struct sk_buff
*entry
;
407 unsigned int pad
= 0, frame_len
;
410 entry
= p54_find_and_unlink_skb(priv
, hdr
->req_id
);
411 if (unlikely(!entry
))
414 frame_len
= entry
->len
;
415 info
= IEEE80211_SKB_CB(entry
);
416 entry_hdr
= (struct p54_hdr
*) entry
->data
;
417 entry_data
= (struct p54_tx_data
*) entry_hdr
->data
;
418 priv
->stats
.dot11ACKFailureCount
+= payload
->tries
- 1;
421 * Frames in P54_QUEUE_FWSCAN and P54_QUEUE_BEACON are
422 * generated by the driver. Therefore tx_status is bogus
423 * and we don't want to confuse the mac80211 stack.
425 if (unlikely(entry_data
->hw_queue
< P54_QUEUE_FWSCAN
)) {
426 dev_kfree_skb_any(entry
);
431 * Clear manually, ieee80211_tx_info_clear_status would
432 * clear the counts too and we need them.
434 memset(&info
->status
.ack_signal
, 0,
435 sizeof(struct ieee80211_tx_info
) -
436 offsetof(struct ieee80211_tx_info
, status
.ack_signal
));
437 BUILD_BUG_ON(offsetof(struct ieee80211_tx_info
,
438 status
.ack_signal
) != 20);
440 if (entry_hdr
->flags
& cpu_to_le16(P54_HDR_FLAG_DATA_ALIGN
))
441 pad
= entry_data
->align
[0];
443 /* walk through the rates array and adjust the counts */
444 count
= payload
->tries
;
445 for (idx
= 0; idx
< 4; idx
++) {
446 if (count
>= info
->status
.rates
[idx
].count
) {
447 count
-= info
->status
.rates
[idx
].count
;
448 } else if (count
> 0) {
449 info
->status
.rates
[idx
].count
= count
;
452 info
->status
.rates
[idx
].idx
= -1;
453 info
->status
.rates
[idx
].count
= 0;
457 if (!(info
->flags
& IEEE80211_TX_CTL_NO_ACK
) &&
458 !(payload
->status
& P54_TX_FAILED
))
459 info
->flags
|= IEEE80211_TX_STAT_ACK
;
460 if (payload
->status
& P54_TX_PSM_CANCELLED
)
461 info
->flags
|= IEEE80211_TX_STAT_TX_FILTERED
;
462 info
->status
.ack_signal
= p54_rssi_to_dbm(priv
,
463 (int)payload
->ack_rssi
);
465 /* Undo all changes to the frame. */
466 switch (entry_data
->key_type
) {
467 case P54_CRYPTO_TKIPMICHAEL
: {
468 u8
*iv
= (u8
*)(entry_data
->align
+ pad
+
469 entry_data
->crypt_offset
);
471 /* Restore the original TKIP IV. */
474 iv
[1] = (iv
[0] | 0x20) & 0x7f; /* WEPSeed - 8.3.2.2 */
476 frame_len
-= 12; /* remove TKIP_MMIC + TKIP_ICV */
479 case P54_CRYPTO_AESCCMP
:
480 frame_len
-= 8; /* remove CCMP_MIC */
483 frame_len
-= 4; /* remove WEP_ICV */
487 skb_trim(entry
, frame_len
);
488 skb_pull(entry
, sizeof(*hdr
) + pad
+ sizeof(*entry_data
));
489 ieee80211_tx_status_irqsafe(priv
->hw
, entry
);
492 static void p54_rx_eeprom_readback(struct p54_common
*priv
,
495 struct p54_hdr
*hdr
= (struct p54_hdr
*) skb
->data
;
496 struct p54_eeprom_lm86
*eeprom
= (struct p54_eeprom_lm86
*) hdr
->data
;
502 if (priv
->fw_var
>= 0x509) {
503 memcpy(priv
->eeprom
, eeprom
->v2
.data
,
504 le16_to_cpu(eeprom
->v2
.len
));
506 memcpy(priv
->eeprom
, eeprom
->v1
.data
,
507 le16_to_cpu(eeprom
->v1
.len
));
511 tmp
= p54_find_and_unlink_skb(priv
, hdr
->req_id
);
512 dev_kfree_skb_any(tmp
);
513 complete(&priv
->eeprom_comp
);
516 static void p54_rx_stats(struct p54_common
*priv
, struct sk_buff
*skb
)
518 struct p54_hdr
*hdr
= (struct p54_hdr
*) skb
->data
;
519 struct p54_statistics
*stats
= (struct p54_statistics
*) hdr
->data
;
521 struct ieee80211_channel
*chan
;
522 unsigned int i
, rssi
, tx
, cca
, dtime
, dtotal
, dcca
, dtx
, drssi
, unit
;
525 if (unlikely(priv
->mode
== NL80211_IFTYPE_UNSPECIFIED
))
528 tsf32
= le32_to_cpu(stats
->tsf32
);
529 if (tsf32
< priv
->tsf_low32
)
531 priv
->tsf_low32
= tsf32
;
533 priv
->stats
.dot11RTSFailureCount
= le32_to_cpu(stats
->rts_fail
);
534 priv
->stats
.dot11RTSSuccessCount
= le32_to_cpu(stats
->rts_success
);
535 priv
->stats
.dot11FCSErrorCount
= le32_to_cpu(stats
->rx_bad_fcs
);
537 priv
->noise
= p54_rssi_to_dbm(priv
, le32_to_cpu(stats
->noise
));
540 * STSW450X LMAC API page 26 - 3.8 Statistics
541 * "The exact measurement period can be derived from the
544 dtime
= tsf32
- priv
->survey_raw
.timestamp
;
547 * STSW450X LMAC API page 26 - 3.8.1 Noise histogram
548 * The LMAC samples RSSI, CCA and transmit state at regular
549 * periods (typically 8 times per 1k [as in 1024] usec).
551 cca
= le32_to_cpu(stats
->sample_cca
);
552 tx
= le32_to_cpu(stats
->sample_tx
);
554 for (i
= 0; i
< ARRAY_SIZE(stats
->sample_noise
); i
++)
555 rssi
+= le32_to_cpu(stats
->sample_noise
[i
]);
557 dcca
= cca
- priv
->survey_raw
.cached_cca
;
558 drssi
= rssi
- priv
->survey_raw
.cached_rssi
;
559 dtx
= tx
- priv
->survey_raw
.cached_tx
;
560 dtotal
= dcca
+ drssi
+ dtx
;
563 * update statistics when more than a second is over since the
564 * last call, or when a update is badly needed.
566 if (dtotal
&& (priv
->update_stats
|| dtime
>= USEC_PER_SEC
) &&
568 priv
->survey_raw
.timestamp
= tsf32
;
569 priv
->update_stats
= false;
570 unit
= dtime
/ dtotal
;
573 priv
->survey_raw
.cca
+= dcca
* unit
;
574 priv
->survey_raw
.cached_cca
= cca
;
577 priv
->survey_raw
.tx
+= dtx
* unit
;
578 priv
->survey_raw
.cached_tx
= tx
;
581 priv
->survey_raw
.rssi
+= drssi
* unit
;
582 priv
->survey_raw
.cached_rssi
= rssi
;
585 /* 1024 usec / 8 times = 128 usec / time */
586 if (!(priv
->phy_ps
|| priv
->phy_idle
))
587 priv
->survey_raw
.active
+= dtotal
* unit
;
589 priv
->survey_raw
.active
+= (dcca
+ dtx
) * unit
;
592 chan
= priv
->curchan
;
594 struct survey_info
*survey
= &priv
->survey
[chan
->hw_value
];
595 survey
->noise
= clamp(priv
->noise
, -128, 127);
596 survey
->time
= priv
->survey_raw
.active
;
597 survey
->time_tx
= priv
->survey_raw
.tx
;
598 survey
->time_busy
= priv
->survey_raw
.tx
+
599 priv
->survey_raw
.cca
;
600 do_div(survey
->time
, 1024);
601 do_div(survey
->time_tx
, 1024);
602 do_div(survey
->time_busy
, 1024);
605 tmp
= p54_find_and_unlink_skb(priv
, hdr
->req_id
);
606 dev_kfree_skb_any(tmp
);
607 complete(&priv
->stat_comp
);
610 static void p54_rx_trap(struct p54_common
*priv
, struct sk_buff
*skb
)
612 struct p54_hdr
*hdr
= (struct p54_hdr
*) skb
->data
;
613 struct p54_trap
*trap
= (struct p54_trap
*) hdr
->data
;
614 u16 event
= le16_to_cpu(trap
->event
);
615 u16 freq
= le16_to_cpu(trap
->frequency
);
618 case P54_TRAP_BEACON_TX
:
621 wiphy_info(priv
->hw
->wiphy
, "radar (freq:%d MHz)\n", freq
);
623 case P54_TRAP_NO_BEACON
:
625 ieee80211_beacon_loss(priv
->vif
);
633 case P54_TRAP_FAA_RADIO_OFF
:
634 wiphy_rfkill_set_hw_state(priv
->hw
->wiphy
, true);
636 case P54_TRAP_FAA_RADIO_ON
:
637 wiphy_rfkill_set_hw_state(priv
->hw
->wiphy
, false);
640 wiphy_info(priv
->hw
->wiphy
, "received event:%x freq:%d\n",
646 static int p54_rx_control(struct p54_common
*priv
, struct sk_buff
*skb
)
648 struct p54_hdr
*hdr
= (struct p54_hdr
*) skb
->data
;
650 switch (le16_to_cpu(hdr
->type
)) {
651 case P54_CONTROL_TYPE_TXDONE
:
652 p54_rx_frame_sent(priv
, skb
);
654 case P54_CONTROL_TYPE_TRAP
:
655 p54_rx_trap(priv
, skb
);
657 case P54_CONTROL_TYPE_BBP
:
659 case P54_CONTROL_TYPE_STAT_READBACK
:
660 p54_rx_stats(priv
, skb
);
662 case P54_CONTROL_TYPE_EEPROM_READBACK
:
663 p54_rx_eeprom_readback(priv
, skb
);
666 wiphy_debug(priv
->hw
->wiphy
,
667 "not handling 0x%02x type control frame\n",
668 le16_to_cpu(hdr
->type
));
674 /* returns zero if skb can be reused */
675 int p54_rx(struct ieee80211_hw
*dev
, struct sk_buff
*skb
)
677 struct p54_common
*priv
= dev
->priv
;
678 u16 type
= le16_to_cpu(*((__le16
*)skb
->data
));
680 if (type
& P54_HDR_FLAG_CONTROL
)
681 return p54_rx_control(priv
, skb
);
683 return p54_rx_data(priv
, skb
);
685 EXPORT_SYMBOL_GPL(p54_rx
);
687 static void p54_tx_80211_header(struct p54_common
*priv
, struct sk_buff
*skb
,
688 struct ieee80211_tx_info
*info
,
689 struct ieee80211_sta
*sta
,
690 u8
*queue
, u32
*extra_len
, u16
*flags
, u16
*aid
,
691 bool *burst_possible
)
693 struct ieee80211_hdr
*hdr
= (struct ieee80211_hdr
*)skb
->data
;
695 if (ieee80211_is_data_qos(hdr
->frame_control
))
696 *burst_possible
= true;
698 *burst_possible
= false;
700 if (!(info
->flags
& IEEE80211_TX_CTL_ASSIGN_SEQ
))
701 *flags
|= P54_HDR_FLAG_DATA_OUT_SEQNR
;
703 if (info
->flags
& IEEE80211_TX_CTL_NO_PS_BUFFER
)
704 *flags
|= P54_HDR_FLAG_DATA_OUT_NOCANCEL
;
706 if (info
->flags
& IEEE80211_TX_CTL_CLEAR_PS_FILT
)
707 *flags
|= P54_HDR_FLAG_DATA_OUT_NOCANCEL
;
709 *queue
= skb_get_queue_mapping(skb
) + P54_QUEUE_DATA
;
711 switch (priv
->mode
) {
712 case NL80211_IFTYPE_MONITOR
:
714 * We have to set P54_HDR_FLAG_DATA_OUT_PROMISC for
715 * every frame in promiscuous/monitor mode.
716 * see STSW45x0C LMAC API - page 12.
719 *flags
|= P54_HDR_FLAG_DATA_OUT_PROMISC
;
721 case NL80211_IFTYPE_STATION
:
724 case NL80211_IFTYPE_AP
:
725 case NL80211_IFTYPE_ADHOC
:
726 case NL80211_IFTYPE_MESH_POINT
:
727 if (info
->flags
& IEEE80211_TX_CTL_SEND_AFTER_DTIM
) {
729 *queue
= P54_QUEUE_CAB
;
733 if (unlikely(ieee80211_is_mgmt(hdr
->frame_control
))) {
734 if (ieee80211_is_probe_resp(hdr
->frame_control
)) {
736 *flags
|= P54_HDR_FLAG_DATA_OUT_TIMESTAMP
|
737 P54_HDR_FLAG_DATA_OUT_NOCANCEL
;
739 } else if (ieee80211_is_beacon(hdr
->frame_control
)) {
742 if (info
->flags
& IEEE80211_TX_CTL_INJECTED
) {
744 * Injecting beacons on top of a AP is
745 * not a good idea... nevertheless,
746 * it should be doable.
752 *flags
|= P54_HDR_FLAG_DATA_OUT_TIMESTAMP
;
753 *queue
= P54_QUEUE_BEACON
;
754 *extra_len
= IEEE80211_MAX_TIM_LEN
;
765 static u8
p54_convert_algo(u32 cipher
)
768 case WLAN_CIPHER_SUITE_WEP40
:
769 case WLAN_CIPHER_SUITE_WEP104
:
770 return P54_CRYPTO_WEP
;
771 case WLAN_CIPHER_SUITE_TKIP
:
772 return P54_CRYPTO_TKIPMICHAEL
;
773 case WLAN_CIPHER_SUITE_CCMP
:
774 return P54_CRYPTO_AESCCMP
;
780 void p54_tx_80211(struct ieee80211_hw
*dev
,
781 struct ieee80211_tx_control
*control
,
784 struct p54_common
*priv
= dev
->priv
;
785 struct ieee80211_tx_info
*info
= IEEE80211_SKB_CB(skb
);
786 struct p54_tx_info
*p54info
;
788 struct p54_tx_data
*txhdr
;
789 unsigned int padding
, len
, extra_len
= 0;
791 u16 hdr_flags
= 0, aid
= 0;
792 u8 rate
, queue
= 0, crypt_offset
= 0;
795 u8 calculated_tries
[4];
796 u8 nrates
= 0, nremaining
= 8;
797 bool burst_allowed
= false;
799 p54_tx_80211_header(priv
, skb
, info
, control
->sta
, &queue
, &extra_len
,
800 &hdr_flags
, &aid
, &burst_allowed
);
802 if (p54_tx_qos_accounting_alloc(priv
, skb
, queue
)) {
803 ieee80211_free_txskb(dev
, skb
);
807 padding
= (unsigned long)(skb
->data
- (sizeof(*hdr
) + sizeof(*txhdr
))) & 3;
810 if (info
->control
.hw_key
) {
811 crypt_offset
= ieee80211_get_hdrlen_from_skb(skb
);
812 if (info
->control
.hw_key
->cipher
== WLAN_CIPHER_SUITE_TKIP
) {
813 u8
*iv
= (u8
*)(skb
->data
+ crypt_offset
);
815 * The firmware excepts that the IV has to have
816 * this special format
824 txhdr
= skb_push(skb
, sizeof(*txhdr
) + padding
);
825 hdr
= skb_push(skb
, sizeof(*hdr
));
828 hdr_flags
|= P54_HDR_FLAG_DATA_ALIGN
;
829 hdr
->type
= cpu_to_le16(aid
);
830 hdr
->rts_tries
= info
->control
.rates
[0].count
;
833 * we register the rates in perfect order, and
834 * RTS/CTS won't happen on 5 GHz
836 cts_rate
= info
->control
.rts_cts_rate_idx
;
838 memset(&txhdr
->rateset
, 0, sizeof(txhdr
->rateset
));
840 /* see how many rates got used */
841 for (i
= 0; i
< dev
->max_rates
; i
++) {
842 if (info
->control
.rates
[i
].idx
< 0)
847 /* limit tries to 8/nrates per rate */
848 for (i
= 0; i
< nrates
; i
++) {
850 * The magic expression here is equivalent to 8/nrates for
851 * all values that matter, but avoids division and jumps.
852 * Note that nrates can only take the values 1 through 4.
854 calculated_tries
[i
] = min_t(int, ((15 >> nrates
) | 1) + 1,
855 info
->control
.rates
[i
].count
);
856 nremaining
-= calculated_tries
[i
];
859 /* if there are tries left, distribute from back to front */
860 for (i
= nrates
- 1; nremaining
> 0 && i
>= 0; i
--) {
861 int tmp
= info
->control
.rates
[i
].count
- calculated_tries
[i
];
865 /* RC requested more tries at this rate */
867 tmp
= min_t(int, tmp
, nremaining
);
868 calculated_tries
[i
] += tmp
;
873 for (i
= 0; i
< nrates
&& ridx
< 8; i
++) {
874 /* we register the rates in perfect order */
875 rate
= info
->control
.rates
[i
].idx
;
876 if (info
->band
== NL80211_BAND_5GHZ
)
879 /* store the count we actually calculated for TX status */
880 info
->control
.rates
[i
].count
= calculated_tries
[i
];
882 rc_flags
= info
->control
.rates
[i
].flags
;
883 if (rc_flags
& IEEE80211_TX_RC_USE_SHORT_PREAMBLE
) {
887 if (rc_flags
& IEEE80211_TX_RC_USE_RTS_CTS
) {
888 burst_allowed
= false;
890 } else if (rc_flags
& IEEE80211_TX_RC_USE_CTS_PROTECT
) {
892 burst_allowed
= false;
894 for (j
= 0; j
< calculated_tries
[i
] && ridx
< 8; j
++) {
895 txhdr
->rateset
[ridx
] = rate
;
901 hdr_flags
|= P54_HDR_FLAG_DATA_OUT_BURST
;
903 /* TODO: enable bursting */
904 hdr
->flags
= cpu_to_le16(hdr_flags
);
906 txhdr
->rts_rate_idx
= 0;
907 if (info
->control
.hw_key
) {
908 txhdr
->key_type
= p54_convert_algo(info
->control
.hw_key
->cipher
);
909 txhdr
->key_len
= min((u8
)16, info
->control
.hw_key
->keylen
);
910 memcpy(txhdr
->key
, info
->control
.hw_key
->key
, txhdr
->key_len
);
911 if (info
->control
.hw_key
->cipher
== WLAN_CIPHER_SUITE_TKIP
) {
912 /* reserve space for the MIC key */
915 &(info
->control
.hw_key
->key
[NL80211_TKIP_DATA_OFFSET_TX_MIC_KEY
]),
918 /* reserve some space for ICV */
919 len
+= info
->control
.hw_key
->icv_len
;
920 skb_put_zero(skb
, info
->control
.hw_key
->icv_len
);
925 txhdr
->crypt_offset
= crypt_offset
;
926 txhdr
->hw_queue
= queue
;
927 txhdr
->backlog
= priv
->tx_stats
[queue
].len
- 1;
928 memset(txhdr
->durations
, 0, sizeof(txhdr
->durations
));
929 txhdr
->tx_antenna
= 2 & priv
->tx_diversity_mask
;
930 if (priv
->rxhw
== 5) {
931 txhdr
->longbow
.cts_rate
= cts_rate
;
932 txhdr
->longbow
.output_power
= cpu_to_le16(priv
->output_power
);
934 txhdr
->normal
.output_power
= priv
->output_power
;
935 txhdr
->normal
.cts_rate
= cts_rate
;
938 txhdr
->align
[0] = padding
;
940 hdr
->len
= cpu_to_le16(len
);
941 /* modifies skb->cb and with it info, so must be last! */
942 p54info
= (void *) info
->rate_driver_data
;
943 p54info
->extra_len
= extra_len
;