add interface ID back
[acx-mac80211.git] / common.c
blob65785ea8c7b82503333e248254ab99697b4ae195
1 /**** (legal) claimer in README
2 ** Copyright (C) 2003 ACX100 Open Source Project
3 */
5 #include <linux/version.h>
6 #include <linux/module.h>
7 #include <linux/kernel.h>
8 #include <linux/sched.h>
9 #include <linux/types.h>
10 #include <linux/slab.h>
11 #include <linux/delay.h>
12 #include <linux/proc_fs.h>
13 #include <linux/if_arp.h>
14 #include <linux/rtnetlink.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/wireless.h>
18 #include <linux/pm.h>
19 #include <linux/vmalloc.h>
20 #include <linux/firmware.h>
21 //#include <net/iw_handler.h>
22 #include <linux/ethtool.h>
23 //#include <linux/utsrelease.h>
25 #include "acx.h"
28 /***********************************************************************
31 static void acx_l_rx(acx_device_t * adev, rxbuffer_t * rxbuf);
35 /***********************************************************************
37 #if ACX_DEBUG
38 unsigned int acx_debug /* will add __read_mostly later */ = ACX_DEFAULT_MSG;
39 /* parameter is 'debug', corresponding var is acx_debug */
40 module_param_named(debug, acx_debug, uint, 0);
41 MODULE_PARM_DESC(debug, "Debug level mask (see L_xxx constants)");
42 #endif
44 #ifdef MODULE_LICENSE
45 MODULE_LICENSE("Dual MPL/GPL");
46 #endif
47 /* USB had this: MODULE_AUTHOR("Martin Wawro <martin.wawro AT uni-dortmund.de>"); */
48 MODULE_AUTHOR("ACX100 Open Source Driver development team");
49 MODULE_DESCRIPTION
50 ("Driver for TI ACX1xx based wireless cards (CardBus/PCI/USB)");
52 #ifdef MODULE_VERSION
53 MODULE_VERSION(ACX_RELEASE);
54 #endif
56 /***********************************************************************
58 /* Probably a number of acx's intermediate buffers for USB transfers,
59 ** not to be confused with number of descriptors in tx/rx rings
60 ** (which are not directly accessible to host in USB devices) */
61 #define USB_RX_CNT 10
62 #define USB_TX_CNT 10
65 /***********************************************************************
68 /* minutes to wait until next radio recalibration: */
69 #define RECALIB_PAUSE 5
71 /* Please keep acx_reg_domain_ids_len in sync... */
72 const u8 acx_reg_domain_ids[acx_reg_domain_ids_len] =
73 { 0x10, 0x20, 0x30, 0x31, 0x32, 0x40, 0x41, 0x51 };
74 static const u16 reg_domain_channel_masks[acx_reg_domain_ids_len] =
75 { 0x07ff, 0x07ff, 0x1fff, 0x0600, 0x1e00, 0x2000, 0x3fff, 0x01fc };
76 const char *const
77 acx_reg_domain_strings[] = {
78 /* 0 */ " 1-11 FCC (USA)",
79 /* 1 */ " 1-11 DOC/IC (Canada)",
80 /* BTW: WLAN use in ETSI is regulated by ETSI standard EN 300 328-2 V1.1.2 */
81 /* 2 */ " 1-13 ETSI (Europe)",
82 /* 3 */ "10-11 Spain",
83 /* 4 */ "10-13 France",
84 /* 5 */ " 14 MKK (Japan)",
85 /* 6 */ " 1-14 MKK1",
86 /* 7 */ " 3-9 Israel (not all firmware versions)",
87 NULL /* needs to remain as last entry */
92 /***********************************************************************
93 ** Debugging support
95 #ifdef PARANOID_LOCKING
96 static unsigned max_lock_time;
97 static unsigned max_sem_time;
99 /* Obvious or linux kernel specific derived code follows: */
101 void acx_lock_unhold()
103 max_lock_time = 0;
106 void acx_sem_unhold()
108 max_sem_time = 0;
111 static inline const char *sanitize_str(const char *s)
113 const char *t = strrchr(s, '/');
114 if (t)
115 return t + 1;
116 return s;
119 void acx_lock_debug(acx_device_t * adev, const char *where)
121 unsigned int count = 100 * 1000 * 1000;
122 where = sanitize_str(where);
123 while (--count) {
124 if (!spin_is_locked(&adev->spinlock))
125 break;
126 cpu_relax();
128 if (!count) {
129 printk(KERN_EMERG "LOCKUP: already taken at %s!\n",
130 adev->last_lock);
131 BUG();
133 adev->last_lock = where;
134 rdtscl(adev->lock_time);
137 void acx_unlock_debug(acx_device_t * adev, const char *where)
139 #ifdef SMP
140 if (!spin_is_locked(&adev->spinlock)) {
141 where = sanitize_str(where);
142 printk(KERN_EMERG "STRAY UNLOCK at %s!\n", where);
143 BUG();
145 #endif
146 if (acx_debug & L_LOCK) {
147 unsigned long diff;
148 rdtscl(diff);
149 diff -= adev->lock_time;
150 if (diff > max_lock_time) {
151 where = sanitize_str(where);
152 printk("max lock hold time %ld CPU ticks from %s "
153 "to %s\n", diff, adev->last_lock, where);
154 max_lock_time = diff;
158 #endif /* PARANOID_LOCKING */
161 /***********************************************************************
163 #if ACX_DEBUG > 1
165 static int acx_debug_func_indent;
166 #define DEBUG_TSC 0
167 #define FUNC_INDENT_INCREMENT 2
169 #if DEBUG_TSC
170 #define TIMESTAMP(d) unsigned long d; rdtscl(d)
171 #else
172 #define TIMESTAMP(d) unsigned long d = jiffies
173 #endif
175 static const char spaces[] = " " " "; /* Nx10 spaces */
177 void log_fn_enter(const char *funcname)
179 int indent;
180 TIMESTAMP(d);
182 indent = acx_debug_func_indent;
183 if (indent >= sizeof(spaces))
184 indent = sizeof(spaces) - 1;
186 printk("%08ld %s==> %s\n",
187 d % 100000000, spaces + (sizeof(spaces) - 1) - indent, funcname);
189 acx_debug_func_indent += FUNC_INDENT_INCREMENT;
191 void log_fn_exit(const char *funcname)
193 int indent;
194 TIMESTAMP(d);
196 acx_debug_func_indent -= FUNC_INDENT_INCREMENT;
198 indent = acx_debug_func_indent;
199 if (indent >= sizeof(spaces))
200 indent = sizeof(spaces) - 1;
202 printk("%08ld %s<== %s\n",
203 d % 100000000, spaces + (sizeof(spaces) - 1) - indent, funcname);
205 void log_fn_exit_v(const char *funcname, int v)
207 int indent;
208 TIMESTAMP(d);
210 acx_debug_func_indent -= FUNC_INDENT_INCREMENT;
212 indent = acx_debug_func_indent;
213 if (indent >= sizeof(spaces))
214 indent = sizeof(spaces) - 1;
216 printk("%08ld %s<== %s: %08X\n",
217 d % 100000000,
218 spaces + (sizeof(spaces) - 1) - indent, funcname, v);
220 #endif /* ACX_DEBUG > 1 */
223 /***********************************************************************
224 ** Basically a mdelay/msleep with logging
226 void acx_s_mwait(int ms)
228 FN_ENTER;
229 #ifdef CONFIG_X86
230 mdelay(ms);
231 #else
232 msleep(ms);
233 #endif
234 FN_EXIT0;
238 /***********************************************************************
239 ** Not inlined: it's larger than it seems
241 void acx_print_mac(const char *head, const u8 * mac, const char *tail)
243 printk("%s" MACSTR "%s", head, MAC(mac), tail);
249 /***********************************************************************
250 ** acx_cmd_status_str
252 const char *acx_cmd_status_str(unsigned int state)
254 static const char *const cmd_error_strings[] = {
255 "Idle",
256 "Success",
257 "Unknown Command",
258 "Invalid Information Element",
259 "Channel rejected",
260 "Channel invalid in current regulatory domain",
261 "MAC invalid",
262 "Command rejected (read-only information element)",
263 "Command rejected",
264 "Already asleep",
265 "TX in progress",
266 "Already awake",
267 "Write only",
268 "RX in progress",
269 "Invalid parameter",
270 "Scan in progress",
271 "Failed"
273 return state < ARRAY_SIZE(cmd_error_strings) ?
274 cmd_error_strings[state] : "?";
277 /***********************************************************************
279 #if ACX_DEBUG
280 void acx_dump_bytes(const void *data, int num)
282 const u8 *ptr = (const u8 *)data;
284 FN_ENTER;
286 if (num <= 0) {
287 printk("\n");
288 return;
291 while (num >= 16) {
292 printk("%02X %02X %02X %02X %02X %02X %02X %02X "
293 "%02X %02X %02X %02X %02X %02X %02X %02X\n",
294 ptr[0], ptr[1], ptr[2], ptr[3],
295 ptr[4], ptr[5], ptr[6], ptr[7],
296 ptr[8], ptr[9], ptr[10], ptr[11],
297 ptr[12], ptr[13], ptr[14], ptr[15]);
298 num -= 16;
299 ptr += 16;
301 if (num > 0) {
302 while (--num > 0)
303 printk("%02X \n", *ptr++);
304 printk("%02X\n", *ptr);
307 FN_EXIT0;
310 #endif
313 /***********************************************************************
314 ** acx_s_get_firmware_version
316 ** Obvious
318 void acx_s_get_firmware_version(acx_device_t * adev)
320 fw_ver_t fw;
321 u8 hexarr[4] = { 0, 0, 0, 0 };
322 int hexidx = 0, val = 0;
323 const char *num;
324 char c;
326 FN_ENTER;
328 memset(fw.fw_id, 'E', FW_ID_SIZE);
329 acx_s_interrogate(adev, &fw, ACX1xx_IE_FWREV);
330 memcpy(adev->firmware_version, fw.fw_id, FW_ID_SIZE);
331 adev->firmware_version[FW_ID_SIZE] = '\0';
333 log(L_DEBUG, "fw_ver: fw_id='%s' hw_id=%08X\n",
334 adev->firmware_version, fw.hw_id);
336 if (strncmp(fw.fw_id, "Rev ", 4) != 0) {
337 printk("acx: strange firmware version string "
338 "'%s', please report\n", adev->firmware_version);
339 adev->firmware_numver = 0x01090407; /* assume 1.9.4.7 */
340 } else {
341 num = &fw.fw_id[4];
342 while (1) {
343 c = *num++;
344 if ((c == '.') || (c == '\0')) {
345 hexarr[hexidx++] = val;
346 if ((hexidx > 3) || (c == '\0')) /* end? */
347 break;
348 val = 0;
349 continue;
351 if ((c >= '0') && (c <= '9'))
352 c -= '0';
353 else
354 c = c - 'a' + (char)10;
355 val = val * 16 + c;
358 adev->firmware_numver = (u32) ((hexarr[0] << 24) |
359 (hexarr[1] << 16)
360 | (hexarr[2] << 8) | hexarr[3]);
361 log(L_DEBUG, "firmware_numver 0x%08X\n", adev->firmware_numver);
363 if (IS_ACX111(adev)) {
364 if (adev->firmware_numver == 0x00010011) {
365 /* This one does not survive floodpinging */
366 printk("acx: firmware '%s' is known to be buggy, "
367 "please upgrade\n", adev->firmware_version);
371 adev->firmware_id = le32_to_cpu(fw.hw_id);
373 /* we're able to find out more detailed chip names now */
374 switch (adev->firmware_id & 0xffff0000) {
375 case 0x01010000:
376 case 0x01020000:
377 adev->chip_name = "TNETW1100A";
378 break;
379 case 0x01030000:
380 adev->chip_name = "TNETW1100B";
381 break;
382 case 0x03000000:
383 case 0x03010000:
384 adev->chip_name = "TNETW1130";
385 break;
386 case 0x04030000: /* 0x04030101 is TNETW1450 */
387 adev->chip_name = "TNETW1450";
388 break;
389 default:
390 printk("acx: unknown chip ID 0x%08X, "
391 "please report\n", adev->firmware_id);
392 break;
395 FN_EXIT0;
399 /***********************************************************************
400 ** acx_display_hardware_details
402 ** Displays hw/fw version, radio type etc...
404 ** Obvious
406 void acx_display_hardware_details(acx_device_t * adev)
408 const char *radio_str, *form_str;
410 FN_ENTER;
412 switch (adev->radio_type) {
413 case RADIO_MAXIM_0D:
414 radio_str = "Maxim";
415 break;
416 case RADIO_RFMD_11:
417 radio_str = "RFMD";
418 break;
419 case RADIO_RALINK_15:
420 radio_str = "Ralink";
421 break;
422 case RADIO_RADIA_16:
423 radio_str = "Radia";
424 break;
425 case RADIO_UNKNOWN_17:
426 /* TI seems to have a radio which is
427 * additionally 802.11a capable, too */
428 radio_str = "802.11a/b/g radio?! Please report";
429 break;
430 case RADIO_UNKNOWN_19:
431 radio_str = "A radio used by Safecom cards?! Please report";
432 break;
433 case RADIO_UNKNOWN_1B:
434 radio_str = "An unknown radio used by TNETW1450 USB adapters";
435 break;
436 default:
437 radio_str = "UNKNOWN, please report radio type name!";
438 break;
441 switch (adev->form_factor) {
442 case 0x00:
443 form_str = "unspecified";
444 break;
445 case 0x01:
446 form_str = "(mini-)PCI / CardBus";
447 break;
448 case 0x02:
449 form_str = "USB";
450 break;
451 case 0x03:
452 form_str = "Compact Flash";
453 break;
454 default:
455 form_str = "UNKNOWN, please report";
456 break;
459 printk("acx: chipset %s, radio type 0x%02X (%s), "
460 "form factor 0x%02X (%s), EEPROM version 0x%02X, "
461 "uploaded firmware '%s'\n",
462 adev->chip_name, adev->radio_type, radio_str,
463 adev->form_factor, form_str, adev->eeprom_version,
464 adev->firmware_version);
466 FN_EXIT0;
470 /***********************************************************************
471 ** acx_e_get_stats, acx_e_get_wireless_stats
474 acx_e_get_stats(struct ieee80211_hw *hw,
475 struct ieee80211_low_level_stats *stats)
477 acx_device_t *adev = ieee2adev(hw);
478 unsigned long flags;
479 acx_lock(adev, flags);
480 memcpy(stats, &adev->ieee_stats, sizeof(*stats));
481 acx_unlock(adev, flags);
482 return 0;
486 /***********************************************************************
487 ** maps acx111 tx descr rate field to acx100 one
489 const u8 acx_bitpos2rate100[] = {
490 RATE100_1, /* 0 */
491 RATE100_2, /* 1 */
492 RATE100_5, /* 2 */
493 RATE100_2, /* 3, should not happen */
494 RATE100_2, /* 4, should not happen */
495 RATE100_11, /* 5 */
496 RATE100_2, /* 6, should not happen */
497 RATE100_2, /* 7, should not happen */
498 RATE100_22, /* 8 */
499 RATE100_2, /* 9, should not happen */
500 RATE100_2, /* 10, should not happen */
501 RATE100_2, /* 11, should not happen */
502 RATE100_2, /* 12, should not happen */
503 RATE100_2, /* 13, should not happen */
504 RATE100_2, /* 14, should not happen */
505 RATE100_2, /* 15, should not happen */
508 u8 acx_rate111to100(u16 r)
510 return acx_bitpos2rate100[highest_bit(r)];
514 /***********************************************************************
515 ** Calculate level like the feb 2003 windows driver seems to do
517 static u8 acx_signal_to_winlevel(u8 rawlevel)
519 /* u8 winlevel = (u8) (0.5 + 0.625 * rawlevel); */
520 u8 winlevel = ((4 + (rawlevel * 5)) / 8);
522 if (winlevel > 100)
523 winlevel = 100;
524 return winlevel;
527 u8 acx_signal_determine_quality(u8 signal, u8 noise)
529 int qual;
531 qual = (((signal - 30) * 100 / 70) + (100 - noise * 4)) / 2;
533 if (qual > 100)
534 return 100;
535 if (qual < 0)
536 return 0;
537 return qual;
541 /***********************************************************************
542 ** Interrogate/configure commands
545 /* FIXME: the lengths given here probably aren't always correct.
546 * They should be gradually replaced by proper "sizeof(acx1XX_ie_XXXX)-4",
547 * unless the firmware actually expects a different length than the struct length */
548 static const u16 acx100_ie_len[] = {
550 ACX100_IE_ACX_TIMER_LEN,
551 sizeof(acx100_ie_powersave_t) - 4, /* is that 6 or 8??? */
552 ACX1xx_IE_QUEUE_CONFIG_LEN,
553 ACX100_IE_BLOCK_SIZE_LEN,
554 ACX1xx_IE_MEMORY_CONFIG_OPTIONS_LEN,
555 ACX1xx_IE_RATE_FALLBACK_LEN,
556 ACX100_IE_WEP_OPTIONS_LEN,
557 ACX1xx_IE_MEMORY_MAP_LEN, /* ACX1xx_IE_SSID_LEN, */
559 ACX1xx_IE_ASSOC_ID_LEN,
561 ACX111_IE_CONFIG_OPTIONS_LEN,
562 ACX1xx_IE_FWREV_LEN,
563 ACX1xx_IE_FCS_ERROR_COUNT_LEN,
564 ACX1xx_IE_MEDIUM_USAGE_LEN,
565 ACX1xx_IE_RXCONFIG_LEN,
568 sizeof(fw_stats_t) - 4,
570 ACX1xx_IE_FEATURE_CONFIG_LEN,
571 ACX111_IE_KEY_CHOOSE_LEN,
572 ACX1FF_IE_MISC_CONFIG_TABLE_LEN,
573 ACX1FF_IE_WONE_CONFIG_LEN,
575 ACX1FF_IE_TID_CONFIG_LEN,
579 ACX1FF_IE_CALIB_ASSESSMENT_LEN,
580 ACX1FF_IE_BEACON_FILTER_OPTIONS_LEN,
581 ACX1FF_IE_LOW_RSSI_THRESH_OPT_LEN,
582 ACX1FF_IE_NOISE_HISTOGRAM_RESULTS_LEN,
584 ACX1FF_IE_PACKET_DETECT_THRESH_LEN,
585 ACX1FF_IE_TX_CONFIG_OPTIONS_LEN,
586 ACX1FF_IE_CCA_THRESHOLD_LEN,
587 ACX1FF_IE_EVENT_MASK_LEN,
588 ACX1FF_IE_DTIM_PERIOD_LEN,
590 ACX1FF_IE_ACI_CONFIG_SET_LEN,
597 ACX1FF_IE_EEPROM_VER_LEN,
600 static const u16 acx100_ie_len_dot11[] = {
602 ACX1xx_IE_DOT11_STATION_ID_LEN,
604 ACX100_IE_DOT11_BEACON_PERIOD_LEN,
605 ACX1xx_IE_DOT11_DTIM_PERIOD_LEN,
606 ACX1xx_IE_DOT11_SHORT_RETRY_LIMIT_LEN,
607 ACX1xx_IE_DOT11_LONG_RETRY_LIMIT_LEN,
608 ACX100_IE_DOT11_WEP_DEFAULT_KEY_WRITE_LEN,
609 ACX1xx_IE_DOT11_MAX_XMIT_MSDU_LIFETIME_LEN,
611 ACX1xx_IE_DOT11_CURRENT_REG_DOMAIN_LEN,
612 ACX1xx_IE_DOT11_CURRENT_ANTENNA_LEN,
614 ACX1xx_IE_DOT11_TX_POWER_LEVEL_LEN,
615 ACX1xx_IE_DOT11_CURRENT_CCA_MODE_LEN,
616 ACX100_IE_DOT11_ED_THRESHOLD_LEN,
617 ACX1xx_IE_DOT11_WEP_DEFAULT_KEY_SET_LEN,
623 static const u16 acx111_ie_len[] = {
625 ACX100_IE_ACX_TIMER_LEN,
626 sizeof(acx111_ie_powersave_t) - 4,
627 ACX1xx_IE_QUEUE_CONFIG_LEN,
628 ACX100_IE_BLOCK_SIZE_LEN,
629 ACX1xx_IE_MEMORY_CONFIG_OPTIONS_LEN,
630 ACX1xx_IE_RATE_FALLBACK_LEN,
631 ACX100_IE_WEP_OPTIONS_LEN,
632 ACX1xx_IE_MEMORY_MAP_LEN, /* ACX1xx_IE_SSID_LEN, */
634 ACX1xx_IE_ASSOC_ID_LEN,
636 ACX111_IE_CONFIG_OPTIONS_LEN,
637 ACX1xx_IE_FWREV_LEN,
638 ACX1xx_IE_FCS_ERROR_COUNT_LEN,
639 ACX1xx_IE_MEDIUM_USAGE_LEN,
640 ACX1xx_IE_RXCONFIG_LEN,
643 sizeof(fw_stats_t) - 4,
645 ACX1xx_IE_FEATURE_CONFIG_LEN,
646 ACX111_IE_KEY_CHOOSE_LEN,
647 ACX1FF_IE_MISC_CONFIG_TABLE_LEN,
648 ACX1FF_IE_WONE_CONFIG_LEN,
650 ACX1FF_IE_TID_CONFIG_LEN,
654 ACX1FF_IE_CALIB_ASSESSMENT_LEN,
655 ACX1FF_IE_BEACON_FILTER_OPTIONS_LEN,
656 ACX1FF_IE_LOW_RSSI_THRESH_OPT_LEN,
657 ACX1FF_IE_NOISE_HISTOGRAM_RESULTS_LEN,
659 ACX1FF_IE_PACKET_DETECT_THRESH_LEN,
660 ACX1FF_IE_TX_CONFIG_OPTIONS_LEN,
661 ACX1FF_IE_CCA_THRESHOLD_LEN,
662 ACX1FF_IE_EVENT_MASK_LEN,
663 ACX1FF_IE_DTIM_PERIOD_LEN,
665 ACX1FF_IE_ACI_CONFIG_SET_LEN,
672 ACX1FF_IE_EEPROM_VER_LEN,
675 static const u16 acx111_ie_len_dot11[] = {
677 ACX1xx_IE_DOT11_STATION_ID_LEN,
679 ACX100_IE_DOT11_BEACON_PERIOD_LEN,
680 ACX1xx_IE_DOT11_DTIM_PERIOD_LEN,
681 ACX1xx_IE_DOT11_SHORT_RETRY_LIMIT_LEN,
682 ACX1xx_IE_DOT11_LONG_RETRY_LIMIT_LEN,
683 ACX100_IE_DOT11_WEP_DEFAULT_KEY_WRITE_LEN,
684 ACX1xx_IE_DOT11_MAX_XMIT_MSDU_LIFETIME_LEN,
686 ACX1xx_IE_DOT11_CURRENT_REG_DOMAIN_LEN,
687 ACX1xx_IE_DOT11_CURRENT_ANTENNA_LEN,
689 ACX1xx_IE_DOT11_TX_POWER_LEVEL_LEN,
690 ACX1xx_IE_DOT11_CURRENT_CCA_MODE_LEN,
691 ACX100_IE_DOT11_ED_THRESHOLD_LEN,
692 ACX1xx_IE_DOT11_WEP_DEFAULT_KEY_SET_LEN,
699 #undef FUNC
700 #define FUNC "configure"
701 #if !ACX_DEBUG
702 int acx_s_configure(acx_device_t * adev, void *pdr, int type)
704 #else
706 acx_s_configure_debug(acx_device_t * adev, void *pdr, int type,
707 const char *typestr)
709 #endif
710 u16 len;
711 int res;
713 if (type < 0x1000)
714 len = adev->ie_len[type];
715 else
716 len = adev->ie_len_dot11[type - 0x1000];
718 log(L_CTL, FUNC "(type:%s,len:%u)\n", typestr, len);
719 if (unlikely(!len)) {
720 log(L_DEBUG, "zero-length type %s?!\n", typestr);
723 ((acx_ie_generic_t *) pdr)->type = cpu_to_le16(type);
724 ((acx_ie_generic_t *) pdr)->len = cpu_to_le16(len);
725 res = acx_s_issue_cmd(adev, ACX1xx_CMD_CONFIGURE, pdr, len + 4);
726 if (unlikely(OK != res)) {
727 #if ACX_DEBUG
728 printk("%s: " FUNC "(type:%s) FAILED\n", wiphy_name(adev->ieee->wiphy),
729 typestr);
730 #else
731 printk("%s: " FUNC "(type:0x%X) FAILED\n", wiphy_name(adev->ieee->wiphy),
732 type);
733 #endif
734 /* dump_stack() is already done in issue_cmd() */
736 return res;
739 #undef FUNC
740 #define FUNC "interrogate"
741 #if !ACX_DEBUG
742 int acx_s_interrogate(acx_device_t * adev, void *pdr, int type)
744 #else
746 acx_s_interrogate_debug(acx_device_t * adev, void *pdr, int type,
747 const char *typestr)
749 #endif
750 u16 len;
751 int res;
753 FN_ENTER;
755 /* FIXME: no check whether this exceeds the array yet.
756 * We should probably remember the number of entries... */
757 if (type < 0x1000)
758 len = adev->ie_len[type];
759 else
760 len = adev->ie_len_dot11[type - 0x1000];
762 log(L_CTL, FUNC "(type:%s,len:%u)\n", typestr, len);
764 ((acx_ie_generic_t *) pdr)->type = cpu_to_le16(type);
765 ((acx_ie_generic_t *) pdr)->len = cpu_to_le16(len);
766 res = acx_s_issue_cmd(adev, ACX1xx_CMD_INTERROGATE, pdr, len + 4);
767 if (unlikely(OK != res)) {
768 #if ACX_DEBUG
769 printk("%s: " FUNC "(type:%s) FAILED\n", wiphy_name(adev->ieee->wiphy),
770 typestr);
771 #else
772 printk("%s: " FUNC "(type:0x%X) FAILED\n", wiphy_name(adev->ieee->wiphy),
773 type);
774 #endif
775 /* dump_stack() is already done in issue_cmd() */
778 FN_EXIT1(res);
779 return res;
782 #if CMD_DISCOVERY
783 void great_inquisitor(acx_device_t * adev)
785 static struct {
786 u16 type;
787 u16 len;
788 /* 0x200 was too large here: */
789 u8 data[0x100 - 4];
790 } ACX_PACKED ie;
791 u16 type;
793 FN_ENTER;
795 /* 0..0x20, 0x1000..0x1020 */
796 for (type = 0; type <= 0x1020; type++) {
797 if (type == 0x21)
798 type = 0x1000;
799 ie.type = cpu_to_le16(type);
800 ie.len = cpu_to_le16(sizeof(ie) - 4);
801 acx_s_issue_cmd(adev, ACX1xx_CMD_INTERROGATE, &ie, sizeof(ie));
803 FN_EXIT0;
805 #endif
808 #ifdef CONFIG_PROC_FS
809 /***********************************************************************
810 ** /proc files
812 /***********************************************************************
813 ** acx_l_proc_output
814 ** Generate content for our /proc entry
816 ** Arguments:
817 ** buf is a pointer to write output to
818 ** adev is the usual pointer to our private struct acx_device
819 ** Returns:
820 ** number of bytes actually written to buf
821 ** Side effects:
822 ** none
824 static int acx_l_proc_output(char *buf, acx_device_t * adev)
826 char *p = buf;
828 FN_ENTER;
830 p += sprintf(p,
831 "acx driver version:\t\t" ACX_RELEASE "\n"
832 "Wireless extension version:\t" STRING(WIRELESS_EXT) "\n"
833 "chip name:\t\t\t%s (0x%08X)\n"
834 "radio type:\t\t\t0x%02X\n"
835 "form factor:\t\t\t0x%02X\n"
836 "EEPROM version:\t\t\t0x%02X\n"
837 "firmware version:\t\t%s (0x%08X)\n",
838 adev->chip_name, adev->firmware_id,
839 adev->radio_type,
840 adev->form_factor,
841 adev->eeprom_version,
842 adev->firmware_version, adev->firmware_numver);
844 FN_EXIT1(p - buf);
845 return p - buf;
849 /***********************************************************************
851 static int acx_s_proc_diag_output(char *buf, acx_device_t * adev)
853 char *p = buf;
854 unsigned long flags;
855 unsigned int len = 0, partlen;
856 u32 temp1, temp2;
857 u8 *st, *st_end;
858 #ifdef __BIG_ENDIAN
859 u8 *st2;
860 #endif
861 fw_stats_t *fw_stats;
862 char *part_str = NULL;
863 fw_stats_tx_t *tx = NULL;
864 fw_stats_rx_t *rx = NULL;
865 fw_stats_dma_t *dma = NULL;
866 fw_stats_irq_t *irq = NULL;
867 fw_stats_wep_t *wep = NULL;
868 fw_stats_pwr_t *pwr = NULL;
869 fw_stats_mic_t *mic = NULL;
870 fw_stats_aes_t *aes = NULL;
871 fw_stats_event_t *evt = NULL;
873 FN_ENTER;
875 acx_lock(adev, flags);
877 if (IS_PCI(adev))
878 p = acxpci_s_proc_diag_output(p, adev);
880 p += sprintf(p,
881 "\n"
882 "** network status **\n"
883 "dev_state_mask 0x%04X\n"
884 "mode %u, channel %u, "
885 "reg_dom_id 0x%02X, reg_dom_chanmask 0x%04X, ",
886 adev->dev_state_mask,
887 adev->mode, adev->channel,
888 adev->reg_dom_id, adev->reg_dom_chanmask);
889 p += sprintf(p,
890 "ESSID \"%s\", essid_active %d, essid_len %d, "
891 "essid_for_assoc \"%s\", nick \"%s\"\n"
892 "WEP ena %d, restricted %d, idx %d\n",
893 adev->essid, adev->essid_active, (int)adev->essid_len,
894 adev->essid_for_assoc, adev->nick,
895 adev->wep_enabled, adev->wep_restricted,
896 adev->wep_current_index);
897 p += sprintf(p, "dev_addr " MACSTR "\n", MAC(adev->dev_addr));
898 p += sprintf(p, "bssid " MACSTR "\n", MAC(adev->bssid));
899 p += sprintf(p, "ap_filter " MACSTR "\n", MAC(adev->ap));
901 p += sprintf(p, "\n" "** PHY status **\n"
902 "tx_disabled %d, tx_level_dbm %d\n" /* "tx_level_val %d, tx_level_auto %d\n" */
903 "sensitivity %d, antenna 0x%02X, ed_threshold %d, cca %d, preamble_mode %d\n"
904 "rate_basic 0x%04X, rate_oper 0x%04X\n"
905 "rts_threshold %d, frag_threshold %d, short_retry %d, long_retry %d\n"
906 "msdu_lifetime %d, listen_interval %d, beacon_interval %d\n",
907 adev->tx_disabled, adev->tx_level_dbm, /* adev->tx_level_val, adev->tx_level_auto, */
908 adev->sensitivity, adev->antenna, adev->ed_threshold,
909 adev->cca, adev->preamble_mode, adev->rate_basic, adev->rate_oper, adev->rts_threshold,
910 adev->frag_threshold, adev->short_retry, adev->long_retry,
911 adev->msdu_lifetime, adev->listen_interval,
912 adev->beacon_interval);
914 acx_unlock(adev, flags);
916 p += sprintf(p,
917 "\n"
918 "** Firmware **\n"
919 "NOTE: version dependent statistics layout, "
920 "please report if you suspect wrong parsing!\n"
921 "\n" "version \"%s\"\n", adev->firmware_version);
923 /* TODO: may replace kmalloc/memset with kzalloc once
924 * Linux 2.6.14 is widespread */
925 fw_stats = kmalloc(sizeof(*fw_stats), GFP_KERNEL);
926 if (!fw_stats) {
927 FN_EXIT1(0);
928 return 0;
930 memset(fw_stats, 0, sizeof(*fw_stats));
932 st = (u8 *) fw_stats;
934 part_str = "statistics query command";
936 if (OK != acx_s_interrogate(adev, st, ACX1xx_IE_FIRMWARE_STATISTICS))
937 goto fw_stats_end;
939 st += sizeof(u16);
940 len = *(u16 *) st;
942 if (len > sizeof(*fw_stats)) {
943 p += sprintf(p,
944 "firmware version with bigger fw_stats struct detected\n"
945 "(%u vs. %u), please report\n", len,
946 sizeof(fw_stats_t));
947 if (len > sizeof(*fw_stats)) {
948 p += sprintf(p, "struct size exceeded allocation!\n");
949 len = sizeof(*fw_stats);
952 st += sizeof(u16);
953 st_end = st - 2 * sizeof(u16) + len;
955 #ifdef __BIG_ENDIAN
956 /* let's make one bold assumption here:
957 * (hopefully!) *all* statistics fields are u32 only,
958 * thus if we need to make endianness corrections
959 * we can simply do them in one go, in advance */
960 st2 = (u8 *) fw_stats;
961 for (temp1 = 0; temp1 < len; temp1 += 4, st2 += 4)
962 *(u32 *) st2 = le32_to_cpu(*(u32 *) st2);
963 #endif
965 part_str = "Rx/Tx";
967 /* directly at end of a struct part? --> no error! */
968 if (st == st_end)
969 goto fw_stats_end;
971 tx = (fw_stats_tx_t *) st;
972 st += sizeof(fw_stats_tx_t);
973 rx = (fw_stats_rx_t *) st;
974 st += sizeof(fw_stats_rx_t);
975 partlen = sizeof(fw_stats_tx_t) + sizeof(fw_stats_rx_t);
977 if (IS_ACX100(adev)) {
978 /* at least ACX100 PCI F/W 1.9.8.b
979 * and ACX100 USB F/W 1.0.7-USB
980 * don't have those two fields... */
981 st -= 2 * sizeof(u32);
983 /* our parsing doesn't quite match this firmware yet,
984 * log failure */
985 if (st > st_end)
986 goto fw_stats_fail;
987 temp1 = temp2 = 999999999;
988 } else {
989 if (st > st_end)
990 goto fw_stats_fail;
991 temp1 = rx->rx_aci_events;
992 temp2 = rx->rx_aci_resets;
995 p += sprintf(p,
996 "%s:\n"
997 " tx_desc_overfl %u\n"
998 " rx_OutOfMem %u, rx_hdr_overfl %u, rx_hw_stuck %u\n"
999 " rx_dropped_frame %u, rx_frame_ptr_err %u, rx_xfr_hint_trig %u\n"
1000 " rx_aci_events %u, rx_aci_resets %u\n",
1001 part_str,
1002 tx->tx_desc_of,
1003 rx->rx_oom,
1004 rx->rx_hdr_of,
1005 rx->rx_hw_stuck,
1006 rx->rx_dropped_frame,
1007 rx->rx_frame_ptr_err, rx->rx_xfr_hint_trig, temp1, temp2);
1009 part_str = "DMA";
1011 if (st == st_end)
1012 goto fw_stats_end;
1014 dma = (fw_stats_dma_t *) st;
1015 partlen = sizeof(fw_stats_dma_t);
1016 st += partlen;
1018 if (st > st_end)
1019 goto fw_stats_fail;
1021 p += sprintf(p,
1022 "%s:\n"
1023 " rx_dma_req %u, rx_dma_err %u, tx_dma_req %u, tx_dma_err %u\n",
1024 part_str,
1025 dma->rx_dma_req,
1026 dma->rx_dma_err, dma->tx_dma_req, dma->tx_dma_err);
1028 part_str = "IRQ";
1030 if (st == st_end)
1031 goto fw_stats_end;
1033 irq = (fw_stats_irq_t *) st;
1034 partlen = sizeof(fw_stats_irq_t);
1035 st += partlen;
1037 if (st > st_end)
1038 goto fw_stats_fail;
1040 p += sprintf(p,
1041 "%s:\n"
1042 " cmd_cplt %u, fiq %u\n"
1043 " rx_hdrs %u, rx_cmplt %u, rx_mem_overfl %u, rx_rdys %u\n"
1044 " irqs %u, tx_procs %u, decrypt_done %u\n"
1045 " dma_0_done %u, dma_1_done %u, tx_exch_complet %u\n"
1046 " commands %u, rx_procs %u, hw_pm_mode_changes %u\n"
1047 " host_acks %u, pci_pm %u, acm_wakeups %u\n",
1048 part_str,
1049 irq->cmd_cplt,
1050 irq->fiq,
1051 irq->rx_hdrs,
1052 irq->rx_cmplt,
1053 irq->rx_mem_of,
1054 irq->rx_rdys,
1055 irq->irqs,
1056 irq->tx_procs,
1057 irq->decrypt_done,
1058 irq->dma_0_done,
1059 irq->dma_1_done,
1060 irq->tx_exch_complet,
1061 irq->commands,
1062 irq->rx_procs,
1063 irq->hw_pm_mode_changes,
1064 irq->host_acks, irq->pci_pm, irq->acm_wakeups);
1066 part_str = "WEP";
1068 if (st == st_end)
1069 goto fw_stats_end;
1071 wep = (fw_stats_wep_t *) st;
1072 partlen = sizeof(fw_stats_wep_t);
1073 st += partlen;
1075 if ((IS_PCI(adev) && IS_ACX100(adev))
1076 || (IS_USB(adev) && IS_ACX100(adev))
1078 /* at least ACX100 PCI F/W 1.9.8.b
1079 * and ACX100 USB F/W 1.0.7-USB
1080 * don't have those two fields... */
1081 st -= 2 * sizeof(u32);
1082 if (st > st_end)
1083 goto fw_stats_fail;
1084 temp1 = temp2 = 999999999;
1085 } else {
1086 if (st > st_end)
1087 goto fw_stats_fail;
1088 temp1 = wep->wep_pkt_decrypt;
1089 temp2 = wep->wep_decrypt_irqs;
1092 p += sprintf(p,
1093 "%s:\n"
1094 " wep_key_count %u, wep_default_key_count %u, dot11_def_key_mib %u\n"
1095 " wep_key_not_found %u, wep_decrypt_fail %u\n"
1096 " wep_pkt_decrypt %u, wep_decrypt_irqs %u\n",
1097 part_str,
1098 wep->wep_key_count,
1099 wep->wep_default_key_count,
1100 wep->dot11_def_key_mib,
1101 wep->wep_key_not_found,
1102 wep->wep_decrypt_fail, temp1, temp2);
1104 part_str = "power";
1106 if (st == st_end)
1107 goto fw_stats_end;
1109 pwr = (fw_stats_pwr_t *) st;
1110 partlen = sizeof(fw_stats_pwr_t);
1111 st += partlen;
1113 if (st > st_end)
1114 goto fw_stats_fail;
1116 p += sprintf(p,
1117 "%s:\n"
1118 " tx_start_ctr %u, no_ps_tx_too_short %u\n"
1119 " rx_start_ctr %u, no_ps_rx_too_short %u\n"
1120 " lppd_started %u\n"
1121 " no_lppd_too_noisy %u, no_lppd_too_short %u, no_lppd_matching_frame %u\n",
1122 part_str,
1123 pwr->tx_start_ctr,
1124 pwr->no_ps_tx_too_short,
1125 pwr->rx_start_ctr,
1126 pwr->no_ps_rx_too_short,
1127 pwr->lppd_started,
1128 pwr->no_lppd_too_noisy,
1129 pwr->no_lppd_too_short, pwr->no_lppd_matching_frame);
1131 part_str = "MIC";
1133 if (st == st_end)
1134 goto fw_stats_end;
1136 mic = (fw_stats_mic_t *) st;
1137 partlen = sizeof(fw_stats_mic_t);
1138 st += partlen;
1140 if (st > st_end)
1141 goto fw_stats_fail;
1143 p += sprintf(p,
1144 "%s:\n"
1145 " mic_rx_pkts %u, mic_calc_fail %u\n",
1146 part_str, mic->mic_rx_pkts, mic->mic_calc_fail);
1148 part_str = "AES";
1150 if (st == st_end)
1151 goto fw_stats_end;
1153 aes = (fw_stats_aes_t *) st;
1154 partlen = sizeof(fw_stats_aes_t);
1155 st += partlen;
1157 if (st > st_end)
1158 goto fw_stats_fail;
1160 p += sprintf(p,
1161 "%s:\n"
1162 " aes_enc_fail %u, aes_dec_fail %u\n"
1163 " aes_enc_pkts %u, aes_dec_pkts %u\n"
1164 " aes_enc_irq %u, aes_dec_irq %u\n",
1165 part_str,
1166 aes->aes_enc_fail,
1167 aes->aes_dec_fail,
1168 aes->aes_enc_pkts,
1169 aes->aes_dec_pkts, aes->aes_enc_irq, aes->aes_dec_irq);
1171 part_str = "event";
1173 if (st == st_end)
1174 goto fw_stats_end;
1176 evt = (fw_stats_event_t *) st;
1177 partlen = sizeof(fw_stats_event_t);
1178 st += partlen;
1180 if (st > st_end)
1181 goto fw_stats_fail;
1183 p += sprintf(p,
1184 "%s:\n"
1185 " heartbeat %u, calibration %u\n"
1186 " rx_mismatch %u, rx_mem_empty %u, rx_pool %u\n"
1187 " oom_late %u\n"
1188 " phy_tx_err %u, tx_stuck %u\n",
1189 part_str,
1190 evt->heartbeat,
1191 evt->calibration,
1192 evt->rx_mismatch,
1193 evt->rx_mem_empty,
1194 evt->rx_pool,
1195 evt->oom_late, evt->phy_tx_err, evt->tx_stuck);
1197 if (st < st_end)
1198 goto fw_stats_bigger;
1200 goto fw_stats_end;
1202 fw_stats_fail:
1203 st -= partlen;
1204 p += sprintf(p,
1205 "failed at %s part (size %u), offset %u (struct size %u), "
1206 "please report\n", part_str, partlen,
1207 (int)((void *)st - (void *)fw_stats), len);
1209 fw_stats_bigger:
1210 for (; st < st_end; st += 4)
1211 p += sprintf(p,
1212 "UNKN%3d: %u\n",
1213 (int)((void *)st - (void *)fw_stats), *(u32 *) st);
1215 fw_stats_end:
1216 kfree(fw_stats);
1218 FN_EXIT1(p - buf);
1219 return p - buf;
1223 /***********************************************************************
1225 static int acx_s_proc_phy_output(char *buf, acx_device_t * adev)
1227 char *p = buf;
1228 int i;
1230 FN_ENTER;
1233 if (RADIO_RFMD_11 != adev->radio_type) {
1234 printk("sorry, not yet adapted for radio types "
1235 "other than RFMD, please verify "
1236 "PHY size etc. first!\n");
1237 goto end;
1241 /* The PHY area is only 0x80 bytes long; further pages after that
1242 * only have some page number registers with altered value,
1243 * all other registers remain the same. */
1244 for (i = 0; i < 0x80; i++) {
1245 acx_s_read_phy_reg(adev, i, p++);
1248 FN_EXIT1(p - buf);
1249 return p - buf;
1253 /***********************************************************************
1254 ** acx_e_read_proc_XXXX
1255 ** Handle our /proc entry
1257 ** Arguments:
1258 ** standard kernel read_proc interface
1259 ** Returns:
1260 ** number of bytes written to buf
1261 ** Side effects:
1262 ** none
1264 static int
1265 acx_e_read_proc(char *buf, char **start, off_t offset, int count,
1266 int *eof, void *data)
1268 acx_device_t *adev = (acx_device_t *) data;
1269 unsigned long flags;
1270 int length;
1272 FN_ENTER;
1274 acx_sem_lock(adev);
1275 acx_lock(adev, flags);
1276 /* fill buf */
1277 length = acx_l_proc_output(buf, adev);
1278 acx_unlock(adev, flags);
1279 acx_sem_unlock(adev);
1281 /* housekeeping */
1282 if (length <= offset + count)
1283 *eof = 1;
1284 *start = buf + offset;
1285 length -= offset;
1286 if (length > count)
1287 length = count;
1288 if (length < 0)
1289 length = 0;
1290 FN_EXIT1(length);
1291 return length;
1294 static int
1295 acx_e_read_proc_diag(char *buf, char **start, off_t offset, int count,
1296 int *eof, void *data)
1298 acx_device_t *adev = (acx_device_t *) data;
1299 int length;
1301 FN_ENTER;
1303 acx_sem_lock(adev);
1304 /* fill buf */
1305 length = acx_s_proc_diag_output(buf, adev);
1306 acx_sem_unlock(adev);
1308 /* housekeeping */
1309 if (length <= offset + count)
1310 *eof = 1;
1311 *start = buf + offset;
1312 length -= offset;
1313 if (length > count)
1314 length = count;
1315 if (length < 0)
1316 length = 0;
1317 FN_EXIT1(length);
1318 return length;
1321 static int
1322 acx_e_read_proc_eeprom(char *buf, char **start, off_t offset, int count,
1323 int *eof, void *data)
1325 acx_device_t *adev = (acx_device_t *) data;
1326 int length;
1328 FN_ENTER;
1330 /* fill buf */
1331 length = 0;
1332 if (IS_PCI(adev)) {
1333 acx_sem_lock(adev);
1334 length = acxpci_proc_eeprom_output(buf, adev);
1335 acx_sem_unlock(adev);
1338 /* housekeeping */
1339 if (length <= offset + count)
1340 *eof = 1;
1341 *start = buf + offset;
1342 length -= offset;
1343 if (length > count)
1344 length = count;
1345 if (length < 0)
1346 length = 0;
1347 FN_EXIT1(length);
1348 return length;
1351 static int
1352 acx_e_read_proc_phy(char *buf, char **start, off_t offset, int count,
1353 int *eof, void *data)
1355 acx_device_t *adev = (acx_device_t *) data;
1356 int length;
1358 FN_ENTER;
1360 acx_sem_lock(adev);
1361 /* fill buf */
1362 length = acx_s_proc_phy_output(buf, adev);
1363 acx_sem_unlock(adev);
1365 /* housekeeping */
1366 if (length <= offset + count)
1367 *eof = 1;
1368 *start = buf + offset;
1369 length -= offset;
1370 if (length > count)
1371 length = count;
1372 if (length < 0)
1373 length = 0;
1374 FN_EXIT1(length);
1375 return length;
1379 /***********************************************************************
1380 ** /proc files registration
1382 static const char *const
1383 proc_files[] = { "", "_diag", "_eeprom", "_phy" };
1385 static read_proc_t *const
1386 proc_funcs[] = {
1387 acx_e_read_proc,
1388 acx_e_read_proc_diag,
1389 acx_e_read_proc_eeprom,
1390 acx_e_read_proc_phy
1393 static int manage_proc_entries(struct ieee80211_hw *hw, int remove)
1395 acx_device_t *adev = ieee2adev(hw);
1396 char procbuf[80];
1397 int i;
1399 FN_ENTER;
1401 for (i = 0; i < ARRAY_SIZE(proc_files); i++) {
1402 snprintf(procbuf, sizeof(procbuf),
1403 "driver/acx%s", proc_files[i]);
1404 log(L_INIT, "%sing /proc entry %s\n",
1405 remove ? "remov" : "creat", procbuf);
1406 if (!remove) {
1407 if (!create_proc_read_entry
1408 (procbuf, 0, NULL, proc_funcs[i], adev)) {
1409 printk("acx: cannot register /proc entry %s\n",
1410 procbuf);
1411 FN_EXIT1(NOT_OK);
1412 return NOT_OK;
1414 } else {
1415 remove_proc_entry(procbuf, NULL);
1418 FN_EXIT0;
1419 return OK;
1422 int acx_proc_register_entries(struct ieee80211_hw *ieee)
1424 return manage_proc_entries(ieee, 0);
1427 int acx_proc_unregister_entries(struct ieee80211_hw *ieee)
1429 return manage_proc_entries(ieee, 1);
1431 #endif /* CONFIG_PROC_FS */
1433 /****
1434 ** Gathered From rt2x00 and bcm43xx_mac80211 projects
1436 void acx_free_modes(acx_device_t * adev)
1439 // kfree(adev->modes);
1440 // adev->modes = NULL;
1444 #define RATETAB_ENT(_rate, _rateid, _flags) \
1446 .rate = (_rate), \
1447 .val = (_rateid), \
1448 .val2 = (_rateid), \
1449 .flags = (_flags), \
1453 static struct ieee80211_rate __acx_rates[] = {
1454 { .rate = 10,
1455 .val = RATE111_1,
1456 .flags = IEEE80211_RATE_CCK },
1457 { .rate = 20,
1458 .val = RATE111_2,
1459 .flags = IEEE80211_RATE_CCK },
1460 { .rate = 55,
1461 .val = RATE111_5,
1462 .flags = IEEE80211_RATE_CCK },
1463 { .rate = 110,
1464 .val = RATE111_11,
1465 .flags = IEEE80211_RATE_CCK },
1466 { .rate = 60,
1467 .val = RATE111_6,
1468 .flags = IEEE80211_RATE_OFDM },
1469 { .rate = 90,
1470 .val = RATE111_9,
1471 .flags = IEEE80211_RATE_OFDM },
1472 { .rate = 120,
1473 .val = RATE111_12,
1474 .flags = IEEE80211_RATE_OFDM },
1475 { .rate = 180,
1476 .val = RATE111_18,
1477 .flags = IEEE80211_RATE_OFDM },
1478 { .rate = 240,
1479 .val = RATE111_24,
1480 .flags = IEEE80211_RATE_OFDM },
1481 { .rate = 360,
1482 .val = RATE111_36,
1483 .flags = IEEE80211_RATE_OFDM },
1484 { .rate = 480,
1485 .val = RATE111_48,
1486 .flags = IEEE80211_RATE_OFDM },
1487 { .rate = 540,
1488 .val = RATE111_54,
1489 .flags = IEEE80211_RATE_OFDM },
1492 #define acx_b_ratetable (__acx_rates + 0)
1493 #define acx_g_ratetable (__acx_rates + 0)
1496 #define CHANTAB_ENT(_chanid, _freq) \
1498 .chan = (_chanid), \
1499 .freq = (_freq), \
1500 .val = (_chanid), \
1501 .flag = IEEE80211_CHAN_W_SCAN | \
1502 IEEE80211_CHAN_W_ACTIVE_SCAN | \
1503 IEEE80211_CHAN_W_IBSS, \
1504 .power_level = 0xf, \
1505 .antenna_max = 0xFF, \
1508 static struct ieee80211_channel channels[] = {
1509 { .chan = 1,
1510 .freq = 2412},
1511 { .chan = 2,
1512 .freq = 2417},
1513 { .chan = 3,
1514 .freq = 2422},
1515 { .chan = 4,
1516 .freq = 2427},
1517 { .chan = 5,
1518 .freq = 2432},
1519 { .chan = 6,
1520 .freq = 2437},
1521 { .chan = 7,
1522 .freq = 2442},
1523 { .chan = 8,
1524 .freq = 2447},
1525 { .chan = 9,
1526 .freq = 2452},
1527 { .chan = 10,
1528 .freq = 2457},
1529 { .chan = 11,
1530 .freq = 2462},
1531 { .chan = 12,
1532 .freq = 2467},
1533 { .chan = 13,
1534 .freq = 2472},
1538 static int acx_setup_modes_bphy(acx_device_t * adev)
1540 int err = 0;
1541 struct ieee80211_hw *hw = adev->ieee;
1542 struct ieee80211_hw_mode *mode;
1544 FN_ENTER;
1546 mode = &adev->modes[0];
1547 mode->mode = MODE_IEEE80211B;
1548 mode->num_channels = acx_chantable_size;
1549 mode->channels = channels;
1550 mode->num_rates = acx_b_ratetable_size;
1551 mode->rates = acx_b_ratetable;
1552 err = ieee80211_register_hwmode(hw,mode);
1554 FN_EXIT1(err);
1555 return err;
1558 static int acx_setup_modes_gphy(acx_device_t * adev)
1560 int err = 0;
1561 struct ieee80211_hw *hw = adev->ieee;
1562 struct ieee80211_hw_mode *mode;
1564 FN_ENTER;
1566 mode = &adev->modes[1];
1567 mode->mode = MODE_IEEE80211G;
1568 mode->num_channels = acx_chantable_size;
1569 mode->channels = channels;
1570 mode->num_rates = acx_g_ratetable_size;
1571 mode->rates = acx_g_ratetable;
1572 err = ieee80211_register_hwmode(hw,mode);
1574 FN_EXIT1(err);
1575 return err;
1579 int acx_setup_modes(acx_device_t * adev)
1581 struct ieee80211_hw *hw = adev->ieee;
1582 struct ieee80211_hw_mode *mode;
1583 int err = -ENOMEM;
1585 FN_ENTER;
1587 if (IS_ACX111(adev)) {
1589 adev->modes = kzalloc(sizeof(struct ieee80211_hw_mode) * 2, GFP_KERNEL);
1590 err = acx_setup_modes_gphy(adev);
1592 mode = &adev->modes[0];
1594 /* from the zd1211rw driver: - do we need to do the same? */
1596 memcpy(mode->channels, channels, sizeof(channels));
1597 memcpy(mode->rates, __acx_rates, sizeof(__acx_rates));
1600 mode->mode = MODE_IEEE80211G;
1601 mode->num_channels = ARRAY_SIZE(channels);
1602 mode->num_rates = 12;
1603 mode->rates = acx_g_ratetable;
1604 } else {
1606 adev->modes = kzalloc(sizeof(struct ieee80211_hw_mode), GFP_KERNEL);
1607 err = acx_setup_modes_bphy(adev);
1609 mode = &adev->modes[1];
1611 /* from the zd1211rw driver: - do we need to do the same? */
1613 memcpy(mode->channels, channels, sizeof(channels));
1614 memcpy(mode->rates, __acx_rates, sizeof(__acx_rates));
1617 mode->mode = MODE_IEEE80211B;
1618 mode->num_channels = ARRAY_SIZE(channels);
1619 mode->num_rates = 4;
1620 mode->rates = acx_b_ratetable;
1623 /* if (err && adev->modes)
1624 kfree(adev->modes);*/
1626 mode->channels = channels;
1627 err = ieee80211_register_hwmode(hw, mode);
1629 FN_EXIT1(err);
1630 return err;
1634 /***********************************************************************
1635 ** acx_fill_beacon_or_proberesp_template
1637 ** Origin: derived from rt2x00 project
1639 static int
1640 acx_fill_beacon_or_proberesp_template(acx_device_t *adev,
1641 struct acx_template_beacon *templ,
1642 struct sk_buff* skb /* in host order! */)
1644 FN_ENTER;
1646 memcpy(templ,skb->data, skb->len);
1647 FN_EXIT1(skb->len);
1648 return skb->len;
1651 /***********************************************************************
1652 ** acx_s_set_beacon_template
1656 static int
1657 acx_s_set_beacon_template(acx_device_t *adev, struct sk_buff *skb)
1659 struct acx_template_beacon bcn;
1660 int len, result;
1662 FN_ENTER;
1663 printk("Size of template: %08X, Size of beacon: %08X\n",sizeof(struct acx_template_beacon),skb->len);
1664 len = acx_fill_beacon_or_proberesp_template(adev, &bcn, skb);
1665 result = acx_s_issue_cmd(adev, ACX1xx_CMD_CONFIG_BEACON, &bcn, len);
1667 FN_EXIT1(result);
1668 return result;
1671 /***********************************************************************
1672 ** acx_cmd_join_bssid
1674 ** Common code for both acx100 and acx111.
1676 /* NB: does NOT match RATE100_nn but matches ACX[111]_SCAN_RATE_n */
1677 static const u8 bitpos2genframe_txrate[] = {
1678 10, /* 0. 1 Mbit/s */
1679 20, /* 1. 2 Mbit/s */
1680 55, /* 2. 5.5 Mbit/s */
1681 0x0B, /* 3. 6 Mbit/s */
1682 0x0F, /* 4. 9 Mbit/s */
1683 110, /* 5. 11 Mbit/s */
1684 0x0A, /* 6. 12 Mbit/s */
1685 0x0E, /* 7. 18 Mbit/s */
1686 220, /* 8. 22 Mbit/s */
1687 0x09, /* 9. 24 Mbit/s */
1688 0x0D, /* 10. 36 Mbit/s */
1689 0x08, /* 11. 48 Mbit/s */
1690 0x0C, /* 12. 54 Mbit/s */
1691 10, /* 13. 1 Mbit/s, should never happen */
1692 10, /* 14. 1 Mbit/s, should never happen */
1693 10, /* 15. 1 Mbit/s, should never happen */
1696 /* Looks scary, eh?
1697 ** Actually, each one compiled into one AND and one SHIFT,
1698 ** 31 bytes in x86 asm (more if uints are replaced by u16/u8) */
1699 static inline unsigned int rate111to5bits(unsigned int rate)
1701 return (rate & 0x7)
1702 | ((rate & RATE111_11) / (RATE111_11 / JOINBSS_RATES_11))
1703 | ((rate & RATE111_22) / (RATE111_22 / JOINBSS_RATES_22));
1707 void acx_s_cmd_join_bssid(acx_device_t *adev, const u8 *bssid)
1709 acx_joinbss_t tmp;
1710 int dtim_interval;
1711 int i;
1713 if (mac_is_zero(bssid))
1714 return;
1716 FN_ENTER;
1718 dtim_interval = (ACX_MODE_0_ADHOC == adev->mode) ?
1719 1 : adev->dtim_interval;
1721 memset(&tmp, 0, sizeof(tmp));
1723 for (i = 0; i < ETH_ALEN; i++) {
1724 tmp.bssid[i] = bssid[ETH_ALEN-1 - i];
1727 tmp.beacon_interval = cpu_to_le16(adev->beacon_interval);
1729 /* Basic rate set. Control frame responses (such as ACK or CTS frames)
1730 ** are sent with one of these rates */
1731 if (IS_ACX111(adev)) {
1732 /* It was experimentally determined that rates_basic
1733 ** can take 11g rates as well, not only rates
1734 ** defined with JOINBSS_RATES_BASIC111_nnn.
1735 ** Just use RATE111_nnn constants... */
1736 tmp.u.acx111.dtim_interval = dtim_interval;
1737 tmp.u.acx111.rates_basic = cpu_to_le16(adev->rate_basic);
1738 log(L_ASSOC, "rates_basic:%04X, rates_supported:%04X\n",
1739 adev->rate_basic, adev->rate_oper);
1740 } else {
1741 tmp.u.acx100.dtim_interval = dtim_interval;
1742 tmp.u.acx100.rates_basic = rate111to5bits(adev->rate_basic);
1743 tmp.u.acx100.rates_supported = rate111to5bits(adev->rate_oper);
1744 log(L_ASSOC, "rates_basic:%04X->%02X, "
1745 "rates_supported:%04X->%02X\n",
1746 adev->rate_basic, tmp.u.acx100.rates_basic,
1747 adev->rate_oper, tmp.u.acx100.rates_supported);
1750 /* Setting up how Beacon, Probe Response, RTS, and PS-Poll frames
1751 ** will be sent (rate/modulation/preamble) */
1752 tmp.genfrm_txrate = bitpos2genframe_txrate[lowest_bit(adev->rate_basic)];
1753 tmp.genfrm_mod_pre = 0; /* FIXME: was = adev->capab_short (which was always 0); */
1754 /* we can use short pre *if* all peers can understand it */
1755 /* FIXME #2: we need to correctly set PBCC/OFDM bits here too */
1757 /* we switch fw to STA mode in MONITOR mode, it seems to be
1758 ** the only mode where fw does not emit beacons by itself
1759 ** but allows us to send anything (we really want to retain
1760 ** ability to tx arbitrary frames in MONITOR mode)
1762 tmp.macmode = (adev->mode != ACX_MODE_MONITOR ? adev->mode : ACX_MODE_2_STA);
1763 tmp.channel = adev->channel;
1764 tmp.essid_len = adev->essid_len;
1766 memcpy(tmp.essid, adev->essid, tmp.essid_len);
1767 acx_s_issue_cmd(adev, ACX1xx_CMD_JOIN, &tmp, tmp.essid_len + 0x11);
1769 log(L_ASSOC|L_DEBUG, "BSS_Type = %u\n", tmp.macmode);
1770 acxlog_mac(L_ASSOC|L_DEBUG, "JoinBSSID MAC:", adev->bssid, "\n");
1772 /* acx_update_capabilities(adev); */
1773 FN_EXIT0;
1776 /***********************************************************************
1777 ** acxpci_i_set_multicast_list
1778 ** FIXME: most likely needs refinement
1781 void acx_i_set_multicast_list(struct ieee80211_hw *hw,
1782 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
1783 unsigned short netflags, int mc_count)
1784 #else
1785 unsigned int changed_flags,
1786 unsigned int *total_flags,
1787 int mc_count, struct dev_addr_list *mc_list)
1788 #endif
1790 acx_device_t *adev = ieee2adev(hw);
1791 unsigned long flags;
1793 FN_ENTER;
1795 acx_lock(adev, flags);
1797 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
1798 changed_flags &= (FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL |
1799 FIF_CONTROL | FIF_OTHER_BSS);
1800 *total_flags &= (FIF_PROMISC_IN_BSS | FIF_ALLMULTI | FIF_FCSFAIL |
1801 FIF_CONTROL | FIF_OTHER_BSS);
1802 /* if ((changed_flags & (FIF_PROMISC_IN_BSS | FIF_ALLMULTI)) == 0)
1803 return; */
1804 #endif
1806 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
1807 if (netflags & (IFF_PROMISC | IFF_ALLMULTI)) {
1808 #else
1809 if (*total_flags) {
1810 #endif
1811 SET_BIT(adev->rx_config_1, RX_CFG1_RCV_PROMISCUOUS);
1812 CLEAR_BIT(adev->rx_config_1, RX_CFG1_FILTER_ALL_MULTI);
1813 SET_BIT(adev->set_mask, SET_RXCONFIG);
1814 /* let kernel know in case *we* needed to set promiscuous */
1815 } else {
1816 CLEAR_BIT(adev->rx_config_1, RX_CFG1_RCV_PROMISCUOUS);
1817 SET_BIT(adev->rx_config_1, RX_CFG1_FILTER_ALL_MULTI);
1818 SET_BIT(adev->set_mask, SET_RXCONFIG);
1821 /* cannot update card settings directly here, atomic context */
1822 acx_schedule_task(adev, ACX_AFTER_IRQ_UPDATE_CARD_CFG);
1824 acx_unlock(adev, flags);
1826 FN_EXIT0;
1829 /***********************************************************************
1830 ** acx111 feature config
1832 ** Obvious
1834 static int
1835 acx111_s_get_feature_config(acx_device_t * adev,
1836 u32 * feature_options, u32 * data_flow_options)
1838 struct acx111_ie_feature_config feat;
1840 FN_ENTER;
1842 if (!IS_ACX111(adev)) {
1843 return NOT_OK;
1846 memset(&feat, 0, sizeof(feat));
1848 if (OK != acx_s_interrogate(adev, &feat, ACX1xx_IE_FEATURE_CONFIG)) {
1849 FN_EXIT1(NOT_OK);
1850 return NOT_OK;
1852 log(L_DEBUG,
1853 "got Feature option:0x%X, DataFlow option: 0x%X\n",
1854 feat.feature_options, feat.data_flow_options);
1856 if (feature_options)
1857 *feature_options = le32_to_cpu(feat.feature_options);
1858 if (data_flow_options)
1859 *data_flow_options = le32_to_cpu(feat.data_flow_options);
1861 FN_EXIT0;
1862 return OK;
1866 static int
1867 acx111_s_set_feature_config(acx_device_t * adev,
1868 u32 feature_options, u32 data_flow_options,
1869 unsigned int mode
1870 /* 0 == remove, 1 == add, 2 == set */ )
1872 struct acx111_ie_feature_config feat;
1874 FN_ENTER;
1876 if (!IS_ACX111(adev)) {
1877 FN_EXIT1(NOT_OK);
1878 return NOT_OK;
1881 if ((mode < 0) || (mode > 2)) {
1882 FN_EXIT1(NOT_OK);
1883 return NOT_OK;
1886 if (mode != 2)
1887 /* need to modify old data */
1888 acx111_s_get_feature_config(adev, &feat.feature_options,
1889 &feat.data_flow_options);
1890 else {
1891 /* need to set a completely new value */
1892 feat.feature_options = 0;
1893 feat.data_flow_options = 0;
1896 if (mode == 0) { /* remove */
1897 CLEAR_BIT(feat.feature_options, cpu_to_le32(feature_options));
1898 CLEAR_BIT(feat.data_flow_options,
1899 cpu_to_le32(data_flow_options));
1900 } else { /* add or set */
1901 SET_BIT(feat.feature_options, cpu_to_le32(feature_options));
1902 SET_BIT(feat.data_flow_options, cpu_to_le32(data_flow_options));
1905 log(L_DEBUG,
1906 "old: feature 0x%08X dataflow 0x%08X. mode: %u\n"
1907 "new: feature 0x%08X dataflow 0x%08X\n",
1908 feature_options, data_flow_options, mode,
1909 le32_to_cpu(feat.feature_options),
1910 le32_to_cpu(feat.data_flow_options));
1912 if (OK != acx_s_configure(adev, &feat, ACX1xx_IE_FEATURE_CONFIG)) {
1913 FN_EXIT1(NOT_OK);
1914 return NOT_OK;
1917 FN_EXIT0;
1918 return OK;
1921 static inline int acx111_s_feature_off(acx_device_t * adev, u32 f, u32 d)
1923 return acx111_s_set_feature_config(adev, f, d, 0);
1925 static inline int acx111_s_feature_on(acx_device_t * adev, u32 f, u32 d)
1927 return acx111_s_set_feature_config(adev, f, d, 1);
1929 static inline int acx111_s_feature_set(acx_device_t * adev, u32 f, u32 d)
1931 return acx111_s_set_feature_config(adev, f, d, 2);
1935 /***********************************************************************
1936 ** acx100_s_init_memory_pools
1938 static int
1939 acx100_s_init_memory_pools(acx_device_t * adev, const acx_ie_memmap_t * mmt)
1941 acx100_ie_memblocksize_t MemoryBlockSize;
1942 acx100_ie_memconfigoption_t MemoryConfigOption;
1943 int TotalMemoryBlocks;
1944 int RxBlockNum;
1945 int TotalRxBlockSize;
1946 int TxBlockNum;
1947 int TotalTxBlockSize;
1949 FN_ENTER;
1951 /* Let's see if we can follow this:
1952 first we select our memory block size (which I think is
1953 completely arbitrary) */
1954 MemoryBlockSize.size = cpu_to_le16(adev->memblocksize);
1956 /* Then we alert the card to our decision of block size */
1957 if (OK != acx_s_configure(adev, &MemoryBlockSize, ACX100_IE_BLOCK_SIZE)) {
1958 goto bad;
1961 /* We figure out how many total blocks we can create, using
1962 the block size we chose, and the beginning and ending
1963 memory pointers, i.e.: end-start/size */
1964 TotalMemoryBlocks =
1965 (le32_to_cpu(mmt->PoolEnd) -
1966 le32_to_cpu(mmt->PoolStart)) / adev->memblocksize;
1968 log(L_DEBUG, "TotalMemoryBlocks=%u (%u bytes)\n",
1969 TotalMemoryBlocks, TotalMemoryBlocks * adev->memblocksize);
1971 /* MemoryConfigOption.DMA_config bitmask:
1972 access to ACX memory is to be done:
1973 0x00080000 using PCI conf space?!
1974 0x00040000 using IO instructions?
1975 0x00000000 using memory access instructions
1976 0x00020000 using local memory block linked list (else what?)
1977 0x00010000 using host indirect descriptors (else host must access ACX memory?)
1979 if (IS_PCI(adev)) {
1980 MemoryConfigOption.DMA_config = cpu_to_le32(0x30000);
1981 /* Declare start of the Rx host pool */
1982 MemoryConfigOption.pRxHostDesc =
1983 cpu2acx(adev->rxhostdesc_startphy);
1984 log(L_DEBUG, "pRxHostDesc 0x%08X, rxhostdesc_startphy 0x%lX\n",
1985 acx2cpu(MemoryConfigOption.pRxHostDesc),
1986 (long)adev->rxhostdesc_startphy);
1987 } else {
1988 MemoryConfigOption.DMA_config = cpu_to_le32(0x20000);
1991 /* 50% of the allotment of memory blocks go to tx descriptors */
1992 TxBlockNum = TotalMemoryBlocks / 2;
1993 MemoryConfigOption.TxBlockNum = cpu_to_le16(TxBlockNum);
1995 /* and 50% go to the rx descriptors */
1996 RxBlockNum = TotalMemoryBlocks - TxBlockNum;
1997 MemoryConfigOption.RxBlockNum = cpu_to_le16(RxBlockNum);
1999 /* size of the tx and rx descriptor queues */
2000 TotalTxBlockSize = TxBlockNum * adev->memblocksize;
2001 TotalRxBlockSize = RxBlockNum * adev->memblocksize;
2002 log(L_DEBUG, "TxBlockNum %u RxBlockNum %u TotalTxBlockSize %u "
2003 "TotalTxBlockSize %u\n", TxBlockNum, RxBlockNum,
2004 TotalTxBlockSize, TotalRxBlockSize);
2007 /* align the tx descriptor queue to an alignment of 0x20 (32 bytes) */
2008 MemoryConfigOption.rx_mem =
2009 cpu_to_le32((le32_to_cpu(mmt->PoolStart) + 0x1f) & ~0x1f);
2011 /* align the rx descriptor queue to units of 0x20
2012 * and offset it by the tx descriptor queue */
2013 MemoryConfigOption.tx_mem =
2014 cpu_to_le32((le32_to_cpu(mmt->PoolStart) + TotalRxBlockSize +
2015 0x1f) & ~0x1f);
2016 log(L_DEBUG, "rx_mem %08X rx_mem %08X\n", MemoryConfigOption.tx_mem,
2017 MemoryConfigOption.rx_mem);
2019 /* alert the device to our decision */
2020 if (OK !=
2021 acx_s_configure(adev, &MemoryConfigOption,
2022 ACX1xx_IE_MEMORY_CONFIG_OPTIONS)) {
2023 goto bad;
2026 /* and tell the device to kick it into gear */
2027 if (OK != acx_s_issue_cmd(adev, ACX100_CMD_INIT_MEMORY, NULL, 0)) {
2028 goto bad;
2030 FN_EXIT1(OK);
2031 return OK;
2032 bad:
2033 FN_EXIT1(NOT_OK);
2034 return NOT_OK;
2038 /***********************************************************************
2039 ** acx100_s_create_dma_regions
2041 ** Note that this fn messes up heavily with hardware, but we cannot
2042 ** lock it (we need to sleep). Not a problem since IRQs can't happen
2044 /* OLD CODE? - let's rewrite it! */
2045 static int acx100_s_create_dma_regions(acx_device_t * adev)
2047 acx100_ie_queueconfig_t queueconf;
2048 acx_ie_memmap_t memmap;
2049 int res = NOT_OK;
2050 u32 tx_queue_start, rx_queue_start;
2052 FN_ENTER;
2054 /* read out the acx100 physical start address for the queues */
2055 if (OK != acx_s_interrogate(adev, &memmap, ACX1xx_IE_MEMORY_MAP)) {
2056 goto fail;
2059 tx_queue_start = le32_to_cpu(memmap.QueueStart);
2060 rx_queue_start = tx_queue_start + TX_CNT * sizeof(txdesc_t);
2062 log(L_DEBUG, "initializing Queue Indicator\n");
2064 memset(&queueconf, 0, sizeof(queueconf));
2066 /* Not needed for PCI, so we can avoid setting them altogether */
2067 if (IS_USB(adev)) {
2068 queueconf.NumTxDesc = USB_TX_CNT;
2069 queueconf.NumRxDesc = USB_RX_CNT;
2072 /* calculate size of queues */
2073 queueconf.AreaSize = cpu_to_le32(TX_CNT * sizeof(txdesc_t) +
2074 RX_CNT * sizeof(rxdesc_t) + 8);
2075 queueconf.NumTxQueues = 1; /* number of tx queues */
2076 /* sets the beginning of the tx descriptor queue */
2077 queueconf.TxQueueStart = memmap.QueueStart;
2078 /* done by memset: queueconf.TxQueuePri = 0; */
2079 queueconf.RxQueueStart = cpu_to_le32(rx_queue_start);
2080 queueconf.QueueOptions = 1; /* auto reset descriptor */
2081 /* sets the end of the rx descriptor queue */
2082 queueconf.QueueEnd =
2083 cpu_to_le32(rx_queue_start + RX_CNT * sizeof(rxdesc_t)
2085 /* sets the beginning of the next queue */
2086 queueconf.HostQueueEnd =
2087 cpu_to_le32(le32_to_cpu(queueconf.QueueEnd) + 8);
2088 if (OK != acx_s_configure(adev, &queueconf, ACX1xx_IE_QUEUE_CONFIG)) {
2089 goto fail;
2092 if (IS_PCI(adev)) {
2093 /* sets the beginning of the rx descriptor queue, after the tx descrs */
2094 if (OK != acxpci_s_create_hostdesc_queues(adev))
2095 goto fail;
2096 acxpci_create_desc_queues(adev, tx_queue_start, rx_queue_start);
2099 if (OK != acx_s_interrogate(adev, &memmap, ACX1xx_IE_MEMORY_MAP)) {
2100 goto fail;
2103 memmap.PoolStart = cpu_to_le32((le32_to_cpu(memmap.QueueEnd) + 4 +
2104 0x1f) & ~0x1f);
2106 if (OK != acx_s_configure(adev, &memmap, ACX1xx_IE_MEMORY_MAP)) {
2107 goto fail;
2110 if (OK != acx100_s_init_memory_pools(adev, &memmap)) {
2111 goto fail;
2114 res = OK;
2115 goto end;
2117 fail:
2118 acx_s_mwait(1000); /* ? */
2119 if (IS_PCI(adev))
2120 acxpci_free_desc_queues(adev);
2121 end:
2122 FN_EXIT1(res);
2123 return res;
2127 /***********************************************************************
2128 ** acx111_s_create_dma_regions
2130 ** Note that this fn messes heavily with hardware, but we cannot
2131 ** lock it (we need to sleep). Not a problem since IRQs can't happen
2133 #define ACX111_PERCENT(percent) ((percent)/5)
2135 static int acx111_s_create_dma_regions(acx_device_t * adev)
2137 struct acx111_ie_memoryconfig memconf;
2138 struct acx111_ie_queueconfig queueconf;
2139 u32 tx_queue_start, rx_queue_start;
2141 FN_ENTER;
2143 /* Calculate memory positions and queue sizes */
2145 /* Set up our host descriptor pool + data pool */
2146 if (IS_PCI(adev)) {
2147 if (OK != acxpci_s_create_hostdesc_queues(adev))
2148 goto fail;
2151 memset(&memconf, 0, sizeof(memconf));
2152 /* the number of STAs (STA contexts) to support
2153 ** NB: was set to 1 and everything seemed to work nevertheless... */
2154 memconf.no_of_stations = 1; //cpu_to_le16(VEC_SIZE(adev->sta_list));
2155 /* specify the memory block size. Default is 256 */
2156 memconf.memory_block_size = cpu_to_le16(adev->memblocksize);
2157 /* let's use 50%/50% for tx/rx (specify percentage, units of 5%) */
2158 memconf.tx_rx_memory_block_allocation = ACX111_PERCENT(50);
2159 /* set the count of our queues
2160 ** NB: struct acx111_ie_memoryconfig shall be modified
2161 ** if we ever will switch to more than one rx and/or tx queue */
2162 memconf.count_rx_queues = 1;
2163 memconf.count_tx_queues = 1;
2164 /* 0 == Busmaster Indirect Memory Organization, which is what we want
2165 * (using linked host descs with their allocated mem).
2166 * 2 == Generic Bus Slave */
2167 /* done by memset: memconf.options = 0; */
2168 /* let's use 25% for fragmentations and 75% for frame transfers
2169 * (specified in units of 5%) */
2170 memconf.fragmentation = ACX111_PERCENT(75);
2171 /* Rx descriptor queue config */
2172 memconf.rx_queue1_count_descs = RX_CNT;
2173 memconf.rx_queue1_type = 7; /* must be set to 7 */
2174 /* done by memset: memconf.rx_queue1_prio = 0; low prio */
2175 if (IS_PCI(adev)) {
2176 memconf.rx_queue1_host_rx_start =
2177 cpu2acx(adev->rxhostdesc_startphy);
2179 /* Tx descriptor queue config */
2180 memconf.tx_queue1_count_descs = TX_CNT;
2181 /* done by memset: memconf.tx_queue1_attributes = 0; lowest priority */
2183 /* NB1: this looks wrong: (memconf,ACX1xx_IE_QUEUE_CONFIG),
2184 ** (queueconf,ACX1xx_IE_MEMORY_CONFIG_OPTIONS) look swapped, eh?
2185 ** But it is actually correct wrt IE numbers.
2186 ** NB2: sizeof(memconf) == 28 == 0x1c but configure(ACX1xx_IE_QUEUE_CONFIG)
2187 ** writes 0x20 bytes (because same IE for acx100 uses struct acx100_ie_queueconfig
2188 ** which is 4 bytes larger. what a mess. TODO: clean it up) */
2189 if (OK != acx_s_configure(adev, &memconf, ACX1xx_IE_QUEUE_CONFIG)) {
2190 goto fail;
2193 acx_s_interrogate(adev, &queueconf, ACX1xx_IE_MEMORY_CONFIG_OPTIONS);
2195 tx_queue_start = le32_to_cpu(queueconf.tx1_queue_address);
2196 rx_queue_start = le32_to_cpu(queueconf.rx1_queue_address);
2198 log(L_INIT, "dump queue head (from card):\n"
2199 "len: %u\n"
2200 "tx_memory_block_address: %X\n"
2201 "rx_memory_block_address: %X\n"
2202 "tx1_queue address: %X\n"
2203 "rx1_queue address: %X\n",
2204 le16_to_cpu(queueconf.len),
2205 le32_to_cpu(queueconf.tx_memory_block_address),
2206 le32_to_cpu(queueconf.rx_memory_block_address),
2207 tx_queue_start, rx_queue_start);
2209 if (IS_PCI(adev))
2210 acxpci_create_desc_queues(adev, tx_queue_start, rx_queue_start);
2212 FN_EXIT1(OK);
2213 return OK;
2214 fail:
2215 if (IS_PCI(adev))
2216 acxpci_free_desc_queues(adev);
2218 FN_EXIT1(NOT_OK);
2219 return NOT_OK;
2223 /***********************************************************************
2225 static void acx_s_initialize_rx_config(acx_device_t * adev)
2227 struct {
2228 u16 id;
2229 u16 len;
2230 u16 rx_cfg1;
2231 u16 rx_cfg2;
2232 } ACX_PACKED cfg;
2233 switch (adev->mode) {
2234 case ACX_MODE_MONITOR:
2235 adev->rx_config_1 = (u16) (0
2236 /* | RX_CFG1_INCLUDE_RXBUF_HDR */
2237 /* | RX_CFG1_FILTER_SSID */
2238 /* | RX_CFG1_FILTER_BCAST */
2239 /* | RX_CFG1_RCV_MC_ADDR1 */
2240 /* | RX_CFG1_RCV_MC_ADDR0 */
2241 /* | RX_CFG1_FILTER_ALL_MULTI */
2242 /* | RX_CFG1_FILTER_BSSID */
2243 /* | RX_CFG1_FILTER_MAC */
2244 | RX_CFG1_RCV_PROMISCUOUS
2245 | RX_CFG1_INCLUDE_FCS
2246 /* | RX_CFG1_INCLUDE_PHY_HDR */
2248 adev->rx_config_2 = (u16) (0
2249 | RX_CFG2_RCV_ASSOC_REQ
2250 | RX_CFG2_RCV_AUTH_FRAMES
2251 | RX_CFG2_RCV_BEACON_FRAMES
2252 | RX_CFG2_RCV_CONTENTION_FREE
2253 | RX_CFG2_RCV_CTRL_FRAMES
2254 | RX_CFG2_RCV_DATA_FRAMES
2255 | RX_CFG2_RCV_BROKEN_FRAMES
2256 | RX_CFG2_RCV_MGMT_FRAMES
2257 | RX_CFG2_RCV_PROBE_REQ
2258 | RX_CFG2_RCV_PROBE_RESP
2259 | RX_CFG2_RCV_ACK_FRAMES
2260 | RX_CFG2_RCV_OTHER);
2261 break;
2262 default:
2263 adev->rx_config_1 = (u16) (0
2264 /* | RX_CFG1_INCLUDE_RXBUF_HDR */
2265 /* | RX_CFG1_FILTER_SSID */
2266 /* | RX_CFG1_FILTER_BCAST */
2267 /* | RX_CFG1_RCV_MC_ADDR1 */
2268 /* | RX_CFG1_RCV_MC_ADDR0 */
2269 /* | RX_CFG1_FILTER_ALL_MULTI */
2270 /* | RX_CFG1_FILTER_BSSID */
2271 /* | RX_CFG1_FILTER_MAC */
2272 | RX_CFG1_RCV_PROMISCUOUS
2273 /* | RX_CFG1_INCLUDE_FCS */
2274 /* | RX_CFG1_INCLUDE_PHY_HDR */
2276 adev->rx_config_2 = (u16) (0
2277 | RX_CFG2_RCV_ASSOC_REQ
2278 | RX_CFG2_RCV_AUTH_FRAMES
2279 | RX_CFG2_RCV_BEACON_FRAMES
2280 | RX_CFG2_RCV_CONTENTION_FREE
2281 | RX_CFG2_RCV_CTRL_FRAMES
2282 | RX_CFG2_RCV_DATA_FRAMES
2283 /*| RX_CFG2_RCV_BROKEN_FRAMES */
2284 | RX_CFG2_RCV_MGMT_FRAMES
2285 | RX_CFG2_RCV_PROBE_REQ
2286 | RX_CFG2_RCV_PROBE_RESP
2287 | RX_CFG2_RCV_ACK_FRAMES
2288 | RX_CFG2_RCV_OTHER);
2289 break;
2291 adev->rx_config_1 |= RX_CFG1_INCLUDE_RXBUF_HDR;
2293 if ((adev->rx_config_1 & RX_CFG1_INCLUDE_PHY_HDR)
2294 || (adev->firmware_numver >= 0x02000000))
2295 adev->phy_header_len = IS_ACX111(adev) ? 8 : 4;
2296 else
2297 adev->phy_header_len = 0;
2299 log(L_INIT, "setting RXconfig to %04X:%04X\n",
2300 adev->rx_config_1, adev->rx_config_2);
2301 cfg.rx_cfg1 = cpu_to_le16(adev->rx_config_1);
2302 cfg.rx_cfg2 = cpu_to_le16(adev->rx_config_2);
2303 acx_s_configure(adev, &cfg, ACX1xx_IE_RXCONFIG);
2307 /***********************************************************************
2308 ** FIXME: this should be solved in a general way for all radio types
2309 ** by decoding the radio firmware module,
2310 ** since it probably has some standard structure describing how to
2311 ** set the power level of the radio module which it controls.
2312 ** Or maybe not, since the radio module probably has a function interface
2313 ** instead which then manages Tx level programming :-\
2315 ** Obvious
2317 static int acx111_s_set_tx_level(acx_device_t * adev, u8 level_dbm)
2319 struct acx111_ie_tx_level tx_level;
2321 /* my acx111 card has two power levels in its configoptions (== EEPROM):
2322 * 1 (30mW) [15dBm]
2323 * 2 (10mW) [10dBm]
2324 * For now, just assume all other acx111 cards have the same.
2325 * FIXME: Ideally we would query it here, but we first need a
2326 * standard way to query individual configoptions easily.
2327 * Well, now we have proper cfgopt txpower variables, but this still
2328 * hasn't been done yet, since it also requires dBm <-> mW conversion here... */
2329 if (level_dbm <= 12) {
2330 tx_level.level = 2; /* 10 dBm */
2331 adev->tx_level_dbm = 10;
2332 } else {
2333 tx_level.level = 1; /* 15 dBm */
2334 adev->tx_level_dbm = 15;
2336 if (level_dbm != adev->tx_level_dbm)
2337 log(L_INIT, "acx111 firmware has specific "
2338 "power levels only: adjusted %d dBm to %d dBm!\n",
2339 level_dbm, adev->tx_level_dbm);
2341 return acx_s_configure(adev, &tx_level, ACX1xx_IE_DOT11_TX_POWER_LEVEL);
2344 static int acx_s_set_tx_level(acx_device_t *adev, u8 level_dbm)
2346 if (IS_ACX111(adev)) {
2347 return acx111_s_set_tx_level(adev, level_dbm);
2349 if (IS_PCI(adev)) {
2350 return acx100pci_s_set_tx_level(adev, level_dbm);
2353 return OK;
2357 /***********************************************************************
2358 ** acx_s_set_defaults
2360 void acx_s_set_defaults(acx_device_t * adev)
2362 struct ieee80211_conf *conf = &adev->ieee->conf;
2363 unsigned long flags;
2365 FN_ENTER;
2367 acx_lock(adev, flags);
2368 /* do it before getting settings, prevent bogus channel 0 warning */
2369 adev->channel = 1;
2371 /* query some settings from the card.
2372 * NOTE: for some settings, e.g. CCA and ED (ACX100!), an initial
2373 * query is REQUIRED, otherwise the card won't work correctly! */
2374 adev->get_mask =
2375 GETSET_ANTENNA | GETSET_SENSITIVITY | GETSET_STATION_ID |
2376 GETSET_REG_DOMAIN;
2377 /* Only ACX100 supports ED and CCA */
2378 if (IS_ACX100(adev))
2379 adev->get_mask |= GETSET_CCA | GETSET_ED_THRESH;
2381 acx_unlock(adev, flags);
2383 acx_s_update_card_settings(adev);
2385 acx_lock(adev, flags);
2387 /* set our global interrupt mask */
2388 if (IS_PCI(adev))
2389 acxpci_set_interrupt_mask(adev);
2391 adev->led_power = 1; /* LED is active on startup */
2392 adev->brange_max_quality = 60; /* LED blink max quality is 60 */
2393 adev->brange_time_last_state_change = jiffies;
2395 /* copy the MAC address we just got from the card
2396 * into our MAC address used during current 802.11 session */
2397 SET_IEEE80211_PERM_ADDR(adev->ieee, adev->dev_addr);
2398 MAC_BCAST(adev->ap);
2400 adev->essid_len =
2401 snprintf(adev->essid, sizeof(adev->essid), "STA%02X%02X%02X",
2402 adev->dev_addr[3], adev->dev_addr[4], adev->dev_addr[5]);
2403 adev->essid_active = 1;
2405 /* we have a nick field to waste, so why not abuse it
2406 * to announce the driver version? ;-) */
2407 strncpy(adev->nick, "acx " ACX_RELEASE, IW_ESSID_MAX_SIZE);
2409 if (IS_PCI(adev)) { /* FIXME: this should be made to apply to USB, too! */
2410 /* first regulatory domain entry in EEPROM == default reg. domain */
2411 adev->reg_dom_id = adev->cfgopt_domains.list[0];
2414 /* 0xffff would be better, but then we won't get a "scan complete"
2415 * interrupt, so our current infrastructure will fail: */
2416 adev->scan_count = 1;
2417 adev->scan_mode = ACX_SCAN_OPT_ACTIVE;
2418 adev->scan_duration = 100;
2419 adev->scan_probe_delay = 200;
2420 /* reported to break scanning: adev->scan_probe_delay = adev->cfgopt_probe_delay; */
2421 adev->scan_rate = ACX_SCAN_RATE_1;
2424 adev->mode = ACX_MODE_2_STA;
2425 adev->listen_interval = 100;
2426 adev->beacon_interval = DEFAULT_BEACON_INTERVAL;
2427 adev->dtim_interval = DEFAULT_DTIM_INTERVAL;
2429 adev->msdu_lifetime = DEFAULT_MSDU_LIFETIME;
2431 adev->rts_threshold = DEFAULT_RTS_THRESHOLD;
2432 adev->frag_threshold = 2346;
2434 /* use standard default values for retry limits */
2435 adev->short_retry = 7; /* max. retries for (short) non-RTS packets */
2436 adev->long_retry = 4; /* max. retries for long (RTS) packets */
2438 adev->preamble_mode = 2; /* auto */
2439 adev->fallback_threshold = 3;
2440 adev->stepup_threshold = 10;
2441 adev->rate_bcast = RATE111_1;
2442 adev->rate_bcast100 = RATE100_1;
2443 adev->rate_basic = RATE111_1 | RATE111_2;
2444 adev->rate_auto = 1;
2445 if (IS_ACX111(adev)) {
2446 adev->rate_oper = RATE111_ALL;
2447 } else {
2448 adev->rate_oper = RATE111_ACX100_COMPAT;
2451 /* Supported Rates element - the rates here are given in units of
2452 * 500 kbit/s, plus 0x80 added. See 802.11-1999.pdf item 7.3.2.2 */
2453 acx_l_update_ratevector(adev);
2455 /* set some more defaults */
2456 if (IS_ACX111(adev)) {
2457 /* 30mW (15dBm) is default, at least in my acx111 card: */
2458 adev->tx_level_dbm = 15;
2459 conf->power_level = adev->tx_level_dbm;
2460 acx_unlock(adev, flags);
2461 acx_s_set_tx_level(adev, adev->tx_level_dbm);
2462 SET_BIT(adev->set_mask, GETSET_TXPOWER);
2463 acx_lock(adev, flags);
2464 } else {
2465 /* don't use max. level, since it might be dangerous
2466 * (e.g. WRT54G people experience
2467 * excessive Tx power damage!) */
2468 adev->tx_level_dbm = 18;
2469 conf->power_level = adev->tx_level_dbm;
2470 acx_unlock(adev, flags);
2471 acx_s_set_tx_level(adev, adev->tx_level_dbm);
2472 SET_BIT(adev->set_mask, GETSET_TXPOWER);
2473 acx_lock(adev, flags);
2476 /* adev->tx_level_auto = 1; */
2477 if (IS_ACX111(adev)) {
2478 /* start with sensitivity level 1 out of 3: */
2479 adev->sensitivity = 1;
2482 /* #define ENABLE_POWER_SAVE */
2483 #ifdef ENABLE_POWER_SAVE
2484 adev->ps_wakeup_cfg = PS_CFG_ENABLE | PS_CFG_WAKEUP_ALL_BEAC;
2485 adev->ps_listen_interval = 1;
2486 adev->ps_options =
2487 PS_OPT_ENA_ENHANCED_PS | PS_OPT_TX_PSPOLL | PS_OPT_STILL_RCV_BCASTS;
2488 adev->ps_hangover_period = 30;
2489 adev->ps_enhanced_transition_time = 0;
2490 #else
2491 adev->ps_wakeup_cfg = 0;
2492 adev->ps_listen_interval = 0;
2493 adev->ps_options = 0;
2494 adev->ps_hangover_period = 0;
2495 adev->ps_enhanced_transition_time = 0;
2496 #endif
2498 /* These settings will be set in fw on ifup */
2499 adev->set_mask = 0 | GETSET_RETRY | SET_MSDU_LIFETIME
2500 /* configure card to do rate fallback when in auto rate mode */
2501 | SET_RATE_FALLBACK | SET_RXCONFIG | GETSET_TXPOWER
2502 /* better re-init the antenna value we got above */
2503 | GETSET_ANTENNA
2504 #if POWER_SAVE_80211
2505 | GETSET_POWER_80211
2506 #endif
2509 acx_unlock(adev, flags);
2510 acx_lock_unhold(); /* hold time 844814 CPU ticks @2GHz */
2512 acx_s_initialize_rx_config(adev);
2514 FN_EXIT0;
2518 /***********************************************************************
2519 ** acx_l_process_rxbuf
2521 ** NB: used by USB code also
2523 void acx_l_process_rxbuf(acx_device_t * adev, rxbuffer_t * rxbuf)
2525 struct ieee80211_hdr *hdr;
2526 u16 fc, buf_len;
2528 FN_ENTER;
2530 hdr = acx_get_wlan_hdr(adev, rxbuf);
2531 fc = le16_to_cpu(hdr->frame_control);
2532 /* length of frame from control field to first byte of FCS */
2533 buf_len = RXBUF_BYTES_RCVD(adev, rxbuf);
2535 if (unlikely(acx_debug & L_DATA)) {
2536 printk("rx: 802.11 buf[%u]: \n", buf_len);
2537 acx_dump_bytes(hdr, buf_len);
2541 acx_l_rx(adev, rxbuf);
2542 /* Now check Rx quality level, AFTER processing packet.
2543 * I tried to figure out how to map these levels to dBm
2544 * values, but for the life of me I really didn't
2545 * manage to get it. Either these values are not meant to
2546 * be expressed in dBm, or it's some pretty complicated
2547 * calculation. */
2549 #ifdef FROM_SCAN_SOURCE_ONLY
2550 /* only consider packets originating from the MAC
2551 * address of the device that's managing our BSSID.
2552 * Disable it for now, since it removes information (levels
2553 * from different peers) and slows the Rx path. *//*
2554 if (adev->ap_client && mac_is_equal(hdr->a2, adev->ap_client->address)) {
2556 #endif
2558 FN_EXIT0;
2562 /***********************************************************************
2563 ** acx_l_handle_txrate_auto
2565 ** Theory of operation:
2566 ** client->rate_cap is a bitmask of rates client is capable of.
2567 ** client->rate_cfg is a bitmask of allowed (configured) rates.
2568 ** It is set as a result of iwconfig rate N [auto]
2569 ** or iwpriv set_rates "N,N,N N,N,N" commands.
2570 ** It can be fixed (e.g. 0x0080 == 18Mbit only),
2571 ** auto (0x00ff == 18Mbit or any lower value),
2572 ** and code handles any bitmask (0x1081 == try 54Mbit,18Mbit,1Mbit _only_).
2574 ** client->rate_cur is a value for rate111 field in tx descriptor.
2575 ** It is always set to txrate_cfg sans zero or more most significant
2576 ** bits. This routine handles selection of new rate_cur value depending on
2577 ** outcome of last tx event.
2579 ** client->rate_100 is a precalculated rate value for acx100
2580 ** (we can do without it, but will need to calculate it on each tx).
2582 ** You cannot configure mixed usage of 5.5 and/or 11Mbit rate
2583 ** with PBCC and CCK modulation. Either both at CCK or both at PBCC.
2584 ** In theory you can implement it, but so far it is considered not worth doing.
2586 ** 22Mbit, of course, is PBCC always. */
2588 /* maps acx100 tx descr rate field to acx111 one */
2590 static u16 rate100to111(u8 r)
2592 switch (r) {
2593 case RATE100_1:
2594 return RATE111_1;
2595 case RATE100_2:
2596 return RATE111_2;
2597 case RATE100_5:
2598 case (RATE100_5 | RATE100_PBCC511):
2599 return RATE111_5;
2600 case RATE100_11:
2601 case (RATE100_11 | RATE100_PBCC511):
2602 return RATE111_11;
2603 case RATE100_22:
2604 return RATE111_22;
2605 default:
2606 printk("acx: unexpected acx100 txrate: %u! "
2607 "Please report\n", r);
2608 return RATE111_1;
2615 acx_i_start_xmit(struct ieee80211_hw *hw,
2616 struct sk_buff *skb, struct ieee80211_tx_control *ctl)
2618 acx_device_t *adev = ieee2adev(hw);
2619 tx_t *tx;
2620 void *txbuf;
2621 unsigned long flags;
2623 int txresult = NOT_OK;
2625 FN_ENTER;
2627 acx_lock(adev, flags);
2629 if (unlikely(!skb)) {
2630 /* indicate success */
2631 txresult = OK;
2632 goto end;
2635 if (unlikely(!adev)) {
2636 goto end;
2640 if (unlikely(!(adev->dev_state_mask & ACX_STATE_IFACE_UP))) {
2641 goto end;
2643 if (unlikely(!adev->initialized)) {
2644 goto end;
2647 tx = acx_l_alloc_tx(adev);
2649 if (unlikely(!tx)) {
2650 printk_ratelimited("%s: start_xmit: txdesc ring is full, "
2651 "dropping tx\n", wiphy_name(adev->ieee->wiphy));
2652 txresult = NOT_OK;
2653 goto end;
2656 txbuf = acx_l_get_txbuf(adev, tx);
2658 if (unlikely(!txbuf)) {
2659 /* Card was removed */
2660 txresult = NOT_OK;
2661 acx_l_dealloc_tx(adev, tx);
2662 goto end;
2664 memcpy(txbuf, skb->data, skb->len);
2666 acx_l_tx_data(adev, tx, skb->len, ctl,skb);
2668 txresult = OK;
2669 adev->stats.tx_packets++;
2670 adev->stats.tx_bytes += skb->len;
2672 end:
2673 acx_unlock(adev, flags);
2675 FN_EXIT1(txresult);
2676 return txresult;
2678 /***********************************************************************
2679 ** acx_l_update_ratevector
2681 ** Updates adev->rate_supported[_len] according to rate_{basic,oper}
2683 const u8 acx_bitpos2ratebyte[] = {
2684 DOT11RATEBYTE_1,
2685 DOT11RATEBYTE_2,
2686 DOT11RATEBYTE_5_5,
2687 DOT11RATEBYTE_6_G,
2688 DOT11RATEBYTE_9_G,
2689 DOT11RATEBYTE_11,
2690 DOT11RATEBYTE_12_G,
2691 DOT11RATEBYTE_18_G,
2692 DOT11RATEBYTE_22,
2693 DOT11RATEBYTE_24_G,
2694 DOT11RATEBYTE_36_G,
2695 DOT11RATEBYTE_48_G,
2696 DOT11RATEBYTE_54_G,
2699 void acx_l_update_ratevector(acx_device_t * adev)
2701 u16 bcfg = adev->rate_basic;
2702 u16 ocfg = adev->rate_oper;
2703 u8 *supp = adev->rate_supported;
2704 const u8 *dot11 = acx_bitpos2ratebyte;
2706 FN_ENTER;
2708 while (ocfg) {
2709 if (ocfg & 1) {
2710 *supp = *dot11;
2711 if (bcfg & 1) {
2712 *supp |= 0x80;
2714 supp++;
2716 dot11++;
2717 ocfg >>= 1;
2718 bcfg >>= 1;
2720 adev->rate_supported_len = supp - adev->rate_supported;
2721 if (acx_debug & L_ASSOC) {
2722 printk("new ratevector: ");
2723 acx_dump_bytes(adev->rate_supported, adev->rate_supported_len);
2725 FN_EXIT0;
2728 /***********************************************************************
2729 ** acx_i_timer
2731 ** Fires up periodically. Used to kick scan/auth/assoc if something goes wrong
2733 ** Obvious
2735 void acx_i_timer(unsigned long address)
2737 unsigned long flags;
2738 acx_device_t *adev = (acx_device_t *) address;
2740 FN_ENTER;
2742 acx_lock(adev, flags);
2744 FIXME();
2745 /* We need calibration and stats gather tasks to perform here */
2747 acx_unlock(adev, flags);
2749 FN_EXIT0;
2753 /***********************************************************************
2754 ** acx_set_timer
2756 ** Sets the 802.11 state management timer's timeout.
2758 ** Linux derived
2760 void acx_set_timer(acx_device_t * adev, int timeout_us)
2762 FN_ENTER;
2764 log(L_DEBUG | L_IRQ, "%s(%u ms)\n", __func__, timeout_us / 1000);
2765 if (!(adev->dev_state_mask & ACX_STATE_IFACE_UP)) {
2766 printk("attempt to set the timer "
2767 "when the card interface is not up!\n");
2768 goto end;
2771 /* first check if the timer was already initialized, THEN modify it */
2772 if (adev->mgmt_timer.function) {
2773 mod_timer(&adev->mgmt_timer,
2774 jiffies + (timeout_us * HZ / 1000000));
2776 end:
2777 FN_EXIT0;
2780 /** acx_plcp_get_bitrate_cck
2782 ** Obvious
2784 static u8 acx_plcp_get_bitrate_cck(u8 plcp)
2786 switch (plcp) {
2787 case 0x0A:
2788 return ACX_CCK_RATE_1MB;
2789 case 0x14:
2790 return ACX_CCK_RATE_2MB;
2791 case 0x37:
2792 return ACX_CCK_RATE_5MB;
2793 case 0x6E:
2794 return ACX_CCK_RATE_11MB;
2796 return 0;
2799 /* Extract the bitrate out of an OFDM PLCP header. */
2800 /** Obvious **/
2801 static u8 acx_plcp_get_bitrate_ofdm(u8 plcp)
2803 switch (plcp & 0xF) {
2804 case 0xB:
2805 return ACX_OFDM_RATE_6MB;
2806 case 0xF:
2807 return ACX_OFDM_RATE_9MB;
2808 case 0xA:
2809 return ACX_OFDM_RATE_12MB;
2810 case 0xE:
2811 return ACX_OFDM_RATE_18MB;
2812 case 0x9:
2813 return ACX_OFDM_RATE_24MB;
2814 case 0xD:
2815 return ACX_OFDM_RATE_36MB;
2816 case 0x8:
2817 return ACX_OFDM_RATE_48MB;
2818 case 0xC:
2819 return ACX_OFDM_RATE_54MB;
2821 return 0;
2825 /***********************************************************************
2826 ** acx_l_rx
2828 ** The end of the Rx path. Pulls data from a rxhostdesc into a socket
2829 ** buffer and feeds it to the network stack via netif_rx().
2831 ** Look to bcm43xx or p54
2833 static void acx_l_rx(acx_device_t * adev, rxbuffer_t * rxbuf)
2836 struct ieee80211_rx_status* status = &adev->rx_status;
2837 struct ieee80211_hdr *w_hdr;
2838 int buflen;
2839 FN_ENTER;
2841 if (likely(adev->dev_state_mask & ACX_STATE_IFACE_UP)) {
2842 struct sk_buff *skb;
2843 w_hdr = acx_get_wlan_hdr(adev, rxbuf);
2844 buflen = RXBUF_BYTES_USED(rxbuf) - ((u8*)w_hdr - (u8*)rxbuf);
2845 skb = dev_alloc_skb(buflen + 2);
2846 skb_reserve(skb, 2);
2847 skb_put(skb, buflen);
2848 memcpy(skb->data, w_hdr, buflen);
2850 // memset(&status, 0, sizeof(status));
2852 if (likely(skb)) {
2853 status->mactime = rxbuf->time;
2854 status->signal = acx_signal_to_winlevel(rxbuf->phy_level);
2855 status->noise = acx_signal_to_winlevel(rxbuf->phy_snr);
2856 status->flag = 0;
2857 status->rate = rxbuf->phy_plcp_signal;
2858 status->antenna = 1;
2860 #ifndef OLD_QUALITY
2861 qual = acx_signal_determine_quality(adev->wstats.qual.level,
2862 adev->wstats.qual.noise);
2863 #else
2864 qual = (adev->wstats.qual.noise <= 100) ?
2865 100 - adev->wstats.qual.noise : 0;
2866 #endif
2867 adev->wstats.qual.qual = qual;
2868 adev->wstats.qual.updated = 7; *//* all 3 indicators updated */
2870 #ifdef FROM_SCAN_SOURCE_ONLY
2872 #endif
2874 if (rxbuf->phy_stat_baseband & (1 << 3)) /* Uses OFDM */
2876 status->rate = acx_plcp_get_bitrate_ofdm(rxbuf->phy_plcp_signal);
2877 } else
2879 status->rate = acx_plcp_get_bitrate_cck(rxbuf->phy_plcp_signal);
2881 ieee80211_rx_irqsafe(adev->ieee, skb, status);
2882 adev->stats.rx_packets++;
2883 adev->stats.rx_bytes += skb->len;
2886 FN_EXIT0;
2891 /***********************************************************************
2892 ** acx_s_read_fw
2894 ** Loads a firmware image
2896 ** Returns:
2897 ** 0 unable to load file
2898 ** pointer to firmware success
2900 firmware_image_t *acx_s_read_fw(struct device *dev, const char *file,
2901 u32 * size)
2903 firmware_image_t *res;
2904 const struct firmware *fw_entry;
2906 res = NULL;
2907 log(L_INIT, "requesting firmware image '%s'\n", file);
2908 if (!request_firmware(&fw_entry, file, dev)) {
2909 *size = 8;
2910 if (fw_entry->size >= 8)
2911 *size = 8 + le32_to_cpu(*(u32 *) (fw_entry->data + 4));
2912 if (fw_entry->size != *size) {
2913 printk("acx: firmware size does not match "
2914 "firmware header: %d != %d, "
2915 "aborting fw upload\n",
2916 (int)fw_entry->size, (int)*size);
2917 goto release_ret;
2919 res = vmalloc(*size);
2920 if (!res) {
2921 printk("acx: no memory for firmware "
2922 "(%u bytes)\n", *size);
2923 goto release_ret;
2925 memcpy(res, fw_entry->data, fw_entry->size);
2926 release_ret:
2927 release_firmware(fw_entry);
2928 return res;
2930 printk("acx: firmware image '%s' was not provided. "
2931 "Check your hotplug scripts\n", file);
2933 /* checksum will be verified in write_fw, so don't bother here */
2934 return res;
2938 /***********************************************************************
2939 ** acx_s_set_wepkey
2941 static void acx100_s_set_wepkey(acx_device_t * adev)
2943 ie_dot11WEPDefaultKey_t dk;
2944 int i;
2946 for (i = 0; i < DOT11_MAX_DEFAULT_WEP_KEYS; i++) {
2947 if (adev->wep_keys[i].size != 0) {
2948 log(L_INIT, "setting WEP key: %d with "
2949 "total size: %d\n", i, (int)adev->wep_keys[i].size);
2950 dk.action = 1;
2951 dk.keySize = adev->wep_keys[i].size;
2952 dk.defaultKeyNum = i;
2953 memcpy(dk.key, adev->wep_keys[i].key, dk.keySize);
2954 acx_s_configure(adev, &dk,
2955 ACX100_IE_DOT11_WEP_DEFAULT_KEY_WRITE);
2960 static void acx111_s_set_wepkey(acx_device_t * adev)
2962 acx111WEPDefaultKey_t dk;
2963 int i;
2965 for (i = 0; i < DOT11_MAX_DEFAULT_WEP_KEYS; i++) {
2966 if (adev->wep_keys[i].size != 0) {
2967 log(L_INIT, "setting WEP key: %d with "
2968 "total size: %d\n", i, (int)adev->wep_keys[i].size);
2969 memset(&dk, 0, sizeof(dk));
2970 dk.action = cpu_to_le16(1); /* "add key"; yes, that's a 16bit value */
2971 dk.keySize = adev->wep_keys[i].size;
2973 /* are these two lines necessary? */
2974 dk.type = 0; /* default WEP key */
2975 dk.index = 0; /* ignored when setting default key */
2977 dk.defaultKeyNum = i;
2978 memcpy(dk.key, adev->wep_keys[i].key, dk.keySize);
2979 acx_s_issue_cmd(adev, ACX1xx_CMD_WEP_MGMT, &dk,
2980 sizeof(dk));
2984 /* Obvious */
2985 static void acx_s_set_wepkey(acx_device_t * adev)
2987 if (IS_ACX111(adev))
2988 acx111_s_set_wepkey(adev);
2989 else
2990 acx100_s_set_wepkey(adev);
2994 /***********************************************************************
2995 ** acx100_s_init_wep
2997 ** FIXME: this should probably be moved into the new card settings
2998 ** management, but since we're also modifying the memory map layout here
2999 ** due to the WEP key space we want, we should take care...
3001 static int acx100_s_init_wep(acx_device_t * adev)
3003 acx100_ie_wep_options_t options;
3004 ie_dot11WEPDefaultKeyID_t dk;
3005 acx_ie_memmap_t pt;
3006 int res = NOT_OK;
3008 FN_ENTER;
3010 if (OK != acx_s_interrogate(adev, &pt, ACX1xx_IE_MEMORY_MAP)) {
3011 goto fail;
3014 log(L_DEBUG, "CodeEnd:%X\n", pt.CodeEnd);
3016 pt.WEPCacheStart = cpu_to_le32(le32_to_cpu(pt.CodeEnd) + 0x4);
3017 pt.WEPCacheEnd = cpu_to_le32(le32_to_cpu(pt.CodeEnd) + 0x4);
3019 if (OK != acx_s_configure(adev, &pt, ACX1xx_IE_MEMORY_MAP)) {
3020 goto fail;
3023 /* let's choose maximum setting: 4 default keys, plus 10 other keys: */
3024 options.NumKeys = cpu_to_le16(DOT11_MAX_DEFAULT_WEP_KEYS + 10);
3025 options.WEPOption = 0x00;
3027 log(L_ASSOC, "writing WEP options\n");
3028 acx_s_configure(adev, &options, ACX100_IE_WEP_OPTIONS);
3030 acx100_s_set_wepkey(adev);
3032 if (adev->wep_keys[adev->wep_current_index].size != 0) {
3033 log(L_ASSOC, "setting active default WEP key number: %d\n",
3034 adev->wep_current_index);
3035 dk.KeyID = adev->wep_current_index;
3036 acx_s_configure(adev, &dk, ACX1xx_IE_DOT11_WEP_DEFAULT_KEY_SET); /* 0x1010 */
3038 /* FIXME!!! wep_key_struct is filled nowhere! But adev
3039 * is initialized to 0, and we don't REALLY need those keys either */
3040 /* for (i = 0; i < 10; i++) {
3041 if (adev->wep_key_struct[i].len != 0) {
3042 MAC_COPY(wep_mgmt.MacAddr, adev->wep_key_struct[i].addr);
3043 wep_mgmt.KeySize = cpu_to_le16(adev->wep_key_struct[i].len);
3044 memcpy(&wep_mgmt.Key, adev->wep_key_struct[i].key, le16_to_cpu(wep_mgmt.KeySize));
3045 wep_mgmt.Action = cpu_to_le16(1);
3046 log(L_ASSOC, "writing WEP key %d (len %d)\n", i, le16_to_cpu(wep_mgmt.KeySize));
3047 if (OK == acx_s_issue_cmd(adev, ACX1xx_CMD_WEP_MGMT, &wep_mgmt, sizeof(wep_mgmt))) {
3048 adev->wep_key_struct[i].index = i;
3054 /* now retrieve the updated WEPCacheEnd pointer... */
3055 if (OK != acx_s_interrogate(adev, &pt, ACX1xx_IE_MEMORY_MAP)) {
3056 printk("%s: ACX1xx_IE_MEMORY_MAP read #2 FAILED\n",
3057 wiphy_name(adev->ieee->wiphy));
3058 goto fail;
3060 /* ...and tell it to start allocating templates at that location */
3061 /* (no endianness conversion needed) */
3062 pt.PacketTemplateStart = pt.WEPCacheEnd;
3064 if (OK != acx_s_configure(adev, &pt, ACX1xx_IE_MEMORY_MAP)) {
3065 printk("%s: ACX1xx_IE_MEMORY_MAP write #2 FAILED\n",
3066 wiphy_name(adev->ieee->wiphy));
3067 goto fail;
3069 res = OK;
3071 fail:
3072 FN_EXIT1(res);
3073 return res;
3077 static int
3078 acx_s_init_max_template_generic(acx_device_t * adev, unsigned int len,
3079 unsigned int cmd)
3081 int res;
3082 union {
3083 acx_template_nullframe_t null;
3084 acx_template_beacon_t b;
3085 acx_template_tim_t tim;
3086 acx_template_probereq_t preq;
3087 acx_template_proberesp_t presp;
3088 } templ;
3090 memset(&templ, 0, len);
3091 templ.null.size = cpu_to_le16(len - 2);
3092 res = acx_s_issue_cmd(adev, cmd, &templ, len);
3093 return res;
3096 static inline int acx_s_init_max_null_data_template(acx_device_t * adev)
3098 return acx_s_init_max_template_generic(adev,
3099 sizeof(acx_template_nullframe_t),
3100 ACX1xx_CMD_CONFIG_NULL_DATA);
3103 static inline int acx_s_init_max_beacon_template(acx_device_t * adev)
3105 return acx_s_init_max_template_generic(adev,
3106 sizeof(acx_template_beacon_t),
3107 ACX1xx_CMD_CONFIG_BEACON);
3110 static inline int acx_s_init_max_tim_template(acx_device_t * adev)
3112 return acx_s_init_max_template_generic(adev, sizeof(acx_template_tim_t),
3113 ACX1xx_CMD_CONFIG_TIM);
3116 static inline int acx_s_init_max_probe_response_template(acx_device_t * adev)
3118 return acx_s_init_max_template_generic(adev,
3119 sizeof(acx_template_proberesp_t),
3120 ACX1xx_CMD_CONFIG_PROBE_RESPONSE);
3123 static inline int acx_s_init_max_probe_request_template(acx_device_t * adev)
3125 return acx_s_init_max_template_generic(adev,
3126 sizeof(acx_template_probereq_t),
3127 ACX1xx_CMD_CONFIG_PROBE_REQUEST);
3130 /***********************************************************************
3131 ** acx_s_set_tim_template
3133 ** FIXME: In full blown driver we will regularly update partial virtual bitmap
3134 ** by calling this function
3135 ** (it can be done by irq handler on each DTIM irq or by timer...)
3137 [802.11 7.3.2.6] TIM information element:
3138 - 1 EID
3139 - 1 Length
3140 1 1 DTIM Count
3141 indicates how many beacons (including this) appear before next DTIM
3142 (0=this one is a DTIM)
3143 2 1 DTIM Period
3144 number of beacons between successive DTIMs
3145 (0=reserved, 1=all TIMs are DTIMs, 2=every other, etc)
3146 3 1 Bitmap Control
3147 bit0: Traffic Indicator bit associated with Assoc ID 0 (Bcast AID?)
3148 set to 1 in TIM elements with a value of 0 in the DTIM Count field
3149 when one or more broadcast or multicast frames are buffered at the AP.
3150 bit1-7: Bitmap Offset (logically Bitmap_Offset = Bitmap_Control & 0xFE).
3151 4 n Partial Virtual Bitmap
3152 Visible part of traffic-indication bitmap.
3153 Full bitmap consists of 2008 bits (251 octets) such that bit number N
3154 (0<=N<=2007) in the bitmap corresponds to bit number (N mod 8)
3155 in octet number N/8 where the low-order bit of each octet is bit0,
3156 and the high order bit is bit7.
3157 Each set bit in virtual bitmap corresponds to traffic buffered by AP
3158 for a specific station (with corresponding AID?).
3159 Partial Virtual Bitmap shows a part of bitmap which has non-zero.
3160 Bitmap Offset is a number of skipped zero octets (see above).
3161 'Missing' octets at the tail are also assumed to be zero.
3162 Example: Length=6, Bitmap_Offset=2, Partial_Virtual_Bitmap=55 55 55
3163 This means that traffic-indication bitmap is:
3164 00000000 00000000 01010101 01010101 01010101 00000000 00000000...
3165 (is bit0 in the map is always 0 and real value is in Bitmap Control bit0?)
3167 static int acx_s_set_tim_template(acx_device_t * adev)
3169 /* For now, configure smallish test bitmap, all zero ("no pending data") */
3170 enum { bitmap_size = 5 };
3172 acx_template_tim_t t;
3173 int result;
3175 FN_ENTER;
3177 memset(&t, 0, sizeof(t));
3178 t.size = 5 + bitmap_size; /* eid+len+count+period+bmap_ctrl + bmap */
3179 t.tim_eid = WLAN_EID_TIM;
3180 t.len = 3 + bitmap_size; /* count+period+bmap_ctrl + bmap */
3181 result = acx_s_issue_cmd(adev, ACX1xx_CMD_CONFIG_TIM, &t, sizeof(t));
3182 FN_EXIT1(result);
3183 return result;
3189 #if POWER_SAVE_80211
3190 /***********************************************************************
3191 ** acx_s_set_null_data_template
3193 static int acx_s_set_null_data_template(acx_device_t * adev)
3195 struct acx_template_nullframe b;
3196 int result;
3198 FN_ENTER;
3200 /* memset(&b, 0, sizeof(b)); not needed, setting all members */
3202 b.size = cpu_to_le16(sizeof(b) - 2);
3203 b.hdr.fc = WF_FTYPE_MGMTi | WF_FSTYPE_NULLi;
3204 b.hdr.dur = 0;
3205 MAC_BCAST(b.hdr.a1);
3206 MAC_COPY(b.hdr.a2, adev->dev_addr);
3207 MAC_COPY(b.hdr.a3, adev->bssid);
3208 b.hdr.seq = 0;
3210 result =
3211 acx_s_issue_cmd(adev, ACX1xx_CMD_CONFIG_NULL_DATA, &b, sizeof(b));
3213 FN_EXIT1(result);
3214 return result;
3216 #endif
3223 /***********************************************************************
3224 ** acx_s_init_packet_templates()
3226 ** NOTE: order is very important here, to have a correct memory layout!
3227 ** init templates: max Probe Request (station mode), max NULL data,
3228 ** max Beacon, max TIM, max Probe Response.
3230 static int acx_s_init_packet_templates(acx_device_t * adev)
3232 acx_ie_memmap_t mm; /* ACX100 only */
3233 int result = NOT_OK;
3235 FN_ENTER;
3237 log(L_DEBUG | L_INIT, "initializing max packet templates\n");
3239 if (OK != acx_s_init_max_probe_request_template(adev))
3240 goto failed;
3242 if (OK != acx_s_init_max_null_data_template(adev))
3243 goto failed;
3245 if (OK != acx_s_init_max_beacon_template(adev))
3246 goto failed;
3248 if (OK != acx_s_init_max_tim_template(adev))
3249 goto failed;
3251 if (OK != acx_s_init_max_probe_response_template(adev))
3252 goto failed;
3254 if (IS_ACX111(adev)) {
3255 /* ACX111 doesn't need the memory map magic below,
3256 * and the other templates will be set later (acx_start) */
3257 result = OK;
3258 goto success;
3261 /* ACX100 will have its TIM template set,
3262 * and we also need to update the memory map */
3264 if (OK != acx_s_set_tim_template(adev))
3265 goto failed_acx100;
3267 log(L_DEBUG, "sizeof(memmap)=%d bytes\n", (int)sizeof(mm));
3269 if (OK != acx_s_interrogate(adev, &mm, ACX1xx_IE_MEMORY_MAP))
3270 goto failed_acx100;
3272 mm.QueueStart = cpu_to_le32(le32_to_cpu(mm.PacketTemplateEnd) + 4);
3273 if (OK != acx_s_configure(adev, &mm, ACX1xx_IE_MEMORY_MAP))
3274 goto failed_acx100;
3276 result = OK;
3277 goto success;
3279 failed_acx100:
3280 log(L_DEBUG | L_INIT,
3281 /* "cb=0x%X\n" */
3282 "ACXMemoryMap:\n"
3283 ".CodeStart=0x%X\n"
3284 ".CodeEnd=0x%X\n"
3285 ".WEPCacheStart=0x%X\n"
3286 ".WEPCacheEnd=0x%X\n"
3287 ".PacketTemplateStart=0x%X\n" ".PacketTemplateEnd=0x%X\n",
3288 /* len, */
3289 le32_to_cpu(mm.CodeStart),
3290 le32_to_cpu(mm.CodeEnd),
3291 le32_to_cpu(mm.WEPCacheStart),
3292 le32_to_cpu(mm.WEPCacheEnd),
3293 le32_to_cpu(mm.PacketTemplateStart),
3294 le32_to_cpu(mm.PacketTemplateEnd));
3296 failed:
3297 printk("%s: %s() FAILED\n", wiphy_name(adev->ieee->wiphy), __func__);
3299 success:
3300 FN_EXIT1(result);
3301 return result;
3306 /***********************************************************************
3307 ** acx_s_init_mac
3309 int acx_s_init_mac(acx_device_t * adev)
3311 int result = NOT_OK;
3313 FN_ENTER;
3315 if (IS_ACX111(adev)) {
3316 adev->ie_len = acx111_ie_len;
3317 adev->ie_len_dot11 = acx111_ie_len_dot11;
3318 } else {
3319 adev->ie_len = acx100_ie_len;
3320 adev->ie_len_dot11 = acx100_ie_len_dot11;
3323 if (IS_PCI(adev)) {
3324 adev->memblocksize = 256; /* 256 is default */
3325 /* try to load radio for both ACX100 and ACX111, since both
3326 * chips have at least some firmware versions making use of an
3327 * external radio module */
3328 acxpci_s_upload_radio(adev);
3329 } else {
3330 adev->memblocksize = 128;
3333 if (IS_ACX111(adev)) {
3334 /* for ACX111, the order is different from ACX100
3335 1. init packet templates
3336 2. create station context and create dma regions
3337 3. init wep default keys
3339 if (OK != acx_s_init_packet_templates(adev))
3340 goto fail;
3341 if (OK != acx111_s_create_dma_regions(adev)) {
3342 printk("%s: acx111_create_dma_regions FAILED\n",
3343 wiphy_name(adev->ieee->wiphy));
3344 goto fail;
3346 } else {
3347 if (OK != acx100_s_init_wep(adev))
3348 goto fail;
3349 if (OK != acx_s_init_packet_templates(adev))
3350 goto fail;
3351 if (OK != acx100_s_create_dma_regions(adev)) {
3352 printk("%s: acx100_create_dma_regions FAILED\n",
3353 wiphy_name(adev->ieee->wiphy));
3354 goto fail;
3358 SET_IEEE80211_PERM_ADDR(adev->ieee, adev->dev_addr);
3359 result = OK;
3361 fail:
3362 if (result)
3363 printk("acx: init_mac() FAILED\n");
3364 FN_EXIT1(result);
3365 return result;
3370 #if POWER_SAVE_80211
3371 static void acx_s_update_80211_powersave_mode(acx_device_t * adev)
3373 /* merge both structs in a union to be able to have common code */
3374 union {
3375 acx111_ie_powersave_t acx111;
3376 acx100_ie_powersave_t acx100;
3377 } pm;
3379 /* change 802.11 power save mode settings */
3380 log(L_INIT, "updating 802.11 power save mode settings: "
3381 "wakeup_cfg 0x%02X, listen interval %u, "
3382 "options 0x%02X, hangover period %u, "
3383 "enhanced_ps_transition_time %u\n",
3384 adev->ps_wakeup_cfg, adev->ps_listen_interval,
3385 adev->ps_options, adev->ps_hangover_period,
3386 adev->ps_enhanced_transition_time);
3387 acx_s_interrogate(adev, &pm, ACX1xx_IE_POWER_MGMT);
3388 log(L_INIT, "Previous PS mode settings: wakeup_cfg 0x%02X, "
3389 "listen interval %u, options 0x%02X, "
3390 "hangover period %u, "
3391 "enhanced_ps_transition_time %u, beacon_rx_time %u\n",
3392 pm.acx111.wakeup_cfg,
3393 pm.acx111.listen_interval,
3394 pm.acx111.options,
3395 pm.acx111.hangover_period,
3396 IS_ACX111(adev) ?
3397 pm.acx111.enhanced_ps_transition_time
3398 : pm.acx100.enhanced_ps_transition_time,
3399 IS_ACX111(adev) ? pm.acx111.beacon_rx_time : (u32) - 1);
3400 pm.acx111.wakeup_cfg = adev->ps_wakeup_cfg;
3401 pm.acx111.listen_interval = adev->ps_listen_interval;
3402 pm.acx111.options = adev->ps_options;
3403 pm.acx111.hangover_period = adev->ps_hangover_period;
3404 if (IS_ACX111(adev)) {
3405 pm.acx111.beacon_rx_time = cpu_to_le32(adev->ps_beacon_rx_time);
3406 pm.acx111.enhanced_ps_transition_time =
3407 cpu_to_le32(adev->ps_enhanced_transition_time);
3408 } else {
3409 pm.acx100.enhanced_ps_transition_time =
3410 cpu_to_le16(adev->ps_enhanced_transition_time);
3412 acx_s_configure(adev, &pm, ACX1xx_IE_POWER_MGMT);
3413 acx_s_interrogate(adev, &pm, ACX1xx_IE_POWER_MGMT);
3414 log(L_INIT, "wakeup_cfg: 0x%02X\n", pm.acx111.wakeup_cfg);
3415 acx_s_mwait(40);
3416 acx_s_interrogate(adev, &pm, ACX1xx_IE_POWER_MGMT);
3417 log(L_INIT, "wakeup_cfg: 0x%02X\n", pm.acx111.wakeup_cfg);
3418 log(L_INIT, "power save mode change %s\n",
3419 (pm.acx111.
3420 wakeup_cfg & PS_CFG_PENDING) ? "FAILED" : "was successful");
3421 /* FIXME: maybe verify via PS_CFG_PENDING bit here
3422 * that power save mode change was successful. */
3423 /* FIXME: we shouldn't trigger a scan immediately after
3424 * fiddling with power save mode (since the firmware is sending
3425 * a NULL frame then). */
3427 #endif
3430 /***********************************************************************
3431 ** acx_s_update_card_settings
3433 ** Applies accumulated changes in various adev->xxxx members
3434 ** Called by ioctl commit handler, acx_start, acx_set_defaults,
3435 ** acx_s_after_interrupt_task (if IRQ_CMD_UPDATE_CARD_CFG),
3437 void acx_s_set_sane_reg_domain(acx_device_t *adev, int do_set)
3439 unsigned mask;
3441 unsigned int i;
3443 for (i = 0; i < sizeof(acx_reg_domain_ids); i++)
3444 if (acx_reg_domain_ids[i] == adev->reg_dom_id)
3445 break;
3447 if (sizeof(acx_reg_domain_ids) == i) {
3448 log(L_INIT, "Invalid or unsupported regulatory domain"
3449 " 0x%02X specified, falling back to FCC (USA)!"
3450 " Please report if this sounds fishy!\n",
3451 adev->reg_dom_id);
3452 i = 0;
3453 adev->reg_dom_id = acx_reg_domain_ids[i];
3455 /* since there was a mismatch, we need to force updating */
3456 do_set = 1;
3459 if (do_set) {
3460 acx_ie_generic_t dom;
3461 dom.m.bytes[0] = adev->reg_dom_id;
3462 acx_s_configure(adev, &dom, ACX1xx_IE_DOT11_CURRENT_REG_DOMAIN);
3465 adev->reg_dom_chanmask = reg_domain_channel_masks[i];
3467 mask = (1 << (adev->channel - 1));
3468 if (!(adev->reg_dom_chanmask & mask)) {
3469 /* hmm, need to adjust our channel to reside within domain */
3470 mask = 1;
3471 for (i = 1; i <= 14; i++) {
3472 if (adev->reg_dom_chanmask & mask) {
3473 printk("%s: adjusting selected channel from %d "
3474 "to %d due to new regulatory domain\n",
3475 wiphy_name(adev->ieee->wiphy), adev->channel, i);
3476 adev->channel = i;
3477 break;
3479 mask <<= 1;
3484 static void acx111_s_sens_radio_16_17(acx_device_t * adev)
3486 u32 feature1, feature2;
3488 if ((adev->sensitivity < 1) || (adev->sensitivity > 3)) {
3489 printk("%s: invalid sensitivity setting (1..3), "
3490 "setting to 1\n", wiphy_name(adev->ieee->wiphy));
3491 adev->sensitivity = 1;
3493 acx111_s_get_feature_config(adev, &feature1, &feature2);
3494 CLEAR_BIT(feature1, FEATURE1_LOW_RX | FEATURE1_EXTRA_LOW_RX);
3495 if (adev->sensitivity > 1)
3496 SET_BIT(feature1, FEATURE1_LOW_RX);
3497 if (adev->sensitivity > 2)
3498 SET_BIT(feature1, FEATURE1_EXTRA_LOW_RX);
3499 acx111_s_feature_set(adev, feature1, feature2);
3503 void acx_s_update_card_settings(acx_device_t *adev)
3505 unsigned long flags;
3506 unsigned int start_scan = 0;
3507 int i;
3509 FN_ENTER;
3511 log(L_INIT, "get_mask 0x%08X, set_mask 0x%08X\n",
3512 adev->get_mask, adev->set_mask);
3514 /* Track dependencies betweed various settings */
3516 if (adev->set_mask & (GETSET_MODE | GETSET_RESCAN | GETSET_WEP)) {
3517 log(L_INIT, "important setting has been changed. "
3518 "Need to update packet templates, too\n");
3519 SET_BIT(adev->set_mask, SET_TEMPLATES);
3521 if (adev->set_mask & GETSET_CHANNEL) {
3522 /* This will actually tune RX/TX to the channel */
3523 SET_BIT(adev->set_mask, GETSET_RX | GETSET_TX);
3524 switch (adev->mode) {
3525 case ACX_MODE_0_ADHOC:
3526 case ACX_MODE_3_AP:
3527 /* Beacons contain channel# - update them */
3528 SET_BIT(adev->set_mask, SET_TEMPLATES);
3531 switch (adev->mode) {
3532 case ACX_MODE_0_ADHOC:
3533 case ACX_MODE_2_STA:
3534 start_scan = 1;
3538 /* Apply settings */
3541 if (adev->get_mask & GETSET_STATION_ID) {
3542 u8 stationID[4 + ACX1xx_IE_DOT11_STATION_ID_LEN];
3543 const u8 *paddr;
3545 acx_s_interrogate(adev, &stationID, ACX1xx_IE_DOT11_STATION_ID);
3546 paddr = &stationID[4];
3547 // memcpy(adev->dev_addr, adev->ndev->dev_addr, ETH_ALEN);
3548 for (i = 0; i < ETH_ALEN; i++) {
3549 /* we copy the MAC address (reversed in
3550 * the card) to the netdevice's MAC
3551 * address, and on ifup it will be
3552 * copied into iwadev->dev_addr */
3553 adev->dev_addr[ETH_ALEN - 1 - i] = paddr[i];
3555 SET_IEEE80211_PERM_ADDR(adev->ieee,adev->dev_addr);
3556 CLEAR_BIT(adev->get_mask, GETSET_STATION_ID);
3559 if (adev->get_mask & GETSET_SENSITIVITY) {
3560 if ((RADIO_RFMD_11 == adev->radio_type)
3561 || (RADIO_MAXIM_0D == adev->radio_type)
3562 || (RADIO_RALINK_15 == adev->radio_type)) {
3563 acx_s_read_phy_reg(adev, 0x30, &adev->sensitivity);
3564 } else {
3565 log(L_INIT, "don't know how to get sensitivity "
3566 "for radio type 0x%02X\n", adev->radio_type);
3567 adev->sensitivity = 0;
3569 log(L_INIT, "got sensitivity value %u\n", adev->sensitivity);
3571 CLEAR_BIT(adev->get_mask, GETSET_SENSITIVITY);
3574 if (adev->get_mask & GETSET_ANTENNA) {
3575 u8 antenna[4 + ACX1xx_IE_DOT11_CURRENT_ANTENNA_LEN];
3577 memset(antenna, 0, sizeof(antenna));
3578 acx_s_interrogate(adev, antenna,
3579 ACX1xx_IE_DOT11_CURRENT_ANTENNA);
3580 adev->antenna = antenna[4];
3581 log(L_INIT, "got antenna value 0x%02X\n", adev->antenna);
3582 CLEAR_BIT(adev->get_mask, GETSET_ANTENNA);
3585 if (adev->get_mask & GETSET_ED_THRESH) {
3586 if (IS_ACX100(adev)) {
3587 u8 ed_threshold[4 + ACX100_IE_DOT11_ED_THRESHOLD_LEN];
3589 memset(ed_threshold, 0, sizeof(ed_threshold));
3590 acx_s_interrogate(adev, ed_threshold,
3591 ACX100_IE_DOT11_ED_THRESHOLD);
3592 adev->ed_threshold = ed_threshold[4];
3593 } else {
3594 log(L_INIT, "acx111 doesn't support ED\n");
3595 adev->ed_threshold = 0;
3597 log(L_INIT, "got Energy Detect (ED) threshold %u\n",
3598 adev->ed_threshold);
3599 CLEAR_BIT(adev->get_mask, GETSET_ED_THRESH);
3602 if (adev->get_mask & GETSET_CCA) {
3603 if (IS_ACX100(adev)) {
3604 u8 cca[4 + ACX1xx_IE_DOT11_CURRENT_CCA_MODE_LEN];
3606 memset(cca, 0, sizeof(adev->cca));
3607 acx_s_interrogate(adev, cca,
3608 ACX1xx_IE_DOT11_CURRENT_CCA_MODE);
3609 adev->cca = cca[4];
3610 } else {
3611 log(L_INIT, "acx111 doesn't support CCA\n");
3612 adev->cca = 0;
3614 log(L_INIT, "got Channel Clear Assessment (CCA) value %u\n",
3615 adev->cca);
3616 CLEAR_BIT(adev->get_mask, GETSET_CCA);
3619 if (adev->get_mask & GETSET_REG_DOMAIN) {
3620 acx_ie_generic_t dom;
3622 acx_s_interrogate(adev, &dom,
3623 ACX1xx_IE_DOT11_CURRENT_REG_DOMAIN);
3624 adev->reg_dom_id = dom.m.bytes[0];
3625 acx_s_set_sane_reg_domain(adev, 0);
3626 log(L_INIT, "got regulatory domain 0x%02X\n", adev->reg_dom_id);
3627 CLEAR_BIT(adev->get_mask, GETSET_REG_DOMAIN);
3630 if (adev->set_mask & GETSET_STATION_ID) {
3631 u8 stationID[4 + ACX1xx_IE_DOT11_STATION_ID_LEN];
3632 u8 *paddr;
3634 paddr = &stationID[4];
3635 MAC_COPY(adev->dev_addr, adev->ieee->wiphy->perm_addr);
3636 for (i = 0; i < ETH_ALEN; i++) {
3637 /* copy the MAC address we obtained when we noticed
3638 * that the ethernet iface's MAC changed
3639 * to the card (reversed in
3640 * the card!) */
3641 paddr[i] = adev->dev_addr[ETH_ALEN - 1 - i];
3643 acx_s_configure(adev, &stationID, ACX1xx_IE_DOT11_STATION_ID);
3644 CLEAR_BIT(adev->set_mask, GETSET_STATION_ID);
3647 if (adev->set_mask & SET_STA_LIST) {
3648 CLEAR_BIT(adev->set_mask, SET_STA_LIST);
3650 if (adev->set_mask & SET_RATE_FALLBACK) {
3651 u8 rate[4 + ACX1xx_IE_RATE_FALLBACK_LEN];
3653 /* configure to not do fallbacks when not in auto rate mode */
3654 rate[4] =
3655 (adev->
3656 rate_auto) ? /* adev->txrate_fallback_retries */ 1 : 0;
3657 log(L_INIT, "updating Tx fallback to %u retries\n", rate[4]);
3658 acx_s_configure(adev, &rate, ACX1xx_IE_RATE_FALLBACK);
3659 CLEAR_BIT(adev->set_mask, SET_RATE_FALLBACK);
3661 if (adev->set_mask & GETSET_TXPOWER) {
3662 log(L_INIT, "updating transmit power: %u dBm\n",
3663 adev->tx_level_dbm);
3664 acx_s_set_tx_level(adev, adev->tx_level_dbm);
3665 CLEAR_BIT(adev->set_mask, GETSET_TXPOWER);
3668 if (adev->set_mask & GETSET_SENSITIVITY) {
3669 log(L_INIT, "updating sensitivity value: %u\n",
3670 adev->sensitivity);
3671 switch (adev->radio_type) {
3672 case RADIO_RFMD_11:
3673 case RADIO_MAXIM_0D:
3674 case RADIO_RALINK_15:
3675 acx_s_write_phy_reg(adev, 0x30, adev->sensitivity);
3676 break;
3677 case RADIO_RADIA_16:
3678 case RADIO_UNKNOWN_17:
3679 acx111_s_sens_radio_16_17(adev);
3680 break;
3681 default:
3682 log(L_INIT, "don't know how to modify sensitivity "
3683 "for radio type 0x%02X\n", adev->radio_type);
3685 CLEAR_BIT(adev->set_mask, GETSET_SENSITIVITY);
3688 if (adev->set_mask & GETSET_ANTENNA) {
3689 /* antenna */
3690 u8 antenna[4 + ACX1xx_IE_DOT11_CURRENT_ANTENNA_LEN];
3692 memset(antenna, 0, sizeof(antenna));
3693 antenna[4] = adev->antenna;
3694 log(L_INIT, "updating antenna value: 0x%02X\n", adev->antenna);
3695 acx_s_configure(adev, &antenna,
3696 ACX1xx_IE_DOT11_CURRENT_ANTENNA);
3697 CLEAR_BIT(adev->set_mask, GETSET_ANTENNA);
3700 if (adev->set_mask & GETSET_ED_THRESH) {
3701 /* ed_threshold */
3702 log(L_INIT, "updating Energy Detect (ED) threshold: %u\n",
3703 adev->ed_threshold);
3704 if (IS_ACX100(adev)) {
3705 u8 ed_threshold[4 + ACX100_IE_DOT11_ED_THRESHOLD_LEN];
3707 memset(ed_threshold, 0, sizeof(ed_threshold));
3708 ed_threshold[4] = adev->ed_threshold;
3709 acx_s_configure(adev, &ed_threshold,
3710 ACX100_IE_DOT11_ED_THRESHOLD);
3711 } else
3712 log(L_INIT, "acx111 doesn't support ED!\n");
3713 CLEAR_BIT(adev->set_mask, GETSET_ED_THRESH);
3716 if (adev->set_mask & GETSET_CCA) {
3717 /* CCA value */
3718 log(L_INIT, "updating Channel Clear Assessment "
3719 "(CCA) value: 0x%02X\n", adev->cca);
3720 if (IS_ACX100(adev)) {
3721 u8 cca[4 + ACX1xx_IE_DOT11_CURRENT_CCA_MODE_LEN];
3723 memset(cca, 0, sizeof(cca));
3724 cca[4] = adev->cca;
3725 acx_s_configure(adev, &cca,
3726 ACX1xx_IE_DOT11_CURRENT_CCA_MODE);
3727 } else
3728 log(L_INIT, "acx111 doesn't support CCA!\n");
3729 CLEAR_BIT(adev->set_mask, GETSET_CCA);
3732 if (adev->set_mask & GETSET_LED_POWER) {
3733 /* Enable Tx */
3734 log(L_INIT, "updating power LED status: %u\n", adev->led_power);
3736 acx_lock(adev, flags); /* acxpci_l_power_led expects that the lock is already taken! */
3737 if (IS_PCI(adev))
3738 acxpci_l_power_led(adev, adev->led_power);
3739 CLEAR_BIT(adev->set_mask, GETSET_LED_POWER);
3740 acx_unlock(adev, flags);
3743 if (adev->set_mask & GETSET_POWER_80211) {
3744 #if POWER_SAVE_80211
3745 acx_s_update_80211_powersave_mode(adev);
3746 #endif
3747 CLEAR_BIT(adev->set_mask, GETSET_POWER_80211);
3750 if (adev->set_mask & GETSET_CHANNEL) {
3751 /* channel */
3752 log(L_INIT, "updating channel to: %u\n", adev->channel);
3753 CLEAR_BIT(adev->set_mask, GETSET_CHANNEL);
3756 if (adev->set_mask & GETSET_TX) {
3757 /* set Tx */
3758 log(L_INIT, "updating: %s Tx\n",
3759 adev->tx_disabled ? "disable" : "enable");
3760 if (adev->tx_disabled)
3761 acx_s_issue_cmd(adev, ACX1xx_CMD_DISABLE_TX, NULL, 0);
3762 else {
3763 acx_s_issue_cmd(adev, ACX1xx_CMD_ENABLE_TX,
3764 &adev->channel, 1);
3765 FIXME();
3766 /* This needs to be keyed on WEP? */
3767 /* acx111_s_feature_on(adev, 0,
3768 FEATURE2_NO_TXCRYPT |
3769 FEATURE2_SNIFFER); */
3770 acx_wake_queue(adev->ieee, NULL);
3772 CLEAR_BIT(adev->set_mask, GETSET_TX);
3775 if (adev->set_mask & GETSET_RX) {
3776 /* Enable Rx */
3777 log(L_INIT, "updating: enable Rx on channel: %u\n",
3778 adev->channel);
3779 acx_s_issue_cmd(adev, ACX1xx_CMD_ENABLE_RX, &adev->channel, 1);
3780 CLEAR_BIT(adev->set_mask, GETSET_RX);
3783 if (adev->set_mask & GETSET_RETRY) {
3784 u8 short_retry[4 + ACX1xx_IE_DOT11_SHORT_RETRY_LIMIT_LEN];
3785 u8 long_retry[4 + ACX1xx_IE_DOT11_LONG_RETRY_LIMIT_LEN];
3787 log(L_INIT,
3788 "updating short retry limit: %u, long retry limit: %u\n",
3789 adev->short_retry, adev->long_retry);
3790 short_retry[0x4] = adev->short_retry;
3791 long_retry[0x4] = adev->long_retry;
3792 acx_s_configure(adev, &short_retry,
3793 ACX1xx_IE_DOT11_SHORT_RETRY_LIMIT);
3794 acx_s_configure(adev, &long_retry,
3795 ACX1xx_IE_DOT11_LONG_RETRY_LIMIT);
3796 CLEAR_BIT(adev->set_mask, GETSET_RETRY);
3799 if (adev->set_mask & SET_MSDU_LIFETIME) {
3800 u8 xmt_msdu_lifetime[4 +
3801 ACX1xx_IE_DOT11_MAX_XMIT_MSDU_LIFETIME_LEN];
3803 log(L_INIT, "updating tx MSDU lifetime: %u\n",
3804 adev->msdu_lifetime);
3805 *(u32 *) & xmt_msdu_lifetime[4] =
3806 cpu_to_le32((u32) adev->msdu_lifetime);
3807 acx_s_configure(adev, &xmt_msdu_lifetime,
3808 ACX1xx_IE_DOT11_MAX_XMIT_MSDU_LIFETIME);
3809 CLEAR_BIT(adev->set_mask, SET_MSDU_LIFETIME);
3812 if (adev->set_mask & GETSET_REG_DOMAIN) {
3813 log(L_INIT, "updating regulatory domain: 0x%02X\n",
3814 adev->reg_dom_id);
3815 acx_s_set_sane_reg_domain(adev, 1);
3816 CLEAR_BIT(adev->set_mask, GETSET_REG_DOMAIN);
3818 if (adev->set_mask & GETSET_MODE ) {
3819 acx111_s_feature_on(adev, 0,
3820 FEATURE2_NO_TXCRYPT | FEATURE2_SNIFFER);
3821 switch (adev->mode) {
3822 case ACX_MODE_3_AP:
3823 adev->aid = 0;
3824 //acx111_s_feature_off(adev, 0,
3825 // FEATURE2_NO_TXCRYPT | FEATURE2_SNIFFER);
3826 MAC_COPY(adev->bssid, adev->dev_addr);
3827 acx_s_cmd_join_bssid(adev, adev->dev_addr);
3828 break;
3829 case ACX_MODE_MONITOR:
3830 SET_BIT(adev->set_mask, SET_RXCONFIG | SET_WEP_OPTIONS);
3831 break;
3832 case ACX_MODE_0_ADHOC:
3833 case ACX_MODE_2_STA:
3834 acx111_s_feature_on(adev, 0, FEATURE2_NO_TXCRYPT | FEATURE2_SNIFFER);
3835 break;
3836 default:
3837 break;
3839 CLEAR_BIT(adev->set_mask, GETSET_MODE);
3841 if (adev->set_mask & SET_TEMPLATES) {
3842 switch (adev->mode)
3844 case ACX_MODE_3_AP:
3845 acx_s_set_tim_template(adev);
3846 break;
3847 default:
3848 break;
3850 if (adev->beacon_cache)
3852 acx_s_set_beacon_template(adev, adev->beacon_cache);
3853 dev_kfree_skb(adev->beacon_cache);
3854 adev->beacon_cache = NULL;
3856 CLEAR_BIT(adev->set_mask, SET_TEMPLATES);
3859 if (adev->set_mask & SET_RXCONFIG) {
3860 acx_s_initialize_rx_config(adev);
3861 CLEAR_BIT(adev->set_mask, SET_RXCONFIG);
3864 if (adev->set_mask & GETSET_RESCAN) {
3865 /* switch (adev->mode) {
3866 case ACX_MODE_0_ADHOC:
3867 case ACX_MODE_2_STA:
3868 start_scan = 1;
3869 break;
3871 */ CLEAR_BIT(adev->set_mask, GETSET_RESCAN);
3874 if (adev->set_mask & GETSET_WEP) {
3875 /* encode */
3877 ie_dot11WEPDefaultKeyID_t dkey;
3878 #ifdef DEBUG_WEP
3879 struct {
3880 u16 type;
3881 u16 len;
3882 u8 val;
3883 } ACX_PACKED keyindic;
3884 #endif
3885 log(L_INIT, "updating WEP key settings\n");
3887 acx_s_set_wepkey(adev);
3888 if (adev->wep_enabled) {
3889 dkey.KeyID = adev->wep_current_index;
3890 log(L_INIT, "setting WEP key %u as default\n",
3891 dkey.KeyID);
3892 acx_s_configure(adev, &dkey,
3893 ACX1xx_IE_DOT11_WEP_DEFAULT_KEY_SET);
3894 #ifdef DEBUG_WEP
3895 keyindic.val = 3;
3896 acx_s_configure(adev, &keyindic, ACX111_IE_KEY_CHOOSE);
3897 #endif
3900 // start_scan = 1;
3901 CLEAR_BIT(adev->set_mask, GETSET_WEP);
3904 if (adev->set_mask & SET_WEP_OPTIONS) {
3905 acx100_ie_wep_options_t options;
3907 if (IS_ACX111(adev)) {
3908 log(L_DEBUG,
3909 "setting WEP Options for acx111 is not supported\n");
3910 } else {
3911 log(L_INIT, "setting WEP Options\n");
3913 /* let's choose maximum setting: 4 default keys,
3914 * plus 10 other keys: */
3915 options.NumKeys =
3916 cpu_to_le16(DOT11_MAX_DEFAULT_WEP_KEYS + 10);
3917 /* don't decrypt default key only,
3918 * don't override decryption: */
3919 options.WEPOption = 0;
3920 if (adev->mode == ACX_MODE_3_AP) {
3921 /* don't decrypt default key only,
3922 * override decryption mechanism: */
3923 options.WEPOption = 2;
3926 acx_s_configure(adev, &options, ACX100_IE_WEP_OPTIONS);
3928 CLEAR_BIT(adev->set_mask, SET_WEP_OPTIONS);
3932 /* debug, rate, and nick don't need any handling */
3933 /* what about sniffing mode?? */
3935 /* log(L_INIT, "get_mask 0x%08X, set_mask 0x%08X - after update\n",
3936 adev->get_mask, adev->set_mask);
3938 /* end: */
3939 FN_EXIT0;
3942 #if 0
3943 /***********************************************************************
3944 ** acx_e_after_interrupt_task
3946 static int acx_s_recalib_radio(acx_device_t * adev)
3948 if (IS_ACX111(adev)) {
3949 acx111_cmd_radiocalib_t cal;
3951 /* automatic recalibration, choose all methods: */
3952 cal.methods = cpu_to_le32(0x8000000f);
3953 /* automatic recalibration every 60 seconds (value in TUs)
3954 * I wonder what the firmware default here is? */
3955 cal.interval = cpu_to_le32(58594);
3956 return acx_s_issue_cmd_timeo(adev, ACX111_CMD_RADIOCALIB,
3957 &cal, sizeof(cal),
3958 CMD_TIMEOUT_MS(100));
3959 } else {
3960 /* On ACX100, we need to recalibrate the radio
3961 * by issuing a GETSET_TX|GETSET_RX */
3962 if ( /* (OK == acx_s_issue_cmd(adev, ACX1xx_CMD_DISABLE_TX, NULL, 0)) &&
3963 (OK == acx_s_issue_cmd(adev, ACX1xx_CMD_DISABLE_RX, NULL, 0)) && */
3964 (OK ==
3965 acx_s_issue_cmd(adev, ACX1xx_CMD_ENABLE_TX,
3966 &adev->channel, 1))
3967 && (OK ==
3968 acx_s_issue_cmd(adev, ACX1xx_CMD_ENABLE_RX,
3969 &adev->channel, 1)))
3970 return OK;
3971 return NOT_OK;
3974 #endif // if 0
3975 #if 0
3976 static void acx_s_after_interrupt_recalib(acx_device_t * adev)
3978 int res;
3980 /* this helps with ACX100 at least;
3981 * hopefully ACX111 also does a
3982 * recalibration here */
3984 /* clear flag beforehand, since we want to make sure
3985 * it's cleared; then only set it again on specific circumstances */
3986 CLEAR_BIT(adev->after_interrupt_jobs, ACX_AFTER_IRQ_CMD_RADIO_RECALIB);
3988 /* better wait a bit between recalibrations to
3989 * prevent overheating due to torturing the card
3990 * into working too long despite high temperature
3991 * (just a safety measure) */
3992 if (adev->recalib_time_last_success
3993 && time_before(jiffies, adev->recalib_time_last_success
3994 + RECALIB_PAUSE * 60 * HZ)) {
3995 if (adev->recalib_msg_ratelimit <= 4) {
3996 printk("%s: less than " STRING(RECALIB_PAUSE)
3997 " minutes since last radio recalibration, "
3998 "not recalibrating (maybe card is too hot?)\n",
3999 wiphy_name(adev->ieee->wiphy));
4000 adev->recalib_msg_ratelimit++;
4001 if (adev->recalib_msg_ratelimit == 5)
4002 printk("disabling above message until next recalib\n");
4004 return;
4007 adev->recalib_msg_ratelimit = 0;
4009 /* note that commands sometimes fail (card busy),
4010 * so only clear flag if we were fully successful */
4011 res = acx_s_recalib_radio(adev);
4012 if (res == OK) {
4013 printk("%s: successfully recalibrated radio\n",
4014 wiphy_name(adev->ieee->wiphy));
4015 adev->recalib_time_last_success = jiffies;
4016 adev->recalib_failure_count = 0;
4017 } else {
4018 /* failed: resubmit, but only limited
4019 * amount of times within some time range
4020 * to prevent endless loop */
4022 adev->recalib_time_last_success = 0; /* we failed */
4024 /* if some time passed between last
4025 * attempts, then reset failure retry counter
4026 * to be able to do next recalib attempt */
4027 if (time_after
4028 (jiffies, adev->recalib_time_last_attempt + 5 * HZ))
4029 adev->recalib_failure_count = 0;
4031 if (adev->recalib_failure_count < 5) {
4032 /* increment inside only, for speedup of outside path */
4033 adev->recalib_failure_count++;
4034 adev->recalib_time_last_attempt = jiffies;
4035 acx_schedule_task(adev,
4036 ACX_AFTER_IRQ_CMD_RADIO_RECALIB);
4040 #endif // if 0
4042 void acx_e_after_interrupt_task(struct work_struct *work)
4044 acx_device_t *adev = container_of(work, acx_device_t, after_interrupt_task);
4045 unsigned long flags;
4047 FN_ENTER;
4049 acx_lock(adev, flags);
4051 if (!adev->after_interrupt_jobs || !adev->initialized)
4052 goto end; /* no jobs to do */
4054 /* we see lotsa tx errors */
4055 if (adev->after_interrupt_jobs & ACX_AFTER_IRQ_CMD_RADIO_RECALIB) {
4056 // acx_s_after_interrupt_recalib(adev);
4059 /* a poor interrupt code wanted to do update_card_settings() */
4060 if (adev->after_interrupt_jobs & ACX_AFTER_IRQ_UPDATE_CARD_CFG) {
4061 if (ACX_STATE_IFACE_UP & adev->dev_state_mask) {
4062 acx_unlock(adev, flags);
4063 acx_s_update_card_settings(adev);
4064 acx_lock(adev, flags);
4066 CLEAR_BIT(adev->after_interrupt_jobs,
4067 ACX_AFTER_IRQ_UPDATE_CARD_CFG);
4070 /* 1) we detected that no Scan_Complete IRQ came from fw, or
4071 ** 2) we found too many STAs */
4072 if (adev->after_interrupt_jobs & ACX_AFTER_IRQ_CMD_STOP_SCAN) {
4073 log(L_IRQ, "sending a stop scan cmd...\n");
4074 acx_unlock(adev, flags);
4075 acx_s_issue_cmd(adev, ACX1xx_CMD_STOP_SCAN, NULL, 0);
4076 acx_lock(adev, flags);
4077 /* HACK: set the IRQ bit, since we won't get a
4078 * scan complete IRQ any more on ACX111 (works on ACX100!),
4079 * since _we_, not a fw, have stopped the scan */
4080 SET_BIT(adev->irq_status, HOST_INT_SCAN_COMPLETE);
4081 CLEAR_BIT(adev->after_interrupt_jobs,
4082 ACX_AFTER_IRQ_CMD_STOP_SCAN);
4085 /* either fw sent Scan_Complete or we detected that
4086 ** no Scan_Complete IRQ came from fw. Finish scanning,
4087 ** pick join partner if any */
4088 if (adev->after_interrupt_jobs & ACX_AFTER_IRQ_COMPLETE_SCAN) {
4089 /* + scan kills current join status - restore it
4090 ** (do we need it for STA?) */
4091 /* + does it happen only with active scans?
4092 ** active and passive scans? ALL scans including
4093 ** background one? */
4094 /* + was not verified that everything is restored
4095 ** (but at least we start to emit beacons again) */
4096 CLEAR_BIT(adev->after_interrupt_jobs,
4097 ACX_AFTER_IRQ_COMPLETE_SCAN);
4100 /* STA auth or assoc timed out, start over again */
4102 if (adev->after_interrupt_jobs & ACX_AFTER_IRQ_RESTART_SCAN) {
4103 log(L_IRQ, "sending a start_scan cmd...\n");
4104 CLEAR_BIT(adev->after_interrupt_jobs,
4105 ACX_AFTER_IRQ_RESTART_SCAN);
4108 /* whee, we got positive assoc response! 8) */
4109 if (adev->after_interrupt_jobs & ACX_AFTER_IRQ_CMD_ASSOCIATE) {
4110 CLEAR_BIT(adev->after_interrupt_jobs,
4111 ACX_AFTER_IRQ_CMD_ASSOCIATE);
4113 end:
4114 if(adev->after_interrupt_jobs)
4116 printk("Jobs still to be run: %x\n",adev->after_interrupt_jobs);
4117 adev->after_interrupt_jobs = 0;
4119 acx_unlock(adev, flags);
4120 // acx_sem_unlock(adev);
4121 FN_EXIT0;
4125 /***********************************************************************
4126 ** acx_schedule_task
4128 ** Schedule the call of the after_interrupt method after leaving
4129 ** the interrupt context.
4131 void acx_schedule_task(acx_device_t * adev, unsigned int set_flag)
4133 if (!adev->after_interrupt_jobs)
4135 SET_BIT(adev->after_interrupt_jobs, set_flag);
4136 schedule_work(&adev->after_interrupt_task);
4141 /***********************************************************************
4143 void acx_init_task_scheduler(acx_device_t * adev)
4145 /* configure task scheduler */
4146 INIT_WORK(&adev->after_interrupt_task, acx_interrupt_tasklet);
4150 /***********************************************************************
4151 ** acx_s_start
4153 void acx_s_start(acx_device_t * adev)
4155 FN_ENTER;
4158 * Ok, now we do everything that can possibly be done with ioctl
4159 * calls to make sure that when it was called before the card
4160 * was up we get the changes asked for
4163 SET_BIT(adev->set_mask, SET_TEMPLATES | SET_STA_LIST | GETSET_WEP
4164 | GETSET_TXPOWER | GETSET_ANTENNA | GETSET_ED_THRESH |
4165 GETSET_CCA | GETSET_REG_DOMAIN | GETSET_MODE | GETSET_CHANNEL |
4166 GETSET_TX | GETSET_RX | GETSET_STATION_ID);
4168 log(L_INIT, "updating initial settings on iface activation\n");
4169 acx_s_update_card_settings(adev);
4171 FN_EXIT0;
4175 /***********************************************************************
4176 ** acx_update_capabilities
4177 *//*
4178 void acx_update_capabilities(acx_device_t * adev)
4180 u16 cap = 0;
4182 switch (adev->mode) {
4183 case ACX_MODE_3_AP:
4184 SET_BIT(cap, WF_MGMT_CAP_ESS);
4185 break;
4186 case ACX_MODE_0_ADHOC:
4187 SET_BIT(cap, WF_MGMT_CAP_IBSS);
4188 break;
4189 */ /* other types of stations do not emit beacons */
4190 /* }
4192 if (adev->wep_restricted) {
4193 SET_BIT(cap, WF_MGMT_CAP_PRIVACY);
4195 if (adev->cfgopt_dot11ShortPreambleOption) {
4196 SET_BIT(cap, WF_MGMT_CAP_SHORT);
4198 if (adev->cfgopt_dot11PBCCOption) {
4199 SET_BIT(cap, WF_MGMT_CAP_PBCC);
4201 if (adev->cfgopt_dot11ChannelAgility) {
4202 SET_BIT(cap, WF_MGMT_CAP_AGILITY);
4204 log(L_DEBUG, "caps updated from 0x%04X to 0x%04X\n",
4205 adev->capabilities, cap);
4206 adev->capabilities = cap;
4210 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4213 static void acx_s_select_opmode(acx_device_t * adev)
4215 int changed = 0;
4216 FN_ENTER;
4218 if (adev->interface.operating) {
4219 switch (adev->interface.type) {
4220 case IEEE80211_IF_TYPE_AP:
4221 if (adev->mode != ACX_MODE_3_AP)
4223 adev->mode = ACX_MODE_3_AP;
4224 changed = 1;
4226 break;
4227 case IEEE80211_IF_TYPE_IBSS:
4228 if (adev->mode != ACX_MODE_0_ADHOC)
4230 adev->mode = ACX_MODE_0_ADHOC;
4231 changed = 1;
4233 break;
4234 case IEEE80211_IF_TYPE_STA:
4235 if (adev->mode != ACX_MODE_2_STA)
4237 adev->mode = ACX_MODE_2_STA;
4238 changed = 1;
4240 break;
4241 case IEEE80211_IF_TYPE_WDS:
4242 default:
4243 if (adev->mode != ACX_MODE_OFF)
4245 adev->mode = ACX_MODE_OFF;
4246 changed = 1;
4248 break;
4250 } else {
4251 if (adev->interface.type == IEEE80211_IF_TYPE_MNTR)
4253 if (adev->mode != ACX_MODE_MONITOR)
4255 adev->mode = ACX_MODE_MONITOR;
4256 changed = 1;
4259 else
4261 if (adev->mode != ACX_MODE_OFF)
4263 adev->mode = ACX_MODE_OFF;
4264 changed = 1;
4268 if (changed)
4270 SET_BIT(adev->set_mask, GETSET_MODE);
4271 acx_s_update_card_settings(adev);
4272 // acx_schedule_task(adev, ACX_AFTER_IRQ_UPDATE_CARD_CFG);
4275 FN_EXIT0;
4279 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4283 int acx_add_interface(struct ieee80211_hw *ieee,
4284 struct ieee80211_if_init_conf *conf)
4286 acx_device_t *adev = ieee2adev(ieee);
4287 unsigned long flags;
4288 int err = -EOPNOTSUPP;
4290 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
4291 DECLARE_MAC_BUF(mac);
4292 #endif
4294 FN_ENTER;
4295 acx_lock(adev, flags);
4297 if (conf->type == IEEE80211_IF_TYPE_MNTR) {
4298 adev->interface.monitor++;
4299 } else {
4300 if (adev->interface.operating)
4301 goto out_unlock;
4302 adev->interface.operating = 1;
4303 adev->interface.mac_addr = conf->mac_addr;
4304 adev->interface.type = conf->type;
4306 // adev->mode = conf->type;
4308 acx_unlock(adev, flags);
4310 if (adev->initialized)
4311 acx_s_select_opmode(adev);
4313 acx_lock(adev, flags);
4315 err = 0;
4317 printk(KERN_INFO "Virtual interface added "
4318 "(type: 0x%08X, ID: %d, MAC: %s)\n",
4319 conf->type,
4320 adev->interface.if_id,
4321 print_mac(mac, conf->mac_addr));
4323 out_unlock:
4324 acx_unlock(adev, flags);
4326 FN_EXIT0;
4327 return err;
4330 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4334 void acx_remove_interface(struct ieee80211_hw *hw,
4335 struct ieee80211_if_init_conf *conf)
4337 acx_device_t *adev = ieee2adev(hw);
4338 unsigned long flags;
4340 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
4341 DECLARE_MAC_BUF(mac);
4342 #endif
4344 FN_ENTER;
4346 acx_lock(adev, flags);
4347 if (conf->type == IEEE80211_IF_TYPE_MNTR) {
4348 adev->interface.monitor--;
4349 // assert(bcm->interface.monitor >= 0);
4350 } else
4351 adev->interface.operating = 0;
4353 printk("Removing interface: %d %d\n", adev->interface.operating, conf->type);
4354 acx_unlock(adev, flags);
4356 if (adev->initialized)
4357 acx_s_select_opmode(adev);
4358 flush_scheduled_work();
4360 printk(KERN_INFO "Virtual interface removed "
4361 "(type: 0x%08X, ID: %d, MAC: %s)\n",
4362 conf->type, adev->interface.if_id, print_mac(mac, conf->mac_addr));
4364 FN_EXIT0;
4367 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4371 int acx_net_reset(struct ieee80211_hw *ieee)
4373 acx_device_t *adev = ieee2adev(ieee);
4374 FN_ENTER;
4375 if (IS_PCI(adev))
4376 acxpci_s_reset_dev(adev);
4377 else
4378 TODO();
4380 FN_EXIT0;
4381 return 0;
4385 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4388 int acx_selectchannel(acx_device_t * adev, u8 channel, int freq)
4390 int result;
4392 FN_ENTER;
4394 acx_sem_lock(adev);
4395 adev->rx_status.channel = channel;
4396 adev->rx_status.freq = freq;
4398 adev->channel = channel;
4399 /* hmm, the following code part is strange, but this is how
4400 * it was being done before... */
4401 log(L_IOCTL, "Changing to channel %d\n", channel);
4402 SET_BIT(adev->set_mask, GETSET_CHANNEL);
4403 result = -EINPROGRESS; /* need to call commit handler */
4405 acx_sem_unlock(adev);
4406 FN_EXIT1(result);
4407 return result;
4411 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4414 int acx_net_config(struct ieee80211_hw *hw, struct ieee80211_conf *conf)
4416 acx_device_t *adev = ieee2adev(hw);
4417 unsigned long flags;
4418 #if 0
4419 int change = 0;
4420 #endif
4421 FN_ENTER;
4423 acx_lock(adev, flags);
4424 //FIXME();
4425 if (!adev->initialized) {
4426 acx_unlock(adev, flags);
4427 return 0;
4429 if (conf->beacon_int != adev->beacon_interval)
4430 adev->beacon_interval = conf->beacon_int;
4431 if (conf->channel != adev->channel) {
4432 acx_unlock(adev, flags);
4433 acx_selectchannel(adev, conf->channel,conf->freq);
4434 acx_lock(adev, flags);
4435 /* acx_schedule_task(adev,
4436 ACX_AFTER_IRQ_UPDATE_CARD_CFG
4437 */ /*+ ACX_AFTER_IRQ_RESTART_SCAN */ /*);*/
4440 if (conf->short_slot_time != adev->short_slot) {
4441 // assert(phy->type == BCM43xx_PHYTYPE_G);
4442 if (conf->short_slot_time)
4443 acx_short_slot_timing_enable(adev);
4444 else
4445 acx_short_slot_timing_disable(adev);
4446 acx_schedule_task(adev, ACX_AFTER_IRQ_UPDATE_CARD_CFG);
4449 adev->tx_disabled = !conf->radio_enabled;
4450 /* if (conf->power_level != 0){
4451 adev->tx_level_dbm = conf->power_level;
4452 acx_s_set_tx_level(adev, adev->tx_level_dbm);
4453 SET_BIT(adev->set_mask,GETSET_TXPOWER);
4454 //acx_schedule_task(adev, ACX_AFTER_IRQ_UPDATE_CARD_CFG);
4457 //FIXME: This does not seem to wake up:
4458 #if 0
4459 if (conf->power_level == 0) {
4460 if (radio->enabled)
4461 bcm43xx_radio_turn_off(bcm);
4462 } else {
4463 if (!radio->enabled)
4464 bcm43xx_radio_turn_on(bcm);
4466 #endif
4468 //TODO: phymode
4469 //TODO: antennas
4470 if (adev->set_mask > 0) {
4471 acx_unlock(adev, flags);
4472 acx_s_update_card_settings(adev);
4473 acx_lock(adev, flags);
4475 acx_unlock(adev, flags);
4477 FN_EXIT0;
4478 return 0;
4482 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4486 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,25)
4487 extern int acx_config_interface(struct ieee80211_hw* ieee,
4488 struct ieee80211_vif *vif,
4489 struct ieee80211_if_conf *conf)
4491 acx_device_t *adev = ieee2adev(ieee);
4492 unsigned long flags;
4493 int err = -ENODEV;
4494 FN_ENTER;
4495 if (!adev->interface.operating)
4496 goto err_out;
4498 if (adev->initialized)
4499 acx_s_select_opmode(adev);
4501 acx_lock(adev, flags);
4503 if ((conf->type != IEEE80211_IF_TYPE_MNTR)
4504 && (adev->vif == vif)) {
4505 if (conf->bssid)
4507 adev->interface.bssid = conf->bssid;
4508 MAC_COPY(adev->bssid,conf->bssid);
4511 if ((conf->type == IEEE80211_IF_TYPE_AP)
4512 && (adev->vif == vif)) {
4513 #else
4514 int acx_config_interface(struct ieee80211_hw* ieee, int if_id,
4515 struct ieee80211_if_conf *conf)
4517 acx_device_t *adev = ieee2adev(ieee);
4518 unsigned long flags;
4519 int err = -ENODEV;
4520 FN_ENTER;
4521 if (!adev->interface.operating)
4522 goto err_out;
4524 if (adev->initialized)
4525 acx_s_select_opmode(adev);
4527 acx_lock(adev, flags);
4529 if ((conf->type != IEEE80211_IF_TYPE_MNTR)
4530 && (adev->interface.if_id == if_id)) {
4531 if (conf->bssid)
4533 adev->interface.bssid = conf->bssid;
4534 MAC_COPY(adev->bssid,conf->bssid);
4537 if ((conf->type == IEEE80211_IF_TYPE_AP)
4538 && (adev->interface.if_id == if_id)) {
4539 #endif
4541 if ((conf->ssid_len > 0) && conf->ssid)
4543 adev->essid_len = conf->ssid_len;
4544 memcpy(adev->essid, conf->ssid, conf->ssid_len);
4545 SET_BIT(adev->set_mask, SET_TEMPLATES);
4548 if (conf->beacon != 0)
4550 adev->beacon_interval = DEFAULT_BEACON_INTERVAL;
4551 adev->beacon_cache = conf->beacon;
4552 SET_BIT(adev->set_mask, SET_TEMPLATES);
4555 acx_unlock(adev, flags);
4557 if (adev->set_mask != 0)
4558 acx_s_update_card_settings(adev);
4559 // acx_schedule_task(adev, ACX_AFTER_IRQ_UPDATE_CARD_CFG);
4560 err = 0;
4561 err_out:
4562 FN_EXIT1(err);
4563 return err;
4567 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4571 int acx_net_get_tx_stats(struct ieee80211_hw *hw,
4572 struct ieee80211_tx_queue_stats *stats)
4574 // acx_device_t *adev = ndev2adev(net_dev);
4575 struct ieee80211_tx_queue_stats_data *data;
4576 int err = -ENODEV;
4578 FN_ENTER;
4580 // acx_lock(adev, flags);
4581 data = &(stats->data[0]);
4582 data->len = 0;
4583 data->limit = TX_CNT;
4584 data->count = 0;
4585 // acx_unlock(adev, flags);
4587 FN_EXIT0;
4588 return err;
4591 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4595 int acx_net_conf_tx(struct ieee80211_hw *hw,
4596 int queue, const struct ieee80211_tx_queue_params *params)
4598 FN_ENTER;
4599 // TODO();
4600 FN_EXIT0;
4601 return 0;
4604 static void keymac_write(acx_device_t * adev, u16 index, const u32 * addr)
4606 /* for keys 0-3 there is no associated mac address */
4607 if (index < 4)
4608 return;
4610 index -= 4;
4611 if (1) {
4612 TODO();
4614 bcm43xx_shm_write32(bcm,
4615 BCM43xx_SHM_HWMAC,
4616 index * 2,
4617 cpu_to_be32(*addr));
4618 bcm43xx_shm_write16(bcm,
4619 BCM43xx_SHM_HWMAC,
4620 (index * 2) + 1,
4621 cpu_to_be16(*((u16 *)(addr + 1))));
4623 } else {
4624 if (index < 8) {
4625 TODO(); /* Put them in the macaddress filter */
4626 } else {
4627 TODO();
4628 /* Put them BCM43xx_SHM_SHARED, stating index 0x0120.
4629 Keep in mind to update the count of keymacs in 0x003 */
4635 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4639 int acx_clear_keys(acx_device_t * adev)
4641 static const u32 zero_mac[2] = { 0 };
4642 unsigned int i, j, nr_keys = 54;
4643 u16 offset;
4645 /* FixMe:Check for Number of Keys available */
4647 // assert(nr_keys <= ARRAY_SIZE(adev->key));
4649 for (i = 0; i < nr_keys; i++) {
4650 adev->key[i].enabled = 0;
4651 /* returns for i < 4 immediately */
4652 keymac_write(adev, i, zero_mac);
4654 bcm43xx_shm_write16(adev, BCM43xx_SHM_SHARED,
4655 0x100 + (i * 2), 0x0000);
4657 for (j = 0; j < 8; j++) {
4658 offset =
4659 adev->security_offset + (j * 4) +
4660 (i * ACX_SEC_KEYSIZE);
4662 bcm43xx_shm_write16(bcm, BCM43xx_SHM_SHARED,
4663 offset, 0x0000);
4667 return 1;
4671 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4675 int acx_key_write(acx_device_t * adev,
4676 u16 index, u8 algorithm,
4677 const struct ieee80211_key_conf *key, const u8 * mac_addr)
4679 // struct iw_point *dwrq = &wrqu->encoding;
4680 int result;
4682 FN_ENTER;
4684 log(L_IOCTL, "set encoding flags=0x%04X, size=%d, key: %s\n",
4685 dwrq->flags, dwrq->length, extra ? "set" : "No key");
4687 // acx_sem_lock(adev);
4689 // index = (dwrq->flags & IW_ENCODE_INDEX) - 1;
4690 if (key->keylen > 0) {
4691 /* if index is 0 or invalid, use default key */
4692 if (index > 3)
4693 index = (int)adev->wep_current_index;
4694 if ((algorithm == ACX_SEC_ALGO_WEP) ||
4695 (algorithm == ACX_SEC_ALGO_WEP104)) {
4696 switch(key->keylen) {
4697 case 40 / 8:
4698 /* WEP 40-bit =
4699 40-bit entered key + 24 bit IV = 64-bit */
4700 adev->wep_keys[index].size = 13;
4701 break;
4702 case 104 / 8:
4703 /* WEP 104-bit =
4704 104-bit entered key + 24-bit IV = 128-bit */
4705 adev->wep_keys[index].size = 29;
4706 break;
4707 case 128 / 8:
4708 /* WEP 128-bit =
4709 128-bit entered key + 24 bit IV = 152-bit */
4710 adev->wep_keys[index].size = 16;
4711 break;
4712 default:
4713 adev->wep_keys[index].size = 0;
4714 return -EINVAL; /* shouldn't happen */
4717 memset(adev->wep_keys[index].key, 0,
4718 sizeof(adev->wep_keys[index].key));
4719 memcpy(adev->wep_keys[index].key, key, key->keylen);
4720 } else {
4721 /* set transmit key */
4722 if (index <= 3)
4723 adev->wep_current_index = index;
4724 // else if (0 == (dwrq->flags & IW_ENCODE_MODE)) {
4725 /* complain if we were not just setting
4726 * the key mode */
4727 // result = -EINVAL;
4728 // goto end_unlock;
4729 // }
4733 adev->wep_enabled = (algorithm == ALG_WEP);
4735 adev->wep_enabled = !(dwrq->flags & IW_ENCODE_DISABLED);
4737 if (algorithm & IW_ENCODE_OPEN) {
4738 adev->auth_alg = WLAN_AUTH_ALG_OPENSYSTEM;
4739 adev->wep_restricted = 0;
4741 } else if (algorithm & IW_ENCODE_RESTRICTED) {
4742 adev->auth_alg = WLAN_AUTH_ALG_SHAREDKEY;
4743 adev->wep_restricted = 1;
4746 // adev->auth_alg = algorithm;
4747 /* set flag to make sure the card WEP settings get updated */
4748 if (adev->wep_enabled) {
4749 SET_BIT(adev->set_mask, GETSET_WEP);
4750 acx_s_update_card_settings(adev);
4751 // acx_schedule_task(adev, ACX_AFTER_IRQ_UPDATE_CARD_CFG);
4754 log(L_IOCTL, "len=%d, key at 0x%p, flags=0x%X\n",
4755 dwrq->length, extra, dwrq->flags);
4756 for (index = 0; index <= 3; index++) {
4757 if (adev->wep_keys[index].size) {
4758 log(L_IOCTL, "index=%d, size=%d, key at 0x%p\n",
4759 adev->wep_keys[index].index,
4760 (int) adev->wep_keys[index].size,
4761 adev->wep_keys[index].key);
4765 result = -EINPROGRESS;
4766 // acx_sem_unlock(adev);
4768 FN_EXIT1(result);
4769 return result;
4775 ** Derived from mac80211 code, p54, bcm43xx_mac80211
4779 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,24)
4780 int acx_net_set_key(struct ieee80211_hw *ieee,
4781 set_key_cmd cmd,
4782 u8 * addr, struct ieee80211_key_conf *key, int aid)
4783 #else
4784 int acx_net_set_key(struct ieee80211_hw *ieee,
4785 enum set_key_cmd cmd, const u8 *local_addr,
4786 const u8 * addr, struct ieee80211_key_conf *key)
4787 #endif
4789 // return 0;
4790 struct acx_device *adev = ieee2adev(ieee);
4791 unsigned long flags;
4792 u8 algorithm;
4793 u16 index;
4794 int err = -EINVAL;
4795 FN_ENTER;
4796 // TODO();
4797 switch (key->alg) {
4798 default:
4799 /* case ALG_NONE:
4800 case ALG_NULL:
4801 algorithm = ACX_SEC_ALGO_NONE;
4802 break;
4803 */ case ALG_WEP:
4804 if (key->keylen == 5)
4805 algorithm = ACX_SEC_ALGO_WEP;
4806 else
4807 algorithm = ACX_SEC_ALGO_WEP104;
4808 break;
4809 case ALG_TKIP:
4810 algorithm = ACX_SEC_ALGO_TKIP;
4811 break;
4812 case ALG_CCMP:
4813 algorithm = ACX_SEC_ALGO_AES;
4814 break;
4817 index = (u8) (key->keyidx);
4818 if (index >= ARRAY_SIZE(adev->key))
4819 goto out;
4820 acx_lock(adev, flags);
4821 switch (cmd) {
4822 case SET_KEY:
4823 err = acx_key_write(adev, index, algorithm, key, addr);
4824 if (err)
4825 goto out_unlock;
4826 key->hw_key_idx = index;
4827 /* CLEAR_BIT(key->flags, IEEE80211_KEY_FORCE_SW_ENCRYPT);*/
4828 /* if (CHECK_BIT(key->flags, IEEE80211_KEY_DEFAULT_TX_KEY))
4829 adev->default_key_idx = index;*/
4830 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,24)
4831 SET_BIT(key->flags, IEEE80211_KEY_FLAG_GENERATE_IV);
4832 #endif
4833 adev->key[index].enabled = 1;
4834 break;
4835 case DISABLE_KEY:
4836 adev->key[index].enabled = 0;
4837 err = 0;
4838 break;
4839 /* case ENABLE_COMPRESSION:
4840 case DISABLE_COMPRESSION:
4841 err = 0;
4842 break; */
4844 out_unlock:
4845 acx_unlock(adev, flags);
4846 out:
4847 FN_EXIT0;
4848 return err;
4853 /***********************************************************************
4854 ** Common function to parse ALL configoption struct formats
4855 ** (ACX100 and ACX111; FIXME: how to make it work with ACX100 USB!?!?).
4856 ** FIXME: logging should be removed here and added to a /proc file instead
4858 ** Look into bcm43xx
4860 void
4861 acx_s_parse_configoption(acx_device_t * adev,
4862 const acx111_ie_configoption_t * pcfg)
4864 const u8 *pEle;
4865 int i;
4866 int is_acx111 = IS_ACX111(adev);
4868 if (acx_debug & L_DEBUG) {
4869 printk("configoption struct content:\n");
4870 acx_dump_bytes(pcfg, sizeof(*pcfg));
4873 if ((is_acx111 && (adev->eeprom_version == 5))
4874 || (!is_acx111 && (adev->eeprom_version == 4))
4875 || (!is_acx111 && (adev->eeprom_version == 5))) {
4876 /* these versions are known to be supported */
4877 } else {
4878 printk("unknown chip and EEPROM version combination (%s, v%d), "
4879 "don't know how to parse config options yet. "
4880 "Please report\n", is_acx111 ? "ACX111" : "ACX100",
4881 adev->eeprom_version);
4882 return;
4885 /* first custom-parse the first part which has chip-specific layout */
4887 pEle = (const u8 *)pcfg;
4889 pEle += 4; /* skip (type,len) header */
4891 memcpy(adev->cfgopt_NVSv, pEle, sizeof(adev->cfgopt_NVSv));
4892 pEle += sizeof(adev->cfgopt_NVSv);
4894 if (is_acx111) {
4895 adev->cfgopt_NVS_vendor_offs = le16_to_cpu(*(u16 *) pEle);
4896 pEle += sizeof(adev->cfgopt_NVS_vendor_offs);
4898 adev->cfgopt_probe_delay = 200; /* good default value? */
4899 pEle += 2; /* FIXME: unknown, value 0x0001 */
4900 } else {
4901 memcpy(adev->cfgopt_MAC, pEle, sizeof(adev->cfgopt_MAC));
4902 pEle += sizeof(adev->cfgopt_MAC);
4904 adev->cfgopt_probe_delay = le16_to_cpu(*(u16 *) pEle);
4905 pEle += sizeof(adev->cfgopt_probe_delay);
4906 if ((adev->cfgopt_probe_delay < 100)
4907 || (adev->cfgopt_probe_delay > 500)) {
4908 printk("strange probe_delay value %d, "
4909 "tweaking to 200\n", adev->cfgopt_probe_delay);
4910 adev->cfgopt_probe_delay = 200;
4914 adev->cfgopt_eof_memory = le32_to_cpu(*(u32 *) pEle);
4915 pEle += sizeof(adev->cfgopt_eof_memory);
4917 printk("NVS_vendor_offs:%04X probe_delay:%d eof_memory:%d\n",
4918 adev->cfgopt_NVS_vendor_offs,
4919 adev->cfgopt_probe_delay, adev->cfgopt_eof_memory);
4921 adev->cfgopt_dot11CCAModes = *pEle++;
4922 adev->cfgopt_dot11Diversity = *pEle++;
4923 adev->cfgopt_dot11ShortPreambleOption = *pEle++;
4924 adev->cfgopt_dot11PBCCOption = *pEle++;
4925 adev->cfgopt_dot11ChannelAgility = *pEle++;
4926 adev->cfgopt_dot11PhyType = *pEle++;
4927 adev->cfgopt_dot11TempType = *pEle++;
4928 printk("CCAModes:%02X Diversity:%02X ShortPreOpt:%02X "
4929 "PBCC:%02X ChanAgil:%02X PHY:%02X Temp:%02X\n",
4930 adev->cfgopt_dot11CCAModes,
4931 adev->cfgopt_dot11Diversity,
4932 adev->cfgopt_dot11ShortPreambleOption,
4933 adev->cfgopt_dot11PBCCOption,
4934 adev->cfgopt_dot11ChannelAgility,
4935 adev->cfgopt_dot11PhyType, adev->cfgopt_dot11TempType);
4937 /* then use common parsing for next part which has common layout */
4939 pEle++; /* skip table_count (6) */
4941 adev->cfgopt_antennas.type = pEle[0];
4942 adev->cfgopt_antennas.len = pEle[1];
4943 printk("AntennaID:%02X Len:%02X Data:",
4944 adev->cfgopt_antennas.type, adev->cfgopt_antennas.len);
4945 for (i = 0; i < pEle[1]; i++) {
4946 adev->cfgopt_antennas.list[i] = pEle[i + 2];
4947 printk("%02X ", pEle[i + 2]);
4949 printk("\n");
4951 pEle += pEle[1] + 2;
4952 adev->cfgopt_power_levels.type = pEle[0];
4953 adev->cfgopt_power_levels.len = pEle[1];
4954 printk("PowerLevelID:%02X Len:%02X Data:",
4955 adev->cfgopt_power_levels.type, adev->cfgopt_power_levels.len);
4956 for (i = 0; i < pEle[1]; i++) {
4957 adev->cfgopt_power_levels.list[i] =
4958 le16_to_cpu(*(u16 *) & pEle[i * 2 + 2]);
4959 printk("%04X ", adev->cfgopt_power_levels.list[i]);
4961 printk("\n");
4963 pEle += pEle[1] * 2 + 2;
4964 adev->cfgopt_data_rates.type = pEle[0];
4965 adev->cfgopt_data_rates.len = pEle[1];
4966 printk("DataRatesID:%02X Len:%02X Data:",
4967 adev->cfgopt_data_rates.type, adev->cfgopt_data_rates.len);
4968 for (i = 0; i < pEle[1]; i++) {
4969 adev->cfgopt_data_rates.list[i] = pEle[i + 2];
4970 printk("%02X ", pEle[i + 2]);
4972 printk("\n");
4974 pEle += pEle[1] + 2;
4975 adev->cfgopt_domains.type = pEle[0];
4976 adev->cfgopt_domains.len = pEle[1];
4977 printk("DomainID:%02X Len:%02X Data:",
4978 adev->cfgopt_domains.type, adev->cfgopt_domains.len);
4979 for (i = 0; i < pEle[1]; i++) {
4980 adev->cfgopt_domains.list[i] = pEle[i + 2];
4981 printk("%02X ", pEle[i + 2]);
4983 printk("\n");
4985 pEle += pEle[1] + 2;
4986 adev->cfgopt_product_id.type = pEle[0];
4987 adev->cfgopt_product_id.len = pEle[1];
4988 for (i = 0; i < pEle[1]; i++) {
4989 adev->cfgopt_product_id.list[i] = pEle[i + 2];
4991 printk("ProductID:%02X Len:%02X Data:%.*s\n",
4992 adev->cfgopt_product_id.type, adev->cfgopt_product_id.len,
4993 adev->cfgopt_product_id.len,
4994 (char *)adev->cfgopt_product_id.list);
4996 pEle += pEle[1] + 2;
4997 adev->cfgopt_manufacturer.type = pEle[0];
4998 adev->cfgopt_manufacturer.len = pEle[1];
4999 for (i = 0; i < pEle[1]; i++) {
5000 adev->cfgopt_manufacturer.list[i] = pEle[i + 2];
5002 printk("ManufacturerID:%02X Len:%02X Data:%.*s\n",
5003 adev->cfgopt_manufacturer.type, adev->cfgopt_manufacturer.len,
5004 adev->cfgopt_manufacturer.len,
5005 (char *)adev->cfgopt_manufacturer.list);
5007 printk("EEPROM part:\n");
5008 for (i=0; i<58; i++) {
5009 printk("%02X =======> 0x%02X\n",
5010 i, (u8 *)adev->cfgopt_NVSv[i-2]);
5016 /***********************************************************************
5017 ** Linux Kernel Specific
5019 static int __init acx_e_init_module(void)
5021 int r1, r2;
5023 acx_struct_size_check();
5025 printk("acx: this driver is still EXPERIMENTAL\n"
5026 "acx: reading README file and/or Craig's HOWTO is "
5027 "recommended, visit http://acx100.sourceforge.net/wiki in case "
5028 "of further questions/discussion\n");
5030 #if defined(CONFIG_ACX_MAC80211_PCI)
5031 r1 = acxpci_e_init_module();
5032 #else
5033 r1 = -EINVAL;
5034 #endif
5035 #if defined(CONFIG_ACX_MAC80211_USB)
5036 r2 = acxusb_e_init_module();
5037 #else
5038 r2 = -EINVAL;
5039 #endif
5040 if (r2 && r1) /* both failed! */
5041 return r2 ? r2 : r1;
5042 /* return success if at least one succeeded */
5043 return 0;
5046 static void __exit acx_e_cleanup_module(void)
5048 #if defined(CONFIG_ACX_MAC80211_PCI)
5049 acxpci_e_cleanup_module();
5050 #endif
5051 #if defined(CONFIG_ACX_MAC80211_USB)
5052 acxusb_e_cleanup_module();
5053 #endif
5056 module_init(acx_e_init_module)
5057 module_exit(acx_e_cleanup_module)