]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/wireless/mac80211_hwsim.c
nl80211: Add TX queue parameter configuration
[mirror_ubuntu-bionic-kernel.git] / drivers / net / wireless / mac80211_hwsim.c
CommitLineData
acc1e7a3
JM
1/*
2 * mac80211_hwsim - software simulator of 802.11 radio(s) for mac80211
3 * Copyright (c) 2008, Jouni Malinen <j@w1.fi>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
8 */
9
10/*
11 * TODO:
12 * - IBSS mode simulation (Beacon transmission with competition for "air time")
13 * - IEEE 802.11a and 802.11n modes
14 * - RX filtering based on filter configuration (data->rx_filter)
15 */
16
0e057d73
JB
17#include <linux/list.h>
18#include <linux/spinlock.h>
acc1e7a3
JM
19#include <net/mac80211.h>
20#include <net/ieee80211_radiotap.h>
21#include <linux/if_arp.h>
22#include <linux/rtnetlink.h>
23#include <linux/etherdevice.h>
24
25MODULE_AUTHOR("Jouni Malinen");
26MODULE_DESCRIPTION("Software simulator of 802.11 radio(s) for mac80211");
27MODULE_LICENSE("GPL");
28
29static int radios = 2;
30module_param(radios, int, 0444);
31MODULE_PARM_DESC(radios, "Number of simulated radios");
32
8aa21e6f
JB
33struct hwsim_vif_priv {
34 u32 magic;
35};
36
37#define HWSIM_VIF_MAGIC 0x69537748
38
39static inline void hwsim_check_magic(struct ieee80211_vif *vif)
40{
41 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
42 WARN_ON(vp->magic != HWSIM_VIF_MAGIC);
43}
44
45static inline void hwsim_set_magic(struct ieee80211_vif *vif)
46{
47 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
48 vp->magic = HWSIM_VIF_MAGIC;
49}
50
51static inline void hwsim_clear_magic(struct ieee80211_vif *vif)
52{
53 struct hwsim_vif_priv *vp = (void *)vif->drv_priv;
54 vp->magic = 0;
55}
acc1e7a3 56
81c06523
JB
57struct hwsim_sta_priv {
58 u32 magic;
59};
60
61#define HWSIM_STA_MAGIC 0x6d537748
62
63static inline void hwsim_check_sta_magic(struct ieee80211_sta *sta)
64{
65 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
5d6924ea 66 WARN_ON(sp->magic != HWSIM_STA_MAGIC);
81c06523
JB
67}
68
69static inline void hwsim_set_sta_magic(struct ieee80211_sta *sta)
70{
71 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
5d6924ea 72 sp->magic = HWSIM_STA_MAGIC;
81c06523
JB
73}
74
75static inline void hwsim_clear_sta_magic(struct ieee80211_sta *sta)
76{
77 struct hwsim_sta_priv *sp = (void *)sta->drv_priv;
78 sp->magic = 0;
79}
80
acc1e7a3
JM
81static struct class *hwsim_class;
82
acc1e7a3
JM
83static struct net_device *hwsim_mon; /* global monitor netdev */
84
85
86static const struct ieee80211_channel hwsim_channels[] = {
87 { .center_freq = 2412 },
88 { .center_freq = 2417 },
89 { .center_freq = 2422 },
90 { .center_freq = 2427 },
91 { .center_freq = 2432 },
92 { .center_freq = 2437 },
93 { .center_freq = 2442 },
94 { .center_freq = 2447 },
95 { .center_freq = 2452 },
96 { .center_freq = 2457 },
97 { .center_freq = 2462 },
98 { .center_freq = 2467 },
99 { .center_freq = 2472 },
100 { .center_freq = 2484 },
101};
102
103static const struct ieee80211_rate hwsim_rates[] = {
104 { .bitrate = 10 },
105 { .bitrate = 20, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
106 { .bitrate = 55, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
107 { .bitrate = 110, .flags = IEEE80211_RATE_SHORT_PREAMBLE },
108 { .bitrate = 60 },
109 { .bitrate = 90 },
110 { .bitrate = 120 },
111 { .bitrate = 180 },
112 { .bitrate = 240 },
113 { .bitrate = 360 },
114 { .bitrate = 480 },
115 { .bitrate = 540 }
116};
117
0e057d73
JB
118static spinlock_t hwsim_radio_lock;
119static struct list_head hwsim_radios;
120
acc1e7a3 121struct mac80211_hwsim_data {
0e057d73
JB
122 struct list_head list;
123 struct ieee80211_hw *hw;
acc1e7a3
JM
124 struct device *dev;
125 struct ieee80211_supported_band band;
126 struct ieee80211_channel channels[ARRAY_SIZE(hwsim_channels)];
127 struct ieee80211_rate rates[ARRAY_SIZE(hwsim_rates)];
128
129 struct ieee80211_channel *channel;
130 int radio_enabled;
131 unsigned long beacon_int; /* in jiffies unit */
132 unsigned int rx_filter;
133 int started;
134 struct timer_list beacon_timer;
135};
136
137
138struct hwsim_radiotap_hdr {
139 struct ieee80211_radiotap_header hdr;
140 u8 rt_flags;
141 u8 rt_rate;
142 __le16 rt_channel;
143 __le16 rt_chbitmask;
144} __attribute__ ((packed));
145
146
147static int hwsim_mon_xmit(struct sk_buff *skb, struct net_device *dev)
148{
149 /* TODO: allow packet injection */
150 dev_kfree_skb(skb);
151 return 0;
152}
153
154
155static void mac80211_hwsim_monitor_rx(struct ieee80211_hw *hw,
156 struct sk_buff *tx_skb)
157{
158 struct mac80211_hwsim_data *data = hw->priv;
159 struct sk_buff *skb;
160 struct hwsim_radiotap_hdr *hdr;
161 u16 flags;
162 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(tx_skb);
163 struct ieee80211_rate *txrate = ieee80211_get_tx_rate(hw, info);
164
165 if (!netif_running(hwsim_mon))
166 return;
167
168 skb = skb_copy_expand(tx_skb, sizeof(*hdr), 0, GFP_ATOMIC);
169 if (skb == NULL)
170 return;
171
172 hdr = (struct hwsim_radiotap_hdr *) skb_push(skb, sizeof(*hdr));
173 hdr->hdr.it_version = PKTHDR_RADIOTAP_VERSION;
174 hdr->hdr.it_pad = 0;
175 hdr->hdr.it_len = cpu_to_le16(sizeof(*hdr));
f248f105
JM
176 hdr->hdr.it_present = cpu_to_le32((1 << IEEE80211_RADIOTAP_FLAGS) |
177 (1 << IEEE80211_RADIOTAP_RATE) |
178 (1 << IEEE80211_RADIOTAP_CHANNEL));
acc1e7a3
JM
179 hdr->rt_flags = 0;
180 hdr->rt_rate = txrate->bitrate / 5;
df70b4ac 181 hdr->rt_channel = cpu_to_le16(data->channel->center_freq);
acc1e7a3
JM
182 flags = IEEE80211_CHAN_2GHZ;
183 if (txrate->flags & IEEE80211_RATE_ERP_G)
184 flags |= IEEE80211_CHAN_OFDM;
185 else
186 flags |= IEEE80211_CHAN_CCK;
187 hdr->rt_chbitmask = cpu_to_le16(flags);
188
189 skb->dev = hwsim_mon;
190 skb_set_mac_header(skb, 0);
191 skb->ip_summed = CHECKSUM_UNNECESSARY;
192 skb->pkt_type = PACKET_OTHERHOST;
f248f105 193 skb->protocol = htons(ETH_P_802_2);
acc1e7a3
JM
194 memset(skb->cb, 0, sizeof(skb->cb));
195 netif_rx(skb);
196}
197
198
0e057d73
JB
199static bool mac80211_hwsim_tx_frame(struct ieee80211_hw *hw,
200 struct sk_buff *skb)
acc1e7a3 201{
0e057d73
JB
202 struct mac80211_hwsim_data *data = hw->priv, *data2;
203 bool ack = false;
e36cfdc9 204 struct ieee80211_hdr *hdr = (struct ieee80211_hdr *) skb->data;
acc1e7a3 205 struct ieee80211_tx_info *info = IEEE80211_SKB_CB(skb);
e36cfdc9 206 struct ieee80211_rx_status rx_status;
acc1e7a3
JM
207
208 memset(&rx_status, 0, sizeof(rx_status));
209 /* TODO: set mactime */
210 rx_status.freq = data->channel->center_freq;
211 rx_status.band = data->channel->band;
e6a9854b 212 rx_status.rate_idx = info->control.rates[0].idx;
acc1e7a3
JM
213 /* TODO: simulate signal strength (and optional packet drop) */
214
215 /* Copy skb to all enabled radios that are on the current frequency */
0e057d73
JB
216 spin_lock(&hwsim_radio_lock);
217 list_for_each_entry(data2, &hwsim_radios, list) {
acc1e7a3
JM
218 struct sk_buff *nskb;
219
0e057d73 220 if (data == data2)
acc1e7a3 221 continue;
0e057d73 222
acc1e7a3
JM
223 if (!data2->started || !data2->radio_enabled ||
224 data->channel->center_freq != data2->channel->center_freq)
225 continue;
226
227 nskb = skb_copy(skb, GFP_ATOMIC);
228 if (nskb == NULL)
229 continue;
230
0e057d73 231 if (memcmp(hdr->addr1, data2->hw->wiphy->perm_addr,
acc1e7a3 232 ETH_ALEN) == 0)
0e057d73
JB
233 ack = true;
234 ieee80211_rx_irqsafe(data2->hw, nskb, &rx_status);
acc1e7a3 235 }
0e057d73 236 spin_unlock(&hwsim_radio_lock);
acc1e7a3 237
e36cfdc9
JM
238 return ack;
239}
240
241
242static int mac80211_hwsim_tx(struct ieee80211_hw *hw, struct sk_buff *skb)
243{
244 struct mac80211_hwsim_data *data = hw->priv;
0e057d73 245 bool ack;
e36cfdc9
JM
246 struct ieee80211_tx_info *txi;
247
248 mac80211_hwsim_monitor_rx(hw, skb);
249
250 if (skb->len < 10) {
251 /* Should not happen; just a sanity check for addr1 use */
252 dev_kfree_skb(skb);
253 return NETDEV_TX_OK;
254 }
255
256 if (!data->radio_enabled) {
257 printk(KERN_DEBUG "%s: dropped TX frame since radio "
258 "disabled\n", wiphy_name(hw->wiphy));
259 dev_kfree_skb(skb);
260 return NETDEV_TX_OK;
261 }
262
263 ack = mac80211_hwsim_tx_frame(hw, skb);
264
acc1e7a3 265 txi = IEEE80211_SKB_CB(skb);
8aa21e6f 266
25d834e1
JB
267 if (txi->control.vif)
268 hwsim_check_magic(txi->control.vif);
81c06523
JB
269 if (txi->control.sta)
270 hwsim_check_sta_magic(txi->control.sta);
8aa21e6f 271
e6a9854b
JB
272 ieee80211_tx_info_clear_status(txi);
273 if (!(txi->flags & IEEE80211_TX_CTL_NO_ACK) && ack)
274 txi->flags |= IEEE80211_TX_STAT_ACK;
acc1e7a3
JM
275 ieee80211_tx_status_irqsafe(hw, skb);
276 return NETDEV_TX_OK;
277}
278
279
280static int mac80211_hwsim_start(struct ieee80211_hw *hw)
281{
282 struct mac80211_hwsim_data *data = hw->priv;
283 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
284 data->started = 1;
285 return 0;
286}
287
288
289static void mac80211_hwsim_stop(struct ieee80211_hw *hw)
290{
291 struct mac80211_hwsim_data *data = hw->priv;
292 data->started = 0;
293 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
294}
295
296
297static int mac80211_hwsim_add_interface(struct ieee80211_hw *hw,
298 struct ieee80211_if_init_conf *conf)
299{
e174961c 300 printk(KERN_DEBUG "%s:%s (type=%d mac_addr=%pM)\n",
acc1e7a3 301 wiphy_name(hw->wiphy), __func__, conf->type,
e174961c 302 conf->mac_addr);
8aa21e6f 303 hwsim_set_magic(conf->vif);
acc1e7a3
JM
304 return 0;
305}
306
307
308static void mac80211_hwsim_remove_interface(
309 struct ieee80211_hw *hw, struct ieee80211_if_init_conf *conf)
310{
e174961c 311 printk(KERN_DEBUG "%s:%s (type=%d mac_addr=%pM)\n",
acc1e7a3 312 wiphy_name(hw->wiphy), __func__, conf->type,
e174961c 313 conf->mac_addr);
8aa21e6f
JB
314 hwsim_check_magic(conf->vif);
315 hwsim_clear_magic(conf->vif);
acc1e7a3
JM
316}
317
318
319static void mac80211_hwsim_beacon_tx(void *arg, u8 *mac,
320 struct ieee80211_vif *vif)
321{
322 struct ieee80211_hw *hw = arg;
acc1e7a3 323 struct sk_buff *skb;
acc1e7a3
JM
324 struct ieee80211_tx_info *info;
325
8aa21e6f
JB
326 hwsim_check_magic(vif);
327
05c914fe 328 if (vif->type != NL80211_IFTYPE_AP)
acc1e7a3
JM
329 return;
330
331 skb = ieee80211_beacon_get(hw, vif);
332 if (skb == NULL)
333 return;
334 info = IEEE80211_SKB_CB(skb);
335
336 mac80211_hwsim_monitor_rx(hw, skb);
e36cfdc9 337 mac80211_hwsim_tx_frame(hw, skb);
acc1e7a3
JM
338 dev_kfree_skb(skb);
339}
340
341
342static void mac80211_hwsim_beacon(unsigned long arg)
343{
344 struct ieee80211_hw *hw = (struct ieee80211_hw *) arg;
345 struct mac80211_hwsim_data *data = hw->priv;
346
347 if (!data->started || !data->radio_enabled)
348 return;
349
f248f105
JM
350 ieee80211_iterate_active_interfaces_atomic(
351 hw, mac80211_hwsim_beacon_tx, hw);
acc1e7a3
JM
352
353 data->beacon_timer.expires = jiffies + data->beacon_int;
354 add_timer(&data->beacon_timer);
355}
356
357
e8975581 358static int mac80211_hwsim_config(struct ieee80211_hw *hw, u32 changed)
acc1e7a3
JM
359{
360 struct mac80211_hwsim_data *data = hw->priv;
e8975581 361 struct ieee80211_conf *conf = &hw->conf;
acc1e7a3
JM
362
363 printk(KERN_DEBUG "%s:%s (freq=%d radio_enabled=%d beacon_int=%d)\n",
364 wiphy_name(hw->wiphy), __func__,
365 conf->channel->center_freq, conf->radio_enabled,
366 conf->beacon_int);
367
368 data->channel = conf->channel;
369 data->radio_enabled = conf->radio_enabled;
370 data->beacon_int = 1024 * conf->beacon_int / 1000 * HZ / 1000;
371 if (data->beacon_int < 1)
372 data->beacon_int = 1;
373
374 if (!data->started || !data->radio_enabled)
375 del_timer(&data->beacon_timer);
376 else
377 mod_timer(&data->beacon_timer, jiffies + data->beacon_int);
378
379 return 0;
380}
381
382
383static void mac80211_hwsim_configure_filter(struct ieee80211_hw *hw,
384 unsigned int changed_flags,
385 unsigned int *total_flags,
386 int mc_count,
387 struct dev_addr_list *mc_list)
388{
389 struct mac80211_hwsim_data *data = hw->priv;
390
391 printk(KERN_DEBUG "%s:%s\n", wiphy_name(hw->wiphy), __func__);
392
393 data->rx_filter = 0;
394 if (*total_flags & FIF_PROMISC_IN_BSS)
395 data->rx_filter |= FIF_PROMISC_IN_BSS;
396 if (*total_flags & FIF_ALLMULTI)
397 data->rx_filter |= FIF_ALLMULTI;
398
399 *total_flags = data->rx_filter;
400}
401
8aa21e6f
JB
402static int mac80211_hwsim_config_interface(struct ieee80211_hw *hw,
403 struct ieee80211_vif *vif,
404 struct ieee80211_if_conf *conf)
405{
406 hwsim_check_magic(vif);
407 return 0;
408}
acc1e7a3 409
8aa21e6f
JB
410static void mac80211_hwsim_bss_info_changed(struct ieee80211_hw *hw,
411 struct ieee80211_vif *vif,
412 struct ieee80211_bss_conf *info,
413 u32 changed)
414{
415 hwsim_check_magic(vif);
fe63bfa3
JM
416
417 printk(KERN_DEBUG "%s:%s(changed=0x%x)\n",
418 wiphy_name(hw->wiphy), __func__, changed);
419
420 if (changed & BSS_CHANGED_ASSOC) {
421 printk(KERN_DEBUG " %s: ASSOC: assoc=%d aid=%d\n",
422 wiphy_name(hw->wiphy), info->assoc, info->aid);
423 }
424
425 if (changed & BSS_CHANGED_ERP_CTS_PROT) {
426 printk(KERN_DEBUG " %s: ERP_CTS_PROT: %d\n",
427 wiphy_name(hw->wiphy), info->use_cts_prot);
428 }
429
430 if (changed & BSS_CHANGED_ERP_PREAMBLE) {
431 printk(KERN_DEBUG " %s: ERP_PREAMBLE: %d\n",
432 wiphy_name(hw->wiphy), info->use_short_preamble);
433 }
434
435 if (changed & BSS_CHANGED_ERP_SLOT) {
436 printk(KERN_DEBUG " %s: ERP_SLOT: %d\n",
437 wiphy_name(hw->wiphy), info->use_short_slot);
438 }
439
440 if (changed & BSS_CHANGED_HT) {
441 printk(KERN_DEBUG " %s: HT: sec_ch_offs=%d width_40_ok=%d "
442 "op_mode=%d\n",
443 wiphy_name(hw->wiphy),
444 info->ht.secondary_channel_offset,
445 info->ht.width_40_ok, info->ht.operation_mode);
446 }
447
448 if (changed & BSS_CHANGED_BASIC_RATES) {
449 printk(KERN_DEBUG " %s: BASIC_RATES: 0x%llx\n",
450 wiphy_name(hw->wiphy),
451 (unsigned long long) info->basic_rates);
452 }
8aa21e6f
JB
453}
454
455static void mac80211_hwsim_sta_notify(struct ieee80211_hw *hw,
456 struct ieee80211_vif *vif,
17741cdc
JB
457 enum sta_notify_cmd cmd,
458 struct ieee80211_sta *sta)
8aa21e6f
JB
459{
460 hwsim_check_magic(vif);
81c06523
JB
461 switch (cmd) {
462 case STA_NOTIFY_ADD:
463 hwsim_set_sta_magic(sta);
464 break;
465 case STA_NOTIFY_REMOVE:
466 hwsim_clear_sta_magic(sta);
467 break;
468 }
469}
470
471static int mac80211_hwsim_set_tim(struct ieee80211_hw *hw,
472 struct ieee80211_sta *sta,
473 bool set)
474{
475 hwsim_check_sta_magic(sta);
476 return 0;
8aa21e6f 477}
acc1e7a3 478
1e898ff8
JM
479static int mac80211_hwsim_conf_tx(
480 struct ieee80211_hw *hw, u16 queue,
481 const struct ieee80211_tx_queue_params *params)
482{
483 printk(KERN_DEBUG "%s:%s (queue=%d txop=%d cw_min=%d cw_max=%d "
484 "aifs=%d)\n",
485 wiphy_name(hw->wiphy), __func__, queue,
486 params->txop, params->cw_min, params->cw_max, params->aifs);
487 return 0;
488}
489
acc1e7a3
JM
490static const struct ieee80211_ops mac80211_hwsim_ops =
491{
492 .tx = mac80211_hwsim_tx,
493 .start = mac80211_hwsim_start,
494 .stop = mac80211_hwsim_stop,
495 .add_interface = mac80211_hwsim_add_interface,
496 .remove_interface = mac80211_hwsim_remove_interface,
497 .config = mac80211_hwsim_config,
498 .configure_filter = mac80211_hwsim_configure_filter,
8aa21e6f
JB
499 .config_interface = mac80211_hwsim_config_interface,
500 .bss_info_changed = mac80211_hwsim_bss_info_changed,
501 .sta_notify = mac80211_hwsim_sta_notify,
81c06523 502 .set_tim = mac80211_hwsim_set_tim,
1e898ff8 503 .conf_tx = mac80211_hwsim_conf_tx,
acc1e7a3
JM
504};
505
506
507static void mac80211_hwsim_free(void)
508{
0e057d73
JB
509 struct list_head tmplist, *i, *tmp;
510 struct mac80211_hwsim_data *data;
511
512 INIT_LIST_HEAD(&tmplist);
513
514 spin_lock_bh(&hwsim_radio_lock);
515 list_for_each_safe(i, tmp, &hwsim_radios)
516 list_move(i, &tmplist);
517 spin_unlock_bh(&hwsim_radio_lock);
518
519 list_for_each_entry(data, &tmplist, list) {
520 ieee80211_unregister_hw(data->hw);
521 device_unregister(data->dev);
522 ieee80211_free_hw(data->hw);
acc1e7a3 523 }
acc1e7a3
JM
524 class_destroy(hwsim_class);
525}
526
527
528static struct device_driver mac80211_hwsim_driver = {
529 .name = "mac80211_hwsim"
530};
531
532
533static void hwsim_mon_setup(struct net_device *dev)
534{
535 dev->hard_start_xmit = hwsim_mon_xmit;
536 dev->destructor = free_netdev;
537 ether_setup(dev);
538 dev->tx_queue_len = 0;
539 dev->type = ARPHRD_IEEE80211_RADIOTAP;
540 memset(dev->dev_addr, 0, ETH_ALEN);
541 dev->dev_addr[0] = 0x12;
542}
543
544
545static int __init init_mac80211_hwsim(void)
546{
547 int i, err = 0;
548 u8 addr[ETH_ALEN];
549 struct mac80211_hwsim_data *data;
550 struct ieee80211_hw *hw;
acc1e7a3 551
0e057d73 552 if (radios < 1 || radios > 100)
acc1e7a3
JM
553 return -EINVAL;
554
0e057d73
JB
555 spin_lock_init(&hwsim_radio_lock);
556 INIT_LIST_HEAD(&hwsim_radios);
acc1e7a3
JM
557
558 hwsim_class = class_create(THIS_MODULE, "mac80211_hwsim");
0e057d73 559 if (IS_ERR(hwsim_class))
acc1e7a3 560 return PTR_ERR(hwsim_class);
acc1e7a3
JM
561
562 memset(addr, 0, ETH_ALEN);
563 addr[0] = 0x02;
564
0e057d73 565 for (i = 0; i < radios; i++) {
acc1e7a3
JM
566 printk(KERN_DEBUG "mac80211_hwsim: Initializing radio %d\n",
567 i);
568 hw = ieee80211_alloc_hw(sizeof(*data), &mac80211_hwsim_ops);
0e057d73 569 if (!hw) {
acc1e7a3
JM
570 printk(KERN_DEBUG "mac80211_hwsim: ieee80211_alloc_hw "
571 "failed\n");
572 err = -ENOMEM;
573 goto failed;
574 }
acc1e7a3 575 data = hw->priv;
0e057d73
JB
576 data->hw = hw;
577
6e05d6c4
GKH
578 data->dev = device_create(hwsim_class, NULL, 0, hw,
579 "hwsim%d", i);
acc1e7a3 580 if (IS_ERR(data->dev)) {
e800f17c 581 printk(KERN_DEBUG
6e05d6c4 582 "mac80211_hwsim: device_create "
acc1e7a3
JM
583 "failed (%ld)\n", PTR_ERR(data->dev));
584 err = -ENOMEM;
3a33cc10 585 goto failed_drvdata;
acc1e7a3
JM
586 }
587 data->dev->driver = &mac80211_hwsim_driver;
acc1e7a3
JM
588
589 SET_IEEE80211_DEV(hw, data->dev);
590 addr[3] = i >> 8;
591 addr[4] = i;
592 SET_IEEE80211_PERM_ADDR(hw, addr);
593
594 hw->channel_change_time = 1;
87e8b64e 595 hw->queues = 4;
f59ac048
LR
596 hw->wiphy->interface_modes =
597 BIT(NL80211_IFTYPE_STATION) |
598 BIT(NL80211_IFTYPE_AP);
87e8b64e 599 hw->ampdu_queues = 1;
acc1e7a3 600
8aa21e6f
JB
601 /* ask mac80211 to reserve space for magic */
602 hw->vif_data_size = sizeof(struct hwsim_vif_priv);
81c06523 603 hw->sta_data_size = sizeof(struct hwsim_sta_priv);
8aa21e6f 604
acc1e7a3
JM
605 memcpy(data->channels, hwsim_channels, sizeof(hwsim_channels));
606 memcpy(data->rates, hwsim_rates, sizeof(hwsim_rates));
607 data->band.channels = data->channels;
608 data->band.n_channels = ARRAY_SIZE(hwsim_channels);
609 data->band.bitrates = data->rates;
610 data->band.n_bitrates = ARRAY_SIZE(hwsim_rates);
d9fe60de
JB
611 data->band.ht_cap.ht_supported = true;
612 data->band.ht_cap.cap = IEEE80211_HT_CAP_SUP_WIDTH_20_40 |
87e8b64e
JM
613 IEEE80211_HT_CAP_GRN_FLD |
614 IEEE80211_HT_CAP_SGI_40 |
615 IEEE80211_HT_CAP_DSSSCCK40;
d9fe60de
JB
616 data->band.ht_cap.ampdu_factor = 0x3;
617 data->band.ht_cap.ampdu_density = 0x6;
618 memset(&data->band.ht_cap.mcs, 0,
619 sizeof(data->band.ht_cap.mcs));
620 data->band.ht_cap.mcs.rx_mask[0] = 0xff;
621 data->band.ht_cap.mcs.rx_mask[1] = 0xff;
622 data->band.ht_cap.mcs.tx_params = IEEE80211_HT_MCS_TX_DEFINED;
acc1e7a3
JM
623 hw->wiphy->bands[IEEE80211_BAND_2GHZ] = &data->band;
624
625 err = ieee80211_register_hw(hw);
626 if (err < 0) {
627 printk(KERN_DEBUG "mac80211_hwsim: "
628 "ieee80211_register_hw failed (%d)\n", err);
3a33cc10 629 goto failed_hw;
acc1e7a3
JM
630 }
631
e174961c 632 printk(KERN_DEBUG "%s: hwaddr %pM registered\n",
acc1e7a3 633 wiphy_name(hw->wiphy),
e174961c 634 hw->wiphy->perm_addr);
acc1e7a3
JM
635
636 setup_timer(&data->beacon_timer, mac80211_hwsim_beacon,
637 (unsigned long) hw);
0e057d73
JB
638
639 list_add_tail(&data->list, &hwsim_radios);
acc1e7a3
JM
640 }
641
642 hwsim_mon = alloc_netdev(0, "hwsim%d", hwsim_mon_setup);
643 if (hwsim_mon == NULL)
644 goto failed;
645
646 rtnl_lock();
647
648 err = dev_alloc_name(hwsim_mon, hwsim_mon->name);
3a33cc10 649 if (err < 0)
acc1e7a3 650 goto failed_mon;
3a33cc10 651
acc1e7a3
JM
652
653 err = register_netdevice(hwsim_mon);
654 if (err < 0)
655 goto failed_mon;
656
657 rtnl_unlock();
658
659 return 0;
660
661failed_mon:
662 rtnl_unlock();
663 free_netdev(hwsim_mon);
3a33cc10
IS
664 mac80211_hwsim_free();
665 return err;
acc1e7a3 666
3a33cc10
IS
667failed_hw:
668 device_unregister(data->dev);
669failed_drvdata:
670 ieee80211_free_hw(hw);
acc1e7a3
JM
671failed:
672 mac80211_hwsim_free();
673 return err;
674}
675
676
677static void __exit exit_mac80211_hwsim(void)
678{
0e057d73 679 printk(KERN_DEBUG "mac80211_hwsim: unregister radios\n");
acc1e7a3
JM
680
681 unregister_netdev(hwsim_mon);
682 mac80211_hwsim_free();
683}
684
685
686module_init(init_mac80211_hwsim);
687module_exit(exit_mac80211_hwsim);