Merge remote-tracking branch 'mkp-scsi/4.7/scsi-fixes' into fixes
[deliverable/linux.git] / drivers / staging / rtl8192u / r8192U_wx.c
CommitLineData
39ce4e83
BK
1/******************************************************************************
2 *
3 * This file contains wireless extension handlers.
4 *
5 * This is part of rtl8180 OpenSource driver.
6 * Copyright (C) Andrea Merello 2004-2005 <andrea.merello@gmail.com>
7 * Released under the terms of GPL (General Public Licence)
8 *
9 * Parts of this driver are based on the GPL part
10 * of the official realtek driver.
11 *
12 * Parts of this driver are based on the rtl8180 driver skeleton
13 * from Patric Schenke & Andres Salomon.
14 *
15 * Parts of this driver are based on the Intel Pro Wireless 2100 GPL driver.
16 *
17 * We want to thank the Authors of those projects and the Ndiswrapper
18 * project Authors.
19 *
20 *****************************************************************************/
8fc8598e
JC
21
22#include <linux/string.h>
23#include "r8192U.h"
24#include "r8192U_hw.h"
25
8fc8598e 26#include "dot11d.h"
c4d6b8fb 27#include "r8192U_wx.h"
8fc8598e
JC
28
29#define RATE_COUNT 12
c4d6b8fb 30static const u32 rtl8180_rates[] = {1000000, 2000000, 5500000, 11000000,
654d1ce9 31 6000000, 9000000, 12000000, 18000000, 24000000, 36000000, 48000000, 54000000};
8fc8598e 32
8fc8598e
JC
33#ifndef ENETDOWN
34#define ENETDOWN 1
35#endif
36
37static int r8192_wx_get_freq(struct net_device *dev,
38 struct iw_request_info *a,
39 union iwreq_data *wrqu, char *b)
40{
41 struct r8192_priv *priv = ieee80211_priv(dev);
42
654d1ce9 43 return ieee80211_wx_get_freq(priv->ieee80211, a, wrqu, b);
8fc8598e
JC
44}
45
8fc8598e
JC
46static int r8192_wx_get_mode(struct net_device *dev, struct iw_request_info *a,
47 union iwreq_data *wrqu, char *b)
48{
654d1ce9 49 struct r8192_priv *priv = ieee80211_priv(dev);
8fc8598e 50
654d1ce9 51 return ieee80211_wx_get_mode(priv->ieee80211, a, wrqu, b);
8fc8598e
JC
52}
53
8fc8598e
JC
54static int r8192_wx_get_rate(struct net_device *dev,
55 struct iw_request_info *info,
56 union iwreq_data *wrqu, char *extra)
57{
58 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 59
654d1ce9 60 return ieee80211_wx_get_rate(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
61}
62
8fc8598e
JC
63static int r8192_wx_set_rate(struct net_device *dev,
64 struct iw_request_info *info,
65 union iwreq_data *wrqu, char *extra)
66{
67 int ret;
68 struct r8192_priv *priv = ieee80211_priv(dev);
69
70 down(&priv->wx_sem);
71
654d1ce9 72 ret = ieee80211_wx_set_rate(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
73
74 up(&priv->wx_sem);
75
76 return ret;
77}
78
8fc8598e
JC
79static int r8192_wx_set_rts(struct net_device *dev,
80 struct iw_request_info *info,
81 union iwreq_data *wrqu, char *extra)
82{
83 int ret;
84 struct r8192_priv *priv = ieee80211_priv(dev);
85
86 down(&priv->wx_sem);
87
654d1ce9 88 ret = ieee80211_wx_set_rts(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
89
90 up(&priv->wx_sem);
91
92 return ret;
93}
94
95static int r8192_wx_get_rts(struct net_device *dev,
96 struct iw_request_info *info,
97 union iwreq_data *wrqu, char *extra)
98{
99 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 100
654d1ce9 101 return ieee80211_wx_get_rts(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
102}
103
104static int r8192_wx_set_power(struct net_device *dev,
105 struct iw_request_info *info,
106 union iwreq_data *wrqu, char *extra)
107{
108 int ret;
109 struct r8192_priv *priv = ieee80211_priv(dev);
110
111 down(&priv->wx_sem);
112
654d1ce9 113 ret = ieee80211_wx_set_power(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
114
115 up(&priv->wx_sem);
116
117 return ret;
118}
119
120static int r8192_wx_get_power(struct net_device *dev,
121 struct iw_request_info *info,
122 union iwreq_data *wrqu, char *extra)
123{
124 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 125
654d1ce9 126 return ieee80211_wx_get_power(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
127}
128
8fc8598e
JC
129static int r8192_wx_force_reset(struct net_device *dev,
130 struct iw_request_info *info,
131 union iwreq_data *wrqu, char *extra)
132{
133 struct r8192_priv *priv = ieee80211_priv(dev);
134
135 down(&priv->wx_sem);
136
54160729 137 netdev_dbg(dev, "%s(): force reset ! extra is %d\n", __func__, *extra);
8fc8598e
JC
138 priv->force_reset = *extra;
139 up(&priv->wx_sem);
140 return 0;
141
142}
143
8fc8598e
JC
144static int r8192_wx_set_rawtx(struct net_device *dev,
145 struct iw_request_info *info,
146 union iwreq_data *wrqu, char *extra)
147{
148 struct r8192_priv *priv = ieee80211_priv(dev);
149 int ret;
150
151 down(&priv->wx_sem);
152
153 ret = ieee80211_wx_set_rawtx(priv->ieee80211, info, wrqu, extra);
154
155 up(&priv->wx_sem);
156
157 return ret;
158
159}
160
161static int r8192_wx_set_crcmon(struct net_device *dev,
162 struct iw_request_info *info,
163 union iwreq_data *wrqu, char *extra)
164{
165 struct r8192_priv *priv = ieee80211_priv(dev);
166 int *parms = (int *)extra;
167 int enable = (parms[0] > 0);
8fc8598e
JC
168
169 down(&priv->wx_sem);
170
654d1ce9
CH
171 if (enable)
172 priv->crcmon = 1;
8fc8598e 173 else
654d1ce9 174 priv->crcmon = 0;
8fc8598e
JC
175
176 DMESG("bad CRC in monitor mode are %s",
177 priv->crcmon ? "accepted" : "rejected");
178
8fc8598e
JC
179 up(&priv->wx_sem);
180
181 return 0;
182}
183
184static int r8192_wx_set_mode(struct net_device *dev, struct iw_request_info *a,
185 union iwreq_data *wrqu, char *b)
186{
187 struct r8192_priv *priv = ieee80211_priv(dev);
188 int ret;
a08d541a 189
8fc8598e
JC
190 down(&priv->wx_sem);
191
654d1ce9 192 ret = ieee80211_wx_set_mode(priv->ieee80211, a, wrqu, b);
8fc8598e
JC
193
194 rtl8192_set_rxconf(dev);
195
196 up(&priv->wx_sem);
197 return ret;
198}
199
0db7a34e 200struct iw_range_with_scan_capa {
e406322b
MCC
201 /* Informative stuff (to choose between different interface) */
202 __u32 throughput; /* To give an idea... */
203 /* In theory this value should be the maximum benchmarked
204 * TCP/IP throughput, because with most of these devices the
205 * bit rate is meaningless (overhead an co) to estimate how
206 * fast the connection will go and pick the fastest one.
207 * I suggest people to play with Netperf or any benchmark...
208 */
209
210 /* NWID (or domain id) */
211 __u32 min_nwid; /* Minimal NWID we are able to set */
212 __u32 max_nwid; /* Maximal NWID we are able to set */
213
214 /* Old Frequency (backward compat - moved lower ) */
215 __u16 old_num_channels;
216 __u8 old_num_frequency;
217
218 /* Scan capabilities */
219 __u8 scan_capa;
8fc8598e
JC
220};
221static int rtl8180_wx_get_range(struct net_device *dev,
222 struct iw_request_info *info,
223 union iwreq_data *wrqu, char *extra)
224{
225 struct iw_range *range = (struct iw_range *)extra;
b81c2b0a 226 struct iw_range_with_scan_capa *tmp = (struct iw_range_with_scan_capa *)range;
8fc8598e
JC
227 struct r8192_priv *priv = ieee80211_priv(dev);
228 u16 val;
229 int i;
230
231 wrqu->data.length = sizeof(*range);
232 memset(range, 0, sizeof(*range));
233
234 /* Let's try to keep this struct in the same order as in
235 * linux/include/wireless.h
236 */
237
238 /* TODO: See what values we can set, and remove the ones we can't
239 * set, or fill them with some default data.
240 */
241
242 /* ~5 Mb/s real (802.11b) */
243 range->throughput = 5 * 1000 * 1000;
244
0bb927cf
CH
245 /* TODO: Not used in 802.11b? */
246 /* range->min_nwid; */ /* Minimal NWID we are able to set */
247 /* TODO: Not used in 802.11b? */
248 /* range->max_nwid; */ /* Maximal NWID we are able to set */
8fc8598e 249
e406322b 250 /* Old Frequency (backward compat - moved lower ) */
0bb927cf
CH
251 /* range->old_num_channels; */
252 /* range->old_num_frequency; */
253 /* range->old_freq[6]; */ /* Filler to keep "version" at the same offset */
654d1ce9 254 if (priv->rf_set_sens != NULL)
8fc8598e
JC
255 range->sensitivity = priv->max_sens; /* signal level threshold range */
256
257 range->max_qual.qual = 100;
258 /* TODO: Find real max RSSI and stick here */
259 range->max_qual.level = 0;
3cd66a18 260 range->max_qual.noise = 0x100 - 98;
8fc8598e
JC
261 range->max_qual.updated = 7; /* Updated all three */
262
263 range->avg_qual.qual = 92; /* > 8% missed beacons is 'bad' */
589b3d06 264 /* TODO: Find real 'good' to 'bad' threshold value for RSSI */
3cd66a18 265 range->avg_qual.level = 0x100 - 78;
8fc8598e
JC
266 range->avg_qual.noise = 0;
267 range->avg_qual.updated = 7; /* Updated all three */
268
269 range->num_bitrates = RATE_COUNT;
270
2930d0b9 271 for (i = 0; i < RATE_COUNT && i < IW_MAX_BITRATES; i++)
8fc8598e 272 range->bitrate[i] = rtl8180_rates[i];
8fc8598e
JC
273
274 range->min_frag = MIN_FRAG_THRESHOLD;
275 range->max_frag = MAX_FRAG_THRESHOLD;
276
654d1ce9 277 range->min_pmp = 0;
8fc8598e
JC
278 range->max_pmp = 5000000;
279 range->min_pmt = 0;
280 range->max_pmt = 65535*1000;
281 range->pmp_flags = IW_POWER_PERIOD;
282 range->pmt_flags = IW_POWER_TIMEOUT;
283 range->pm_capa = IW_POWER_PERIOD | IW_POWER_TIMEOUT | IW_POWER_ALL_R;
284
285 range->we_version_compiled = WIRELESS_EXT;
286 range->we_version_source = 16;
287
0bb927cf
CH
288 /* range->retry_capa; */ /* What retry options are supported */
289 /* range->retry_flags; */ /* How to decode max/min retry limit */
290 /* range->r_time_flags; */ /* How to decode max/min retry life */
0b5b4e22 291 /* range->min_retry; */ /* Minimal number of retries */
0bb927cf
CH
292 /* range->max_retry; */ /* Maximal number of retries */
293 /* range->min_r_time; */ /* Minimal retry lifetime */
294 /* range->max_r_time; */ /* Maximal retry lifetime */
8fc8598e 295
8fc8598e
JC
296 for (i = 0, val = 0; i < 14; i++) {
297
0bb927cf 298 /* Include only legal frequencies for some countries */
8fc8598e 299 if ((GET_DOT11D_INFO(priv->ieee80211)->channel_map)[i+1]) {
e406322b 300 range->freq[val].i = i + 1;
8fc8598e
JC
301 range->freq[val].m = ieee80211_wlan_frequencies[i] * 100000;
302 range->freq[val].e = 1;
303 val++;
304 } else {
0bb927cf
CH
305 /* FIXME: do we need to set anything for channels */
306 /* we don't use ? */
8fc8598e
JC
307 }
308
309 if (val == IW_MAX_FREQUENCIES)
28cda5ae 310 break;
8fc8598e
JC
311 }
312 range->num_frequency = val;
e406322b 313 range->num_channels = val;
8fc8598e
JC
314 range->enc_capa = IW_ENC_CAPA_WPA|IW_ENC_CAPA_WPA2|
315 IW_ENC_CAPA_CIPHER_TKIP|IW_ENC_CAPA_CIPHER_CCMP;
8fc8598e
JC
316 tmp->scan_capa = 0x01;
317 return 0;
318}
319
8fc8598e
JC
320static int r8192_wx_set_scan(struct net_device *dev, struct iw_request_info *a,
321 union iwreq_data *wrqu, char *b)
322{
323 struct r8192_priv *priv = ieee80211_priv(dev);
b81c2b0a 324 struct ieee80211_device *ieee = priv->ieee80211;
8fc8598e
JC
325 int ret = 0;
326
28cda5ae
CH
327 if (!priv->up)
328 return -ENETDOWN;
8fc8598e 329
956ff821 330 if (priv->ieee80211->LinkDetectInfo.bBusyTraffic)
8fc8598e 331 return -EAGAIN;
28cda5ae 332 if (wrqu->data.flags & IW_SCAN_THIS_ESSID) {
b81c2b0a 333 struct iw_scan_req *req = (struct iw_scan_req *)b;
95c0bab2 334
28cda5ae 335 if (req->essid_len) {
8fc8598e
JC
336 ieee->current_network.ssid_len = req->essid_len;
337 memcpy(ieee->current_network.ssid, req->essid, req->essid_len);
8fc8598e
JC
338 }
339 }
340
341 down(&priv->wx_sem);
654d1ce9 342 if (priv->ieee80211->state != IEEE80211_LINKED) {
e406322b
MCC
343 priv->ieee80211->scanning = 0;
344 ieee80211_softmac_scan_syncro(priv->ieee80211);
345 ret = 0;
28cda5ae
CH
346 } else {
347 ret = ieee80211_wx_set_scan(priv->ieee80211, a, wrqu, b);
e406322b 348 }
8fc8598e
JC
349 up(&priv->wx_sem);
350 return ret;
351}
352
353
354static int r8192_wx_get_scan(struct net_device *dev, struct iw_request_info *a,
355 union iwreq_data *wrqu, char *b)
356{
357
358 int ret;
359 struct r8192_priv *priv = ieee80211_priv(dev);
360
28cda5ae
CH
361 if (!priv->up)
362 return -ENETDOWN;
8fc8598e
JC
363
364 down(&priv->wx_sem);
365
654d1ce9 366 ret = ieee80211_wx_get_scan(priv->ieee80211, a, wrqu, b);
8fc8598e
JC
367
368 up(&priv->wx_sem);
369
370 return ret;
371}
372
373static int r8192_wx_set_essid(struct net_device *dev,
374 struct iw_request_info *a,
375 union iwreq_data *wrqu, char *b)
376{
377 struct r8192_priv *priv = ieee80211_priv(dev);
378 int ret;
a08d541a 379
8fc8598e
JC
380 down(&priv->wx_sem);
381
654d1ce9 382 ret = ieee80211_wx_set_essid(priv->ieee80211, a, wrqu, b);
8fc8598e
JC
383
384 up(&priv->wx_sem);
385
386 return ret;
387}
388
8fc8598e
JC
389static int r8192_wx_get_essid(struct net_device *dev,
390 struct iw_request_info *a,
391 union iwreq_data *wrqu, char *b)
392{
393 int ret;
394 struct r8192_priv *priv = ieee80211_priv(dev);
395
396 down(&priv->wx_sem);
397
398 ret = ieee80211_wx_get_essid(priv->ieee80211, a, wrqu, b);
399
400 up(&priv->wx_sem);
401
402 return ret;
403}
404
8fc8598e
JC
405static int r8192_wx_set_freq(struct net_device *dev, struct iw_request_info *a,
406 union iwreq_data *wrqu, char *b)
407{
408 int ret;
409 struct r8192_priv *priv = ieee80211_priv(dev);
410
411 down(&priv->wx_sem);
412
413 ret = ieee80211_wx_set_freq(priv->ieee80211, a, wrqu, b);
414
415 up(&priv->wx_sem);
416 return ret;
417}
418
419static int r8192_wx_get_name(struct net_device *dev,
420 struct iw_request_info *info,
421 union iwreq_data *wrqu, char *extra)
422{
423 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 424
8fc8598e
JC
425 return ieee80211_wx_get_name(priv->ieee80211, info, wrqu, extra);
426}
427
8fc8598e
JC
428static int r8192_wx_set_frag(struct net_device *dev,
429 struct iw_request_info *info,
430 union iwreq_data *wrqu, char *extra)
431{
432 struct r8192_priv *priv = ieee80211_priv(dev);
433
434 if (wrqu->frag.disabled)
435 priv->ieee80211->fts = DEFAULT_FRAG_THRESHOLD;
436 else {
437 if (wrqu->frag.value < MIN_FRAG_THRESHOLD ||
438 wrqu->frag.value > MAX_FRAG_THRESHOLD)
439 return -EINVAL;
440
441 priv->ieee80211->fts = wrqu->frag.value & ~0x1;
442 }
443
444 return 0;
445}
446
447
448static int r8192_wx_get_frag(struct net_device *dev,
449 struct iw_request_info *info,
450 union iwreq_data *wrqu, char *extra)
451{
452 struct r8192_priv *priv = ieee80211_priv(dev);
453
454 wrqu->frag.value = priv->ieee80211->fts;
455 wrqu->frag.fixed = 0; /* no auto select */
456 wrqu->frag.disabled = (wrqu->frag.value == DEFAULT_FRAG_THRESHOLD);
457
458 return 0;
459}
460
461
462static int r8192_wx_set_wap(struct net_device *dev,
463 struct iw_request_info *info,
464 union iwreq_data *awrq,
465 char *extra)
466{
467
468 int ret;
469 struct r8192_priv *priv = ieee80211_priv(dev);
0bb927cf 470 /* struct sockaddr *temp = (struct sockaddr *)awrq; */
8fc8598e
JC
471 down(&priv->wx_sem);
472
654d1ce9 473 ret = ieee80211_wx_set_wap(priv->ieee80211, info, awrq, extra);
8fc8598e
JC
474
475 up(&priv->wx_sem);
476
477 return ret;
478
479}
480
8fc8598e
JC
481static int r8192_wx_get_wap(struct net_device *dev,
482 struct iw_request_info *info,
483 union iwreq_data *wrqu, char *extra)
484{
485 struct r8192_priv *priv = ieee80211_priv(dev);
486
654d1ce9 487 return ieee80211_wx_get_wap(priv->ieee80211, info, wrqu, extra);
8fc8598e
JC
488}
489
8fc8598e
JC
490static int r8192_wx_get_enc(struct net_device *dev,
491 struct iw_request_info *info,
492 union iwreq_data *wrqu, char *key)
493{
494 struct r8192_priv *priv = ieee80211_priv(dev);
495
496 return ieee80211_wx_get_encode(priv->ieee80211, info, wrqu, key);
497}
498
499static int r8192_wx_set_enc(struct net_device *dev,
500 struct iw_request_info *info,
501 union iwreq_data *wrqu, char *key)
502{
503 struct r8192_priv *priv = ieee80211_priv(dev);
504 struct ieee80211_device *ieee = priv->ieee80211;
505 int ret;
654d1ce9
CH
506 u32 hwkey[4] = {0, 0, 0, 0};
507 u8 mask = 0xff;
508 u32 key_idx = 0;
654d1ce9
CH
509 u8 zero_addr[4][6] = { {0x00, 0x00, 0x00, 0x00, 0x00, 0x00},
510 {0x00, 0x00, 0x00, 0x00, 0x00, 0x01},
511 {0x00, 0x00, 0x00, 0x00, 0x00, 0x02},
512 {0x00, 0x00, 0x00, 0x00, 0x00, 0x03} };
8fc8598e
JC
513 int i;
514
28cda5ae
CH
515 if (!priv->up)
516 return -ENETDOWN;
8fc8598e
JC
517
518 down(&priv->wx_sem);
519
520 RT_TRACE(COMP_SEC, "Setting SW wep key");
654d1ce9 521 ret = ieee80211_wx_set_encode(priv->ieee80211, info, wrqu, key);
8fc8598e
JC
522
523 up(&priv->wx_sem);
524
525
526
0bb927cf 527 /* sometimes, the length is zero while we do not type key value */
654d1ce9 528 if (wrqu->encoding.length != 0) {
8fc8598e 529
654d1ce9 530 for (i = 0; i < 4; i++) {
8fc8598e 531 hwkey[i] |= key[4*i+0]&mask;
28cda5ae
CH
532 if (i == 1 && (4*i+1) == wrqu->encoding.length)
533 mask = 0x00;
534 if (i == 3 && (4*i+1) == wrqu->encoding.length)
535 mask = 0x00;
8fc8598e
JC
536 hwkey[i] |= (key[4*i+1]&mask)<<8;
537 hwkey[i] |= (key[4*i+2]&mask)<<16;
538 hwkey[i] |= (key[4*i+3]&mask)<<24;
539 }
540
541 #define CONF_WEP40 0x4
542 #define CONF_WEP104 0x14
543
654d1ce9 544 switch (wrqu->encoding.flags & IW_ENCODE_INDEX) {
28cda5ae
CH
545 case 0:
546 key_idx = ieee->tx_keyidx;
547 break;
548 case 1:
549 key_idx = 0;
550 break;
551 case 2:
552 key_idx = 1;
553 break;
554 case 3:
555 key_idx = 2;
556 break;
557 case 4:
558 key_idx = 3;
559 break;
560 default:
561 break;
8fc8598e
JC
562 }
563
654d1ce9 564 if (wrqu->encoding.length == 0x5) {
8fc8598e
JC
565 ieee->pairwise_key_type = KEY_TYPE_WEP40;
566 EnableHWSecurityConfig8192(dev);
567
654d1ce9 568 setKey(dev,
0bb927cf
CH
569 key_idx, /* EntryNo */
570 key_idx, /* KeyIndex */
571 KEY_TYPE_WEP40, /* KeyType */
8fc8598e 572 zero_addr[key_idx],
0bb927cf
CH
573 0, /* DefaultKey */
574 hwkey); /* KeyContent */
8fc8598e
JC
575
576 }
577
654d1ce9 578 else if (wrqu->encoding.length == 0xd) {
8fc8598e
JC
579 ieee->pairwise_key_type = KEY_TYPE_WEP104;
580 EnableHWSecurityConfig8192(dev);
581
654d1ce9 582 setKey(dev,
0bb927cf
CH
583 key_idx, /* EntryNo */
584 key_idx, /* KeyIndex */
585 KEY_TYPE_WEP104, /* KeyType */
8fc8598e 586 zero_addr[key_idx],
0bb927cf
CH
587 0, /* DefaultKey */
588 hwkey); /* KeyContent */
8fc8598e 589
28cda5ae
CH
590 } else {
591 printk("wrong type in WEP, not WEP40 and WEP104\n");
8fc8598e 592 }
8fc8598e
JC
593
594 }
595
596 return ret;
597}
598
599
28cda5ae 600static int r8192_wx_set_scan_type(struct net_device *dev, struct iw_request_info *aa,
e00b8fdc
CH
601 union iwreq_data *wrqu, char *p)
602{
8fc8598e 603
e406322b 604 struct r8192_priv *priv = ieee80211_priv(dev);
654d1ce9
CH
605 int *parms = (int *)p;
606 int mode = parms[0];
8fc8598e
JC
607
608 priv->ieee80211->active_scan = mode;
609
610 return 1;
611}
612
613
614
615static int r8192_wx_set_retry(struct net_device *dev,
616 struct iw_request_info *info,
617 union iwreq_data *wrqu, char *extra)
618{
619 struct r8192_priv *priv = ieee80211_priv(dev);
620 int err = 0;
621
622 down(&priv->wx_sem);
623
624 if (wrqu->retry.flags & IW_RETRY_LIFETIME ||
625 wrqu->retry.disabled){
626 err = -EINVAL;
627 goto exit;
628 }
654d1ce9 629 if (!(wrqu->retry.flags & IW_RETRY_LIMIT)) {
8fc8598e
JC
630 err = -EINVAL;
631 goto exit;
632 }
633
654d1ce9
CH
634 if (wrqu->retry.value > R8180_MAX_RETRY) {
635 err = -EINVAL;
8fc8598e
JC
636 goto exit;
637 }
638 if (wrqu->retry.flags & IW_RETRY_MAX) {
639 priv->retry_rts = wrqu->retry.value;
640 DMESG("Setting retry for RTS/CTS data to %d", wrqu->retry.value);
641
654d1ce9 642 } else {
8fc8598e
JC
643 priv->retry_data = wrqu->retry.value;
644 DMESG("Setting retry for non RTS/CTS data to %d", wrqu->retry.value);
645 }
646
647 /* FIXME !
648 * We might try to write directly the TX config register
649 * or to restart just the (R)TX process.
650 * I'm unsure if whole reset is really needed
651 */
652
e406322b 653 rtl8192_commit(dev);
8fc8598e
JC
654exit:
655 up(&priv->wx_sem);
656
657 return err;
658}
659
660static int r8192_wx_get_retry(struct net_device *dev,
661 struct iw_request_info *info,
662 union iwreq_data *wrqu, char *extra)
663{
664 struct r8192_priv *priv = ieee80211_priv(dev);
665
666
667 wrqu->retry.disabled = 0; /* can't be disabled */
668
669 if ((wrqu->retry.flags & IW_RETRY_TYPE) ==
670 IW_RETRY_LIFETIME)
671 return -EINVAL;
672
673 if (wrqu->retry.flags & IW_RETRY_MAX) {
674 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MAX;
675 wrqu->retry.value = priv->retry_rts;
676 } else {
677 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_MIN;
678 wrqu->retry.value = priv->retry_data;
679 }
8fc8598e 680
8fc8598e
JC
681 return 0;
682}
683
684static int r8192_wx_get_sens(struct net_device *dev,
685 struct iw_request_info *info,
686 union iwreq_data *wrqu, char *extra)
687{
688 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 689
654d1ce9 690 if (priv->rf_set_sens == NULL)
8fc8598e
JC
691 return -1; /* we have not this support for this radio */
692 wrqu->sens.value = priv->sens;
693 return 0;
694}
695
8fc8598e
JC
696static int r8192_wx_set_sens(struct net_device *dev,
697 struct iw_request_info *info,
698 union iwreq_data *wrqu, char *extra)
699{
700
701 struct r8192_priv *priv = ieee80211_priv(dev);
8fc8598e 702 short err = 0;
a08d541a 703
8fc8598e 704 down(&priv->wx_sem);
654d1ce9
CH
705 if (priv->rf_set_sens == NULL) {
706 err = -1; /* we have not this support for this radio */
8fc8598e
JC
707 goto exit;
708 }
654d1ce9 709 if (priv->rf_set_sens(dev, wrqu->sens.value) == 0)
8fc8598e
JC
710 priv->sens = wrqu->sens.value;
711 else
654d1ce9 712 err = -EINVAL;
8fc8598e
JC
713
714exit:
715 up(&priv->wx_sem);
716
717 return err;
718}
719
0bb927cf 720/* hw security need to reorganized. */
8fc8598e 721static int r8192_wx_set_enc_ext(struct net_device *dev,
e406322b
MCC
722 struct iw_request_info *info,
723 union iwreq_data *wrqu, char *extra)
8fc8598e 724{
654d1ce9 725 int ret = 0;
8fc8598e 726 struct r8192_priv *priv = ieee80211_priv(dev);
b81c2b0a 727 struct ieee80211_device *ieee = priv->ieee80211;
8fc8598e
JC
728
729
730 down(&priv->wx_sem);
731 ret = ieee80211_wx_set_encode_ext(priv->ieee80211, info, wrqu, extra);
732
733 {
654d1ce9 734 u8 broadcast_addr[6] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
8fc8598e
JC
735 u8 zero[6] = {0};
736 u32 key[4] = {0};
737 struct iw_encode_ext *ext = (struct iw_encode_ext *)extra;
738 struct iw_point *encoding = &wrqu->encoding;
8fc8598e 739 u8 idx = 0, alg = 0, group = 0;
95c0bab2 740
28cda5ae 741 if ((encoding->flags & IW_ENCODE_DISABLED) || ext->alg == IW_ENCODE_ALG_NONE)
0bb927cf 742 /* none is not allowed to use hwsec WB 2008.07.01 */
8fc8598e
JC
743 goto end_hw_sec;
744
0bb927cf 745 /* as IW_ENCODE_ALG_CCMP is defined to be 3 and KEY_TYPE_CCMP is defined to 4; */
28cda5ae 746 alg = (ext->alg == IW_ENCODE_ALG_CCMP)?KEY_TYPE_CCMP:ext->alg;
8fc8598e
JC
747 idx = encoding->flags & IW_ENCODE_INDEX;
748 if (idx)
654d1ce9 749 idx--;
8fc8598e
JC
750 group = ext->ext_flags & IW_ENCODE_EXT_GROUP_KEY;
751
28cda5ae 752 if ((!group) || (IW_MODE_ADHOC == ieee->iw_mode) || (alg == KEY_TYPE_WEP40)) {
654d1ce9 753 if ((ext->key_len == 13) && (alg == KEY_TYPE_WEP40))
8fc8598e
JC
754 alg = KEY_TYPE_WEP104;
755 ieee->pairwise_key_type = alg;
756 EnableHWSecurityConfig8192(dev);
757 }
0bb927cf 758 memcpy((u8 *)key, ext->key, 16); /* we only get 16 bytes key.why? WB 2008.7.1 */
8fc8598e 759
28cda5ae 760 if ((alg & KEY_TYPE_WEP40) && (ieee->auth_mode != 2)) {
8fc8598e 761
654d1ce9 762 setKey(dev,
0bb927cf
CH
763 idx, /* EntryNao */
764 idx, /* KeyIndex */
765 alg, /* KeyType */
766 zero, /* MacAddr */
767 0, /* DefaultKey */
768 key); /* KeyContent */
28cda5ae 769 } else if (group) {
8fc8598e 770 ieee->group_key_type = alg;
654d1ce9 771 setKey(dev,
0bb927cf
CH
772 idx, /* EntryNo */
773 idx, /* KeyIndex */
774 alg, /* KeyType */
775 broadcast_addr, /* MacAddr */
776 0, /* DefaultKey */
777 key); /* KeyContent */
778 } else { /* pairwise key */
654d1ce9 779 setKey(dev,
0bb927cf
CH
780 4, /* EntryNo */
781 idx, /* KeyIndex */
782 alg, /* KeyType */
783 (u8 *)ieee->ap_mac_addr,/* MacAddr */
784 0, /* DefaultKey */
0b5b4e22 785 key); /* KeyContent */
8fc8598e
JC
786 }
787
788
789 }
790
791end_hw_sec:
792
793 up(&priv->wx_sem);
8fc8598e
JC
794 return ret;
795
796}
797static int r8192_wx_set_auth(struct net_device *dev,
e406322b
MCC
798 struct iw_request_info *info,
799 union iwreq_data *data, char *extra)
8fc8598e 800{
654d1ce9 801 int ret = 0;
8fc8598e 802 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 803
8fc8598e
JC
804 down(&priv->wx_sem);
805 ret = ieee80211_wx_set_auth(priv->ieee80211, info, &(data->param), extra);
806 up(&priv->wx_sem);
8fc8598e
JC
807 return ret;
808}
809
810static int r8192_wx_set_mlme(struct net_device *dev,
e406322b
MCC
811 struct iw_request_info *info,
812 union iwreq_data *wrqu, char *extra)
8fc8598e 813{
8fc8598e 814
654d1ce9 815 int ret = 0;
8fc8598e 816 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 817
8fc8598e
JC
818 down(&priv->wx_sem);
819 ret = ieee80211_wx_set_mlme(priv->ieee80211, info, wrqu, extra);
820
821 up(&priv->wx_sem);
8fc8598e
JC
822 return ret;
823}
e6c1ef6c 824
8fc8598e 825static int r8192_wx_set_gen_ie(struct net_device *dev,
e406322b
MCC
826 struct iw_request_info *info,
827 union iwreq_data *data, char *extra)
8fc8598e 828{
654d1ce9 829 int ret = 0;
e406322b 830 struct r8192_priv *priv = ieee80211_priv(dev);
a08d541a 831
e406322b 832 down(&priv->wx_sem);
e406322b 833 ret = ieee80211_wx_set_gen_ie(priv->ieee80211, extra, data->data.length);
e406322b 834 up(&priv->wx_sem);
e406322b 835 return ret;
8fc8598e
JC
836
837
838}
839
840static int dummy(struct net_device *dev, struct iw_request_info *a,
654d1ce9 841 union iwreq_data *wrqu, char *b)
8fc8598e
JC
842{
843 return -1;
844}
845
28cda5ae 846static iw_handler r8192_wx_handlers[] = {
e406322b 847 NULL, /* SIOCSIWCOMMIT */
35997ff0 848 r8192_wx_get_name, /* SIOCGIWNAME */
e406322b
MCC
849 dummy, /* SIOCSIWNWID */
850 dummy, /* SIOCGIWNWID */
851 r8192_wx_set_freq, /* SIOCSIWFREQ */
852 r8192_wx_get_freq, /* SIOCGIWFREQ */
853 r8192_wx_set_mode, /* SIOCSIWMODE */
854 r8192_wx_get_mode, /* SIOCGIWMODE */
855 r8192_wx_set_sens, /* SIOCSIWSENS */
856 r8192_wx_get_sens, /* SIOCGIWSENS */
857 NULL, /* SIOCSIWRANGE */
858 rtl8180_wx_get_range, /* SIOCGIWRANGE */
859 NULL, /* SIOCSIWPRIV */
860 NULL, /* SIOCGIWPRIV */
861 NULL, /* SIOCSIWSTATS */
862 NULL, /* SIOCGIWSTATS */
863 dummy, /* SIOCSIWSPY */
864 dummy, /* SIOCGIWSPY */
865 NULL, /* SIOCGIWTHRSPY */
866 NULL, /* SIOCWIWTHRSPY */
35997ff0 867 r8192_wx_set_wap, /* SIOCSIWAP */
e406322b 868 r8192_wx_get_wap, /* SIOCGIWAP */
e406322b 869 r8192_wx_set_mlme, /* MLME-- */
589b3d06 870 dummy, /* SIOCGIWAPLIST -- deprecated */
e406322b
MCC
871 r8192_wx_set_scan, /* SIOCSIWSCAN */
872 r8192_wx_get_scan, /* SIOCGIWSCAN */
873 r8192_wx_set_essid, /* SIOCSIWESSID */
874 r8192_wx_get_essid, /* SIOCGIWESSID */
875 dummy, /* SIOCSIWNICKN */
876 dummy, /* SIOCGIWNICKN */
877 NULL, /* -- hole -- */
878 NULL, /* -- hole -- */
879 r8192_wx_set_rate, /* SIOCSIWRATE */
880 r8192_wx_get_rate, /* SIOCGIWRATE */
881 r8192_wx_set_rts, /* SIOCSIWRTS */
882 r8192_wx_get_rts, /* SIOCGIWRTS */
883 r8192_wx_set_frag, /* SIOCSIWFRAG */
884 r8192_wx_get_frag, /* SIOCGIWFRAG */
885 dummy, /* SIOCSIWTXPOW */
886 dummy, /* SIOCGIWTXPOW */
887 r8192_wx_set_retry, /* SIOCSIWRETRY */
888 r8192_wx_get_retry, /* SIOCGIWRETRY */
889 r8192_wx_set_enc, /* SIOCSIWENCODE */
890 r8192_wx_get_enc, /* SIOCGIWENCODE */
891 r8192_wx_set_power, /* SIOCSIWPOWER */
892 r8192_wx_get_power, /* SIOCGIWPOWER */
8fc8598e 893 NULL, /*---hole---*/
35997ff0 894 NULL, /*---hole---*/
0bb927cf 895 r8192_wx_set_gen_ie, /* NULL, */ /* SIOCSIWGENIE */
35997ff0 896 NULL, /* SIOCSIWGENIE */
8fc8598e 897
0bb927cf
CH
898 r8192_wx_set_auth,/* NULL, */ /* SIOCSIWAUTH */
899 NULL,/* r8192_wx_get_auth, */ /* NULL, */ /* SIOCSIWAUTH */
35997ff0 900 r8192_wx_set_enc_ext, /* SIOCSIWENCODEEXT */
0bb927cf 901 NULL,/* r8192_wx_get_enc_ext, *//* NULL, */ /* SIOCSIWENCODEEXT */
35997ff0
SH
902 NULL, /* SIOCSIWPMKSA */
903 NULL, /*---hole---*/
8fc8598e
JC
904
905};
906
907
908static const struct iw_priv_args r8192_private_args[] = {
909
910 {
911 SIOCIWFIRSTPRIV + 0x0,
912 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "badcrc"
913 },
914
915 {
916 SIOCIWFIRSTPRIV + 0x1,
917 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "activescan"
918
919 },
920 {
921 SIOCIWFIRSTPRIV + 0x2,
922 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "rawtx"
aa0cb59c 923 },
8fc8598e
JC
924 {
925 SIOCIWFIRSTPRIV + 0x3,
926 IW_PRIV_TYPE_INT | IW_PRIV_SIZE_FIXED | 1, 0, "forcereset"
927
928 }
929
930};
931
8fc8598e 932static iw_handler r8192_private_handler[] = {
a2581a4a 933 r8192_wx_set_crcmon,
8fc8598e
JC
934 r8192_wx_set_scan_type,
935 r8192_wx_set_rawtx,
8fc8598e
JC
936 r8192_wx_force_reset,
937};
938
8fc8598e
JC
939struct iw_statistics *r8192_get_wireless_stats(struct net_device *dev)
940{
654d1ce9 941 struct r8192_priv *priv = ieee80211_priv(dev);
b81c2b0a
XR
942 struct ieee80211_device *ieee = priv->ieee80211;
943 struct iw_statistics *wstats = &priv->wstats;
8fc8598e
JC
944 int tmp_level = 0;
945 int tmp_qual = 0;
946 int tmp_noise = 0;
a08d541a 947
28cda5ae 948 if (ieee->state < IEEE80211_LINKED) {
8fc8598e
JC
949 wstats->qual.qual = 0;
950 wstats->qual.level = 0;
951 wstats->qual.noise = 0;
8fc8598e 952 wstats->qual.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
8fc8598e
JC
953 return wstats;
954 }
955
654d1ce9 956 tmp_level = (&ieee->current_network)->stats.rssi;
8fc8598e
JC
957 tmp_qual = (&ieee->current_network)->stats.signal;
958 tmp_noise = (&ieee->current_network)->stats.noise;
8fc8598e
JC
959
960 wstats->qual.level = tmp_level;
961 wstats->qual.qual = tmp_qual;
962 wstats->qual.noise = tmp_noise;
31c207f4 963 wstats->qual.updated = IW_QUAL_ALL_UPDATED | IW_QUAL_DBM;
8fc8598e
JC
964 return wstats;
965}
8fc8598e 966
654d1ce9 967struct iw_handler_def r8192_wx_handlers_def = {
8fc8598e 968 .standard = r8192_wx_handlers,
b330f606 969 .num_standard = ARRAY_SIZE(r8192_wx_handlers),
8fc8598e 970 .private = r8192_private_handler,
b330f606 971 .num_private = ARRAY_SIZE(r8192_private_handler),
e406322b 972 .num_private_args = sizeof(r8192_private_args) / sizeof(struct iw_priv_args),
8fc8598e 973 .get_wireless_stats = r8192_get_wireless_stats,
8fc8598e
JC
974 .private_args = (struct iw_priv_args *)r8192_private_args,
975};
This page took 0.820469 seconds and 5 git commands to generate.