2 * This file contains the major functions in WLAN
3 * driver. It includes init, exit, open, close and main
7 #include <linux/moduleparam.h>
8 #include <linux/delay.h>
9 #include <linux/freezer.h>
10 #include <linux/etherdevice.h>
11 #include <linux/netdevice.h>
12 #include <linux/if_arp.h>
13 #include <linux/kthread.h>
15 #include <net/iw_handler.h>
16 #include <net/ieee80211.h>
27 #define DRIVER_RELEASE_VERSION "323.p0"
28 const char lbs_driver_version
[] = "COMM-USB8388-" DRIVER_RELEASE_VERSION
35 /* Module parameters */
36 unsigned int lbs_debug
;
37 EXPORT_SYMBOL_GPL(lbs_debug
);
38 module_param_named(libertas_debug
, lbs_debug
, int, 0644);
41 #define LBS_TX_PWR_DEFAULT 20 /*100mW */
42 #define LBS_TX_PWR_US_DEFAULT 20 /*100mW */
43 #define LBS_TX_PWR_JP_DEFAULT 16 /*50mW */
44 #define LBS_TX_PWR_FR_DEFAULT 20 /*100mW */
45 #define LBS_TX_PWR_EMEA_DEFAULT 20 /*100mW */
47 /* Format { channel, frequency (MHz), maxtxpower } */
48 /* band: 'B/G', region: USA FCC/Canada IC */
49 static struct chan_freq_power channel_freq_power_US_BG
[] = {
50 {1, 2412, LBS_TX_PWR_US_DEFAULT
},
51 {2, 2417, LBS_TX_PWR_US_DEFAULT
},
52 {3, 2422, LBS_TX_PWR_US_DEFAULT
},
53 {4, 2427, LBS_TX_PWR_US_DEFAULT
},
54 {5, 2432, LBS_TX_PWR_US_DEFAULT
},
55 {6, 2437, LBS_TX_PWR_US_DEFAULT
},
56 {7, 2442, LBS_TX_PWR_US_DEFAULT
},
57 {8, 2447, LBS_TX_PWR_US_DEFAULT
},
58 {9, 2452, LBS_TX_PWR_US_DEFAULT
},
59 {10, 2457, LBS_TX_PWR_US_DEFAULT
},
60 {11, 2462, LBS_TX_PWR_US_DEFAULT
}
63 /* band: 'B/G', region: Europe ETSI */
64 static struct chan_freq_power channel_freq_power_EU_BG
[] = {
65 {1, 2412, LBS_TX_PWR_EMEA_DEFAULT
},
66 {2, 2417, LBS_TX_PWR_EMEA_DEFAULT
},
67 {3, 2422, LBS_TX_PWR_EMEA_DEFAULT
},
68 {4, 2427, LBS_TX_PWR_EMEA_DEFAULT
},
69 {5, 2432, LBS_TX_PWR_EMEA_DEFAULT
},
70 {6, 2437, LBS_TX_PWR_EMEA_DEFAULT
},
71 {7, 2442, LBS_TX_PWR_EMEA_DEFAULT
},
72 {8, 2447, LBS_TX_PWR_EMEA_DEFAULT
},
73 {9, 2452, LBS_TX_PWR_EMEA_DEFAULT
},
74 {10, 2457, LBS_TX_PWR_EMEA_DEFAULT
},
75 {11, 2462, LBS_TX_PWR_EMEA_DEFAULT
},
76 {12, 2467, LBS_TX_PWR_EMEA_DEFAULT
},
77 {13, 2472, LBS_TX_PWR_EMEA_DEFAULT
}
80 /* band: 'B/G', region: Spain */
81 static struct chan_freq_power channel_freq_power_SPN_BG
[] = {
82 {10, 2457, LBS_TX_PWR_DEFAULT
},
83 {11, 2462, LBS_TX_PWR_DEFAULT
}
86 /* band: 'B/G', region: France */
87 static struct chan_freq_power channel_freq_power_FR_BG
[] = {
88 {10, 2457, LBS_TX_PWR_FR_DEFAULT
},
89 {11, 2462, LBS_TX_PWR_FR_DEFAULT
},
90 {12, 2467, LBS_TX_PWR_FR_DEFAULT
},
91 {13, 2472, LBS_TX_PWR_FR_DEFAULT
}
94 /* band: 'B/G', region: Japan */
95 static struct chan_freq_power channel_freq_power_JPN_BG
[] = {
96 {1, 2412, LBS_TX_PWR_JP_DEFAULT
},
97 {2, 2417, LBS_TX_PWR_JP_DEFAULT
},
98 {3, 2422, LBS_TX_PWR_JP_DEFAULT
},
99 {4, 2427, LBS_TX_PWR_JP_DEFAULT
},
100 {5, 2432, LBS_TX_PWR_JP_DEFAULT
},
101 {6, 2437, LBS_TX_PWR_JP_DEFAULT
},
102 {7, 2442, LBS_TX_PWR_JP_DEFAULT
},
103 {8, 2447, LBS_TX_PWR_JP_DEFAULT
},
104 {9, 2452, LBS_TX_PWR_JP_DEFAULT
},
105 {10, 2457, LBS_TX_PWR_JP_DEFAULT
},
106 {11, 2462, LBS_TX_PWR_JP_DEFAULT
},
107 {12, 2467, LBS_TX_PWR_JP_DEFAULT
},
108 {13, 2472, LBS_TX_PWR_JP_DEFAULT
},
109 {14, 2484, LBS_TX_PWR_JP_DEFAULT
}
113 * the structure for channel, frequency and power
115 struct region_cfp_table
{
117 struct chan_freq_power
*cfp_BG
;
122 * the structure for the mapping between region and CFP
124 static struct region_cfp_table region_cfp_table
[] = {
126 channel_freq_power_US_BG
,
127 ARRAY_SIZE(channel_freq_power_US_BG
),
130 {0x20, /*CANADA IC */
131 channel_freq_power_US_BG
,
132 ARRAY_SIZE(channel_freq_power_US_BG
),
135 {0x30, /*EU*/ channel_freq_power_EU_BG
,
136 ARRAY_SIZE(channel_freq_power_EU_BG
),
139 {0x31, /*SPAIN*/ channel_freq_power_SPN_BG
,
140 ARRAY_SIZE(channel_freq_power_SPN_BG
),
143 {0x32, /*FRANCE*/ channel_freq_power_FR_BG
,
144 ARRAY_SIZE(channel_freq_power_FR_BG
),
147 {0x40, /*JAPAN*/ channel_freq_power_JPN_BG
,
148 ARRAY_SIZE(channel_freq_power_JPN_BG
),
151 /*Add new region here */
155 * the table to keep region code
157 u16 lbs_region_code_to_index
[MRVDRV_MAX_REGION_CODE
] =
158 { 0x10, 0x20, 0x30, 0x31, 0x32, 0x40 };
161 * 802.11b/g supported bitrates (in 500Kb/s units)
163 u8 lbs_bg_rates
[MAX_RATES
] =
164 { 0x02, 0x04, 0x0b, 0x16, 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6c,
168 * FW rate table. FW refers to rates by their index in this table, not by the
169 * rate value itself. Values of 0x00 are
170 * reserved positions.
172 static u8 fw_data_rates
[MAX_RATES
] =
173 { 0x02, 0x04, 0x0B, 0x16, 0x00, 0x0C, 0x12,
174 0x18, 0x24, 0x30, 0x48, 0x60, 0x6C, 0x00
178 * @brief use index to get the data rate
180 * @param idx The index of data rate
181 * @return data rate or 0
183 u32
lbs_fw_index_to_data_rate(u8 idx
)
185 if (idx
>= sizeof(fw_data_rates
))
187 return fw_data_rates
[idx
];
191 * @brief use rate to get the index
193 * @param rate data rate
196 u8
lbs_data_rate_to_fw_index(u32 rate
)
203 for (i
= 0; i
< sizeof(fw_data_rates
); i
++) {
204 if (rate
== fw_data_rates
[i
])
211 * Attributes exported through sysfs
215 * @brief Get function for sysfs attribute anycast_mask
217 static ssize_t
lbs_anycast_get(struct device
*dev
,
218 struct device_attribute
*attr
, char * buf
)
220 struct lbs_private
*priv
= to_net_dev(dev
)->priv
;
221 struct cmd_ds_mesh_access mesh_access
;
224 memset(&mesh_access
, 0, sizeof(mesh_access
));
226 ret
= lbs_mesh_access(priv
, CMD_ACT_MESH_GET_ANYCAST
, &mesh_access
);
230 return snprintf(buf
, 12, "0x%X\n", le32_to_cpu(mesh_access
.data
[0]));
234 * @brief Set function for sysfs attribute anycast_mask
236 static ssize_t
lbs_anycast_set(struct device
*dev
,
237 struct device_attribute
*attr
, const char * buf
, size_t count
)
239 struct lbs_private
*priv
= to_net_dev(dev
)->priv
;
240 struct cmd_ds_mesh_access mesh_access
;
244 memset(&mesh_access
, 0, sizeof(mesh_access
));
245 sscanf(buf
, "%x", &datum
);
246 mesh_access
.data
[0] = cpu_to_le32(datum
);
248 ret
= lbs_mesh_access(priv
, CMD_ACT_MESH_SET_ANYCAST
, &mesh_access
);
255 static int lbs_add_rtap(struct lbs_private
*priv
);
256 static void lbs_remove_rtap(struct lbs_private
*priv
);
257 static int lbs_add_mesh(struct lbs_private
*priv
);
258 static void lbs_remove_mesh(struct lbs_private
*priv
);
262 * Get function for sysfs attribute rtap
264 static ssize_t
lbs_rtap_get(struct device
*dev
,
265 struct device_attribute
*attr
, char * buf
)
267 struct lbs_private
*priv
= to_net_dev(dev
)->priv
;
268 return snprintf(buf
, 5, "0x%X\n", priv
->monitormode
);
272 * Set function for sysfs attribute rtap
274 static ssize_t
lbs_rtap_set(struct device
*dev
,
275 struct device_attribute
*attr
, const char * buf
, size_t count
)
278 struct lbs_private
*priv
= to_net_dev(dev
)->priv
;
280 sscanf(buf
, "%x", &monitor_mode
);
281 if (monitor_mode
!= LBS_MONITOR_OFF
) {
282 if(priv
->monitormode
== monitor_mode
)
284 if (priv
->monitormode
== LBS_MONITOR_OFF
) {
285 if (priv
->infra_open
|| priv
->mesh_open
)
287 if (priv
->mode
== IW_MODE_INFRA
)
288 lbs_send_deauthentication(priv
);
289 else if (priv
->mode
== IW_MODE_ADHOC
)
290 lbs_stop_adhoc_network(priv
);
293 priv
->monitormode
= monitor_mode
;
297 if (priv
->monitormode
== LBS_MONITOR_OFF
)
299 priv
->monitormode
= LBS_MONITOR_OFF
;
300 lbs_remove_rtap(priv
);
302 if (priv
->currenttxskb
) {
303 dev_kfree_skb_any(priv
->currenttxskb
);
304 priv
->currenttxskb
= NULL
;
307 /* Wake queues, command thread, etc. */
308 lbs_host_to_card_done(priv
);
311 lbs_prepare_and_send_command(priv
,
312 CMD_802_11_MONITOR_MODE
, CMD_ACT_SET
,
313 CMD_OPTION_WAITFORRSP
, 0, &priv
->monitormode
);
318 * lbs_rtap attribute to be exported per ethX interface
319 * through sysfs (/sys/class/net/ethX/lbs_rtap)
321 static DEVICE_ATTR(lbs_rtap
, 0644, lbs_rtap_get
, lbs_rtap_set
);
324 * Get function for sysfs attribute mesh
326 static ssize_t
lbs_mesh_get(struct device
*dev
,
327 struct device_attribute
*attr
, char * buf
)
329 struct lbs_private
*priv
= to_net_dev(dev
)->priv
;
330 return snprintf(buf
, 5, "0x%X\n", !!priv
->mesh_dev
);
334 * Set function for sysfs attribute mesh
336 static ssize_t
lbs_mesh_set(struct device
*dev
,
337 struct device_attribute
*attr
, const char * buf
, size_t count
)
339 struct lbs_private
*priv
= to_net_dev(dev
)->priv
;
343 sscanf(buf
, "%x", &enable
);
345 if (enable
== !!priv
->mesh_dev
)
348 ret
= lbs_mesh_config(priv
, enable
);
355 lbs_remove_mesh(priv
);
361 * lbs_mesh attribute to be exported per ethX interface
362 * through sysfs (/sys/class/net/ethX/lbs_mesh)
364 static DEVICE_ATTR(lbs_mesh
, 0644, lbs_mesh_get
, lbs_mesh_set
);
367 * anycast_mask attribute to be exported per mshX interface
368 * through sysfs (/sys/class/net/mshX/anycast_mask)
370 static DEVICE_ATTR(anycast_mask
, 0644, lbs_anycast_get
, lbs_anycast_set
);
372 static struct attribute
*lbs_mesh_sysfs_entries
[] = {
373 &dev_attr_anycast_mask
.attr
,
377 static struct attribute_group lbs_mesh_attr_group
= {
378 .attrs
= lbs_mesh_sysfs_entries
,
382 * @brief This function opens the ethX or mshX interface
384 * @param dev A pointer to net_device structure
385 * @return 0 or -EBUSY if monitor mode active
387 static int lbs_dev_open(struct net_device
*dev
)
389 struct lbs_private
*priv
= (struct lbs_private
*) dev
->priv
;
392 spin_lock_irq(&priv
->driver_lock
);
394 if (priv
->monitormode
!= LBS_MONITOR_OFF
) {
399 if (dev
== priv
->mesh_dev
) {
401 priv
->mesh_connect_status
= LBS_CONNECTED
;
402 netif_carrier_on(dev
);
404 priv
->infra_open
= 1;
406 if (priv
->connect_status
== LBS_CONNECTED
)
407 netif_carrier_on(dev
);
409 netif_carrier_off(dev
);
412 if (!priv
->tx_pending_len
)
413 netif_wake_queue(dev
);
416 spin_unlock_irq(&priv
->driver_lock
);
421 * @brief This function closes the mshX interface
423 * @param dev A pointer to net_device structure
426 static int lbs_mesh_stop(struct net_device
*dev
)
428 struct lbs_private
*priv
= (struct lbs_private
*) (dev
->priv
);
430 spin_lock_irq(&priv
->driver_lock
);
433 priv
->mesh_connect_status
= LBS_DISCONNECTED
;
435 netif_stop_queue(dev
);
436 netif_carrier_off(dev
);
438 spin_unlock_irq(&priv
->driver_lock
);
443 * @brief This function closes the ethX interface
445 * @param dev A pointer to net_device structure
448 static int lbs_eth_stop(struct net_device
*dev
)
450 struct lbs_private
*priv
= (struct lbs_private
*) dev
->priv
;
452 spin_lock_irq(&priv
->driver_lock
);
454 priv
->infra_open
= 0;
456 netif_stop_queue(dev
);
458 spin_unlock_irq(&priv
->driver_lock
);
462 static void lbs_tx_timeout(struct net_device
*dev
)
464 struct lbs_private
*priv
= (struct lbs_private
*) dev
->priv
;
466 lbs_deb_enter(LBS_DEB_TX
);
468 lbs_pr_err("tx watch dog timeout\n");
470 dev
->trans_start
= jiffies
;
472 if (priv
->currenttxskb
) {
473 priv
->eventcause
= 0x01000000;
474 lbs_send_tx_feedback(priv
);
476 /* XX: Shouldn't we also call into the hw-specific driver
477 to kick it somehow? */
478 lbs_host_to_card_done(priv
);
480 lbs_deb_leave(LBS_DEB_TX
);
483 void lbs_host_to_card_done(struct lbs_private
*priv
)
487 spin_lock_irqsave(&priv
->driver_lock
, flags
);
489 priv
->dnld_sent
= DNLD_RES_RECEIVED
;
491 /* Wake main thread if commands are pending */
493 wake_up_interruptible(&priv
->waitq
);
495 /* Don't wake netif queues if we're in monitor mode and
496 a TX packet is already pending, or if there are commands
497 queued to be sent. */
498 if (!priv
->currenttxskb
&& list_empty(&priv
->cmdpendingq
)) {
499 if (priv
->dev
&& priv
->connect_status
== LBS_CONNECTED
)
500 netif_wake_queue(priv
->dev
);
502 if (priv
->mesh_dev
&& priv
->mesh_connect_status
== LBS_CONNECTED
)
503 netif_wake_queue(priv
->mesh_dev
);
505 spin_unlock_irqrestore(&priv
->driver_lock
, flags
);
507 EXPORT_SYMBOL_GPL(lbs_host_to_card_done
);
510 * @brief This function returns the network statistics
512 * @param dev A pointer to struct lbs_private structure
513 * @return A pointer to net_device_stats structure
515 static struct net_device_stats
*lbs_get_stats(struct net_device
*dev
)
517 struct lbs_private
*priv
= (struct lbs_private
*) dev
->priv
;
522 static int lbs_set_mac_address(struct net_device
*dev
, void *addr
)
525 struct lbs_private
*priv
= (struct lbs_private
*) dev
->priv
;
526 struct sockaddr
*phwaddr
= addr
;
528 lbs_deb_enter(LBS_DEB_NET
);
530 /* In case it was called from the mesh device */
533 memset(priv
->current_addr
, 0, ETH_ALEN
);
535 /* dev->dev_addr is 8 bytes */
536 lbs_deb_hex(LBS_DEB_NET
, "dev->dev_addr", dev
->dev_addr
, ETH_ALEN
);
538 lbs_deb_hex(LBS_DEB_NET
, "addr", phwaddr
->sa_data
, ETH_ALEN
);
539 memcpy(priv
->current_addr
, phwaddr
->sa_data
, ETH_ALEN
);
541 ret
= lbs_prepare_and_send_command(priv
, CMD_802_11_MAC_ADDRESS
,
543 CMD_OPTION_WAITFORRSP
, 0, NULL
);
546 lbs_deb_net("set MAC address failed\n");
551 lbs_deb_hex(LBS_DEB_NET
, "priv->macaddr", priv
->current_addr
, ETH_ALEN
);
552 memcpy(dev
->dev_addr
, priv
->current_addr
, ETH_ALEN
);
554 memcpy(priv
->mesh_dev
->dev_addr
, priv
->current_addr
, ETH_ALEN
);
557 lbs_deb_leave_args(LBS_DEB_NET
, "ret %d", ret
);
561 static int lbs_copy_multicast_address(struct lbs_private
*priv
,
562 struct net_device
*dev
)
565 struct dev_mc_list
*mcptr
= dev
->mc_list
;
567 for (i
= 0; i
< dev
->mc_count
; i
++) {
568 memcpy(&priv
->multicastlist
[i
], mcptr
->dmi_addr
, ETH_ALEN
);
576 static void lbs_set_multicast_list(struct net_device
*dev
)
578 struct lbs_private
*priv
= dev
->priv
;
580 DECLARE_MAC_BUF(mac
);
582 lbs_deb_enter(LBS_DEB_NET
);
584 oldpacketfilter
= priv
->currentpacketfilter
;
586 if (dev
->flags
& IFF_PROMISC
) {
587 lbs_deb_net("enable promiscuous mode\n");
588 priv
->currentpacketfilter
|=
589 CMD_ACT_MAC_PROMISCUOUS_ENABLE
;
590 priv
->currentpacketfilter
&=
591 ~(CMD_ACT_MAC_ALL_MULTICAST_ENABLE
|
592 CMD_ACT_MAC_MULTICAST_ENABLE
);
595 priv
->currentpacketfilter
&=
596 ~CMD_ACT_MAC_PROMISCUOUS_ENABLE
;
598 if (dev
->flags
& IFF_ALLMULTI
|| dev
->mc_count
>
599 MRVDRV_MAX_MULTICAST_LIST_SIZE
) {
600 lbs_deb_net( "enabling all multicast\n");
601 priv
->currentpacketfilter
|=
602 CMD_ACT_MAC_ALL_MULTICAST_ENABLE
;
603 priv
->currentpacketfilter
&=
604 ~CMD_ACT_MAC_MULTICAST_ENABLE
;
606 priv
->currentpacketfilter
&=
607 ~CMD_ACT_MAC_ALL_MULTICAST_ENABLE
;
609 if (!dev
->mc_count
) {
610 lbs_deb_net("no multicast addresses, "
611 "disabling multicast\n");
612 priv
->currentpacketfilter
&=
613 ~CMD_ACT_MAC_MULTICAST_ENABLE
;
617 priv
->currentpacketfilter
|=
618 CMD_ACT_MAC_MULTICAST_ENABLE
;
620 priv
->nr_of_multicastmacaddr
=
621 lbs_copy_multicast_address(priv
, dev
);
623 lbs_deb_net("multicast addresses: %d\n",
626 for (i
= 0; i
< dev
->mc_count
; i
++) {
627 lbs_deb_net("Multicast address %d:%s\n",
629 priv
->multicastlist
[i
]));
631 /* send multicast addresses to firmware */
632 lbs_prepare_and_send_command(priv
,
633 CMD_MAC_MULTICAST_ADR
,
640 if (priv
->currentpacketfilter
!= oldpacketfilter
) {
641 lbs_set_mac_packet_filter(priv
);
644 lbs_deb_leave(LBS_DEB_NET
);
648 * @brief This function handles the major jobs in the LBS driver.
649 * It handles all events generated by firmware, RX data received
650 * from firmware and TX data sent from kernel.
652 * @param data A pointer to lbs_thread structure
655 static int lbs_thread(void *data
)
657 struct net_device
*dev
= data
;
658 struct lbs_private
*priv
= dev
->priv
;
662 lbs_deb_enter(LBS_DEB_THREAD
);
664 init_waitqueue_entry(&wait
, current
);
671 lbs_deb_thread( "main-thread 111: intcounter=%d currenttxskb=%p dnld_sent=%d\n",
672 priv
->intcounter
, priv
->currenttxskb
, priv
->dnld_sent
);
674 add_wait_queue(&priv
->waitq
, &wait
);
675 set_current_state(TASK_INTERRUPTIBLE
);
676 spin_lock_irq(&priv
->driver_lock
);
678 if (priv
->surpriseremoved
)
679 shouldsleep
= 0; /* Bye */
680 else if (priv
->psstate
== PS_STATE_SLEEP
)
681 shouldsleep
= 1; /* Sleep mode. Nothing we can do till it wakes */
682 else if (priv
->intcounter
)
683 shouldsleep
= 0; /* Interrupt pending. Deal with it now */
684 else if (!priv
->fw_ready
)
685 shouldsleep
= 1; /* Firmware not ready. We're waiting for it */
686 else if (priv
->dnld_sent
)
687 shouldsleep
= 1; /* Something is en route to the device already */
688 else if (priv
->tx_pending_len
> 0)
689 shouldsleep
= 0; /* We've a packet to send */
690 else if (priv
->cur_cmd
)
691 shouldsleep
= 1; /* Can't send a command; one already running */
692 else if (!list_empty(&priv
->cmdpendingq
))
693 shouldsleep
= 0; /* We have a command to send */
695 shouldsleep
= 1; /* No command */
698 lbs_deb_thread("main-thread sleeping... Conn=%d IntC=%d PS_mode=%d PS_State=%d\n",
699 priv
->connect_status
, priv
->intcounter
,
700 priv
->psmode
, priv
->psstate
);
701 spin_unlock_irq(&priv
->driver_lock
);
704 spin_unlock_irq(&priv
->driver_lock
);
706 lbs_deb_thread("main-thread 222 (waking up): intcounter=%d currenttxskb=%p dnld_sent=%d\n",
707 priv
->intcounter
, priv
->currenttxskb
, priv
->dnld_sent
);
709 set_current_state(TASK_RUNNING
);
710 remove_wait_queue(&priv
->waitq
, &wait
);
713 lbs_deb_thread("main-thread 333: intcounter=%d currenttxskb=%p dnld_sent=%d\n",
714 priv
->intcounter
, priv
->currenttxskb
, priv
->dnld_sent
);
716 if (kthread_should_stop() || priv
->surpriseremoved
) {
717 lbs_deb_thread("main-thread: break from main thread: surpriseremoved=0x%x\n",
718 priv
->surpriseremoved
);
723 spin_lock_irq(&priv
->driver_lock
);
725 if (priv
->intcounter
) {
728 priv
->intcounter
= 0;
729 int_status
= priv
->hw_get_int_status(priv
, &ireg
);
732 lbs_deb_thread("main-thread: reading HOST_INT_STATUS_REG failed\n");
733 spin_unlock_irq(&priv
->driver_lock
);
736 priv
->hisregcpy
|= ireg
;
739 lbs_deb_thread("main-thread 444: intcounter=%d currenttxskb=%p dnld_sent=%d\n",
740 priv
->intcounter
, priv
->currenttxskb
, priv
->dnld_sent
);
742 /* command response? */
743 if (priv
->hisregcpy
& MRVDRV_CMD_UPLD_RDY
) {
744 lbs_deb_thread("main-thread: cmd response ready\n");
746 priv
->hisregcpy
&= ~MRVDRV_CMD_UPLD_RDY
;
747 spin_unlock_irq(&priv
->driver_lock
);
748 lbs_process_rx_command(priv
);
749 spin_lock_irq(&priv
->driver_lock
);
753 if (priv
->hisregcpy
& MRVDRV_CARDEVENT
) {
754 lbs_deb_thread("main-thread: Card Event Activity\n");
756 priv
->hisregcpy
&= ~MRVDRV_CARDEVENT
;
758 if (priv
->hw_read_event_cause(priv
)) {
759 lbs_pr_alert("main-thread: hw_read_event_cause failed\n");
760 spin_unlock_irq(&priv
->driver_lock
);
763 spin_unlock_irq(&priv
->driver_lock
);
764 lbs_process_event(priv
);
766 spin_unlock_irq(&priv
->driver_lock
);
771 /* Check if we need to confirm Sleep Request received previously */
772 if (priv
->psstate
== PS_STATE_PRE_SLEEP
&&
773 !priv
->dnld_sent
&& !priv
->cur_cmd
) {
774 if (priv
->connect_status
== LBS_CONNECTED
) {
775 lbs_deb_thread("main_thread: PRE_SLEEP--intcounter=%d currenttxskb=%p dnld_sent=%d cur_cmd=%p, confirm now\n",
776 priv
->intcounter
, priv
->currenttxskb
, priv
->dnld_sent
, priv
->cur_cmd
);
778 lbs_ps_confirm_sleep(priv
, (u16
) priv
->psmode
);
780 /* workaround for firmware sending
781 * deauth/linkloss event immediately
782 * after sleep request; remove this
783 * after firmware fixes it
785 priv
->psstate
= PS_STATE_AWAKE
;
786 lbs_pr_alert("main-thread: ignore PS_SleepConfirm in non-connected state\n");
790 /* The PS state is changed during processing of Sleep Request
793 if ((priv
->psstate
== PS_STATE_SLEEP
) ||
794 (priv
->psstate
== PS_STATE_PRE_SLEEP
))
797 /* Execute the next command */
798 if (!priv
->dnld_sent
&& !priv
->cur_cmd
)
799 lbs_execute_next_command(priv
);
801 /* Wake-up command waiters which can't sleep in
802 * lbs_prepare_and_send_command
804 if (!list_empty(&priv
->cmdpendingq
))
805 wake_up_all(&priv
->cmd_pending
);
807 spin_lock_irq(&priv
->driver_lock
);
808 if (!priv
->dnld_sent
&& priv
->tx_pending_len
> 0) {
809 int ret
= priv
->hw_host_to_card(priv
, MVMS_DAT
,
810 priv
->tx_pending_buf
,
811 priv
->tx_pending_len
);
813 lbs_deb_tx("host_to_card failed %d\n", ret
);
814 priv
->dnld_sent
= DNLD_RES_RECEIVED
;
816 priv
->tx_pending_len
= 0;
817 if (!priv
->currenttxskb
) {
818 /* We can wake the queues immediately if we aren't
819 waiting for TX feedback */
820 if (priv
->connect_status
== LBS_CONNECTED
)
821 netif_wake_queue(priv
->dev
);
822 if (priv
->mesh_dev
&&
823 priv
->mesh_connect_status
== LBS_CONNECTED
)
824 netif_wake_queue(priv
->mesh_dev
);
827 spin_unlock_irq(&priv
->driver_lock
);
830 del_timer(&priv
->command_timer
);
831 wake_up_all(&priv
->cmd_pending
);
833 lbs_deb_leave(LBS_DEB_THREAD
);
838 * @brief This function downloads firmware image, gets
839 * HW spec from firmware and set basic parameters to
842 * @param priv A pointer to struct lbs_private structure
845 static int lbs_setup_firmware(struct lbs_private
*priv
)
849 lbs_deb_enter(LBS_DEB_FW
);
852 * Read MAC address from HW
854 memset(priv
->current_addr
, 0xff, ETH_ALEN
);
855 ret
= lbs_update_hw_spec(priv
);
861 lbs_set_mac_packet_filter(priv
);
863 ret
= lbs_get_data_rate(priv
);
871 lbs_deb_leave_args(LBS_DEB_FW
, "ret %d", ret
);
876 * This function handles the timeout of command sending.
877 * It will re-send the same command again.
879 static void command_timer_fn(unsigned long data
)
881 struct lbs_private
*priv
= (struct lbs_private
*)data
;
882 struct cmd_ctrl_node
*node
;
885 node
= priv
->cur_cmd
;
887 lbs_deb_fw("ptempnode empty\n");
892 lbs_deb_fw("cmd is NULL\n");
896 lbs_deb_fw("command_timer_fn fired, cmd %x\n", node
->cmdbuf
->command
);
901 spin_lock_irqsave(&priv
->driver_lock
, flags
);
902 priv
->cur_cmd
= NULL
;
903 spin_unlock_irqrestore(&priv
->driver_lock
, flags
);
905 lbs_deb_fw("re-sending same command because of timeout\n");
906 lbs_queue_cmd(priv
, node
, 0);
908 wake_up_interruptible(&priv
->waitq
);
913 static int lbs_init_adapter(struct lbs_private
*priv
)
918 /* Allocate buffer to store the BSSID list */
919 bufsize
= MAX_NETWORK_COUNT
* sizeof(struct bss_descriptor
);
920 priv
->networks
= kzalloc(bufsize
, GFP_KERNEL
);
921 if (!priv
->networks
) {
922 lbs_pr_err("Out of memory allocating beacons\n");
927 /* Initialize scan result lists */
928 INIT_LIST_HEAD(&priv
->network_free_list
);
929 INIT_LIST_HEAD(&priv
->network_list
);
930 for (i
= 0; i
< MAX_NETWORK_COUNT
; i
++) {
931 list_add_tail(&priv
->networks
[i
].list
,
932 &priv
->network_free_list
);
935 priv
->lbs_ps_confirm_sleep
.seqnum
= cpu_to_le16(++priv
->seqnum
);
936 priv
->lbs_ps_confirm_sleep
.command
=
937 cpu_to_le16(CMD_802_11_PS_MODE
);
938 priv
->lbs_ps_confirm_sleep
.size
=
939 cpu_to_le16(sizeof(struct PS_CMD_ConfirmSleep
));
940 priv
->lbs_ps_confirm_sleep
.action
=
941 cpu_to_le16(CMD_SUBCMD_SLEEP_CONFIRMED
);
943 memset(priv
->current_addr
, 0xff, ETH_ALEN
);
945 priv
->connect_status
= LBS_DISCONNECTED
;
946 priv
->mesh_connect_status
= LBS_DISCONNECTED
;
947 priv
->secinfo
.auth_mode
= IW_AUTH_ALG_OPEN_SYSTEM
;
948 priv
->mode
= IW_MODE_INFRA
;
949 priv
->curbssparams
.channel
= DEFAULT_AD_HOC_CHANNEL
;
950 priv
->currentpacketfilter
= CMD_ACT_MAC_RX_ON
| CMD_ACT_MAC_TX_ON
;
951 priv
->radioon
= RADIO_ON
;
953 priv
->capability
= WLAN_CAPABILITY_SHORT_PREAMBLE
;
954 priv
->psmode
= LBS802_11POWERMODECAM
;
955 priv
->psstate
= PS_STATE_FULL_POWER
;
957 mutex_init(&priv
->lock
);
959 setup_timer(&priv
->command_timer
, command_timer_fn
,
960 (unsigned long)priv
);
962 INIT_LIST_HEAD(&priv
->cmdfreeq
);
963 INIT_LIST_HEAD(&priv
->cmdpendingq
);
965 spin_lock_init(&priv
->driver_lock
);
966 init_waitqueue_head(&priv
->cmd_pending
);
968 /* Allocate the command buffers */
969 if (lbs_allocate_cmd_buffer(priv
)) {
970 lbs_pr_err("Out of memory allocating command buffers\n");
978 static void lbs_free_adapter(struct lbs_private
*priv
)
980 lbs_deb_fw("free command buffer\n");
981 lbs_free_cmd_buffer(priv
);
983 lbs_deb_fw("free command_timer\n");
984 del_timer(&priv
->command_timer
);
986 lbs_deb_fw("free scan results table\n");
987 kfree(priv
->networks
);
988 priv
->networks
= NULL
;
992 * @brief This function adds the card. it will probe the
993 * card, allocate the lbs_priv and initialize the device.
995 * @param card A pointer to card
996 * @return A pointer to struct lbs_private structure
998 struct lbs_private
*lbs_add_card(void *card
, struct device
*dmdev
)
1000 struct net_device
*dev
= NULL
;
1001 struct lbs_private
*priv
= NULL
;
1003 lbs_deb_enter(LBS_DEB_NET
);
1005 /* Allocate an Ethernet device and register it */
1006 dev
= alloc_etherdev(sizeof(struct lbs_private
));
1008 lbs_pr_err("init ethX device failed\n");
1013 if (lbs_init_adapter(priv
)) {
1014 lbs_pr_err("failed to initialize adapter structure.\n");
1015 goto err_init_adapter
;
1020 priv
->mesh_open
= 0;
1021 priv
->infra_open
= 0;
1023 /* Setup the OS Interface to our functions */
1024 dev
->open
= lbs_dev_open
;
1025 dev
->hard_start_xmit
= lbs_hard_start_xmit
;
1026 dev
->stop
= lbs_eth_stop
;
1027 dev
->set_mac_address
= lbs_set_mac_address
;
1028 dev
->tx_timeout
= lbs_tx_timeout
;
1029 dev
->get_stats
= lbs_get_stats
;
1030 dev
->watchdog_timeo
= 5 * HZ
;
1031 dev
->ethtool_ops
= &lbs_ethtool_ops
;
1033 dev
->wireless_handlers
= (struct iw_handler_def
*)&lbs_handler_def
;
1035 dev
->flags
|= IFF_BROADCAST
| IFF_MULTICAST
;
1036 dev
->set_multicast_list
= lbs_set_multicast_list
;
1038 SET_NETDEV_DEV(dev
, dmdev
);
1040 priv
->rtap_net_dev
= NULL
;
1042 lbs_deb_thread("Starting main thread...\n");
1043 init_waitqueue_head(&priv
->waitq
);
1044 priv
->main_thread
= kthread_run(lbs_thread
, dev
, "lbs_main");
1045 if (IS_ERR(priv
->main_thread
)) {
1046 lbs_deb_thread("Error creating main thread.\n");
1047 goto err_init_adapter
;
1050 priv
->work_thread
= create_singlethread_workqueue("lbs_worker");
1051 INIT_DELAYED_WORK(&priv
->assoc_work
, lbs_association_worker
);
1052 INIT_DELAYED_WORK(&priv
->scan_work
, lbs_scan_worker
);
1053 INIT_WORK(&priv
->sync_channel
, lbs_sync_channel
);
1055 sprintf(priv
->mesh_ssid
, "mesh");
1056 priv
->mesh_ssid_len
= 4;
1061 lbs_free_adapter(priv
);
1066 lbs_deb_leave_args(LBS_DEB_NET
, "priv %p", priv
);
1069 EXPORT_SYMBOL_GPL(lbs_add_card
);
1072 int lbs_remove_card(struct lbs_private
*priv
)
1074 struct net_device
*dev
= priv
->dev
;
1075 union iwreq_data wrqu
;
1077 lbs_deb_enter(LBS_DEB_MAIN
);
1079 lbs_remove_mesh(priv
);
1080 lbs_remove_rtap(priv
);
1084 cancel_delayed_work(&priv
->scan_work
);
1085 cancel_delayed_work(&priv
->assoc_work
);
1086 destroy_workqueue(priv
->work_thread
);
1088 if (priv
->psmode
== LBS802_11POWERMODEMAX_PSP
) {
1089 priv
->psmode
= LBS802_11POWERMODECAM
;
1090 lbs_ps_wakeup(priv
, CMD_OPTION_WAITFORRSP
);
1093 memset(wrqu
.ap_addr
.sa_data
, 0xaa, ETH_ALEN
);
1094 wrqu
.ap_addr
.sa_family
= ARPHRD_ETHER
;
1095 wireless_send_event(priv
->dev
, SIOCGIWAP
, &wrqu
, NULL
);
1097 /* Stop the thread servicing the interrupts */
1098 priv
->surpriseremoved
= 1;
1099 kthread_stop(priv
->main_thread
);
1101 lbs_free_adapter(priv
);
1106 lbs_deb_leave(LBS_DEB_MAIN
);
1109 EXPORT_SYMBOL_GPL(lbs_remove_card
);
1112 int lbs_start_card(struct lbs_private
*priv
)
1114 struct net_device
*dev
= priv
->dev
;
1117 lbs_deb_enter(LBS_DEB_MAIN
);
1119 /* poke the firmware */
1120 ret
= lbs_setup_firmware(priv
);
1127 if (register_netdev(dev
)) {
1128 lbs_pr_err("cannot register ethX device\n");
1131 if (device_create_file(&dev
->dev
, &dev_attr_lbs_rtap
))
1132 lbs_pr_err("cannot register lbs_rtap attribute\n");
1133 if (device_create_file(&dev
->dev
, &dev_attr_lbs_mesh
))
1134 lbs_pr_err("cannot register lbs_mesh attribute\n");
1136 lbs_debugfs_init_one(priv
, dev
);
1138 lbs_pr_info("%s: Marvell WLAN 802.11 adapter\n", dev
->name
);
1143 lbs_deb_leave_args(LBS_DEB_MAIN
, "ret %d", ret
);
1146 EXPORT_SYMBOL_GPL(lbs_start_card
);
1149 int lbs_stop_card(struct lbs_private
*priv
)
1151 struct net_device
*dev
= priv
->dev
;
1153 struct cmd_ctrl_node
*cmdnode
;
1154 unsigned long flags
;
1156 lbs_deb_enter(LBS_DEB_MAIN
);
1158 netif_stop_queue(priv
->dev
);
1159 netif_carrier_off(priv
->dev
);
1161 lbs_debugfs_remove_one(priv
);
1162 device_remove_file(&dev
->dev
, &dev_attr_lbs_rtap
);
1163 device_remove_file(&dev
->dev
, &dev_attr_lbs_mesh
);
1165 /* Flush pending command nodes */
1166 spin_lock_irqsave(&priv
->driver_lock
, flags
);
1167 list_for_each_entry(cmdnode
, &priv
->cmdpendingq
, list
) {
1168 cmdnode
->cmdwaitqwoken
= 1;
1169 wake_up_interruptible(&cmdnode
->cmdwait_q
);
1171 spin_unlock_irqrestore(&priv
->driver_lock
, flags
);
1173 unregister_netdev(dev
);
1175 lbs_deb_leave_args(LBS_DEB_MAIN
, "ret %d", ret
);
1178 EXPORT_SYMBOL_GPL(lbs_stop_card
);
1182 * @brief This function adds mshX interface
1184 * @param priv A pointer to the struct lbs_private structure
1185 * @return 0 if successful, -X otherwise
1187 static int lbs_add_mesh(struct lbs_private
*priv
)
1189 struct net_device
*mesh_dev
= NULL
;
1192 lbs_deb_enter(LBS_DEB_MESH
);
1194 /* Allocate a virtual mesh device */
1195 if (!(mesh_dev
= alloc_netdev(0, "msh%d", ether_setup
))) {
1196 lbs_deb_mesh("init mshX device failed\n");
1200 mesh_dev
->priv
= priv
;
1201 priv
->mesh_dev
= mesh_dev
;
1203 mesh_dev
->open
= lbs_dev_open
;
1204 mesh_dev
->hard_start_xmit
= lbs_hard_start_xmit
;
1205 mesh_dev
->stop
= lbs_mesh_stop
;
1206 mesh_dev
->get_stats
= lbs_get_stats
;
1207 mesh_dev
->set_mac_address
= lbs_set_mac_address
;
1208 mesh_dev
->ethtool_ops
= &lbs_ethtool_ops
;
1209 memcpy(mesh_dev
->dev_addr
, priv
->dev
->dev_addr
,
1210 sizeof(priv
->dev
->dev_addr
));
1212 SET_NETDEV_DEV(priv
->mesh_dev
, priv
->dev
->dev
.parent
);
1215 mesh_dev
->wireless_handlers
= (struct iw_handler_def
*)&mesh_handler_def
;
1217 /* Register virtual mesh interface */
1218 ret
= register_netdev(mesh_dev
);
1220 lbs_pr_err("cannot register mshX virtual interface\n");
1224 ret
= sysfs_create_group(&(mesh_dev
->dev
.kobj
), &lbs_mesh_attr_group
);
1226 goto err_unregister
;
1228 /* Everything successful */
1233 unregister_netdev(mesh_dev
);
1236 free_netdev(mesh_dev
);
1239 lbs_deb_leave_args(LBS_DEB_MESH
, "ret %d", ret
);
1242 EXPORT_SYMBOL_GPL(lbs_add_mesh
);
1245 static void lbs_remove_mesh(struct lbs_private
*priv
)
1247 struct net_device
*mesh_dev
;
1249 lbs_deb_enter(LBS_DEB_MAIN
);
1254 mesh_dev
= priv
->mesh_dev
;
1258 netif_stop_queue(mesh_dev
);
1259 netif_carrier_off(priv
->mesh_dev
);
1261 sysfs_remove_group(&(mesh_dev
->dev
.kobj
), &lbs_mesh_attr_group
);
1262 unregister_netdev(mesh_dev
);
1264 priv
->mesh_dev
= NULL
;
1265 free_netdev(mesh_dev
);
1268 lbs_deb_leave(LBS_DEB_MAIN
);
1270 EXPORT_SYMBOL_GPL(lbs_remove_mesh
);
1273 * @brief This function finds the CFP in
1274 * region_cfp_table based on region and band parameter.
1276 * @param region The region code
1277 * @param band The band
1278 * @param cfp_no A pointer to CFP number
1279 * @return A pointer to CFP
1281 struct chan_freq_power
*lbs_get_region_cfp_table(u8 region
, u8 band
, int *cfp_no
)
1285 lbs_deb_enter(LBS_DEB_MAIN
);
1287 end
= ARRAY_SIZE(region_cfp_table
);
1289 for (i
= 0; i
< end
; i
++) {
1290 lbs_deb_main("region_cfp_table[i].region=%d\n",
1291 region_cfp_table
[i
].region
);
1292 if (region_cfp_table
[i
].region
== region
) {
1293 *cfp_no
= region_cfp_table
[i
].cfp_no_BG
;
1294 lbs_deb_leave(LBS_DEB_MAIN
);
1295 return region_cfp_table
[i
].cfp_BG
;
1299 lbs_deb_leave_args(LBS_DEB_MAIN
, "ret NULL");
1303 int lbs_set_regiontable(struct lbs_private
*priv
, u8 region
, u8 band
)
1308 struct chan_freq_power
*cfp
;
1311 lbs_deb_enter(LBS_DEB_MAIN
);
1313 memset(priv
->region_channel
, 0, sizeof(priv
->region_channel
));
1316 cfp
= lbs_get_region_cfp_table(region
, band
, &cfp_no
);
1318 priv
->region_channel
[i
].nrcfp
= cfp_no
;
1319 priv
->region_channel
[i
].CFP
= cfp
;
1321 lbs_deb_main("wrong region code %#x in band B/G\n",
1326 priv
->region_channel
[i
].valid
= 1;
1327 priv
->region_channel
[i
].region
= region
;
1328 priv
->region_channel
[i
].band
= band
;
1332 lbs_deb_leave_args(LBS_DEB_MAIN
, "ret %d", ret
);
1337 * @brief This function handles the interrupt. it will change PS
1338 * state if applicable. it will wake up main_thread to handle
1339 * the interrupt event as well.
1341 * @param dev A pointer to net_device structure
1344 void lbs_interrupt(struct lbs_private
*priv
)
1346 lbs_deb_enter(LBS_DEB_THREAD
);
1348 lbs_deb_thread("lbs_interrupt: intcounter=%d\n", priv
->intcounter
);
1350 if (!spin_trylock(&priv
->driver_lock
)) {
1351 spin_unlock(&priv
->driver_lock
);
1352 printk(KERN_CRIT
"%s called without driver_lock held\n", __func__
);
1358 if (priv
->psstate
== PS_STATE_SLEEP
)
1359 priv
->psstate
= PS_STATE_AWAKE
;
1361 wake_up_interruptible(&priv
->waitq
);
1363 lbs_deb_leave(LBS_DEB_THREAD
);
1365 EXPORT_SYMBOL_GPL(lbs_interrupt
);
1367 int lbs_reset_device(struct lbs_private
*priv
)
1371 lbs_deb_enter(LBS_DEB_MAIN
);
1372 ret
= lbs_prepare_and_send_command(priv
, CMD_802_11_RESET
,
1373 CMD_ACT_HALT
, 0, 0, NULL
);
1374 msleep_interruptible(10);
1376 lbs_deb_leave_args(LBS_DEB_MAIN
, "ret %d", ret
);
1379 EXPORT_SYMBOL_GPL(lbs_reset_device
);
1381 static int __init
lbs_init_module(void)
1383 lbs_deb_enter(LBS_DEB_MAIN
);
1385 lbs_deb_leave(LBS_DEB_MAIN
);
1389 static void __exit
lbs_exit_module(void)
1391 lbs_deb_enter(LBS_DEB_MAIN
);
1393 lbs_debugfs_remove();
1395 lbs_deb_leave(LBS_DEB_MAIN
);
1399 * rtap interface support fuctions
1402 static int lbs_rtap_open(struct net_device
*dev
)
1404 /* Yes, _stop_ the queue. Because we don't support injection */
1405 netif_carrier_off(dev
);
1406 netif_stop_queue(dev
);
1410 static int lbs_rtap_stop(struct net_device
*dev
)
1415 static int lbs_rtap_hard_start_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
1417 netif_stop_queue(dev
);
1418 return NETDEV_TX_BUSY
;
1421 static struct net_device_stats
*lbs_rtap_get_stats(struct net_device
*dev
)
1423 struct lbs_private
*priv
= dev
->priv
;
1424 return &priv
->stats
;
1428 static void lbs_remove_rtap(struct lbs_private
*priv
)
1430 if (priv
->rtap_net_dev
== NULL
)
1432 unregister_netdev(priv
->rtap_net_dev
);
1433 free_netdev(priv
->rtap_net_dev
);
1434 priv
->rtap_net_dev
= NULL
;
1437 static int lbs_add_rtap(struct lbs_private
*priv
)
1440 struct net_device
*rtap_dev
;
1442 if (priv
->rtap_net_dev
)
1445 rtap_dev
= alloc_netdev(0, "rtap%d", ether_setup
);
1446 if (rtap_dev
== NULL
)
1449 memcpy(rtap_dev
->dev_addr
, priv
->current_addr
, ETH_ALEN
);
1450 rtap_dev
->type
= ARPHRD_IEEE80211_RADIOTAP
;
1451 rtap_dev
->open
= lbs_rtap_open
;
1452 rtap_dev
->stop
= lbs_rtap_stop
;
1453 rtap_dev
->get_stats
= lbs_rtap_get_stats
;
1454 rtap_dev
->hard_start_xmit
= lbs_rtap_hard_start_xmit
;
1455 rtap_dev
->set_multicast_list
= lbs_set_multicast_list
;
1456 rtap_dev
->priv
= priv
;
1458 rc
= register_netdev(rtap_dev
);
1460 free_netdev(rtap_dev
);
1463 priv
->rtap_net_dev
= rtap_dev
;
1469 module_init(lbs_init_module
);
1470 module_exit(lbs_exit_module
);
1472 MODULE_DESCRIPTION("Libertas WLAN Driver Library");
1473 MODULE_AUTHOR("Marvell International Ltd.");
1474 MODULE_LICENSE("GPL");