2 * Copyright (c) 2012 Qualcomm Atheros, Inc.
4 * Permission to use, copy, modify, and/or distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20 #define CHAN60G(_channel, _flags) { \
21 .band = IEEE80211_BAND_60GHZ, \
22 .center_freq = 56160 + (2160 * (_channel)), \
23 .hw_value = (_channel), \
25 .max_antenna_gain = 0, \
29 static struct ieee80211_channel wil_60ghz_channels
[] = {
33 /* channel 4 not supported yet */
36 static struct ieee80211_supported_band wil_band_60ghz
= {
37 .channels
= wil_60ghz_channels
,
38 .n_channels
= ARRAY_SIZE(wil_60ghz_channels
),
42 .ampdu_factor
= IEEE80211_HT_MAX_AMPDU_64K
, /* TODO */
43 .ampdu_density
= IEEE80211_HT_MPDU_DENSITY_8
, /* TODO */
45 /* MCS 1..12 - SC PHY */
46 .rx_mask
= {0xfe, 0x1f}, /* 1..12 */
47 .tx_params
= IEEE80211_HT_MCS_TX_DEFINED
, /* TODO */
52 static const struct ieee80211_txrx_stypes
53 wil_mgmt_stypes
[NUM_NL80211_IFTYPES
] = {
54 [NL80211_IFTYPE_STATION
] = {
55 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
56 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
57 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
58 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
60 [NL80211_IFTYPE_AP
] = {
61 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
62 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
63 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
64 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
66 [NL80211_IFTYPE_P2P_CLIENT
] = {
67 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
68 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
69 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
70 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
72 [NL80211_IFTYPE_P2P_GO
] = {
73 .tx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
74 BIT(IEEE80211_STYPE_PROBE_RESP
>> 4),
75 .rx
= BIT(IEEE80211_STYPE_ACTION
>> 4) |
76 BIT(IEEE80211_STYPE_PROBE_REQ
>> 4)
80 static const u32 wil_cipher_suites
[] = {
81 WLAN_CIPHER_SUITE_GCMP
,
84 int wil_iftype_nl2wmi(enum nl80211_iftype type
)
87 enum nl80211_iftype nl
;
88 enum wmi_network_type wmi
;
90 {NL80211_IFTYPE_ADHOC
, WMI_NETTYPE_ADHOC
},
91 {NL80211_IFTYPE_STATION
, WMI_NETTYPE_INFRA
},
92 {NL80211_IFTYPE_AP
, WMI_NETTYPE_AP
},
93 {NL80211_IFTYPE_P2P_CLIENT
, WMI_NETTYPE_P2P
},
94 {NL80211_IFTYPE_P2P_GO
, WMI_NETTYPE_P2P
},
95 {NL80211_IFTYPE_MONITOR
, WMI_NETTYPE_ADHOC
}, /* FIXME */
99 for (i
= 0; i
< ARRAY_SIZE(__nl2wmi
); i
++) {
100 if (__nl2wmi
[i
].nl
== type
)
101 return __nl2wmi
[i
].wmi
;
107 static int wil_cfg80211_get_station(struct wiphy
*wiphy
,
108 struct net_device
*ndev
,
109 u8
*mac
, struct station_info
*sinfo
)
111 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
113 struct wmi_notify_req_cmd cmd
= {
118 if (memcmp(mac
, wil
->dst_addr
[0], ETH_ALEN
))
121 /* WMI_NOTIFY_REQ_DONE_EVENTID handler fills wil->stats.bf_mcs */
122 rc
= wmi_call(wil
, WMI_NOTIFY_REQ_CMDID
, &cmd
, sizeof(cmd
),
123 WMI_NOTIFY_REQ_DONE_EVENTID
, NULL
, 0, 20);
127 sinfo
->generation
= wil
->sinfo_gen
;
129 sinfo
->filled
|= STATION_INFO_TX_BITRATE
;
130 sinfo
->txrate
.flags
= RATE_INFO_FLAGS_MCS
| RATE_INFO_FLAGS_60G
;
131 sinfo
->txrate
.mcs
= wil
->stats
.bf_mcs
;
132 sinfo
->filled
|= STATION_INFO_RX_BITRATE
;
133 sinfo
->rxrate
.flags
= RATE_INFO_FLAGS_MCS
| RATE_INFO_FLAGS_60G
;
134 sinfo
->rxrate
.mcs
= wil
->stats
.last_mcs_rx
;
136 if (test_bit(wil_status_fwconnected
, &wil
->status
)) {
137 sinfo
->filled
|= STATION_INFO_SIGNAL
;
138 sinfo
->signal
= 12; /* TODO: provide real value */
144 static int wil_cfg80211_change_iface(struct wiphy
*wiphy
,
145 struct net_device
*ndev
,
146 enum nl80211_iftype type
, u32
*flags
,
147 struct vif_params
*params
)
149 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
150 struct wireless_dev
*wdev
= wil
->wdev
;
153 case NL80211_IFTYPE_STATION
:
154 case NL80211_IFTYPE_AP
:
155 case NL80211_IFTYPE_P2P_CLIENT
:
156 case NL80211_IFTYPE_P2P_GO
:
158 case NL80211_IFTYPE_MONITOR
:
160 wil
->monitor_flags
= *flags
;
162 wil
->monitor_flags
= 0;
174 static int wil_cfg80211_scan(struct wiphy
*wiphy
,
175 struct cfg80211_scan_request
*request
)
177 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
178 struct wireless_dev
*wdev
= wil
->wdev
;
180 struct wmi_start_scan_cmd cmd
;
185 if (wil
->scan_request
) {
186 wil_err(wil
, "Already scanning\n");
190 /* check we are client side */
191 switch (wdev
->iftype
) {
192 case NL80211_IFTYPE_STATION
:
193 case NL80211_IFTYPE_P2P_CLIENT
:
199 /* FW don't support scan after connection attempt */
200 if (test_bit(wil_status_dontscan
, &wil
->status
)) {
201 wil_err(wil
, "Scan after connect attempt not supported\n");
205 wil
->scan_request
= request
;
207 memset(&cmd
, 0, sizeof(cmd
));
208 cmd
.cmd
.num_channels
= 0;
209 n
= min(request
->n_channels
, 4U);
210 for (i
= 0; i
< n
; i
++) {
211 int ch
= request
->channels
[i
]->hw_value
;
214 "Scan requested for unknown frequency %dMhz\n",
215 request
->channels
[i
]->center_freq
);
218 /* 0-based channel indexes */
219 cmd
.cmd
.channel_list
[cmd
.cmd
.num_channels
++].channel
= ch
- 1;
220 wil_dbg_misc(wil
, "Scan for ch %d : %d MHz\n", ch
,
221 request
->channels
[i
]->center_freq
);
224 return wmi_send(wil
, WMI_START_SCAN_CMDID
, &cmd
, sizeof(cmd
.cmd
) +
225 cmd
.cmd
.num_channels
* sizeof(cmd
.cmd
.channel_list
[0]));
228 static int wil_cfg80211_connect(struct wiphy
*wiphy
,
229 struct net_device
*ndev
,
230 struct cfg80211_connect_params
*sme
)
232 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
233 struct cfg80211_bss
*bss
;
234 struct wmi_connect_cmd conn
;
240 bss
= cfg80211_get_bss(wiphy
, sme
->channel
, sme
->bssid
,
241 sme
->ssid
, sme
->ssid_len
,
242 WLAN_CAPABILITY_ESS
, WLAN_CAPABILITY_ESS
);
244 wil_err(wil
, "Unable to find BSS\n");
248 ssid_eid
= ieee80211_bss_get_ie(bss
, WLAN_EID_SSID
);
250 wil_err(wil
, "No SSID\n");
256 cfg80211_find_ie(WLAN_EID_RSN
, sme
->ie
, sme
->ie_len
) :
259 if (sme
->ie_len
> WMI_MAX_IE_LEN
) {
261 wil_err(wil
, "IE too large (%td bytes)\n",
266 * For secure assoc, send:
267 * (1) WMI_DELETE_CIPHER_KEY_CMD
268 * (2) WMI_SET_APPIE_CMD
270 rc
= wmi_del_cipher_key(wil
, 0, bss
->bssid
);
272 wil_err(wil
, "WMI_DELETE_CIPHER_KEY_CMD failed\n");
275 /* WMI_SET_APPIE_CMD */
276 rc
= wmi_set_ie(wil
, WMI_FRAME_ASSOC_REQ
, sme
->ie_len
, sme
->ie
);
278 wil_err(wil
, "WMI_SET_APPIE_CMD failed\n");
283 /* WMI_CONNECT_CMD */
284 memset(&conn
, 0, sizeof(conn
));
285 switch (bss
->capability
& WLAN_CAPABILITY_DMG_TYPE_MASK
) {
286 case WLAN_CAPABILITY_DMG_TYPE_AP
:
287 conn
.network_type
= WMI_NETTYPE_INFRA
;
289 case WLAN_CAPABILITY_DMG_TYPE_PBSS
:
290 conn
.network_type
= WMI_NETTYPE_P2P
;
293 wil_err(wil
, "Unsupported BSS type, capability= 0x%04x\n",
298 conn
.dot11_auth_mode
= WMI_AUTH11_SHARED
;
299 conn
.auth_mode
= WMI_AUTH_WPA2_PSK
;
300 conn
.pairwise_crypto_type
= WMI_CRYPT_AES_GCMP
;
301 conn
.pairwise_crypto_len
= 16;
303 conn
.dot11_auth_mode
= WMI_AUTH11_OPEN
;
304 conn
.auth_mode
= WMI_AUTH_NONE
;
307 conn
.ssid_len
= min_t(u8
, ssid_eid
[1], 32);
308 memcpy(conn
.ssid
, ssid_eid
+2, conn
.ssid_len
);
310 ch
= bss
->channel
->hw_value
;
312 wil_err(wil
, "BSS at unknown frequency %dMhz\n",
313 bss
->channel
->center_freq
);
317 conn
.channel
= ch
- 1;
319 memcpy(conn
.bssid
, bss
->bssid
, 6);
320 memcpy(conn
.dst_mac
, bss
->bssid
, 6);
322 * FW don't support scan after connection attempt
324 set_bit(wil_status_dontscan
, &wil
->status
);
325 set_bit(wil_status_fwconnecting
, &wil
->status
);
327 rc
= wmi_send(wil
, WMI_CONNECT_CMDID
, &conn
, sizeof(conn
));
329 /* Connect can take lots of time */
330 mod_timer(&wil
->connect_timer
,
331 jiffies
+ msecs_to_jiffies(2000));
333 clear_bit(wil_status_dontscan
, &wil
->status
);
334 clear_bit(wil_status_fwconnecting
, &wil
->status
);
338 cfg80211_put_bss(wiphy
, bss
);
343 static int wil_cfg80211_disconnect(struct wiphy
*wiphy
,
344 struct net_device
*ndev
,
348 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
350 rc
= wmi_send(wil
, WMI_DISCONNECT_CMDID
, NULL
, 0);
355 static int wil_cfg80211_set_channel(struct wiphy
*wiphy
,
356 struct cfg80211_chan_def
*chandef
)
358 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
359 struct wireless_dev
*wdev
= wil
->wdev
;
361 wdev
->preset_chandef
= *chandef
;
366 static int wil_cfg80211_add_key(struct wiphy
*wiphy
,
367 struct net_device
*ndev
,
368 u8 key_index
, bool pairwise
,
370 struct key_params
*params
)
372 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
374 /* group key is not used */
378 return wmi_add_cipher_key(wil
, key_index
, mac_addr
,
379 params
->key_len
, params
->key
);
382 static int wil_cfg80211_del_key(struct wiphy
*wiphy
,
383 struct net_device
*ndev
,
384 u8 key_index
, bool pairwise
,
387 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
389 /* group key is not used */
393 return wmi_del_cipher_key(wil
, key_index
, mac_addr
);
396 /* Need to be present or wiphy_new() will WARN */
397 static int wil_cfg80211_set_default_key(struct wiphy
*wiphy
,
398 struct net_device
*ndev
,
399 u8 key_index
, bool unicast
,
405 static int wil_fix_bcon(struct wil6210_priv
*wil
,
406 struct cfg80211_beacon_data
*bcon
)
408 struct ieee80211_mgmt
*f
= (struct ieee80211_mgmt
*)bcon
->probe_resp
;
409 size_t hlen
= offsetof(struct ieee80211_mgmt
, u
.probe_resp
.variable
);
412 if (bcon
->probe_resp_len
<= hlen
)
415 if (!bcon
->proberesp_ies
) {
416 bcon
->proberesp_ies
= f
->u
.probe_resp
.variable
;
417 bcon
->proberesp_ies_len
= bcon
->probe_resp_len
- hlen
;
420 if (!bcon
->assocresp_ies
) {
421 bcon
->assocresp_ies
= f
->u
.probe_resp
.variable
;
422 bcon
->assocresp_ies_len
= bcon
->probe_resp_len
- hlen
;
429 static int wil_cfg80211_start_ap(struct wiphy
*wiphy
,
430 struct net_device
*ndev
,
431 struct cfg80211_ap_settings
*info
)
434 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
435 struct wireless_dev
*wdev
= ndev
->ieee80211_ptr
;
436 struct ieee80211_channel
*channel
= info
->chandef
.chan
;
437 struct cfg80211_beacon_data
*bcon
= &info
->beacon
;
438 u8 wmi_nettype
= wil_iftype_nl2wmi(wdev
->iftype
);
441 wil_err(wil
, "AP: No channel???\n");
445 wil_dbg_misc(wil
, "AP on Channel %d %d MHz, %s\n", channel
->hw_value
,
446 channel
->center_freq
, info
->privacy
? "secure" : "open");
447 print_hex_dump_bytes("SSID ", DUMP_PREFIX_OFFSET
,
448 info
->ssid
, info
->ssid_len
);
450 if (wil_fix_bcon(wil
, bcon
))
451 wil_dbg_misc(wil
, "Fixed bcon\n");
458 rc
= wil_rx_init(wil
);
462 rc
= wmi_set_ssid(wil
, info
->ssid_len
, info
->ssid
);
466 /* MAC address - pre-requisite for other commands */
467 wmi_set_mac_address(wil
, ndev
->dev_addr
);
470 /* bcon 'head IE's are not relevant for 60g band */
472 * FW do not form regular beacon, so bcon IE's are not set
473 * For the DMG bcon, when it will be supported, bcon IE's will
474 * be reused; add something like:
475 * wmi_set_ie(wil, WMI_FRAME_BEACON, bcon->beacon_ies_len,
478 wmi_set_ie(wil
, WMI_FRAME_PROBE_RESP
, bcon
->proberesp_ies_len
,
479 bcon
->proberesp_ies
);
480 wmi_set_ie(wil
, WMI_FRAME_ASSOC_RESP
, bcon
->assocresp_ies_len
,
481 bcon
->assocresp_ies
);
483 wil
->secure_pcp
= info
->privacy
;
485 rc
= wmi_pcp_start(wil
, info
->beacon_interval
, wmi_nettype
,
491 netif_carrier_on(ndev
);
496 static int wil_cfg80211_stop_ap(struct wiphy
*wiphy
,
497 struct net_device
*ndev
)
500 struct wil6210_priv
*wil
= wiphy_to_wil(wiphy
);
502 rc
= wmi_pcp_stop(wil
);
507 static struct cfg80211_ops wil_cfg80211_ops
= {
508 .scan
= wil_cfg80211_scan
,
509 .connect
= wil_cfg80211_connect
,
510 .disconnect
= wil_cfg80211_disconnect
,
511 .change_virtual_intf
= wil_cfg80211_change_iface
,
512 .get_station
= wil_cfg80211_get_station
,
513 .set_monitor_channel
= wil_cfg80211_set_channel
,
514 .add_key
= wil_cfg80211_add_key
,
515 .del_key
= wil_cfg80211_del_key
,
516 .set_default_key
= wil_cfg80211_set_default_key
,
518 .start_ap
= wil_cfg80211_start_ap
,
519 .stop_ap
= wil_cfg80211_stop_ap
,
522 static void wil_wiphy_init(struct wiphy
*wiphy
)
524 /* TODO: set real value */
525 wiphy
->max_scan_ssids
= 10;
526 wiphy
->max_num_pmkids
= 0 /* TODO: */;
527 wiphy
->interface_modes
= BIT(NL80211_IFTYPE_STATION
) |
528 BIT(NL80211_IFTYPE_AP
) |
529 BIT(NL80211_IFTYPE_MONITOR
);
530 /* TODO: enable P2P when integrated with supplicant:
531 * BIT(NL80211_IFTYPE_P2P_CLIENT) | BIT(NL80211_IFTYPE_P2P_GO)
533 wiphy
->flags
|= WIPHY_FLAG_HAVE_AP_SME
|
534 WIPHY_FLAG_AP_PROBE_RESP_OFFLOAD
;
535 dev_warn(wiphy_dev(wiphy
), "%s : flags = 0x%08x\n",
536 __func__
, wiphy
->flags
);
537 wiphy
->probe_resp_offload
=
538 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS
|
539 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_WPS2
|
540 NL80211_PROBE_RESP_OFFLOAD_SUPPORT_P2P
;
542 wiphy
->bands
[IEEE80211_BAND_60GHZ
] = &wil_band_60ghz
;
544 /* TODO: figure this out */
545 wiphy
->signal_type
= CFG80211_SIGNAL_TYPE_MBM
;
547 wiphy
->cipher_suites
= wil_cipher_suites
;
548 wiphy
->n_cipher_suites
= ARRAY_SIZE(wil_cipher_suites
);
549 wiphy
->mgmt_stypes
= wil_mgmt_stypes
;
552 struct wireless_dev
*wil_cfg80211_init(struct device
*dev
)
555 struct wireless_dev
*wdev
;
557 wdev
= kzalloc(sizeof(struct wireless_dev
), GFP_KERNEL
);
559 return ERR_PTR(-ENOMEM
);
561 wdev
->wiphy
= wiphy_new(&wil_cfg80211_ops
,
562 sizeof(struct wil6210_priv
));
568 set_wiphy_dev(wdev
->wiphy
, dev
);
569 wil_wiphy_init(wdev
->wiphy
);
571 rc
= wiphy_register(wdev
->wiphy
);
578 wiphy_free(wdev
->wiphy
);
585 void wil_wdev_free(struct wil6210_priv
*wil
)
587 struct wireless_dev
*wdev
= wil_to_wdev(wil
);
592 wiphy_unregister(wdev
->wiphy
);
593 wiphy_free(wdev
->wiphy
);