1 // SPDX-License-Identifier: GPL-2.0
3 * Implement cfg80211 ("iw") support.
5 * Copyright (C) 2009 M&N Solutions GmbH, 61191 Rosbach, Germany
6 * Holger Schurig <hs4233@mail.mn-solutions.de>
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/hardirq.h>
13 #include <linux/sched.h>
14 #include <linux/wait.h>
15 #include <linux/slab.h>
16 #include <linux/ieee80211.h>
17 #include <net/cfg80211.h>
18 #include <linux/unaligned.h>
26 #define CHAN2G(_channel, _freq, _flags) { \
27 .band = NL80211_BAND_2GHZ, \
28 .center_freq = (_freq), \
29 .hw_value = (_channel), \
31 .max_antenna_gain = 0, \
35 static struct ieee80211_channel lbs_2ghz_channels
[] = {
52 #define RATETAB_ENT(_rate, _hw_value, _flags) { \
54 .hw_value = (_hw_value), \
59 /* Table 6 in section 3.2.1.1 */
60 static struct ieee80211_rate lbs_rates
[] = {
61 RATETAB_ENT(10, 0, 0),
62 RATETAB_ENT(20, 1, 0),
63 RATETAB_ENT(55, 2, 0),
64 RATETAB_ENT(110, 3, 0),
65 RATETAB_ENT(60, 9, 0),
66 RATETAB_ENT(90, 6, 0),
67 RATETAB_ENT(120, 7, 0),
68 RATETAB_ENT(180, 8, 0),
69 RATETAB_ENT(240, 9, 0),
70 RATETAB_ENT(360, 10, 0),
71 RATETAB_ENT(480, 11, 0),
72 RATETAB_ENT(540, 12, 0),
75 static struct ieee80211_supported_band lbs_band_2ghz
= {
76 .channels
= lbs_2ghz_channels
,
77 .n_channels
= ARRAY_SIZE(lbs_2ghz_channels
),
78 .bitrates
= lbs_rates
,
79 .n_bitrates
= ARRAY_SIZE(lbs_rates
),
83 static const u32 cipher_suites
[] = {
84 WLAN_CIPHER_SUITE_WEP40
,
85 WLAN_CIPHER_SUITE_WEP104
,
86 WLAN_CIPHER_SUITE_TKIP
,
87 WLAN_CIPHER_SUITE_CCMP
,
90 /* Time to stay on the channel */
91 #define LBS_DWELL_PASSIVE 100
92 #define LBS_DWELL_ACTIVE 40
95 /***************************************************************************
96 * Misc utility functions
98 * TLVs are Marvell specific. They are very similar to IEs, they have the
99 * same structure: type, length, data*. The only difference: for IEs, the
100 * type and length are u8, but for TLVs they're __le16.
104 * Convert NL80211's auth_type to the one from Libertas, see chapter 5.9.1
105 * in the firmware spec
107 static int lbs_auth_to_authtype(enum nl80211_auth_type auth_type
)
112 case NL80211_AUTHTYPE_OPEN_SYSTEM
:
113 case NL80211_AUTHTYPE_SHARED_KEY
:
116 case NL80211_AUTHTYPE_AUTOMATIC
:
117 ret
= NL80211_AUTHTYPE_OPEN_SYSTEM
;
119 case NL80211_AUTHTYPE_NETWORK_EAP
:
123 /* silence compiler */
131 * Various firmware commands need the list of supported rates, but with
132 * the hight-bit set for basic rates
134 static int lbs_add_rates(u8
*rates
)
138 for (i
= 0; i
< ARRAY_SIZE(lbs_rates
); i
++) {
139 u8 rate
= lbs_rates
[i
].bitrate
/ 5;
140 if (rate
== 0x02 || rate
== 0x04 ||
141 rate
== 0x0b || rate
== 0x16)
145 return ARRAY_SIZE(lbs_rates
);
149 /***************************************************************************
150 * TLV utility functions
152 * TLVs are Marvell specific. They are very similar to IEs, they have the
153 * same structure: type, length, data*. The only difference: for IEs, the
154 * type and length are u8, but for TLVs they're __le16.
161 #define LBS_MAX_SSID_TLV_SIZE \
162 (sizeof(struct mrvl_ie_header) \
163 + IEEE80211_MAX_SSID_LEN)
165 static int lbs_add_ssid_tlv(u8
*tlv
, const u8
*ssid
, int ssid_len
)
167 struct mrvl_ie_ssid_param_set
*ssid_tlv
= (void *)tlv
;
172 * ssid 4d 4e 54 45 53 54
174 ssid_tlv
->header
.type
= cpu_to_le16(TLV_TYPE_SSID
);
175 ssid_tlv
->header
.len
= cpu_to_le16(ssid_len
);
176 memcpy(ssid_tlv
->ssid
, ssid
, ssid_len
);
177 return sizeof(ssid_tlv
->header
) + ssid_len
;
182 * Add channel list TLV (section 8.4.2)
184 * Actual channel data comes from priv->wdev->wiphy->channels.
186 #define LBS_MAX_CHANNEL_LIST_TLV_SIZE \
187 (sizeof(struct mrvl_ie_header) \
188 + (LBS_SCAN_BEFORE_NAP * sizeof(struct chanscanparamset)))
190 static int lbs_add_channel_list_tlv(struct lbs_private
*priv
, u8
*tlv
,
191 int last_channel
, int active_scan
)
193 int chanscanparamsize
= sizeof(struct chanscanparamset
) *
194 (last_channel
- priv
->scan_channel
);
196 struct mrvl_ie_header
*header
= (void *) tlv
;
199 * TLV-ID CHANLIST 01 01
201 * channel 00 01 00 00 00 64 00
205 * min scan time 00 00
206 * max scan time 64 00
207 * channel 2 00 02 00 00 00 64 00
211 header
->type
= cpu_to_le16(TLV_TYPE_CHANLIST
);
212 header
->len
= cpu_to_le16(chanscanparamsize
);
213 tlv
+= sizeof(struct mrvl_ie_header
);
215 /* lbs_deb_scan("scan: channels %d to %d\n", priv->scan_channel,
217 memset(tlv
, 0, chanscanparamsize
);
219 while (priv
->scan_channel
< last_channel
) {
220 struct chanscanparamset
*param
= (void *) tlv
;
222 param
->radiotype
= CMD_SCAN_RADIO_TYPE_BG
;
224 priv
->scan_req
->channels
[priv
->scan_channel
]->hw_value
;
226 param
->maxscantime
= cpu_to_le16(LBS_DWELL_ACTIVE
);
228 param
->chanscanmode
.passivescan
= 1;
229 param
->maxscantime
= cpu_to_le16(LBS_DWELL_PASSIVE
);
231 tlv
+= sizeof(struct chanscanparamset
);
232 priv
->scan_channel
++;
234 return sizeof(struct mrvl_ie_header
) + chanscanparamsize
;
241 * The rates are in lbs_bg_rates[], but for the 802.11b
242 * rates the high bit is set. We add this TLV only because
243 * there's a firmware which otherwise doesn't report all
246 #define LBS_MAX_RATES_TLV_SIZE \
247 (sizeof(struct mrvl_ie_header) \
248 + (ARRAY_SIZE(lbs_rates)))
250 /* Adds a TLV with all rates the hardware supports */
251 static int lbs_add_supported_rates_tlv(u8
*tlv
)
254 struct mrvl_ie_rates_param_set
*rate_tlv
= (void *)tlv
;
259 * rates 82 84 8b 96 0c 12 18 24 30 48 60 6c
261 rate_tlv
->header
.type
= cpu_to_le16(TLV_TYPE_RATES
);
262 tlv
+= sizeof(rate_tlv
->header
);
263 i
= lbs_add_rates(tlv
);
265 rate_tlv
->header
.len
= cpu_to_le16(i
);
266 return sizeof(rate_tlv
->header
) + i
;
269 /* Add common rates from a TLV and return the new end of the TLV */
271 add_ie_rates(u8
*tlv
, const u8
*ie
, int *nrates
)
273 int hw
, ap
, ap_max
= ie
[1];
276 if (ap_max
> MAX_RATES
) {
277 lbs_deb_assoc("invalid rates\n");
280 /* Advance past IE header */
283 lbs_deb_hex(LBS_DEB_ASSOC
, "AP IE Rates", (u8
*) ie
, ap_max
);
285 for (hw
= 0; hw
< ARRAY_SIZE(lbs_rates
); hw
++) {
286 hw_rate
= lbs_rates
[hw
].bitrate
/ 5;
287 for (ap
= 0; ap
< ap_max
; ap
++) {
288 if (hw_rate
== (ie
[ap
] & 0x7f)) {
290 *nrates
= *nrates
+ 1;
298 * Adds a TLV with all rates the hardware *and* BSS supports.
300 static int lbs_add_common_rates_tlv(u8
*tlv
, struct cfg80211_bss
*bss
)
302 struct mrvl_ie_rates_param_set
*rate_tlv
= (void *)tlv
;
303 const u8
*rates_eid
, *ext_rates_eid
;
307 rates_eid
= ieee80211_bss_get_ie(bss
, WLAN_EID_SUPP_RATES
);
308 ext_rates_eid
= ieee80211_bss_get_ie(bss
, WLAN_EID_EXT_SUPP_RATES
);
311 * 01 00 TLV_TYPE_RATES
315 rate_tlv
->header
.type
= cpu_to_le16(TLV_TYPE_RATES
);
316 tlv
+= sizeof(rate_tlv
->header
);
318 /* Add basic rates */
320 tlv
= add_ie_rates(tlv
, rates_eid
, &n
);
322 /* Add extended rates, if any */
324 tlv
= add_ie_rates(tlv
, ext_rates_eid
, &n
);
326 lbs_deb_assoc("assoc: bss had no basic rate IE\n");
327 /* Fallback: add basic 802.11b rates */
336 rate_tlv
->header
.len
= cpu_to_le16(n
);
337 return sizeof(rate_tlv
->header
) + n
;
344 * This is only needed for newer firmware (V9 and up).
346 #define LBS_MAX_AUTH_TYPE_TLV_SIZE \
347 sizeof(struct mrvl_ie_auth_type)
349 static int lbs_add_auth_type_tlv(u8
*tlv
, enum nl80211_auth_type auth_type
)
351 struct mrvl_ie_auth_type
*auth
= (void *) tlv
;
354 * 1f 01 TLV_TYPE_AUTH_TYPE
358 auth
->header
.type
= cpu_to_le16(TLV_TYPE_AUTH_TYPE
);
359 auth
->header
.len
= cpu_to_le16(sizeof(*auth
)-sizeof(auth
->header
));
360 auth
->auth
= cpu_to_le16(lbs_auth_to_authtype(auth_type
));
361 return sizeof(*auth
);
366 * Add channel (phy ds) TLV
368 #define LBS_MAX_CHANNEL_TLV_SIZE \
369 sizeof(struct mrvl_ie_header)
371 static int lbs_add_channel_tlv(u8
*tlv
, u8 channel
)
373 struct mrvl_ie_ds_param_set
*ds
= (void *) tlv
;
376 * 03 00 TLV_TYPE_PHY_DS
380 ds
->header
.type
= cpu_to_le16(TLV_TYPE_PHY_DS
);
381 ds
->header
.len
= cpu_to_le16(sizeof(*ds
)-sizeof(ds
->header
));
382 ds
->channel
= channel
;
388 * Add (empty) CF param TLV of the form:
390 #define LBS_MAX_CF_PARAM_TLV_SIZE \
391 sizeof(struct mrvl_ie_header)
393 static int lbs_add_cf_param_tlv(u8
*tlv
)
395 struct mrvl_ie_cf_param_set
*cf
= (void *)tlv
;
402 * 00 00 cfpmaxduration
403 * 00 00 cfpdurationremaining
405 cf
->header
.type
= cpu_to_le16(TLV_TYPE_CF
);
406 cf
->header
.len
= cpu_to_le16(sizeof(*cf
)-sizeof(cf
->header
));
413 #define LBS_MAX_WPA_TLV_SIZE \
414 (sizeof(struct mrvl_ie_header) \
415 + 128 /* TODO: I guessed the size */)
417 static int lbs_add_wpa_tlv(u8
*tlv
, const u8
*ie
, u8 ie_len
)
419 struct mrvl_ie_data
*wpatlv
= (struct mrvl_ie_data
*)tlv
;
420 const struct element
*wpaie
;
422 /* Find the first RSN or WPA IE to use */
423 wpaie
= cfg80211_find_elem(WLAN_EID_RSN
, ie
, ie_len
);
425 wpaie
= cfg80211_find_vendor_elem(WLAN_OUI_MICROSOFT
,
426 WLAN_OUI_TYPE_MICROSOFT_WPA
,
428 if (!wpaie
|| wpaie
->datalen
> 128)
432 * Convert the found IE to a TLV. IEs use u8 for the header,
436 * but TLVs use __le16 instead:
441 wpatlv
->header
.type
= cpu_to_le16(wpaie
->id
);
442 wpatlv
->header
.len
= cpu_to_le16(wpaie
->datalen
);
443 memcpy(wpatlv
->data
, wpaie
->data
, wpaie
->datalen
);
445 /* Return the total number of bytes added to the TLV buffer */
446 return sizeof(struct mrvl_ie_header
) + wpaie
->datalen
;
449 /* Add WPS enrollee TLV
451 #define LBS_MAX_WPS_ENROLLEE_TLV_SIZE \
452 (sizeof(struct mrvl_ie_header) \
455 static int lbs_add_wps_enrollee_tlv(u8
*tlv
, const u8
*ie
, size_t ie_len
)
457 struct mrvl_ie_data
*wpstlv
= (struct mrvl_ie_data
*)tlv
;
458 const struct element
*wpsie
;
460 /* Look for a WPS IE and add it to the probe request */
461 wpsie
= cfg80211_find_vendor_elem(WLAN_OUI_MICROSOFT
,
462 WLAN_OUI_TYPE_MICROSOFT_WPS
,
467 /* Convert the WPS IE to a TLV. The IE looks like this:
468 * u8 type (WLAN_EID_VENDOR_SPECIFIC)
471 * but the TLV will look like this instead:
472 * __le16 type (TLV_TYPE_WPS_ENROLLEE)
476 wpstlv
->header
.type
= cpu_to_le16(TLV_TYPE_WPS_ENROLLEE
);
477 wpstlv
->header
.len
= cpu_to_le16(wpsie
->datalen
);
478 memcpy(wpstlv
->data
, wpsie
->data
, wpsie
->datalen
);
480 /* Return the total number of bytes added to the TLV buffer */
481 return sizeof(struct mrvl_ie_header
) + wpsie
->datalen
;
488 static int lbs_cfg_set_monitor_channel(struct wiphy
*wiphy
,
489 struct net_device
*dev
,
490 struct cfg80211_chan_def
*chandef
)
492 struct lbs_private
*priv
= wiphy_priv(wiphy
);
495 if (cfg80211_get_chandef_type(chandef
) != NL80211_CHAN_NO_HT
)
498 ret
= lbs_set_channel(priv
, chandef
->chan
->hw_value
);
504 static int lbs_cfg_set_mesh_channel(struct wiphy
*wiphy
,
505 struct net_device
*netdev
,
506 struct ieee80211_channel
*channel
)
508 struct lbs_private
*priv
= wiphy_priv(wiphy
);
511 if (netdev
!= priv
->mesh_dev
)
514 ret
= lbs_mesh_set_channel(priv
, channel
->hw_value
);
527 * When scanning, the firmware doesn't send a nul packet with the power-safe
528 * bit to the AP. So we cannot stay away from our current channel too long,
529 * otherwise we loose data. So take a "nap" while scanning every other
532 #define LBS_SCAN_BEFORE_NAP 4
536 * When the firmware reports back a scan-result, it gives us an "u8 rssi",
537 * which isn't really an RSSI, as it becomes larger when moving away from
538 * the AP. Anyway, we need to convert that into mBm.
540 #define LBS_SCAN_RSSI_TO_MBM(rssi) \
541 ((-(int)rssi + 3)*100)
543 static int lbs_ret_scan(struct lbs_private
*priv
, unsigned long dummy
,
544 struct cmd_header
*resp
)
546 struct cfg80211_bss
*bss
;
547 struct cmd_ds_802_11_scan_rsp
*scanresp
= (void *)resp
;
555 bsssize
= get_unaligned_le16(&scanresp
->bssdescriptsize
);
557 lbs_deb_scan("scan response: %d BSSs (%d bytes); resp size %d bytes\n",
558 scanresp
->nr_sets
, bsssize
, le16_to_cpu(resp
->size
));
560 if (scanresp
->nr_sets
== 0) {
566 * The general layout of the scan response is described in chapter
567 * 5.7.1. Basically we have a common part, then any number of BSS
568 * descriptor sections. Finally we have section with the same number
571 * cmd_ds_802_11_scan_rsp
584 * MrvlIEtypes_TsfFimestamp_t
590 pos
= scanresp
->bssdesc_and_tlvbuffer
;
592 lbs_deb_hex(LBS_DEB_SCAN
, "SCAN_RSP", scanresp
->bssdesc_and_tlvbuffer
,
595 tsfdesc
= pos
+ bsssize
;
596 tsfsize
= 4 + 8 * scanresp
->nr_sets
;
597 lbs_deb_hex(LBS_DEB_SCAN
, "SCAN_TSF", (u8
*) tsfdesc
, tsfsize
);
599 /* Validity check: we expect a Marvell-Local TLV */
600 i
= get_unaligned_le16(tsfdesc
);
602 if (i
!= TLV_TYPE_TSFTIMESTAMP
) {
603 lbs_deb_scan("scan response: invalid TSF Timestamp %d\n", i
);
608 * Validity check: the TLV holds TSF values with 8 bytes each, so
609 * the size in the TLV must match the nr_sets value
611 i
= get_unaligned_le16(tsfdesc
);
613 if (i
/ 8 != scanresp
->nr_sets
) {
614 lbs_deb_scan("scan response: invalid number of TSF timestamp "
615 "sets (expected %d got %d)\n", scanresp
->nr_sets
,
620 for (i
= 0; i
< scanresp
->nr_sets
; i
++) {
629 const u8
*ssid
= NULL
;
632 int len
= get_unaligned_le16(pos
);
640 /* Packet time stamp */
642 /* Beacon interval */
643 intvl
= get_unaligned_le16(pos
);
646 capa
= get_unaligned_le16(pos
);
649 /* To find out the channel, we must parse the IEs */
652 * 6+1+8+2+2: size of BSSID, RSSI, time stamp, beacon
653 * interval, capabilities
655 ielen
= left
= len
- (6 + 1 + 8 + 2 + 2);
662 lbs_deb_scan("scan response: invalid IE fmt\n");
666 if (id
== WLAN_EID_DS_PARAMS
)
668 if (id
== WLAN_EID_SSID
) {
676 /* No channel, no luck */
678 struct wiphy
*wiphy
= priv
->wdev
->wiphy
;
679 int freq
= ieee80211_channel_to_frequency(chan_no
,
681 struct ieee80211_channel
*channel
=
682 ieee80211_get_channel(wiphy
, freq
);
684 lbs_deb_scan("scan: %pM, capa %04x, chan %2d, %*pE, %d dBm\n",
685 bssid
, capa
, chan_no
, ssid_len
, ssid
,
686 LBS_SCAN_RSSI_TO_MBM(rssi
)/100);
689 !(channel
->flags
& IEEE80211_CHAN_DISABLED
)) {
690 bss
= cfg80211_inform_bss(wiphy
, channel
,
691 CFG80211_BSS_FTYPE_UNKNOWN
,
692 bssid
, get_unaligned_le64(tsfdesc
),
693 capa
, intvl
, ie
, ielen
,
694 LBS_SCAN_RSSI_TO_MBM(rssi
),
696 cfg80211_put_bss(wiphy
, bss
);
699 lbs_deb_scan("scan response: missing BSS channel IE\n");
711 * Our scan command contains a TLV, consisting of a SSID TLV, a channel list
712 * TLV, a rates TLV, and an optional WPS IE. Determine the maximum size of them:
714 #define LBS_SCAN_MAX_CMD_SIZE \
715 (sizeof(struct cmd_ds_802_11_scan) \
716 + LBS_MAX_SSID_TLV_SIZE \
717 + LBS_MAX_CHANNEL_LIST_TLV_SIZE \
718 + LBS_MAX_RATES_TLV_SIZE \
719 + LBS_MAX_WPS_ENROLLEE_TLV_SIZE)
722 * Assumes priv->scan_req is initialized and valid
723 * Assumes priv->scan_channel is initialized
725 static void lbs_scan_worker(struct work_struct
*work
)
727 struct lbs_private
*priv
=
728 container_of(work
, struct lbs_private
, scan_work
.work
);
729 struct cmd_ds_802_11_scan
*scan_cmd
;
730 u8
*tlv
; /* pointer into our current, growing TLV storage area */
732 int running
, carrier
;
734 scan_cmd
= kzalloc(LBS_SCAN_MAX_CMD_SIZE
, GFP_KERNEL
);
735 if (scan_cmd
== NULL
)
738 /* prepare fixed part of scan command */
739 scan_cmd
->bsstype
= CMD_BSS_TYPE_ANY
;
741 /* stop network while we're away from our main channel */
742 running
= !netif_queue_stopped(priv
->dev
);
743 carrier
= netif_carrier_ok(priv
->dev
);
745 netif_stop_queue(priv
->dev
);
747 netif_carrier_off(priv
->dev
);
749 /* prepare fixed part of scan command */
750 tlv
= scan_cmd
->tlvbuffer
;
753 if (priv
->scan_req
->n_ssids
&& priv
->scan_req
->ssids
[0].ssid_len
> 0)
754 tlv
+= lbs_add_ssid_tlv(tlv
,
755 priv
->scan_req
->ssids
[0].ssid
,
756 priv
->scan_req
->ssids
[0].ssid_len
);
758 /* add channel TLVs */
759 last_channel
= priv
->scan_channel
+ LBS_SCAN_BEFORE_NAP
;
760 if (last_channel
> priv
->scan_req
->n_channels
)
761 last_channel
= priv
->scan_req
->n_channels
;
762 tlv
+= lbs_add_channel_list_tlv(priv
, tlv
, last_channel
,
763 priv
->scan_req
->n_ssids
);
766 tlv
+= lbs_add_supported_rates_tlv(tlv
);
768 /* add optional WPS enrollee TLV */
769 if (priv
->scan_req
->ie
&& priv
->scan_req
->ie_len
)
770 tlv
+= lbs_add_wps_enrollee_tlv(tlv
, priv
->scan_req
->ie
,
771 priv
->scan_req
->ie_len
);
773 if (priv
->scan_channel
< priv
->scan_req
->n_channels
) {
774 cancel_delayed_work(&priv
->scan_work
);
775 if (netif_running(priv
->dev
))
776 queue_delayed_work(priv
->work_thread
, &priv
->scan_work
,
777 msecs_to_jiffies(300));
780 /* This is the final data we are about to send */
781 scan_cmd
->hdr
.size
= cpu_to_le16(tlv
- (u8
*)scan_cmd
);
782 lbs_deb_hex(LBS_DEB_SCAN
, "SCAN_CMD", (void *)scan_cmd
,
784 lbs_deb_hex(LBS_DEB_SCAN
, "SCAN_TLV", scan_cmd
->tlvbuffer
,
785 tlv
- scan_cmd
->tlvbuffer
);
787 __lbs_cmd(priv
, CMD_802_11_SCAN
, &scan_cmd
->hdr
,
788 le16_to_cpu(scan_cmd
->hdr
.size
),
791 if (priv
->scan_channel
>= priv
->scan_req
->n_channels
) {
793 cancel_delayed_work(&priv
->scan_work
);
797 /* Restart network */
799 netif_carrier_on(priv
->dev
);
800 if (running
&& !priv
->tx_pending_len
)
801 netif_wake_queue(priv
->dev
);
805 /* Wake up anything waiting on scan completion */
806 if (priv
->scan_req
== NULL
) {
807 lbs_deb_scan("scan: waking up waiters\n");
808 wake_up_all(&priv
->scan_q
);
812 static void _internal_start_scan(struct lbs_private
*priv
, bool internal
,
813 struct cfg80211_scan_request
*request
)
815 lbs_deb_scan("scan: ssids %d, channels %d, ie_len %zd\n",
816 request
->n_ssids
, request
->n_channels
, request
->ie_len
);
818 priv
->scan_channel
= 0;
819 priv
->scan_req
= request
;
820 priv
->internal_scan
= internal
;
822 queue_delayed_work(priv
->work_thread
, &priv
->scan_work
,
823 msecs_to_jiffies(50));
827 * Clean up priv->scan_req. Should be used to handle the allocation details.
829 void lbs_scan_done(struct lbs_private
*priv
)
831 WARN_ON(!priv
->scan_req
);
833 if (priv
->internal_scan
) {
834 kfree(priv
->scan_req
);
836 struct cfg80211_scan_info info
= {
840 cfg80211_scan_done(priv
->scan_req
, &info
);
843 priv
->scan_req
= NULL
;
846 static int lbs_cfg_scan(struct wiphy
*wiphy
,
847 struct cfg80211_scan_request
*request
)
849 struct lbs_private
*priv
= wiphy_priv(wiphy
);
852 if (priv
->scan_req
|| delayed_work_pending(&priv
->scan_work
)) {
853 /* old scan request not yet processed */
858 _internal_start_scan(priv
, false, request
);
860 if (priv
->surpriseremoved
)
874 void lbs_send_disconnect_notification(struct lbs_private
*priv
,
875 bool locally_generated
)
877 cfg80211_disconnected(priv
->dev
, 0, NULL
, 0, locally_generated
,
881 void lbs_send_mic_failureevent(struct lbs_private
*priv
, u32 event
)
883 cfg80211_michael_mic_failure(priv
->dev
,
885 event
== MACREG_INT_CODE_MIC_ERR_MULTICAST
?
886 NL80211_KEYTYPE_GROUP
:
887 NL80211_KEYTYPE_PAIRWISE
,
902 * This removes all WEP keys
904 static int lbs_remove_wep_keys(struct lbs_private
*priv
)
906 struct cmd_ds_802_11_set_wep cmd
;
909 memset(&cmd
, 0, sizeof(cmd
));
910 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
911 cmd
.keyindex
= cpu_to_le16(priv
->wep_tx_key
);
912 cmd
.action
= cpu_to_le16(CMD_ACT_REMOVE
);
914 ret
= lbs_cmd_with_response(priv
, CMD_802_11_SET_WEP
, &cmd
);
922 static int lbs_set_wep_keys(struct lbs_private
*priv
)
924 struct cmd_ds_802_11_set_wep cmd
;
933 * action 02 00 ACT_ADD
935 * type for key 1 01 WEP40
939 * key 1 39 39 39 39 39 00 00 00
940 * 00 00 00 00 00 00 00 00
941 * key 2 00 00 00 00 00 00 00 00
942 * 00 00 00 00 00 00 00 00
943 * key 3 00 00 00 00 00 00 00 00
944 * 00 00 00 00 00 00 00 00
945 * key 4 00 00 00 00 00 00 00 00
947 if (priv
->wep_key_len
[0] || priv
->wep_key_len
[1] ||
948 priv
->wep_key_len
[2] || priv
->wep_key_len
[3]) {
949 /* Only set wep keys if we have at least one of them */
950 memset(&cmd
, 0, sizeof(cmd
));
951 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
952 cmd
.keyindex
= cpu_to_le16(priv
->wep_tx_key
);
953 cmd
.action
= cpu_to_le16(CMD_ACT_ADD
);
955 for (i
= 0; i
< 4; i
++) {
956 switch (priv
->wep_key_len
[i
]) {
957 case WLAN_KEY_LEN_WEP40
:
958 cmd
.keytype
[i
] = CMD_TYPE_WEP_40_BIT
;
960 case WLAN_KEY_LEN_WEP104
:
961 cmd
.keytype
[i
] = CMD_TYPE_WEP_104_BIT
;
967 memcpy(cmd
.keymaterial
[i
], priv
->wep_key
[i
],
968 priv
->wep_key_len
[i
]);
971 ret
= lbs_cmd_with_response(priv
, CMD_802_11_SET_WEP
, &cmd
);
973 /* Otherwise remove all wep keys */
974 ret
= lbs_remove_wep_keys(priv
);
982 * Enable/Disable RSN status
984 static int lbs_enable_rsn(struct lbs_private
*priv
, int enable
)
986 struct cmd_ds_802_11_enable_rsn cmd
;
994 * action 01 00 ACT_SET
997 memset(&cmd
, 0, sizeof(cmd
));
998 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
999 cmd
.action
= cpu_to_le16(CMD_ACT_SET
);
1000 cmd
.enable
= cpu_to_le16(enable
);
1002 ret
= lbs_cmd_with_response(priv
, CMD_802_11_ENABLE_RSN
, &cmd
);
1009 * Set WPA/WPA key material
1013 * like "struct cmd_ds_802_11_key_material", but with cmd_header. Once we
1014 * get rid of WEXT, this should go into host.h
1017 struct cmd_key_material
{
1018 struct cmd_header hdr
;
1021 struct MrvlIEtype_keyParamSet param
;
1024 static int lbs_set_key_material(struct lbs_private
*priv
,
1025 int key_type
, int key_info
,
1026 const u8
*key
, u16 key_len
)
1028 struct cmd_key_material cmd
;
1032 * Example for WPA (TKIP):
1039 * TLV type 00 01 key param
1041 * key type 01 00 TKIP
1042 * key info 06 00 UNICAST | ENABLED
1046 memset(&cmd
, 0, sizeof(cmd
));
1047 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
1048 cmd
.action
= cpu_to_le16(CMD_ACT_SET
);
1049 cmd
.param
.type
= cpu_to_le16(TLV_TYPE_KEY_MATERIAL
);
1050 cmd
.param
.length
= cpu_to_le16(sizeof(cmd
.param
) - 4);
1051 cmd
.param
.keytypeid
= cpu_to_le16(key_type
);
1052 cmd
.param
.keyinfo
= cpu_to_le16(key_info
);
1053 cmd
.param
.keylen
= cpu_to_le16(key_len
);
1055 memcpy(cmd
.param
.key
, key
, key_len
);
1057 ret
= lbs_cmd_with_response(priv
, CMD_802_11_KEY_MATERIAL
, &cmd
);
1064 * Sets the auth type (open, shared, etc) in the firmware. That
1065 * we use CMD_802_11_AUTHENTICATE is misleading, this firmware
1066 * command doesn't send an authentication frame at all, it just
1067 * stores the auth_type.
1069 static int lbs_set_authtype(struct lbs_private
*priv
,
1070 struct cfg80211_connect_params
*sme
)
1072 struct cmd_ds_802_11_authenticate cmd
;
1080 * BSS id 00 13 19 80 da 30
1082 * reserved 00 00 00 00 00 00 00 00 00 00
1084 memset(&cmd
, 0, sizeof(cmd
));
1085 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
1087 memcpy(cmd
.bssid
, sme
->bssid
, ETH_ALEN
);
1088 /* convert auth_type */
1089 ret
= lbs_auth_to_authtype(sme
->auth_type
);
1094 ret
= lbs_cmd_with_response(priv
, CMD_802_11_AUTHENTICATE
, &cmd
);
1102 * Create association request
1104 #define LBS_ASSOC_MAX_CMD_SIZE \
1105 (sizeof(struct cmd_ds_802_11_associate) \
1106 + LBS_MAX_SSID_TLV_SIZE \
1107 + LBS_MAX_CHANNEL_TLV_SIZE \
1108 + LBS_MAX_CF_PARAM_TLV_SIZE \
1109 + LBS_MAX_AUTH_TYPE_TLV_SIZE \
1110 + LBS_MAX_WPA_TLV_SIZE)
1112 static int lbs_associate(struct lbs_private
*priv
,
1113 struct cfg80211_bss
*bss
,
1114 struct cfg80211_connect_params
*sme
)
1116 struct cmd_ds_802_11_associate_response
*resp
;
1117 struct cmd_ds_802_11_associate
*cmd
= kzalloc(LBS_ASSOC_MAX_CMD_SIZE
,
1120 size_t len
, resp_ie_len
;
1130 pos
= &cmd
->iebuf
[0];
1137 * BSS id 00 13 19 80 da 30
1138 * capabilities 11 00
1139 * listen interval 0a 00
1140 * beacon interval 00 00
1142 * TLVs xx (up to 512 bytes)
1144 cmd
->hdr
.command
= cpu_to_le16(CMD_802_11_ASSOCIATE
);
1146 /* Fill in static fields */
1147 memcpy(cmd
->bssid
, bss
->bssid
, ETH_ALEN
);
1148 cmd
->listeninterval
= cpu_to_le16(MRVDRV_DEFAULT_LISTEN_INTERVAL
);
1149 cmd
->capability
= cpu_to_le16(bss
->capability
);
1153 ssid_eid
= ieee80211_bss_get_ie(bss
, WLAN_EID_SSID
);
1155 pos
+= lbs_add_ssid_tlv(pos
, ssid_eid
+ 2, ssid_eid
[1]);
1157 lbs_deb_assoc("no SSID\n");
1160 /* add DS param TLV */
1162 pos
+= lbs_add_channel_tlv(pos
, bss
->channel
->hw_value
);
1164 lbs_deb_assoc("no channel\n");
1166 /* add (empty) CF param TLV */
1167 pos
+= lbs_add_cf_param_tlv(pos
);
1170 tmp
= pos
+ 4; /* skip Marvell IE header */
1171 pos
+= lbs_add_common_rates_tlv(pos
, bss
);
1172 lbs_deb_hex(LBS_DEB_ASSOC
, "Common Rates", tmp
, pos
- tmp
);
1174 /* add auth type TLV */
1175 if (MRVL_FW_MAJOR_REV(priv
->fwrelease
) >= 9)
1176 pos
+= lbs_add_auth_type_tlv(pos
, sme
->auth_type
);
1178 /* add WPA/WPA2 TLV */
1179 if (sme
->ie
&& sme
->ie_len
)
1180 pos
+= lbs_add_wpa_tlv(pos
, sme
->ie
, sme
->ie_len
);
1182 len
= sizeof(*cmd
) + (u16
)(pos
- (u8
*) &cmd
->iebuf
);
1183 cmd
->hdr
.size
= cpu_to_le16(len
);
1185 lbs_deb_hex(LBS_DEB_ASSOC
, "ASSOC_CMD", (u8
*) cmd
,
1186 le16_to_cpu(cmd
->hdr
.size
));
1188 /* store for later use */
1189 memcpy(priv
->assoc_bss
, bss
->bssid
, ETH_ALEN
);
1191 ret
= lbs_cmd_with_response(priv
, CMD_802_11_ASSOCIATE
, cmd
);
1195 /* generate connect message to cfg80211 */
1197 resp
= (void *) cmd
; /* recast for easier field access */
1198 status
= le16_to_cpu(resp
->statuscode
);
1200 /* Older FW versions map the IEEE 802.11 Status Code in the association
1201 * response to the following values returned in resp->statuscode:
1203 * IEEE Status Code Marvell Status Code
1204 * 0 -> 0x0000 ASSOC_RESULT_SUCCESS
1205 * 13 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1206 * 14 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1207 * 15 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1208 * 16 -> 0x0004 ASSOC_RESULT_AUTH_REFUSED
1209 * others -> 0x0003 ASSOC_RESULT_REFUSED
1211 * Other response codes:
1212 * 0x0001 -> ASSOC_RESULT_INVALID_PARAMETERS (unused)
1213 * 0x0002 -> ASSOC_RESULT_TIMEOUT (internal timer expired waiting for
1214 * association response from the AP)
1216 if (MRVL_FW_MAJOR_REV(priv
->fwrelease
) <= 8) {
1221 lbs_deb_assoc("invalid association parameters\n");
1222 status
= WLAN_STATUS_CAPS_UNSUPPORTED
;
1225 lbs_deb_assoc("timer expired while waiting for AP\n");
1226 status
= WLAN_STATUS_AUTH_TIMEOUT
;
1229 lbs_deb_assoc("association refused by AP\n");
1230 status
= WLAN_STATUS_ASSOC_DENIED_UNSPEC
;
1233 lbs_deb_assoc("authentication refused by AP\n");
1234 status
= WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION
;
1237 lbs_deb_assoc("association failure %d\n", status
);
1238 /* v5 OLPC firmware does return the AP status code if
1239 * it's not one of the values above. Let that through.
1245 lbs_deb_assoc("status %d, statuscode 0x%04x, capability 0x%04x, "
1246 "aid 0x%04x\n", status
, le16_to_cpu(resp
->statuscode
),
1247 le16_to_cpu(resp
->capability
), le16_to_cpu(resp
->aid
));
1249 resp_ie_len
= le16_to_cpu(resp
->hdr
.size
)
1252 cfg80211_connect_result(priv
->dev
,
1254 sme
->ie
, sme
->ie_len
,
1255 resp
->iebuf
, resp_ie_len
,
1260 /* TODO: get rid of priv->connect_status */
1261 priv
->connect_status
= LBS_CONNECTED
;
1262 netif_carrier_on(priv
->dev
);
1263 if (!priv
->tx_pending_len
)
1264 netif_tx_wake_all_queues(priv
->dev
);
1272 static struct cfg80211_scan_request
*
1273 _new_connect_scan_req(struct wiphy
*wiphy
, struct cfg80211_connect_params
*sme
)
1275 struct cfg80211_scan_request
*creq
= NULL
;
1276 int i
, n_channels
= ieee80211_get_num_supported_channels(wiphy
);
1277 enum nl80211_band band
;
1279 creq
= kzalloc(sizeof(*creq
) + sizeof(struct cfg80211_ssid
) +
1280 n_channels
* sizeof(void *),
1285 /* SSIDs come after channels */
1286 creq
->ssids
= (void *)&creq
->channels
[n_channels
];
1287 creq
->n_channels
= n_channels
;
1290 /* Scan all available channels */
1292 for (band
= 0; band
< NUM_NL80211_BANDS
; band
++) {
1295 if (!wiphy
->bands
[band
])
1298 for (j
= 0; j
< wiphy
->bands
[band
]->n_channels
; j
++) {
1299 /* ignore disabled channels */
1300 if (wiphy
->bands
[band
]->channels
[j
].flags
&
1301 IEEE80211_CHAN_DISABLED
)
1304 creq
->channels
[i
] = &wiphy
->bands
[band
]->channels
[j
];
1309 /* Set real number of channels specified in creq->channels[] */
1310 creq
->n_channels
= i
;
1312 /* Scan for the SSID we're going to connect to */
1313 memcpy(creq
->ssids
[0].ssid
, sme
->ssid
, sme
->ssid_len
);
1314 creq
->ssids
[0].ssid_len
= sme
->ssid_len
;
1316 /* No channels found... */
1324 static int lbs_cfg_connect(struct wiphy
*wiphy
, struct net_device
*dev
,
1325 struct cfg80211_connect_params
*sme
)
1327 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1328 struct cfg80211_bss
*bss
= NULL
;
1330 u8 preamble
= RADIO_PREAMBLE_SHORT
;
1332 if (dev
== priv
->mesh_dev
)
1336 struct cfg80211_scan_request
*creq
;
1339 * Scan for the requested network after waiting for existing
1342 lbs_deb_assoc("assoc: waiting for existing scans\n");
1343 wait_event_interruptible_timeout(priv
->scan_q
,
1344 (priv
->scan_req
== NULL
),
1347 creq
= _new_connect_scan_req(wiphy
, sme
);
1353 lbs_deb_assoc("assoc: scanning for compatible AP\n");
1354 _internal_start_scan(priv
, true, creq
);
1356 lbs_deb_assoc("assoc: waiting for scan to complete\n");
1357 wait_event_interruptible_timeout(priv
->scan_q
,
1358 (priv
->scan_req
== NULL
),
1360 lbs_deb_assoc("assoc: scanning completed\n");
1363 /* Find the BSS we want using available scan results */
1364 bss
= cfg80211_get_bss(wiphy
, sme
->channel
, sme
->bssid
,
1365 sme
->ssid
, sme
->ssid_len
, IEEE80211_BSS_TYPE_ESS
,
1366 IEEE80211_PRIVACY_ANY
);
1368 wiphy_err(wiphy
, "assoc: bss %pM not in scan results\n",
1373 lbs_deb_assoc("trying %pM\n", bss
->bssid
);
1374 lbs_deb_assoc("cipher 0x%x, key index %d, key len %d\n",
1375 sme
->crypto
.cipher_group
,
1376 sme
->key_idx
, sme
->key_len
);
1378 /* As this is a new connection, clear locally stored WEP keys */
1379 priv
->wep_tx_key
= 0;
1380 memset(priv
->wep_key
, 0, sizeof(priv
->wep_key
));
1381 memset(priv
->wep_key_len
, 0, sizeof(priv
->wep_key_len
));
1383 /* set/remove WEP keys */
1384 switch (sme
->crypto
.cipher_group
) {
1385 case WLAN_CIPHER_SUITE_WEP40
:
1386 case WLAN_CIPHER_SUITE_WEP104
:
1387 /* Store provided WEP keys in priv-> */
1388 priv
->wep_tx_key
= sme
->key_idx
;
1389 priv
->wep_key_len
[sme
->key_idx
] = sme
->key_len
;
1390 memcpy(priv
->wep_key
[sme
->key_idx
], sme
->key
, sme
->key_len
);
1391 /* Set WEP keys and WEP mode */
1392 lbs_set_wep_keys(priv
);
1393 priv
->mac_control
|= CMD_ACT_MAC_WEP_ENABLE
;
1394 lbs_set_mac_control(priv
);
1395 /* No RSN mode for WEP */
1396 lbs_enable_rsn(priv
, 0);
1398 case 0: /* there's no WLAN_CIPHER_SUITE_NONE definition */
1400 * If we don't have no WEP, no WPA and no WPA2,
1401 * we remove all keys like in the WPA/WPA2 setup,
1402 * we just don't set RSN.
1404 * Therefore: fall-through
1406 case WLAN_CIPHER_SUITE_TKIP
:
1407 case WLAN_CIPHER_SUITE_CCMP
:
1408 /* Remove WEP keys and WEP mode */
1409 lbs_remove_wep_keys(priv
);
1410 priv
->mac_control
&= ~CMD_ACT_MAC_WEP_ENABLE
;
1411 lbs_set_mac_control(priv
);
1413 /* clear the WPA/WPA2 keys */
1414 lbs_set_key_material(priv
,
1415 KEY_TYPE_ID_WEP
, /* doesn't matter */
1416 KEY_INFO_WPA_UNICAST
,
1418 lbs_set_key_material(priv
,
1419 KEY_TYPE_ID_WEP
, /* doesn't matter */
1422 /* RSN mode for WPA/WPA2 */
1423 lbs_enable_rsn(priv
, sme
->crypto
.cipher_group
!= 0);
1426 wiphy_err(wiphy
, "unsupported cipher group 0x%x\n",
1427 sme
->crypto
.cipher_group
);
1432 ret
= lbs_set_authtype(priv
, sme
);
1433 if (ret
== -ENOTSUPP
) {
1434 wiphy_err(wiphy
, "unsupported authtype 0x%x\n", sme
->auth_type
);
1438 lbs_set_radio(priv
, preamble
, 1);
1440 /* Do the actual association */
1441 ret
= lbs_associate(priv
, bss
, sme
);
1445 cfg80211_put_bss(wiphy
, bss
);
1449 int lbs_disconnect(struct lbs_private
*priv
, u16 reason
)
1451 struct cmd_ds_802_11_deauthenticate cmd
;
1454 memset(&cmd
, 0, sizeof(cmd
));
1455 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
1456 /* Mildly ugly to use a locally store my own BSSID ... */
1457 memcpy(cmd
.macaddr
, &priv
->assoc_bss
, ETH_ALEN
);
1458 cmd
.reasoncode
= cpu_to_le16(reason
);
1460 ret
= lbs_cmd_with_response(priv
, CMD_802_11_DEAUTHENTICATE
, &cmd
);
1464 cfg80211_disconnected(priv
->dev
,
1468 priv
->connect_status
= LBS_DISCONNECTED
;
1473 static int lbs_cfg_disconnect(struct wiphy
*wiphy
, struct net_device
*dev
,
1476 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1478 if (dev
== priv
->mesh_dev
)
1481 /* store for lbs_cfg_ret_disconnect() */
1482 priv
->disassoc_reason
= reason_code
;
1484 return lbs_disconnect(priv
, reason_code
);
1487 static int lbs_cfg_set_default_key(struct wiphy
*wiphy
,
1488 struct net_device
*netdev
, int link_id
,
1489 u8 key_index
, bool unicast
,
1492 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1494 if (netdev
== priv
->mesh_dev
)
1497 if (key_index
!= priv
->wep_tx_key
) {
1498 lbs_deb_assoc("set_default_key: to %d\n", key_index
);
1499 priv
->wep_tx_key
= key_index
;
1500 lbs_set_wep_keys(priv
);
1507 static int lbs_cfg_add_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
1508 int link_id
, u8 idx
, bool pairwise
,
1509 const u8
*mac_addr
, struct key_params
*params
)
1511 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1516 if (netdev
== priv
->mesh_dev
)
1519 lbs_deb_assoc("add_key: cipher 0x%x, mac_addr %pM\n",
1520 params
->cipher
, mac_addr
);
1521 lbs_deb_assoc("add_key: key index %d, key len %d\n",
1522 idx
, params
->key_len
);
1523 if (params
->key_len
)
1524 lbs_deb_hex(LBS_DEB_CFG80211
, "KEY",
1525 params
->key
, params
->key_len
);
1527 lbs_deb_assoc("add_key: seq len %d\n", params
->seq_len
);
1528 if (params
->seq_len
)
1529 lbs_deb_hex(LBS_DEB_CFG80211
, "SEQ",
1530 params
->seq
, params
->seq_len
);
1532 switch (params
->cipher
) {
1533 case WLAN_CIPHER_SUITE_WEP40
:
1534 case WLAN_CIPHER_SUITE_WEP104
:
1535 /* actually compare if something has changed ... */
1536 if ((priv
->wep_key_len
[idx
] != params
->key_len
) ||
1537 memcmp(priv
->wep_key
[idx
],
1538 params
->key
, params
->key_len
) != 0) {
1539 priv
->wep_key_len
[idx
] = params
->key_len
;
1540 memcpy(priv
->wep_key
[idx
],
1541 params
->key
, params
->key_len
);
1542 lbs_set_wep_keys(priv
);
1545 case WLAN_CIPHER_SUITE_TKIP
:
1546 case WLAN_CIPHER_SUITE_CCMP
:
1547 key_info
= KEY_INFO_WPA_ENABLED
| ((idx
== 0)
1548 ? KEY_INFO_WPA_UNICAST
1549 : KEY_INFO_WPA_MCAST
);
1550 key_type
= (params
->cipher
== WLAN_CIPHER_SUITE_TKIP
)
1553 lbs_set_key_material(priv
,
1556 params
->key
, params
->key_len
);
1559 wiphy_err(wiphy
, "unhandled cipher 0x%x\n", params
->cipher
);
1568 static int lbs_cfg_del_key(struct wiphy
*wiphy
, struct net_device
*netdev
,
1569 int link_id
, u8 key_index
, bool pairwise
,
1573 lbs_deb_assoc("del_key: key_idx %d, mac_addr %pM\n",
1574 key_index
, mac_addr
);
1577 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1579 * I think can keep this a NO-OP, because:
1581 * - we clear all keys whenever we do lbs_cfg_connect() anyway
1582 * - neither "iw" nor "wpa_supplicant" won't call this during
1583 * an ongoing connection
1584 * - TODO: but I have to check if this is still true when
1585 * I set the AP to periodic re-keying
1586 * - we've not kzallec() something when we've added a key at
1587 * lbs_cfg_connect() or lbs_cfg_add_key().
1589 * This causes lbs_cfg_del_key() only called at disconnect time,
1590 * where we'd just waste time deleting a key that is not going
1591 * to be used anyway.
1593 if (key_index
< 3 && priv
->wep_key_len
[key_index
]) {
1594 priv
->wep_key_len
[key_index
] = 0;
1595 lbs_set_wep_keys(priv
);
1607 static int lbs_cfg_get_station(struct wiphy
*wiphy
, struct net_device
*dev
,
1608 const u8
*mac
, struct station_info
*sinfo
)
1610 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1615 sinfo
->filled
|= BIT_ULL(NL80211_STA_INFO_TX_BYTES
) |
1616 BIT_ULL(NL80211_STA_INFO_TX_PACKETS
) |
1617 BIT_ULL(NL80211_STA_INFO_RX_BYTES
) |
1618 BIT_ULL(NL80211_STA_INFO_RX_PACKETS
);
1619 sinfo
->tx_bytes
= priv
->dev
->stats
.tx_bytes
;
1620 sinfo
->tx_packets
= priv
->dev
->stats
.tx_packets
;
1621 sinfo
->rx_bytes
= priv
->dev
->stats
.rx_bytes
;
1622 sinfo
->rx_packets
= priv
->dev
->stats
.rx_packets
;
1624 /* Get current RSSI */
1625 ret
= lbs_get_rssi(priv
, &signal
, &noise
);
1627 sinfo
->signal
= signal
;
1628 sinfo
->filled
|= BIT_ULL(NL80211_STA_INFO_SIGNAL
);
1631 /* Convert priv->cur_rate from hw_value to NL80211 value */
1632 for (i
= 0; i
< ARRAY_SIZE(lbs_rates
); i
++) {
1633 if (priv
->cur_rate
== lbs_rates
[i
].hw_value
) {
1634 sinfo
->txrate
.legacy
= lbs_rates
[i
].bitrate
;
1635 sinfo
->filled
|= BIT_ULL(NL80211_STA_INFO_TX_BITRATE
);
1650 static int lbs_change_intf(struct wiphy
*wiphy
, struct net_device
*dev
,
1651 enum nl80211_iftype type
,
1652 struct vif_params
*params
)
1654 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1657 if (dev
== priv
->mesh_dev
)
1661 case NL80211_IFTYPE_MONITOR
:
1662 case NL80211_IFTYPE_STATION
:
1663 case NL80211_IFTYPE_ADHOC
:
1669 if (priv
->iface_running
)
1670 ret
= lbs_set_iface_type(priv
, type
);
1673 priv
->wdev
->iftype
= type
;
1685 * The firmware needs the following bits masked out of the beacon-derived
1686 * capability field when associating/joining to a BSS:
1687 * 9 (QoS), 11 (APSD), 12 (unused), 14 (unused), 15 (unused)
1689 #define CAPINFO_MASK (~(0xda00))
1692 static void lbs_join_post(struct lbs_private
*priv
,
1693 struct cfg80211_ibss_params
*params
,
1694 u8
*bssid
, u16 capability
)
1696 u8 fake_ie
[2 + IEEE80211_MAX_SSID_LEN
+ /* ssid */
1697 2 + 4 + /* basic rates */
1698 2 + 1 + /* DS parameter */
1700 2 + 8]; /* extended rates */
1702 struct cfg80211_bss
*bss
;
1705 * For cfg80211_inform_bss, we'll need a fake IE, as we can't get
1706 * the real IE from the firmware. So we fabricate a fake IE based on
1707 * what the firmware actually sends (sniffed with wireshark).
1710 *fake
++ = WLAN_EID_SSID
;
1711 *fake
++ = params
->ssid_len
;
1712 memcpy(fake
, params
->ssid
, params
->ssid_len
);
1713 fake
+= params
->ssid_len
;
1714 /* Fake supported basic rates IE */
1715 *fake
++ = WLAN_EID_SUPP_RATES
;
1721 /* Fake DS channel IE */
1722 *fake
++ = WLAN_EID_DS_PARAMS
;
1724 *fake
++ = params
->chandef
.chan
->hw_value
;
1725 /* Fake IBSS params IE */
1726 *fake
++ = WLAN_EID_IBSS_PARAMS
;
1728 *fake
++ = 0; /* ATIM=0 */
1730 /* Fake extended rates IE, TODO: don't add this for 802.11b only,
1731 * but I don't know how this could be checked */
1732 *fake
++ = WLAN_EID_EXT_SUPP_RATES
;
1742 lbs_deb_hex(LBS_DEB_CFG80211
, "IE", fake_ie
, fake
- fake_ie
);
1744 bss
= cfg80211_inform_bss(priv
->wdev
->wiphy
,
1745 params
->chandef
.chan
,
1746 CFG80211_BSS_FTYPE_UNKNOWN
,
1750 params
->beacon_interval
,
1751 fake_ie
, fake
- fake_ie
,
1753 cfg80211_put_bss(priv
->wdev
->wiphy
, bss
);
1755 cfg80211_ibss_joined(priv
->dev
, bssid
, params
->chandef
.chan
,
1758 /* TODO: consider doing this at MACREG_INT_CODE_LINK_SENSED time */
1759 priv
->connect_status
= LBS_CONNECTED
;
1760 netif_carrier_on(priv
->dev
);
1761 if (!priv
->tx_pending_len
)
1762 netif_wake_queue(priv
->dev
);
1765 static int lbs_ibss_join_existing(struct lbs_private
*priv
,
1766 struct cfg80211_ibss_params
*params
,
1767 struct cfg80211_bss
*bss
)
1769 const u8
*rates_eid
;
1770 struct cmd_ds_802_11_ad_hoc_join cmd
;
1771 u8 preamble
= RADIO_PREAMBLE_SHORT
;
1777 /* TODO: set preamble based on scan result */
1778 ret
= lbs_set_radio(priv
, preamble
, 1);
1783 * Example CMD_802_11_AD_HOC_JOIN command:
1785 * command 2c 00 CMD_802_11_AD_HOC_JOIN
1789 * bssid 02 27 27 97 2f 96
1790 * ssid 49 42 53 53 00 00 00 00
1791 * 00 00 00 00 00 00 00 00
1792 * 00 00 00 00 00 00 00 00
1793 * 00 00 00 00 00 00 00 00
1794 * type 02 CMD_BSS_TYPE_IBSS
1795 * beacon period 64 00
1797 * timestamp 00 00 00 00 00 00 00 00
1798 * localtime 00 00 00 00 00 00 00 00
1802 * reserveed 00 00 00 00
1805 * IE IBSS atim 00 00
1806 * reserved 00 00 00 00
1808 * rates 82 84 8b 96 0c 12 18 24 30 48 60 6c 00
1809 * fail timeout ff 00
1812 memset(&cmd
, 0, sizeof(cmd
));
1813 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
1815 memcpy(cmd
.bss
.bssid
, bss
->bssid
, ETH_ALEN
);
1816 memcpy(cmd
.bss
.ssid
, params
->ssid
, params
->ssid_len
);
1817 cmd
.bss
.type
= CMD_BSS_TYPE_IBSS
;
1818 cmd
.bss
.beaconperiod
= cpu_to_le16(params
->beacon_interval
);
1819 cmd
.bss
.ds
.header
.id
= WLAN_EID_DS_PARAMS
;
1820 cmd
.bss
.ds
.header
.len
= 1;
1821 cmd
.bss
.ds
.channel
= params
->chandef
.chan
->hw_value
;
1822 cmd
.bss
.ibss
.header
.id
= WLAN_EID_IBSS_PARAMS
;
1823 cmd
.bss
.ibss
.header
.len
= 2;
1824 cmd
.bss
.ibss
.atimwindow
= 0;
1825 cmd
.bss
.capability
= cpu_to_le16(bss
->capability
& CAPINFO_MASK
);
1827 /* set rates to the intersection of our rates and the rates in the
1830 rates_eid
= ieee80211_bss_get_ie(bss
, WLAN_EID_SUPP_RATES
);
1832 lbs_add_rates(cmd
.bss
.rates
);
1834 rates_max
= rates_eid
[1];
1835 if (rates_max
> MAX_RATES
) {
1836 lbs_deb_join("invalid rates");
1841 rates
= cmd
.bss
.rates
;
1842 for (hw
= 0; hw
< ARRAY_SIZE(lbs_rates
); hw
++) {
1843 u8 hw_rate
= lbs_rates
[hw
].bitrate
/ 5;
1844 for (i
= 0; i
< rates_max
; i
++) {
1845 if (hw_rate
== (rates_eid
[i
+2] & 0x7f)) {
1846 u8 rate
= rates_eid
[i
+2];
1847 if (rate
== 0x02 || rate
== 0x04 ||
1848 rate
== 0x0b || rate
== 0x16)
1857 /* Only v8 and below support setting this */
1858 if (MRVL_FW_MAJOR_REV(priv
->fwrelease
) <= 8) {
1859 cmd
.failtimeout
= cpu_to_le16(MRVDRV_ASSOCIATION_TIME_OUT
);
1860 cmd
.probedelay
= cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME
);
1862 ret
= lbs_cmd_with_response(priv
, CMD_802_11_AD_HOC_JOIN
, &cmd
);
1867 * This is a sample response to CMD_802_11_AD_HOC_JOIN:
1875 lbs_join_post(priv
, params
, bss
->bssid
, bss
->capability
);
1883 static int lbs_ibss_start_new(struct lbs_private
*priv
,
1884 struct cfg80211_ibss_params
*params
)
1886 struct cmd_ds_802_11_ad_hoc_start cmd
;
1887 struct cmd_ds_802_11_ad_hoc_result
*resp
=
1888 (struct cmd_ds_802_11_ad_hoc_result
*) &cmd
;
1889 u8 preamble
= RADIO_PREAMBLE_SHORT
;
1893 ret
= lbs_set_radio(priv
, preamble
, 1);
1898 * Example CMD_802_11_AD_HOC_START command:
1900 * command 2b 00 CMD_802_11_AD_HOC_START
1904 * ssid 54 45 53 54 00 00 00 00
1905 * 00 00 00 00 00 00 00 00
1906 * 00 00 00 00 00 00 00 00
1907 * 00 00 00 00 00 00 00 00
1909 * beacon period 64 00
1913 * IE IBSS atim 00 00
1914 * reserved 00 00 00 00
1918 * reserved 00 00 00 00
1921 * rates 82 84 8b 96 (basic rates with have bit 7 set)
1922 * 0c 12 18 24 30 48 60 6c
1925 memset(&cmd
, 0, sizeof(cmd
));
1926 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
1927 memcpy(cmd
.ssid
, params
->ssid
, params
->ssid_len
);
1928 cmd
.bsstype
= CMD_BSS_TYPE_IBSS
;
1929 cmd
.beaconperiod
= cpu_to_le16(params
->beacon_interval
);
1930 cmd
.ibss
.header
.id
= WLAN_EID_IBSS_PARAMS
;
1931 cmd
.ibss
.header
.len
= 2;
1932 cmd
.ibss
.atimwindow
= 0;
1933 cmd
.ds
.header
.id
= WLAN_EID_DS_PARAMS
;
1934 cmd
.ds
.header
.len
= 1;
1935 cmd
.ds
.channel
= params
->chandef
.chan
->hw_value
;
1936 /* Only v8 and below support setting probe delay */
1937 if (MRVL_FW_MAJOR_REV(priv
->fwrelease
) <= 8)
1938 cmd
.probedelay
= cpu_to_le16(CMD_SCAN_PROBE_DELAY_TIME
);
1939 /* TODO: mix in WLAN_CAPABILITY_PRIVACY */
1940 capability
= WLAN_CAPABILITY_IBSS
;
1941 cmd
.capability
= cpu_to_le16(capability
);
1942 lbs_add_rates(cmd
.rates
);
1945 ret
= lbs_cmd_with_response(priv
, CMD_802_11_AD_HOC_START
, &cmd
);
1950 * This is a sample response to CMD_802_11_AD_HOC_JOIN:
1957 * bssid 02 2b 7b 0f 86 0e
1959 lbs_join_post(priv
, params
, resp
->bssid
, capability
);
1966 static int lbs_join_ibss(struct wiphy
*wiphy
, struct net_device
*dev
,
1967 struct cfg80211_ibss_params
*params
)
1969 struct lbs_private
*priv
= wiphy_priv(wiphy
);
1971 struct cfg80211_bss
*bss
;
1973 if (dev
== priv
->mesh_dev
)
1976 if (!params
->chandef
.chan
) {
1981 ret
= lbs_set_channel(priv
, params
->chandef
.chan
->hw_value
);
1985 /* Search if someone is beaconing. This assumes that the
1986 * bss list is populated already */
1987 bss
= cfg80211_get_bss(wiphy
, params
->chandef
.chan
, params
->bssid
,
1988 params
->ssid
, params
->ssid_len
,
1989 IEEE80211_BSS_TYPE_IBSS
, IEEE80211_PRIVACY_ANY
);
1992 ret
= lbs_ibss_join_existing(priv
, params
, bss
);
1993 cfg80211_put_bss(wiphy
, bss
);
1995 ret
= lbs_ibss_start_new(priv
, params
);
2003 static int lbs_leave_ibss(struct wiphy
*wiphy
, struct net_device
*dev
)
2005 struct lbs_private
*priv
= wiphy_priv(wiphy
);
2006 struct cmd_ds_802_11_ad_hoc_stop cmd
;
2009 if (dev
== priv
->mesh_dev
)
2012 memset(&cmd
, 0, sizeof(cmd
));
2013 cmd
.hdr
.size
= cpu_to_le16(sizeof(cmd
));
2014 ret
= lbs_cmd_with_response(priv
, CMD_802_11_AD_HOC_STOP
, &cmd
);
2016 /* TODO: consider doing this at MACREG_INT_CODE_ADHOC_BCN_LOST time */
2017 lbs_mac_event_disconnected(priv
, true);
2024 static int lbs_set_power_mgmt(struct wiphy
*wiphy
, struct net_device
*dev
,
2025 bool enabled
, int timeout
)
2027 struct lbs_private
*priv
= wiphy_priv(wiphy
);
2029 if (!(priv
->fwcapinfo
& FW_CAPINFO_PS
)) {
2035 /* firmware does not work well with too long latency with power saving
2036 * enabled, so do not enable it if there is only polling, no
2037 * interrupts (like in some sdio hosts which can only
2038 * poll for sdio irqs)
2040 if (priv
->is_polling
) {
2047 priv
->psmode
= LBS802_11POWERMODECAM
;
2048 if (priv
->psstate
!= PS_STATE_FULL_POWER
)
2049 lbs_set_ps_mode(priv
,
2050 PS_MODE_ACTION_EXIT_PS
,
2054 if (priv
->psmode
!= LBS802_11POWERMODECAM
)
2056 priv
->psmode
= LBS802_11POWERMODEMAX_PSP
;
2057 if (priv
->connect_status
== LBS_CONNECTED
)
2058 lbs_set_ps_mode(priv
, PS_MODE_ACTION_ENTER_PS
, true);
2066 static const struct cfg80211_ops lbs_cfg80211_ops
= {
2067 .set_monitor_channel
= lbs_cfg_set_monitor_channel
,
2068 .libertas_set_mesh_channel
= lbs_cfg_set_mesh_channel
,
2069 .scan
= lbs_cfg_scan
,
2070 .connect
= lbs_cfg_connect
,
2071 .disconnect
= lbs_cfg_disconnect
,
2072 .add_key
= lbs_cfg_add_key
,
2073 .del_key
= lbs_cfg_del_key
,
2074 .set_default_key
= lbs_cfg_set_default_key
,
2075 .get_station
= lbs_cfg_get_station
,
2076 .change_virtual_intf
= lbs_change_intf
,
2077 .join_ibss
= lbs_join_ibss
,
2078 .leave_ibss
= lbs_leave_ibss
,
2079 .set_power_mgmt
= lbs_set_power_mgmt
,
2084 * At this time lbs_private *priv doesn't even exist, so we just allocate
2085 * memory and don't initialize the wiphy further. This is postponed until we
2086 * can talk to the firmware and happens at registration time in
2087 * lbs_cfg_wiphy_register().
2089 struct wireless_dev
*lbs_cfg_alloc(struct device
*dev
)
2092 struct wireless_dev
*wdev
;
2094 wdev
= kzalloc(sizeof(struct wireless_dev
), GFP_KERNEL
);
2096 return ERR_PTR(-ENOMEM
);
2098 wdev
->wiphy
= wiphy_new(&lbs_cfg80211_ops
, sizeof(struct lbs_private
));
2100 dev_err(dev
, "cannot allocate wiphy\n");
2109 return ERR_PTR(ret
);
2113 static void lbs_cfg_set_regulatory_hint(struct lbs_private
*priv
)
2115 struct region_code_mapping
{
2120 /* Section 5.17.2 */
2121 static const struct region_code_mapping regmap
[] = {
2122 {"US ", 0x10}, /* US FCC */
2123 {"CA ", 0x20}, /* Canada */
2124 {"EU ", 0x30}, /* ETSI */
2125 {"ES ", 0x31}, /* Spain */
2126 {"FR ", 0x32}, /* France */
2127 {"JP ", 0x40}, /* Japan */
2131 for (i
= 0; i
< ARRAY_SIZE(regmap
); i
++)
2132 if (regmap
[i
].code
== priv
->regioncode
) {
2133 regulatory_hint(priv
->wdev
->wiphy
, regmap
[i
].cn
);
2138 static void lbs_reg_notifier(struct wiphy
*wiphy
,
2139 struct regulatory_request
*request
)
2141 struct lbs_private
*priv
= wiphy_priv(wiphy
);
2143 memcpy(priv
->country_code
, request
->alpha2
, sizeof(request
->alpha2
));
2144 if (lbs_iface_active(priv
))
2145 lbs_set_11d_domain_info(priv
);
2149 * This function get's called after lbs_setup_firmware() determined the
2150 * firmware capabities. So we can setup the wiphy according to our
2151 * hardware/firmware.
2153 int lbs_cfg_register(struct lbs_private
*priv
)
2155 struct wireless_dev
*wdev
= priv
->wdev
;
2158 wdev
->wiphy
->max_scan_ssids
= 1;
2159 wdev
->wiphy
->max_scan_ie_len
= 256;
2160 wdev
->wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_MBM
;
2162 wdev
->wiphy
->interface_modes
=
2163 BIT(NL80211_IFTYPE_STATION
) |
2164 BIT(NL80211_IFTYPE_ADHOC
);
2165 if (lbs_rtap_supported(priv
))
2166 wdev
->wiphy
->interface_modes
|= BIT(NL80211_IFTYPE_MONITOR
);
2167 if (lbs_mesh_activated(priv
))
2168 wdev
->wiphy
->interface_modes
|= BIT(NL80211_IFTYPE_MESH_POINT
);
2170 wdev
->wiphy
->bands
[NL80211_BAND_2GHZ
] = &lbs_band_2ghz
;
2173 * We could check priv->fwcapinfo && FW_CAPINFO_WPA, but I have
2174 * never seen a firmware without WPA
2176 wdev
->wiphy
->cipher_suites
= cipher_suites
;
2177 wdev
->wiphy
->n_cipher_suites
= ARRAY_SIZE(cipher_suites
);
2178 wdev
->wiphy
->reg_notifier
= lbs_reg_notifier
;
2180 ret
= wiphy_register(wdev
->wiphy
);
2182 pr_err("cannot register wiphy device\n");
2184 priv
->wiphy_registered
= true;
2186 ret
= register_netdev(priv
->dev
);
2188 pr_err("cannot register network device\n");
2190 INIT_DELAYED_WORK(&priv
->scan_work
, lbs_scan_worker
);
2192 lbs_cfg_set_regulatory_hint(priv
);
2197 void lbs_scan_deinit(struct lbs_private
*priv
)
2199 cancel_delayed_work_sync(&priv
->scan_work
);
2203 void lbs_cfg_free(struct lbs_private
*priv
)
2205 struct wireless_dev
*wdev
= priv
->wdev
;
2210 if (priv
->wiphy_registered
)
2211 wiphy_unregister(wdev
->wiphy
);
2214 wiphy_free(wdev
->wiphy
);