blob: 3d9de7a1bfc6da4bb8860fcbe2be85e77ad20605 [file] [log] [blame]
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001/**
2 * This file contains the major functions in WLAN
3 * driver. It includes init, exit, open, close and main
4 * thread etc..
5 */
6
Holger Schuriga46c6412007-05-25 11:32:07 -04007#include <linux/moduleparam.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02008#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>
Dan Williamsfe336152007-08-02 11:32:25 -040013#include <linux/kthread.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020014
15#include <net/iw_handler.h>
Holger Schurig9012b282007-05-25 11:27:16 -040016#include <net/ieee80211.h>
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020017
18#include "host.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020019#include "decl.h"
20#include "dev.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020021#include "wext.h"
22#include "debugfs.h"
23#include "assoc.h"
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -040024#include "join.h"
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020025
Dan Williams7856a542007-08-03 09:43:03 -040026#define DRIVER_RELEASE_VERSION "323.p0"
Holger Schurig10078322007-11-15 18:05:47 -050027const char lbs_driver_version[] = "COMM-USB8388-" DRIVER_RELEASE_VERSION
Dan Williams3ce40232007-05-10 23:03:07 -040028#ifdef DEBUG
29 "-dbg"
30#endif
31 "";
32
Holger Schuriga46c6412007-05-25 11:32:07 -040033
34/* Module parameters */
Holger Schurig10078322007-11-15 18:05:47 -050035unsigned int lbs_debug;
36EXPORT_SYMBOL_GPL(lbs_debug);
37module_param_named(libertas_debug, lbs_debug, int, 0644);
Holger Schuriga46c6412007-05-25 11:32:07 -040038
39
Holger Schurig10078322007-11-15 18:05:47 -050040#define LBS_TX_PWR_DEFAULT 20 /*100mW */
41#define LBS_TX_PWR_US_DEFAULT 20 /*100mW */
42#define LBS_TX_PWR_JP_DEFAULT 16 /*50mW */
43#define LBS_TX_PWR_FR_DEFAULT 20 /*100mW */
44#define LBS_TX_PWR_EMEA_DEFAULT 20 /*100mW */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020045
46/* Format { channel, frequency (MHz), maxtxpower } */
47/* band: 'B/G', region: USA FCC/Canada IC */
48static struct chan_freq_power channel_freq_power_US_BG[] = {
Holger Schurig10078322007-11-15 18:05:47 -050049 {1, 2412, LBS_TX_PWR_US_DEFAULT},
50 {2, 2417, LBS_TX_PWR_US_DEFAULT},
51 {3, 2422, LBS_TX_PWR_US_DEFAULT},
52 {4, 2427, LBS_TX_PWR_US_DEFAULT},
53 {5, 2432, LBS_TX_PWR_US_DEFAULT},
54 {6, 2437, LBS_TX_PWR_US_DEFAULT},
55 {7, 2442, LBS_TX_PWR_US_DEFAULT},
56 {8, 2447, LBS_TX_PWR_US_DEFAULT},
57 {9, 2452, LBS_TX_PWR_US_DEFAULT},
58 {10, 2457, LBS_TX_PWR_US_DEFAULT},
59 {11, 2462, LBS_TX_PWR_US_DEFAULT}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020060};
61
62/* band: 'B/G', region: Europe ETSI */
63static struct chan_freq_power channel_freq_power_EU_BG[] = {
Holger Schurig10078322007-11-15 18:05:47 -050064 {1, 2412, LBS_TX_PWR_EMEA_DEFAULT},
65 {2, 2417, LBS_TX_PWR_EMEA_DEFAULT},
66 {3, 2422, LBS_TX_PWR_EMEA_DEFAULT},
67 {4, 2427, LBS_TX_PWR_EMEA_DEFAULT},
68 {5, 2432, LBS_TX_PWR_EMEA_DEFAULT},
69 {6, 2437, LBS_TX_PWR_EMEA_DEFAULT},
70 {7, 2442, LBS_TX_PWR_EMEA_DEFAULT},
71 {8, 2447, LBS_TX_PWR_EMEA_DEFAULT},
72 {9, 2452, LBS_TX_PWR_EMEA_DEFAULT},
73 {10, 2457, LBS_TX_PWR_EMEA_DEFAULT},
74 {11, 2462, LBS_TX_PWR_EMEA_DEFAULT},
75 {12, 2467, LBS_TX_PWR_EMEA_DEFAULT},
76 {13, 2472, LBS_TX_PWR_EMEA_DEFAULT}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020077};
78
79/* band: 'B/G', region: Spain */
80static struct chan_freq_power channel_freq_power_SPN_BG[] = {
Holger Schurig10078322007-11-15 18:05:47 -050081 {10, 2457, LBS_TX_PWR_DEFAULT},
82 {11, 2462, LBS_TX_PWR_DEFAULT}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020083};
84
85/* band: 'B/G', region: France */
86static struct chan_freq_power channel_freq_power_FR_BG[] = {
Holger Schurig10078322007-11-15 18:05:47 -050087 {10, 2457, LBS_TX_PWR_FR_DEFAULT},
88 {11, 2462, LBS_TX_PWR_FR_DEFAULT},
89 {12, 2467, LBS_TX_PWR_FR_DEFAULT},
90 {13, 2472, LBS_TX_PWR_FR_DEFAULT}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -020091};
92
93/* band: 'B/G', region: Japan */
94static struct chan_freq_power channel_freq_power_JPN_BG[] = {
Holger Schurig10078322007-11-15 18:05:47 -050095 {1, 2412, LBS_TX_PWR_JP_DEFAULT},
96 {2, 2417, LBS_TX_PWR_JP_DEFAULT},
97 {3, 2422, LBS_TX_PWR_JP_DEFAULT},
98 {4, 2427, LBS_TX_PWR_JP_DEFAULT},
99 {5, 2432, LBS_TX_PWR_JP_DEFAULT},
100 {6, 2437, LBS_TX_PWR_JP_DEFAULT},
101 {7, 2442, LBS_TX_PWR_JP_DEFAULT},
102 {8, 2447, LBS_TX_PWR_JP_DEFAULT},
103 {9, 2452, LBS_TX_PWR_JP_DEFAULT},
104 {10, 2457, LBS_TX_PWR_JP_DEFAULT},
105 {11, 2462, LBS_TX_PWR_JP_DEFAULT},
106 {12, 2467, LBS_TX_PWR_JP_DEFAULT},
107 {13, 2472, LBS_TX_PWR_JP_DEFAULT},
108 {14, 2484, LBS_TX_PWR_JP_DEFAULT}
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200109};
110
111/**
112 * the structure for channel, frequency and power
113 */
114struct region_cfp_table {
115 u8 region;
116 struct chan_freq_power *cfp_BG;
117 int cfp_no_BG;
118};
119
120/**
121 * the structure for the mapping between region and CFP
122 */
123static struct region_cfp_table region_cfp_table[] = {
124 {0x10, /*US FCC */
125 channel_freq_power_US_BG,
Denis Chengff8ac602007-09-02 18:30:18 +0800126 ARRAY_SIZE(channel_freq_power_US_BG),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200127 }
128 ,
129 {0x20, /*CANADA IC */
130 channel_freq_power_US_BG,
Denis Chengff8ac602007-09-02 18:30:18 +0800131 ARRAY_SIZE(channel_freq_power_US_BG),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200132 }
133 ,
134 {0x30, /*EU*/ channel_freq_power_EU_BG,
Denis Chengff8ac602007-09-02 18:30:18 +0800135 ARRAY_SIZE(channel_freq_power_EU_BG),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200136 }
137 ,
138 {0x31, /*SPAIN*/ channel_freq_power_SPN_BG,
Denis Chengff8ac602007-09-02 18:30:18 +0800139 ARRAY_SIZE(channel_freq_power_SPN_BG),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200140 }
141 ,
142 {0x32, /*FRANCE*/ channel_freq_power_FR_BG,
Denis Chengff8ac602007-09-02 18:30:18 +0800143 ARRAY_SIZE(channel_freq_power_FR_BG),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200144 }
145 ,
146 {0x40, /*JAPAN*/ channel_freq_power_JPN_BG,
Denis Chengff8ac602007-09-02 18:30:18 +0800147 ARRAY_SIZE(channel_freq_power_JPN_BG),
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200148 }
149 ,
150/*Add new region here */
151};
152
153/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200154 * the table to keep region code
155 */
Holger Schurig10078322007-11-15 18:05:47 -0500156u16 lbs_region_code_to_index[MRVDRV_MAX_REGION_CODE] =
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200157 { 0x10, 0x20, 0x30, 0x31, 0x32, 0x40 };
158
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200159/**
Dan Williams8c512762007-08-02 11:40:45 -0400160 * 802.11b/g supported bitrates (in 500Kb/s units)
161 */
Holger Schurig10078322007-11-15 18:05:47 -0500162u8 lbs_bg_rates[MAX_RATES] =
Dan Williams8c512762007-08-02 11:40:45 -0400163 { 0x02, 0x04, 0x0b, 0x16, 0x0c, 0x12, 0x18, 0x24, 0x30, 0x48, 0x60, 0x6c,
1640x00, 0x00 };
165
166/**
167 * FW rate table. FW refers to rates by their index in this table, not by the
168 * rate value itself. Values of 0x00 are
169 * reserved positions.
170 */
171static u8 fw_data_rates[MAX_RATES] =
172 { 0x02, 0x04, 0x0B, 0x16, 0x00, 0x0C, 0x12,
173 0x18, 0x24, 0x30, 0x48, 0x60, 0x6C, 0x00
174};
175
176/**
177 * @brief use index to get the data rate
178 *
179 * @param idx The index of data rate
180 * @return data rate or 0
181 */
Holger Schurig10078322007-11-15 18:05:47 -0500182u32 lbs_fw_index_to_data_rate(u8 idx)
Dan Williams8c512762007-08-02 11:40:45 -0400183{
184 if (idx >= sizeof(fw_data_rates))
185 idx = 0;
186 return fw_data_rates[idx];
187}
188
189/**
190 * @brief use rate to get the index
191 *
192 * @param rate data rate
193 * @return index or 0
194 */
Holger Schurig10078322007-11-15 18:05:47 -0500195u8 lbs_data_rate_to_fw_index(u32 rate)
Dan Williams8c512762007-08-02 11:40:45 -0400196{
197 u8 i;
198
199 if (!rate)
200 return 0;
201
202 for (i = 0; i < sizeof(fw_data_rates); i++) {
203 if (rate == fw_data_rates[i])
204 return i;
205 }
206 return 0;
207}
208
209/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200210 * Attributes exported through sysfs
211 */
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200212
213/**
Luis Carlos82fde742007-06-07 16:40:59 -0400214 * @brief Get function for sysfs attribute anycast_mask
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200215 */
Holger Schurig10078322007-11-15 18:05:47 -0500216static ssize_t lbs_anycast_get(struct device *dev,
Dan Williamsb59bb612007-06-18 11:50:43 -0400217 struct device_attribute *attr, char * buf)
218{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200219 struct cmd_ds_mesh_access mesh_access;
220
221 memset(&mesh_access, 0, sizeof(mesh_access));
Holger Schurig10078322007-11-15 18:05:47 -0500222 lbs_prepare_and_send_command(to_net_dev(dev)->priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400223 CMD_MESH_ACCESS,
224 CMD_ACT_MESH_GET_ANYCAST,
225 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200226
Luis Carlos82fde742007-06-07 16:40:59 -0400227 return snprintf(buf, 12, "0x%X\n", le32_to_cpu(mesh_access.data[0]));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200228}
229
230/**
Luis Carlos82fde742007-06-07 16:40:59 -0400231 * @brief Set function for sysfs attribute anycast_mask
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200232 */
Holger Schurig10078322007-11-15 18:05:47 -0500233static ssize_t lbs_anycast_set(struct device *dev,
Dan Williamsb59bb612007-06-18 11:50:43 -0400234 struct device_attribute *attr, const char * buf, size_t count)
235{
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200236 struct cmd_ds_mesh_access mesh_access;
David Woodhouse981f1872007-05-25 23:36:54 -0400237 uint32_t datum;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200238
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200239 memset(&mesh_access, 0, sizeof(mesh_access));
Luis Carlos82fde742007-06-07 16:40:59 -0400240 sscanf(buf, "%x", &datum);
David Woodhouse981f1872007-05-25 23:36:54 -0400241 mesh_access.data[0] = cpu_to_le32(datum);
242
Holger Schurig10078322007-11-15 18:05:47 -0500243 lbs_prepare_and_send_command((to_net_dev(dev))->priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400244 CMD_MESH_ACCESS,
245 CMD_ACT_MESH_SET_ANYCAST,
246 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200247 return strlen(buf);
248}
249
Holger Schurig69f90322007-11-23 15:43:44 +0100250int lbs_add_rtap(struct lbs_private *priv);
251void lbs_remove_rtap(struct lbs_private *priv);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400252
253/**
254 * Get function for sysfs attribute rtap
255 */
Holger Schurig10078322007-11-15 18:05:47 -0500256static ssize_t lbs_rtap_get(struct device *dev,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400257 struct device_attribute *attr, char * buf)
258{
David Woodhousee7deced2007-12-08 18:29:16 +0000259 struct lbs_private *priv = to_net_dev(dev)->priv;
David Woodhouseaa21c002007-12-08 20:04:36 +0000260 return snprintf(buf, 5, "0x%X\n", priv->monitormode);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400261}
262
263/**
264 * Set function for sysfs attribute rtap
265 */
Holger Schurig10078322007-11-15 18:05:47 -0500266static ssize_t lbs_rtap_set(struct device *dev,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400267 struct device_attribute *attr, const char * buf, size_t count)
268{
269 int monitor_mode;
David Woodhousee7deced2007-12-08 18:29:16 +0000270 struct lbs_private *priv = to_net_dev(dev)->priv;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400271
272 sscanf(buf, "%x", &monitor_mode);
Holger Schurig10078322007-11-15 18:05:47 -0500273 if (monitor_mode != LBS_MONITOR_OFF) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000274 if(priv->monitormode == monitor_mode)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400275 return strlen(buf);
David Woodhouseaa21c002007-12-08 20:04:36 +0000276 if (priv->monitormode == LBS_MONITOR_OFF) {
277 if (priv->mode == IW_MODE_INFRA)
Holger Schurig10078322007-11-15 18:05:47 -0500278 lbs_send_deauthentication(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000279 else if (priv->mode == IW_MODE_ADHOC)
Holger Schurig10078322007-11-15 18:05:47 -0500280 lbs_stop_adhoc_network(priv);
281 lbs_add_rtap(priv);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400282 }
David Woodhouseaa21c002007-12-08 20:04:36 +0000283 priv->monitormode = monitor_mode;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400284 }
285
286 else {
David Woodhouseaa21c002007-12-08 20:04:36 +0000287 if (priv->monitormode == LBS_MONITOR_OFF)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400288 return strlen(buf);
David Woodhouseaa21c002007-12-08 20:04:36 +0000289 priv->monitormode = LBS_MONITOR_OFF;
Holger Schurig10078322007-11-15 18:05:47 -0500290 lbs_remove_rtap(priv);
David Woodhousef86a93e2007-12-08 19:46:19 +0000291
David Woodhouseaa21c002007-12-08 20:04:36 +0000292 if (priv->currenttxskb) {
293 dev_kfree_skb_any(priv->currenttxskb);
294 priv->currenttxskb = NULL;
David Woodhousef86a93e2007-12-08 19:46:19 +0000295 }
296
297 /* Wake queues, command thread, etc. */
298 lbs_host_to_card_done(priv);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400299 }
300
Holger Schurig10078322007-11-15 18:05:47 -0500301 lbs_prepare_and_send_command(priv,
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400302 CMD_802_11_MONITOR_MODE, CMD_ACT_SET,
David Woodhouseaa21c002007-12-08 20:04:36 +0000303 CMD_OPTION_WAITFORRSP, 0, &priv->monitormode);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400304 return strlen(buf);
305}
306
307/**
Holger Schurig10078322007-11-15 18:05:47 -0500308 * lbs_rtap attribute to be exported per mshX interface
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400309 * through sysfs (/sys/class/net/mshX/libertas-rtap)
310 */
Holger Schurig10078322007-11-15 18:05:47 -0500311static DEVICE_ATTR(lbs_rtap, 0644, lbs_rtap_get,
312 lbs_rtap_set );
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -0400313
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200314/**
Luis Carlos82fde742007-06-07 16:40:59 -0400315 * anycast_mask attribute to be exported per mshX interface
316 * through sysfs (/sys/class/net/mshX/anycast_mask)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200317 */
Holger Schurig10078322007-11-15 18:05:47 -0500318static DEVICE_ATTR(anycast_mask, 0644, lbs_anycast_get, lbs_anycast_set);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200319
Holger Schurig10078322007-11-15 18:05:47 -0500320static ssize_t lbs_autostart_enabled_get(struct device *dev,
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400321 struct device_attribute *attr, char * buf)
322{
323 struct cmd_ds_mesh_access mesh_access;
324
325 memset(&mesh_access, 0, sizeof(mesh_access));
Holger Schurig10078322007-11-15 18:05:47 -0500326 lbs_prepare_and_send_command(to_net_dev(dev)->priv,
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400327 CMD_MESH_ACCESS,
328 CMD_ACT_MESH_GET_AUTOSTART_ENABLED,
329 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
330
331 return sprintf(buf, "%d\n", le32_to_cpu(mesh_access.data[0]));
332}
333
Holger Schurig10078322007-11-15 18:05:47 -0500334static ssize_t lbs_autostart_enabled_set(struct device *dev,
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400335 struct device_attribute *attr, const char * buf, size_t count)
336{
337 struct cmd_ds_mesh_access mesh_access;
338 uint32_t datum;
Holger Schurig69f90322007-11-23 15:43:44 +0100339 struct lbs_private *priv = (to_net_dev(dev))->priv;
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400340 int ret;
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400341
342 memset(&mesh_access, 0, sizeof(mesh_access));
343 sscanf(buf, "%d", &datum);
344 mesh_access.data[0] = cpu_to_le32(datum);
345
Holger Schurig10078322007-11-15 18:05:47 -0500346 ret = lbs_prepare_and_send_command(priv,
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400347 CMD_MESH_ACCESS,
348 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
349 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400350 if (ret == 0)
351 priv->mesh_autostart_enabled = datum ? 1 : 0;
352
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400353 return strlen(buf);
354}
355
356static DEVICE_ATTR(autostart_enabled, 0644,
Holger Schurig10078322007-11-15 18:05:47 -0500357 lbs_autostart_enabled_get, lbs_autostart_enabled_set);
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400358
Holger Schurig10078322007-11-15 18:05:47 -0500359static struct attribute *lbs_mesh_sysfs_entries[] = {
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400360 &dev_attr_anycast_mask.attr,
361 &dev_attr_autostart_enabled.attr,
362 NULL,
363};
364
Holger Schurig10078322007-11-15 18:05:47 -0500365static struct attribute_group lbs_mesh_attr_group = {
366 .attrs = lbs_mesh_sysfs_entries,
Luis Carlos Coboa9f38d02007-08-02 11:52:29 -0400367};
368
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200369/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200370 * @brief This function opens the device
371 *
372 * @param dev A pointer to net_device structure
373 * @return 0
374 */
Holger Schurig10078322007-11-15 18:05:47 -0500375static int lbs_dev_open(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200376{
Holger Schurig69f90322007-11-23 15:43:44 +0100377 struct lbs_private *priv = (struct lbs_private *) dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200378
Holger Schurig9012b282007-05-25 11:27:16 -0400379 lbs_deb_enter(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200380
381 priv->open = 1;
382
David Woodhouseaa21c002007-12-08 20:04:36 +0000383 if (priv->connect_status == LBS_CONNECTED)
Holger Schurig634b8f42007-05-25 13:05:16 -0400384 netif_carrier_on(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500385 else
Holger Schurig634b8f42007-05-25 13:05:16 -0400386 netif_carrier_off(priv->dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500387
388 if (priv->mesh_dev) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000389 if (priv->mesh_connect_status == LBS_CONNECTED)
Brajesh Dave01d77d82007-11-20 17:44:14 -0500390 netif_carrier_on(priv->mesh_dev);
391 else
Holger Schurig3cf84092007-08-02 11:50:12 -0400392 netif_carrier_off(priv->mesh_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -0400393 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200394
Holger Schurig9012b282007-05-25 11:27:16 -0400395 lbs_deb_leave(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200396 return 0;
397}
398/**
399 * @brief This function opens the mshX interface
400 *
401 * @param dev A pointer to net_device structure
402 * @return 0
403 */
Holger Schurig10078322007-11-15 18:05:47 -0500404static int lbs_mesh_open(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200405{
Holger Schurig69f90322007-11-23 15:43:44 +0100406 struct lbs_private *priv = (struct lbs_private *) dev->priv ;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200407
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200408 priv->mesh_open = 1 ;
Javier Cardona51d84f52007-05-25 12:06:56 -0400409 netif_wake_queue(priv->mesh_dev);
Brajesh Dave01d77d82007-11-20 17:44:14 -0500410
David Woodhouseaa21c002007-12-08 20:04:36 +0000411 priv->mesh_connect_status = LBS_CONNECTED;
Brajesh Dave01d77d82007-11-20 17:44:14 -0500412
413 netif_carrier_on(priv->mesh_dev);
414 netif_wake_queue(priv->mesh_dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200415 if (priv->infra_open == 0)
Holger Schurig10078322007-11-15 18:05:47 -0500416 return lbs_dev_open(priv->dev) ;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200417 return 0;
418}
419
420/**
421 * @brief This function opens the ethX interface
422 *
423 * @param dev A pointer to net_device structure
424 * @return 0
425 */
Holger Schurig10078322007-11-15 18:05:47 -0500426static int lbs_open(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200427{
Holger Schurig69f90322007-11-23 15:43:44 +0100428 struct lbs_private *priv = (struct lbs_private *) dev->priv ;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200429
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200430 priv->infra_open = 1 ;
Holger Schurig634b8f42007-05-25 13:05:16 -0400431 netif_wake_queue(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200432 if (priv->open == 0)
Holger Schurig10078322007-11-15 18:05:47 -0500433 return lbs_dev_open(priv->dev) ;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200434 return 0;
435}
436
Holger Schurig10078322007-11-15 18:05:47 -0500437static int lbs_dev_close(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200438{
Holger Schurig69f90322007-11-23 15:43:44 +0100439 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200440
Holger Schurig9012b282007-05-25 11:27:16 -0400441 lbs_deb_enter(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200442
Holger Schurig634b8f42007-05-25 13:05:16 -0400443 netif_carrier_off(priv->dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200444 priv->open = 0;
445
Holger Schurig9012b282007-05-25 11:27:16 -0400446 lbs_deb_leave(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200447 return 0;
448}
449
450/**
451 * @brief This function closes the mshX interface
452 *
453 * @param dev A pointer to net_device structure
454 * @return 0
455 */
Holger Schurig10078322007-11-15 18:05:47 -0500456static int lbs_mesh_close(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200457{
Holger Schurig69f90322007-11-23 15:43:44 +0100458 struct lbs_private *priv = (struct lbs_private *) (dev->priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200459
460 priv->mesh_open = 0;
461 netif_stop_queue(priv->mesh_dev);
462 if (priv->infra_open == 0)
Holger Schurig10078322007-11-15 18:05:47 -0500463 return lbs_dev_close(dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200464 else
465 return 0;
466}
467
468/**
469 * @brief This function closes the ethX interface
470 *
471 * @param dev A pointer to net_device structure
472 * @return 0
473 */
Holger Schurig10078322007-11-15 18:05:47 -0500474static int lbs_close(struct net_device *dev)
Holger Schurig78523da2007-05-25 11:49:19 -0400475{
Holger Schurig69f90322007-11-23 15:43:44 +0100476 struct lbs_private *priv = (struct lbs_private *) dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200477
Holger Schurig634b8f42007-05-25 13:05:16 -0400478 netif_stop_queue(dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200479 priv->infra_open = 0;
480 if (priv->mesh_open == 0)
Holger Schurig10078322007-11-15 18:05:47 -0500481 return lbs_dev_close(dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200482 else
483 return 0;
484}
485
Holger Schurig10078322007-11-15 18:05:47 -0500486static void lbs_tx_timeout(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200487{
Holger Schurig69f90322007-11-23 15:43:44 +0100488 struct lbs_private *priv = (struct lbs_private *) dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200489
Holger Schurig9012b282007-05-25 11:27:16 -0400490 lbs_deb_enter(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200491
Holger Schurig9012b282007-05-25 11:27:16 -0400492 lbs_pr_err("tx watch dog timeout\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200493
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200494 dev->trans_start = jiffies;
495
David Woodhouseaa21c002007-12-08 20:04:36 +0000496 if (priv->currenttxskb) {
David Woodhousea63b22b2007-12-08 20:56:44 +0000497 priv->eventcause = 0x01000000;
498 lbs_send_tx_feedback(priv);
Javier Cardona51d84f52007-05-25 12:06:56 -0400499 }
David Woodhousea63b22b2007-12-08 20:56:44 +0000500 /* XX: Shouldn't we also call into the hw-specific driver
501 to kick it somehow? */
502 lbs_host_to_card_done(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200503
Holger Schurig9012b282007-05-25 11:27:16 -0400504 lbs_deb_leave(LBS_DEB_TX);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200505}
506
David Woodhousee775ed72007-12-06 14:36:11 +0000507void lbs_host_to_card_done(struct lbs_private *priv)
508{
David Woodhousea63b22b2007-12-08 20:56:44 +0000509 unsigned long flags;
510
511 spin_lock_irqsave(&priv->driver_lock, flags);
David Woodhousee775ed72007-12-06 14:36:11 +0000512
513 priv->dnld_sent = DNLD_RES_RECEIVED;
514
515 /* Wake main thread if commands are pending */
David Woodhouseaa21c002007-12-08 20:04:36 +0000516 if (!priv->cur_cmd)
David Woodhousee775ed72007-12-06 14:36:11 +0000517 wake_up_interruptible(&priv->waitq);
518
David Woodhousef86a93e2007-12-08 19:46:19 +0000519 /* Don't wake netif queues if we're in monitor mode and
David Woodhousea63b22b2007-12-08 20:56:44 +0000520 a TX packet is already pending, or if there are commands
521 queued to be sent. */
522 if (!priv->currenttxskb && list_empty(&priv->cmdpendingq)) {
523 if (priv->dev && priv->connect_status == LBS_CONNECTED)
524 netif_wake_queue(priv->dev);
David Woodhousef86a93e2007-12-08 19:46:19 +0000525
David Woodhousea63b22b2007-12-08 20:56:44 +0000526 if (priv->mesh_dev && priv->mesh_connect_status == LBS_CONNECTED)
527 netif_wake_queue(priv->mesh_dev);
528 }
529 spin_unlock_irqrestore(&priv->driver_lock, flags);
David Woodhousee775ed72007-12-06 14:36:11 +0000530}
531EXPORT_SYMBOL_GPL(lbs_host_to_card_done);
532
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200533/**
534 * @brief This function returns the network statistics
535 *
Holger Schurig69f90322007-11-23 15:43:44 +0100536 * @param dev A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200537 * @return A pointer to net_device_stats structure
538 */
Holger Schurig10078322007-11-15 18:05:47 -0500539static struct net_device_stats *lbs_get_stats(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200540{
Holger Schurig69f90322007-11-23 15:43:44 +0100541 struct lbs_private *priv = (struct lbs_private *) dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200542
543 return &priv->stats;
544}
545
Holger Schurig10078322007-11-15 18:05:47 -0500546static int lbs_set_mac_address(struct net_device *dev, void *addr)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200547{
548 int ret = 0;
Holger Schurig69f90322007-11-23 15:43:44 +0100549 struct lbs_private *priv = (struct lbs_private *) dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200550 struct sockaddr *phwaddr = addr;
551
Holger Schurig9012b282007-05-25 11:27:16 -0400552 lbs_deb_enter(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200553
Luis Carlos Cobo Rus0a0d08a2007-05-25 23:05:27 -0400554 /* In case it was called from the mesh device */
555 dev = priv->dev ;
556
David Woodhouseaa21c002007-12-08 20:04:36 +0000557 memset(priv->current_addr, 0, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200558
559 /* dev->dev_addr is 8 bytes */
Holger Schurigece56192007-08-02 11:53:06 -0400560 lbs_deb_hex(LBS_DEB_NET, "dev->dev_addr", dev->dev_addr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200561
Holger Schurigece56192007-08-02 11:53:06 -0400562 lbs_deb_hex(LBS_DEB_NET, "addr", phwaddr->sa_data, ETH_ALEN);
David Woodhouseaa21c002007-12-08 20:04:36 +0000563 memcpy(priv->current_addr, phwaddr->sa_data, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200564
Holger Schurig10078322007-11-15 18:05:47 -0500565 ret = lbs_prepare_and_send_command(priv, CMD_802_11_MAC_ADDRESS,
Dan Williams0aef64d2007-08-02 11:31:18 -0400566 CMD_ACT_SET,
567 CMD_OPTION_WAITFORRSP, 0, NULL);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200568
569 if (ret) {
Holger Schurig9012b282007-05-25 11:27:16 -0400570 lbs_deb_net("set MAC address failed\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200571 ret = -1;
572 goto done;
573 }
574
David Woodhouseaa21c002007-12-08 20:04:36 +0000575 lbs_deb_hex(LBS_DEB_NET, "priv->macaddr", priv->current_addr, ETH_ALEN);
576 memcpy(dev->dev_addr, priv->current_addr, ETH_ALEN);
Holger Schurig78523da2007-05-25 11:49:19 -0400577 if (priv->mesh_dev)
David Woodhouseaa21c002007-12-08 20:04:36 +0000578 memcpy(priv->mesh_dev->dev_addr, priv->current_addr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200579
580done:
Holger Schurig9012b282007-05-25 11:27:16 -0400581 lbs_deb_leave_args(LBS_DEB_NET, "ret %d", ret);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200582 return ret;
583}
584
David Woodhouseaa21c002007-12-08 20:04:36 +0000585static int lbs_copy_multicast_address(struct lbs_private *priv,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200586 struct net_device *dev)
587{
588 int i = 0;
589 struct dev_mc_list *mcptr = dev->mc_list;
590
591 for (i = 0; i < dev->mc_count; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000592 memcpy(&priv->multicastlist[i], mcptr->dmi_addr, ETH_ALEN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200593 mcptr = mcptr->next;
594 }
595
596 return i;
597
598}
599
Holger Schurig10078322007-11-15 18:05:47 -0500600static void lbs_set_multicast_list(struct net_device *dev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200601{
Holger Schurig69f90322007-11-23 15:43:44 +0100602 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200603 int oldpacketfilter;
Joe Perches0795af52007-10-03 17:59:30 -0700604 DECLARE_MAC_BUF(mac);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200605
Holger Schurig9012b282007-05-25 11:27:16 -0400606 lbs_deb_enter(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200607
David Woodhouseaa21c002007-12-08 20:04:36 +0000608 oldpacketfilter = priv->currentpacketfilter;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200609
610 if (dev->flags & IFF_PROMISC) {
Holger Schurig9012b282007-05-25 11:27:16 -0400611 lbs_deb_net("enable promiscuous mode\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000612 priv->currentpacketfilter |=
Dan Williams0aef64d2007-08-02 11:31:18 -0400613 CMD_ACT_MAC_PROMISCUOUS_ENABLE;
David Woodhouseaa21c002007-12-08 20:04:36 +0000614 priv->currentpacketfilter &=
Dan Williams0aef64d2007-08-02 11:31:18 -0400615 ~(CMD_ACT_MAC_ALL_MULTICAST_ENABLE |
616 CMD_ACT_MAC_MULTICAST_ENABLE);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200617 } else {
618 /* Multicast */
David Woodhouseaa21c002007-12-08 20:04:36 +0000619 priv->currentpacketfilter &=
Dan Williams0aef64d2007-08-02 11:31:18 -0400620 ~CMD_ACT_MAC_PROMISCUOUS_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200621
622 if (dev->flags & IFF_ALLMULTI || dev->mc_count >
623 MRVDRV_MAX_MULTICAST_LIST_SIZE) {
Holger Schurig9012b282007-05-25 11:27:16 -0400624 lbs_deb_net( "enabling all multicast\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000625 priv->currentpacketfilter |=
Dan Williams0aef64d2007-08-02 11:31:18 -0400626 CMD_ACT_MAC_ALL_MULTICAST_ENABLE;
David Woodhouseaa21c002007-12-08 20:04:36 +0000627 priv->currentpacketfilter &=
Dan Williams0aef64d2007-08-02 11:31:18 -0400628 ~CMD_ACT_MAC_MULTICAST_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200629 } else {
David Woodhouseaa21c002007-12-08 20:04:36 +0000630 priv->currentpacketfilter &=
Dan Williams0aef64d2007-08-02 11:31:18 -0400631 ~CMD_ACT_MAC_ALL_MULTICAST_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200632
633 if (!dev->mc_count) {
Holger Schurig9012b282007-05-25 11:27:16 -0400634 lbs_deb_net("no multicast addresses, "
635 "disabling multicast\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000636 priv->currentpacketfilter &=
Dan Williams0aef64d2007-08-02 11:31:18 -0400637 ~CMD_ACT_MAC_MULTICAST_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200638 } else {
639 int i;
640
David Woodhouseaa21c002007-12-08 20:04:36 +0000641 priv->currentpacketfilter |=
Dan Williams0aef64d2007-08-02 11:31:18 -0400642 CMD_ACT_MAC_MULTICAST_ENABLE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200643
David Woodhouseaa21c002007-12-08 20:04:36 +0000644 priv->nr_of_multicastmacaddr =
645 lbs_copy_multicast_address(priv, dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200646
Holger Schurig9012b282007-05-25 11:27:16 -0400647 lbs_deb_net("multicast addresses: %d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200648 dev->mc_count);
649
650 for (i = 0; i < dev->mc_count; i++) {
Joe Perches0795af52007-10-03 17:59:30 -0700651 lbs_deb_net("Multicast address %d:%s\n",
652 i, print_mac(mac,
David Woodhouseaa21c002007-12-08 20:04:36 +0000653 priv->multicastlist[i]));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200654 }
Holger Schurig9012b282007-05-25 11:27:16 -0400655 /* send multicast addresses to firmware */
Holger Schurig10078322007-11-15 18:05:47 -0500656 lbs_prepare_and_send_command(priv,
Dan Williams0aef64d2007-08-02 11:31:18 -0400657 CMD_MAC_MULTICAST_ADR,
658 CMD_ACT_SET, 0, 0,
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200659 NULL);
660 }
661 }
662 }
663
David Woodhouseaa21c002007-12-08 20:04:36 +0000664 if (priv->currentpacketfilter != oldpacketfilter) {
Holger Schurig10078322007-11-15 18:05:47 -0500665 lbs_set_mac_packet_filter(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200666 }
667
Holger Schurig9012b282007-05-25 11:27:16 -0400668 lbs_deb_leave(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200669}
670
671/**
Holger Schurig10078322007-11-15 18:05:47 -0500672 * @brief This function handles the major jobs in the LBS driver.
Holger Schurig9012b282007-05-25 11:27:16 -0400673 * It handles all events generated by firmware, RX data received
674 * from firmware and TX data sent from kernel.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200675 *
Holger Schurig10078322007-11-15 18:05:47 -0500676 * @param data A pointer to lbs_thread structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200677 * @return 0
678 */
Holger Schurig10078322007-11-15 18:05:47 -0500679static int lbs_thread(void *data)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200680{
Dan Williamsfe336152007-08-02 11:32:25 -0400681 struct net_device *dev = data;
Holger Schurig69f90322007-11-23 15:43:44 +0100682 struct lbs_private *priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200683 wait_queue_t wait;
684 u8 ireg = 0;
685
Holger Schurig9012b282007-05-25 11:27:16 -0400686 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200687
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200688 init_waitqueue_entry(&wait, current);
689
Dan Williamsb1b19072007-08-20 11:10:45 -0400690 set_freezable();
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000691
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200692 for (;;) {
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500693 int shouldsleep;
694
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000695 lbs_deb_thread( "main-thread 111: intcounter=%d currenttxskb=%p dnld_sent=%d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000696 priv->intcounter, priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200697
Dan Williamsfe336152007-08-02 11:32:25 -0400698 add_wait_queue(&priv->waitq, &wait);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200699 set_current_state(TASK_INTERRUPTIBLE);
David Woodhouseaa21c002007-12-08 20:04:36 +0000700 spin_lock_irq(&priv->driver_lock);
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000701
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500702 if (priv->surpriseremoved)
703 shouldsleep = 0; /* Bye */
704 else if (priv->psstate == PS_STATE_SLEEP)
705 shouldsleep = 1; /* Sleep mode. Nothing we can do till it wakes */
706 else if (priv->intcounter)
707 shouldsleep = 0; /* Interrupt pending. Deal with it now */
708 else if (priv->dnld_sent)
709 shouldsleep = 1; /* Something is en route to the device already */
David Woodhouse2eb188a2007-12-09 23:54:27 -0500710 else if (priv->tx_pending_len > 0)
711 shouldsleep = 0; /* We've a packet to send */
David Woodhouseb8d40bc2007-12-09 23:44:43 -0500712 else if (priv->cur_cmd)
713 shouldsleep = 1; /* Can't send a command; one already running */
714 else if (!list_empty(&priv->cmdpendingq))
715 shouldsleep = 0; /* We have a command to send */
716 else
717 shouldsleep = 1; /* No command */
718
719 if (shouldsleep) {
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000720 lbs_deb_thread("main-thread sleeping... Conn=%d IntC=%d PS_mode=%d PS_State=%d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000721 priv->connect_status, priv->intcounter,
722 priv->psmode, priv->psstate);
723 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200724 schedule();
725 } else
David Woodhouseaa21c002007-12-08 20:04:36 +0000726 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200727
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000728 lbs_deb_thread("main-thread 222 (waking up): intcounter=%d currenttxskb=%p dnld_sent=%d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000729 priv->intcounter, priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200730
731 set_current_state(TASK_RUNNING);
Dan Williamsfe336152007-08-02 11:32:25 -0400732 remove_wait_queue(&priv->waitq, &wait);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200733 try_to_freeze();
734
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000735 lbs_deb_thread("main-thread 333: intcounter=%d currenttxskb=%p dnld_sent=%d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000736 priv->intcounter, priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200737
David Woodhouseaa21c002007-12-08 20:04:36 +0000738 if (kthread_should_stop() || priv->surpriseremoved) {
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000739 lbs_deb_thread("main-thread: break from main thread: surpriseremoved=0x%x\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000740 priv->surpriseremoved);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200741 break;
742 }
743
744
David Woodhouseaa21c002007-12-08 20:04:36 +0000745 spin_lock_irq(&priv->driver_lock);
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000746
David Woodhouseaa21c002007-12-08 20:04:36 +0000747 if (priv->intcounter) {
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200748 u8 int_status;
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000749
David Woodhouseaa21c002007-12-08 20:04:36 +0000750 priv->intcounter = 0;
Holger Schurig208fdd22007-05-25 12:17:06 -0400751 int_status = priv->hw_get_int_status(priv, &ireg);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200752
753 if (int_status) {
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000754 lbs_deb_thread("main-thread: reading HOST_INT_STATUS_REG failed\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000755 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200756 continue;
757 }
David Woodhouseaa21c002007-12-08 20:04:36 +0000758 priv->hisregcpy |= ireg;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200759 }
760
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000761 lbs_deb_thread("main-thread 444: intcounter=%d currenttxskb=%p dnld_sent=%d\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000762 priv->intcounter, priv->currenttxskb, priv->dnld_sent);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200763
764 /* command response? */
David Woodhouseaa21c002007-12-08 20:04:36 +0000765 if (priv->hisregcpy & MRVDRV_CMD_UPLD_RDY) {
Holger Schurig9012b282007-05-25 11:27:16 -0400766 lbs_deb_thread("main-thread: cmd response ready\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200767
David Woodhouseaa21c002007-12-08 20:04:36 +0000768 priv->hisregcpy &= ~MRVDRV_CMD_UPLD_RDY;
769 spin_unlock_irq(&priv->driver_lock);
Holger Schurig10078322007-11-15 18:05:47 -0500770 lbs_process_rx_command(priv);
David Woodhouseaa21c002007-12-08 20:04:36 +0000771 spin_lock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200772 }
773
774 /* Any Card Event */
David Woodhouseaa21c002007-12-08 20:04:36 +0000775 if (priv->hisregcpy & MRVDRV_CARDEVENT) {
Holger Schurig9012b282007-05-25 11:27:16 -0400776 lbs_deb_thread("main-thread: Card Event Activity\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200777
David Woodhouseaa21c002007-12-08 20:04:36 +0000778 priv->hisregcpy &= ~MRVDRV_CARDEVENT;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200779
Holger Schurig208fdd22007-05-25 12:17:06 -0400780 if (priv->hw_read_event_cause(priv)) {
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000781 lbs_pr_alert("main-thread: hw_read_event_cause failed\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000782 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200783 continue;
784 }
David Woodhouseaa21c002007-12-08 20:04:36 +0000785 spin_unlock_irq(&priv->driver_lock);
Holger Schurig10078322007-11-15 18:05:47 -0500786 lbs_process_event(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200787 } else
David Woodhouseaa21c002007-12-08 20:04:36 +0000788 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200789
790 /* Check if we need to confirm Sleep Request received previously */
David Woodhouseaa21c002007-12-08 20:04:36 +0000791 if (priv->psstate == PS_STATE_PRE_SLEEP &&
792 !priv->dnld_sent && !priv->cur_cmd) {
793 if (priv->connect_status == LBS_CONNECTED) {
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000794 lbs_deb_thread("main_thread: PRE_SLEEP--intcounter=%d currenttxskb=%p dnld_sent=%d cur_cmd=%p, confirm now\n",
David Woodhouseaa21c002007-12-08 20:04:36 +0000795 priv->intcounter, priv->currenttxskb, priv->dnld_sent, priv->cur_cmd);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200796
David Woodhouseaa21c002007-12-08 20:04:36 +0000797 lbs_ps_confirm_sleep(priv, (u16) priv->psmode);
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000798 } else {
799 /* workaround for firmware sending
800 * deauth/linkloss event immediately
801 * after sleep request; remove this
802 * after firmware fixes it
803 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000804 priv->psstate = PS_STATE_AWAKE;
David Woodhouse59f3e4b2007-12-08 17:42:59 +0000805 lbs_pr_alert("main-thread: ignore PS_SleepConfirm in non-connected state\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200806 }
807 }
808
809 /* The PS state is changed during processing of Sleep Request
810 * event above
811 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000812 if ((priv->psstate == PS_STATE_SLEEP) ||
813 (priv->psstate == PS_STATE_PRE_SLEEP))
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200814 continue;
815
816 /* Execute the next command */
David Woodhouseaa21c002007-12-08 20:04:36 +0000817 if (!priv->dnld_sent && !priv->cur_cmd)
Holger Schurig10078322007-11-15 18:05:47 -0500818 lbs_execute_next_command(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200819
820 /* Wake-up command waiters which can't sleep in
Holger Schurig10078322007-11-15 18:05:47 -0500821 * lbs_prepare_and_send_command
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200822 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000823 if (!list_empty(&priv->cmdpendingq))
824 wake_up_all(&priv->cmd_pending);
David Woodhouse2eb188a2007-12-09 23:54:27 -0500825
826 spin_lock_irq(&priv->driver_lock);
827 if (!priv->dnld_sent && priv->tx_pending_len > 0) {
828 int ret = priv->hw_host_to_card(priv, MVMS_DAT,
829 priv->tx_pending_buf,
830 priv->tx_pending_len);
831 if (ret) {
832 lbs_deb_tx("host_to_card failed %d\n", ret);
833 priv->dnld_sent = DNLD_RES_RECEIVED;
834 }
835 priv->tx_pending_len = 0;
836 if (!priv->currenttxskb) {
837 /* We can wake the queues immediately if we aren't
838 waiting for TX feedback */
839 if (priv->connect_status == LBS_CONNECTED)
840 netif_wake_queue(priv->dev);
841 if (priv->mesh_dev &&
842 priv->mesh_connect_status == LBS_CONNECTED)
843 netif_wake_queue(priv->mesh_dev);
844 }
845 }
846 spin_unlock_irq(&priv->driver_lock);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200847 }
848
David Woodhouseaa21c002007-12-08 20:04:36 +0000849 del_timer(&priv->command_timer);
850 wake_up_all(&priv->cmd_pending);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200851
Holger Schurig9012b282007-05-25 11:27:16 -0400852 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -0200853 return 0;
854}
855
856/**
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400857 * @brief This function downloads firmware image, gets
858 * HW spec from firmware and set basic parameters to
859 * firmware.
860 *
Holger Schurig69f90322007-11-23 15:43:44 +0100861 * @param priv A pointer to struct lbs_private structure
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400862 * @return 0 or -1
863 */
Holger Schurig69f90322007-11-23 15:43:44 +0100864static int lbs_setup_firmware(struct lbs_private *priv)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400865{
866 int ret = -1;
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400867 struct cmd_ds_mesh_access mesh_access;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400868
869 lbs_deb_enter(LBS_DEB_FW);
870
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400871 /*
872 * Read MAC address from HW
873 */
David Woodhouseaa21c002007-12-08 20:04:36 +0000874 memset(priv->current_addr, 0xff, ETH_ALEN);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400875
Holger Schurig10078322007-11-15 18:05:47 -0500876 ret = lbs_prepare_and_send_command(priv, CMD_GET_HW_SPEC,
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400877 0, CMD_OPTION_WAITFORRSP, 0, NULL);
878
879 if (ret) {
880 ret = -1;
881 goto done;
882 }
883
Holger Schurig10078322007-11-15 18:05:47 -0500884 lbs_set_mac_packet_filter(priv);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400885
886 /* Get the supported Data rates */
Holger Schurig10078322007-11-15 18:05:47 -0500887 ret = lbs_prepare_and_send_command(priv, CMD_802_11_DATA_RATE,
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400888 CMD_ACT_GET_TX_RATE,
889 CMD_OPTION_WAITFORRSP, 0, NULL);
890
891 if (ret) {
892 ret = -1;
893 goto done;
894 }
895
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400896 /* Disable mesh autostart */
897 if (priv->mesh_dev) {
898 memset(&mesh_access, 0, sizeof(mesh_access));
899 mesh_access.data[0] = cpu_to_le32(0);
Holger Schurig10078322007-11-15 18:05:47 -0500900 ret = lbs_prepare_and_send_command(priv,
Luis Carlos Cobod21b31f2007-08-02 13:16:02 -0400901 CMD_MESH_ACCESS,
902 CMD_ACT_MESH_SET_AUTOSTART_ENABLED,
903 CMD_OPTION_WAITFORRSP, 0, (void *)&mesh_access);
904 if (ret) {
905 ret = -1;
906 goto done;
907 }
908 priv->mesh_autostart_enabled = 0;
909 }
910
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400911 ret = 0;
912done:
913 lbs_deb_leave_args(LBS_DEB_FW, "ret %d", ret);
914 return ret;
915}
916
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400917/**
918 * This function handles the timeout of command sending.
919 * It will re-send the same command again.
920 */
921static void command_timer_fn(unsigned long data)
922{
Holger Schurig69f90322007-11-23 15:43:44 +0100923 struct lbs_private *priv = (struct lbs_private *)data;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400924 struct cmd_ctrl_node *ptempnode;
925 struct cmd_ds_command *cmd;
926 unsigned long flags;
927
David Woodhouseaa21c002007-12-08 20:04:36 +0000928 ptempnode = priv->cur_cmd;
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400929 if (ptempnode == NULL) {
930 lbs_deb_fw("ptempnode empty\n");
931 return;
932 }
933
934 cmd = (struct cmd_ds_command *)ptempnode->bufvirtualaddr;
935 if (!cmd) {
936 lbs_deb_fw("cmd is NULL\n");
937 return;
938 }
939
940 lbs_deb_fw("command_timer_fn fired, cmd %x\n", cmd->command);
941
David Woodhouseaa21c002007-12-08 20:04:36 +0000942 if (!priv->fw_ready)
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400943 return;
944
David Woodhouseaa21c002007-12-08 20:04:36 +0000945 spin_lock_irqsave(&priv->driver_lock, flags);
946 priv->cur_cmd = NULL;
947 spin_unlock_irqrestore(&priv->driver_lock, flags);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400948
949 lbs_deb_fw("re-sending same command because of timeout\n");
David Woodhouseaa21c002007-12-08 20:04:36 +0000950 lbs_queue_cmd(priv, ptempnode, 0);
Holger Schurig1df4e8f2007-08-02 11:45:12 -0400951
952 wake_up_interruptible(&priv->waitq);
953
954 return;
955}
956
Holger Schurig69f90322007-11-23 15:43:44 +0100957static int lbs_init_adapter(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -0400958{
Dan Williams954ee162007-08-20 11:43:25 -0400959 size_t bufsize;
960 int i, ret = 0;
961
962 /* Allocate buffer to store the BSSID list */
963 bufsize = MAX_NETWORK_COUNT * sizeof(struct bss_descriptor);
David Woodhouseaa21c002007-12-08 20:04:36 +0000964 priv->networks = kzalloc(bufsize, GFP_KERNEL);
965 if (!priv->networks) {
Dan Williams954ee162007-08-20 11:43:25 -0400966 lbs_pr_err("Out of memory allocating beacons\n");
967 ret = -1;
968 goto out;
969 }
970
971 /* Initialize scan result lists */
David Woodhouseaa21c002007-12-08 20:04:36 +0000972 INIT_LIST_HEAD(&priv->network_free_list);
973 INIT_LIST_HEAD(&priv->network_list);
Dan Williams954ee162007-08-20 11:43:25 -0400974 for (i = 0; i < MAX_NETWORK_COUNT; i++) {
David Woodhouseaa21c002007-12-08 20:04:36 +0000975 list_add_tail(&priv->networks[i].list,
976 &priv->network_free_list);
Dan Williams954ee162007-08-20 11:43:25 -0400977 }
978
David Woodhouseaa21c002007-12-08 20:04:36 +0000979 priv->lbs_ps_confirm_sleep.seqnum = cpu_to_le16(++priv->seqnum);
980 priv->lbs_ps_confirm_sleep.command =
Dan Williams954ee162007-08-20 11:43:25 -0400981 cpu_to_le16(CMD_802_11_PS_MODE);
David Woodhouseaa21c002007-12-08 20:04:36 +0000982 priv->lbs_ps_confirm_sleep.size =
Dan Williams954ee162007-08-20 11:43:25 -0400983 cpu_to_le16(sizeof(struct PS_CMD_ConfirmSleep));
David Woodhouseaa21c002007-12-08 20:04:36 +0000984 priv->lbs_ps_confirm_sleep.action =
Dan Williams954ee162007-08-20 11:43:25 -0400985 cpu_to_le16(CMD_SUBCMD_SLEEP_CONFIRMED);
986
David Woodhouseaa21c002007-12-08 20:04:36 +0000987 memset(priv->current_addr, 0xff, ETH_ALEN);
Dan Williams954ee162007-08-20 11:43:25 -0400988
David Woodhouseaa21c002007-12-08 20:04:36 +0000989 priv->connect_status = LBS_DISCONNECTED;
990 priv->mesh_connect_status = LBS_DISCONNECTED;
991 priv->secinfo.auth_mode = IW_AUTH_ALG_OPEN_SYSTEM;
992 priv->mode = IW_MODE_INFRA;
993 priv->curbssparams.channel = DEFAULT_AD_HOC_CHANNEL;
994 priv->currentpacketfilter = CMD_ACT_MAC_RX_ON | CMD_ACT_MAC_TX_ON;
995 priv->radioon = RADIO_ON;
996 priv->auto_rate = 1;
997 priv->capability = WLAN_CAPABILITY_SHORT_PREAMBLE;
998 priv->psmode = LBS802_11POWERMODECAM;
999 priv->psstate = PS_STATE_FULL_POWER;
Dan Williams954ee162007-08-20 11:43:25 -04001000
David Woodhouseaa21c002007-12-08 20:04:36 +00001001 mutex_init(&priv->lock);
Dan Williams954ee162007-08-20 11:43:25 -04001002
David Woodhouseaa21c002007-12-08 20:04:36 +00001003 setup_timer(&priv->command_timer, command_timer_fn,
Dan Williams954ee162007-08-20 11:43:25 -04001004 (unsigned long)priv);
1005
David Woodhouseaa21c002007-12-08 20:04:36 +00001006 INIT_LIST_HEAD(&priv->cmdfreeq);
1007 INIT_LIST_HEAD(&priv->cmdpendingq);
Dan Williams954ee162007-08-20 11:43:25 -04001008
David Woodhouseaa21c002007-12-08 20:04:36 +00001009 spin_lock_init(&priv->driver_lock);
1010 init_waitqueue_head(&priv->cmd_pending);
Dan Williams954ee162007-08-20 11:43:25 -04001011
1012 /* Allocate the command buffers */
Holger Schurig10078322007-11-15 18:05:47 -05001013 if (lbs_allocate_cmd_buffer(priv)) {
Dan Williams954ee162007-08-20 11:43:25 -04001014 lbs_pr_err("Out of memory allocating command buffers\n");
1015 ret = -1;
1016 }
1017
1018out:
1019 return ret;
1020}
1021
Holger Schurig69f90322007-11-23 15:43:44 +01001022static void lbs_free_adapter(struct lbs_private *priv)
Holger Schurigac558ca2007-08-02 11:49:06 -04001023{
Holger Schurigac558ca2007-08-02 11:49:06 -04001024 lbs_deb_fw("free command buffer\n");
Holger Schurig10078322007-11-15 18:05:47 -05001025 lbs_free_cmd_buffer(priv);
Holger Schurigac558ca2007-08-02 11:49:06 -04001026
1027 lbs_deb_fw("free command_timer\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001028 del_timer(&priv->command_timer);
Holger Schurigac558ca2007-08-02 11:49:06 -04001029
1030 lbs_deb_fw("free scan results table\n");
David Woodhouseaa21c002007-12-08 20:04:36 +00001031 kfree(priv->networks);
1032 priv->networks = NULL;
Holger Schurigac558ca2007-08-02 11:49:06 -04001033}
1034
Holger Schurig1df4e8f2007-08-02 11:45:12 -04001035/**
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001036 * @brief This function adds the card. it will probe the
Holger Schurig10078322007-11-15 18:05:47 -05001037 * card, allocate the lbs_priv and initialize the device.
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001038 *
1039 * @param card A pointer to card
Holger Schurig69f90322007-11-23 15:43:44 +01001040 * @return A pointer to struct lbs_private structure
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001041 */
Holger Schurig69f90322007-11-23 15:43:44 +01001042struct lbs_private *lbs_add_card(void *card, struct device *dmdev)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001043{
1044 struct net_device *dev = NULL;
Holger Schurig69f90322007-11-23 15:43:44 +01001045 struct lbs_private *priv = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001046
Holger Schurig9012b282007-05-25 11:27:16 -04001047 lbs_deb_enter(LBS_DEB_NET);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001048
1049 /* Allocate an Ethernet device and register it */
Holger Schurig69f90322007-11-23 15:43:44 +01001050 dev = alloc_etherdev(sizeof(struct lbs_private));
1051 if (!dev) {
Holger Schurig9012b282007-05-25 11:27:16 -04001052 lbs_pr_err("init ethX device failed\n");
Dan Williams954ee162007-08-20 11:43:25 -04001053 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001054 }
Dan Williams64f104e2007-08-20 11:45:16 -04001055 priv = dev->priv;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001056
Holger Schurig10078322007-11-15 18:05:47 -05001057 if (lbs_init_adapter(priv)) {
Dan Williams954ee162007-08-20 11:43:25 -04001058 lbs_pr_err("failed to initialize adapter structure.\n");
1059 goto err_init_adapter;
1060 }
1061
Holger Schurig634b8f42007-05-25 13:05:16 -04001062 priv->dev = dev;
1063 priv->card = card;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001064 priv->mesh_open = 0;
1065 priv->infra_open = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001066
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001067 /* Setup the OS Interface to our functions */
Holger Schurig10078322007-11-15 18:05:47 -05001068 dev->open = lbs_open;
David Woodhouse198cefb2007-12-09 15:04:19 -05001069 dev->hard_start_xmit = lbs_hard_start_xmit;
Holger Schurig10078322007-11-15 18:05:47 -05001070 dev->stop = lbs_close;
1071 dev->set_mac_address = lbs_set_mac_address;
1072 dev->tx_timeout = lbs_tx_timeout;
1073 dev->get_stats = lbs_get_stats;
Holger Schurigfb3dddf2007-05-25 11:58:22 -04001074 dev->watchdog_timeo = 5 * HZ;
Holger Schurig10078322007-11-15 18:05:47 -05001075 dev->ethtool_ops = &lbs_ethtool_ops;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001076#ifdef WIRELESS_EXT
Holger Schurig10078322007-11-15 18:05:47 -05001077 dev->wireless_handlers = (struct iw_handler_def *)&lbs_handler_def;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001078#endif
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001079 dev->flags |= IFF_BROADCAST | IFF_MULTICAST;
Holger Schurig10078322007-11-15 18:05:47 -05001080 dev->set_multicast_list = lbs_set_multicast_list;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001081
Dan Williams7732ca42007-05-25 13:13:25 -04001082 SET_NETDEV_DEV(dev, dmdev);
1083
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001084 priv->rtap_net_dev = NULL;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001085
Dan Williamsfe336152007-08-02 11:32:25 -04001086 lbs_deb_thread("Starting main thread...\n");
1087 init_waitqueue_head(&priv->waitq);
Holger Schurig10078322007-11-15 18:05:47 -05001088 priv->main_thread = kthread_run(lbs_thread, dev, "lbs_main");
Dan Williamsfe336152007-08-02 11:32:25 -04001089 if (IS_ERR(priv->main_thread)) {
1090 lbs_deb_thread("Error creating main thread.\n");
David Woodhousee7deced2007-12-08 18:29:16 +00001091 goto err_init_adapter;
Dan Williamsfe336152007-08-02 11:32:25 -04001092 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001093
Holger Schurig10078322007-11-15 18:05:47 -05001094 priv->work_thread = create_singlethread_workqueue("lbs_worker");
1095 INIT_DELAYED_WORK(&priv->assoc_work, lbs_association_worker);
1096 INIT_DELAYED_WORK(&priv->scan_work, lbs_scan_worker);
1097 INIT_WORK(&priv->sync_channel, lbs_sync_channel);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001098
Dan Williams954ee162007-08-20 11:43:25 -04001099 goto done;
1100
Dan Williams954ee162007-08-20 11:43:25 -04001101err_init_adapter:
Holger Schurig10078322007-11-15 18:05:47 -05001102 lbs_free_adapter(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001103 free_netdev(dev);
1104 priv = NULL;
1105
1106done:
1107 lbs_deb_leave_args(LBS_DEB_NET, "priv %p", priv);
1108 return priv;
1109}
Holger Schurig10078322007-11-15 18:05:47 -05001110EXPORT_SYMBOL_GPL(lbs_add_card);
Dan Williams954ee162007-08-20 11:43:25 -04001111
1112
Holger Schurig69f90322007-11-23 15:43:44 +01001113int lbs_remove_card(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -04001114{
Dan Williams954ee162007-08-20 11:43:25 -04001115 struct net_device *dev = priv->dev;
1116 union iwreq_data wrqu;
1117
1118 lbs_deb_enter(LBS_DEB_MAIN);
1119
Holger Schurig10078322007-11-15 18:05:47 -05001120 lbs_remove_rtap(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001121
1122 dev = priv->dev;
David Woodhousee7deced2007-12-08 18:29:16 +00001123 device_remove_file(&dev->dev, &dev_attr_lbs_rtap);
Dan Williams954ee162007-08-20 11:43:25 -04001124
1125 cancel_delayed_work(&priv->scan_work);
1126 cancel_delayed_work(&priv->assoc_work);
1127 destroy_workqueue(priv->work_thread);
1128
David Woodhouseaa21c002007-12-08 20:04:36 +00001129 if (priv->psmode == LBS802_11POWERMODEMAX_PSP) {
1130 priv->psmode = LBS802_11POWERMODECAM;
Holger Schurig10078322007-11-15 18:05:47 -05001131 lbs_ps_wakeup(priv, CMD_OPTION_WAITFORRSP);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001132 }
1133
Dan Williams954ee162007-08-20 11:43:25 -04001134 memset(wrqu.ap_addr.sa_data, 0xaa, ETH_ALEN);
1135 wrqu.ap_addr.sa_family = ARPHRD_ETHER;
1136 wireless_send_event(priv->dev, SIOCGIWAP, &wrqu, NULL);
1137
1138 /* Stop the thread servicing the interrupts */
David Woodhouseaa21c002007-12-08 20:04:36 +00001139 priv->surpriseremoved = 1;
Dan Williams954ee162007-08-20 11:43:25 -04001140 kthread_stop(priv->main_thread);
1141
Holger Schurig10078322007-11-15 18:05:47 -05001142 lbs_free_adapter(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001143
1144 priv->dev = NULL;
1145 free_netdev(dev);
1146
1147 lbs_deb_leave(LBS_DEB_MAIN);
1148 return 0;
1149}
Holger Schurig10078322007-11-15 18:05:47 -05001150EXPORT_SYMBOL_GPL(lbs_remove_card);
Dan Williams954ee162007-08-20 11:43:25 -04001151
1152
Holger Schurig69f90322007-11-23 15:43:44 +01001153int lbs_start_card(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -04001154{
1155 struct net_device *dev = priv->dev;
1156 int ret = -1;
1157
1158 lbs_deb_enter(LBS_DEB_MAIN);
1159
1160 /* poke the firmware */
Holger Schurig10078322007-11-15 18:05:47 -05001161 ret = lbs_setup_firmware(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001162 if (ret)
1163 goto done;
1164
1165 /* init 802.11d */
Holger Schurig10078322007-11-15 18:05:47 -05001166 lbs_init_11d(priv);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001167
1168 if (register_netdev(dev)) {
Holger Schurig9012b282007-05-25 11:27:16 -04001169 lbs_pr_err("cannot register ethX device\n");
Dan Williams954ee162007-08-20 11:43:25 -04001170 goto done;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001171 }
David Woodhousee7deced2007-12-08 18:29:16 +00001172 if (device_create_file(&dev->dev, &dev_attr_lbs_rtap))
1173 lbs_pr_err("cannot register lbs_rtap attribute\n");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001174
Holger Schurig10078322007-11-15 18:05:47 -05001175 lbs_debugfs_init_one(priv, dev);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001176
Dan Williams954ee162007-08-20 11:43:25 -04001177 lbs_pr_info("%s: Marvell WLAN 802.11 adapter\n", dev->name);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001178
Dan Williams954ee162007-08-20 11:43:25 -04001179 ret = 0;
1180
Holger Schurig32a74b72007-05-25 12:04:31 -04001181done:
Dan Williams954ee162007-08-20 11:43:25 -04001182 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
Holger Schurig32a74b72007-05-25 12:04:31 -04001183 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001184}
Holger Schurig10078322007-11-15 18:05:47 -05001185EXPORT_SYMBOL_GPL(lbs_start_card);
Dan Williams954ee162007-08-20 11:43:25 -04001186
1187
Holger Schurig69f90322007-11-23 15:43:44 +01001188int lbs_stop_card(struct lbs_private *priv)
Dan Williams954ee162007-08-20 11:43:25 -04001189{
1190 struct net_device *dev = priv->dev;
1191 int ret = -1;
1192 struct cmd_ctrl_node *cmdnode;
1193 unsigned long flags;
1194
1195 lbs_deb_enter(LBS_DEB_MAIN);
1196
1197 netif_stop_queue(priv->dev);
1198 netif_carrier_off(priv->dev);
1199
Holger Schurig10078322007-11-15 18:05:47 -05001200 lbs_debugfs_remove_one(priv);
Dan Williams954ee162007-08-20 11:43:25 -04001201
1202 /* Flush pending command nodes */
David Woodhouseaa21c002007-12-08 20:04:36 +00001203 spin_lock_irqsave(&priv->driver_lock, flags);
1204 list_for_each_entry(cmdnode, &priv->cmdpendingq, list) {
Dan Williams954ee162007-08-20 11:43:25 -04001205 cmdnode->cmdwaitqwoken = 1;
1206 wake_up_interruptible(&cmdnode->cmdwait_q);
1207 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001208 spin_unlock_irqrestore(&priv->driver_lock, flags);
Dan Williams954ee162007-08-20 11:43:25 -04001209
1210 unregister_netdev(dev);
1211
1212 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1213 return ret;
1214}
Holger Schurig10078322007-11-15 18:05:47 -05001215EXPORT_SYMBOL_GPL(lbs_stop_card);
Holger Schurig084708b2007-05-25 12:37:58 -04001216
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001217
Holger Schurig78523da2007-05-25 11:49:19 -04001218/**
1219 * @brief This function adds mshX interface
1220 *
Holger Schurig69f90322007-11-23 15:43:44 +01001221 * @param priv A pointer to the struct lbs_private structure
Holger Schurig78523da2007-05-25 11:49:19 -04001222 * @return 0 if successful, -X otherwise
1223 */
Holger Schurig69f90322007-11-23 15:43:44 +01001224int lbs_add_mesh(struct lbs_private *priv, struct device *dev)
Holger Schurig78523da2007-05-25 11:49:19 -04001225{
1226 struct net_device *mesh_dev = NULL;
1227 int ret = 0;
1228
1229 lbs_deb_enter(LBS_DEB_MESH);
1230
1231 /* Allocate a virtual mesh device */
1232 if (!(mesh_dev = alloc_netdev(0, "msh%d", ether_setup))) {
1233 lbs_deb_mesh("init mshX device failed\n");
1234 ret = -ENOMEM;
1235 goto done;
1236 }
1237 mesh_dev->priv = priv;
1238 priv->mesh_dev = mesh_dev;
1239
Holger Schurig10078322007-11-15 18:05:47 -05001240 mesh_dev->open = lbs_mesh_open;
David Woodhouse198cefb2007-12-09 15:04:19 -05001241 mesh_dev->hard_start_xmit = lbs_hard_start_xmit;
Holger Schurig10078322007-11-15 18:05:47 -05001242 mesh_dev->stop = lbs_mesh_close;
1243 mesh_dev->get_stats = lbs_get_stats;
1244 mesh_dev->set_mac_address = lbs_set_mac_address;
1245 mesh_dev->ethtool_ops = &lbs_ethtool_ops;
Holger Schurig634b8f42007-05-25 13:05:16 -04001246 memcpy(mesh_dev->dev_addr, priv->dev->dev_addr,
1247 sizeof(priv->dev->dev_addr));
Holger Schurig78523da2007-05-25 11:49:19 -04001248
Dan Williams7732ca42007-05-25 13:13:25 -04001249 SET_NETDEV_DEV(priv->mesh_dev, dev);
1250
Holger Schurig78523da2007-05-25 11:49:19 -04001251#ifdef WIRELESS_EXT
Luis Carlos Cobo Rusf5e05b62007-05-25 23:08:34 -04001252 mesh_dev->wireless_handlers = (struct iw_handler_def *)&mesh_handler_def;
Holger Schurig78523da2007-05-25 11:49:19 -04001253#endif
Holger Schurig78523da2007-05-25 11:49:19 -04001254 /* Register virtual mesh interface */
1255 ret = register_netdev(mesh_dev);
1256 if (ret) {
1257 lbs_pr_err("cannot register mshX virtual interface\n");
1258 goto err_free;
1259 }
1260
Holger Schurig10078322007-11-15 18:05:47 -05001261 ret = sysfs_create_group(&(mesh_dev->dev.kobj), &lbs_mesh_attr_group);
Holger Schurig78523da2007-05-25 11:49:19 -04001262 if (ret)
1263 goto err_unregister;
1264
1265 /* Everything successful */
1266 ret = 0;
1267 goto done;
1268
Holger Schurig78523da2007-05-25 11:49:19 -04001269err_unregister:
1270 unregister_netdev(mesh_dev);
1271
1272err_free:
1273 free_netdev(mesh_dev);
1274
1275done:
1276 lbs_deb_leave_args(LBS_DEB_MESH, "ret %d", ret);
1277 return ret;
1278}
Holger Schurig10078322007-11-15 18:05:47 -05001279EXPORT_SYMBOL_GPL(lbs_add_mesh);
Holger Schurig78523da2007-05-25 11:49:19 -04001280
Holger Schurig084708b2007-05-25 12:37:58 -04001281
Holger Schurig69f90322007-11-23 15:43:44 +01001282void lbs_remove_mesh(struct lbs_private *priv)
Holger Schurig78523da2007-05-25 11:49:19 -04001283{
1284 struct net_device *mesh_dev;
1285
Dan Williams954ee162007-08-20 11:43:25 -04001286 lbs_deb_enter(LBS_DEB_MAIN);
Holger Schurig78523da2007-05-25 11:49:19 -04001287
1288 if (!priv)
1289 goto out;
1290
1291 mesh_dev = priv->mesh_dev;
1292
1293 netif_stop_queue(mesh_dev);
Javier Cardona51d84f52007-05-25 12:06:56 -04001294 netif_carrier_off(priv->mesh_dev);
Holger Schurig78523da2007-05-25 11:49:19 -04001295
Holger Schurig10078322007-11-15 18:05:47 -05001296 sysfs_remove_group(&(mesh_dev->dev.kobj), &lbs_mesh_attr_group);
Holger Schurig78523da2007-05-25 11:49:19 -04001297 unregister_netdev(mesh_dev);
1298
1299 priv->mesh_dev = NULL ;
1300 free_netdev(mesh_dev);
1301
1302out:
Dan Williams954ee162007-08-20 11:43:25 -04001303 lbs_deb_leave(LBS_DEB_MAIN);
Holger Schurig78523da2007-05-25 11:49:19 -04001304}
Holger Schurig10078322007-11-15 18:05:47 -05001305EXPORT_SYMBOL_GPL(lbs_remove_mesh);
Holger Schurig78523da2007-05-25 11:49:19 -04001306
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001307/**
1308 * @brief This function finds the CFP in
1309 * region_cfp_table based on region and band parameter.
1310 *
1311 * @param region The region code
1312 * @param band The band
1313 * @param cfp_no A pointer to CFP number
1314 * @return A pointer to CFP
1315 */
Holger Schurig10078322007-11-15 18:05:47 -05001316struct chan_freq_power *lbs_get_region_cfp_table(u8 region, u8 band, int *cfp_no)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001317{
1318 int i, end;
1319
Holger Schurig9012b282007-05-25 11:27:16 -04001320 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001321
Denis Chengff8ac602007-09-02 18:30:18 +08001322 end = ARRAY_SIZE(region_cfp_table);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001323
1324 for (i = 0; i < end ; i++) {
Holger Schurig9012b282007-05-25 11:27:16 -04001325 lbs_deb_main("region_cfp_table[i].region=%d\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001326 region_cfp_table[i].region);
1327 if (region_cfp_table[i].region == region) {
1328 *cfp_no = region_cfp_table[i].cfp_no_BG;
Holger Schurig9012b282007-05-25 11:27:16 -04001329 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001330 return region_cfp_table[i].cfp_BG;
1331 }
1332 }
1333
Holger Schurig9012b282007-05-25 11:27:16 -04001334 lbs_deb_leave_args(LBS_DEB_MAIN, "ret NULL");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001335 return NULL;
1336}
1337
Holger Schurig69f90322007-11-23 15:43:44 +01001338int lbs_set_regiontable(struct lbs_private *priv, u8 region, u8 band)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001339{
Holger Schurig9012b282007-05-25 11:27:16 -04001340 int ret = 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001341 int i = 0;
1342
1343 struct chan_freq_power *cfp;
1344 int cfp_no;
1345
Holger Schurig9012b282007-05-25 11:27:16 -04001346 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001347
David Woodhouseaa21c002007-12-08 20:04:36 +00001348 memset(priv->region_channel, 0, sizeof(priv->region_channel));
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001349
1350 {
Holger Schurig10078322007-11-15 18:05:47 -05001351 cfp = lbs_get_region_cfp_table(region, band, &cfp_no);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001352 if (cfp != NULL) {
David Woodhouseaa21c002007-12-08 20:04:36 +00001353 priv->region_channel[i].nrcfp = cfp_no;
1354 priv->region_channel[i].CFP = cfp;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001355 } else {
Holger Schurig9012b282007-05-25 11:27:16 -04001356 lbs_deb_main("wrong region code %#x in band B/G\n",
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001357 region);
Holger Schurig9012b282007-05-25 11:27:16 -04001358 ret = -1;
1359 goto out;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001360 }
David Woodhouseaa21c002007-12-08 20:04:36 +00001361 priv->region_channel[i].valid = 1;
1362 priv->region_channel[i].region = region;
1363 priv->region_channel[i].band = band;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001364 i++;
1365 }
Holger Schurig9012b282007-05-25 11:27:16 -04001366out:
1367 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1368 return ret;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001369}
1370
1371/**
1372 * @brief This function handles the interrupt. it will change PS
1373 * state if applicable. it will wake up main_thread to handle
1374 * the interrupt event as well.
1375 *
1376 * @param dev A pointer to net_device structure
1377 * @return n/a
1378 */
David Woodhouse4f679492007-12-10 14:58:37 -05001379void lbs_interrupt(struct lbs_private *priv)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001380{
Holger Schuriged37b512007-05-25 11:52:42 -04001381 lbs_deb_enter(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001382
David Woodhouse4f679492007-12-10 14:58:37 -05001383 lbs_deb_thread("lbs_interrupt: intcounter=%d\n", priv->intcounter);
1384
1385 if (spin_trylock(&priv->driver_lock)) {
1386 spin_unlock(&priv->driver_lock);
1387 printk(KERN_CRIT "%s called without driver_lock held\n", __func__);
1388 WARN_ON(1);
1389 }
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001390
David Woodhouseaa21c002007-12-08 20:04:36 +00001391 priv->intcounter++;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001392
David Woodhouse4f679492007-12-10 14:58:37 -05001393 if (priv->psstate == PS_STATE_SLEEP)
David Woodhouseaa21c002007-12-08 20:04:36 +00001394 priv->psstate = PS_STATE_AWAKE;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001395
Dan Williamsfe336152007-08-02 11:32:25 -04001396 wake_up_interruptible(&priv->waitq);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001397
Holger Schuriged37b512007-05-25 11:52:42 -04001398 lbs_deb_leave(LBS_DEB_THREAD);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001399}
Holger Schurig10078322007-11-15 18:05:47 -05001400EXPORT_SYMBOL_GPL(lbs_interrupt);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001401
Holger Schurig69f90322007-11-23 15:43:44 +01001402int lbs_reset_device(struct lbs_private *priv)
Dan Williamseedc2a32007-08-02 11:36:22 -04001403{
1404 int ret;
1405
1406 lbs_deb_enter(LBS_DEB_MAIN);
Holger Schurig10078322007-11-15 18:05:47 -05001407 ret = lbs_prepare_and_send_command(priv, CMD_802_11_RESET,
Dan Williamseedc2a32007-08-02 11:36:22 -04001408 CMD_ACT_HALT, 0, 0, NULL);
1409 msleep_interruptible(10);
1410
1411 lbs_deb_leave_args(LBS_DEB_MAIN, "ret %d", ret);
1412 return ret;
1413}
Holger Schurig10078322007-11-15 18:05:47 -05001414EXPORT_SYMBOL_GPL(lbs_reset_device);
Dan Williamseedc2a32007-08-02 11:36:22 -04001415
Andres Salomon4fb910f2007-11-20 17:43:45 -05001416static int __init lbs_init_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001417{
Holger Schurig9012b282007-05-25 11:27:16 -04001418 lbs_deb_enter(LBS_DEB_MAIN);
Holger Schurig10078322007-11-15 18:05:47 -05001419 lbs_debugfs_init();
Holger Schurig084708b2007-05-25 12:37:58 -04001420 lbs_deb_leave(LBS_DEB_MAIN);
1421 return 0;
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001422}
1423
Andres Salomon4fb910f2007-11-20 17:43:45 -05001424static void __exit lbs_exit_module(void)
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001425{
Holger Schurig9012b282007-05-25 11:27:16 -04001426 lbs_deb_enter(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001427
Holger Schurig10078322007-11-15 18:05:47 -05001428 lbs_debugfs_remove();
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001429
Holger Schurig9012b282007-05-25 11:27:16 -04001430 lbs_deb_leave(LBS_DEB_MAIN);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001431}
1432
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001433/*
1434 * rtap interface support fuctions
1435 */
1436
Holger Schurig10078322007-11-15 18:05:47 -05001437static int lbs_rtap_open(struct net_device *dev)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001438{
1439 netif_carrier_off(dev);
1440 netif_stop_queue(dev);
1441 return 0;
1442}
1443
Holger Schurig10078322007-11-15 18:05:47 -05001444static int lbs_rtap_stop(struct net_device *dev)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001445{
1446 return 0;
1447}
1448
Holger Schurig10078322007-11-15 18:05:47 -05001449static int lbs_rtap_hard_start_xmit(struct sk_buff *skb, struct net_device *dev)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001450{
1451 netif_stop_queue(dev);
1452 return -EOPNOTSUPP;
1453}
1454
Holger Schurig10078322007-11-15 18:05:47 -05001455static struct net_device_stats *lbs_rtap_get_stats(struct net_device *dev)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001456{
Holger Schurig69f90322007-11-23 15:43:44 +01001457 struct lbs_private *priv = dev->priv;
David Woodhoused9268fb2007-12-09 16:22:21 -05001458 return &priv->stats;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001459}
1460
1461
Holger Schurig69f90322007-11-23 15:43:44 +01001462void lbs_remove_rtap(struct lbs_private *priv)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001463{
1464 if (priv->rtap_net_dev == NULL)
1465 return;
1466 unregister_netdev(priv->rtap_net_dev);
David Woodhoused9268fb2007-12-09 16:22:21 -05001467 free_netdev(priv->rtap_net_dev);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001468 priv->rtap_net_dev = NULL;
1469}
1470
Holger Schurig69f90322007-11-23 15:43:44 +01001471int lbs_add_rtap(struct lbs_private *priv)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001472{
1473 int rc = 0;
David Woodhoused9268fb2007-12-09 16:22:21 -05001474 struct net_device *rtap_dev;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001475
1476 if (priv->rtap_net_dev)
1477 return -EPERM;
1478
David Woodhoused9268fb2007-12-09 16:22:21 -05001479 rtap_dev = alloc_netdev(0, "rtap%d", ether_setup);
1480 if (rtap_dev == NULL)
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001481 return -ENOMEM;
1482
David Woodhouse121947c2007-12-09 19:54:11 -05001483 memcpy(rtap_dev->dev_addr, priv->current_addr, ETH_ALEN);
David Woodhoused9268fb2007-12-09 16:22:21 -05001484 rtap_dev->type = ARPHRD_IEEE80211_RADIOTAP;
1485 rtap_dev->open = lbs_rtap_open;
1486 rtap_dev->stop = lbs_rtap_stop;
1487 rtap_dev->get_stats = lbs_rtap_get_stats;
1488 rtap_dev->hard_start_xmit = lbs_rtap_hard_start_xmit;
1489 rtap_dev->set_multicast_list = lbs_set_multicast_list;
1490 rtap_dev->priv = priv;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001491
David Woodhoused9268fb2007-12-09 16:22:21 -05001492 rc = register_netdev(rtap_dev);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001493 if (rc) {
David Woodhoused9268fb2007-12-09 16:22:21 -05001494 free_netdev(rtap_dev);
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001495 return rc;
1496 }
David Woodhoused9268fb2007-12-09 16:22:21 -05001497 priv->rtap_net_dev = rtap_dev;
Luis Carlos Cobo965f8bbc2007-08-02 13:16:55 -04001498
1499 return 0;
1500}
1501
1502
Holger Schurig10078322007-11-15 18:05:47 -05001503module_init(lbs_init_module);
1504module_exit(lbs_exit_module);
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001505
Holger Schurig084708b2007-05-25 12:37:58 -04001506MODULE_DESCRIPTION("Libertas WLAN Driver Library");
Marcelo Tosatti876c9d32007-02-10 12:25:27 -02001507MODULE_AUTHOR("Marvell International Ltd.");
1508MODULE_LICENSE("GPL");